From e52125870cb99068f9afc4b570ac5e7c21be5ef4 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Mon, 2 Oct 2023 11:52:12 -0700 Subject: [PATCH 01/19] updated --- src/server/API/Jobs/ShrineHubReader.cs | 55 +++++++++++++++++++ .../API/Options/StartupExtensions.Options.cs | 4 +- .../Shrine/IShrinePollingService.cs | 15 +++++ src/server/Model/Model.csproj | 4 ++ .../Shrine/ShrinePollingService.cs | 16 ++++++ src/server/Services/Services.csproj | 4 ++ 6 files changed, 96 insertions(+), 2 deletions(-) create mode 100644 src/server/API/Jobs/ShrineHubReader.cs create mode 100644 src/server/Model/Integration/Shrine/IShrinePollingService.cs create mode 100644 src/server/Services/Integration/Shrine/ShrinePollingService.cs diff --git a/src/server/API/Jobs/ShrineHubReader.cs b/src/server/API/Jobs/ShrineHubReader.cs new file mode 100644 index 000000000..e62c8e477 --- /dev/null +++ b/src/server/API/Jobs/ShrineHubReader.cs @@ -0,0 +1,55 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; + +namespace API.Jobs +{ + public class ShrineHubReader : BackgroundService + { + readonly ILogger logger; + + public ShrineHubReader( + ILogger logger) + { + this.logger = logger; + } + + protected override async Task ExecuteAsync(CancellationToken stoppingToken) + { + logger.LogInformation("ShrineHubReader is starting"); + + stoppingToken.Register(() => + { + logger.LogInformation("ShrineHubReader is stopped"); + }); + + while (!stoppingToken.IsCancellationRequested) + { + try + { + logger.LogInformation("Syncronizing with SHRINE"); + //var newState = await serverStateProvider.GetServerState(); + //cache.Overwrite(newState); + } + catch (Exception e) + { + logger.LogError("Failed to syncronize with SHRINE. Error: {Error}", e.ToString()); + } + finally + { + // No need to delay next poll on Leaf end. SHRINE already long polls on other side + } + } + + logger.LogInformation("ShrineHubReader is stopped"); + } + } +} + diff --git a/src/server/API/Options/StartupExtensions.Options.cs b/src/server/API/Options/StartupExtensions.Options.cs index 2b69d0de9..3c1d950ec 100644 --- a/src/server/API/Options/StartupExtensions.Options.cs +++ b/src/server/API/Options/StartupExtensions.Options.cs @@ -412,14 +412,14 @@ static IServiceCollection ConfigureCompilerOptions(this IServiceCollection servi // App Db Connection services.Configure(opts => { - opts.ConnectionString = config.GetByProxy(Config.Db.App.Connection); + opts.ConnectionString = "Server=localhost:1432;Database=LeafDB;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.App.Connection); opts.DefaultTimeout = config.GetValue(Config.Db.App.DefaultTimeout); }); // Clin Db Connection services.Configure(opts => { - opts.ConnectionString = config.GetByProxy(Config.Db.Clin.Connection); + opts.ConnectionString = "Server=localhost:1432;Database=SynPuf_OMOP;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.Clin.Connection); opts.DefaultTimeout = config.GetValue(Config.Db.Clin.DefaultTimeout); opts.WithRdbms(config.GetValue(Config.Db.Clin.RDBMS)); opts.Cohort.WithQueryStrategy(config.GetValue(Config.Db.Clin.Cohort.QueryStrategy)); diff --git a/src/server/Model/Integration/Shrine/IShrinePollingService.cs b/src/server/Model/Integration/Shrine/IShrinePollingService.cs new file mode 100644 index 000000000..0008c9476 --- /dev/null +++ b/src/server/Model/Integration/Shrine/IShrinePollingService.cs @@ -0,0 +1,15 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; + +namespace Model.Integration.Shrine +{ + public interface IShrinePollingService + { + + } +} + diff --git a/src/server/Model/Model.csproj b/src/server/Model/Model.csproj index 2090fb0ad..ac9ea1497 100644 --- a/src/server/Model/Model.csproj +++ b/src/server/Model/Model.csproj @@ -18,6 +18,8 @@ + + @@ -27,6 +29,8 @@ + + diff --git a/src/server/Services/Integration/Shrine/ShrinePollingService.cs b/src/server/Services/Integration/Shrine/ShrinePollingService.cs new file mode 100644 index 000000000..7356657af --- /dev/null +++ b/src/server/Services/Integration/Shrine/ShrinePollingService.cs @@ -0,0 +1,16 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine; + +namespace Services.Integration.Shrine +{ + public class ShrinePollingService : IShrinePollingService + { + + } +} + diff --git a/src/server/Services/Services.csproj b/src/server/Services/Services.csproj index 6d43c58f5..01e0640e9 100644 --- a/src/server/Services/Services.csproj +++ b/src/server/Services/Services.csproj @@ -39,6 +39,8 @@ + + @@ -49,5 +51,7 @@ + + From fb5af92868ae53a00c53e0230871c3f374d975ee Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Mon, 2 Oct 2023 17:34:34 -0700 Subject: [PATCH 02/19] able to call shrine, work on handling messages --- src/server/API/Jobs/ShrineHubReader.cs | 16 +- src/server/API/Options/Config.Integration.cs | 26 + .../API/Options/StartupExtensions.Options.cs | 35 +- .../API/Options/StartupExtensions.Services.cs | 41 + src/server/API/appsettings.json | 9 + .../Shrine/IShrinePollingService.cs | 3 +- .../Model/Options/IntegrationOptions.cs | 24 + .../Services/Export/REDCapExportService.cs | 1 - .../Shrine/ShrinePollingService.cs | 84 +- src/ui-client/package-lock.json | 24804 +++++++++++++++- 10 files changed, 24961 insertions(+), 82 deletions(-) create mode 100644 src/server/API/Options/Config.Integration.cs create mode 100644 src/server/Model/Options/IntegrationOptions.cs diff --git a/src/server/API/Jobs/ShrineHubReader.cs b/src/server/API/Jobs/ShrineHubReader.cs index e62c8e477..c9a5f50a5 100644 --- a/src/server/API/Jobs/ShrineHubReader.cs +++ b/src/server/API/Jobs/ShrineHubReader.cs @@ -8,17 +8,21 @@ using System.Threading.Tasks; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; +using Model.Integration.Shrine; namespace API.Jobs { public class ShrineHubReader : BackgroundService { readonly ILogger logger; + readonly IShrinePollingService shrine; public ShrineHubReader( - ILogger logger) + ILogger logger, + IShrinePollingService shrine) { this.logger = logger; + this.shrine = shrine; } protected override async Task ExecuteAsync(CancellationToken stoppingToken) @@ -35,8 +39,14 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) try { logger.LogInformation("Syncronizing with SHRINE"); - //var newState = await serverStateProvider.GetServerState(); - //cache.Overwrite(newState); + var result = await shrine.ReadHubMessage(); + + /* + _ = Task.Run(() => + { + + }); + */ } catch (Exception e) { diff --git a/src/server/API/Options/Config.Integration.cs b/src/server/API/Options/Config.Integration.cs new file mode 100644 index 000000000..7116fac35 --- /dev/null +++ b/src/server/API/Options/Config.Integration.cs @@ -0,0 +1,26 @@ +// Copyright (c) 2022, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; + +namespace API.Options +{ + public static partial class Config + { + public static class Integration + { + public const string Enabled = @"Integration:Enabled"; + + public static class SHRINE + { + public const string Section = @"Integration:SHRINE"; + public const string Enabled = @"Integration:SHRINE:Enabled"; + public const string HubApiURI = @"Integration:SHRINE:HubApiURI"; + public const string NodeId = @"Integration:SHRINE:LocalNodeId"; + public const string NodeName = @"Integration:SHRINE:LocalNodeName"; + } + } + } +} diff --git a/src/server/API/Options/StartupExtensions.Options.cs b/src/server/API/Options/StartupExtensions.Options.cs index 3c1d950ec..388b7f72a 100644 --- a/src/server/API/Options/StartupExtensions.Options.cs +++ b/src/server/API/Options/StartupExtensions.Options.cs @@ -50,6 +50,9 @@ public static IServiceCollection ConfigureLeafOptions( // Import Options services.ConfigureImportOptions(configuration); + // Integrations Options + services.ConfigureIntegrationOptions(configuration); + // Authentication Options services.ConfigureAuthenticationOptions(configuration); @@ -251,6 +254,34 @@ static IServiceCollection ConfigureImportOptions(this IServiceCollection service return services; } + static IServiceCollection ConfigureIntegrationOptions(this IServiceCollection services, IConfiguration config) + { + var enabled = config.GetValue(Config.Integration.Enabled); + + if (enabled) + { + config.TryGetValue(Config.Integration.SHRINE.Enabled, out bool shrineEnabled); + if (shrineEnabled) + { + var shrine = new SHRINEOptions + { + Enabled = shrineEnabled, + HubApiURI = config.GetValue(Config.Integration.SHRINE.HubApiURI), + LocalNodeId = config.GetValue(Config.Integration.SHRINE.NodeId), + LocalNodeName = config.GetValue(Config.Integration.SHRINE.NodeName), + }; + + services.Configure(opts => + { + opts.Enabled = true; + opts.SHRINE = shrine; + }); + } + } + + return services; + } + static IServiceCollection ConfigureClientOptions(this IServiceCollection services, IConfiguration config) { services.Configure(opts => @@ -412,14 +443,14 @@ static IServiceCollection ConfigureCompilerOptions(this IServiceCollection servi // App Db Connection services.Configure(opts => { - opts.ConnectionString = "Server=localhost:1432;Database=LeafDB;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.App.Connection); + opts.ConnectionString = config.GetByProxy(Config.Db.App.Connection); opts.DefaultTimeout = config.GetValue(Config.Db.App.DefaultTimeout); }); // Clin Db Connection services.Configure(opts => { - opts.ConnectionString = "Server=localhost:1432;Database=SynPuf_OMOP;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.Clin.Connection); + opts.ConnectionString = config.GetByProxy(Config.Db.Clin.Connection); opts.DefaultTimeout = config.GetValue(Config.Db.Clin.DefaultTimeout); opts.WithRdbms(config.GetValue(Config.Db.Clin.RDBMS)); opts.Cohort.WithQueryStrategy(config.GetValue(Config.Db.Clin.Cohort.QueryStrategy)); diff --git a/src/server/API/Options/StartupExtensions.Services.cs b/src/server/API/Options/StartupExtensions.Services.cs index 7a8efc597..334fbebdf 100644 --- a/src/server/API/Options/StartupExtensions.Services.cs +++ b/src/server/API/Options/StartupExtensions.Services.cs @@ -31,6 +31,7 @@ using Model.Import; using Model.Notification; using Model.Obfuscation; +using Model.Integration.Shrine; using Services.Admin.Compiler; using Services.Admin.Network; using Services.Admin.Query; @@ -47,6 +48,9 @@ using Services.Import; using Services.Notification; using Services.Obfuscation; +using Services.Integration.Shrine; +using System.Net.Http; +using System; namespace API.Options { @@ -91,6 +95,11 @@ public static IServiceCollection RegisterLeafServices( client.DefaultRequestHeaders.Add("Accept", @"application/json"); }); + services.AddHttpClient(client => + { + client.DefaultRequestHeaders.Add("Accept", @"application/json"); + }); + if (environment.IsProduction()) { services.AddHostedService(); @@ -98,6 +107,7 @@ public static IServiceCollection RegisterLeafServices( services.AddSingleton(); services.AddSingleton(); + services.AddSingleton(); services.AddTransient(); services.AddTransient(); services.AddTransient(); @@ -121,6 +131,7 @@ public static IServiceCollection RegisterLeafServices( services.AddTransient(); services.AddTransient(); + services.AddIntegrationServices(environment); services.AddAdminServices(); services.RegisterLeafCore(); @@ -182,6 +193,36 @@ static IServiceCollection AddIAMServices(this IServiceCollection services) return services; } + static IServiceCollection AddIntegrationServices(this IServiceCollection services, Microsoft.AspNetCore.Hosting.IHostingEnvironment environment) + { + var sp = services.BuildServiceProvider(); + var integrationOpts = sp.GetRequiredService>().Value; + + if (integrationOpts.Enabled) + { + if (integrationOpts.SHRINE.Enabled) + { + services.AddHostedService(); + + /* Use for testing only!! */ + if (!environment.IsProduction()) + { + services.AddHttpClient().ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler + { + ClientCertificateOptions = ClientCertificateOption.Manual, + //ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator, + ServerCertificateCustomValidationCallback = (request, cert, chain, errors) => + { + return true; + } + }); + } + } + } + + return services; + } + static IServiceCollection AddCohortQueryExecutionService(this IServiceCollection services) { var sp = services.BuildServiceProvider(); diff --git a/src/server/API/appsettings.json b/src/server/API/appsettings.json index 7200af4ef..bca186874 100644 --- a/src/server/API/appsettings.json +++ b/src/server/API/appsettings.json @@ -83,6 +83,15 @@ "Enabled": true } }, + "Integration": { + "Enabled": true, + "SHRINE": { + "Enabled": true, + "HubApiURI": "https://localhost:6443", + "LocalNodeId": 8304711555476111654, + "LocalNodeName": "leaftest" + } + }, "Import": { "REDCap": { "Enabled": false, diff --git a/src/server/Model/Integration/Shrine/IShrinePollingService.cs b/src/server/Model/Integration/Shrine/IShrinePollingService.cs index 0008c9476..cd84377c7 100644 --- a/src/server/Model/Integration/Shrine/IShrinePollingService.cs +++ b/src/server/Model/Integration/Shrine/IShrinePollingService.cs @@ -4,12 +4,13 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using System.Threading.Tasks; namespace Model.Integration.Shrine { public interface IShrinePollingService { - + public Task ReadHubMessage(); } } diff --git a/src/server/Model/Options/IntegrationOptions.cs b/src/server/Model/Options/IntegrationOptions.cs new file mode 100644 index 000000000..bf5388f62 --- /dev/null +++ b/src/server/Model/Options/IntegrationOptions.cs @@ -0,0 +1,24 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; + +namespace Model.Options +{ + public class IntegrationOptions + { + public bool Enabled { get; set; } = false; + public SHRINEOptions SHRINE { get; set; } + } + + public class SHRINEOptions : IEnabled + { + public bool Enabled { get; set; } = false; + public string HubApiURI { get; set; } + public long LocalNodeId { get; set; } + public string LocalNodeName { get; set; } + } +} + diff --git a/src/server/Services/Export/REDCapExportService.cs b/src/server/Services/Export/REDCapExportService.cs index faa925cb9..50440fe52 100644 --- a/src/server/Services/Export/REDCapExportService.cs +++ b/src/server/Services/Export/REDCapExportService.cs @@ -10,7 +10,6 @@ using Microsoft.Extensions.Options; using System.Net.Http; using System.Threading.Tasks; -using System.Net.Http.Headers; using Newtonsoft.Json; using Model.Export; using Newtonsoft.Json.Serialization; diff --git a/src/server/Services/Integration/Shrine/ShrinePollingService.cs b/src/server/Services/Integration/Shrine/ShrinePollingService.cs index 7356657af..9ffc7efe2 100644 --- a/src/server/Services/Integration/Shrine/ShrinePollingService.cs +++ b/src/server/Services/Integration/Shrine/ShrinePollingService.cs @@ -4,13 +4,93 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.Http; +using System.Threading.Tasks; +using Microsoft.Extensions.Options; using Model.Integration.Shrine; +using Model.Options; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; namespace Services.Integration.Shrine { public class ShrinePollingService : IShrinePollingService { - - } + readonly HttpClient client; + readonly SHRINEOptions opts; + + public ShrinePollingService(HttpClient client, IOptions opts) + { + this.client = client; + this.opts = opts.Value.SHRINE; + } + + public async Task ReadHubMessage() + { + var req = new HttpRequestMessage + { + RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/receiveMessage/{opts.LocalNodeName}?timeOutSeconds=50"), + Method = HttpMethod.Get + }; + + var resp = await client.SendAsync(req); + resp.EnsureSuccessStatusCode(); + + var jsonString = await resp.Content.ReadAsStringAsync(); + + var deliveryAttemptId = GetDeliveryAttemptId(jsonString); + if (deliveryAttemptId != null) + { + var ack = new HttpRequestMessage + { + RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/acknowledge/{deliveryAttemptId}"), + Method = HttpMethod.Put + }; + var ackResp = await client.SendAsync(ack); + } + + return jsonString; + } + + private static string GetDeliveryAttemptId(string body) + { + var raw = JObject.Parse(body); + + if (raw.ContainsKey("deliveryAttemptId")) + { + return (string)raw["deliveryAttemptId"]["underlying"]; + } + return null; + } + + // from https://stackoverflow.com/a/47046191 + private static void RecurseDeserialize(Dictionary result) + { + //Iterate throgh key/value pairs + foreach (var keyValuePair in result.ToArray()) + { + //Check to see if Newtonsoft thinks this is a JArray + var jarray = keyValuePair.Value as JArray; + + if (jarray != null) + { + //Convert JArray back to json and deserialize to a list of dictionaries + var dictionaries = JsonConvert.DeserializeObject>>(jarray.ToString()); + + //Set the result as the dictionary + result[keyValuePair.Key] = dictionaries; + + //Iterate throught the dictionaries + foreach (var dictionary in dictionaries) + { + //Recurse + RecurseDeserialize(dictionary); + } + } + } + } + } } diff --git a/src/ui-client/package-lock.json b/src/ui-client/package-lock.json index 6c38d5636..0176580ab 100644 --- a/src/ui-client/package-lock.json +++ b/src/ui-client/package-lock.json @@ -1,8 +1,24666 @@ { "name": "ui-client", "version": "3.11.3", - "lockfileVersion": 1, + "lockfileVersion": 2, "requires": true, + "packages": { + "": { + "version": "3.11.3", + "dependencies": { + "@types/d3-format": "^1.3.1", + "@types/jwt-decode": "^2.2.1", + "@types/leaflet": "^1.2.14", + "@types/react": "^17.0.2", + "@types/react-copy-to-clipboard": "^4.2.6", + "@types/react-leaflet": "^1.1.5", + "@types/react-paginate": "^6.2.1", + "@types/react-redux": "^7.1.1", + "@types/reactstrap": "^8.0.4", + "@types/recharts": "^1.8.5", + "@types/shortid": "0.0.29", + "axios": "^0.21.2", + "babel-jest": "^24.9.0", + "bootstrap": "^4.3.1", + "brace": "^0.11.1", + "hoist-non-react-statics": "^3.3.0", + "jwt-decode": "^2.2.0", + "leaflet": "^1.3.1", + "leaflet-ant-path": "^1.1.2", + "moment": "^2.29.4", + "react": "^17.0.2", + "react-ace": "^7.0.2", + "react-copy-to-clipboard": "^5.0.1", + "react-countup": "^4.2.2", + "react-day-picker": "^7.3.2", + "react-dnd-cjs": "^9.5.1", + "react-dnd-html5-backend-cjs": "^9.5.1", + "react-dom": "^17.0.2", + "react-icons": "^3.7.0", + "react-leaflet": "^1.9.1", + "react-leaflet-ant-path": "^0.1.3", + "react-leaflet-div-icon": "^1.1.0", + "react-paginate": "^6.3.0", + "react-redux": "^7.1.0", + "react-textarea-autosize": "^7.1.0", + "reactstrap": "^8.0.1", + "recharts": "^2.5.0", + "redux": "^4.0.4", + "redux-devtools-extension": "^2.13.8", + "redux-thunk": "^2.3.0", + "shortid": "^2.2.10", + "sql-formatter": "^2.3.3" + }, + "devDependencies": { + "@types/node": "^12.7.2", + "@types/react-dom": "^16.9.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/eslint-plugin-tslint": "^4.22.0", + "@typescript-eslint/parser": "^5.5.0", + "eslint": "^8.0.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jsdoc": "^32.3.1", + "eslint-plugin-prefer-arrow": "^1.2.3", + "eslint-plugin-react": "^7.27.1", + "react-scripts": "^5.0.1", + "source-map-loader": "^0.2.4", + "typescript": "3.7.2" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@apideck/better-ajv-errors": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", + "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", + "dev": true, + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "dependencies": { + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.0.tgz", + "integrity": "sha512-y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.0.tgz", + "integrity": "sha512-reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ==", + "dependencies": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.19.0", + "@babel/helper-compilation-targets": "^7.19.0", + "@babel/helper-module-transforms": "^7.19.0", + "@babel/helpers": "^7.19.0", + "@babel/parser": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.9.tgz", + "integrity": "sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==", + "dev": true, + "dependencies": { + "eslint-scope": "^5.1.1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@babel/eslint-parser/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.0.tgz", + "integrity": "sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg==", + "dependencies": { + "@babel/types": "^7.19.0", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", + "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", + "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", + "dev": true, + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.18.6", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.0.tgz", + "integrity": "sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==", + "dependencies": { + "@babel/compat-data": "^7.19.0", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.20.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz", + "integrity": "sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-split-export-declaration": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", + "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "regexpu-core": "^5.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.2.tgz", + "integrity": "sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.17.7", + "@babel/helper-plugin-utils": "^7.16.7", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", + "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", + "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz", + "integrity": "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.18.6", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", + "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz", + "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", + "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-wrap-function": "^7.18.9", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.9.tgz", + "integrity": "sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-member-expression-to-functions": "^7.18.9", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", + "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", + "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "dependencies": { + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", + "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", + "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", + "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", + "dev": true, + "dependencies": { + "@babel/helper-function-name": "^7.19.0", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz", + "integrity": "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==", + "dependencies": { + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.19.0", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.0.tgz", + "integrity": "sha512-74bEXKX2h+8rrfQUfsBfuZZHzsEs6Eql4pqy/T4Nn6Y9wNPggQOqD6z6pn5Bl8ZfysKouFZT/UXEH94ummEeQw==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", + "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", + "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-proposal-optional-chaining": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.0.tgz", + "integrity": "sha512-nhEByMUTx3uZueJ/QkJuSlCfN4FGg+xy+vRsfGQGzSauq5ks2Deid2+05Q3KhfaUjvec1IGhw/Zm3cFm8JigTQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-remap-async-to-generator": "^7.18.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-class-static-block": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz", + "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.19.0.tgz", + "integrity": "sha512-Bo5nOSjiJccjv00+BrDkmfeBLBi2B0qe8ygj24KdL8VdwtZz+710NCwehF+x/Ng+0mkHx5za2eAofmvVFLF4Fg==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/plugin-syntax-decorators": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", + "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", + "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", + "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", + "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", + "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", + "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.18.8", + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.18.8" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", + "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", + "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", + "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", + "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.19.0.tgz", + "integrity": "sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", + "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz", + "integrity": "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz", + "integrity": "sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz", + "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz", + "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-remap-async-to-generator": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", + "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", + "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz", + "integrity": "sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-compilation-targets": "^7.19.0", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-optimise-call-expression": "^7.18.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-replace-supers": "^7.18.9", + "@babel/helper-split-export-declaration": "^7.18.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", + "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.18.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz", + "integrity": "sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", + "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", + "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", + "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "dev": true, + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", + "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/plugin-syntax-flow": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", + "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", + "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.18.9", + "@babel/helper-function-name": "^7.18.9", + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", + "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", + "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", + "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", + "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-simple-access": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.0.tgz", + "integrity": "sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==", + "dev": true, + "dependencies": { + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-module-transforms": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-validator-identifier": "^7.18.6", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", + "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.0.tgz", + "integrity": "sha512-HDSuqOQzkU//kfGdiHBt71/hkDTApw4U/cMVgKgX7PqfB3LOaK+2GtCEsBu1dL9CkswDm0Gwehht1dCr421ULQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", + "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", + "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-replace-supers": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.18.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", + "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", + "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.18.12", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.18.12.tgz", + "integrity": "sha512-Q99U9/ttiu+LMnRU8psd23HhvwXmKWDQIpocm0JKaICcZHnw+mdQbHm6xnSy7dOl8I5PELakYtNBubNQlBXbZw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", + "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz", + "integrity": "sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/plugin-syntax-jsx": "^7.18.6", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", + "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", + "dev": true, + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", + "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", + "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "regenerator-transform": "^0.15.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", + "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.10.tgz", + "integrity": "sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.9", + "babel-plugin-polyfill-corejs2": "^0.3.2", + "babel-plugin-polyfill-corejs3": "^0.5.3", + "babel-plugin-polyfill-regenerator": "^0.4.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", + "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz", + "integrity": "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", + "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", + "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", + "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.19.0.tgz", + "integrity": "sha512-DOOIywxPpkQHXijXv+s9MDAyZcLp12oYRl3CMWZ6u7TjSoCBq/KqHR/nNFR3+i2xqheZxoF0H2XyL7B6xeSRuA==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/plugin-syntax-typescript": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", + "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", + "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.0.tgz", + "integrity": "sha512-1YUju1TAFuzjIQqNM9WsF4U6VbD/8t3wEAlw3LFYuuEr+ywqLRcSXxFKz4DCEj+sN94l/XTDiUXYRrsvMpz9WQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.19.0", + "@babel/helper-compilation-targets": "^7.19.0", + "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-async-generator-functions": "^7.19.0", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-class-static-block": "^7.18.6", + "@babel/plugin-proposal-dynamic-import": "^7.18.6", + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", + "@babel/plugin-proposal-json-strings": "^7.18.6", + "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-numeric-separator": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.18.9", + "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.18.9", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", + "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.18.6", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-transform-arrow-functions": "^7.18.6", + "@babel/plugin-transform-async-to-generator": "^7.18.6", + "@babel/plugin-transform-block-scoped-functions": "^7.18.6", + "@babel/plugin-transform-block-scoping": "^7.18.9", + "@babel/plugin-transform-classes": "^7.19.0", + "@babel/plugin-transform-computed-properties": "^7.18.9", + "@babel/plugin-transform-destructuring": "^7.18.13", + "@babel/plugin-transform-dotall-regex": "^7.18.6", + "@babel/plugin-transform-duplicate-keys": "^7.18.9", + "@babel/plugin-transform-exponentiation-operator": "^7.18.6", + "@babel/plugin-transform-for-of": "^7.18.8", + "@babel/plugin-transform-function-name": "^7.18.9", + "@babel/plugin-transform-literals": "^7.18.9", + "@babel/plugin-transform-member-expression-literals": "^7.18.6", + "@babel/plugin-transform-modules-amd": "^7.18.6", + "@babel/plugin-transform-modules-commonjs": "^7.18.6", + "@babel/plugin-transform-modules-systemjs": "^7.19.0", + "@babel/plugin-transform-modules-umd": "^7.18.6", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.0", + "@babel/plugin-transform-new-target": "^7.18.6", + "@babel/plugin-transform-object-super": "^7.18.6", + "@babel/plugin-transform-parameters": "^7.18.8", + "@babel/plugin-transform-property-literals": "^7.18.6", + "@babel/plugin-transform-regenerator": "^7.18.6", + "@babel/plugin-transform-reserved-words": "^7.18.6", + "@babel/plugin-transform-shorthand-properties": "^7.18.6", + "@babel/plugin-transform-spread": "^7.19.0", + "@babel/plugin-transform-sticky-regex": "^7.18.6", + "@babel/plugin-transform-template-literals": "^7.18.9", + "@babel/plugin-transform-typeof-symbol": "^7.18.9", + "@babel/plugin-transform-unicode-escapes": "^7.18.10", + "@babel/plugin-transform-unicode-regex": "^7.18.6", + "@babel/preset-modules": "^0.1.5", + "@babel/types": "^7.19.0", + "babel-plugin-polyfill-corejs2": "^0.3.2", + "babel-plugin-polyfill-corejs3": "^0.5.3", + "babel-plugin-polyfill-regenerator": "^0.4.0", + "core-js-compat": "^3.22.1", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", + "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", + "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-transform-react-display-name": "^7.18.6", + "@babel/plugin-transform-react-jsx": "^7.18.6", + "@babel/plugin-transform-react-jsx-development": "^7.18.6", + "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz", + "integrity": "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/helper-validator-option": "^7.18.6", + "@babel/plugin-transform-typescript": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", + "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/runtime-corejs3": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.0.tgz", + "integrity": "sha512-JyXXoCu1N8GLuKc2ii8y5RGma5FMpFeO2nAQIe0Yzrbq+rQnN+sFj47auLblR5ka6aHNGPDgv8G/iI2Grb0ldQ==", + "dev": true, + "dependencies": { + "core-js-pure": "^3.20.2", + "regenerator-runtime": "^0.13.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", + "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.10", + "@babel/types": "^7.18.10" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.0.tgz", + "integrity": "sha512-4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA==", + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.19.0", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.19.0", + "@babel/types": "^7.19.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.0.tgz", + "integrity": "sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==", + "dependencies": { + "@babel/helper-string-parser": "^7.18.10", + "@babel/helper-validator-identifier": "^7.18.6", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dependencies": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "bin": { + "watch": "cli.js" + }, + "engines": { + "node": ">=0.1.95" + } + }, + "node_modules/@csstools/normalize.css": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", + "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==", + "dev": true + }, + "node_modules/@csstools/postcss-cascade-layers": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.0.6.tgz", + "integrity": "sha512-ei4Vh4AJwTCXTNj7uzwduoZDO7nLPksQ0TI7OzUlyFq4P4Uhu6hU7R4AlLimDP/s6D3PQdHmRL4f7UOy370UHA==", + "dev": true, + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-color-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz", + "integrity": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==", + "dev": true, + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz", + "integrity": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-hwb-function": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz", + "integrity": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-ic-unit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz", + "integrity": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==", + "dev": true, + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz", + "integrity": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==", + "dev": true, + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-nested-calc": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz", + "integrity": "sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz", + "integrity": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz", + "integrity": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==", + "dev": true, + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", + "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz", + "integrity": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz", + "integrity": "sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz", + "integrity": "sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || >=16" + } + }, + "node_modules/@csstools/postcss-unset-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz", + "integrity": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==", + "dev": true, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.0.2.tgz", + "integrity": "sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==", + "dev": true, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.1.tgz", + "integrity": "sha512-OhSY22oQQdw3zgPOOwdoj01l/Dzl1Z+xyUP33tkSN+aqyEhymJCcPHyXt+ylW8FSe0TfRC2VG+ROQOapD0aZSQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.4.0", + "globals": "^13.15.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.17.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", + "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz", + "integrity": "sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/gitignore-to-minimatch": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz", + "integrity": "sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==", + "dev": true + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "node_modules/@hypnosphi/create-react-context": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz", + "integrity": "sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==", + "dependencies": { + "gud": "^1.0.0", + "warning": "^4.0.3" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz", + "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==", + "dependencies": { + "@jest/source-map": "^24.9.0", + "chalk": "^2.0.1", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@jest/core/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@jest/core/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@jest/core/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@jest/core/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/core/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/core/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/@jest/core/node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/istanbul-lib-instrument": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", + "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/@jest/core/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/core/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/@jest/core/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/core/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@jest/core/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/core/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/@jest/core/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/environment/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/environment/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/environment/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@jest/environment/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@jest/environment/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@jest/environment/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/environment/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/environment/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/@jest/environment/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/environment/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/environment/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/@jest/environment/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/environment/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/environment/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/environment/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@jest/environment/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/environment/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz", + "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==", + "dependencies": { + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/globals/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@jest/globals/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@jest/globals/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/globals/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/globals/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/globals/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/globals/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/globals/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/globals/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@jest/reporters/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@jest/reporters/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@jest/reporters/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@jest/reporters/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/reporters/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", + "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/@jest/reporters/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/@jest/reporters/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@jest/reporters/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/reporters/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/@jest/reporters/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz", + "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.1.15", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-result": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz", + "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/istanbul-lib-coverage": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dev": true, + "dependencies": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@jest/test-sequencer/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@jest/test-sequencer/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@jest/test-sequencer/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@jest/test-sequencer/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-sequencer/node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@jest/test-sequencer/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-sequencer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/test-sequencer/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/@jest/test-sequencer/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/test-sequencer/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-sequencer/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-sequencer/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-sequencer/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/test-sequencer/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/@jest/test-sequencer/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@jest/test-sequencer/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-sequencer/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@jest/test-sequencer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/test-sequencer/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/@jest/transform": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^24.9.0", + "babel-plugin-istanbul": "^5.1.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.1.15", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", + "micromatch": "^3.1.10", + "pirates": "^4.0.1", + "realpath-native": "^1.1.0", + "slash": "^2.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "2.4.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jest/types": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^1.1.1", + "@types/yargs": "^13.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.15", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", + "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.7.tgz", + "integrity": "sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==", + "dev": true, + "dependencies": { + "ansi-html-community": "^0.0.8", + "common-path-prefix": "^3.0.0", + "core-js-pure": "^3.8.1", + "error-stack-parser": "^2.0.6", + "find-up": "^5.0.0", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.13" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rollup/plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", + "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.10.4", + "@rollup/pluginutils": "^3.1.0" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "11.2.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", + "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "@types/resolve": "1.17.1", + "builtin-modules": "^3.1.0", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", + "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dev": true, + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "dev": true + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.4.tgz", + "integrity": "sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA==", + "dev": true + }, + "node_modules/@sinclair/typebox": { + "version": "0.24.38", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.38.tgz", + "integrity": "sha512-IbYB6vdhLFmzGEyXXEdFAJKyq7S4/RsivkgxNzs/LzwYuUJHmeNQ0cHkjG/Yqm6VgUzzZDLMZAf0XgeeaZAocA==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", + "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "dev": true, + "dependencies": { + "ejs": "^3.1.6", + "json5": "^2.2.0", + "magic-string": "^0.25.0", + "string.prototype.matchall": "^4.0.6" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "dev": true, + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "dev": true, + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/core/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "dev": true, + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/asap": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/asap/-/asap-2.0.0.tgz", + "integrity": "sha512-upIS0Gt9Mc8eEpCbYMZ1K8rhNosfKUtimNcINce+zLwJF5UpM3Vv7yz3S5l/1IX+DxTa8lTkUjqynvjRXyJzsg==" + }, + "node_modules/@types/babel__core": { + "version": "7.1.19", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", + "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.18.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.1.tgz", + "integrity": "sha512-FSdLaZh2UxaMuLp9lixWaHq/golWTRWOnRsAXzDTDSDOQLuZb1nsdCt6pJSPWSEQt2eFZ2YVk3oYhn+1kLMeMA==", + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "dev": true, + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, + "node_modules/@types/body-parser/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/bonjour/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "dev": true, + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } + }, + "node_modules/@types/connect-history-api-fallback/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@types/connect/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@types/d3-array": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.0.4.tgz", + "integrity": "sha512-nwvEkG9vYOc0Ic7G7kwgviY4AQlTfYGIZ0fqB7CQHXGyYM6nO7kJh5EguSNA3jfh4rq7Sb7eMVq8isuvg2/miQ==" + }, + "node_modules/@types/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-HKuicPHJuvPgCD+np6Se9MQvS6OCbJmOjGvylzMJRlDwUXjKTTXs6Pwgk79O09Vj/ho3u1ofXnhFOaEWWPrlwA==" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.0.tgz", + "integrity": "sha512-aMo4eaAOijJjA6uU+GIeW018dvy9+oH5Y2VPPzjjfxevvGQ/oRDs+tfYC9b50Q4BygRR8yE2QCLsrT0WtAVseA==" + }, + "node_modules/@types/d3-format": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-1.4.2.tgz", + "integrity": "sha512-WeGCHAs7PHdZYq6lwl/+jsl+Nfc1J2W1kNcMeIMYzQsT6mtBDBgtJ/rcdjZ0k0rVIvqEZqhhuD5TK/v3P2gFHQ==" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-jx5leotSeac3jr0RePOH1KdR9rISG91QIE4Q2PYTu4OymLTZfA3SrnURSLzKH48HmXVUru50b8nje4E79oQSQw==", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-1.0.9.tgz", + "integrity": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.3.tgz", + "integrity": "sha512-PATBiMCpvHJSMtZAMEhc2WyL+hnzarKzI6wAHYjhsonjWJYGq5BXTzQjv4l8m2jO183/4wZ90rKvSeT7o72xNQ==", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-shape": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-1.3.8.tgz", + "integrity": "sha512-gqfnMz6Fd5H6GOLYixOZP/xlrMtJms9BaS+6oWxTKHNqPGZ93BkWWupQSCYm6YHqx6h9wjRupuJb90bun6ZaYg==", + "dependencies": { + "@types/d3-path": "^1" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.0.tgz", + "integrity": "sha512-sZLCdHvBUcNby1cB6Fd3ZBrABbjz3v1Vm90nysCQ6Vt7vd6e/h9Lt7SiJUoEX0l4Dzc7P5llKyhqSi1ycSf1Hg==" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.0.tgz", + "integrity": "sha512-HNB/9GHqu7Fo8AQiugyJbv6ZxYz58wef0esl4Mv828w1ZKpAshw/uFWVDUcIB9KKFeFKoxS3cHY07FFgtTRZ1g==" + }, + "node_modules/@types/eslint": { + "version": "8.4.6", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.6.tgz", + "integrity": "sha512-/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "dev": true, + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.17.30", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz", + "integrity": "sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } + }, + "node_modules/@types/express-serve-static-core/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@types/geojson": { + "version": "7946.0.10", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz", + "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==" + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/graceful-fs/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", + "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", + "dependencies": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true + }, + "node_modules/@types/http-proxy": { + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/http-proxy/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@types/invariant": { + "version": "2.2.35", + "resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.35.tgz", + "integrity": "sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==" + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", + "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", + "dependencies": { + "@types/istanbul-lib-coverage": "*", + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.11", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/jwt-decode": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@types/jwt-decode/-/jwt-decode-2.2.1.tgz", + "integrity": "sha512-aWw2YTtAdT7CskFyxEX2K21/zSDStuf/ikI3yBqmwpwJF0pS+/IX5DWv+1UFffZIbruP6cnT9/LAJV1gFwAT1A==" + }, + "node_modules/@types/leaflet": { + "version": "1.7.11", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.7.11.tgz", + "integrity": "sha512-VwAYom2pfIAf/pLj1VR5aLltd4tOtHyvfaJlNYCoejzP2nu52PrMi1ehsLRMUS+bgafmIIKBV1cMfKeS+uJ0Vg==", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/mime": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "12.20.55", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", + "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==", + "dev": true + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true + }, + "node_modules/@types/prettier": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.0.tgz", + "integrity": "sha512-RI1L7N4JnW5gQw2spvL7Sllfuf1SaHdrZpCHiBlCXjIlufi1SMNnbu2teze3/QE67Fg2tBlH7W+mi4hVNk4p0A==", + "dev": true + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "node_modules/@types/q": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", + "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "node_modules/@types/react": { + "version": "17.0.49", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.49.tgz", + "integrity": "sha512-CCBPMZaPhcKkYUTqFs/hOWqKjPxhTEmnZWjlHHgIMop67DsXywf9B5Os9Hz8KSacjNOgIdnZVJamwl232uxoPg==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-copy-to-clipboard": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@types/react-copy-to-clipboard/-/react-copy-to-clipboard-4.3.0.tgz", + "integrity": "sha512-iideNPRyroENqsOFh1i2Dv3zkviYS9r/9qD9Uh3Z9NNoAAqqa2x53i7iGndGNnJFIo20wIu7Hgh77tx1io8bgw==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-dom": { + "version": "16.9.16", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.16.tgz", + "integrity": "sha512-Oqc0RY4fggGA3ltEgyPLc3IV9T73IGoWjkONbsyJ3ZBn+UPPCYpU2ec0i3cEbJuEdZtkqcCF2l1zf2pBdgUGSg==", + "dev": true, + "dependencies": { + "@types/react": "^16" + } + }, + "node_modules/@types/react-dom/node_modules/@types/react": { + "version": "16.14.31", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.31.tgz", + "integrity": "sha512-CD3LuBW4xIeGy6BxuNZdXBOsuP00OHFuNOq/4e2xKDq6z02XvdH9wIkuPNmz7BRQpo5ncy1zT9fz4tTDqXbjzQ==", + "dev": true, + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-leaflet": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/@types/react-leaflet/-/react-leaflet-1.9.3.tgz", + "integrity": "sha512-4T0ZyW+ssRVF96E06uTtN4pX1c0rStOmLXKqEhC8mRHg4u2areQKTfzAX3BM0EFpw1OogzCdc6KzsC7Od32H2w==", + "dependencies": { + "@types/leaflet": "*", + "@types/react": "*" + } + }, + "node_modules/@types/react-paginate": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/@types/react-paginate/-/react-paginate-6.2.3.tgz", + "integrity": "sha512-msO6YaYrGlPLxLyJ3kSoXVXcTrMcAVuBTS2ksJ1jG72w9loN9EHZXu6G+cPUYOZSuuvt+EUQC3t0B+fjldC1Tg==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-redux": { + "version": "7.1.24", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.24.tgz", + "integrity": "sha512-7FkurKcS1k0FHZEtdbbgN8Oc6b+stGSfZYjQGicofJ0j4U0qIn/jaSvnP2pLwZKiai3/17xqqxkkrxTgN8UNbQ==", + "dependencies": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" + } + }, + "node_modules/@types/reactstrap": { + "version": "8.7.2", + "resolved": "https://registry.npmjs.org/@types/reactstrap/-/reactstrap-8.7.2.tgz", + "integrity": "sha512-8sYGS/LhG+ic8vhLwxhuVn+TSqS1lKzplm9BHv4JaQoetStAi9uOqP2VREfefIRT3JnOq5Y+G7Afdryvn+UgZQ==", + "dependencies": { + "reactstrap": "*" + } + }, + "node_modules/@types/recharts": { + "version": "1.8.23", + "resolved": "https://registry.npmjs.org/@types/recharts/-/recharts-1.8.23.tgz", + "integrity": "sha512-O/mIPm9f6dwRWfenOI3GQwsGta3x1YWjwqXOCZqC0MATQ6C+A+Jc8VxFnSUr4N3uYv64zkq90RwXFaMNbhJKvg==", + "dependencies": { + "@types/d3-shape": "^1", + "@types/react": "*" + } + }, + "node_modules/@types/resolve": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", + "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/resolve/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true + }, + "node_modules/@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "dev": true, + "dependencies": { + "@types/express": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", + "dev": true, + "dependencies": { + "@types/mime": "*", + "@types/node": "*" + } + }, + "node_modules/@types/serve-static/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@types/shallowequal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/shallowequal/-/shallowequal-1.1.1.tgz", + "integrity": "sha512-Lhni3aX80zbpdxRuWhnuYPm8j8UQaa571lHP/xI4W+7BAFhSIhRReXnqjEgT/XzPoXZTJkCqstFMJ8CZTK6IlQ==" + }, + "node_modules/@types/shortid": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/shortid/-/shortid-0.0.29.tgz", + "integrity": "sha512-9BCYD9btg2CY4kPcpMQ+vCR8U6V8f/KvixYD5ZbxoWlkhddNF5IeZMVL3p+QFUkg+Hb+kPAG9Jgk4bnnF1v/Fw==" + }, + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/sockjs/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" + }, + "node_modules/@types/trusted-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", + "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==", + "dev": true + }, + "node_modules/@types/ws": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/ws/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "13.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz", + "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.36.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.36.2.tgz", + "integrity": "sha512-OwwR8LRwSnI98tdc2z7mJYgY60gf7I9ZfGjN5EjCwwns9bdTuQfAXcsjSB2wSQ/TVNYSGKf4kzVXbNGaZvwiXw==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.36.2", + "@typescript-eslint/type-utils": "5.36.2", + "@typescript-eslint/utils": "5.36.2", + "debug": "^4.3.4", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.2.0", + "regexpp": "^3.2.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin-tslint": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin-tslint/-/eslint-plugin-tslint-4.33.0.tgz", + "integrity": "sha512-o3ujMErtZJPgiNRETRJefo1bFNrloocOa5dMU49OW/G+Rq92IbXTY6FSF5MOwrdQK1X+VBEcA8y6PhUPWGlYqA==", + "dev": true, + "dependencies": { + "@typescript-eslint/experimental-utils": "4.33.0", + "lodash": "^4.17.21" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin-tslint/node_modules/@typescript-eslint/experimental-utils": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz", + "integrity": "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.7", + "@typescript-eslint/scope-manager": "4.33.0", + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/typescript-estree": "4.33.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin-tslint/node_modules/@typescript-eslint/scope-manager": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz", + "integrity": "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + } + }, + "node_modules/@typescript-eslint/eslint-plugin-tslint/node_modules/@typescript-eslint/types": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz", + "integrity": "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==", + "dev": true, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + } + }, + "node_modules/@typescript-eslint/eslint-plugin-tslint/node_modules/@typescript-eslint/typescript-estree": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz", + "integrity": "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "@typescript-eslint/visitor-keys": "4.33.0", + "debug": "^4.3.1", + "globby": "^11.0.3", + "is-glob": "^4.0.1", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin-tslint/node_modules/@typescript-eslint/visitor-keys": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz", + "integrity": "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "4.33.0", + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + } + }, + "node_modules/@typescript-eslint/eslint-plugin-tslint/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin-tslint/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin-tslint/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin-tslint/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.36.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.36.2.tgz", + "integrity": "sha512-JtRmWb31KQoxGV6CHz8cI+9ki6cC7ciZepXYpCLxsdAtQlBrRBxh5Qpe/ZHyJFOT9j7gyXE+W0shWzRLPfuAFQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "5.36.2" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.36.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.36.2.tgz", + "integrity": "sha512-qS/Kb0yzy8sR0idFspI9Z6+t7mqk/oRjnAYfewG+VN73opAUvmYL3oPIMmgOX6CnQS6gmVIXGshlb5RY/R22pA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.36.2", + "@typescript-eslint/types": "5.36.2", + "@typescript-eslint/typescript-estree": "5.36.2", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.36.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.36.2.tgz", + "integrity": "sha512-cNNP51L8SkIFSfce8B1NSUBTJTu2Ts4nWeWbFrdaqjmn9yKrAaJUBHkyTZc0cL06OFHpb+JZq5AUHROS398Orw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.36.2", + "@typescript-eslint/visitor-keys": "5.36.2" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.36.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.36.2.tgz", + "integrity": "sha512-rPQtS5rfijUWLouhy6UmyNquKDPhQjKsaKH0WnY6hl/07lasj8gPaH2UD8xWkePn6SC+jW2i9c2DZVDnL+Dokw==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "5.36.2", + "@typescript-eslint/utils": "5.36.2", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.36.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.36.2.tgz", + "integrity": "sha512-9OJSvvwuF1L5eS2EQgFUbECb99F0mwq501w0H0EkYULkhFa19Qq7WFbycdw1PexAc929asupbZcgjVIe6OK/XQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.36.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.36.2.tgz", + "integrity": "sha512-8fyH+RfbKc0mTspfuEjlfqA4YywcwQK2Amcf6TDOwaRLg7Vwdu4bZzyvBZp4bjt1RRjQ5MDnOZahxMrt2l5v9w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.36.2", + "@typescript-eslint/visitor-keys": "5.36.2", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.36.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.36.2.tgz", + "integrity": "sha512-uNcopWonEITX96v9pefk9DC1bWMdkweeSsewJ6GeC7L6j2t0SJywisgkr9wUTtXk90fi2Eljj90HSHm3OGdGRg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.36.2", + "@typescript-eslint/types": "5.36.2", + "@typescript-eslint/typescript-estree": "5.36.2", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.36.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.36.2.tgz", + "integrity": "sha512-BtRvSR6dEdrNt7Net2/XDjbYKU5Ml6GqJgVfXT0CxTCJlnIqK7rAGreuWKMT2t8cFUT2Msv5oxw0GMRD7T5J7A==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.36.2", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", + "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dev": true, + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true + }, + "node_modules/acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "dev": true, + "dependencies": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + } + }, + "node_modules/acorn-node/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.0.tgz", + "integrity": "sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true, + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "node_modules/array-includes": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", + "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz", + "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz", + "integrity": "sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz", + "integrity": "sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.2", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "dev": true + }, + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", + "dev": true + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.8", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.8.tgz", + "integrity": "sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.3", + "caniuse-lite": "^1.0.30001373", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/axe-core": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz", + "integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, + "node_modules/axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==", + "dev": true + }, + "node_modules/babel-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz", + "integrity": "sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==", + "dependencies": { + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/babel__core": "^7.1.0", + "babel-plugin-istanbul": "^5.1.0", + "babel-preset-jest": "^24.9.0", + "chalk": "^2.4.2", + "slash": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-loader": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", + "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", + "dev": true, + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + } + }, + "node_modules/babel-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + } + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dev": true, + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "find-up": "^3.0.0", + "istanbul-lib-instrument": "^3.3.0", + "test-exclude": "^5.2.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz", + "integrity": "sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==", + "dependencies": { + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", + "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "dev": true + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.2.tgz", + "integrity": "sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.17.7", + "@babel/helper-define-polyfill-provider": "^0.3.2", + "semver": "^6.1.1" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.3.tgz", + "integrity": "sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.2", + "core-js-compat": "^3.21.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.0.tgz", + "integrity": "sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.3.2" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", + "dev": true + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "node_modules/babel-preset-jest": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz", + "integrity": "sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==", + "dependencies": { + "@babel/plugin-syntax-object-rest-spread": "^7.0.0", + "babel-plugin-jest-hoist": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", + "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/plugin-proposal-class-properties": "^7.16.0", + "@babel/plugin-proposal-decorators": "^7.16.4", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", + "@babel/plugin-proposal-numeric-separator": "^7.16.0", + "@babel/plugin-proposal-optional-chaining": "^7.16.0", + "@babel/plugin-proposal-private-methods": "^7.16.0", + "@babel/plugin-transform-flow-strip-types": "^7.16.0", + "@babel/plugin-transform-react-display-name": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.4", + "@babel/preset-env": "^7.16.4", + "@babel/preset-react": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.3", + "babel-plugin-macros": "^3.1.0", + "babel-plugin-transform-react-remove-prop-types": "^0.4.24" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/bfj": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", + "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "dev": true, + "dependencies": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "node_modules/body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/bonjour-service": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.14.tgz", + "integrity": "sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ==", + "dev": true, + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/bootstrap": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.2.tgz", + "integrity": "sha512-51Bbp/Uxr9aTuy6ca/8FbFloBUJZLHwnhTcnjIeRn2suQWsWzcuJhGjKDB5eppVte/8oCdOL3VuwxvZDUggwGQ==" + }, + "node_modules/brace": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/brace/-/brace-0.11.1.tgz", + "integrity": "sha512-Fc8Ne62jJlKHiG/ajlonC4Sd66Pq68fFwK4ihJGNZpGqboc324SQk+lRvMzpPRuJOmfrJefdG8/7JdWX4bzJ2Q==" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "node_modules/browserslist": { + "version": "4.21.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz", + "integrity": "sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==", + "dependencies": { + "caniuse-lite": "^1.0.30001370", + "electron-to-chromium": "^1.4.202", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.5" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camel-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001393", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001393.tgz", + "integrity": "sha512-N/od11RX+Gsk+1qY/jbPa0R6zJupEa0lxeBG598EbrtblxVCTJsQwbRBm6+V+rxpc5lHKdsXb9RY83cZIPLseA==" + }, + "node_modules/capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dependencies": { + "rsvp": "^4.8.4" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/check-types": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz", + "integrity": "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==", + "dev": true + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/chokidar/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chokidar/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/chokidar/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "dev": true + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/classnames": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz", + "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==" + }, + "node_modules/clean-css": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.1.tgz", + "integrity": "sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dev": true, + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/comment-parser": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.1.5.tgz", + "integrity": "sha512-RePCE4leIhBlmrqiYTvaqEeGYg7qpSl4etaIabKtdOQVi+mSTIBBklGUwIr79GXYnl3LpMwmDw4KeR2stNc6FA==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "dev": true + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dev": true, + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "dev": true + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-to-clipboard": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.2.tgz", + "integrity": "sha512-Vme1Z6RUDzrb6xAI7EZlVZ5uvOk2F//GaxKUxajDqm9LhOVM1inxNAD2vy+UZDYsd0uyA9s7b3/FVZPSxqrCfg==", + "dependencies": { + "toggle-selection": "^1.0.6" + } + }, + "node_modules/core-js": { + "version": "3.25.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.25.1.tgz", + "integrity": "sha512-sr0FY4lnO1hkQ4gLDr24K0DGnweGO1QwSj5BpfQjpSJPdqWalja4cTps29Y/PJVG/P7FYlPDkH3hO+Tr0CvDgQ==", + "dev": true, + "hasInstallScript": true + }, + "node_modules/core-js-compat": { + "version": "3.25.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.1.tgz", + "integrity": "sha512-pOHS7O0i8Qt4zlPW/eIFjwp+NrTPx+wTL0ctgI2fHn31sZOq89rDsmtc/A2vAX7r6shl+bmVI+678He46jgBlw==", + "dev": true, + "dependencies": { + "browserslist": "^4.21.3" + } + }, + "node_modules/core-js-pure": { + "version": "3.25.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.1.tgz", + "integrity": "sha512-7Fr74bliUDdeJCBMxkkIuQ4xfxn/SwrVg+HkJUAoNEXVqYLv55l6Af0dJ5Lq2YBUW9yKqSkLXaS5SYPK6MGa/A==", + "dev": true, + "hasInstallScript": true + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cosmiconfig/node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cosmiconfig/node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/countup.js": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/countup.js/-/countup.js-1.9.3.tgz", + "integrity": "sha512-UHf2P/mFKaESqdPq+UdBJm/1y8lYdlcDd0nTZHNC8cxWoJwZr1Eldm1PpWui446vDl5Pd8PtRYkr3q6K4+Qa5A==" + }, + "node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/cross-spawn/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/css-blank-pseudo": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", + "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-blank-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/css-declaration-sorter": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", + "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/css-has-pseudo": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", + "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "bin": { + "css-has-pseudo": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/css-loader": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", + "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.7", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-minimizer-webpack-plugin": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", + "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "dev": true, + "dependencies": { + "cssnano": "^5.0.6", + "jest-worker": "^27.0.2", + "postcss": "^8.3.5", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/css-minimizer-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", + "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "dev": true, + "bin": { + "css-prefers-color-scheme": "dist/cli.cjs" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "dev": true + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-unit-converter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", + "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==" + }, + "node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/cssdb": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.0.1.tgz", + "integrity": "sha512-pT3nzyGM78poCKLAEy2zWIVX2hikq6dIrjuZzLV98MumBg+xMTNYfHx7paUlfiRTgg91O/vR889CIf+qiv79Rw==", + "dev": true + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "5.1.13", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.13.tgz", + "integrity": "sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==", + "dev": true, + "dependencies": { + "cssnano-preset-default": "^5.2.12", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/cssnano-preset-default": { + "version": "5.2.12", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz", + "integrity": "sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^6.3.0", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.0", + "postcss-convert-values": "^5.1.2", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.6", + "postcss-merge-rules": "^5.1.2", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.3", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.0", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.0", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/csstype": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz", + "integrity": "sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==" + }, + "node_modules/d3-array": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.3.tgz", + "integrity": "sha512-JRHwbQQ84XuAESWhvIPaUV4/1UYTBOLiOPGWqgFDHZS1D5QN9c57FbH3QpEnQMYiOXNzKUQyGTZf+EVO7RT5TQ==", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "engines": { + "node": ">=12" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dev": true, + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/decimal.js": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.0.tgz", + "integrity": "sha512-Nv6ENEzyPQ6AItkGwLE2PGKinZZ9g59vSh2BeH6NqPu0OTKZ5ruJsVqh/orbAnqXc9pBbgXAIrc2EyaCj8NpGg==", + "dev": true + }, + "node_modules/decimal.js-light": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", + "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "dev": true, + "dependencies": { + "execa": "^5.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/default-gateway/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/default-gateway/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/default-gateway/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/default-gateway/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/default-gateway/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/default-gateway/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/default-gateway/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/default-gateway/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/default-gateway/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==", + "dev": true + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", + "dev": true + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dev": true, + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/detective": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", + "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", + "dev": true, + "dependencies": { + "acorn-node": "^1.8.2", + "defined": "^1.0.0", + "minimist": "^1.2.6" + }, + "bin": { + "detective": "bin/detective.js" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true + }, + "node_modules/diff-match-patch": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz", + "integrity": "sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==" + }, + "node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dir-glob/node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/dnd-core-cjs": { + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/dnd-core-cjs/-/dnd-core-cjs-9.5.1.tgz", + "integrity": "sha512-DNYqlY3jnGjDWZdE2O3XyDyoWGnum2hKZrc+Cwf5cY6Tu7ECxKT9DB/NTR6k6Bq8dElvnSVHTR+ra9FRhQJMhg==", + "dependencies": { + "@types/asap": "^2.0.0", + "@types/invariant": "^2.2.30", + "asap": "^2.0.6", + "invariant": "^2.2.4", + "redux": "^4.0.4" + } + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", + "dev": true + }, + "node_modules/dns-packet": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", + "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", + "dev": true, + "dependencies": { + "@leichtgewicht/ip-codec": "^2.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-helpers": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", + "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", + "dependencies": { + "@babel/runtime": "^7.1.2" + } + }, + "node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/dom-serializer/node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dev": true, + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/domhandler/node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/dotenv": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", + "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", + "dev": true + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/ejs": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", + "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", + "dev": true, + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.245", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.245.tgz", + "integrity": "sha512-kUN8QXmqHAN8phxjF3QpHeX7CbXGXadSngx9r1O/S9jt+uC0O/vjPi/9+8/Mk3sKewLLMrjpBJZMfVpPCdkG3g==" + }, + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dev": true, + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz", + "integrity": "sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.2", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.2", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dev": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", + "dev": true, + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.23.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.23.0.tgz", + "integrity": "sha512-pBG/XOn0MsJcKcTRLr27S5HpzQo4kLr+HjLQIyK4EiCsijDl/TB+h5uEuJU6bQ8Edvwz1XWOjpaP2qgnXGpTcA==", + "dev": true, + "dependencies": { + "@eslint/eslintrc": "^1.3.1", + "@humanwhocodes/config-array": "^0.10.4", + "@humanwhocodes/gitignore-to-minimatch": "^1.0.2", + "@humanwhocodes/module-importer": "^1.0.1", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.4.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^6.0.1", + "globals": "^13.15.0", + "globby": "^11.1.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", + "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + } + }, + "node_modules/eslint-config-react-app": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", + "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.16.0", + "@babel/eslint-parser": "^7.16.3", + "@rushstack/eslint-patch": "^1.1.0", + "@typescript-eslint/eslint-plugin": "^5.5.0", + "@typescript-eslint/parser": "^5.5.0", + "babel-preset-react-app": "^10.0.1", + "confusing-browser-globals": "^1.0.11", + "eslint-plugin-flowtype": "^8.0.3", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jest": "^25.3.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.27.1", + "eslint-plugin-react-hooks": "^4.3.0", + "eslint-plugin-testing-library": "^5.0.1" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", + "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "resolve": "^1.20.0" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", + "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", + "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "dev": true, + "dependencies": { + "lodash": "^4.17.21", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.26.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", + "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.4", + "array.prototype.flat": "^1.2.5", + "debug": "^2.6.9", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-module-utils": "^2.7.3", + "has": "^1.0.3", + "is-core-module": "^2.8.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.5", + "resolve": "^1.22.0", + "tsconfig-paths": "^3.14.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/eslint-plugin-jsdoc": { + "version": "32.3.4", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-32.3.4.tgz", + "integrity": "sha512-xSWfsYvffXnN0OkwLnB7MoDDDDjqcp46W7YlY1j7JyfAQBQ+WnGCfLov3gVNZjUGtK9Otj8mEhTZTqJu4QtIGA==", + "dev": true, + "dependencies": { + "comment-parser": "1.1.5", + "debug": "^4.3.1", + "jsdoctypeparser": "^9.0.0", + "lodash": "^4.17.21", + "regextras": "^0.7.1", + "semver": "^7.3.5", + "spdx-expression-parse": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz", + "integrity": "sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.18.9", + "aria-query": "^4.2.2", + "array-includes": "^3.1.5", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.4.3", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.2", + "language-tags": "^1.0.5", + "minimatch": "^3.1.2", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-plugin-prefer-arrow": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-prefer-arrow/-/eslint-plugin-prefer-arrow-1.2.3.tgz", + "integrity": "sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ==", + "dev": true + }, + "node_modules/eslint-plugin-react": { + "version": "7.31.7", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.7.tgz", + "integrity": "sha512-8NldBTeYp/kQoTV1uT0XF6HcmDqbgZ0lNPkN0wlRw8DJKXEnaWu+oh/6gt3xIhzvQ35wB2Y545fJhIbJSZ2NNw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.5", + "array.prototype.flatmap": "^1.3.0", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.5", + "object.fromentries": "^2.0.5", + "object.hasown": "^1.1.1", + "object.values": "^1.1.5", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.7" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dev": true, + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "5.6.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.6.2.tgz", + "integrity": "sha512-imakD/MY+8Rp3r69G7Pt1egmLZscSWoIhrxgdVR3kr2nlHImRRh7LeFcoqfAA5CK1rzFFV6rBEp3GTfOEYMpNw==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "^5.13.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0", + "npm": ">=6" + } + }, + "node_modules/eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", + "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "dev": true, + "dependencies": { + "@types/eslint": "^7.29.0 || ^8.4.1", + "jest-worker": "^28.0.2", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/eslint-webpack-plugin/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/eslint/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.17.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", + "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/espree": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz", + "integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==", + "dev": true, + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "dev": true + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/exec-sh": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", + "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==" + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/expect/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/expect/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/expect/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/expect/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/expect/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/expect/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/expect/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/expect/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/expect/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/expect/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/expect/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/expect/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/expect/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/expect/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/expect/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/expect/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/expect/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/expect/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/expect/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/expect/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "dev": true, + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/express/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extend-shallow/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-equals": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-4.0.3.tgz", + "integrity": "sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==" + }, + "node_modules/fast-glob": { + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", + "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-glob/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-glob/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/fast-glob/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/fast-glob/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "dev": true, + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dev": true, + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "dev": true, + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/filesize": { + "version": "8.0.7", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", + "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", + "integrity": "sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "glob": "^7.1.6", + "memfs": "^3.1.2", + "minimatch": "^3.0.4", + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=10", + "yarn": ">=1.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + }, + "engines": { + "node": ">= 8.9.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", + "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", + "dev": true + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/globby/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, + "node_modules/gud": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz", + "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==" + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dev": true, + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/harmony-reflect": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", + "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dependencies": { + "get-intrinsic": "^1.1.1" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "dev": true, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dev": true, + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", + "dev": true + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "dev": true, + "dependencies": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "dev": true, + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/htmlparser2/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "node_modules/htmlparser2/node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "node_modules/htmlparser2/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-parser-js": { + "version": "0.5.8", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "dev": true, + "dependencies": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/http-proxy-middleware/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + } + }, + "node_modules/idb": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.0.2.tgz", + "integrity": "sha512-jjKrT1EnyZewQ/gCBb/eyiYrhGzws2FeY92Yx8qT9S9GeQAmo4JFVIiWRIfKW/6Ob9A+UDAOW9j9jn58fy2HIg==", + "dev": true + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "dev": true, + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ignore": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "9.0.15", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.15.tgz", + "integrity": "sha512-2eB/sswms9AEUSkOm4SbV5Y7Vmt/bKRwByd52jfLkW4OLYeaTP3EEiJ9agqU0O/tq6Dk62Zfj+TJSqfm1rLVGQ==", + "dev": true + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "engines": { + "node": ">=12" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-callable": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", + "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-core-module": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", + "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "dev": true + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dependencies": { + "call-bind": "^1.0.2" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", + "dev": true + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "dependencies": { + "@babel/generator": "^7.4.0", + "@babel/parser": "^7.4.3", + "@babel/template": "^7.4.0", + "@babel/traverse": "^7.4.3", + "@babel/types": "^7.4.0", + "istanbul-lib-coverage": "^2.0.5", + "semver": "^6.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps/node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jake": { + "version": "10.8.5", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", + "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", + "dev": true, + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jake/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jake/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dev": true, + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-changed-files/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-changed-files/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-changed-files/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-changed-files/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-changed-files/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-changed-files/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-changed-files/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-changed-files/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-changed-files/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-circus/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-circus/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/jest-circus/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-circus/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-circus/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-circus/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-circus/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-circus/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-config/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-config/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-config/node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dev": true, + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-config/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-config/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-config/node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/istanbul-lib-instrument": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", + "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-config/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-config/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-config/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-config/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-config/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-config/node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-config/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-each/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-each/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-each/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-environment-jsdom/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/jest-environment-jsdom/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-environment-jsdom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-environment-jsdom/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-environment-jsdom/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-environment-jsdom/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-jsdom/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-environment-jsdom/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-environment-jsdom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-jsdom/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-environment-node/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-environment-node/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/jest-environment-node/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-environment-node/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-environment-node/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-environment-node/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-environment-node/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-environment-node/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-environment-node/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-environment-node/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-environment-node/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", + "dependencies": { + "@jest/types": "^24.9.0", + "anymatch": "^2.0.0", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.15", + "invariant": "^2.2.4", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", + "micromatch": "^3.1.10", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 6" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-jasmine2/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-jasmine2/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/jest-jasmine2/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-jasmine2/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-jasmine2/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-jasmine2/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-jasmine2/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-jasmine2/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-jasmine2/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-jasmine2/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-jasmine2/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dev": true, + "dependencies": { + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/stack-utils": "^1.0.1", + "chalk": "^2.0.1", + "micromatch": "^3.1.10", + "slash": "^2.0.0", + "stack-utils": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz", + "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", + "dependencies": { + "@jest/types": "^24.9.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-regex-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz", + "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-resolve-dependencies/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-resolve-dependencies/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-resolve/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-resolve/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-resolve/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-resolve/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-resolve/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-resolve/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-resolve/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-resolve/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-resolve/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-resolve/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-resolve/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-runner/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-runner/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/jest-runner/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-runner/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runner/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-runner/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-runner/node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/istanbul-lib-instrument": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", + "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-runner/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-runner/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runner/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-runner/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-runner/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-runner/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dev": true, + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-runtime/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-runtime/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/jest-runtime/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-runtime/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runtime/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-runtime/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-runtime/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runtime/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/jest-runtime/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-runtime/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/istanbul-lib-instrument": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", + "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-runtime/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-runtime/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runtime/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-runtime/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-runtime/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-runtime/node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-runtime/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-runtime/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/jest-serializer": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-snapshot/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-snapshot/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-snapshot/node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/istanbul-lib-instrument": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", + "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/jest-snapshot/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-snapshot/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-snapshot/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-snapshot/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/jest-util": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", + "dependencies": { + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "callsites": "^3.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.15", + "is-ci": "^2.0.0", + "mkdirp": "^0.5.1", + "slash": "^2.0.0", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-validate/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-validate/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-validate/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", + "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "dev": true, + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-watch-typeahead/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-watch-typeahead/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/jest-watch-typeahead/node_modules/@types/yargs": { + "version": "17.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.12.tgz", + "integrity": "sha512-Nz4MPhecOFArtm81gFQvQqdV7XYCrWKx5uUt6GNHredFHn1i2mtWqXTON7EPXMtNi1qjtjEM/VCHDhcHsAMLXQ==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-watch-typeahead/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/jest-watch-typeahead/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "dev": true, + "dependencies": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-watch-typeahead/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watch-typeahead/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-watch-typeahead/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/jest-watch-typeahead/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", + "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", + "dev": true, + "dependencies": { + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", + "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", + "dev": true, + "engines": { + "node": ">=12.20" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/jest-watch-typeahead/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watch-typeahead/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest-watcher/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest-watcher/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/jest-watcher/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watcher/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-watcher/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest-watcher/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-watcher/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest-watcher/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest/node_modules/@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest/node_modules/@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "dependencies": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/jest/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/jest/node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/jest/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jest/node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dev": true, + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest/node_modules/jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/jest/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsdoctypeparser": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/jsdoctypeparser/-/jsdoctypeparser-9.0.0.tgz", + "integrity": "sha512-jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw==", + "dev": true, + "bin": { + "jsdoctypeparser": "bin/jsdoctypeparser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dev": true, + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.1.tgz", + "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/jwt-decode": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-2.2.0.tgz", + "integrity": "sha512-86GgN2vzfUu7m9Wcj63iUkuDzFNYFVmjeDm2GzWpUk+opB0pEpMsw6ePCMrhYkumz2C1ihqtZzOMAg7FiXcNoQ==" + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", + "dev": true + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "dev": true, + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/leaflet": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.8.0.tgz", + "integrity": "sha512-gwhMjFCQiYs3x/Sf+d49f10ERXaEFCPr+nVTryhAW8DWbMGqJqt9G4XuIaHmFW08zYvhgdzqXGr8AlW8v8dQkA==" + }, + "node_modules/leaflet-ant-path": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/leaflet-ant-path/-/leaflet-ant-path-1.3.0.tgz", + "integrity": "sha512-wgWWcAD4w8QVguRsHh89NGj5eqwLOP6e/HazunW0fQaytqZqEh3WePWYIrmbUeMcOf2cX/+GecHkFfI5tirS1Q==" + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lower-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "dev": true, + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "dev": true + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memfs": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", + "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", + "dev": true, + "dependencies": { + "fs-monkey": "^1.0.3" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz", + "integrity": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==", + "dev": true, + "dependencies": { + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dev": true, + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/nan": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", + "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==", + "optional": true + }, + "node_modules/nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/no-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, + "engines": { + "node": ">= 6.13.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + }, + "node_modules/node-releases": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/nwsapi": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", + "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==", + "dev": true + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", + "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", + "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz", + "integrity": "sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==", + "dependencies": { + "array.prototype.reduce": "^1.0.4", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/object.hasown": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz", + "integrity": "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", + "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dev": true, + "dependencies": { + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/param-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/tslib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", + "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", + "dev": true + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==", + "dev": true + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/pirates": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", + "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/popper.js": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", + "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==" + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.4.16", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz", + "integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==", + "dev": true, + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz", + "integrity": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-browser-comments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", + "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + } + }, + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz", + "integrity": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", + "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz", + "integrity": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-colormin": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", + "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-convert-values": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz", + "integrity": "sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==", + "dev": true, + "dependencies": { + "browserslist": "^4.20.3", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-custom-media": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", + "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-custom-properties": { + "version": "12.1.8", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.8.tgz", + "integrity": "sha512-8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", + "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz", + "integrity": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz", + "integrity": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==", + "dev": true, + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-env-function": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", + "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", + "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", + "dev": true + }, + "node_modules/postcss-focus-visible": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", + "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-focus-within": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", + "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "dev": true + }, + "node_modules/postcss-gap-properties": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz", + "integrity": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==", + "dev": true, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-image-set-function": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz", + "integrity": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-import": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", + "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", + "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", + "dev": true + }, + "node_modules/postcss-js": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", + "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", + "dev": true, + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + } + }, + "node_modules/postcss-lab-function": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz", + "integrity": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==", + "dev": true, + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-load-config": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "dev": true, + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/postcss-loader": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", + "dev": true, + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/postcss-loader/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-logical": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", + "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", + "dev": true, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-media-minmax": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", + "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz", + "integrity": "sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-merge-rules": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz", + "integrity": "sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dev": true, + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-minify-params": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz", + "integrity": "sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + } + }, + "node_modules/postcss-nested": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz", + "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.6" + }, + "engines": { + "node": ">=12.0" + } + }, + "node_modules/postcss-nesting": { + "version": "10.1.10", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.1.10.tgz", + "integrity": "sha512-lqd7LXCq0gWc0wKXtoKDru5wEUNjm3OryLVNRZ8OnW8km6fSNUuFrjEhU3nklxXE2jvd4qrox566acgh+xQt8w==", + "dev": true, + "dependencies": { + "@csstools/selector-specificity": "^2.0.0", + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-normalize": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", + "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", + "dev": true, + "dependencies": { + "@csstools/normalize.css": "*", + "postcss-browser-comments": "^4", + "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz", + "integrity": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dev": true, + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-opacity-percentage": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.2.tgz", + "integrity": "sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==", + "dev": true, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dev": true, + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz", + "integrity": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "dev": true + }, + "node_modules/postcss-place": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz", + "integrity": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-preset-env": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.1.tgz", + "integrity": "sha512-8884CHxQaoN1i4iEK+JvzOe8emODb5R4p/0dw4yEdo7QM4RdUk2sBx0fnzFyJt8BLfZSCGeVkKZ4HC564waBpQ==", + "dev": true, + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.0.6", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", + "@csstools/postcss-progressive-custom-properties": "^1.3.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.8", + "browserslist": "^4.21.3", + "css-blank-pseudo": "^3.0.3", + "css-has-pseudo": "^3.0.4", + "css-prefers-color-scheme": "^6.0.3", + "cssdb": "^7.0.1", + "postcss-attribute-case-insensitive": "^5.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^4.2.4", + "postcss-color-hex-alpha": "^8.0.4", + "postcss-color-rebeccapurple": "^7.1.1", + "postcss-custom-media": "^8.0.2", + "postcss-custom-properties": "^12.1.8", + "postcss-custom-selectors": "^6.0.3", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", + "postcss-env-function": "^4.0.6", + "postcss-focus-visible": "^6.0.4", + "postcss-focus-within": "^5.0.4", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", + "postcss-initial": "^4.0.1", + "postcss-lab-function": "^4.2.1", + "postcss-logical": "^5.0.4", + "postcss-media-minmax": "^5.0.0", + "postcss-nesting": "^10.1.10", + "postcss-opacity-percentage": "^1.1.2", + "postcss-overflow-shorthand": "^3.0.4", + "postcss-page-break": "^3.0.4", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz", + "integrity": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz", + "integrity": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "dev": true + }, + "node_modules/postcss-selector-not": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz", + "integrity": "sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dev": true, + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-svgo/node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-svgo/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "node_modules/postcss-svgo/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "node_modules/postcss-svgo/node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + } + }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dev": true, + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/promise": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.2.0.tgz", + "integrity": "sha512-+CMAlLHqwRYwBMXKCP+o8ns7DN+xHDUiI+0nArsiJ9y+kJVPLFxEaSw6Ha9s9H0tftxg2Yzl25wqj9G7m5wLZg==", + "dev": true, + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dev": true, + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "dev": true, + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "dev": true, + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-ace": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/react-ace/-/react-ace-7.0.5.tgz", + "integrity": "sha512-3iI+Rg2bZXCn9K984ll2OF4u9SGcJH96Q1KsUgs9v4M2WePS4YeEHfW2nrxuqJrAkE5kZbxaCE79k6kqK0YBjg==", + "dependencies": { + "brace": "^0.11.1", + "diff-match-patch": "^1.0.4", + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "prop-types": "^15.7.2" + } + }, + "node_modules/react-app-polyfill": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", + "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", + "dev": true, + "dependencies": { + "core-js": "^3.19.2", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.9", + "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-copy-to-clipboard": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.0.tgz", + "integrity": "sha512-k61RsNgAayIJNoy9yDsYzDe/yAZAzEbEgcz3DZMhF686LEyukcE1hzurxe85JandPUG+yTfGVFzuEw3xt8WP/A==", + "dependencies": { + "copy-to-clipboard": "^3.3.1", + "prop-types": "^15.8.1" + } + }, + "node_modules/react-countup": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/react-countup/-/react-countup-4.4.0.tgz", + "integrity": "sha512-PSSpvRT5FCjCVh3NzPpz/SgeG8b9LnpfCSO1TEMK8K/GhmxI+s8D/KbxGCFsmmeq+Y0cnf2KepUHssPfH/7iyw==", + "dependencies": { + "countup.js": "^1.9.3", + "prop-types": "^15.7.2", + "warning": "^4.0.3" + } + }, + "node_modules/react-day-picker": { + "version": "7.4.10", + "resolved": "https://registry.npmjs.org/react-day-picker/-/react-day-picker-7.4.10.tgz", + "integrity": "sha512-/QkK75qLKdyLmv0kcVzhL7HoJPazoZXS8a6HixbVoK6vWey1Od1WRLcxfyEiUsRfccAlIlf6oKHShqY2SM82rA==", + "dependencies": { + "prop-types": "^15.6.2" + } + }, + "node_modules/react-dev-utils": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.16.0", + "address": "^1.1.2", + "browserslist": "^4.18.1", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "detect-port-alt": "^1.1.6", + "escape-string-regexp": "^4.0.0", + "filesize": "^8.0.6", + "find-up": "^5.0.0", + "fork-ts-checker-webpack-plugin": "^6.5.0", + "global-modules": "^2.0.0", + "globby": "^11.0.4", + "gzip-size": "^6.0.0", + "immer": "^9.0.7", + "is-root": "^2.1.0", + "loader-utils": "^3.2.0", + "open": "^8.4.0", + "pkg-up": "^3.1.0", + "prompts": "^2.4.2", + "react-error-overlay": "^6.0.11", + "recursive-readdir": "^2.2.2", + "shell-quote": "^1.7.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/react-dev-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-dev-utils/node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "dev": true, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/react-dev-utils/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/react-dnd-cjs": { + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/react-dnd-cjs/-/react-dnd-cjs-9.5.1.tgz", + "integrity": "sha512-lkSp/FRtdWCEC4Eh+5UPwAmjoJKcCmg5jYMDuRW18i0Ux8pXwjjXP9Ivm0ocd+0JXZf38yE+VzQjQA12MRopgg==", + "dependencies": { + "@types/hoist-non-react-statics": "^3.3.1", + "@types/shallowequal": "^1.1.1", + "dnd-core-cjs": "^9.5.1", + "hoist-non-react-statics": "^3.3.0", + "shallowequal": "^1.1.0" + } + }, + "node_modules/react-dnd-html5-backend-cjs": { + "version": "9.5.1", + "resolved": "https://registry.npmjs.org/react-dnd-html5-backend-cjs/-/react-dnd-html5-backend-cjs-9.5.1.tgz", + "integrity": "sha512-KcOD6j/u3PRMSL22IYk/hQ0b/gL5kouWvUazFXzKPqgNpidMK48YUM+6JCy0O51vp1opcE+oZN++9Xk6F02zuA==", + "dependencies": { + "dnd-core-cjs": "^9.5.1" + } + }, + "node_modules/react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.11", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", + "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==", + "dev": true + }, + "node_modules/react-icons": { + "version": "3.11.0", + "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-3.11.0.tgz", + "integrity": "sha512-JRgiI/vdF6uyBgyZhVyYJUZAop95Sy4XDe/jmT3R/bKliFWpO/uZBwvSjWEdxwzec7SYbEPNPck0Kff2tUGM2Q==", + "dependencies": { + "camelcase": "^5.0.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-leaflet": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-1.9.1.tgz", + "integrity": "sha512-QiYpjyf1DHy0gLAR2958Mo5Wlu2u7FubIjapPpuUAQNFmjkVSteiDLlEdDpGswTHTyNAfKLS+u9PqvfipMDZKA==", + "dependencies": { + "lodash": "^4.0.0", + "lodash-es": "^4.0.0", + "warning": "^3.0.0" + } + }, + "node_modules/react-leaflet-ant-path": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/react-leaflet-ant-path/-/react-leaflet-ant-path-0.1.3.tgz", + "integrity": "sha512-kuoV3tSmBp/DeBkHyVo9YHVR1QbAjQmnTfZYXY4PFLkGtAjDDgZjhNxkFZXHruCuMxx7BhCOQzM2BSO1MX6Jdg==", + "dependencies": { + "prop-types": "^15.5.10" + } + }, + "node_modules/react-leaflet-div-icon": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/react-leaflet-div-icon/-/react-leaflet-div-icon-1.1.0.tgz", + "integrity": "sha512-S3UdDlyplQp7o1lQIdeIidoD2lOzc0x7t4y/bg+N2Ceyo//727Pdgr8+1LWpohGLPeUU0P4RbCCkgBCawIDFug==", + "dependencies": { + "prop-types": "^15.5.10" + } + }, + "node_modules/react-leaflet/node_modules/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-jMBt6pUrKn5I+OGgtQ4YZLdhIeJmObddh6CsibPxyQ5yPZm1XExSyzC1LCNX7BzhxWgiHmizBWJTHJIjMjTQYQ==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-paginate": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/react-paginate/-/react-paginate-6.5.0.tgz", + "integrity": "sha512-H7xSi9jyiJzgfaj+2nNhQcjZfwzJ/Mxb64V2RiyDctjZyCWojwsaGwMqhLBpQ58iAuMVtBMRQ7ECqMcUKG9QSQ==", + "dependencies": { + "prop-types": "^15.6.1" + } + }, + "node_modules/react-popper": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-1.3.11.tgz", + "integrity": "sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "@hypnosphi/create-react-context": "^0.3.1", + "deep-equal": "^1.1.1", + "popper.js": "^1.14.4", + "prop-types": "^15.6.1", + "typed-styles": "^0.0.7", + "warning": "^4.0.2" + } + }, + "node_modules/react-redux": { + "version": "7.2.8", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.8.tgz", + "integrity": "sha512-6+uDjhs3PSIclqoCk0kd6iX74gzrGc3W5zcAjbrFgEdIjRSQObdIwfx80unTkVUYvbQ95Y8Av3OvFHq1w5EOUw==", + "dependencies": { + "@babel/runtime": "^7.15.4", + "@types/react-redux": "^7.1.20", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^17.0.2" + } + }, + "node_modules/react-redux/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "node_modules/react-refresh": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", + "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-resize-detector": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/react-resize-detector/-/react-resize-detector-8.1.0.tgz", + "integrity": "sha512-S7szxlaIuiy5UqLhLL1KY3aoyGHbZzsTpYal9eYMwCyKqoqoVLCmIgAgNyIM1FhnP2KyBygASJxdhejrzjMb+w==", + "dependencies": { + "lodash": "^4.17.21" + } + }, + "node_modules/react-scripts": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", + "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.16.0", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", + "@svgr/webpack": "^5.5.0", + "babel-jest": "^27.4.2", + "babel-loader": "^8.2.3", + "babel-plugin-named-asset-import": "^0.3.8", + "babel-preset-react-app": "^10.0.1", + "bfj": "^7.0.2", + "browserslist": "^4.18.1", + "camelcase": "^6.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "css-loader": "^6.5.1", + "css-minimizer-webpack-plugin": "^3.2.0", + "dotenv": "^10.0.0", + "dotenv-expand": "^5.1.0", + "eslint": "^8.3.0", + "eslint-config-react-app": "^7.0.1", + "eslint-webpack-plugin": "^3.1.1", + "file-loader": "^6.2.0", + "fs-extra": "^10.0.0", + "html-webpack-plugin": "^5.5.0", + "identity-obj-proxy": "^3.0.0", + "jest": "^27.4.3", + "jest-resolve": "^27.4.2", + "jest-watch-typeahead": "^1.0.0", + "mini-css-extract-plugin": "^2.4.5", + "postcss": "^8.4.4", + "postcss-flexbugs-fixes": "^5.0.2", + "postcss-loader": "^6.2.1", + "postcss-normalize": "^10.0.1", + "postcss-preset-env": "^7.0.1", + "prompts": "^2.4.2", + "react-app-polyfill": "^3.0.0", + "react-dev-utils": "^12.0.1", + "react-refresh": "^0.11.0", + "resolve": "^1.20.0", + "resolve-url-loader": "^4.0.0", + "sass-loader": "^12.3.0", + "semver": "^7.3.5", + "source-map-loader": "^3.0.0", + "style-loader": "^3.3.1", + "tailwindcss": "^3.0.2", + "terser-webpack-plugin": "^5.2.5", + "webpack": "^5.64.4", + "webpack-dev-server": "^4.6.0", + "webpack-manifest-plugin": "^4.0.2", + "workbox-webpack-plugin": "^6.4.1" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/react-scripts/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/react-scripts/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/react-scripts/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/react-scripts/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/react-scripts/node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dev": true, + "dependencies": { + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/ci-info": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", + "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==", + "dev": true + }, + "node_modules/react-scripts/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/react-scripts/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/react-scripts/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/react-scripts/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/react-scripts/node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/istanbul-lib-instrument": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", + "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/react-scripts/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/react-scripts/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/react-scripts/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/react-scripts/node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/react-scripts/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-scripts/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/source-map-loader": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.1.tgz", + "integrity": "sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA==", + "dev": true, + "dependencies": { + "abab": "^2.0.5", + "iconv-lite": "^0.6.3", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/react-scripts/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-scripts/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/react-scripts/node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/react-smooth": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-2.0.2.tgz", + "integrity": "sha512-pgqSp1q8rAGtF1bXQE0m3CHGLNfZZh5oA5o1tsPLXRHnKtkujMIJ8Ws5nO1mTySZf1c4vgwlEk+pHi3Ln6eYLw==", + "dependencies": { + "fast-equals": "^4.0.3", + "react-transition-group": "2.9.0" + } + }, + "node_modules/react-smooth/node_modules/react-transition-group": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", + "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", + "dependencies": { + "dom-helpers": "^3.4.0", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + } + }, + "node_modules/react-textarea-autosize": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-7.1.2.tgz", + "integrity": "sha512-uH3ORCsCa3C6LHxExExhF4jHoXYCQwE5oECmrRsunlspaDAbS4mGKNlWZqjLfInWtFQcf0o1n1jC/NGXFdUBCg==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "prop-types": "^15.6.0" + } + }, + "node_modules/react-transition-group": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-3.0.0.tgz", + "integrity": "sha512-A9ojB/LWECbFj58SNfjK1X9aaAU+1olLS0DFSikvrr2KfMaiBELemHDa5dKNvcTk2t3gUtDL/PJpFrBKDfMpLg==", + "dependencies": { + "dom-helpers": "^3.4.0", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + } + }, + "node_modules/reactstrap": { + "version": "8.10.1", + "resolved": "https://registry.npmjs.org/reactstrap/-/reactstrap-8.10.1.tgz", + "integrity": "sha512-StjLADa/12yMNjafrSs+UD7sZAGtKpLO9fZp++2Dj0IzJinqY7eQhXlM3nFf0q40YsIcLvQdFc9pKF8PF4f0Qg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "classnames": "^2.2.3", + "prop-types": "^15.5.8", + "react-popper": "^1.3.6", + "react-transition-group": "^3.0.0" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/read-cache/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "dependencies": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", + "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", + "dependencies": { + "util.promisify": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/recharts": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.5.0.tgz", + "integrity": "sha512-0EQYz3iA18r1Uq8VqGZ4dABW52AKBnio37kJgnztIqprELJXpOEsa0SzkqU1vjAhpCXCv52Dx1hiL9119xsqsQ==", + "dependencies": { + "classnames": "^2.2.5", + "eventemitter3": "^4.0.1", + "lodash": "^4.17.19", + "react-is": "^16.10.2", + "react-resize-detector": "^8.0.4", + "react-smooth": "^2.0.2", + "recharts-scale": "^0.4.4", + "reduce-css-calc": "^2.1.8", + "victory-vendor": "^36.6.8" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/recharts-scale": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz", + "integrity": "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==", + "dependencies": { + "decimal.js-light": "^2.4.1" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", + "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", + "dev": true, + "dependencies": { + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/reduce-css-calc": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", + "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", + "dependencies": { + "css-unit-converter": "^1.1.1", + "postcss-value-parser": "^3.3.0" + } + }, + "node_modules/reduce-css-calc/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/redux": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.0.tgz", + "integrity": "sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA==", + "dependencies": { + "@babel/runtime": "^7.9.2" + } + }, + "node_modules/redux-devtools-extension": { + "version": "2.13.9", + "resolved": "https://registry.npmjs.org/redux-devtools-extension/-/redux-devtools-extension-2.13.9.tgz", + "integrity": "sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==" + }, + "node_modules/redux-thunk": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.1.tgz", + "integrity": "sha512-OOYGNY5Jy2TWvTL1KgAlVy6dcx3siPJ1wTq741EPyUKfn6W6nChdICjZwCd0p8AZBs5kWpZlbkXW2nE/zjUa+Q==" + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", + "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", + "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", + "dev": true + }, + "node_modules/regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/regexpu-core": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz", + "integrity": "sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.0.1", + "regjsgen": "^0.6.0", + "regjsparser": "^0.8.2", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regextras": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/regextras/-/regextras-0.7.1.tgz", + "integrity": "sha512-9YXf6xtW+qzQ+hcMQXx95MOvfqXFgsKDZodX3qZB0x2n5Z94ioetIITsBtvJbiOyxa/6s9AtyweBLCdPmPko/w==", + "dev": true, + "engines": { + "node": ">=0.1.14" + } + }, + "node_modules/regjsgen": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", + "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==", + "dev": true + }, + "node_modules/regjsparser": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", + "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", + "dev": true, + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" + }, + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", + "dev": true, + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } + }, + "node_modules/renderkid/node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "node_modules/renderkid/node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/renderkid/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "node_modules/renderkid/node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "node_modules/renderkid/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "node_modules/renderkid/node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + } + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==" + }, + "node_modules/resolve-url-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", + "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", + "dev": true, + "dependencies": { + "adjust-sourcemap-loader": "^4.0.0", + "convert-source-map": "^1.7.0", + "loader-utils": "^2.0.0", + "postcss": "^7.0.35", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", + "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/rollup": { + "version": "2.79.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.0.tgz", + "integrity": "sha512-x4KsrCgwQ7ZJPcFA/SUu6QVcYlO7uRLfLAy0DSA4NS2eG8japdbpM50ToH7z4iObodRYOJ0soneF0iaQRJ6zhA==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", + "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "jest-worker": "^26.2.1", + "serialize-javascript": "^4.0.0", + "terser": "^5.0.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/rollup-plugin-terser/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/rollup/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "engines": { + "node": "6.* || >= 7.*" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "dependencies": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "bin": { + "sane": "src/cli.js" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/sanitize.css": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", + "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==", + "dev": true + }, + "node_modules/sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "dev": true, + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dev": true, + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", + "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "dev": true + }, + "node_modules/selfsigned": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "dev": true, + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "dev": true, + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + }, + "node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shell-quote": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", + "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==", + "dev": true + }, + "node_modules/shortid": { + "version": "2.2.16", + "resolved": "https://registry.npmjs.org/shortid/-/shortid-2.2.16.tgz", + "integrity": "sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==", + "dependencies": { + "nanoid": "^2.1.0" + } + }, + "node_modules/shortid/node_modules/nanoid": { + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-2.1.11.tgz", + "integrity": "sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==" + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "dev": true, + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-loader": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-0.2.4.tgz", + "integrity": "sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==", + "dev": true, + "dependencies": { + "async": "^2.5.0", + "loader-utils": "^1.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/source-map-loader/node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/source-map-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/source-map-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "dev": true + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", + "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/sql-formatter": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/sql-formatter/-/sql-formatter-2.3.4.tgz", + "integrity": "sha512-CajWtvzYoBJbD5PQeVe3E7AOHAIYvRQEPOKgF9kfKNeY8jtjBiiA6pDzkMuAID8jJMluoPvyKveLigSaA5tKQQ==", + "dependencies": { + "lodash": "^4.17.20" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "dev": true + }, + "node_modules/stack-utils": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", + "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", + "dev": true + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", + "dev": true + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz", + "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.4.1", + "side-channel": "^1.0.4" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", + "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", + "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.19.5" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dev": true, + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", + "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/style-loader": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz", + "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", + "dev": true, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/stylehacks": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz", + "integrity": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==", + "dev": true, + "dependencies": { + "browserslist": "^4.16.6", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", + "dev": true + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "node_modules/tailwindcss": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.1.8.tgz", + "integrity": "sha512-YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g==", + "dev": true, + "dependencies": { + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "color-name": "^1.1.4", + "detective": "^5.2.1", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "lilconfig": "^2.0.6", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.14", + "postcss-import": "^14.1.0", + "postcss-js": "^4.0.0", + "postcss-load-config": "^3.1.4", + "postcss-nested": "5.0.6", + "postcss-selector-parser": "^6.0.10", + "postcss-value-parser": "^4.2.0", + "quick-lru": "^5.1.1", + "resolve": "^1.22.1" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=12.13.0" + } + }, + "node_modules/tailwindcss/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/tailwindcss/node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", + "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", + "dev": true, + "dependencies": { + "is-stream": "^2.0.0", + "temp-dir": "^2.0.0", + "type-fest": "^0.16.0", + "unique-string": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tempy/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", + "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz", + "integrity": "sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.6", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", + "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.14", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "terser": "^5.14.1" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/@types/node": { + "version": "18.7.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz", + "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==", + "dev": true + }, + "node_modules/terser-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", + "dependencies": { + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "read-pkg-up": "^4.0.0", + "require-main-filename": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/throat": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", + "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", + "dev": true + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "dev": true + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/toggle-selection": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", + "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==" + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dev": true, + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", + "dev": true + }, + "node_modules/tsconfig-paths": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", + "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-styles": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz", + "integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.7.2.tgz", + "integrity": "sha512-ml7V7JfiN2Xwvcer+XAf2csGO1bPBdRbFCkYBczNZggrBZ9c7G3riSUeJmqEU5uOtXNPMhE3n+R4FA/3YOAWOQ==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", + "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", + "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unique-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", + "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", + "dev": true, + "dependencies": { + "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==", + "dev": true + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.7.tgz", + "integrity": "sha512-iN/XYesmZ2RmmWAiI4Z5rq0YqSiv0brj9Ce9CfhNE4xIW2h+MFxcgkxIzZ+ShkFPUkjU3gQ+3oypadD3RAMtrg==", + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist-lint": "cli.js" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==" + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/util.promisify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.1.tgz", + "integrity": "sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw==", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "for-each": "^0.3.3", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.1" + } + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "dev": true + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/victory-vendor": { + "version": "36.6.8", + "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.6.8.tgz", + "integrity": "sha512-H3kyQ+2zgjMPvbPqAl7Vwm2FD5dU7/4bCTQakFQnpIsfDljeOMDojRsrmJfwh4oAlNnWhpAf+mbAoLh8u7dwyQ==", + "dependencies": { + "@types/d3-array": "^3.0.3", + "@types/d3-ease": "^3.0.0", + "@types/d3-interpolate": "^3.0.1", + "@types/d3-scale": "^4.0.2", + "@types/d3-shape": "^3.1.0", + "@types/d3-time": "^3.0.0", + "@types/d3-timer": "^3.0.0", + "d3-array": "^3.1.6", + "d3-ease": "^3.0.1", + "d3-interpolate": "^3.0.1", + "d3-scale": "^4.0.2", + "d3-shape": "^3.1.0", + "d3-time": "^3.0.0", + "d3-timer": "^3.0.1" + } + }, + "node_modules/victory-vendor/node_modules/@types/d3-shape": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.1.tgz", + "integrity": "sha512-6Uh86YFF7LGg4PQkuO2oG6EMBRLuW9cbavUW46zkIO5kuS2PfTqo2o9SkgtQzguBHbLgNnU90UNsITpsX1My+A==", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dev": true, + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dev": true, + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true, + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "5.80.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.80.0.tgz", + "integrity": "sha512-OIMiq37XK1rWO8mH9ssfFKZsXg4n6klTEDL7S8/HqbAOBBaiy8ABvXvz0dDCXeEF9gqwxSvVk611zFPjS8hJxA==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.13.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.2", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dev": true, + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.11.0.tgz", + "integrity": "sha512-L5S4Q2zT57SK7tazgzjMiSMBdsw+rGYIX27MgPgx7LDhWO0lViPrHKoLS7jo5In06PWYAhlYu3PbyoC6yAThbw==", + "dev": true, + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.0.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + } + }, + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz", + "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", + "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", + "dev": true, + "dependencies": { + "tapable": "^2.0.0", + "webpack-sources": "^2.2.0" + }, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "dev": true, + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "node_modules/webpack/node_modules/@webassemblyjs/ast": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.5.tgz", + "integrity": "sha512-LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.5", + "@webassemblyjs/helper-wasm-bytecode": "1.11.5" + } + }, + "node_modules/webpack/node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.5.tgz", + "integrity": "sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==", + "dev": true + }, + "node_modules/webpack/node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.5.tgz", + "integrity": "sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==", + "dev": true + }, + "node_modules/webpack/node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.5.tgz", + "integrity": "sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==", + "dev": true + }, + "node_modules/webpack/node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.5.tgz", + "integrity": "sha512-DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.5", + "@webassemblyjs/helper-api-error": "1.11.5", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/webpack/node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.5.tgz", + "integrity": "sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==", + "dev": true + }, + "node_modules/webpack/node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.5.tgz", + "integrity": "sha512-uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.5", + "@webassemblyjs/helper-buffer": "1.11.5", + "@webassemblyjs/helper-wasm-bytecode": "1.11.5", + "@webassemblyjs/wasm-gen": "1.11.5" + } + }, + "node_modules/webpack/node_modules/@webassemblyjs/ieee754": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.5.tgz", + "integrity": "sha512-37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/webpack/node_modules/@webassemblyjs/leb128": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.5.tgz", + "integrity": "sha512-ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/webpack/node_modules/@webassemblyjs/utf8": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.5.tgz", + "integrity": "sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==", + "dev": true + }, + "node_modules/webpack/node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.5.tgz", + "integrity": "sha512-C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.5", + "@webassemblyjs/helper-buffer": "1.11.5", + "@webassemblyjs/helper-wasm-bytecode": "1.11.5", + "@webassemblyjs/helper-wasm-section": "1.11.5", + "@webassemblyjs/wasm-gen": "1.11.5", + "@webassemblyjs/wasm-opt": "1.11.5", + "@webassemblyjs/wasm-parser": "1.11.5", + "@webassemblyjs/wast-printer": "1.11.5" + } + }, + "node_modules/webpack/node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.5.tgz", + "integrity": "sha512-14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.5", + "@webassemblyjs/helper-wasm-bytecode": "1.11.5", + "@webassemblyjs/ieee754": "1.11.5", + "@webassemblyjs/leb128": "1.11.5", + "@webassemblyjs/utf8": "1.11.5" + } + }, + "node_modules/webpack/node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.5.tgz", + "integrity": "sha512-tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.5", + "@webassemblyjs/helper-buffer": "1.11.5", + "@webassemblyjs/wasm-gen": "1.11.5", + "@webassemblyjs/wasm-parser": "1.11.5" + } + }, + "node_modules/webpack/node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.5.tgz", + "integrity": "sha512-SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.5", + "@webassemblyjs/helper-api-error": "1.11.5", + "@webassemblyjs/helper-wasm-bytecode": "1.11.5", + "@webassemblyjs/ieee754": "1.11.5", + "@webassemblyjs/leb128": "1.11.5", + "@webassemblyjs/utf8": "1.11.5" + } + }, + "node_modules/webpack/node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.5.tgz", + "integrity": "sha512-f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.5", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/webpack/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/webpack/node_modules/enhanced-resolve": { + "version": "5.13.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz", + "integrity": "sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/es-module-lexer": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==", + "dev": true + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/webpack/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/webpack/node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/webpack/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/webpack/node_modules/terser": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz", + "integrity": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/webpack/node_modules/terser-webpack-plugin": { + "version": "5.3.7", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz", + "integrity": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.5" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dev": true, + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==", + "dev": true + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "node_modules/whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, + "dependencies": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.5.4.tgz", + "integrity": "sha512-0r4INQZMyPky/lj4Ou98qxcThrETucOde+7mRGJl13MPJugQNKeZQOdIJe/1AchOP23cTqHcN/YVpD6r8E6I8g==", + "dev": true, + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.5.4.tgz", + "integrity": "sha512-I/lBERoH1u3zyBosnpPEtcAVe5lwykx9Yg1k6f8/BGEPGaMMgZrwVrqL1uA9QZ1NGGFoyE6t9i7lBjOlDhFEEw==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-build": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.5.4.tgz", + "integrity": "sha512-kgRevLXEYvUW9WS4XoziYqZ8Q9j/2ziJYEtTrjdz5/L/cTUa2XfyMP2i7c3p34lgqJ03+mTiz13SdFef2POwbA==", + "dev": true, + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.5.4", + "workbox-broadcast-update": "6.5.4", + "workbox-cacheable-response": "6.5.4", + "workbox-core": "6.5.4", + "workbox-expiration": "6.5.4", + "workbox-google-analytics": "6.5.4", + "workbox-navigation-preload": "6.5.4", + "workbox-precaching": "6.5.4", + "workbox-range-requests": "6.5.4", + "workbox-recipes": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4", + "workbox-streams": "6.5.4", + "workbox-sw": "6.5.4", + "workbox-window": "6.5.4" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", + "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", + "dev": true, + "dependencies": { + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-build/node_modules/tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/workbox-build/node_modules/webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "node_modules/workbox-build/node_modules/whatwg-url": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", + "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", + "dev": true, + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.5.4.tgz", + "integrity": "sha512-DCR9uD0Fqj8oB2TSWQEm1hbFs/85hXXoayVwFKLVuIuxwJaihBsLsp4y7J9bvZbqtPJ1KlCkmYVGQKrBU4KAug==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-core": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.5.4.tgz", + "integrity": "sha512-OXYb+m9wZm8GrORlV2vBbE5EC1FKu71GGp0H4rjmxmF4/HLbMCoTFws87M3dFwgpmg0v00K++PImpNQ6J5NQ6Q==", + "dev": true + }, + "node_modules/workbox-expiration": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.5.4.tgz", + "integrity": "sha512-jUP5qPOpH1nXtjGGh1fRBa1wJL2QlIb5mGpct3NzepjGG2uFFBn4iiEBiI9GUmfAFR2ApuRhDydjcRmYXddiEQ==", + "dev": true, + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-google-analytics": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.5.4.tgz", + "integrity": "sha512-8AU1WuaXsD49249Wq0B2zn4a/vvFfHkpcFfqAFHNHwln3jK9QUYmzdkKXGIZl9wyKNP+RRX30vcgcyWMcZ9VAg==", + "dev": true, + "dependencies": { + "workbox-background-sync": "6.5.4", + "workbox-core": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.5.4.tgz", + "integrity": "sha512-IIwf80eO3cr8h6XSQJF+Hxj26rg2RPFVUmJLUlM0+A2GzB4HFbQyKkrgD5y2d84g2IbJzP4B4j5dPBRzamHrng==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-precaching": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.5.4.tgz", + "integrity": "sha512-hSMezMsW6btKnxHB4bFy2Qfwey/8SYdGWvVIKFaUm8vJ4E53JAY+U2JwLTRD8wbLWoP6OVUdFlXsTdKu9yoLTg==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4" + } + }, + "node_modules/workbox-range-requests": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.5.4.tgz", + "integrity": "sha512-Je2qR1NXCFC8xVJ/Lux6saH6IrQGhMpDrPXWZWWS8n/RD+WZfKa6dSZwU+/QksfEadJEr/NfY+aP/CXFFK5JFg==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-recipes": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.5.4.tgz", + "integrity": "sha512-QZNO8Ez708NNwzLNEXTG4QYSKQ1ochzEtRLGaq+mr2PyoEIC1xFW7MrWxrONUxBFOByksds9Z4//lKAX8tHyUA==", + "dev": true, + "dependencies": { + "workbox-cacheable-response": "6.5.4", + "workbox-core": "6.5.4", + "workbox-expiration": "6.5.4", + "workbox-precaching": "6.5.4", + "workbox-routing": "6.5.4", + "workbox-strategies": "6.5.4" + } + }, + "node_modules/workbox-routing": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.5.4.tgz", + "integrity": "sha512-apQswLsbrrOsBUWtr9Lf80F+P1sHnQdYodRo32SjiByYi36IDyL2r7BH1lJtFX8fwNHDa1QOVY74WKLLS6o5Pg==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-strategies": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.5.4.tgz", + "integrity": "sha512-DEtsxhx0LIYWkJBTQolRxG4EI0setTJkqR4m7r4YpBdxtWJH1Mbg01Cj8ZjNOO8etqfA3IZaOPHUxCs8cBsKLw==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.4" + } + }, + "node_modules/workbox-streams": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.5.4.tgz", + "integrity": "sha512-FXKVh87d2RFXkliAIheBojBELIPnWbQdyDvsH3t74Cwhg0fDheL1T8BqSM86hZvC0ZESLsznSYWw+Va+KVbUzg==", + "dev": true, + "dependencies": { + "workbox-core": "6.5.4", + "workbox-routing": "6.5.4" + } + }, + "node_modules/workbox-sw": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.5.4.tgz", + "integrity": "sha512-vo2RQo7DILVRoH5LjGqw3nphavEjK4Qk+FenXeUsknKn14eCNedHOXWbmnvP4ipKhlE35pvJ4yl4YYf6YsJArA==", + "dev": true + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.4.tgz", + "integrity": "sha512-LmWm/zoaahe0EGmMTrSLUi+BjyR3cdGEfU3fS6PN1zKFYbqAKuQ+Oy/27e4VSXsyIwAw8+QDfk1XHNGtZu9nQg==", + "dev": true, + "dependencies": { + "fast-json-stable-stringify": "^2.1.0", + "pretty-bytes": "^5.4.1", + "upath": "^1.2.0", + "webpack-sources": "^1.4.3", + "workbox-build": "6.5.4" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/workbox-window": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.5.4.tgz", + "integrity": "sha512-HnLZJDwYBE+hpG25AQBO8RUWBJRaCsI9ksQJEp3aCOFCaG5kqaToAYXFRAHxzRluM2cQbGzdQF5rjKPWPA1fug==", + "dev": true, + "dependencies": { + "@types/trusted-types": "^2.0.2", + "workbox-core": "6.5.4" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true, + "engines": { + "node": ">=8.3.0" + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + } + } + }, "dependencies": { "@ampproject/remapping": { "version": "2.2.0", @@ -4178,9 +28836,9 @@ }, "dependencies": { "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -4276,9 +28934,9 @@ "dev": true }, "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -4351,9 +29009,9 @@ }, "dependencies": { "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -5763,9 +30421,9 @@ }, "dependencies": { "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" } } }, @@ -5816,9 +30474,9 @@ }, "dependencies": { "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -6193,9 +30851,9 @@ "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" }, "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==" + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" }, "dedent": { "version": "0.7.0", @@ -7203,9 +31861,9 @@ }, "dependencies": { "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -8337,9 +32995,9 @@ } }, "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -13205,9 +37863,9 @@ }, "dependencies": { "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true } } @@ -13319,9 +37977,9 @@ "dev": true }, "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -14344,9 +39002,9 @@ "dev": true }, "loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -14792,9 +39450,9 @@ }, "dependencies": { "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" } } }, @@ -15551,9 +40209,9 @@ }, "dependencies": { "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -16918,9 +41576,9 @@ }, "dependencies": { "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true } } @@ -17015,9 +41673,9 @@ "dev": true }, "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "requires": { "lru-cache": "^6.0.0" @@ -17776,9 +42434,9 @@ } }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" }, "send": { "version": "0.18.0", @@ -18170,18 +42828,18 @@ } }, "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" } }, "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -18353,6 +43011,15 @@ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "dev": true }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, "string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", @@ -18424,15 +43091,6 @@ "es-abstract": "^1.19.5" } }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, "stringify-object": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", @@ -18832,9 +43490,9 @@ "dev": true }, "tough-cookie": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", - "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, "requires": { "psl": "^1.1.33", @@ -18879,9 +43537,9 @@ }, "dependencies": { "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" @@ -19807,9 +44465,9 @@ } }, "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true }, "workbox-background-sync": { From 8faef8055d66110fb444bf74992151f5882917d5 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Thu, 5 Oct 2023 16:34:53 -0700 Subject: [PATCH 03/19] mapping shrine 4.1 class types, dtos --- src/server/API/API.csproj | 6 + .../Shrine/4_1/ShrineExpressionDTO.cs | 139 ++++++++++++++++++ .../Integration/Shrine/4_1/ShrineOutputDTO.cs | 33 +++++ .../Integration/Shrine/4_1/ShrineQueryDTO.cs | 69 +++++++++ .../Integration/Shrine/4_1/ShrineStatusDTO.cs | 33 +++++ .../Shrine/4_1/ShrineVersionInfoDTO.cs | 44 ++++++ .../Shrine/ShrineDeliveryAttemptDTO.cs | 54 +++++++ src/server/API/GlobalSuppressions.cs | 8 + ...neHubReader.cs => ShrinePollingService.cs} | 19 ++- .../API/Options/StartupExtensions.Options.cs | 4 +- .../API/Options/StartupExtensions.Services.cs | 8 +- src/server/API/appsettings.json | 16 +- .../Shrine/4_1/ShrineExpression.cs | 59 ++++++++ .../Integration/Shrine/4_1/ShrineOutput.cs | 19 +++ .../Integration/Shrine/4_1/ShrineQuery.cs | 31 ++++ .../Integration/Shrine/4_1/ShrineStatus.cs | 19 +++ .../Shrine/4_1/ShrineVersionInfo.cs | 18 +++ ...lingService.cs => IShrineMessageBroker.cs} | 4 +- .../Shrine/ShrineDeliveryAttempt.cs | 36 +++++ .../Shrine/ShrineUpdateQueryAtQep.cs | 16 ++ src/server/Model/Model.csproj | 2 + ...llingService.cs => ShrineMessageBroker.cs} | 23 ++- 22 files changed, 627 insertions(+), 33 deletions(-) create mode 100644 src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs create mode 100644 src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs create mode 100644 src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs create mode 100644 src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs create mode 100644 src/server/API/DTO/Integration/Shrine/4_1/ShrineVersionInfoDTO.cs create mode 100644 src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs create mode 100644 src/server/API/GlobalSuppressions.cs rename src/server/API/Jobs/{ShrineHubReader.cs => ShrinePollingService.cs} (77%) create mode 100644 src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs create mode 100644 src/server/Model/Integration/Shrine/4_1/ShrineOutput.cs create mode 100644 src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs create mode 100644 src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs create mode 100644 src/server/Model/Integration/Shrine/4_1/ShrineVersionInfo.cs rename src/server/Model/Integration/Shrine/{IShrinePollingService.cs => IShrineMessageBroker.cs} (82%) create mode 100644 src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs create mode 100644 src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs rename src/server/Services/Integration/Shrine/{ShrinePollingService.cs => ShrineMessageBroker.cs} (80%) diff --git a/src/server/API/API.csproj b/src/server/API/API.csproj index aa0111a2b..473f2f4a5 100644 --- a/src/server/API/API.csproj +++ b/src/server/API/API.csproj @@ -25,6 +25,9 @@ + + + @@ -55,5 +58,8 @@ + + + diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs new file mode 100644 index 000000000..4ebcce7cb --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs @@ -0,0 +1,139 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using System.Collections.Generic; +using Model.Integration.Shrine4_1; +using System.Linq; + +namespace API.DTO.Integration.Shrine4_1 +{ + public class ShrineQueryDefinitionDTO + { + public ShrineConjunctionDTO Expression { get; set; } + + public ShrineQueryDefinitionDTO(ShrineQueryDefinition definition) + { + Expression = new ShrineConjunctionDTO(definition.Expression); + } + } + + public abstract class ShrineGroupDTO + { + public int NMustBeTrue { get; set; } + public ShrineConjunctionCompareDTO Compare { get; set; } + + public ShrineGroupDTO(ShrineGroup expr) + { + NMustBeTrue = expr.NMustBeTrue; + Compare = new ShrineConjunctionCompareDTO(expr.Compare); + } + } + + public class ShrineConjunctionDTO + { + public int NMustBeTrue { get; set; } + public ShrineConjunctionCompareDTO Compare { get; set; } + public IEnumerable Possibilities { get; set; } + + public ShrineConjunctionDTO(ShrineConjunction conjunction) + { + Possibilities = conjunction.Possibilities.Select(p => new ShrineConceptGroupDTO(p)); + } + } + + public class ShrineConceptGroupDTO : ShrineGroupDTO + { + public long StartDate { get; set; } + public long EndDate { get; set; } + public int OccursAtLeast { get; set; } = 1; + public ShrineConjunctionDTO Concepts { get; set; } + + public ShrineConceptGroupDTO(ShrineConceptGroup group) : base(group) + { + StartDate = ((DateTimeOffset)group.StartDate).ToUnixTimeSeconds(); + EndDate = ((DateTimeOffset)group.EndDate).ToUnixTimeSeconds(); + OccursAtLeast = group.OccursAtLeast; + Concepts = new ShrineConjunctionDTO(group.Concepts); + } + } + + public class ShrineConceptDTO + { + public string DisplayName { get; set; } + public string TermPath { get; set; } + public string Constraint { get; set; } + public static readonly string EncodedClass = "Concept"; + + public ShrineConceptDTO(ShrineConcept concept) + { + DisplayName = concept.DisplayName; + TermPath = concept.TermPath; + Constraint = concept.Constraint; + } + } + + public class ShrineConjunctionCompareDTO + { + public string EncodedClass { get; set; } + + public ShrineConjunctionCompareDTO(ShrineConjunctionCompare compare) + { + EncodedClass = compare.EncodedClass.ToString(); + } + } + + public static class ShrineQueryDefinitionExtensions + { + public static ShrineConjunctionCompare ToCompare(this ShrineConjunctionCompareDTO dto) + { + _ = Enum.TryParse(dto.EncodedClass, out ShrineConjunctionComparison encodedClass); + return new ShrineConjunctionCompare + { + EncodedClass = encodedClass + }; + } + + public static ShrineConcept ToConcept(this ShrineConceptDTO dto) + { + return new ShrineConcept + { + DisplayName = dto.DisplayName, + TermPath = dto.TermPath, + Constraint = dto.Constraint + }; + } + + public static ShrineConceptGroup ToConceptGroup(this ShrineConceptGroupDTO dto) + { + return new ShrineConceptGroup + { + StartDate = DateTimeOffset.FromUnixTimeSeconds(dto.StartDate).UtcDateTime, + EndDate = DateTimeOffset.FromUnixTimeSeconds(dto.EndDate).UtcDateTime, + OccursAtLeast = dto.OccursAtLeast, + Concepts = dto.Concepts.ToConjunction() + }; + } + + public static ShrineConjunction ToConjunction(this ShrineConjunctionDTO dto) + { + return new ShrineConjunction + { + NMustBeTrue = dto.NMustBeTrue, + Compare = dto.Compare.ToCompare(), + Possibilities = dto.Possibilities.Select(p => p.ToConceptGroup()) + }; + } + + public static ShrineQueryDefinition ToDefinition(this ShrineQueryDefinitionDTO dto) + { + return new ShrineQueryDefinition + { + Expression = dto.Expression.ToConjunction() + }; + } + } +} + diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs new file mode 100644 index 000000000..0a4485c63 --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs @@ -0,0 +1,33 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine4_1; + +namespace API.DTO.Integration.Shrine4_1 +{ + public class ShrineOutputDTO + { + public string EncodedClass { get; set; } + + public ShrineOutputDTO(ShrineOutput output) + { + EncodedClass = output.EncodedClass.ToString(); + } + } + + public static class ShrineOutputExtensions + { + public static ShrineOutput ToOutput(this ShrineOutputDTO dto) + { + _ = Enum.TryParse(dto.EncodedClass, out ShrineOutputType type); + return new ShrineOutput + { + EncodedClass = type + }; + } + } +} + diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs new file mode 100644 index 000000000..e9efaed3c --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs @@ -0,0 +1,69 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine4_1; + +namespace API.DTO.Integration.Shrine4_1 +{ + public class ShrineQueryDTO + { + public long Id { get; set; } + public ShrineVersionInfoDTO VersionInfo { get; set; } + public ShrineStatusDTO Status { get; set; } + public ShrineQueryDefinitionDTO QueryDefinition { get; set; } + public ShrineOutputDTO Output { get; set; } + public string QueryName { get; set; } + public long NodeOfOriginId { get; set; } + public long ResearcherId { get; set; } + public int TopicId { get; set; } + public string ProjectName { get; set; } + public bool Flagged { get; set; } + public string FlaggedMessage { get; set; } + public string EncodedClass { get; set; } + + public ShrineQueryDTO(ShrineQuery query) + { + Id = query.Id; + VersionInfo = new ShrineVersionInfoDTO(query.VersionInfo); + Status = new ShrineStatusDTO(query.Status); + QueryDefinition = new ShrineQueryDefinitionDTO(query.QueryDefinition); + Output = new ShrineOutputDTO(query.Output); + QueryName = query.QueryName; + NodeOfOriginId = query.NodeOfOriginId; + ResearcherId = query.ResearcherId; + TopicId = query.TopicId; + ProjectName = query.ProjectName; + Flagged = query.Flagged; + FlaggedMessage = query.FlaggedMessage; + EncodedClass = query.EncodedClass.ToString(); + } + } + + public static class ShrineQueryExtensions + { + public static ShrineQuery ToQuery(ShrineQueryDTO dto) + { + _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryType type); + return new ShrineQuery + { + Id = dto.Id, + VersionInfo = dto.VersionInfo.ToVersionInfo(), + Status = dto.Status.ToStatus(), + QueryDefinition = dto.QueryDefinition.ToDefinition(), + Output = dto.Output.ToOutput(), + QueryName = dto.QueryName, + NodeOfOriginId = dto.NodeOfOriginId, + ResearcherId = dto.ResearcherId, + TopicId = dto.TopicId, + ProjectName = dto.ProjectName, + Flagged = dto.Flagged, + FlaggedMessage = dto.FlaggedMessage, + EncodedClass = type + }; + } + } +} + diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs new file mode 100644 index 000000000..b6845599b --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs @@ -0,0 +1,33 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine4_1; + +namespace API.DTO.Integration.Shrine4_1 +{ + public class ShrineStatusDTO + { + public string Status { get; set; } + + public ShrineStatusDTO(ShrineStatus status) + { + Status = status.Status.ToString(); + } + } + + public static class ShrineStatusExtensions + { + public static ShrineStatus ToStatus(this ShrineStatusDTO dto) + { + _ = Enum.TryParse(dto.Status, out ShrineStatusType status); + return new ShrineStatus + { + Status = status + }; + } + } +} + diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineVersionInfoDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineVersionInfoDTO.cs new file mode 100644 index 000000000..3b297c248 --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineVersionInfoDTO.cs @@ -0,0 +1,44 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine4_1; + +namespace API.DTO.Integration.Shrine4_1 +{ + public class ShrineVersionInfoDTO + { + public int ProtocolVersion { get; set; } + public int ItemVersion { get; set; } + public string ShrineVersion { get; set; } + public long CreateDate { get; set; } + public long ChangeDate { get; set; } + + public ShrineVersionInfoDTO(ShrineVersionInfo ver) + { + ProtocolVersion = ver.ProtocolVersion; + ItemVersion = ver.ItemVersion; + ShrineVersion = ver.ShrineVersion; + CreateDate = ((DateTimeOffset)ver.CreateDate).ToUnixTimeSeconds(); + ChangeDate = ((DateTimeOffset)ver.ChangeDate).ToUnixTimeSeconds(); + } + } + + public static class ShrineVersionInfoExtensions + { + public static ShrineVersionInfo ToVersionInfo(this ShrineVersionInfoDTO dto) + { + return new ShrineVersionInfo + { + ProtocolVersion = dto.ProtocolVersion, + ItemVersion = dto.ItemVersion, + ShrineVersion = dto.ShrineVersion, + CreateDate = DateTimeOffset.FromUnixTimeSeconds(dto.CreateDate).UtcDateTime, + ChangeDate = DateTimeOffset.FromUnixTimeSeconds(dto.ChangeDate).UtcDateTime + }; + } + } +} + diff --git a/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs new file mode 100644 index 000000000..4a89541b0 --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs @@ -0,0 +1,54 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine; + +namespace API.DTO.Integration.Shrine +{ + public class ShrineDeliveryAttemptDTO + { + public ShrineInnerDeliveryAttemptDTO DeliveryAttemptId { get; set; } = new ShrineInnerDeliveryAttemptDTO(); + public long MillisecondsToComplete { get; set; } + public int RemainingAttempts { get; set; } + public string Contents { get; set; } + } + + public class ShrineInnerDeliveryAttemptDTO + { + public long Underlying { get; set; } + } + + public class ShrineDeliveryContentsDTO + { + public string Contents { get; set; } + public string ContentsType { get; set; } + + public ShrineDeliveryContentsDTO(ShrineDeliveryContents contents) + { + Contents = contents.Contents; + ContentsType = contents.ContentsType.ToString(); + } + } + + public static class ShrineDeliveryExtensions + { + public static ShrineDeliveryAttempt ToDeliveryAttempt(this ShrineDeliveryAttemptDTO dto) + { + if (dto == null) return null; + return new ShrineDeliveryAttempt + { + DeliveryAttemptId = new ShrineInnerDeliveryAttempt + { + Underlying = dto.DeliveryAttemptId.Underlying + }, + MillisecondsToComplete = dto.MillisecondsToComplete, + RemainingAttempts = dto.RemainingAttempts, + Contents = dto.Contents + }; + } + } +} + diff --git a/src/server/API/GlobalSuppressions.cs b/src/server/API/GlobalSuppressions.cs new file mode 100644 index 000000000..eb011dc41 --- /dev/null +++ b/src/server/API/GlobalSuppressions.cs @@ -0,0 +1,8 @@ +// This file is used by Code Analysis to maintain SuppressMessage +// attributes that are applied to this project. +// Project-level suppressions either have no target or are given +// a specific target and scoped to a namespace, type, member, etc. + +using System.Diagnostics.CodeAnalysis; + +[assembly: SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores", Justification = "", Scope = "namespace", Target = "~N:API.DTO.Integration.Shrine4_1")] diff --git a/src/server/API/Jobs/ShrineHubReader.cs b/src/server/API/Jobs/ShrinePollingService.cs similarity index 77% rename from src/server/API/Jobs/ShrineHubReader.cs rename to src/server/API/Jobs/ShrinePollingService.cs index c9a5f50a5..cb40521af 100644 --- a/src/server/API/Jobs/ShrineHubReader.cs +++ b/src/server/API/Jobs/ShrinePollingService.cs @@ -12,14 +12,14 @@ namespace API.Jobs { - public class ShrineHubReader : BackgroundService + public class ShrinePollingService : BackgroundService { - readonly ILogger logger; - readonly IShrinePollingService shrine; + readonly ILogger logger; + readonly IShrineMessageBroker shrine; - public ShrineHubReader( - ILogger logger, - IShrinePollingService shrine) + public ShrinePollingService( + ILogger logger, + IShrineMessageBroker shrine) { this.logger = logger; this.shrine = shrine; @@ -39,18 +39,17 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) try { logger.LogInformation("Syncronizing with SHRINE"); - var result = await shrine.ReadHubMessage(); + var message = await shrine.ReadHubMessage(); - /* _ = Task.Run(() => { - }); - */ + }, stoppingToken); } catch (Exception e) { logger.LogError("Failed to syncronize with SHRINE. Error: {Error}", e.ToString()); + await Task.Delay(TimeSpan.FromSeconds(30), stoppingToken); } finally { diff --git a/src/server/API/Options/StartupExtensions.Options.cs b/src/server/API/Options/StartupExtensions.Options.cs index 388b7f72a..b524277ce 100644 --- a/src/server/API/Options/StartupExtensions.Options.cs +++ b/src/server/API/Options/StartupExtensions.Options.cs @@ -443,14 +443,14 @@ static IServiceCollection ConfigureCompilerOptions(this IServiceCollection servi // App Db Connection services.Configure(opts => { - opts.ConnectionString = config.GetByProxy(Config.Db.App.Connection); + opts.ConnectionString = "Server=localhost,1432;Database=LeafDB;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.App.Connection); opts.DefaultTimeout = config.GetValue(Config.Db.App.DefaultTimeout); }); // Clin Db Connection services.Configure(opts => { - opts.ConnectionString = config.GetByProxy(Config.Db.Clin.Connection); + opts.ConnectionString = "Server=localhost,1432;Database=SynPuf_OMOP;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.Clin.Connection); opts.DefaultTimeout = config.GetValue(Config.Db.Clin.DefaultTimeout); opts.WithRdbms(config.GetValue(Config.Db.Clin.RDBMS)); opts.Cohort.WithQueryStrategy(config.GetValue(Config.Db.Clin.Cohort.QueryStrategy)); diff --git a/src/server/API/Options/StartupExtensions.Services.cs b/src/server/API/Options/StartupExtensions.Services.cs index 334fbebdf..e8fa3f0f2 100644 --- a/src/server/API/Options/StartupExtensions.Services.cs +++ b/src/server/API/Options/StartupExtensions.Services.cs @@ -95,7 +95,7 @@ public static IServiceCollection RegisterLeafServices( client.DefaultRequestHeaders.Add("Accept", @"application/json"); }); - services.AddHttpClient(client => + services.AddHttpClient(client => { client.DefaultRequestHeaders.Add("Accept", @"application/json"); }); @@ -107,7 +107,7 @@ public static IServiceCollection RegisterLeafServices( services.AddSingleton(); services.AddSingleton(); - services.AddSingleton(); + services.AddSingleton(); services.AddTransient(); services.AddTransient(); services.AddTransient(); @@ -202,12 +202,12 @@ static IServiceCollection AddIntegrationServices(this IServiceCollection service { if (integrationOpts.SHRINE.Enabled) { - services.AddHostedService(); + services.AddHostedService(); /* Use for testing only!! */ if (!environment.IsProduction()) { - services.AddHttpClient().ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler + services.AddHttpClient().ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler { ClientCertificateOptions = ClientCertificateOption.Manual, //ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator, diff --git a/src/server/API/appsettings.json b/src/server/API/appsettings.json index bca186874..5e81c1693 100644 --- a/src/server/API/appsettings.json +++ b/src/server/API/appsettings.json @@ -88,8 +88,20 @@ "SHRINE": { "Enabled": true, "HubApiURI": "https://localhost:6443", - "LocalNodeId": 8304711555476111654, - "LocalNodeName": "leaftest" + "Node": { + "Id": 8304711555476111654, + "Name": "leaftest" + }, + "Researcher": { + "Id": 24823904, + "Name": "demo", + "DomainName": "i2b2demo" + }, + "Topic": { + "Id": 1481654093, + "Name": "Testing", + "Description": "This is a topic for testing SHRINE 2020 (1)" + } } }, "Import": { diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs new file mode 100644 index 000000000..d70b934dd --- /dev/null +++ b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs @@ -0,0 +1,59 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using System.Collections.Generic; + +namespace Model.Integration.Shrine4_1 +{ + public class ShrineQueryDefinition + { + public ShrineConjunction Expression { get; set; } + } + + public abstract class ShrineExpression + { + public int NMustBeTrue { get; set; } + public ShrineConjunctionCompare Compare { get; set; } = new ShrineConjunctionCompare(); + } + + public abstract class ShrineGroup : ShrineExpression + { + + } + + public class ShrineConjunction : ShrineExpression + { + public IEnumerable Possibilities { get; set; } = new List(); + } + + public class ShrineConceptGroup : ShrineGroup + { + public DateTime StartDate { get; set; } + public DateTime EndDate { get; set; } + public int OccursAtLeast { get; set; } = 1; + public ShrineConjunction Concepts { get; set; } + } + + public class ShrineConcept : ShrineExpression + { + public string DisplayName { get; set; } + public string TermPath { get; set; } + public string Constraint { get; set; } + } + + public class ShrineConjunctionCompare + { + public ShrineConjunctionComparison EncodedClass { get; set; } = ShrineConjunctionComparison.AtLeast; + } + + public enum ShrineConjunctionComparison + { + AtLeast, + Exactly, + AtMost + } +} + diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineOutput.cs b/src/server/Model/Integration/Shrine/4_1/ShrineOutput.cs new file mode 100644 index 000000000..803310401 --- /dev/null +++ b/src/server/Model/Integration/Shrine/4_1/ShrineOutput.cs @@ -0,0 +1,19 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine4_1 +{ + public class ShrineOutput + { + public ShrineOutputType EncodedClass { get; set; } + } + + public enum ShrineOutputType + { + Count + } +} + diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs b/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs new file mode 100644 index 000000000..784e6ac61 --- /dev/null +++ b/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs @@ -0,0 +1,31 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine4_1 +{ + public class ShrineQuery + { + public long Id { get; set; } + public ShrineVersionInfo VersionInfo { get; set; } + public ShrineStatus Status { get; set; } + public ShrineQueryDefinition QueryDefinition { get; set; } + public ShrineOutput Output { get; set; } + public string QueryName { get; set; } + public long NodeOfOriginId { get; set; } + public long ResearcherId { get; set; } + public int TopicId { get; set; } + public string ProjectName { get; set; } + public bool Flagged { get; set; } = false; + public string FlaggedMessage { get; set; } + public ShrineQueryType EncodedClass { get; set; } + } + + public enum ShrineQueryType + { + QueryProgress + } +} + diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs b/src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs new file mode 100644 index 000000000..f5d1327da --- /dev/null +++ b/src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs @@ -0,0 +1,19 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine4_1 +{ + public class ShrineStatus + { + public ShrineStatusType Status { get; set; } + } + + public enum ShrineStatusType + { + ReadyForAdapters + } +} + diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineVersionInfo.cs b/src/server/Model/Integration/Shrine/4_1/ShrineVersionInfo.cs new file mode 100644 index 000000000..d8aa2e9f5 --- /dev/null +++ b/src/server/Model/Integration/Shrine/4_1/ShrineVersionInfo.cs @@ -0,0 +1,18 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine4_1 +{ + public class ShrineVersionInfo + { + public int ProtocolVersion { get; set; } + public int ItemVersion { get; set; } + public string ShrineVersion { get; set; } + public DateTime CreateDate { get; set; } + public DateTime ChangeDate { get; set; } + } +} + diff --git a/src/server/Model/Integration/Shrine/IShrinePollingService.cs b/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs similarity index 82% rename from src/server/Model/Integration/Shrine/IShrinePollingService.cs rename to src/server/Model/Integration/Shrine/IShrineMessageBroker.cs index cd84377c7..74356911e 100644 --- a/src/server/Model/Integration/Shrine/IShrinePollingService.cs +++ b/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs @@ -8,9 +8,9 @@ namespace Model.Integration.Shrine { - public interface IShrinePollingService + public interface IShrineMessageBroker { - public Task ReadHubMessage(); + public Task ReadHubMessage(); } } diff --git a/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs b/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs new file mode 100644 index 000000000..edcae193c --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs @@ -0,0 +1,36 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; + +namespace Model.Integration.Shrine +{ + public class ShrineDeliveryAttempt + { + public ShrineInnerDeliveryAttempt DeliveryAttemptId { get; set; } = new ShrineInnerDeliveryAttempt(); + public long MillisecondsToComplete { get; set; } + public int RemainingAttempts { get; set; } + public string Contents { get; set; } + } + + public class ShrineInnerDeliveryAttempt + { + public long Underlying { get; set; } + } + + public class ShrineDeliveryContents + { + public string Contents { get; set; } + public ShrineDeliveryContentsType ContentsType { get; set; } + } + + public enum ShrineDeliveryContentsType + { + UpdateQueryAtQep, + RunQueryForResult, + Result + } +} + diff --git a/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs b/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs new file mode 100644 index 000000000..bffe46721 --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs @@ -0,0 +1,16 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine +{ + public class ShrineUpdateQueryAtQep + { + public ShrineUpdateQueryAtQep() + { + } + } +} + diff --git a/src/server/Model/Model.csproj b/src/server/Model/Model.csproj index ac9ea1497..82a30f7cd 100644 --- a/src/server/Model/Model.csproj +++ b/src/server/Model/Model.csproj @@ -20,6 +20,7 @@ + @@ -31,6 +32,7 @@ + diff --git a/src/server/Services/Integration/Shrine/ShrinePollingService.cs b/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs similarity index 80% rename from src/server/Services/Integration/Shrine/ShrinePollingService.cs rename to src/server/Services/Integration/Shrine/ShrineMessageBroker.cs index 9ffc7efe2..6947a012c 100644 --- a/src/server/Services/Integration/Shrine/ShrinePollingService.cs +++ b/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs @@ -16,18 +16,18 @@ namespace Services.Integration.Shrine { - public class ShrinePollingService : IShrinePollingService + public class ShrineMessageBroker : IShrineMessageBroker { readonly HttpClient client; readonly SHRINEOptions opts; - public ShrinePollingService(HttpClient client, IOptions opts) + public ShrineMessageBroker(HttpClient client, IOptions opts) { this.client = client; this.opts = opts.Value.SHRINE; } - public async Task ReadHubMessage() + public async Task ReadHubMessage() { var req = new HttpRequestMessage { @@ -39,19 +39,16 @@ public async Task ReadHubMessage() resp.EnsureSuccessStatusCode(); var jsonString = await resp.Content.ReadAsStringAsync(); + var message = JsonConvert.DeserializeObject(jsonString); - var deliveryAttemptId = GetDeliveryAttemptId(jsonString); - if (deliveryAttemptId != null) + var ack = new HttpRequestMessage { - var ack = new HttpRequestMessage - { - RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/acknowledge/{deliveryAttemptId}"), - Method = HttpMethod.Put - }; - var ackResp = await client.SendAsync(ack); - } + RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/acknowledge/{message.DeliveryAttemptId.Underlying}"), + Method = HttpMethod.Put + }; + _ = await client.SendAsync(ack); - return jsonString; + return message; } private static string GetDeliveryAttemptId(string body) From 667ca01b6774518179d065ebf862195ef5dce04d Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Thu, 5 Oct 2023 18:14:23 -0700 Subject: [PATCH 04/19] working through shrine classes, dtos --- src/server/API/API.csproj | 6 - .../Jobs/BackgroundShrinePollingService.cs | 114 ++++++++++++++++++ src/server/API/Jobs/ShrinePollingService.cs | 64 ---------- .../API/Options/StartupExtensions.Services.cs | 2 +- .../Shrine/4_1/DTO}/ShrineExpressionDTO.cs | 10 +- .../Shrine/4_1/DTO}/ShrineOutputDTO.cs | 2 +- .../Shrine/4_1/DTO}/ShrineQueryDTO.cs | 4 +- .../Shrine/4_1/DTO}/ShrineStatusDTO.cs | 3 +- .../Integration/Shrine/4_1/ShrineQuery.cs | 2 + .../Shrine/DTO}/ShrineDeliveryAttemptDTO.cs | 15 ++- .../Shrine/DTO/ShrineQueryStatusDTO.cs | 31 +++++ .../Shrine/DTO/ShrineResultProgressDTO.cs | 52 ++++++++ .../Shrine/DTO/ShrineUpdateQueryAtQepDTO.cs | 57 +++++++++ .../Shrine/DTO}/ShrineVersionInfoDTO.cs | 11 +- .../Shrine/IShrineMessageBroker.cs | 2 +- .../Shrine/IShrineQueryResultCache.cs | 95 +++++++++++++++ .../Shrine/ShrineDeliveryAttempt.cs | 1 + .../Model/Integration/Shrine/ShrineNode.cs | 23 ++++ .../Integration/Shrine/ShrineQueryResult.cs | 21 ++++ .../Integration/Shrine/ShrineQueryStatus.cs | 27 +++++ .../Integration/Shrine/ShrineResearcher.cs | 18 +++ .../Shrine/ShrineResultProgress.cs | 33 +++++ .../Shrine/ShrineRunQueryForResult.cs | 20 +++ .../Model/Integration/Shrine/ShrineTopic.cs | 18 +++ .../Shrine/ShrineUpdateQueryAtQep.cs | 12 +- .../Shrine/{4_1 => }/ShrineVersionInfo.cs | 2 +- src/server/Model/Model.csproj | 4 + .../Integration/Shrine/ShrineMessageBroker.cs | 16 ++- 28 files changed, 564 insertions(+), 101 deletions(-) create mode 100644 src/server/API/Jobs/BackgroundShrinePollingService.cs delete mode 100644 src/server/API/Jobs/ShrinePollingService.cs rename src/server/{API/DTO/Integration/Shrine/4_1 => Model/Integration/Shrine/4_1/DTO}/ShrineExpressionDTO.cs (94%) rename src/server/{API/DTO/Integration/Shrine/4_1 => Model/Integration/Shrine/4_1/DTO}/ShrineOutputDTO.cs (95%) rename src/server/{API/DTO/Integration/Shrine/4_1 => Model/Integration/Shrine/4_1/DTO}/ShrineQueryDTO.cs (97%) rename src/server/{API/DTO/Integration/Shrine/4_1 => Model/Integration/Shrine/4_1/DTO}/ShrineStatusDTO.cs (92%) rename src/server/{API/DTO/Integration/Shrine => Model/Integration/Shrine/DTO}/ShrineDeliveryAttemptDTO.cs (79%) create mode 100644 src/server/Model/Integration/Shrine/DTO/ShrineQueryStatusDTO.cs create mode 100644 src/server/Model/Integration/Shrine/DTO/ShrineResultProgressDTO.cs create mode 100644 src/server/Model/Integration/Shrine/DTO/ShrineUpdateQueryAtQepDTO.cs rename src/server/{API/DTO/Integration/Shrine/4_1 => Model/Integration/Shrine/DTO}/ShrineVersionInfoDTO.cs (82%) create mode 100644 src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs create mode 100644 src/server/Model/Integration/Shrine/ShrineNode.cs create mode 100644 src/server/Model/Integration/Shrine/ShrineQueryResult.cs create mode 100644 src/server/Model/Integration/Shrine/ShrineQueryStatus.cs create mode 100644 src/server/Model/Integration/Shrine/ShrineResearcher.cs create mode 100644 src/server/Model/Integration/Shrine/ShrineResultProgress.cs create mode 100644 src/server/Model/Integration/Shrine/ShrineRunQueryForResult.cs create mode 100644 src/server/Model/Integration/Shrine/ShrineTopic.cs rename src/server/Model/Integration/Shrine/{4_1 => }/ShrineVersionInfo.cs (94%) diff --git a/src/server/API/API.csproj b/src/server/API/API.csproj index 473f2f4a5..aa0111a2b 100644 --- a/src/server/API/API.csproj +++ b/src/server/API/API.csproj @@ -25,9 +25,6 @@ - - - @@ -58,8 +55,5 @@ - - - diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs new file mode 100644 index 000000000..6ec3469d8 --- /dev/null +++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs @@ -0,0 +1,114 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; +using Model.Integration.Shrine; +using Model.Integration.Shrine.DTO; +using Newtonsoft.Json; + +namespace API.Jobs +{ + public class BackgroundShrinePollingService : BackgroundService + { + readonly ILogger logger; + readonly IShrineMessageBroker broker; + readonly IShrineQueryResultCache queryResultCache; + readonly int ErrorPauseSeconds = 30; + + public BackgroundShrinePollingService( + ILogger logger, + IShrineMessageBroker broker) + { + this.logger = logger; + this.broker = broker; + } + + protected override async Task ExecuteAsync(CancellationToken stoppingToken) + { + logger.LogInformation("BackgroundShrinePollingService is starting"); + + stoppingToken.Register(() => + { + logger.LogInformation("BackgroundShrinePollingService is stopped"); + }); + + while (!stoppingToken.IsCancellationRequested) + { + try + { + var message = await broker.ReadHubMessage(); + if (message == null) continue; + + _ = Task.Run(async () => + { + switch (message.ContentsType) + { + case ShrineDeliveryContentsType.UpdateQueryAtQep: + var update = JsonConvert.DeserializeObject(message.Contents).ToUpdate(); + HandleUpdateQueryAtQepMessage(update); + break; + + case ShrineDeliveryContentsType.RunQueryForResult: + var run = JsonConvert.DeserializeObject(message.Contents); + await HandleRunQueryForResultMessage(run); + break; + + case ShrineDeliveryContentsType.Result: + var result = JsonConvert.DeserializeObject(message.Contents).ToProgress(); + HandleResultMessage(result); + break; + + default: + break; + } + }, stoppingToken); + } + catch (JsonSerializationException e) + { + logger.LogError("BackgroundShrinePollingService failed to parse SHRINE message. Error: {Error}", e.ToString()); + } + catch (Exception e) + { + logger.LogError("BackgroundShrinePollingService failed to synchronize with SHRINE. Error: {Error}", e.ToString()); + logger.LogError($"BackgroundShrinePollingService pausing {ErrorPauseSeconds} seconds."); + await Task.Delay(TimeSpan.FromSeconds(ErrorPauseSeconds), stoppingToken); + } + finally + { + // No need to delay next poll on Leaf end. SHRINE already long polls on other side + } + } + + logger.LogInformation("BackgroundShrinePollingService is stopped"); + } + + void HandleUpdateQueryAtQepMessage(ShrineUpdateQueryAtQep update) + { + switch (update.EncodedClass) + { + case ShrineQueryStatusType.UpdateQueryAtQepWithStatus: + break; + + case ShrineQueryStatusType.UpdateQueryReadyForAdapters: + break; + } + } + + void HandleResultMessage(ShrineResultProgress progress) + { + + } + + async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run) + { + + } + } +} + diff --git a/src/server/API/Jobs/ShrinePollingService.cs b/src/server/API/Jobs/ShrinePollingService.cs deleted file mode 100644 index cb40521af..000000000 --- a/src/server/API/Jobs/ShrinePollingService.cs +++ /dev/null @@ -1,64 +0,0 @@ -// Copyright (c) 2023, UW Medicine Research IT, University of Washington -// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. -using System; -using System.Threading; -using System.Threading.Tasks; -using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Logging; -using Model.Integration.Shrine; - -namespace API.Jobs -{ - public class ShrinePollingService : BackgroundService - { - readonly ILogger logger; - readonly IShrineMessageBroker shrine; - - public ShrinePollingService( - ILogger logger, - IShrineMessageBroker shrine) - { - this.logger = logger; - this.shrine = shrine; - } - - protected override async Task ExecuteAsync(CancellationToken stoppingToken) - { - logger.LogInformation("ShrineHubReader is starting"); - - stoppingToken.Register(() => - { - logger.LogInformation("ShrineHubReader is stopped"); - }); - - while (!stoppingToken.IsCancellationRequested) - { - try - { - logger.LogInformation("Syncronizing with SHRINE"); - var message = await shrine.ReadHubMessage(); - - _ = Task.Run(() => - { - - }, stoppingToken); - } - catch (Exception e) - { - logger.LogError("Failed to syncronize with SHRINE. Error: {Error}", e.ToString()); - await Task.Delay(TimeSpan.FromSeconds(30), stoppingToken); - } - finally - { - // No need to delay next poll on Leaf end. SHRINE already long polls on other side - } - } - - logger.LogInformation("ShrineHubReader is stopped"); - } - } -} - diff --git a/src/server/API/Options/StartupExtensions.Services.cs b/src/server/API/Options/StartupExtensions.Services.cs index e8fa3f0f2..c23821806 100644 --- a/src/server/API/Options/StartupExtensions.Services.cs +++ b/src/server/API/Options/StartupExtensions.Services.cs @@ -202,7 +202,7 @@ static IServiceCollection AddIntegrationServices(this IServiceCollection service { if (integrationOpts.SHRINE.Enabled) { - services.AddHostedService(); + services.AddHostedService(); /* Use for testing only!! */ if (!environment.IsProduction()) diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs b/src/server/Model/Integration/Shrine/4_1/DTO/ShrineExpressionDTO.cs similarity index 94% rename from src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs rename to src/server/Model/Integration/Shrine/4_1/DTO/ShrineExpressionDTO.cs index 4ebcce7cb..4ff2d97d4 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs +++ b/src/server/Model/Integration/Shrine/4_1/DTO/ShrineExpressionDTO.cs @@ -8,7 +8,7 @@ using Model.Integration.Shrine4_1; using System.Linq; -namespace API.DTO.Integration.Shrine4_1 +namespace Model.Integration.Shrine4_1.DTO { public class ShrineQueryDefinitionDTO { @@ -53,8 +53,8 @@ public class ShrineConceptGroupDTO : ShrineGroupDTO public ShrineConceptGroupDTO(ShrineConceptGroup group) : base(group) { - StartDate = ((DateTimeOffset)group.StartDate).ToUnixTimeSeconds(); - EndDate = ((DateTimeOffset)group.EndDate).ToUnixTimeSeconds(); + StartDate = ((DateTimeOffset)group.StartDate).ToUnixTimeMilliseconds(); + EndDate = ((DateTimeOffset)group.EndDate).ToUnixTimeMilliseconds(); OccursAtLeast = group.OccursAtLeast; Concepts = new ShrineConjunctionDTO(group.Concepts); } @@ -110,8 +110,8 @@ public static ShrineConceptGroup ToConceptGroup(this ShrineConceptGroupDTO dto) { return new ShrineConceptGroup { - StartDate = DateTimeOffset.FromUnixTimeSeconds(dto.StartDate).UtcDateTime, - EndDate = DateTimeOffset.FromUnixTimeSeconds(dto.EndDate).UtcDateTime, + StartDate = DateTimeOffset.FromUnixTimeMilliseconds(dto.StartDate).UtcDateTime, + EndDate = DateTimeOffset.FromUnixTimeMilliseconds(dto.EndDate).UtcDateTime, OccursAtLeast = dto.OccursAtLeast, Concepts = dto.Concepts.ToConjunction() }; diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs b/src/server/Model/Integration/Shrine/4_1/DTO/ShrineOutputDTO.cs similarity index 95% rename from src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs rename to src/server/Model/Integration/Shrine/4_1/DTO/ShrineOutputDTO.cs index 0a4485c63..8236e60b1 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs +++ b/src/server/Model/Integration/Shrine/4_1/DTO/ShrineOutputDTO.cs @@ -6,7 +6,7 @@ using System; using Model.Integration.Shrine4_1; -namespace API.DTO.Integration.Shrine4_1 +namespace Model.Integration.Shrine4_1.DTO { public class ShrineOutputDTO { diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs b/src/server/Model/Integration/Shrine/4_1/DTO/ShrineQueryDTO.cs similarity index 97% rename from src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs rename to src/server/Model/Integration/Shrine/4_1/DTO/ShrineQueryDTO.cs index e9efaed3c..318dec6a8 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs +++ b/src/server/Model/Integration/Shrine/4_1/DTO/ShrineQueryDTO.cs @@ -4,9 +4,9 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; -using Model.Integration.Shrine4_1; +using Model.Integration.Shrine.DTO; -namespace API.DTO.Integration.Shrine4_1 +namespace Model.Integration.Shrine4_1.DTO { public class ShrineQueryDTO { diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs b/src/server/Model/Integration/Shrine/4_1/DTO/ShrineStatusDTO.cs similarity index 92% rename from src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs rename to src/server/Model/Integration/Shrine/4_1/DTO/ShrineStatusDTO.cs index b6845599b..46095a0de 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs +++ b/src/server/Model/Integration/Shrine/4_1/DTO/ShrineStatusDTO.cs @@ -4,9 +4,8 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; -using Model.Integration.Shrine4_1; -namespace API.DTO.Integration.Shrine4_1 +namespace Model.Integration.Shrine4_1.DTO { public class ShrineStatusDTO { diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs b/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs index 784e6ac61..0ef950f7a 100644 --- a/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs +++ b/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs @@ -4,6 +4,8 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using Model.Integration.Shrine; + namespace Model.Integration.Shrine4_1 { public class ShrineQuery diff --git a/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs b/src/server/Model/Integration/Shrine/DTO/ShrineDeliveryAttemptDTO.cs similarity index 79% rename from src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs rename to src/server/Model/Integration/Shrine/DTO/ShrineDeliveryAttemptDTO.cs index 4a89541b0..5ed266a56 100644 --- a/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs +++ b/src/server/Model/Integration/Shrine/DTO/ShrineDeliveryAttemptDTO.cs @@ -4,9 +4,8 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; -using Model.Integration.Shrine; -namespace API.DTO.Integration.Shrine +namespace Model.Integration.Shrine.DTO { public class ShrineDeliveryAttemptDTO { @@ -49,6 +48,18 @@ public static ShrineDeliveryAttempt ToDeliveryAttempt(this ShrineDeliveryAttempt Contents = dto.Contents }; } + + public static ShrineDeliveryContents ToContents(this ShrineDeliveryContentsDTO dto) + { + if (dto == null) return null; + _ = Enum.TryParse(dto.ContentsType, out ShrineDeliveryContentsType contentsType); + + return new ShrineDeliveryContents + { + Contents = dto.Contents, + ContentsType = contentsType + }; + } } } diff --git a/src/server/Model/Integration/Shrine/DTO/ShrineQueryStatusDTO.cs b/src/server/Model/Integration/Shrine/DTO/ShrineQueryStatusDTO.cs new file mode 100644 index 000000000..80907e941 --- /dev/null +++ b/src/server/Model/Integration/Shrine/DTO/ShrineQueryStatusDTO.cs @@ -0,0 +1,31 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine.DTO +{ + public class ShrineQueryStatusDTO + { + public string EncodedClass { get; set; } + + public ShrineQueryStatusDTO(ShrineQueryStatus status) + { + EncodedClass = status.EncodedClass.ToString(); + } + } + + public static class ShrineQueryStatusExtensions + { + public static ShrineQueryStatus ToStatus(this ShrineQueryStatusDTO dto) + { + _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryStatusType type); + return new ShrineQueryStatus + { + EncodedClass = type + }; + } + } +} + diff --git a/src/server/Model/Integration/Shrine/DTO/ShrineResultProgressDTO.cs b/src/server/Model/Integration/Shrine/DTO/ShrineResultProgressDTO.cs new file mode 100644 index 000000000..1515b1806 --- /dev/null +++ b/src/server/Model/Integration/Shrine/DTO/ShrineResultProgressDTO.cs @@ -0,0 +1,52 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine.DTO +{ + public class ShrineResultProgressDTO + { + public long Id { get; set; } + public ShrineVersionInfoDTO VersionInfo { get; set; } + public long QueryId { get; set; } + public long AdapterNodeId { get; set; } + public string AdapterNodeName { get; set; } + public ShrineQueryStatusDTO Status { get; set; } + public string StatusMessage { get; set; } + public long CrcQueryInstanceId { get; set; } + public string EncodedClass { get; set; } + + public ShrineResultProgressDTO(ShrineResultProgress progress) + { + Id = progress.Id; + VersionInfo = new ShrineVersionInfoDTO(progress.VersionInfo); + QueryId = progress.QueryId; + AdapterNodeId = progress.AdapterNodeId; + AdapterNodeName = progress.AdapterNodeName; + Status = new ShrineQueryStatusDTO(progress.Status); + StatusMessage = progress.StatusMessage; + CrcQueryInstanceId = progress.CrcQueryInstanceId; + } + } + + public static class ShrineResultProgressExtensions + { + public static ShrineResultProgress ToProgress(this ShrineResultProgressDTO dto) + { + return new ShrineResultProgress + { + Id = dto.Id, + VersionInfo = dto.VersionInfo.ToVersionInfo(), + QueryId = dto.QueryId, + AdapterNodeId = dto.AdapterNodeId, + AdapterNodeName = dto.AdapterNodeName, + Status = dto.Status.ToStatus(), + StatusMessage = dto.StatusMessage, + CrcQueryInstanceId = dto.CrcQueryInstanceId + }; + } + } +} + diff --git a/src/server/Model/Integration/Shrine/DTO/ShrineUpdateQueryAtQepDTO.cs b/src/server/Model/Integration/Shrine/DTO/ShrineUpdateQueryAtQepDTO.cs new file mode 100644 index 000000000..9804ad7fe --- /dev/null +++ b/src/server/Model/Integration/Shrine/DTO/ShrineUpdateQueryAtQepDTO.cs @@ -0,0 +1,57 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using System.Linq; +using System.Collections.Generic; + +namespace Model.Integration.Shrine.DTO +{ + public class ShrineUpdateQueryAtQepDTO + { + public long QueryId { get; set; } + public ShrineQueryStatusDTO QueryStatus { get; set; } + public long ChangeDate { get; set; } + public string EncodedClass { get; set; } + public IEnumerable ResultProgresses { get; set; } + + public ShrineUpdateQueryAtQepDTO(ShrineUpdateQueryAtQep update) + { + QueryId = update.QueryId; + QueryStatus = new ShrineQueryStatusDTO(update.QueryStatus); + ChangeDate = ((DateTimeOffset)update.ChangeDate).ToUnixTimeMilliseconds(); + EncodedClass = update.EncodedClass.ToString(); + + if (update.ResultProgresses != null) + { + ResultProgresses = update.ResultProgresses.Select(p => new ShrineResultProgressDTO(p)); + } + } + } + + public static class ShrineUpdateQueryAtQepExtensions + { + public static ShrineUpdateQueryAtQep ToUpdate(this ShrineUpdateQueryAtQepDTO dto) + { + _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryStatusType type); + + var output = new ShrineUpdateQueryAtQep + { + QueryId = dto.QueryId, + QueryStatus = dto.QueryStatus.ToStatus(), + ChangeDate = DateTimeOffset.FromUnixTimeMilliseconds(dto.ChangeDate).UtcDateTime, + EncodedClass = type + }; + + if (dto.ResultProgresses != null) + { + output.ResultProgresses = dto.ResultProgresses.Select(p => p.ToProgress()); + } + + return output; + } + } +} + diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineVersionInfoDTO.cs b/src/server/Model/Integration/Shrine/DTO/ShrineVersionInfoDTO.cs similarity index 82% rename from src/server/API/DTO/Integration/Shrine/4_1/ShrineVersionInfoDTO.cs rename to src/server/Model/Integration/Shrine/DTO/ShrineVersionInfoDTO.cs index 3b297c248..c138b96d7 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineVersionInfoDTO.cs +++ b/src/server/Model/Integration/Shrine/DTO/ShrineVersionInfoDTO.cs @@ -4,9 +4,8 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; -using Model.Integration.Shrine4_1; -namespace API.DTO.Integration.Shrine4_1 +namespace Model.Integration.Shrine.DTO { public class ShrineVersionInfoDTO { @@ -21,8 +20,8 @@ public ShrineVersionInfoDTO(ShrineVersionInfo ver) ProtocolVersion = ver.ProtocolVersion; ItemVersion = ver.ItemVersion; ShrineVersion = ver.ShrineVersion; - CreateDate = ((DateTimeOffset)ver.CreateDate).ToUnixTimeSeconds(); - ChangeDate = ((DateTimeOffset)ver.ChangeDate).ToUnixTimeSeconds(); + CreateDate = ((DateTimeOffset)ver.CreateDate).ToUnixTimeMilliseconds(); + ChangeDate = ((DateTimeOffset)ver.ChangeDate).ToUnixTimeMilliseconds(); } } @@ -35,8 +34,8 @@ public static ShrineVersionInfo ToVersionInfo(this ShrineVersionInfoDTO dto) ProtocolVersion = dto.ProtocolVersion, ItemVersion = dto.ItemVersion, ShrineVersion = dto.ShrineVersion, - CreateDate = DateTimeOffset.FromUnixTimeSeconds(dto.CreateDate).UtcDateTime, - ChangeDate = DateTimeOffset.FromUnixTimeSeconds(dto.ChangeDate).UtcDateTime + CreateDate = DateTimeOffset.FromUnixTimeMilliseconds(dto.CreateDate).UtcDateTime, + ChangeDate = DateTimeOffset.FromUnixTimeMilliseconds(dto.ChangeDate).UtcDateTime }; } } diff --git a/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs b/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs index 74356911e..e54934952 100644 --- a/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs +++ b/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs @@ -10,7 +10,7 @@ namespace Model.Integration.Shrine { public interface IShrineMessageBroker { - public Task ReadHubMessage(); + public Task ReadHubMessage(); } } diff --git a/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs new file mode 100644 index 000000000..1453581f6 --- /dev/null +++ b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs @@ -0,0 +1,95 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading; +using System.Collections; + +namespace Model.Integration.Shrine +{ + public interface IShrineQueryResultCache : IEnumerable + { + IEnumerable All(); + ShrineQueryResult GetOrDefault(long id); + void Overwrite(IEnumerable results); + ShrineQueryResult PopOrDefault(long id); + void Put(ShrineQueryResult result); + void Put(IEnumerable results); + } + + public class ShrineQueryResultCache : IShrineQueryResultCache + { + Dictionary store; + readonly ReaderWriterLockSlim sync; + + public ShrineQueryResultCache(IEnumerable initial) + { + + store = initial.ToDictionary(ne => ne.Id); + sync = new ReaderWriterLockSlim(); + } + + public IEnumerable All() + { + sync.EnterReadLock(); + var all = store.Values; + sync.ExitReadLock(); + return all; + } + + public ShrineQueryResult GetOrDefault(long id) + { + sync.EnterReadLock(); + store.TryGetValue(id, out var result); + sync.ExitReadLock(); + return result; + } + + public void Put(ShrineQueryResult result) + { + sync.EnterWriteLock(); + store[result.Id] = result; + sync.ExitWriteLock(); + } + + public void Put(IEnumerable results) + { + sync.EnterWriteLock(); + foreach (var result in results) + { + store[result.Id] = result; + } + sync.ExitWriteLock(); + } + + public void Overwrite(IEnumerable results) + { + sync.EnterWriteLock(); + store = results.ToDictionary(ne => ne.Id); + sync.ExitWriteLock(); + } + + public ShrineQueryResult PopOrDefault(long id) + { + sync.EnterWriteLock(); + store.Remove(id, out var result); + sync.ExitWriteLock(); + return result; + } + + public IEnumerator GetEnumerator() + { + return All().GetEnumerator(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} + diff --git a/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs b/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs index edcae193c..4d592f0d8 100644 --- a/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs +++ b/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs @@ -28,6 +28,7 @@ public class ShrineDeliveryContents public enum ShrineDeliveryContentsType { + Unknown, UpdateQueryAtQep, RunQueryForResult, Result diff --git a/src/server/Model/Integration/Shrine/ShrineNode.cs b/src/server/Model/Integration/Shrine/ShrineNode.cs new file mode 100644 index 000000000..2bff23afb --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineNode.cs @@ -0,0 +1,23 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine +{ + public class ShrineNode + { + public long Id { get; set; } + public ShrineVersionInfo VersionInfo { get; set; } + public string Name { get; set; } + public string Key { get; set; } + public string UserDomainName { get; set; } + public string MomQueueName { get; set; } + public string AdminEmail { get; set; } + public bool SendQueries { get; set; } + public int UnderstandsProtocol { get; set; } + public string MomId { get; set; } + } +} + diff --git a/src/server/Model/Integration/Shrine/ShrineQueryResult.cs b/src/server/Model/Integration/Shrine/ShrineQueryResult.cs new file mode 100644 index 000000000..c561cf78b --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineQueryResult.cs @@ -0,0 +1,21 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine +{ + public class ShrineQueryResult + { + public long Id { get; set; } + + } + + public class ShrineQueryNodeResult + { + public long Id { get; set; } + public string Name { get; set; } + } +} + diff --git a/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs b/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs new file mode 100644 index 000000000..2a5772fba --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs @@ -0,0 +1,27 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine +{ + public class ShrineQueryStatus + { + public ShrineQueryStatusType EncodedClass { get; set; } + } + + public enum ShrineQueryStatusType + { + Unknown, + ReceivedAtHub, + UpdateQueryAtQepWithStatus, + UpdateQueryReadyForAdapters, + IdAssigned, + SubmittedToCRC, + ResultProgress, + ReceivedByAdapter, + CrcResult + } +} + diff --git a/src/server/Model/Integration/Shrine/ShrineResearcher.cs b/src/server/Model/Integration/Shrine/ShrineResearcher.cs new file mode 100644 index 000000000..03a4ec134 --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineResearcher.cs @@ -0,0 +1,18 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine +{ + public class ShrineResearcher + { + public long Id { get; set; } + public ShrineVersionInfo VersionInfo { get; set; } + public string UserName { get; set; } + public string UserDomainName { get; set; } + public long NodeId { get; set; } + } +} + diff --git a/src/server/Model/Integration/Shrine/ShrineResultProgress.cs b/src/server/Model/Integration/Shrine/ShrineResultProgress.cs new file mode 100644 index 000000000..d69b39515 --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineResultProgress.cs @@ -0,0 +1,33 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine4_1; + +namespace Model.Integration.Shrine +{ + public class ShrineResultProgress + { + public long Id { get; set; } + public ShrineVersionInfo VersionInfo { get; set; } + public long QueryId { get; set; } + public long AdapterNodeId { get; set; } + public string AdapterNodeName { get; set; } + public ShrineQueryStatus Status { get; set; } + public string StatusMessage { get; set; } + public long CrcQueryInstanceId { get; set; } + public ShrineQueryStatusType EncodedClass { get; set; } + public int Count { get; set; } = -1; + } + + public class ShrineResultObfuscatingParameters + { + public int BinSize { get; set; } + public decimal StdDev { get; set; } + public int NoiseClamp { get; set; } + public int LowLimit { get; set; } + } +} + diff --git a/src/server/Model/Integration/Shrine/ShrineRunQueryForResult.cs b/src/server/Model/Integration/Shrine/ShrineRunQueryForResult.cs new file mode 100644 index 000000000..952d8f557 --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineRunQueryForResult.cs @@ -0,0 +1,20 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine4_1; + +namespace Model.Integration.Shrine +{ + public class ShrineRunQueryForResult + { + public ShrineQuery Query { get; set; } + public ShrineNode Node { get; set; } + public ShrineTopic Topic { get; set; } + public ShrineResultProgress ResultProgress { get; set; } + public int ProtocolVersion { get; set; } + } +} + diff --git a/src/server/Model/Integration/Shrine/ShrineTopic.cs b/src/server/Model/Integration/Shrine/ShrineTopic.cs new file mode 100644 index 000000000..9c79b182b --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineTopic.cs @@ -0,0 +1,18 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine +{ + public class ShrineTopic + { + public long Id { get; set; } + public ShrineVersionInfo VersionInfo { get; set; } + public long ResearcherId { get; set; } + public string Name { get; set; } + public string Description { get; set; } + } +} + diff --git a/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs b/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs index bffe46721..0c2e1179c 100644 --- a/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs +++ b/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs @@ -4,13 +4,17 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using System.Collections.Generic; + namespace Model.Integration.Shrine { public class ShrineUpdateQueryAtQep { - public ShrineUpdateQueryAtQep() - { - } - } + public long QueryId { get; set; } + public ShrineQueryStatus QueryStatus { get; set; } + public DateTime ChangeDate { get; set; } + public ShrineQueryStatusType EncodedClass { get; set; } + public IEnumerable ResultProgresses { get; set; } = new List(); + } } diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineVersionInfo.cs b/src/server/Model/Integration/Shrine/ShrineVersionInfo.cs similarity index 94% rename from src/server/Model/Integration/Shrine/4_1/ShrineVersionInfo.cs rename to src/server/Model/Integration/Shrine/ShrineVersionInfo.cs index d8aa2e9f5..8aced911c 100644 --- a/src/server/Model/Integration/Shrine/4_1/ShrineVersionInfo.cs +++ b/src/server/Model/Integration/Shrine/ShrineVersionInfo.cs @@ -4,7 +4,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; -namespace Model.Integration.Shrine4_1 +namespace Model.Integration.Shrine { public class ShrineVersionInfo { diff --git a/src/server/Model/Model.csproj b/src/server/Model/Model.csproj index 82a30f7cd..86f621856 100644 --- a/src/server/Model/Model.csproj +++ b/src/server/Model/Model.csproj @@ -21,6 +21,8 @@ + + @@ -33,6 +35,8 @@ + + diff --git a/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs b/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs index 6947a012c..53614b1f8 100644 --- a/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs +++ b/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs @@ -10,6 +10,7 @@ using System.Threading.Tasks; using Microsoft.Extensions.Options; using Model.Integration.Shrine; +using Model.Integration.Shrine.DTO; using Model.Options; using Newtonsoft.Json; using Newtonsoft.Json.Linq; @@ -20,6 +21,7 @@ public class ShrineMessageBroker : IShrineMessageBroker { readonly HttpClient client; readonly SHRINEOptions opts; + readonly int TimeOutSeconds = 50; public ShrineMessageBroker(HttpClient client, IOptions opts) { @@ -27,19 +29,19 @@ public ShrineMessageBroker(HttpClient client, IOptions opts) this.opts = opts.Value.SHRINE; } - public async Task ReadHubMessage() + public async Task ReadHubMessage() { var req = new HttpRequestMessage { - RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/receiveMessage/{opts.LocalNodeName}?timeOutSeconds=50"), + RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/receiveMessage/{opts.LocalNodeName}?timeOutSeconds={TimeOutSeconds}"), Method = HttpMethod.Get }; var resp = await client.SendAsync(req); - resp.EnsureSuccessStatusCode(); + if (!resp.IsSuccessStatusCode) return null; - var jsonString = await resp.Content.ReadAsStringAsync(); - var message = JsonConvert.DeserializeObject(jsonString); + var jsonMessage = await resp.Content.ReadAsStringAsync(); + var message = JsonConvert.DeserializeObject(jsonMessage).ToDeliveryAttempt(); var ack = new HttpRequestMessage { @@ -48,7 +50,9 @@ public async Task ReadHubMessage() }; _ = await client.SendAsync(ack); - return message; + var contents = JsonConvert.DeserializeObject(message.Contents); + + return contents.ToContents(); } private static string GetDeliveryAttemptId(string body) From c654d0cc17c6c1885591277ff13b199c2552f345 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Fri, 6 Oct 2023 11:36:46 -0700 Subject: [PATCH 05/19] updated --- .../Jobs/BackgroundShrinePollingService.cs | 34 ++++++--- .../Shrine/4_1/ShrineExpression.cs | 13 ++-- .../Shrine/DTO/ShrineResultProgressDTO.cs | 38 +++++++++- .../Shrine/IShrineMessageBroker.cs | 2 +- .../Shrine/IShrineQueryResultCache.cs | 44 +++++++++-- .../Shrine/ShrineQueryDefinitionConverter.cs | 76 +++++++++++++++++++ .../Integration/Shrine/ShrineQueryResult.cs | 16 ++-- .../Shrine/ShrineResultProgress.cs | 4 +- .../Shrine/ShrineUpdateQueryAtQep.cs | 12 ++- .../Integration/Shrine/ShrineMessageBroker.cs | 29 +------ 10 files changed, 203 insertions(+), 65 deletions(-) create mode 100644 src/server/Model/Integration/Shrine/ShrineQueryDefinitionConverter.cs diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs index 6ec3469d8..f6f62d8d8 100644 --- a/src/server/API/Jobs/BackgroundShrinePollingService.cs +++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs @@ -6,8 +6,10 @@ using System; using System.Threading; using System.Threading.Tasks; +using API.DTO.Cohort; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; +using Model.Cohort; using Model.Integration.Shrine; using Model.Integration.Shrine.DTO; using Newtonsoft.Json; @@ -19,14 +21,20 @@ public class BackgroundShrinePollingService : BackgroundService readonly ILogger logger; readonly IShrineMessageBroker broker; readonly IShrineQueryResultCache queryResultCache; + readonly IShrineQueryDefinitionConverter converter; + readonly CohortCounter counter; readonly int ErrorPauseSeconds = 30; public BackgroundShrinePollingService( ILogger logger, - IShrineMessageBroker broker) + IShrineMessageBroker broker, + IShrineQueryDefinitionConverter converter, + CohortCounter counter) { this.logger = logger; this.broker = broker; + this.converter = converter; + this.counter = counter; } protected override async Task ExecuteAsync(CancellationToken stoppingToken) @@ -42,7 +50,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) { try { - var message = await broker.ReadHubMessage(); + var message = await broker.ReadHubMessageAndAcknowledge(); if (message == null) continue; _ = Task.Run(async () => @@ -56,7 +64,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) case ShrineDeliveryContentsType.RunQueryForResult: var run = JsonConvert.DeserializeObject(message.Contents); - await HandleRunQueryForResultMessage(run); + await HandleRunQueryForResultMessage(run, stoppingToken); break; case ShrineDeliveryContentsType.Result: @@ -90,24 +98,28 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) void HandleUpdateQueryAtQepMessage(ShrineUpdateQueryAtQep update) { - switch (update.EncodedClass) + if (update.ResultProgresses != null) { - case ShrineQueryStatusType.UpdateQueryAtQepWithStatus: - break; - - case ShrineQueryStatusType.UpdateQueryReadyForAdapters: - break; + queryResultCache.Put(update.ToQueryResult()); } } void HandleResultMessage(ShrineResultProgress progress) { - + queryResultCache.Put(progress); } - async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run) + async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run, CancellationToken stoppingToken) { + var leafQuery = converter.ToLeafQuery(run.Query); + var cohort = await counter.Count(leafQuery, stoppingToken); + var resp = new CohortCountDTO(cohort); + if (!cohort.ValidationContext.PreflightPassed) + { + // Respond with error + } + // Respond with count } } } diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs index d70b934dd..6414ec6ff 100644 --- a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs +++ b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs @@ -11,12 +11,16 @@ namespace Model.Integration.Shrine4_1 public class ShrineQueryDefinition { public ShrineConjunction Expression { get; set; } - } + } public abstract class ShrineExpression { public int NMustBeTrue { get; set; } - public ShrineConjunctionCompare Compare { get; set; } = new ShrineConjunctionCompare(); + public DateTime? StartDate { get; set; } + public DateTime? EndDate { get; set; } + public int? OccursAtLeast { get; set; } + public ShrineConjunction Concepts { get; set; } + public ShrineConjunctionCompare Compare { get; set; } = new ShrineConjunctionCompare(); } public abstract class ShrineGroup : ShrineExpression @@ -31,10 +35,7 @@ public class ShrineConjunction : ShrineExpression public class ShrineConceptGroup : ShrineGroup { - public DateTime StartDate { get; set; } - public DateTime EndDate { get; set; } - public int OccursAtLeast { get; set; } = 1; - public ShrineConjunction Concepts { get; set; } + } public class ShrineConcept : ShrineExpression diff --git a/src/server/Model/Integration/Shrine/DTO/ShrineResultProgressDTO.cs b/src/server/Model/Integration/Shrine/DTO/ShrineResultProgressDTO.cs index 1515b1806..f9dad0285 100644 --- a/src/server/Model/Integration/Shrine/DTO/ShrineResultProgressDTO.cs +++ b/src/server/Model/Integration/Shrine/DTO/ShrineResultProgressDTO.cs @@ -17,6 +17,8 @@ public class ShrineResultProgressDTO public string StatusMessage { get; set; } public long CrcQueryInstanceId { get; set; } public string EncodedClass { get; set; } + public int Count { get; set; } = -1; + public ShrineResultObfuscatingParametersDTO ObfuscatingParameters { get; set; } public ShrineResultProgressDTO(ShrineResultProgress progress) { @@ -28,6 +30,26 @@ public ShrineResultProgressDTO(ShrineResultProgress progress) Status = new ShrineQueryStatusDTO(progress.Status); StatusMessage = progress.StatusMessage; CrcQueryInstanceId = progress.CrcQueryInstanceId; + EncodedClass = progress.EncodedClass.ToString(); + Count = progress.Count; + ObfuscatingParameters = new ShrineResultObfuscatingParametersDTO(progress.ObfuscatingParameters); + } + } + + public class ShrineResultObfuscatingParametersDTO + { + public int BinSize { get; set; } + public decimal StdDev { get; set; } + public int NoiseClamp { get; set; } + public int LowLimit { get; set; } + + public ShrineResultObfuscatingParametersDTO(ShrineResultObfuscatingParameters parameters) + { + if (parameters == null) return; + BinSize = parameters.BinSize; + StdDev = parameters.StdDev; + NoiseClamp = parameters.NoiseClamp; + LowLimit = parameters.LowLimit; } } @@ -44,7 +66,21 @@ public static ShrineResultProgress ToProgress(this ShrineResultProgressDTO dto) AdapterNodeName = dto.AdapterNodeName, Status = dto.Status.ToStatus(), StatusMessage = dto.StatusMessage, - CrcQueryInstanceId = dto.CrcQueryInstanceId + CrcQueryInstanceId = dto.CrcQueryInstanceId, + Count = dto.Count, + ObfuscatingParameters = dto.ObfuscatingParameters?.ToParameters() + }; + } + + public static ShrineResultObfuscatingParameters ToParameters(this ShrineResultObfuscatingParametersDTO dto) + { + if (dto == null) return null; + return new ShrineResultObfuscatingParameters + { + BinSize = dto.BinSize, + StdDev = dto.StdDev, + NoiseClamp = dto.NoiseClamp, + LowLimit = dto.LowLimit }; } } diff --git a/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs b/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs index e54934952..c8c818a02 100644 --- a/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs +++ b/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs @@ -10,7 +10,7 @@ namespace Model.Integration.Shrine { public interface IShrineMessageBroker { - public Task ReadHubMessage(); + public Task ReadHubMessageAndAcknowledge(); } } diff --git a/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs index 1453581f6..80b2f22b0 100644 --- a/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs +++ b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs @@ -15,15 +15,16 @@ public interface IShrineQueryResultCache : IEnumerable { IEnumerable All(); ShrineQueryResult GetOrDefault(long id); - void Overwrite(IEnumerable results); ShrineQueryResult PopOrDefault(long id); void Put(ShrineQueryResult result); - void Put(IEnumerable results); + void Put(ShrineResultProgress nodeResult); + void Put(IEnumerable nodeResults); + void DeleteOlderThan(DateTime earliest); } public class ShrineQueryResultCache : IShrineQueryResultCache { - Dictionary store; + readonly Dictionary store; readonly ReaderWriterLockSlim sync; public ShrineQueryResultCache(IEnumerable initial) @@ -53,23 +54,37 @@ public void Put(ShrineQueryResult result) { sync.EnterWriteLock(); store[result.Id] = result; + store[result.Id].Updated = DateTime.Now; sync.ExitWriteLock(); } - public void Put(IEnumerable results) + public void Put(ShrineResultProgress nodeResult) { sync.EnterWriteLock(); - foreach (var result in results) + if (!store.ContainsKey(nodeResult.QueryId)) { - store[result.Id] = result; + store[nodeResult.QueryId] = new ShrineQueryResult(nodeResult.QueryId); } + store[nodeResult.QueryId].Results[nodeResult.AdapterNodeId] = nodeResult; + store[nodeResult.QueryId].Updated = DateTime.Now; sync.ExitWriteLock(); } - public void Overwrite(IEnumerable results) + public void Put(IEnumerable nodeResults) { + if (!nodeResults.Any()) return; + sync.EnterWriteLock(); - store = results.ToDictionary(ne => ne.Id); + var first = nodeResults.First(); + if (!store.ContainsKey(first.QueryId)) + { + store[first.QueryId] = new ShrineQueryResult(first.QueryId); + } + foreach (var nodeResult in nodeResults) + { + store[first.QueryId].Results[nodeResult.AdapterNodeId] = nodeResult; + } + store[first.QueryId].Updated = DateTime.Now; sync.ExitWriteLock(); } @@ -81,6 +96,19 @@ public ShrineQueryResult PopOrDefault(long id) return result; } + public void DeleteOlderThan(DateTime earliest) + { + sync.EnterReadLock(); + foreach (var result in All()) + { + if (result.Updated < earliest) + { + store.Remove(result.Id, out var _); + } + } + sync.ExitReadLock(); + } + public IEnumerator GetEnumerator() { return All().GetEnumerator(); diff --git a/src/server/Model/Integration/Shrine/ShrineQueryDefinitionConverter.cs b/src/server/Model/Integration/Shrine/ShrineQueryDefinitionConverter.cs new file mode 100644 index 000000000..53e7a9628 --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineQueryDefinitionConverter.cs @@ -0,0 +1,76 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using System.Collections.Generic; +using System.Linq; +using Model.Compiler; +using Model.Integration.Shrine4_1; +using Model.Tagging; + +namespace Model.Integration.Shrine +{ + public interface IShrineQueryDefinitionConverter + { + IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery); + ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery); + } + + public class ShrineQueryDefinitionConverter : IShrineQueryDefinitionConverter + { + public IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery) + { + var panels = shrineQuery.QueryDefinition.Expression.Possibilities.Select((conceptGroup, i) => + { + return new Panel + { + IncludePanel = conceptGroup.NMustBeTrue > 0, + Index = i, + Domain = PanelDomain.Panel, + DateFilter = conceptGroup.StartDate.HasValue ? + new DateBoundary + { + Start = new DateFilter { Date = conceptGroup.StartDate.Value }, + End = new DateFilter { Date = conceptGroup.EndDate.Value } + } + : null, + SubPanels = new List + { + new SubPanel + { + IncludeSubPanel = true, + Index = 0, + MinimumCount = conceptGroup.NMustBeTrue, + PanelIndex = i, + PanelItems = conceptGroup.Concepts.Possibilities.Select((c,j) => + { + var concept = (ShrineConcept)c; + _ = Urn.TryParse(concept.TermPath, out var urn); + return new PanelItem + { + Index = j, + SubPanelIndex = 0, + PanelIndex = i, + Concept = new Concept + { + UiDisplayName = concept.DisplayName, + UiDisplayText = concept.DisplayName, + UniversalId = urn + } + }; + }) + } + } + }; + }); + } + + public ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery) + { + return null; + } + } +} + diff --git a/src/server/Model/Integration/Shrine/ShrineQueryResult.cs b/src/server/Model/Integration/Shrine/ShrineQueryResult.cs index c561cf78b..74dce2374 100644 --- a/src/server/Model/Integration/Shrine/ShrineQueryResult.cs +++ b/src/server/Model/Integration/Shrine/ShrineQueryResult.cs @@ -4,18 +4,20 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using System.Collections.Generic; + namespace Model.Integration.Shrine { public class ShrineQueryResult { public long Id { get; set; } + public DateTime Updated = DateTime.Now; + public Dictionary Results = new(); - } - - public class ShrineQueryNodeResult - { - public long Id { get; set; } - public string Name { get; set; } - } + public ShrineQueryResult(long id) + { + Id = id; + } + } } diff --git a/src/server/Model/Integration/Shrine/ShrineResultProgress.cs b/src/server/Model/Integration/Shrine/ShrineResultProgress.cs index d69b39515..45e96fef4 100644 --- a/src/server/Model/Integration/Shrine/ShrineResultProgress.cs +++ b/src/server/Model/Integration/Shrine/ShrineResultProgress.cs @@ -4,7 +4,6 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; -using Model.Integration.Shrine4_1; namespace Model.Integration.Shrine { @@ -20,7 +19,8 @@ public class ShrineResultProgress public long CrcQueryInstanceId { get; set; } public ShrineQueryStatusType EncodedClass { get; set; } public int Count { get; set; } = -1; - } + public ShrineResultObfuscatingParameters ObfuscatingParameters { get; set; } + } public class ShrineResultObfuscatingParameters { diff --git a/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs b/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs index 0c2e1179c..df219db96 100644 --- a/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs +++ b/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs @@ -4,6 +4,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using System.Linq; using System.Collections.Generic; namespace Model.Integration.Shrine @@ -14,7 +15,16 @@ public class ShrineUpdateQueryAtQep public ShrineQueryStatus QueryStatus { get; set; } public DateTime ChangeDate { get; set; } public ShrineQueryStatusType EncodedClass { get; set; } - public IEnumerable ResultProgresses { get; set; } = new List(); + public IEnumerable ResultProgresses { get; set; } + + public ShrineQueryResult ToQueryResult() + { + return new ShrineQueryResult(QueryId) + { + Updated = ChangeDate, + Results = ResultProgresses?.ToDictionary(p => p.QueryId) + }; + } } } diff --git a/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs b/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs index 53614b1f8..68f48f5c1 100644 --- a/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs +++ b/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs @@ -29,7 +29,7 @@ public ShrineMessageBroker(HttpClient client, IOptions opts) this.opts = opts.Value.SHRINE; } - public async Task ReadHubMessage() + public async Task ReadHubMessageAndAcknowledge() { var req = new HttpRequestMessage { @@ -65,33 +65,6 @@ private static string GetDeliveryAttemptId(string body) } return null; } - - // from https://stackoverflow.com/a/47046191 - private static void RecurseDeserialize(Dictionary result) - { - //Iterate throgh key/value pairs - foreach (var keyValuePair in result.ToArray()) - { - //Check to see if Newtonsoft thinks this is a JArray - var jarray = keyValuePair.Value as JArray; - - if (jarray != null) - { - //Convert JArray back to json and deserialize to a list of dictionaries - var dictionaries = JsonConvert.DeserializeObject>>(jarray.ToString()); - - //Set the result as the dictionary - result[keyValuePair.Key] = dictionaries; - - //Iterate throught the dictionaries - foreach (var dictionary in dictionaries) - { - //Recurse - RecurseDeserialize(dictionary); - } - } - } - } } } From 4611619dc22c838b9cdd020d0c6584fa635a7611 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Tue, 10 Oct 2023 15:37:15 -0700 Subject: [PATCH 06/19] refactoring --- src/server/API/API.csproj | 12 ++ .../Shrine/4_1}/ShrineExpressionDTO.cs | 47 +++++- .../Shrine/4_1}/ShrineOutputDTO.cs | 2 +- .../Integration/Shrine/4_1}/ShrineQueryDTO.cs | 5 +- .../Shrine/4_1}/ShrineStatusDTO.cs | 11 +- .../Shrine}/ShrineDeliveryAttemptDTO.cs | 7 +- .../Shrine}/ShrineQueryStatusDTO.cs | 6 +- .../Shrine}/ShrineResultProgressDTO.cs | 6 +- .../Shrine}/ShrineUpdateQueryAtQepDTO.cs | 5 +- .../Shrine}/ShrineVersionInfoDTO.cs | 5 +- .../4_1/ShrineQueryDefinitionConverter.cs | 147 ++++++++++++++++++ .../Integration/Shrine/ShrineMessageBroker.cs | 33 +++- .../Jobs/BackgroundShrinePollingService.cs | 21 ++- .../API/Options/StartupExtensions.Services.cs | 10 +- .../Shrine/4_1/ShrineExpression.cs | 11 +- .../Integration/Shrine/4_1/ShrineStatus.cs | 5 +- .../Shrine/IShrineMessageBroker.cs | 16 -- .../Shrine/ShrineDeliveryAttempt.cs | 2 + .../Shrine/ShrineQueryDefinitionConverter.cs | 76 --------- src/server/Model/Model.csproj | 4 - src/server/Services/Services.csproj | 4 - 21 files changed, 294 insertions(+), 141 deletions(-) rename src/server/{Model/Integration/Shrine/4_1/DTO => API/DTO/Integration/Shrine/4_1}/ShrineExpressionDTO.cs (74%) rename src/server/{Model/Integration/Shrine/4_1/DTO => API/DTO/Integration/Shrine/4_1}/ShrineOutputDTO.cs (95%) rename src/server/{Model/Integration/Shrine/4_1/DTO => API/DTO/Integration/Shrine/4_1}/ShrineQueryDTO.cs (96%) rename src/server/{Model/Integration/Shrine/4_1/DTO => API/DTO/Integration/Shrine/4_1}/ShrineStatusDTO.cs (69%) rename src/server/{Model/Integration/Shrine/DTO => API/DTO/Integration/Shrine}/ShrineDeliveryAttemptDTO.cs (93%) rename src/server/{Model/Integration/Shrine/DTO => API/DTO/Integration/Shrine}/ShrineQueryStatusDTO.cs (89%) rename src/server/{Model/Integration/Shrine/DTO => API/DTO/Integration/Shrine}/ShrineResultProgressDTO.cs (96%) rename src/server/{Model/Integration/Shrine/DTO => API/DTO/Integration/Shrine}/ShrineUpdateQueryAtQepDTO.cs (94%) rename src/server/{Model/Integration/Shrine/DTO => API/DTO/Integration/Shrine}/ShrineVersionInfoDTO.cs (93%) create mode 100644 src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs rename src/server/{Services => API}/Integration/Shrine/ShrineMessageBroker.cs (70%) delete mode 100644 src/server/Model/Integration/Shrine/IShrineMessageBroker.cs delete mode 100644 src/server/Model/Integration/Shrine/ShrineQueryDefinitionConverter.cs diff --git a/src/server/API/API.csproj b/src/server/API/API.csproj index aa0111a2b..b68460d17 100644 --- a/src/server/API/API.csproj +++ b/src/server/API/API.csproj @@ -25,6 +25,12 @@ + + + + + + @@ -55,5 +61,11 @@ + + + + + + diff --git a/src/server/Model/Integration/Shrine/4_1/DTO/ShrineExpressionDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs similarity index 74% rename from src/server/Model/Integration/Shrine/4_1/DTO/ShrineExpressionDTO.cs rename to src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs index 4ff2d97d4..f84f550a0 100644 --- a/src/server/Model/Integration/Shrine/4_1/DTO/ShrineExpressionDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs @@ -8,12 +8,14 @@ using Model.Integration.Shrine4_1; using System.Linq; -namespace Model.Integration.Shrine4_1.DTO +namespace API.DTO.Integration.Shrine4_1 { public class ShrineQueryDefinitionDTO { public ShrineConjunctionDTO Expression { get; set; } + public ShrineQueryDefinitionDTO() { } + public ShrineQueryDefinitionDTO(ShrineQueryDefinition definition) { Expression = new ShrineConjunctionDTO(definition.Expression); @@ -25,6 +27,8 @@ public abstract class ShrineGroupDTO public int NMustBeTrue { get; set; } public ShrineConjunctionCompareDTO Compare { get; set; } + public ShrineGroupDTO() { } + public ShrineGroupDTO(ShrineGroup expr) { NMustBeTrue = expr.NMustBeTrue; @@ -38,6 +42,8 @@ public class ShrineConjunctionDTO public ShrineConjunctionCompareDTO Compare { get; set; } public IEnumerable Possibilities { get; set; } + public ShrineConjunctionDTO() { } + public ShrineConjunctionDTO(ShrineConjunction conjunction) { Possibilities = conjunction.Possibilities.Select(p => new ShrineConceptGroupDTO(p)); @@ -49,14 +55,32 @@ public class ShrineConceptGroupDTO : ShrineGroupDTO public long StartDate { get; set; } public long EndDate { get; set; } public int OccursAtLeast { get; set; } = 1; - public ShrineConjunctionDTO Concepts { get; set; } + public ShrineConceptConjunctionDTO Concepts { get; set; } + + public ShrineConceptGroupDTO() { } public ShrineConceptGroupDTO(ShrineConceptGroup group) : base(group) { StartDate = ((DateTimeOffset)group.StartDate).ToUnixTimeMilliseconds(); EndDate = ((DateTimeOffset)group.EndDate).ToUnixTimeMilliseconds(); - OccursAtLeast = group.OccursAtLeast; - Concepts = new ShrineConjunctionDTO(group.Concepts); + OccursAtLeast = group.OccursAtLeast.HasValue ? (int)group.OccursAtLeast : 1; + Concepts = new ShrineConceptConjunctionDTO(group.Concepts); + } + } + + public class ShrineConceptConjunctionDTO + { + public int NMustBeTrue { get; set; } + public ShrineConjunctionCompareDTO Compare { get; set; } + public IEnumerable Possibilities { get; set; } + + public ShrineConceptConjunctionDTO() { } + + public ShrineConceptConjunctionDTO(ShrineConceptConjunction conjunction) + { + NMustBeTrue = conjunction.NMustBeTrue; + Compare = new ShrineConjunctionCompareDTO(conjunction.Compare); + Possibilities = conjunction.Possibilities.Select(p => new ShrineConceptDTO(p)); } } @@ -67,6 +91,8 @@ public class ShrineConceptDTO public string Constraint { get; set; } public static readonly string EncodedClass = "Concept"; + public ShrineConceptDTO() { } + public ShrineConceptDTO(ShrineConcept concept) { DisplayName = concept.DisplayName; @@ -79,6 +105,8 @@ public class ShrineConjunctionCompareDTO { public string EncodedClass { get; set; } + public ShrineConjunctionCompareDTO() { } + public ShrineConjunctionCompareDTO(ShrineConjunctionCompare compare) { EncodedClass = compare.EncodedClass.ToString(); @@ -127,6 +155,17 @@ public static ShrineConjunction ToConjunction(this ShrineConjunctionDTO dto) }; } + public static ShrineConceptConjunction ToConjunction(this ShrineConceptConjunctionDTO dto) + { + return new ShrineConceptConjunction + { + NMustBeTrue = dto.NMustBeTrue, + Compare = dto.Compare.ToCompare(), + Possibilities = dto.Possibilities.Select(p => p.ToConcept()) + }; + } + + public static ShrineQueryDefinition ToDefinition(this ShrineQueryDefinitionDTO dto) { return new ShrineQueryDefinition diff --git a/src/server/Model/Integration/Shrine/4_1/DTO/ShrineOutputDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs similarity index 95% rename from src/server/Model/Integration/Shrine/4_1/DTO/ShrineOutputDTO.cs rename to src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs index 8236e60b1..0a4485c63 100644 --- a/src/server/Model/Integration/Shrine/4_1/DTO/ShrineOutputDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs @@ -6,7 +6,7 @@ using System; using Model.Integration.Shrine4_1; -namespace Model.Integration.Shrine4_1.DTO +namespace API.DTO.Integration.Shrine4_1 { public class ShrineOutputDTO { diff --git a/src/server/Model/Integration/Shrine/4_1/DTO/ShrineQueryDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs similarity index 96% rename from src/server/Model/Integration/Shrine/4_1/DTO/ShrineQueryDTO.cs rename to src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs index 318dec6a8..700694054 100644 --- a/src/server/Model/Integration/Shrine/4_1/DTO/ShrineQueryDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs @@ -4,9 +4,10 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; -using Model.Integration.Shrine.DTO; +using API.DTO.Integration.Shrine; +using Model.Integration.Shrine4_1; -namespace Model.Integration.Shrine4_1.DTO +namespace API.DTO.Integration.Shrine4_1 { public class ShrineQueryDTO { diff --git a/src/server/Model/Integration/Shrine/4_1/DTO/ShrineStatusDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs similarity index 69% rename from src/server/Model/Integration/Shrine/4_1/DTO/ShrineStatusDTO.cs rename to src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs index 46095a0de..efb453ac8 100644 --- a/src/server/Model/Integration/Shrine/4_1/DTO/ShrineStatusDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs @@ -4,16 +4,17 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using Model.Integration.Shrine4_1; -namespace Model.Integration.Shrine4_1.DTO +namespace API.DTO.Integration.Shrine4_1 { public class ShrineStatusDTO { - public string Status { get; set; } + public string EncodedClass { get; set; } public ShrineStatusDTO(ShrineStatus status) { - Status = status.Status.ToString(); + EncodedClass = status.EncodedClass.ToString(); } } @@ -21,10 +22,10 @@ public static class ShrineStatusExtensions { public static ShrineStatus ToStatus(this ShrineStatusDTO dto) { - _ = Enum.TryParse(dto.Status, out ShrineStatusType status); + _ = Enum.TryParse(dto.EncodedClass, out ShrineStatusType status); return new ShrineStatus { - Status = status + EncodedClass = status }; } } diff --git a/src/server/Model/Integration/Shrine/DTO/ShrineDeliveryAttemptDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs similarity index 93% rename from src/server/Model/Integration/Shrine/DTO/ShrineDeliveryAttemptDTO.cs rename to src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs index 5ed266a56..97ec6b80f 100644 --- a/src/server/Model/Integration/Shrine/DTO/ShrineDeliveryAttemptDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs @@ -4,8 +4,9 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using Model.Integration.Shrine; -namespace Model.Integration.Shrine.DTO +namespace API.DTO.Integration.Shrine { public class ShrineDeliveryAttemptDTO { @@ -13,6 +14,8 @@ public class ShrineDeliveryAttemptDTO public long MillisecondsToComplete { get; set; } public int RemainingAttempts { get; set; } public string Contents { get; set; } + + public ShrineDeliveryAttemptDTO() { } } public class ShrineInnerDeliveryAttemptDTO @@ -25,6 +28,8 @@ public class ShrineDeliveryContentsDTO public string Contents { get; set; } public string ContentsType { get; set; } + public ShrineDeliveryContentsDTO() { } + public ShrineDeliveryContentsDTO(ShrineDeliveryContents contents) { Contents = contents.Contents; diff --git a/src/server/Model/Integration/Shrine/DTO/ShrineQueryStatusDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineQueryStatusDTO.cs similarity index 89% rename from src/server/Model/Integration/Shrine/DTO/ShrineQueryStatusDTO.cs rename to src/server/API/DTO/Integration/Shrine/ShrineQueryStatusDTO.cs index 80907e941..c93577761 100644 --- a/src/server/Model/Integration/Shrine/DTO/ShrineQueryStatusDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/ShrineQueryStatusDTO.cs @@ -4,12 +4,16 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; -namespace Model.Integration.Shrine.DTO +using Model.Integration.Shrine; + +namespace API.DTO.Integration.Shrine { public class ShrineQueryStatusDTO { public string EncodedClass { get; set; } + public ShrineQueryStatusDTO() { } + public ShrineQueryStatusDTO(ShrineQueryStatus status) { EncodedClass = status.EncodedClass.ToString(); diff --git a/src/server/Model/Integration/Shrine/DTO/ShrineResultProgressDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineResultProgressDTO.cs similarity index 96% rename from src/server/Model/Integration/Shrine/DTO/ShrineResultProgressDTO.cs rename to src/server/API/DTO/Integration/Shrine/ShrineResultProgressDTO.cs index f9dad0285..409408972 100644 --- a/src/server/Model/Integration/Shrine/DTO/ShrineResultProgressDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/ShrineResultProgressDTO.cs @@ -4,7 +4,9 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; -namespace Model.Integration.Shrine.DTO +using Model.Integration.Shrine; + +namespace API.DTO.Integration.Shrine { public class ShrineResultProgressDTO { @@ -20,6 +22,8 @@ public class ShrineResultProgressDTO public int Count { get; set; } = -1; public ShrineResultObfuscatingParametersDTO ObfuscatingParameters { get; set; } + public ShrineResultProgressDTO() { } + public ShrineResultProgressDTO(ShrineResultProgress progress) { Id = progress.Id; diff --git a/src/server/Model/Integration/Shrine/DTO/ShrineUpdateQueryAtQepDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineUpdateQueryAtQepDTO.cs similarity index 94% rename from src/server/Model/Integration/Shrine/DTO/ShrineUpdateQueryAtQepDTO.cs rename to src/server/API/DTO/Integration/Shrine/ShrineUpdateQueryAtQepDTO.cs index 9804ad7fe..917cde49f 100644 --- a/src/server/Model/Integration/Shrine/DTO/ShrineUpdateQueryAtQepDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/ShrineUpdateQueryAtQepDTO.cs @@ -6,8 +6,9 @@ using System; using System.Linq; using System.Collections.Generic; +using Model.Integration.Shrine; -namespace Model.Integration.Shrine.DTO +namespace API.DTO.Integration.Shrine { public class ShrineUpdateQueryAtQepDTO { @@ -17,6 +18,8 @@ public class ShrineUpdateQueryAtQepDTO public string EncodedClass { get; set; } public IEnumerable ResultProgresses { get; set; } + public ShrineUpdateQueryAtQepDTO() { } + public ShrineUpdateQueryAtQepDTO(ShrineUpdateQueryAtQep update) { QueryId = update.QueryId; diff --git a/src/server/Model/Integration/Shrine/DTO/ShrineVersionInfoDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineVersionInfoDTO.cs similarity index 93% rename from src/server/Model/Integration/Shrine/DTO/ShrineVersionInfoDTO.cs rename to src/server/API/DTO/Integration/Shrine/ShrineVersionInfoDTO.cs index c138b96d7..9b326569f 100644 --- a/src/server/Model/Integration/Shrine/DTO/ShrineVersionInfoDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/ShrineVersionInfoDTO.cs @@ -4,8 +4,9 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using Model.Integration.Shrine; -namespace Model.Integration.Shrine.DTO +namespace API.DTO.Integration.Shrine { public class ShrineVersionInfoDTO { @@ -15,6 +16,8 @@ public class ShrineVersionInfoDTO public long CreateDate { get; set; } public long ChangeDate { get; set; } + public ShrineVersionInfoDTO() { } + public ShrineVersionInfoDTO(ShrineVersionInfo ver) { ProtocolVersion = ver.ProtocolVersion; diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs new file mode 100644 index 000000000..263efe691 --- /dev/null +++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs @@ -0,0 +1,147 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using System.Collections.Generic; +using System.Linq; +using API.DTO.Cohort; +using API.DTO.Compiler; +using Model.Compiler; +using Model.Integration.Shrine; +using Model.Integration.Shrine4_1; + +namespace API.Integration.Shrine4_1 +{ + public class ShrineQueryDefinitionConverter + { + readonly string UniversalIdPrefix = $"urn:leaf:concept:shrine:"; + + public IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery) + { + var panels = shrineQuery.QueryDefinition.Expression.Possibilities.Select((conceptGroup, i) => + { + return new PanelDTO + { + IncludePanel = conceptGroup.NMustBeTrue > 0, + Index = i, + Domain = PanelDomain.Panel, + DateFilter = conceptGroup.StartDate.HasValue ? + new DateBoundary + { + Start = new DateFilter { Date = conceptGroup.StartDate.Value }, + End = new DateFilter { Date = conceptGroup.EndDate.Value } + } + : null, + SubPanels = new List + { + new SubPanelDTO + { + IncludeSubPanel = true, + Index = 0, + MinimumCount = conceptGroup.NMustBeTrue, + PanelIndex = i, + PanelItems = conceptGroup.Concepts.Possibilities.Select((c,j) => + { + return new PanelItemDTO + { + Index = j, + SubPanelIndex = 0, + PanelIndex = i, + Resource = new ResourceRef + { + UiDisplayName = c.DisplayName, + UniversalId = UniversalIdPrefix + c.TermPath + } + }; + }) + } + } + }; + }); + + return new PatientCountQueryDTO + { + QueryId = Guid.NewGuid().ToString(), + Panels = panels, + PanelFilters = Array.Empty() + }; + } + + public ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery) + { + var panels = leafQuery.All(); + + return new ShrineQuery + { + Id = GenerateRandomLongId(), + VersionInfo = new ShrineVersionInfo + { + ProtocolVersion = 2, + ShrineVersion = "4.1.0-SNAPSHOT", + ItemVersion = 2, + CreateDate = DateTime.Now, + ChangeDate = DateTime.Now + }, + Status = new ShrineStatus + { + EncodedClass = ShrineStatusType.SentToHub + }, + QueryDefinition = new ShrineQueryDefinition + { + Expression = new ShrineConjunction + { + NMustBeTrue = panels.Count(), + Compare = new ShrineConjunctionCompare + { + EncodedClass = ShrineConjunctionComparison.AtLeast + }, + Possibilities = panels.Select(p => + { + var subpanel = p.SubPanels.First(); + + return new ShrineConceptGroup + { + Concepts = new ShrineConceptConjunction + { + NMustBeTrue = p.IncludePanel ? 1 : 0, + Compare = new ShrineConjunctionCompare + { + EncodedClass = p.IncludePanel ? ShrineConjunctionComparison.AtLeast : ShrineConjunctionComparison.AtMost, + }, + Possibilities = subpanel.PanelItems.Select(pi => + { + return new ShrineConcept + { + DisplayName = pi.Resource.UiDisplayName, + TermPath = pi.Resource.UniversalId.ToString().Replace(UniversalIdPrefix, ""), + Constraint = null + }; + }), + StartDate = p.DateFilter?.Start?.Date, + EndDate = p.DateFilter?.End?.Date, + OccursAtLeast = p.IncludePanel ? subpanel.MinimumCount : 0 + } + }; + }) + } + } + }; + } + + static long GenerateRandomLongId() + { + return LongRandom(100000000000000000, 999999999999999999, new Random()); + } + + static long LongRandom(long min, long max, Random rand) + { + long result = rand.Next((int)(min >> 32), (int)(max >> 32)); + result <<= 32; + result |= (long)rand.Next((int)min, (int)max); + return result; + } + } +} + diff --git a/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs similarity index 70% rename from src/server/Services/Integration/Shrine/ShrineMessageBroker.cs rename to src/server/API/Integration/Shrine/ShrineMessageBroker.cs index 68f48f5c1..09fdc3bcb 100644 --- a/src/server/Services/Integration/Shrine/ShrineMessageBroker.cs +++ b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs @@ -4,20 +4,19 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; -using System.Collections.Generic; -using System.Linq; using System.Net.Http; +using System.Text; using System.Threading.Tasks; +using API.DTO.Integration.Shrine; using Microsoft.Extensions.Options; using Model.Integration.Shrine; -using Model.Integration.Shrine.DTO; using Model.Options; using Newtonsoft.Json; using Newtonsoft.Json.Linq; -namespace Services.Integration.Shrine +namespace API.Integration.Shrine { - public class ShrineMessageBroker : IShrineMessageBroker + public class ShrineMessageBroker { readonly HttpClient client; readonly SHRINEOptions opts; @@ -38,10 +37,15 @@ public async Task ReadHubMessageAndAcknowledge() }; var resp = await client.SendAsync(req); - if (!resp.IsSuccessStatusCode) return null; + if (!resp.IsSuccessStatusCode) + { + req.Dispose(); + return null; + } var jsonMessage = await resp.Content.ReadAsStringAsync(); var message = JsonConvert.DeserializeObject(jsonMessage).ToDeliveryAttempt(); + req.Dispose(); var ack = new HttpRequestMessage { @@ -49,12 +53,29 @@ public async Task ReadHubMessageAndAcknowledge() Method = HttpMethod.Put }; _ = await client.SendAsync(ack); + ack.Dispose(); var contents = JsonConvert.DeserializeObject(message.Contents); return contents.ToContents(); } + public async Task SendMessageToHub(ShrineDeliveryContents contents) + { + var request = new HttpRequestMessage + { + RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/sendMessage/hub"), + Method = HttpMethod.Put, + Content = new StringContent( + JsonConvert.SerializeObject(new ShrineDeliveryContentsDTO(contents)), + Encoding.UTF8, + "application/x-www-form-urlencoded" + ) + }; + _ = await client.SendAsync(request); + request.Dispose(); + } + private static string GetDeliveryAttemptId(string body) { var raw = JObject.Parse(body); diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs index f6f62d8d8..47222296f 100644 --- a/src/server/API/Jobs/BackgroundShrinePollingService.cs +++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs @@ -7,11 +7,13 @@ using System.Threading; using System.Threading.Tasks; using API.DTO.Cohort; +using API.DTO.Integration.Shrine; +using API.Integration.Shrine; +using API.Integration.Shrine4_1; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using Model.Cohort; using Model.Integration.Shrine; -using Model.Integration.Shrine.DTO; using Newtonsoft.Json; namespace API.Jobs @@ -19,16 +21,16 @@ namespace API.Jobs public class BackgroundShrinePollingService : BackgroundService { readonly ILogger logger; - readonly IShrineMessageBroker broker; - readonly IShrineQueryResultCache queryResultCache; - readonly IShrineQueryDefinitionConverter converter; + readonly ShrineMessageBroker broker; readonly CohortCounter counter; + readonly IShrineQueryResultCache queryResultCache; + readonly ShrineQueryDefinitionConverter converter; readonly int ErrorPauseSeconds = 30; public BackgroundShrinePollingService( ILogger logger, - IShrineMessageBroker broker, - IShrineQueryDefinitionConverter converter, + ShrineQueryDefinitionConverter converter, + ShrineMessageBroker broker, CohortCounter counter) { this.logger = logger; @@ -113,13 +115,18 @@ async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run, Cancellat { var leafQuery = converter.ToLeafQuery(run.Query); var cohort = await counter.Count(leafQuery, stoppingToken); - var resp = new CohortCountDTO(cohort); + var count = new CohortCountDTO(cohort); if (!cohort.ValidationContext.PreflightPassed) { // Respond with error } // Respond with count + var response = new ShrineDeliveryContents + { + // TODO + }; + // _ = await broker.SendMessageToHub() } } } diff --git a/src/server/API/Options/StartupExtensions.Services.cs b/src/server/API/Options/StartupExtensions.Services.cs index c23821806..4c2bf3522 100644 --- a/src/server/API/Options/StartupExtensions.Services.cs +++ b/src/server/API/Options/StartupExtensions.Services.cs @@ -9,6 +9,7 @@ using API.Jwt; using API.Middleware.Federation; using API.Middleware.Logging; +using API.Integration.Shrine; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; @@ -31,7 +32,6 @@ using Model.Import; using Model.Notification; using Model.Obfuscation; -using Model.Integration.Shrine; using Services.Admin.Compiler; using Services.Admin.Network; using Services.Admin.Query; @@ -48,9 +48,7 @@ using Services.Import; using Services.Notification; using Services.Obfuscation; -using Services.Integration.Shrine; using System.Net.Http; -using System; namespace API.Options { @@ -95,7 +93,7 @@ public static IServiceCollection RegisterLeafServices( client.DefaultRequestHeaders.Add("Accept", @"application/json"); }); - services.AddHttpClient(client => + services.AddHttpClient(client => { client.DefaultRequestHeaders.Add("Accept", @"application/json"); }); @@ -107,7 +105,6 @@ public static IServiceCollection RegisterLeafServices( services.AddSingleton(); services.AddSingleton(); - services.AddSingleton(); services.AddTransient(); services.AddTransient(); services.AddTransient(); @@ -203,11 +200,12 @@ static IServiceCollection AddIntegrationServices(this IServiceCollection service if (integrationOpts.SHRINE.Enabled) { services.AddHostedService(); + services.AddTransient(); /* Use for testing only!! */ if (!environment.IsProduction()) { - services.AddHttpClient().ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler + services.AddHttpClient().ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler { ClientCertificateOptions = ClientCertificateOption.Manual, //ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator, diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs index 6414ec6ff..4ec530fde 100644 --- a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs +++ b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs @@ -30,14 +30,19 @@ public abstract class ShrineGroup : ShrineExpression public class ShrineConjunction : ShrineExpression { - public IEnumerable Possibilities { get; set; } = new List(); + public IEnumerable Possibilities { get; set; } = new List(); } - public class ShrineConceptGroup : ShrineGroup + public class ShrineConceptConjunction : ShrineExpression { - + public IEnumerable Possibilities { get; set; } = new List(); } + public class ShrineConceptGroup : ShrineGroup + { + public new ShrineConceptConjunction Concepts { get; set; } + } + public class ShrineConcept : ShrineExpression { public string DisplayName { get; set; } diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs b/src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs index f5d1327da..1415b2b1c 100644 --- a/src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs +++ b/src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs @@ -8,12 +8,13 @@ namespace Model.Integration.Shrine4_1 { public class ShrineStatus { - public ShrineStatusType Status { get; set; } + public ShrineStatusType EncodedClass { get; set; } } public enum ShrineStatusType { - ReadyForAdapters + ReadyForAdapters, + SentToHub } } diff --git a/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs b/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs deleted file mode 100644 index c8c818a02..000000000 --- a/src/server/Model/Integration/Shrine/IShrineMessageBroker.cs +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright (c) 2023, UW Medicine Research IT, University of Washington -// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. -using System; -using System.Threading.Tasks; - -namespace Model.Integration.Shrine -{ - public interface IShrineMessageBroker - { - public Task ReadHubMessageAndAcknowledge(); - } -} - diff --git a/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs b/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs index 4d592f0d8..82bdf1013 100644 --- a/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs +++ b/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs @@ -23,6 +23,7 @@ public class ShrineInnerDeliveryAttempt public class ShrineDeliveryContents { public string Contents { get; set; } + public long ContentsSubject { get; set; } public ShrineDeliveryContentsType ContentsType { get; set; } } @@ -31,6 +32,7 @@ public enum ShrineDeliveryContentsType Unknown, UpdateQueryAtQep, RunQueryForResult, + RunQueryAtHub, Result } } diff --git a/src/server/Model/Integration/Shrine/ShrineQueryDefinitionConverter.cs b/src/server/Model/Integration/Shrine/ShrineQueryDefinitionConverter.cs deleted file mode 100644 index 53e7a9628..000000000 --- a/src/server/Model/Integration/Shrine/ShrineQueryDefinitionConverter.cs +++ /dev/null @@ -1,76 +0,0 @@ -// Copyright (c) 2023, UW Medicine Research IT, University of Washington -// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. -using System; -using System.Collections.Generic; -using System.Linq; -using Model.Compiler; -using Model.Integration.Shrine4_1; -using Model.Tagging; - -namespace Model.Integration.Shrine -{ - public interface IShrineQueryDefinitionConverter - { - IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery); - ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery); - } - - public class ShrineQueryDefinitionConverter : IShrineQueryDefinitionConverter - { - public IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery) - { - var panels = shrineQuery.QueryDefinition.Expression.Possibilities.Select((conceptGroup, i) => - { - return new Panel - { - IncludePanel = conceptGroup.NMustBeTrue > 0, - Index = i, - Domain = PanelDomain.Panel, - DateFilter = conceptGroup.StartDate.HasValue ? - new DateBoundary - { - Start = new DateFilter { Date = conceptGroup.StartDate.Value }, - End = new DateFilter { Date = conceptGroup.EndDate.Value } - } - : null, - SubPanels = new List - { - new SubPanel - { - IncludeSubPanel = true, - Index = 0, - MinimumCount = conceptGroup.NMustBeTrue, - PanelIndex = i, - PanelItems = conceptGroup.Concepts.Possibilities.Select((c,j) => - { - var concept = (ShrineConcept)c; - _ = Urn.TryParse(concept.TermPath, out var urn); - return new PanelItem - { - Index = j, - SubPanelIndex = 0, - PanelIndex = i, - Concept = new Concept - { - UiDisplayName = concept.DisplayName, - UiDisplayText = concept.DisplayName, - UniversalId = urn - } - }; - }) - } - } - }; - }); - } - - public ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery) - { - return null; - } - } -} - diff --git a/src/server/Model/Model.csproj b/src/server/Model/Model.csproj index 86f621856..82a30f7cd 100644 --- a/src/server/Model/Model.csproj +++ b/src/server/Model/Model.csproj @@ -21,8 +21,6 @@ - - @@ -35,8 +33,6 @@ - - diff --git a/src/server/Services/Services.csproj b/src/server/Services/Services.csproj index 01e0640e9..6d43c58f5 100644 --- a/src/server/Services/Services.csproj +++ b/src/server/Services/Services.csproj @@ -39,8 +39,6 @@ - - @@ -51,7 +49,5 @@ - - From cfe4500883a63c0e1a10ebb4bd83ad5d03619b87 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Wed, 11 Oct 2023 13:32:57 -0700 Subject: [PATCH 07/19] updated --- .../API/Authorization/ShrineUserContext.cs | 80 +++++++++++++++++++ .../Integration/Shrine/ShrineMessageBroker.cs | 10 ++- .../Jobs/BackgroundShrinePollingService.cs | 54 ++++++++----- .../API/Options/StartupExtensions.Services.cs | 10 ++- src/server/Model/Cohort/CohortCounter.cs | 4 +- src/server/Model/Compiler/PanelConverter.cs | 21 +++-- .../Model/Error/LeafAuthorizationException.cs | 26 ++++++ .../Shrine/IShrineQueryResultCache.cs | 12 +++ .../Integration/Shrine/ShrineQueryResult.cs | 1 + .../Shrine/ShrineRunQueryForResult.cs | 1 + 10 files changed, 184 insertions(+), 35 deletions(-) create mode 100644 src/server/API/Authorization/ShrineUserContext.cs create mode 100644 src/server/Model/Error/LeafAuthorizationException.cs diff --git a/src/server/API/Authorization/ShrineUserContext.cs b/src/server/API/Authorization/ShrineUserContext.cs new file mode 100644 index 000000000..5aba9c486 --- /dev/null +++ b/src/server/API/Authorization/ShrineUserContext.cs @@ -0,0 +1,80 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Authorization; +using Model.Options; +using Model.Integration.Shrine; + +namespace API.Authorization +{ + public class ShrineUserContext : IUserContext + { + readonly ShrineResearcher researcher; + + public ShrineUserContext(ShrineResearcher researcher) + { + this.researcher = researcher; + } + + public string[] Groups { get; } = Array.Empty(); + + public string[] Roles { get; } = new string[] { Role.Fed }; + + public bool IsInRole(string role) => role == Role.Fed; + + public bool IsAdmin => false; + + public bool IsQuarantined => false; + + public string Identity => researcher.UserName; + + + string iss; + public string Issuer + { + get + { + iss ??= researcher.UserDomainName; + return iss; + } + } + + string uuid; + public string UUID + { + get + { + if (uuid == null) + { + var issu = Issuer; + var id = Identity; + if (id != null && issu != null) + { + uuid = $"{id}@{issu}"; + } + } + return uuid; + } + } + + public bool IsInstitutional => false; + + readonly Guid idNonce = Guid.NewGuid(); + public Guid IdNonce => idNonce; + + public SessionType SessionType => SessionType.Research; + + Guid? sessionNonce = Guid.NewGuid(); + public Guid? SessionNonce => sessionNonce; + + public bool Identified => false; + + public AuthenticationMechanism AuthenticationMechanism => AuthenticationMechanism.Unsecured; + + public override string ToString() => UUID; + } +} + diff --git a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs index 09fdc3bcb..f0d4a9765 100644 --- a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs +++ b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs @@ -16,8 +16,14 @@ namespace API.Integration.Shrine { - public class ShrineMessageBroker - { + public interface IShrineMessageBroker + { + Task ReadHubMessageAndAcknowledge(); + Task SendMessageToHub(ShrineDeliveryContents contents); + } + + public class ShrineMessageBroker : IShrineMessageBroker + { readonly HttpClient client; readonly SHRINEOptions opts; readonly int TimeOutSeconds = 50; diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs index 47222296f..4008c466d 100644 --- a/src/server/API/Jobs/BackgroundShrinePollingService.cs +++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs @@ -10,34 +10,42 @@ using API.DTO.Integration.Shrine; using API.Integration.Shrine; using API.Integration.Shrine4_1; +using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; +using Model.Authorization; using Model.Cohort; using Model.Integration.Shrine; using Newtonsoft.Json; namespace API.Jobs { - public class BackgroundShrinePollingService : BackgroundService + public class BackgroundShrinePollingService : BackgroundService { readonly ILogger logger; - readonly ShrineMessageBroker broker; - readonly CohortCounter counter; + readonly IShrineMessageBroker broker; readonly IShrineQueryResultCache queryResultCache; + readonly IServiceScopeFactory serviceScopeFactory; + readonly CohortCounter counter; readonly ShrineQueryDefinitionConverter converter; readonly int ErrorPauseSeconds = 30; public BackgroundShrinePollingService( ILogger logger, - ShrineQueryDefinitionConverter converter, - ShrineMessageBroker broker, - CohortCounter counter) - { + IShrineMessageBroker broker, + IShrineQueryResultCache queryResultCache, + IServiceScopeFactory serviceScopeFactory, + ShrineQueryDefinitionConverter converter + //CohortCounter counter + ) + { this.logger = logger; this.broker = broker; + this.queryResultCache = queryResultCache; + this.serviceScopeFactory = serviceScopeFactory; this.converter = converter; - this.counter = counter; - } + //this.counter = counter; + } protected override async Task ExecuteAsync(CancellationToken stoppingToken) { @@ -97,7 +105,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) logger.LogInformation("BackgroundShrinePollingService is stopped"); } - + void HandleUpdateQueryAtQepMessage(ShrineUpdateQueryAtQep update) { if (update.ResultProgresses != null) @@ -113,19 +121,25 @@ void HandleResultMessage(ShrineResultProgress progress) async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run, CancellationToken stoppingToken) { - var leafQuery = converter.ToLeafQuery(run.Query); - var cohort = await counter.Count(leafQuery, stoppingToken); - var count = new CohortCountDTO(cohort); - - if (!cohort.ValidationContext.PreflightPassed) + using (var scope = serviceScopeFactory.CreateAsyncScope()) { - // Respond with error + + queryResultCache.Put(run.Query.Id, run.Researcher); + + var leafQuery = converter.ToLeafQuery(run.Query); + //var cohort = await counter.Count(leafQuery, stoppingToken); + //var count = new CohortCountDTO(cohort); } + + //if (!cohort.ValidationContext.PreflightPassed) + //{ + // Respond with error + //} // Respond with count - var response = new ShrineDeliveryContents - { - // TODO - }; + //var response = new ShrineDeliveryContents + //{ + // TODO + //}; // _ = await broker.SendMessageToHub() } } diff --git a/src/server/API/Options/StartupExtensions.Services.cs b/src/server/API/Options/StartupExtensions.Services.cs index 4c2bf3522..e791208ea 100644 --- a/src/server/API/Options/StartupExtensions.Services.cs +++ b/src/server/API/Options/StartupExtensions.Services.cs @@ -10,6 +10,7 @@ using API.Middleware.Federation; using API.Middleware.Logging; using API.Integration.Shrine; +using API.Integration.Shrine4_1; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; @@ -49,6 +50,7 @@ using Services.Notification; using Services.Obfuscation; using System.Net.Http; +using Model.Integration.Shrine; namespace API.Options { @@ -93,7 +95,7 @@ public static IServiceCollection RegisterLeafServices( client.DefaultRequestHeaders.Add("Accept", @"application/json"); }); - services.AddHttpClient(client => + services.AddHttpClient(client => { client.DefaultRequestHeaders.Add("Accept", @"application/json"); }); @@ -200,12 +202,14 @@ static IServiceCollection AddIntegrationServices(this IServiceCollection service if (integrationOpts.SHRINE.Enabled) { services.AddHostedService(); - services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddSingleton(); /* Use for testing only!! */ if (!environment.IsProduction()) { - services.AddHttpClient().ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler + services.AddHttpClient().ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler { ClientCertificateOptions = ClientCertificateOption.Manual, //ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator, diff --git a/src/server/Model/Cohort/CohortCounter.cs b/src/server/Model/Cohort/CohortCounter.cs index 9a9edf73a..e9cacf1a6 100644 --- a/src/server/Model/Cohort/CohortCounter.cs +++ b/src/server/Model/Cohort/CohortCounter.cs @@ -54,8 +54,8 @@ public CohortCounter( IPatientCohortService counter, ICohortCacheService cohortCache, IObfuscationService obfuscator, - IUserContext user, - ILogger log) + ILogger log, + IUserContext user = null) { this.runtime = opts.Value.Runtime; this.deidentOpts = deidentOpts.Value; diff --git a/src/server/Model/Compiler/PanelConverter.cs b/src/server/Model/Compiler/PanelConverter.cs index 97e77ed02..1192c3ac2 100644 --- a/src/server/Model/Compiler/PanelConverter.cs +++ b/src/server/Model/Compiler/PanelConverter.cs @@ -120,7 +120,7 @@ public async Task GetPanelsAsync(IQueryDefinition query) /// The panels. /// PanelDTOs. /// Import panel items referenced in panels. - public IEnumerable CrosswalkImportIds(IEnumerable panels, IEnumerable importRefs) + public static IEnumerable CrosswalkImportIds(IEnumerable panels, IEnumerable importRefs) { var mapped = panels.Select(p => p).ToList(); @@ -152,7 +152,12 @@ public void LocalizeDefinition(IQueryDefinition definition, PatientCountQuery lo var map = new Dictionary(localQuery.Panels .GetConcepts() - .Select(c => new KeyValuePair(key: c.UniversalId.ToString(), value: new ResourceRef { Id = c.Id, UniversalId = c.UniversalId.ToString() }))); + .Select(c => + new KeyValuePair( + key: c.UniversalId.ToString(), + value: new ResourceRef { Id = c.Id, UniversalId = c.UniversalId.ToString() }) + ) + ); var items = definition.Panels .SelectMany(p => p.SubPanels) @@ -217,7 +222,7 @@ IEnumerable GetPanels(IEnumerable panels, IEnumerable return GetPanels(panels, feder); } - IEnumerable GetPanels(IEnumerable panels, LocalConceptMap concepts) + static IEnumerable GetPanels(IEnumerable panels, LocalConceptMap concepts) { var converted = new List(); @@ -230,7 +235,7 @@ IEnumerable GetPanels(IEnumerable panels, LocalConceptMap conc return converted; } - ICollection GetSubPanels(IEnumerable dtos, LocalConceptMap concepts) + static ICollection GetSubPanels(IEnumerable dtos, LocalConceptMap concepts) { var subs = new List(); @@ -244,7 +249,7 @@ ICollection GetSubPanels(IEnumerable dtos, LocalConceptM return subs; } - IEnumerable GetPanelItems(IEnumerable dtos, LocalConceptMap concepts) + static IEnumerable GetPanelItems(IEnumerable dtos, LocalConceptMap concepts) { var items = new List(); @@ -257,7 +262,7 @@ IEnumerable GetPanelItems(IEnumerable dtos, LocalConce return items; } - IEnumerable GetPanels(IEnumerable panels, FederatedConceptMap concepts) + static IEnumerable GetPanels(IEnumerable panels, FederatedConceptMap concepts) { var converted = new List(); @@ -270,7 +275,7 @@ IEnumerable GetPanels(IEnumerable panels, FederatedConceptMap return converted; } - ICollection GetSubPanels(IEnumerable dtos, FederatedConceptMap concepts) + static ICollection GetSubPanels(IEnumerable dtos, FederatedConceptMap concepts) { var subs = new List(); @@ -284,7 +289,7 @@ ICollection GetSubPanels(IEnumerable dtos, FederatedConc return subs; } - IEnumerable GetPanelItems(IEnumerable dtos, FederatedConceptMap concepts) + static IEnumerable GetPanelItems(IEnumerable dtos, FederatedConceptMap concepts) { var items = new List(); diff --git a/src/server/Model/Error/LeafAuthorizationException.cs b/src/server/Model/Error/LeafAuthorizationException.cs new file mode 100644 index 000000000..55b2276a4 --- /dev/null +++ b/src/server/Model/Error/LeafAuthorizationException.cs @@ -0,0 +1,26 @@ +// Copyright (c) 2021, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; + +namespace Model.Error +{ + public class LeafAuthorizationException : ApplicationException + { + public LeafErrorCode ErrorCode { get; private set; } = LeafErrorCode.Forbidden; + + public LeafAuthorizationException() + { + } + + public LeafAuthorizationException(string message) : base(message) + { + } + + public LeafAuthorizationException(string message, Exception innerException) : base(message, innerException) + { + } + } +} \ No newline at end of file diff --git a/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs index 80b2f22b0..516856130 100644 --- a/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs +++ b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs @@ -18,6 +18,7 @@ public interface IShrineQueryResultCache : IEnumerable ShrineQueryResult PopOrDefault(long id); void Put(ShrineQueryResult result); void Put(ShrineResultProgress nodeResult); + void Put(long id, ShrineResearcher user); void Put(IEnumerable nodeResults); void DeleteOlderThan(DateTime earliest); } @@ -58,6 +59,17 @@ public void Put(ShrineQueryResult result) sync.ExitWriteLock(); } + public void Put(long id, ShrineResearcher user) + { + sync.EnterWriteLock(); + if (!store.ContainsKey(id)) + { + store[id] = new ShrineQueryResult(id); + } + store[id].User = user; + sync.ExitWriteLock(); + } + public void Put(ShrineResultProgress nodeResult) { sync.EnterWriteLock(); diff --git a/src/server/Model/Integration/Shrine/ShrineQueryResult.cs b/src/server/Model/Integration/Shrine/ShrineQueryResult.cs index 74dce2374..b34d79c3e 100644 --- a/src/server/Model/Integration/Shrine/ShrineQueryResult.cs +++ b/src/server/Model/Integration/Shrine/ShrineQueryResult.cs @@ -12,6 +12,7 @@ public class ShrineQueryResult { public long Id { get; set; } public DateTime Updated = DateTime.Now; + public ShrineResearcher User { get; set; } public Dictionary Results = new(); public ShrineQueryResult(long id) diff --git a/src/server/Model/Integration/Shrine/ShrineRunQueryForResult.cs b/src/server/Model/Integration/Shrine/ShrineRunQueryForResult.cs index 952d8f557..4921c646f 100644 --- a/src/server/Model/Integration/Shrine/ShrineRunQueryForResult.cs +++ b/src/server/Model/Integration/Shrine/ShrineRunQueryForResult.cs @@ -14,6 +14,7 @@ public class ShrineRunQueryForResult public ShrineNode Node { get; set; } public ShrineTopic Topic { get; set; } public ShrineResultProgress ResultProgress { get; set; } + public ShrineResearcher Researcher { get; set; } public int ProtocolVersion { get; set; } } } From 120dfee0742e59eb0de6a30a8aad3035e0cd9579 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Fri, 13 Oct 2023 12:47:23 -0700 Subject: [PATCH 08/19] implemented IUserContextProvider, wiring things up --- .../API/Controllers/ExportController.cs | 2 - .../API/Controllers/IntegrationController.cs | 98 +++++++++++++++++ src/server/API/Controllers/QueryController.cs | 4 +- src/server/API/Controllers/UserController.cs | 10 +- .../4_1/ShrineQueryDefinitionConverter.cs | 2 +- .../Integration/Shrine/ShrineMessageBroker.cs | 10 +- .../Jobs/BackgroundShrinePollingService.cs | 77 +++++++++----- .../RejectInvalidFederatedUserMiddleware.cs | 4 +- .../API/Options/StartupExtensions.Services.cs | 2 + .../Authorization/UserContextProvider.cs | 38 +++++++ src/server/Model/Cohort/CohortCounter.cs | 4 +- .../Model/Cohort/DemographicProvider.cs | 4 +- src/server/Model/Compiler/PanelConverter.cs | 4 +- .../Compiler/SqlBuilder/PanelSqlCompiler.cs | 4 +- .../Shrine/IShrineUserQueryCache.cs | 100 ++++++++++++++++++ .../Model/Notification/NotificationManager.cs | 4 +- .../Model/Search/PreflightResourceChecker.cs | 4 +- src/server/Model/Search/QueryManager.cs | 5 +- .../Compiler/AdminConceptEventService.cs | 7 +- .../Admin/Compiler/AdminConceptService.cs | 7 +- .../Compiler/AdminConceptSqlSetService.cs | 4 +- .../Compiler/AdminDatasetCategoryService.cs | 9 +- .../Compiler/AdminDatasetQueryService.cs | 6 +- .../Compiler/AdminDemographicQueryService.cs | 10 +- .../Compiler/AdminGlobalPanelFilterService.cs | 4 +- .../Compiler/AdminSpecializationService.cs | 7 +- .../Network/AdminNetworkEndpointUpdater.cs | 4 +- .../Admin/Notification/ServerStateService.cs | 4 +- .../Services/Cohort/CachedCohortFetcher.cs | 4 +- src/server/Services/Cohort/DatasetExecutor.cs | 4 +- .../Services/Cohort/DemographicsExecutor.cs | 4 +- src/server/Services/Import/ImportService.cs | 4 +- .../ConceptDatasetCompilerContextProvider.cs | 4 +- .../Search/ConceptHintSearchService.cs | 4 +- .../Services/Search/ConceptTreeReader.cs | 4 +- .../Search/DatasetCompilerContextProvider.cs | 4 +- .../Services/Search/DatasetQueryFetcher.cs | 4 +- .../DemographicCompilerContextProvider.cs | 4 +- .../PanelDatasetCompilerContextProvider.cs | 4 +- .../Search/PreflightResourceReader.cs | 4 +- src/server/Services/Search/QueryService.cs | 4 +- 41 files changed, 362 insertions(+), 128 deletions(-) create mode 100644 src/server/API/Controllers/IntegrationController.cs create mode 100644 src/server/Model/Authorization/UserContextProvider.cs create mode 100644 src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs diff --git a/src/server/API/Controllers/ExportController.cs b/src/server/API/Controllers/ExportController.cs index 12780782a..2e355ebd2 100644 --- a/src/server/API/Controllers/ExportController.cs +++ b/src/server/API/Controllers/ExportController.cs @@ -12,9 +12,7 @@ using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using Model.Authorization; -using Model.Export; using Model.Options; -using Services.Export; namespace API.Controllers { diff --git a/src/server/API/Controllers/IntegrationController.cs b/src/server/API/Controllers/IntegrationController.cs new file mode 100644 index 000000000..6b7e9f69d --- /dev/null +++ b/src/server/API/Controllers/IntegrationController.cs @@ -0,0 +1,98 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using API.DTO.Cohort; +using API.Integration.Shrine; +using API.Integration.Shrine4_1; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Options; +using Model.Authorization; +using Model.Integration.Shrine; +using Model.Options; + +namespace API.Controllers +{ + [Authorize(Policy = TokenType.Access)] + [Authorize(Policy = Access.Institutional)] + [Route("api/integration")] + public class IntegrationController : Controller + { + readonly ILogger log; + readonly IntegrationOptions opts; + readonly IShrineUserQueryCache userQueryCache; + readonly IShrineQueryResultCache queryResultCache; + readonly IShrineMessageBroker messageBroker; + + public IntegrationController( + ILogger log, + IOptions opts, + IShrineUserQueryCache userQueryCache, + IShrineQueryResultCache queryResultCache, + IShrineMessageBroker messageBroker + ) + { + this.log = log; + this.opts = opts.Value; + this.userQueryCache = userQueryCache; + this.queryResultCache = queryResultCache; + this.messageBroker = messageBroker; + } + + [HttpPost("shrine/count")] + public ActionResult ShrineCount( + [FromBody] PatientCountQueryDTO patientCountQuery, + [FromServices] IUserContextProvider userContextProvider) + { + if (!opts.Enabled || !opts.SHRINE.Enabled) return BadRequest(); + + var queryId = ShrineQueryDefinitionConverter.GenerateRandomLongId(); + var user = userContextProvider.GetUserContext(); + + userQueryCache.Put(queryId, user, patientCountQuery); + //messageBroker. + + try + { + //var opts = new ExportOptionsDTO(exportOptions); + return Ok(null); + } + catch (Exception ex) + { + log.LogError("Failed to TODO. Error:{Error}", ex.Message); + return StatusCode(StatusCodes.Status500InternalServerError); + } + } + + [HttpGet("shrine/cohort/{queryId}/count")] + public ActionResult GetShrineCountResult( + long queryId, + [FromServices] IUserContextProvider userContextProvider + ) + { + if (!opts.Enabled || !opts.SHRINE.Enabled) return BadRequest(); + + try + { + var user = userContextProvider.GetUserContext(); + var results = queryResultCache.GetOrDefault(queryId); + + if (results == null) return NotFound(); + if (results.User.UserName != user.UUID) return NotFound(); + + return Ok(results); + } + catch (Exception ex) + { + log.LogError("Failed to TODO. Error:{Error}", ex.Message); + return StatusCode(StatusCodes.Status500InternalServerError); + } + } + } +} + diff --git a/src/server/API/Controllers/QueryController.cs b/src/server/API/Controllers/QueryController.cs index 969122b3b..511aec43f 100644 --- a/src/server/API/Controllers/QueryController.cs +++ b/src/server/API/Controllers/QueryController.cs @@ -30,11 +30,11 @@ public class QueryController : Controller readonly QueryManager manager; readonly IUserContext user; - public QueryController(QueryManager manager, ILogger logger, IUserContext userContext) + public QueryController(QueryManager manager, ILogger logger, IUserContextProvider userContextProvider) { log = logger; this.manager = manager; - user = userContext; + user = userContextProvider.GetUserContext(); } [Authorize(Policy = Access.Institutional)] diff --git a/src/server/API/Controllers/UserController.cs b/src/server/API/Controllers/UserController.cs index 3fed3c070..334a24e5c 100644 --- a/src/server/API/Controllers/UserController.cs +++ b/src/server/API/Controllers/UserController.cs @@ -25,9 +25,6 @@ public class UserController : Controller { readonly ILogger logger; readonly AuthenticationOptions authenticationOptions; - readonly LeafVersionOptions versionOptions; - readonly CohortOptions cohortOptions; - readonly ClientOptions clientOptions; readonly IUserJwtProvider jwtProvider; readonly IUserContext userContext; @@ -38,14 +35,11 @@ public UserController( IOptions cohortOptions, IOptions clientOptions, IUserJwtProvider userJwtProvider, - IUserContext userContext) + IUserContextProvider userContextProvider) { this.logger = logger; this.authenticationOptions = authenticationOptions.Value; - this.versionOptions = versionOptions.Value; - this.cohortOptions = cohortOptions.Value; - this.clientOptions = clientOptions.Value; - this.userContext = userContext; + this.userContext = userContextProvider.GetUserContext(); jwtProvider = userJwtProvider; } diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs index 263efe691..180f36eaf 100644 --- a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs +++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs @@ -130,7 +130,7 @@ public ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery) }; } - static long GenerateRandomLongId() + public static long GenerateRandomLongId() { return LongRandom(100000000000000000, 999999999999999999, new Random()); } diff --git a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs index f0d4a9765..e11cb8a6f 100644 --- a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs +++ b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs @@ -18,7 +18,7 @@ namespace API.Integration.Shrine { public interface IShrineMessageBroker { - Task ReadHubMessageAndAcknowledge(); + Task<(HttpResponseMessage, ShrineDeliveryContents)> ReadHubMessageAndAcknowledge(); Task SendMessageToHub(ShrineDeliveryContents contents); } @@ -34,7 +34,7 @@ public ShrineMessageBroker(HttpClient client, IOptions opts) this.opts = opts.Value.SHRINE; } - public async Task ReadHubMessageAndAcknowledge() + public async Task<(HttpResponseMessage, ShrineDeliveryContents)> ReadHubMessageAndAcknowledge() { var req = new HttpRequestMessage { @@ -43,10 +43,10 @@ public async Task ReadHubMessageAndAcknowledge() }; var resp = await client.SendAsync(req); - if (!resp.IsSuccessStatusCode) + if (!resp.IsSuccessStatusCode || resp.Content == null) { req.Dispose(); - return null; + return (resp, null); } var jsonMessage = await resp.Content.ReadAsStringAsync(); @@ -63,7 +63,7 @@ public async Task ReadHubMessageAndAcknowledge() var contents = JsonConvert.DeserializeObject(message.Contents); - return contents.ToContents(); + return (resp, contents.ToContents()); } public async Task SendMessageToHub(ShrineDeliveryContents contents) diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs index 4008c466d..10ce08dba 100644 --- a/src/server/API/Jobs/BackgroundShrinePollingService.cs +++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs @@ -6,8 +6,8 @@ using System; using System.Threading; using System.Threading.Tasks; -using API.DTO.Cohort; using API.DTO.Integration.Shrine; +using API.Authorization; using API.Integration.Shrine; using API.Integration.Shrine4_1; using Microsoft.Extensions.DependencyInjection; @@ -17,6 +17,8 @@ using Model.Cohort; using Model.Integration.Shrine; using Newtonsoft.Json; +using API.DTO.Cohort; +using Model.Compiler; namespace API.Jobs { @@ -25,6 +27,7 @@ public class BackgroundShrinePollingService : BackgroundService readonly ILogger logger; readonly IShrineMessageBroker broker; readonly IShrineQueryResultCache queryResultCache; + readonly IShrineUserQueryCache userQueryCache; readonly IServiceScopeFactory serviceScopeFactory; readonly CohortCounter counter; readonly ShrineQueryDefinitionConverter converter; @@ -34,17 +37,19 @@ public BackgroundShrinePollingService( ILogger logger, IShrineMessageBroker broker, IShrineQueryResultCache queryResultCache, + IShrineUserQueryCache userQueryCache, IServiceScopeFactory serviceScopeFactory, - ShrineQueryDefinitionConverter converter - //CohortCounter counter + ShrineQueryDefinitionConverter converter, + CohortCounter counter ) { this.logger = logger; this.broker = broker; this.queryResultCache = queryResultCache; + this.userQueryCache = userQueryCache; this.serviceScopeFactory = serviceScopeFactory; this.converter = converter; - //this.counter = counter; + this.counter = counter; } protected override async Task ExecuteAsync(CancellationToken stoppingToken) @@ -60,8 +65,15 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) { try { - var message = await broker.ReadHubMessageAndAcknowledge(); - if (message == null) continue; + var (response, message) = await broker.ReadHubMessageAndAcknowledge(); + if (message == null) + { + if (!response.IsSuccessStatusCode) + { + // Error, delay before next poll + await Task.Delay(TimeSpan.FromSeconds(ErrorPauseSeconds), stoppingToken); + } + } _ = Task.Run(async () => { @@ -97,10 +109,6 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) logger.LogError($"BackgroundShrinePollingService pausing {ErrorPauseSeconds} seconds."); await Task.Delay(TimeSpan.FromSeconds(ErrorPauseSeconds), stoppingToken); } - finally - { - // No need to delay next poll on Leaf end. SHRINE already long polls on other side - } } logger.LogInformation("BackgroundShrinePollingService is stopped"); @@ -121,26 +129,45 @@ void HandleResultMessage(ShrineResultProgress progress) async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run, CancellationToken stoppingToken) { + IUserContext user; + IPatientCountQueryDTO query; + var cached = userQueryCache.GetOrDefault(run.Query.Id); + + // If run by a Leaf user, grab from cache + if (cached != null) + { + user = cached.User; + query = cached.Query; + } + + // Else not from Leaf, so set user context and transform query defintion + else + { + user = new ShrineUserContext(run.Researcher); + query = converter.ToLeafQuery(run.Query); + } + + // Create scope to ensure query run as this user using (var scope = serviceScopeFactory.CreateAsyncScope()) { - + var userContextProvider = scope.ServiceProvider.GetRequiredService(); + userContextProvider.SetUserContext(user); queryResultCache.Put(run.Query.Id, run.Researcher); - var leafQuery = converter.ToLeafQuery(run.Query); - //var cohort = await counter.Count(leafQuery, stoppingToken); - //var count = new CohortCountDTO(cohort); - } + var cohort = await counter.Count(query, stoppingToken); + var count = new CohortCountDTO(cohort); - //if (!cohort.ValidationContext.PreflightPassed) - //{ - // Respond with error - //} - // Respond with count - //var response = new ShrineDeliveryContents - //{ - // TODO - //}; - // _ = await broker.SendMessageToHub() + if (!cohort.ValidationContext.PreflightPassed) + { + // TODO Respond with error + } + + var response = new ShrineDeliveryContents + { + // TODO Respond with count in SHRINE format + }; + // _ = await broker.SendMessageToHub() + } } } } diff --git a/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs b/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs index f9362e1c9..f153604e6 100644 --- a/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs +++ b/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs @@ -15,9 +15,9 @@ public class RejectInvalidFederatedUserMiddleware : IMiddleware readonly IUserContext user; readonly ILogger logger; - public RejectInvalidFederatedUserMiddleware(IUserContext userContext, ILogger logger) + public RejectInvalidFederatedUserMiddleware(IUserContextProvider userContextProvider, ILogger logger) { - this.user = userContext; + this.user = userContextProvider.GetUserContext(); this.logger = logger; } diff --git a/src/server/API/Options/StartupExtensions.Services.cs b/src/server/API/Options/StartupExtensions.Services.cs index e791208ea..57f935c82 100644 --- a/src/server/API/Options/StartupExtensions.Services.cs +++ b/src/server/API/Options/StartupExtensions.Services.cs @@ -62,6 +62,7 @@ public static IServiceCollection RegisterLeafServices( { services.AddHttpContextAccessor(); + services.AddScoped(); services.AddScoped(); services.AddTransient(); services.AddTransient(); @@ -204,6 +205,7 @@ static IServiceCollection AddIntegrationServices(this IServiceCollection service services.AddHostedService(); services.AddTransient(); services.AddTransient(); + services.AddSingleton(); services.AddSingleton(); /* Use for testing only!! */ diff --git a/src/server/Model/Authorization/UserContextProvider.cs b/src/server/Model/Authorization/UserContextProvider.cs new file mode 100644 index 000000000..8349323c6 --- /dev/null +++ b/src/server/Model/Authorization/UserContextProvider.cs @@ -0,0 +1,38 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Authorization +{ + public interface IUserContextProvider + { + void SetUserContext(IUserContext userContext); + IUserContext GetUserContext(); + } + + public class UserContextProvider : IUserContextProvider + { + IUserContext userContext; + + public UserContextProvider(IUserContext userContext = null) + { + if (userContext != null) + { + this.userContext = userContext; + } + } + + public void SetUserContext(IUserContext userContext) + { + this.userContext = userContext; + } + + public IUserContext GetUserContext() + { + return userContext; + } + } +} + diff --git a/src/server/Model/Cohort/CohortCounter.cs b/src/server/Model/Cohort/CohortCounter.cs index e9cacf1a6..d3b3acb32 100644 --- a/src/server/Model/Cohort/CohortCounter.cs +++ b/src/server/Model/Cohort/CohortCounter.cs @@ -55,7 +55,7 @@ public CohortCounter( ICohortCacheService cohortCache, IObfuscationService obfuscator, ILogger log, - IUserContext user = null) + IUserContextProvider userContextProvider) { this.runtime = opts.Value.Runtime; this.deidentOpts = deidentOpts.Value; @@ -64,7 +64,7 @@ public CohortCounter( this.counter = counter; this.obfuscator = obfuscator; this.cohortCache = cohortCache; - this.user = user; + this.user = userContextProvider.GetUserContext(); this.log = log; } diff --git a/src/server/Model/Cohort/DemographicProvider.cs b/src/server/Model/Cohort/DemographicProvider.cs index 4fffeb9c7..987c4fd88 100644 --- a/src/server/Model/Cohort/DemographicProvider.cs +++ b/src/server/Model/Cohort/DemographicProvider.cs @@ -42,7 +42,7 @@ Task ExecuteDemographicsAsync( readonly ILogger log; public DemographicProvider ( - IUserContext user, + IUserContextProvider userContextProvider, DemographicCompilerValidationContextProvider contextProvider, IOptions clientOpts, IOptions deidentOpts, @@ -50,7 +50,7 @@ public DemographicProvider ( IDemographicsExecutor executor, ILogger log) { - this.user = user; + this.user = userContextProvider.GetUserContext(); this.contextProvider = contextProvider; this.compiler = compiler; this.executor = executor; diff --git a/src/server/Model/Compiler/PanelConverter.cs b/src/server/Model/Compiler/PanelConverter.cs index 1192c3ac2..ad96ef2db 100644 --- a/src/server/Model/Compiler/PanelConverter.cs +++ b/src/server/Model/Compiler/PanelConverter.cs @@ -33,12 +33,12 @@ public class PanelConverter public PanelConverter( PreflightResourceChecker preflightSearch, - IUserContext userContext, + IUserContextProvider userContextProvider, IOptions compilerOptions, ICachedCohortPreparer cohortPreparer, ILogger logger) { - user = userContext; + this.user = userContextProvider.GetUserContext(); this.preflightSearch = preflightSearch; this.compilerOptions = compilerOptions.Value; this.cohortPreparer = cohortPreparer; diff --git a/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs b/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs index 7abf52b60..74e5af5dc 100644 --- a/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs +++ b/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs @@ -22,11 +22,11 @@ public class PanelSqlCompiler : IPanelSqlCompiler readonly CompilerOptions compilerOptions; public PanelSqlCompiler( - IUserContext user, + IUserContextProvider userContextProvider, ISqlDialect dialect, IOptions compilerOptions) { - this.user = user; + this.user = userContextProvider.GetUserContext(); this.dialect = dialect; this.compilerOptions = compilerOptions.Value; } diff --git a/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs b/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs new file mode 100644 index 000000000..5bab84999 --- /dev/null +++ b/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs @@ -0,0 +1,100 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using System.Collections; +using System.Collections.Generic; +using System.Threading; +using Model.Authorization; +using Model.Compiler; + +namespace Model.Integration.Shrine +{ + public interface IShrineUserQueryCache : IEnumerable + { + IEnumerable All(); + ShrineUserQueryEntry GetOrDefault(long id); + ShrineUserQueryEntry PopOrDefault(long id); + void Put(long id, IUserContext user, IPatientCountQueryDTO query); + void DeleteOlderThan(DateTime earliest); + } + + public class ShrineUserContextCache : IShrineUserQueryCache + { + readonly Dictionary store; + readonly ReaderWriterLockSlim sync; + + public IEnumerable All() + { + sync.EnterReadLock(); + var all = store.Values; + sync.ExitReadLock(); + return all; + } + + public ShrineUserQueryEntry GetOrDefault(long id) + { + sync.EnterReadLock(); + store.TryGetValue(id, out var result); + sync.ExitReadLock(); + return result; + } + + public ShrineUserQueryEntry PopOrDefault(long id) + { + sync.EnterWriteLock(); + store.Remove(id, out var result); + sync.ExitWriteLock(); + return result; + } + + public void Put(long id, IUserContext user, IPatientCountQueryDTO query) + { + sync.EnterWriteLock(); + store[id] = new ShrineUserQueryEntry(user, query, id); + sync.ExitWriteLock(); + } + + public void DeleteOlderThan(DateTime earliest) + { + sync.EnterReadLock(); + foreach (var user in All()) + { + if (user.Added < earliest) + { + store.Remove(user.QueryId, out var _); + } + } + sync.ExitReadLock(); + } + + public IEnumerator GetEnumerator() + { + return All().GetEnumerator(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } + + public class ShrineUserQueryEntry + { + public IUserContext User { get; } + public IPatientCountQueryDTO Query { get; } + public long QueryId { get; } + public DateTime Added { get; set; } + + public ShrineUserQueryEntry(IUserContext user, IPatientCountQueryDTO query, long queryId) + { + User = user; + Query = query; + QueryId = queryId; + Added = DateTime.Now; + } + } +} + diff --git a/src/server/Model/Notification/NotificationManager.cs b/src/server/Model/Notification/NotificationManager.cs index 3c19fecf4..f784a4eb1 100644 --- a/src/server/Model/Notification/NotificationManager.cs +++ b/src/server/Model/Notification/NotificationManager.cs @@ -30,11 +30,11 @@ public enum ContentType readonly IUserContext user; readonly ILogger log; - public NotificationManager(INotificationService service, ILogger log, IUserContext user) + public NotificationManager(INotificationService service, ILogger log, IUserContextProvider userContextProvider) { svc = service; this.log = log; - this.user = user; + this.user = userContextProvider.GetUserContext(); } public async Task SendUserInquiry(UserInquiry inquiry) diff --git a/src/server/Model/Search/PreflightResourceChecker.cs b/src/server/Model/Search/PreflightResourceChecker.cs index 31be10b4f..b91e9a33f 100644 --- a/src/server/Model/Search/PreflightResourceChecker.cs +++ b/src/server/Model/Search/PreflightResourceChecker.cs @@ -42,11 +42,11 @@ public interface IPreflightConceptReader public PreflightResourceChecker( IPreflightResourceReader reader, - IUserContext user, + IUserContextProvider userContextProvider, ILogger log) { this.reader = reader; - this.user = user; + this.user = userContextProvider.GetUserContext(0); this.log = log; } diff --git a/src/server/Model/Search/QueryManager.cs b/src/server/Model/Search/QueryManager.cs index fa2be717e..d7212429d 100644 --- a/src/server/Model/Search/QueryManager.cs +++ b/src/server/Model/Search/QueryManager.cs @@ -12,7 +12,6 @@ using Model.Authorization; using Model.Compiler; using Model.Extensions; -using Model.Search; using Model.Tagging; using Model.Error; using System.Data.Common; @@ -49,14 +48,14 @@ public QueryManager( IQueryService service, IOptions obfuscationOptions, ILogger log, - IUserContext user, + IUserContextProvider userContextProvider, PanelConverter converter, PanelValidator validator) { this.service = service; this.deidentOpts = obfuscationOptions.Value; this.log = log; - this.user = user; + this.user = userContextProvider.GetUserContext(); this.converter = converter; this.validator = validator; } diff --git a/src/server/Services/Admin/Compiler/AdminConceptEventService.cs b/src/server/Services/Admin/Compiler/AdminConceptEventService.cs index fd0cf2628..663198c25 100644 --- a/src/server/Services/Admin/Compiler/AdminConceptEventService.cs +++ b/src/server/Services/Admin/Compiler/AdminConceptEventService.cs @@ -6,14 +6,11 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; -using Model.Admin; -using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using Model.Options; using System.Data.SqlClient; using System.Data; using Dapper; -using Model.Error; using Model.Authorization; using Model.Admin.Compiler; @@ -26,10 +23,10 @@ public class AdminConceptEventService : AdminConceptEventManager.IAdminConceptEv public AdminConceptEventService( IOptions options, - IUserContext userContext) + IUserContextProvider userContextProvider) { opts = options.Value; - user = userContext; + user = userContextProvider.GetUserContext(); } public async Task CreateAsync(ConceptEvent ev) diff --git a/src/server/Services/Admin/Compiler/AdminConceptService.cs b/src/server/Services/Admin/Compiler/AdminConceptService.cs index 55a2c6805..b94d32490 100644 --- a/src/server/Services/Admin/Compiler/AdminConceptService.cs +++ b/src/server/Services/Admin/Compiler/AdminConceptService.cs @@ -10,11 +10,8 @@ using System.Linq; using System.Threading.Tasks; using Dapper; -using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; -using Model.Admin; using Model.Authorization; -using Model.Error; using Model.Options; using Model.Tagging; using Services.Search; @@ -30,10 +27,10 @@ public class AdminConceptService : AdminConceptManager.IAdminConceptService public AdminConceptService( IOptions options, - IUserContext userContext) + IUserContextProvider userContextProvider) { opts = options.Value; - user = userContext; + user = userContextProvider.GetUserContext(); } public async Task CreateAsync(AdminConcept c) diff --git a/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs b/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs index 4f77d6fa8..c408340bd 100644 --- a/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs +++ b/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs @@ -28,11 +28,11 @@ public class AdminConceptSqlSetService : AdminConceptSqlSetManager.IAdminConcept public AdminConceptSqlSetService( ILogger logger, IOptions options, - IUserContext userContext) + IUserContextProvider userContextProvider) { this.logger = logger; opts = options.Value; - user = userContext; + user = userContextProvider.GetUserContext(); } public async Task CreateAsync(ConceptSqlSet set) diff --git a/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs b/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs index fdf876831..144f81295 100644 --- a/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs +++ b/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs @@ -9,16 +9,11 @@ using System.Data.SqlClient; using System.Data; using Model.Options; -using Model.Error; using Model.Admin.Compiler; using Model.Authorization; -using Model.Tagging; using System.Threading.Tasks; using Microsoft.Extensions.Options; using Dapper; -using Model.Compiler; -using Services.Tables; -using Model.Extensions; namespace Services.Admin.Compiler { @@ -28,10 +23,10 @@ public class AdminDatasetCategoryService : AdminDatasetCategoryManager.IAdminDat readonly AppDbOptions opts; public AdminDatasetCategoryService( - IUserContext userContext, + IUserContextProvider userContextProvider, IOptions opts) { - this.user = userContext; + user = userContextProvider.GetUserContext(); this.opts = opts.Value; } diff --git a/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs b/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs index a096769fd..935dab18b 100644 --- a/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs +++ b/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs @@ -9,7 +9,6 @@ using System.Data.SqlClient; using System.Data; using Model.Options; -using Model.Error; using Model.Admin.Compiler; using Model.Authorization; using Model.Tagging; @@ -18,7 +17,6 @@ using Dapper; using Model.Compiler; using Services.Tables; -using Model.Extensions; using Services.Search; namespace Services.Admin.Compiler @@ -28,10 +26,10 @@ public class AdminDatasetQueryService : AdminDatasetQueryManager.IAdminDatasetQu readonly AppDbOptions opts; readonly IUserContext user; - public AdminDatasetQueryService(IOptions opts, IUserContext userContext) + public AdminDatasetQueryService(IOptions opts, IUserContextProvider userContextProvider) { this.opts = opts.Value; - this.user = userContext; + user = userContextProvider.GetUserContext(); } public async Task GetDatasetQueryByIdAsync(Guid id) diff --git a/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs b/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs index f7cfaf925..642c6cdfe 100644 --- a/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs +++ b/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs @@ -5,20 +5,14 @@ // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; using System.Collections.Generic; -using System.Linq; using System.Data.SqlClient; using System.Data; using Model.Options; -using Model.Error; using Model.Admin.Compiler; using Model.Authorization; -using Model.Tagging; using System.Threading.Tasks; using Microsoft.Extensions.Options; using Dapper; -using Model.Compiler; -using Services.Tables; -using Model.Extensions; using Services.Search; namespace Services.Admin.Compiler @@ -28,10 +22,10 @@ public class AdminDemographicQueryService : AdminDemographicsManager.IAdminDemog readonly AppDbOptions opts; readonly IUserContext user; - public AdminDemographicQueryService(IOptions opts, IUserContext userContext) + public AdminDemographicQueryService(IOptions opts, IUserContextProvider userContextProvider) { this.opts = opts.Value; - this.user = userContext; + this.user = userContextProvider.GetUserContext(); } public async Task GetDemographicQueryAsync() diff --git a/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs b/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs index a4dbce05c..8c10a3e7d 100644 --- a/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs +++ b/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs @@ -21,10 +21,10 @@ public class AdminGlobalPanelFilterService : AdminGlobalPanelFilterManager.IAdmi readonly AppDbOptions opts; readonly IUserContext user; - public AdminGlobalPanelFilterService(IOptions opts, IUserContext userContext) + public AdminGlobalPanelFilterService(IOptions opts, IUserContextProvider userContextProvider) { this.opts = opts.Value; - this.user = userContext; + this.user = userContextProvider.GetUserContext(); } public async Task> GetAsync() diff --git a/src/server/Services/Admin/Compiler/AdminSpecializationService.cs b/src/server/Services/Admin/Compiler/AdminSpecializationService.cs index de439d877..cb7e75e25 100644 --- a/src/server/Services/Admin/Compiler/AdminSpecializationService.cs +++ b/src/server/Services/Admin/Compiler/AdminSpecializationService.cs @@ -6,15 +6,12 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; -using Model.Admin; using Model.Tagging; -using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using Model.Options; using System.Data.SqlClient; using System.Data; using Dapper; -using Model.Error; using System.Linq; using Model.Authorization; using Model.Admin.Compiler; @@ -28,10 +25,10 @@ public class AdminSpecializationService : AdminSpecializationManager.IAdminSpeci public AdminSpecializationService( IOptions options, - IUserContext userContext) + IUserContextProvider userContextProvider) { opts = options.Value; - user = userContext; + user = userContextProvider.GetUserContext(); } public async Task CreateAsync(Specialization spec) diff --git a/src/server/Services/Admin/Network/AdminNetworkEndpointUpdater.cs b/src/server/Services/Admin/Network/AdminNetworkEndpointUpdater.cs index 81dcf67da..7872c9635 100644 --- a/src/server/Services/Admin/Network/AdminNetworkEndpointUpdater.cs +++ b/src/server/Services/Admin/Network/AdminNetworkEndpointUpdater.cs @@ -24,10 +24,10 @@ public class AdminNetworkEndpointUpdater : AdminNetworkEndpointManager.IAdminNet public AdminNetworkEndpointUpdater( IOptions dbOptions, - IUserContext user) + IUserContextProvider userContextProvider) { opts = dbOptions.Value; - this.user = user; + this.user = userContextProvider.GetUserContext(); } public async Task UpdateEndpointAsync(NetworkEndpoint item) diff --git a/src/server/Services/Admin/Notification/ServerStateService.cs b/src/server/Services/Admin/Notification/ServerStateService.cs index 52aa32210..9fa15667b 100644 --- a/src/server/Services/Admin/Notification/ServerStateService.cs +++ b/src/server/Services/Admin/Notification/ServerStateService.cs @@ -22,10 +22,10 @@ public class AdminServerStateService : AdminServerStateManager.IAdminServerState readonly AppDbOptions opts; readonly IUserContext user; - public AdminServerStateService(IOptions opts, IUserContext userContext) + public AdminServerStateService(IOptions opts, IUserContextProvider userContextProvider) { this.opts = opts.Value; - this.user = userContext; + this.user = userContextProvider.GetUserContext(); } public async Task GetServerStateAsync() diff --git a/src/server/Services/Cohort/CachedCohortFetcher.cs b/src/server/Services/Cohort/CachedCohortFetcher.cs index 3d3b6ce9c..77bd2fa0c 100644 --- a/src/server/Services/Cohort/CachedCohortFetcher.cs +++ b/src/server/Services/Cohort/CachedCohortFetcher.cs @@ -24,10 +24,10 @@ public class CachedCohortFetcher : ICachedCohortFetcher readonly AppDbOptions dbOptions; readonly IUserContext user; - public CachedCohortFetcher(IOptions dbOptions, IUserContext user) + public CachedCohortFetcher(IOptions dbOptions, IUserContextProvider userContextProvider) { this.dbOptions = dbOptions.Value; - this.user = user; + this.user = userContextProvider.GetUserContext(); } public async Task> FetchCohortAsync(Guid queryId, bool exportedOnly) diff --git a/src/server/Services/Cohort/DatasetExecutor.cs b/src/server/Services/Cohort/DatasetExecutor.cs index 433486ace..fa143b8c9 100644 --- a/src/server/Services/Cohort/DatasetExecutor.cs +++ b/src/server/Services/Cohort/DatasetExecutor.cs @@ -27,13 +27,13 @@ public class DatasetExecutor : DatasetProvider.IDatasetExecutor readonly DeidentificationOptions deidentOpts; public DatasetExecutor( - IUserContext user, + IUserContextProvider userContextProvider, ISqlProviderQueryExecutor queryExecutor, ILogger log, IOptions dbOpts, IOptions deidentOpts) { - this.user = user; + this.user = userContextProvider.GetUserContext(); this.queryExecutor = queryExecutor; this.log = log; this.dbOpts = dbOpts.Value; diff --git a/src/server/Services/Cohort/DemographicsExecutor.cs b/src/server/Services/Cohort/DemographicsExecutor.cs index b9c61994e..4271ea776 100644 --- a/src/server/Services/Cohort/DemographicsExecutor.cs +++ b/src/server/Services/Cohort/DemographicsExecutor.cs @@ -28,7 +28,7 @@ public class DemographicsExecutor : DemographicProvider.IDemographicsExecutor readonly DeidentificationOptions deidentOpts; public DemographicsExecutor( - IUserContext user, + IUserContextProvider userContextProvider, ISqlProviderQueryExecutor queryExecutor, ILogger log, IOptions dbOpts, @@ -37,7 +37,7 @@ public DemographicsExecutor( this.log = log; this.dbOpts = dbOpts.Value; this.deidentOpts = deidentOpts.Value; - this.user = user; + this.user = userContextProvider.GetUserContext(); this.queryExecutor = queryExecutor; } diff --git a/src/server/Services/Import/ImportService.cs b/src/server/Services/Import/ImportService.cs index ff07de15f..51a1231e1 100644 --- a/src/server/Services/Import/ImportService.cs +++ b/src/server/Services/Import/ImportService.cs @@ -34,12 +34,12 @@ public class ImportService : DataImporter.IImportService public ImportService( IOptions dbOptions, ILogger logger, - IUserContext user + IUserContextProvider userContextProvider ) { this.dbOptions = dbOptions.Value; this.logger = logger; - this.user = user; + this.user = userContextProvider.GetUserContext(); } public async Task> GetAllImportMetadataAsync() diff --git a/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs b/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs index 6c44469c6..cad8910e7 100644 --- a/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs +++ b/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs @@ -33,11 +33,11 @@ public class ConceptDatasetCompilerContextProvider : ConceptDatasetCompilerValid readonly ILogger log; public ConceptDatasetCompilerContextProvider( - IUserContext userContext, + IUserContextProvider userContextProvider, IOptions options, ILogger logger) { - user = userContext; + user = userContextProvider.GetUserContext(); opts = options.Value; log = logger; } diff --git a/src/server/Services/Search/ConceptHintSearchService.cs b/src/server/Services/Search/ConceptHintSearchService.cs index 24fbe8997..8b6ba29c8 100644 --- a/src/server/Services/Search/ConceptHintSearchService.cs +++ b/src/server/Services/Search/ConceptHintSearchService.cs @@ -28,10 +28,10 @@ public class ConceptHintSearchService : ConceptHintSearcher.IConceptHintSearchSe readonly AppDbOptions opts; readonly IUserContext user; - public ConceptHintSearchService(IOptions dbOptions, IUserContext userContext) + public ConceptHintSearchService(IOptions dbOptions, IUserContextProvider userContextProvider) { opts = dbOptions.Value; - user = userContext; + user = userContextProvider.GetUserContext(); } /// diff --git a/src/server/Services/Search/ConceptTreeReader.cs b/src/server/Services/Search/ConceptTreeReader.cs index e394dc67c..af37ea58a 100644 --- a/src/server/Services/Search/ConceptTreeReader.cs +++ b/src/server/Services/Search/ConceptTreeReader.cs @@ -38,10 +38,10 @@ public class ConceptTreeReader : ConceptTreeSearcher.IConceptTreeReader readonly AppDbOptions opts; readonly IUserContext user; - public ConceptTreeReader(IOptions dbOpts, IUserContext userContext) + public ConceptTreeReader(IOptions dbOpts, IUserContextProvider userContextProvider) { opts = dbOpts.Value; - user = userContext; + user = userContextProvider.GetUserContext(); } public async Task GetAsync(Guid id) diff --git a/src/server/Services/Search/DatasetCompilerContextProvider.cs b/src/server/Services/Search/DatasetCompilerContextProvider.cs index 5335a5e79..bbd60576d 100644 --- a/src/server/Services/Search/DatasetCompilerContextProvider.cs +++ b/src/server/Services/Search/DatasetCompilerContextProvider.cs @@ -33,11 +33,11 @@ public class DatasetCompilerContextProvider : DatasetCompilerValidationContextPr }; public DatasetCompilerContextProvider( - IUserContext userContext, + IUserContextProvider userContextProvider, IOptions dbOptions, ILogger logger) { - user = userContext; + user = userContextProvider.GetUserContext(); log = logger; opts = dbOptions.Value; } diff --git a/src/server/Services/Search/DatasetQueryFetcher.cs b/src/server/Services/Search/DatasetQueryFetcher.cs index ab31428a7..8d7c09add 100644 --- a/src/server/Services/Search/DatasetQueryFetcher.cs +++ b/src/server/Services/Search/DatasetQueryFetcher.cs @@ -24,10 +24,10 @@ public class DatasetQueryFetcher : IDatasetQueryFetcher readonly AppDbOptions opts; public DatasetQueryFetcher( - IUserContext userContext, + IUserContextProvider userContextProvider, IOptions dbOptions) { - user = userContext; + user = userContextProvider.GetUserContext(); opts = dbOptions.Value; } diff --git a/src/server/Services/Search/DemographicCompilerContextProvider.cs b/src/server/Services/Search/DemographicCompilerContextProvider.cs index 656ae4c44..881541bdf 100644 --- a/src/server/Services/Search/DemographicCompilerContextProvider.cs +++ b/src/server/Services/Search/DemographicCompilerContextProvider.cs @@ -29,11 +29,11 @@ public class DemographicCompilerContextProvider : DemographicCompilerValidationC readonly ILogger log; public DemographicCompilerContextProvider( - IUserContext userContext, + IUserContextProvider userContextProvider, IOptions options, ILogger logger) { - user = userContext; + user = userContextProvider.GetUserContext(); opts = options.Value; log = logger; } diff --git a/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs b/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs index 92508b01f..3e27e81bb 100644 --- a/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs +++ b/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs @@ -36,11 +36,11 @@ public class PanelDatasetCompilerContextProvider : PanelDatasetCompilerValidatio }; public PanelDatasetCompilerContextProvider( - IUserContext userContext, + IUserContextProvider userContextProvider, IOptions options, ILogger logger) { - user = userContext; + user = userContextProvider.GetUserContext(); opts = options.Value; log = logger; } diff --git a/src/server/Services/Search/PreflightResourceReader.cs b/src/server/Services/Search/PreflightResourceReader.cs index 144494f3a..ff0458869 100644 --- a/src/server/Services/Search/PreflightResourceReader.cs +++ b/src/server/Services/Search/PreflightResourceReader.cs @@ -28,10 +28,10 @@ public class PreflightResourceReader : PreflightResourceChecker.IPreflightResour public PreflightResourceReader( IOptions options, - IUserContext userContext) + IUserContextProvider userContextProvider) { opts = options.Value; - user = userContext; + user = userContextProvider.GetUserContext(); } public async Task GetResourcesByIdsAsync(ResourceRefs refs) diff --git a/src/server/Services/Search/QueryService.cs b/src/server/Services/Search/QueryService.cs index 6f0bbb2ee..cd39dd664 100644 --- a/src/server/Services/Search/QueryService.cs +++ b/src/server/Services/Search/QueryService.cs @@ -34,11 +34,11 @@ public class QueryService : IQueryService readonly AppDbOptions dbOpts; public QueryService( - IUserContext userContext, + IUserContextProvider userContextProvider, IOptions dbOpts ) { - user = userContext; + user = userContextProvider.GetUserContext(); this.dbOpts = dbOpts.Value; } From 810dddd1a8d7b8882a10f1ded9c31b46322e68c0 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Fri, 13 Oct 2023 18:01:38 -0700 Subject: [PATCH 09/19] leaf runs simple shrine queries --- .../API/Controllers/IntegrationController.cs | 61 +++++++++---- src/server/API/Controllers/QueryController.cs | 5 +- src/server/API/Controllers/UserController.cs | 27 +++--- .../Shrine/4_1/ShrineExpressionDTO.cs | 15 +-- .../Integration/Shrine/4_1/ShrineOutputDTO.cs | 4 +- .../Integration/Shrine/4_1/ShrineQueryDTO.cs | 4 +- .../Integration/Shrine/4_1/ShrineStatusDTO.cs | 2 + .../DTO/Integration/Shrine/ShrineNodeDTO.cs | 66 ++++++++++++++ .../Integration/Shrine/ShrineResearcherDTO.cs | 50 ++++++++++ .../Shrine/ShrineResultProgressDTO.cs | 15 +-- .../Shrine/ShrineRunQueryForResultDTO.cs | 53 +++++++++++ .../DTO/Integration/Shrine/ShrineTopicDTO.cs | 50 ++++++++++ .../4_1/ShrineQueryDefinitionConverter.cs | 6 +- .../Integration/Shrine/ShrineMessageBroker.cs | 10 +- .../Jobs/BackgroundShrineCacheSynchronizer.cs | 68 ++++++++++++++ .../Jobs/BackgroundShrinePollingService.cs | 91 +++++++++++++------ .../RejectInvalidFederatedUserMiddleware.cs | 4 +- src/server/API/Options/Config.Integration.cs | 15 ++- .../API/Options/StartupExtensions.Options.cs | 13 ++- .../API/Options/StartupExtensions.Services.cs | 5 +- .../Authorization/UserContextProvider.cs | 7 +- .../Model/Cohort/DemographicProvider.cs | 6 +- .../Compiler/SqlBuilder/PanelSqlCompiler.cs | 4 +- .../Shrine/IShrineQueryResultCache.cs | 17 ++-- .../Shrine/IShrineUserQueryCache.cs | 17 ++-- .../Integration/Shrine/ShrineQueryStatus.cs | 4 +- .../Shrine/ShrineResultProgress.cs | 2 +- .../Model/Notification/NotificationManager.cs | 4 +- .../Model/Options/IntegrationOptions.cs | 17 +++- .../Model/Search/PreflightResourceChecker.cs | 2 +- src/server/Model/Search/QueryManager.cs | 4 +- .../Compiler/AdminConceptEventService.cs | 4 +- .../Admin/Compiler/AdminConceptService.cs | 4 +- .../Compiler/AdminConceptSqlSetService.cs | 4 +- .../Compiler/AdminDatasetCategoryService.cs | 4 +- .../Compiler/AdminDatasetQueryService.cs | 4 +- .../Compiler/AdminDemographicQueryService.cs | 4 +- .../Compiler/AdminGlobalPanelFilterService.cs | 4 +- .../Compiler/AdminSpecializationService.cs | 4 +- .../Network/AdminNetworkEndpointUpdater.cs | 4 +- .../Admin/Notification/ServerStateService.cs | 4 +- .../Services/Cohort/CachedCohortFetcher.cs | 4 +- .../Services/Cohort/CohortCacheService.cs | 2 +- src/server/Services/Cohort/DatasetExecutor.cs | 4 +- .../Services/Cohort/DemographicsExecutor.cs | 4 +- src/server/Services/Import/ImportService.cs | 4 +- .../ConceptDatasetCompilerContextProvider.cs | 4 +- .../Search/ConceptHintSearchService.cs | 4 +- .../Services/Search/ConceptTreeReader.cs | 4 +- .../Search/DatasetCompilerContextProvider.cs | 4 +- .../Services/Search/DatasetQueryFetcher.cs | 4 +- .../DemographicCompilerContextProvider.cs | 4 +- .../PanelDatasetCompilerContextProvider.cs | 4 +- .../Search/PreflightResourceReader.cs | 3 +- src/server/Services/Search/QueryService.cs | 4 +- 55 files changed, 572 insertions(+), 169 deletions(-) create mode 100644 src/server/API/DTO/Integration/Shrine/ShrineNodeDTO.cs create mode 100644 src/server/API/DTO/Integration/Shrine/ShrineResearcherDTO.cs create mode 100644 src/server/API/DTO/Integration/Shrine/ShrineRunQueryForResultDTO.cs create mode 100644 src/server/API/DTO/Integration/Shrine/ShrineTopicDTO.cs create mode 100644 src/server/API/Jobs/BackgroundShrineCacheSynchronizer.cs diff --git a/src/server/API/Controllers/IntegrationController.cs b/src/server/API/Controllers/IntegrationController.cs index 6b7e9f69d..75ebee9fd 100644 --- a/src/server/API/Controllers/IntegrationController.cs +++ b/src/server/API/Controllers/IntegrationController.cs @@ -15,6 +15,7 @@ using Model.Authorization; using Model.Integration.Shrine; using Model.Options; +using Newtonsoft.Json; namespace API.Controllers { @@ -25,71 +26,93 @@ public class IntegrationController : Controller { readonly ILogger log; readonly IntegrationOptions opts; + readonly ShrineQueryDefinitionConverter converter; readonly IShrineUserQueryCache userQueryCache; readonly IShrineQueryResultCache queryResultCache; - readonly IShrineMessageBroker messageBroker; + readonly IShrineMessageBroker broker; public IntegrationController( ILogger log, IOptions opts, IShrineUserQueryCache userQueryCache, IShrineQueryResultCache queryResultCache, - IShrineMessageBroker messageBroker + IShrineMessageBroker broker, + ShrineQueryDefinitionConverter converter ) { this.log = log; this.opts = opts.Value; this.userQueryCache = userQueryCache; this.queryResultCache = queryResultCache; - this.messageBroker = messageBroker; + this.broker = broker; + this.converter = converter; } [HttpPost("shrine/count")] public ActionResult ShrineCount( - [FromBody] PatientCountQueryDTO patientCountQuery, - [FromServices] IUserContextProvider userContextProvider) + [FromBody] PatientCountQueryDTO patientCountQuery + //[FromServices] IUserContextProvider userContextProvider + ) { if (!opts.Enabled || !opts.SHRINE.Enabled) return BadRequest(); - var queryId = ShrineQueryDefinitionConverter.GenerateRandomLongId(); - var user = userContextProvider.GetUserContext(); - - userQueryCache.Put(queryId, user, patientCountQuery); - //messageBroker. - try { - //var opts = new ExportOptionsDTO(exportOptions); - return Ok(null); + + var queryId = ShrineQueryDefinitionConverter.GenerateRandomLongId(); + /* + var user = userContextProvider.GetUserContext(); + var queryDefinition = converter.ToShrineQuery(patientCountQuery); + var runQuery = new ShrineRunQueryForResult + { + Query = queryDefinition, + Node = new ShrineNode { }, + Topic = new ShrineTopic { }, + ResultProgress = new ShrineResultProgress { }, + Researcher = new ShrineResearcher { }, + ProtocolVersion = 2 + }; + var contents = new ShrineDeliveryContents + { + Contents = JsonConvert.SerializeObject(runQuery), + ContentsSubject = queryId + }; + + userQueryCache.Put(queryId, user, patientCountQuery); + broker.SendMessageToHub(contents); + */ + + return Ok(queryId); } catch (Exception ex) { - log.LogError("Failed to TODO. Error:{Error}", ex.Message); + log.LogError("Failed to initialize SHRINE query. Error:{Error}", ex.Message); return StatusCode(StatusCodes.Status500InternalServerError); } } [HttpGet("shrine/cohort/{queryId}/count")] public ActionResult GetShrineCountResult( - long queryId, - [FromServices] IUserContextProvider userContextProvider + long queryId + //[FromServices] IUserContextProvider userContextProvider ) { if (!opts.Enabled || !opts.SHRINE.Enabled) return BadRequest(); try { - var user = userContextProvider.GetUserContext(); + + //var user = userContextProvider.GetUserContext(); var results = queryResultCache.GetOrDefault(queryId); if (results == null) return NotFound(); - if (results.User.UserName != user.UUID) return NotFound(); + //if (results.User.UserName != user.UUID) return NotFound(); return Ok(results); } catch (Exception ex) { - log.LogError("Failed to TODO. Error:{Error}", ex.Message); + log.LogError("Failed to retrieve SHRINE query results. Error:{Error}", ex.Message); return StatusCode(StatusCodes.Status500InternalServerError); } } diff --git a/src/server/API/Controllers/QueryController.cs b/src/server/API/Controllers/QueryController.cs index 511aec43f..940483473 100644 --- a/src/server/API/Controllers/QueryController.cs +++ b/src/server/API/Controllers/QueryController.cs @@ -28,13 +28,11 @@ public class QueryController : Controller { readonly ILogger log; readonly QueryManager manager; - readonly IUserContext user; - public QueryController(QueryManager manager, ILogger logger, IUserContextProvider userContextProvider) + public QueryController(QueryManager manager, ILogger logger) { log = logger; this.manager = manager; - user = userContextProvider.GetUserContext(); } [Authorize(Policy = Access.Institutional)] @@ -81,6 +79,7 @@ public async Task> Get(string ident) public async Task> Save( string id, [FromBody] QuerySaveDTO querySave, + [FromServices] IUserContext user, CancellationToken cancelToken) { try diff --git a/src/server/API/Controllers/UserController.cs b/src/server/API/Controllers/UserController.cs index 334a24e5c..92c7b2569 100644 --- a/src/server/API/Controllers/UserController.cs +++ b/src/server/API/Controllers/UserController.cs @@ -26,20 +26,14 @@ public class UserController : Controller readonly ILogger logger; readonly AuthenticationOptions authenticationOptions; readonly IUserJwtProvider jwtProvider; - readonly IUserContext userContext; public UserController( ILogger logger, IOptions authenticationOptions, - IOptions versionOptions, - IOptions cohortOptions, - IOptions clientOptions, - IUserJwtProvider userJwtProvider, - IUserContextProvider userContextProvider) + IUserJwtProvider userJwtProvider) { this.logger = logger; this.authenticationOptions = authenticationOptions.Value; - this.userContext = userContextProvider.GetUserContext(); jwtProvider = userJwtProvider; } @@ -70,18 +64,20 @@ public async Task> GetUser() [HttpGet("attest")] public ActionResult Attest( [FromQuery] Attestation attestation, + [FromServices] IUserContextProvider userContextProvider, [FromServices] IInvalidatedTokenCache invalidatedCache) { - if (authenticationOptions.Mechanism != userContext.AuthenticationMechanism) + var user = userContextProvider.GetUserContext(); + if (authenticationOptions.Mechanism != user.AuthenticationMechanism) { return StatusCode(StatusCodes.Status401Unauthorized); } try { - if (invalidatedCache.IsInvalidated(userContext.IdNonce)) + if (invalidatedCache.IsInvalidated(user.IdNonce)) { - logger.LogWarning("Id token is invalidated. IdNonce:{IdNonce} Attestation:{@Attestation}", userContext.IdNonce, attestation); + logger.LogWarning("Id token is invalidated. IdNonce:{IdNonce} Attestation:{@Attestation}", user.IdNonce, attestation); return StatusCode(StatusCodes.Status401Unauthorized); } @@ -101,18 +97,21 @@ public ActionResult Attest( [Authorize(Policy = TokenType.Access)] [Authorize(Policy = Access.Institutional)] [HttpGet("refresh")] - public ActionResult Refresh([FromServices] IInvalidatedTokenCache invalidatedCache) + public ActionResult Refresh( + [FromServices] IInvalidatedTokenCache invalidatedCache, + [FromServices] IUserContextProvider userContextProvider) { - if (authenticationOptions.Mechanism != userContext.AuthenticationMechanism) + var user = userContextProvider.GetUserContext(); + if (authenticationOptions.Mechanism != user.AuthenticationMechanism) { return StatusCode(StatusCodes.Status401Unauthorized); } try { - if (invalidatedCache.IsInvalidated(userContext.IdNonce)) + if (invalidatedCache.IsInvalidated(user.IdNonce)) { - logger.LogWarning("Id token is invalidated. IdNonce:{IdNonce} Attestation:{@Attestation}", userContext.IdNonce); + logger.LogWarning("Id token is invalidated. IdNonce:{IdNonce} Attestation:{@Attestation}", user.IdNonce); return StatusCode(StatusCodes.Status401Unauthorized); } diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs index f84f550a0..1bb4a7250 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs @@ -25,6 +25,7 @@ public ShrineQueryDefinitionDTO(ShrineQueryDefinition definition) public abstract class ShrineGroupDTO { public int NMustBeTrue { get; set; } + public string EncodedClass { get; set; } public ShrineConjunctionCompareDTO Compare { get; set; } public ShrineGroupDTO() { } @@ -39,6 +40,7 @@ public ShrineGroupDTO(ShrineGroup expr) public class ShrineConjunctionDTO { public int NMustBeTrue { get; set; } + public string EncodedClass { get; set; } public ShrineConjunctionCompareDTO Compare { get; set; } public IEnumerable Possibilities { get; set; } @@ -52,8 +54,8 @@ public ShrineConjunctionDTO(ShrineConjunction conjunction) public class ShrineConceptGroupDTO : ShrineGroupDTO { - public long StartDate { get; set; } - public long EndDate { get; set; } + public long? StartDate { get; set; } + public long? EndDate { get; set; } public int OccursAtLeast { get; set; } = 1; public ShrineConceptConjunctionDTO Concepts { get; set; } @@ -61,8 +63,8 @@ public ShrineConceptGroupDTO() { } public ShrineConceptGroupDTO(ShrineConceptGroup group) : base(group) { - StartDate = ((DateTimeOffset)group.StartDate).ToUnixTimeMilliseconds(); - EndDate = ((DateTimeOffset)group.EndDate).ToUnixTimeMilliseconds(); + StartDate = group.StartDate != null ? ((DateTimeOffset)group.StartDate).ToUnixTimeMilliseconds() : null; + EndDate = group.EndDate != null ? ((DateTimeOffset)group.EndDate).ToUnixTimeMilliseconds() : null; OccursAtLeast = group.OccursAtLeast.HasValue ? (int)group.OccursAtLeast : 1; Concepts = new ShrineConceptConjunctionDTO(group.Concepts); } @@ -71,6 +73,7 @@ public ShrineConceptGroupDTO(ShrineConceptGroup group) : base(group) public class ShrineConceptConjunctionDTO { public int NMustBeTrue { get; set; } + public string EncodedClass { get; set; } public ShrineConjunctionCompareDTO Compare { get; set; } public IEnumerable Possibilities { get; set; } @@ -138,8 +141,8 @@ public static ShrineConceptGroup ToConceptGroup(this ShrineConceptGroupDTO dto) { return new ShrineConceptGroup { - StartDate = DateTimeOffset.FromUnixTimeMilliseconds(dto.StartDate).UtcDateTime, - EndDate = DateTimeOffset.FromUnixTimeMilliseconds(dto.EndDate).UtcDateTime, + StartDate = dto.StartDate != null ? DateTimeOffset.FromUnixTimeMilliseconds((long)dto.StartDate).UtcDateTime : null, + EndDate = dto.EndDate != null ? DateTimeOffset.FromUnixTimeMilliseconds((long)dto.EndDate).UtcDateTime : null, OccursAtLeast = dto.OccursAtLeast, Concepts = dto.Concepts.ToConjunction() }; diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs index 0a4485c63..be8ea37fb 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs @@ -12,7 +12,9 @@ public class ShrineOutputDTO { public string EncodedClass { get; set; } - public ShrineOutputDTO(ShrineOutput output) + public ShrineOutputDTO() { } + + public ShrineOutputDTO(ShrineOutput output) { EncodedClass = output.EncodedClass.ToString(); } diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs index 700694054..e451b32ba 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs @@ -25,6 +25,8 @@ public class ShrineQueryDTO public string FlaggedMessage { get; set; } public string EncodedClass { get; set; } + public ShrineQueryDTO() { } + public ShrineQueryDTO(ShrineQuery query) { Id = query.Id; @@ -45,7 +47,7 @@ public ShrineQueryDTO(ShrineQuery query) public static class ShrineQueryExtensions { - public static ShrineQuery ToQuery(ShrineQueryDTO dto) + public static ShrineQuery ToQuery(this ShrineQueryDTO dto) { _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryType type); return new ShrineQuery diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs index efb453ac8..618b25d4f 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs @@ -12,6 +12,8 @@ public class ShrineStatusDTO { public string EncodedClass { get; set; } + public ShrineStatusDTO() { } + public ShrineStatusDTO(ShrineStatus status) { EncodedClass = status.EncodedClass.ToString(); diff --git a/src/server/API/DTO/Integration/Shrine/ShrineNodeDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineNodeDTO.cs new file mode 100644 index 000000000..92f50ac3f --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/ShrineNodeDTO.cs @@ -0,0 +1,66 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine; + +namespace API.DTO.Integration.Shrine +{ + public class ShrineNodeDTO + { + public long Id { get; set; } + public ShrineVersionInfoDTO VersionInfo { get; set; } + public string Name { get; set; } + public string Key { get; set; } + public string UserDomainName { get; set; } + public string MomQueueName { get; set; } + public string AdminEmail { get; set; } + public bool SendQueries { get; set; } + public int UnderstandsProtocol { get; set; } + public string MomId { get; set; } + + public ShrineNodeDTO() + { + + } + + public ShrineNodeDTO(ShrineNode node) + { + Id = node.Id; + VersionInfo = new ShrineVersionInfoDTO(node.VersionInfo); + Name = node.Name; + Key = node.Key; + UserDomainName = node.UserDomainName; + MomQueueName = node.MomQueueName; + AdminEmail = node.AdminEmail; + SendQueries = node.SendQueries; + UnderstandsProtocol = node.UnderstandsProtocol; + MomId = node.MomId; + } + } + + public static class ShrineNodeExtensions + { + public static ShrineNode ToNode(this ShrineNodeDTO dto) + { + if (dto == null) return null; + + return new ShrineNode + { + Id = dto.Id, + VersionInfo = dto.VersionInfo.ToVersionInfo(), + Name = dto.Name, + Key = dto.Key, + UserDomainName = dto.UserDomainName, + MomQueueName = dto.MomQueueName, + AdminEmail = dto.AdminEmail, + SendQueries = dto.SendQueries, + UnderstandsProtocol = dto.UnderstandsProtocol, + MomId = dto.MomId + }; + } + } +} + diff --git a/src/server/API/DTO/Integration/Shrine/ShrineResearcherDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineResearcherDTO.cs new file mode 100644 index 000000000..8e93391a0 --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/ShrineResearcherDTO.cs @@ -0,0 +1,50 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine; + +namespace API.DTO.Integration.Shrine +{ + public class ShrineResearcherDTO + { + public long Id { get; set; } + public ShrineVersionInfoDTO VersionInfo { get; set; } + public string UserName { get; set; } + public string UserDomainName { get; set; } + public long NodeId { get; set; } + + public ShrineResearcherDTO() + { + + } + + public ShrineResearcherDTO(ShrineResearcher researcher) + { + Id = researcher.Id; + VersionInfo = new ShrineVersionInfoDTO(researcher.VersionInfo); + UserName = researcher.UserName; + UserDomainName = researcher.UserDomainName; + NodeId = researcher.NodeId; + } + } + + public static class ShrineResearcherExtensions + { + public static ShrineResearcher ToReseacher(this ShrineResearcherDTO dto) + { + if (dto == null) return null; + return new ShrineResearcher + { + Id = dto.Id, + VersionInfo = dto.VersionInfo.ToVersionInfo(), + UserName = dto.UserName, + UserDomainName = dto.UserDomainName, + NodeId = dto.NodeId + }; + } + } +} + diff --git a/src/server/API/DTO/Integration/Shrine/ShrineResultProgressDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineResultProgressDTO.cs index 409408972..098b05912 100644 --- a/src/server/API/DTO/Integration/Shrine/ShrineResultProgressDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/ShrineResultProgressDTO.cs @@ -17,9 +17,9 @@ public class ShrineResultProgressDTO public string AdapterNodeName { get; set; } public ShrineQueryStatusDTO Status { get; set; } public string StatusMessage { get; set; } - public long CrcQueryInstanceId { get; set; } + public long? CrcQueryInstanceId { get; set; } public string EncodedClass { get; set; } - public int Count { get; set; } = -1; + public int? Count { get; set; } public ShrineResultObfuscatingParametersDTO ObfuscatingParameters { get; set; } public ShrineResultProgressDTO() { } @@ -33,9 +33,9 @@ public ShrineResultProgressDTO(ShrineResultProgress progress) AdapterNodeName = progress.AdapterNodeName; Status = new ShrineQueryStatusDTO(progress.Status); StatusMessage = progress.StatusMessage; - CrcQueryInstanceId = progress.CrcQueryInstanceId; + CrcQueryInstanceId = progress?.CrcQueryInstanceId; EncodedClass = progress.EncodedClass.ToString(); - Count = progress.Count; + Count = progress?.Count; ObfuscatingParameters = new ShrineResultObfuscatingParametersDTO(progress.ObfuscatingParameters); } } @@ -61,6 +61,8 @@ public static class ShrineResultProgressExtensions { public static ShrineResultProgress ToProgress(this ShrineResultProgressDTO dto) { + _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryStatusType type); + return new ShrineResultProgress { Id = dto.Id, @@ -71,8 +73,9 @@ public static ShrineResultProgress ToProgress(this ShrineResultProgressDTO dto) Status = dto.Status.ToStatus(), StatusMessage = dto.StatusMessage, CrcQueryInstanceId = dto.CrcQueryInstanceId, - Count = dto.Count, - ObfuscatingParameters = dto.ObfuscatingParameters?.ToParameters() + Count = dto.Count ?? -1, + ObfuscatingParameters = dto.ObfuscatingParameters?.ToParameters(), + EncodedClass = type }; } diff --git a/src/server/API/DTO/Integration/Shrine/ShrineRunQueryForResultDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineRunQueryForResultDTO.cs new file mode 100644 index 000000000..555fb88e7 --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/ShrineRunQueryForResultDTO.cs @@ -0,0 +1,53 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using API.DTO.Integration.Shrine4_1; +using Model.Integration.Shrine; + +namespace API.DTO.Integration.Shrine +{ + public class ShrineRunQueryForResultDTO + { + public ShrineQueryDTO Query { get; set; } + public ShrineNodeDTO Node { get; set; } + public ShrineTopicDTO Topic { get; set; } + public ShrineResultProgressDTO ResultProgress { get; set; } + public ShrineResearcherDTO Researcher { get; set; } + public int ProtocolVersion { get; set; } + + public ShrineRunQueryForResultDTO() + { + + } + + public ShrineRunQueryForResultDTO(ShrineRunQueryForResult runQueryForResult) + { + Query = new ShrineQueryDTO(runQueryForResult.Query); + Node = new ShrineNodeDTO(runQueryForResult.Node); + Topic = new ShrineTopicDTO(runQueryForResult.Topic); + ResultProgress = new ShrineResultProgressDTO(runQueryForResult.ResultProgress); + Researcher = new ShrineResearcherDTO(runQueryForResult.Researcher); + ProtocolVersion = runQueryForResult.ProtocolVersion; + } + } + + public static class ShrineRunQueryForResultExtensions + { + public static ShrineRunQueryForResult ToRunQueryForResult(this ShrineRunQueryForResultDTO dto) + { + if (dto == null) return null; + return new ShrineRunQueryForResult + { + Query = dto?.Query.ToQuery(), + Node = dto?.Node.ToNode(), + Topic = dto?.Topic.ToTopic(), + ResultProgress = dto?.ResultProgress.ToProgress(), + Researcher = dto?.Researcher.ToReseacher() + }; + } + } +} + diff --git a/src/server/API/DTO/Integration/Shrine/ShrineTopicDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineTopicDTO.cs new file mode 100644 index 000000000..577862503 --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/ShrineTopicDTO.cs @@ -0,0 +1,50 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine; + +namespace API.DTO.Integration.Shrine +{ + public class ShrineTopicDTO + { + public long Id { get; set; } + public ShrineVersionInfoDTO VersionInfo { get; set; } + public long ResearcherId { get; set; } + public string Name { get; set; } + public string Description { get; set; } + + public ShrineTopicDTO() + { + + } + + public ShrineTopicDTO(ShrineTopic topic) + { + Id = topic.Id; + VersionInfo = new ShrineVersionInfoDTO(topic.VersionInfo); + ResearcherId = topic.ResearcherId; + Name = topic.Name; + Description = topic.Description; + } + } + + public static class ShrineTopicExtensions + { + public static ShrineTopic ToTopic(this ShrineTopicDTO dto) + { + if (dto == null) return null; + return new ShrineTopic + { + Id = dto.Id, + VersionInfo = dto.VersionInfo.ToVersionInfo(), + ResearcherId = dto.ResearcherId, + Name = dto.Name, + Description = dto.Description + }; + } + } +} + diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs index 180f36eaf..684615f85 100644 --- a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs +++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs @@ -24,7 +24,7 @@ public IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery) { return new PanelDTO { - IncludePanel = conceptGroup.NMustBeTrue > 0, + IncludePanel = conceptGroup.Concepts.NMustBeTrue > 0, Index = i, Domain = PanelDomain.Panel, DateFilter = conceptGroup.StartDate.HasValue ? @@ -40,7 +40,7 @@ public IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery) { IncludeSubPanel = true, Index = 0, - MinimumCount = conceptGroup.NMustBeTrue, + MinimumCount = conceptGroup.OccursAtLeast.HasValue ? (int)conceptGroup.OccursAtLeast : 1, PanelIndex = i, PanelItems = conceptGroup.Concepts.Possibilities.Select((c,j) => { @@ -132,7 +132,7 @@ public ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery) public static long GenerateRandomLongId() { - return LongRandom(100000000000000000, 999999999999999999, new Random()); + return LongRandom(10000000000000000, 999999999999999999, new Random()); } static long LongRandom(long min, long max, Random rand) diff --git a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs index e11cb8a6f..b71feabf4 100644 --- a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs +++ b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs @@ -19,7 +19,7 @@ namespace API.Integration.Shrine public interface IShrineMessageBroker { Task<(HttpResponseMessage, ShrineDeliveryContents)> ReadHubMessageAndAcknowledge(); - Task SendMessageToHub(ShrineDeliveryContents contents); + Task SendMessageToHub(ShrineDeliveryContents contents); } public class ShrineMessageBroker : IShrineMessageBroker @@ -38,7 +38,7 @@ public ShrineMessageBroker(HttpClient client, IOptions opts) { var req = new HttpRequestMessage { - RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/receiveMessage/{opts.LocalNodeName}?timeOutSeconds={TimeOutSeconds}"), + RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/receiveMessage/{opts.Node.Name}?timeOutSeconds={TimeOutSeconds}"), Method = HttpMethod.Get }; @@ -66,7 +66,7 @@ public ShrineMessageBroker(HttpClient client, IOptions opts) return (resp, contents.ToContents()); } - public async Task SendMessageToHub(ShrineDeliveryContents contents) + public async Task SendMessageToHub(ShrineDeliveryContents contents) { var request = new HttpRequestMessage { @@ -78,8 +78,10 @@ public async Task SendMessageToHub(ShrineDeliveryContents contents) "application/x-www-form-urlencoded" ) }; - _ = await client.SendAsync(request); + var response = await client.SendAsync(request); request.Dispose(); + + return response; } private static string GetDeliveryAttemptId(string body) diff --git a/src/server/API/Jobs/BackgroundShrineCacheSynchronizer.cs b/src/server/API/Jobs/BackgroundShrineCacheSynchronizer.cs new file mode 100644 index 000000000..82f338f7f --- /dev/null +++ b/src/server/API/Jobs/BackgroundShrineCacheSynchronizer.cs @@ -0,0 +1,68 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; +using Model.Integration.Shrine; +using System.Threading; +using System.Threading.Tasks; + +namespace API.Jobs +{ + public class BackgroundShrineCacheSynchronizer : BackgroundService + { + readonly ILogger logger; + readonly IShrineQueryResultCache queryResultCache; + readonly IShrineUserQueryCache userQueryCache; + readonly int cacheDeleteFrequencyMinutes = 60; + + DateTime? lastCacheDelete; + + public BackgroundShrineCacheSynchronizer( + ILogger logger, + IShrineQueryResultCache queryResultCache, + IShrineUserQueryCache userQueryCache) + { + this.logger = logger; + this.queryResultCache = queryResultCache; + this.userQueryCache = userQueryCache; + } + + protected override async Task ExecuteAsync(CancellationToken stoppingToken) + { + logger.LogInformation("BackgroundShrineCacheSynchronizer is starting"); + + stoppingToken.Register(() => + { + logger.LogInformation("BackgroundShrineCacheSynchronizer is stopped"); + }); + + while (!stoppingToken.IsCancellationRequested) + { + try + { + if (lastCacheDelete == null) continue; + logger.LogInformation($"BackgroundShrineCacheSynchronizer will delete old cached records older than {cacheDeleteFrequencyMinutes} minutes"); + + var resultCount = queryResultCache.DeleteOlderThan((DateTime)lastCacheDelete); + var queryCount = userQueryCache.DeleteOlderThan((DateTime)lastCacheDelete); + lastCacheDelete = DateTime.Now; + + logger.LogInformation("BackgroundShrineCacheSynchronizer deleted {resultCount} results and {queryCount} queries", resultCount, queryCount); + } + catch (Exception ex) + { + logger.LogError("BackgroundShrineCacheSynchronizer failed to clear caches. Error: {Error}", ex.ToString()); + } + finally + { + await Task.Delay(TimeSpan.FromMinutes(cacheDeleteFrequencyMinutes)); + } + } + } + } +} + diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs index 10ce08dba..9adf77055 100644 --- a/src/server/API/Jobs/BackgroundShrinePollingService.cs +++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs @@ -7,6 +7,7 @@ using System.Threading; using System.Threading.Tasks; using API.DTO.Integration.Shrine; +using API.DTO.Cohort; using API.Authorization; using API.Integration.Shrine; using API.Integration.Shrine4_1; @@ -17,8 +18,9 @@ using Model.Cohort; using Model.Integration.Shrine; using Newtonsoft.Json; -using API.DTO.Cohort; using Model.Compiler; +using Model.Options; +using Microsoft.Extensions.Options; namespace API.Jobs { @@ -29,7 +31,7 @@ public class BackgroundShrinePollingService : BackgroundService readonly IShrineQueryResultCache queryResultCache; readonly IShrineUserQueryCache userQueryCache; readonly IServiceScopeFactory serviceScopeFactory; - readonly CohortCounter counter; + readonly SHRINEOptions opts; readonly ShrineQueryDefinitionConverter converter; readonly int ErrorPauseSeconds = 30; @@ -39,8 +41,8 @@ public BackgroundShrinePollingService( IShrineQueryResultCache queryResultCache, IShrineUserQueryCache userQueryCache, IServiceScopeFactory serviceScopeFactory, - ShrineQueryDefinitionConverter converter, - CohortCounter counter + IOptions opts, + ShrineQueryDefinitionConverter converter ) { this.logger = logger; @@ -49,7 +51,7 @@ CohortCounter counter this.userQueryCache = userQueryCache; this.serviceScopeFactory = serviceScopeFactory; this.converter = converter; - this.counter = counter; + this.opts = opts.Value; } protected override async Task ExecuteAsync(CancellationToken stoppingToken) @@ -75,6 +77,8 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) } } + + _ = Task.Run(async () => { switch (message.ContentsType) @@ -85,8 +89,20 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) break; case ShrineDeliveryContentsType.RunQueryForResult: - var run = JsonConvert.DeserializeObject(message.Contents); - await HandleRunQueryForResultMessage(run, stoppingToken); + try + { + var dto = JsonConvert.DeserializeObject(message.Contents); + var run = dto.ToRunQueryForResult(); + await HandleRunQueryForResultMessage(run, stoppingToken); + } + catch (JsonSerializationException ex) + { + logger.LogError("BackgroundShrinePollingService failed to parse SHRINE message. Error: {Error}", ex.ToString()); + } + catch (Exception ex) + { + logger.LogError("BackgroundShrinePollingService failed to parse SHRINE message. Error: {Error}", ex.ToString()); + } break; case ShrineDeliveryContentsType.Result: @@ -106,7 +122,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) catch (Exception e) { logger.LogError("BackgroundShrinePollingService failed to synchronize with SHRINE. Error: {Error}", e.ToString()); - logger.LogError($"BackgroundShrinePollingService pausing {ErrorPauseSeconds} seconds."); + logger.LogInformation($"BackgroundShrinePollingService pausing {ErrorPauseSeconds} seconds."); await Task.Delay(TimeSpan.FromSeconds(ErrorPauseSeconds), stoppingToken); } } @@ -129,30 +145,14 @@ void HandleResultMessage(ShrineResultProgress progress) async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run, CancellationToken stoppingToken) { - IUserContext user; - IPatientCountQueryDTO query; - var cached = userQueryCache.GetOrDefault(run.Query.Id); - - // If run by a Leaf user, grab from cache - if (cached != null) - { - user = cached.User; - query = cached.Query; - } - - // Else not from Leaf, so set user context and transform query defintion - else - { - user = new ShrineUserContext(run.Researcher); - query = converter.ToLeafQuery(run.Query); - } + var (user, query) = GetContext(run); // Create scope to ensure query run as this user using (var scope = serviceScopeFactory.CreateAsyncScope()) { - var userContextProvider = scope.ServiceProvider.GetRequiredService(); + var userContextProvider = scope.ServiceProvider.GetRequiredService(); userContextProvider.SetUserContext(user); - queryResultCache.Put(run.Query.Id, run.Researcher); + var counter = scope.ServiceProvider.GetRequiredService(); var cohort = await counter.Count(query, stoppingToken); var count = new CohortCountDTO(cohort); @@ -162,13 +162,46 @@ async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run, Cancellat // TODO Respond with error } + queryResultCache.Put(run.Query.Id, run.Researcher); + + var result = new ShrineResultProgress + { + Id = 1, //ShrineQueryDefinitionConverter.GenerateRandomLongId(), + VersionInfo = new ShrineVersionInfo { }, + QueryId = run.Query.Id, + AdapterNodeId = opts.Node.Id, + AdapterNodeName = opts.Node.Name, + Status = new ShrineQueryStatus { EncodedClass = ShrineQueryStatusType.ResultFromCRC }, + StatusMessage = "FINISHED", + Count = count.Result.Value, + ObfuscatingParameters = new ShrineResultObfuscatingParameters + { + BinSize = 5, StdDev = 6.5M, NoiseClamp = count.Result.PlusMinus, LowLimit = 10 // TODO don't hardcode + }, + EncodedClass = ShrineQueryStatusType.CrcResult + }; var response = new ShrineDeliveryContents { - // TODO Respond with count in SHRINE format + ContentsSubject = run.Query.Id, + Contents = JsonConvert.SerializeObject(result) }; - // _ = await broker.SendMessageToHub() + _ = await broker.SendMessageToHub(response); } } + + (IUserContext, IPatientCountQueryDTO) GetContext(ShrineRunQueryForResult run) + { + var cached = userQueryCache.GetOrDefault(run.Query.Id); + + // If run by a Leaf user, grab from cache + if (cached != null) + { + return (cached.User, cached.Query); + } + + // Else not from Leaf, so set user context and transform query defintion + return (new ShrineUserContext(run.Researcher), converter.ToLeafQuery(run.Query)); + } } } diff --git a/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs b/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs index f153604e6..2e3d50a8e 100644 --- a/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs +++ b/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs @@ -15,9 +15,9 @@ public class RejectInvalidFederatedUserMiddleware : IMiddleware readonly IUserContext user; readonly ILogger logger; - public RejectInvalidFederatedUserMiddleware(IUserContextProvider userContextProvider, ILogger logger) + public RejectInvalidFederatedUserMiddleware(IUserContext user, ILogger logger) { - this.user = userContextProvider.GetUserContext(); + this.user = user; this.logger = logger; } diff --git a/src/server/API/Options/Config.Integration.cs b/src/server/API/Options/Config.Integration.cs index 7116fac35..1528b1117 100644 --- a/src/server/API/Options/Config.Integration.cs +++ b/src/server/API/Options/Config.Integration.cs @@ -18,8 +18,19 @@ public static class SHRINE public const string Section = @"Integration:SHRINE"; public const string Enabled = @"Integration:SHRINE:Enabled"; public const string HubApiURI = @"Integration:SHRINE:HubApiURI"; - public const string NodeId = @"Integration:SHRINE:LocalNodeId"; - public const string NodeName = @"Integration:SHRINE:LocalNodeName"; + + public static class Node + { + public const string Id = @"Integration:SHRINE:Node:Id"; + public const string Name = @"Integration:SHRINE:Node:Name"; + } + + public static class Topic + { + public const string Id = @"Integration:SHRINE:Topic:Id"; + public const string Name = @"Integration:SHRINE:Topic:Name"; + public const string Description = @"Integration:SHRINE:Topic:Description"; + } } } } diff --git a/src/server/API/Options/StartupExtensions.Options.cs b/src/server/API/Options/StartupExtensions.Options.cs index b524277ce..30102236f 100644 --- a/src/server/API/Options/StartupExtensions.Options.cs +++ b/src/server/API/Options/StartupExtensions.Options.cs @@ -267,8 +267,17 @@ static IServiceCollection ConfigureIntegrationOptions(this IServiceCollection se { Enabled = shrineEnabled, HubApiURI = config.GetValue(Config.Integration.SHRINE.HubApiURI), - LocalNodeId = config.GetValue(Config.Integration.SHRINE.NodeId), - LocalNodeName = config.GetValue(Config.Integration.SHRINE.NodeName), + Node = new SHRINEOptions.LocalNode + { + Id = config.GetValue(Config.Integration.SHRINE.Node.Id), + Name = config.GetValue(Config.Integration.SHRINE.Node.Name) + }, + Topic = new SHRINEOptions.DefaultTopic + { + Id = config.GetValue(Config.Integration.SHRINE.Topic.Id), + Name = config.GetValue(Config.Integration.SHRINE.Topic.Name), + Description = config.GetValue(Config.Integration.SHRINE.Topic.Description) + } }; services.Configure(opts => diff --git a/src/server/API/Options/StartupExtensions.Services.cs b/src/server/API/Options/StartupExtensions.Services.cs index 57f935c82..7cfac1a5e 100644 --- a/src/server/API/Options/StartupExtensions.Services.cs +++ b/src/server/API/Options/StartupExtensions.Services.cs @@ -62,8 +62,8 @@ public static IServiceCollection RegisterLeafServices( { services.AddHttpContextAccessor(); - services.AddScoped(); services.AddScoped(); + services.AddScoped(); services.AddTransient(); services.AddTransient(); @@ -203,8 +203,9 @@ static IServiceCollection AddIntegrationServices(this IServiceCollection service if (integrationOpts.SHRINE.Enabled) { services.AddHostedService(); - services.AddTransient(); + services.AddHostedService(); services.AddTransient(); + services.AddTransient(); services.AddSingleton(); services.AddSingleton(); diff --git a/src/server/Model/Authorization/UserContextProvider.cs b/src/server/Model/Authorization/UserContextProvider.cs index 8349323c6..7a895ad8f 100644 --- a/src/server/Model/Authorization/UserContextProvider.cs +++ b/src/server/Model/Authorization/UserContextProvider.cs @@ -4,6 +4,8 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using Model.Error; + namespace Model.Authorization { public interface IUserContextProvider @@ -19,18 +21,19 @@ public class UserContextProvider : IUserContextProvider public UserContextProvider(IUserContext userContext = null) { if (userContext != null) - { + { this.userContext = userContext; } } - public void SetUserContext(IUserContext userContext) + public void SetUserContext(IUserContext userContext) { this.userContext = userContext; } public IUserContext GetUserContext() { + if (userContext == null) throw new LeafAuthorizationException("No user context is available"); return userContext; } } diff --git a/src/server/Model/Cohort/DemographicProvider.cs b/src/server/Model/Cohort/DemographicProvider.cs index 987c4fd88..50a81b375 100644 --- a/src/server/Model/Cohort/DemographicProvider.cs +++ b/src/server/Model/Cohort/DemographicProvider.cs @@ -41,8 +41,8 @@ Task ExecuteDemographicsAsync( readonly DeidentificationOptions deidentOpts; readonly ILogger log; - public DemographicProvider ( - IUserContextProvider userContextProvider, + public DemographicProvider( + IUserContext user, DemographicCompilerValidationContextProvider contextProvider, IOptions clientOpts, IOptions deidentOpts, @@ -50,7 +50,7 @@ public DemographicProvider ( IDemographicsExecutor executor, ILogger log) { - this.user = userContextProvider.GetUserContext(); + this.user = user; this.contextProvider = contextProvider; this.compiler = compiler; this.executor = executor; diff --git a/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs b/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs index 74e5af5dc..7abf52b60 100644 --- a/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs +++ b/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs @@ -22,11 +22,11 @@ public class PanelSqlCompiler : IPanelSqlCompiler readonly CompilerOptions compilerOptions; public PanelSqlCompiler( - IUserContextProvider userContextProvider, + IUserContext user, ISqlDialect dialect, IOptions compilerOptions) { - this.user = userContextProvider.GetUserContext(); + this.user = user; this.dialect = dialect; this.compilerOptions = compilerOptions.Value; } diff --git a/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs index 516856130..1b1a7a0a5 100644 --- a/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs +++ b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs @@ -20,13 +20,13 @@ public interface IShrineQueryResultCache : IEnumerable void Put(ShrineResultProgress nodeResult); void Put(long id, ShrineResearcher user); void Put(IEnumerable nodeResults); - void DeleteOlderThan(DateTime earliest); + int DeleteOlderThan(DateTime earliest); } public class ShrineQueryResultCache : IShrineQueryResultCache { - readonly Dictionary store; - readonly ReaderWriterLockSlim sync; + readonly Dictionary store = new Dictionary(); + readonly ReaderWriterLockSlim sync = new ReaderWriterLockSlim(); public ShrineQueryResultCache(IEnumerable initial) { @@ -108,17 +108,22 @@ public ShrineQueryResult PopOrDefault(long id) return result; } - public void DeleteOlderThan(DateTime earliest) + public int DeleteOlderThan(DateTime earliest) { - sync.EnterReadLock(); + var deleteCount = 0; + + sync.EnterWriteLock(); foreach (var result in All()) { if (result.Updated < earliest) { store.Remove(result.Id, out var _); + deleteCount++; } } - sync.ExitReadLock(); + sync.ExitWriteLock(); + + return deleteCount; } public IEnumerator GetEnumerator() diff --git a/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs b/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs index 5bab84999..9733adbe0 100644 --- a/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs +++ b/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs @@ -18,13 +18,13 @@ public interface IShrineUserQueryCache : IEnumerable ShrineUserQueryEntry GetOrDefault(long id); ShrineUserQueryEntry PopOrDefault(long id); void Put(long id, IUserContext user, IPatientCountQueryDTO query); - void DeleteOlderThan(DateTime earliest); + int DeleteOlderThan(DateTime earliest); } public class ShrineUserContextCache : IShrineUserQueryCache { - readonly Dictionary store; - readonly ReaderWriterLockSlim sync; + readonly Dictionary store = new Dictionary(); + readonly ReaderWriterLockSlim sync = new ReaderWriterLockSlim(); public IEnumerable All() { @@ -57,17 +57,22 @@ public void Put(long id, IUserContext user, IPatientCountQueryDTO query) sync.ExitWriteLock(); } - public void DeleteOlderThan(DateTime earliest) + public int DeleteOlderThan(DateTime earliest) { - sync.EnterReadLock(); + var deleteCount = 0; + + sync.EnterWriteLock(); foreach (var user in All()) { if (user.Added < earliest) { store.Remove(user.QueryId, out var _); + deleteCount++; } } - sync.ExitReadLock(); + sync.ExitWriteLock(); + + return deleteCount; } public IEnumerator GetEnumerator() diff --git a/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs b/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs index 2a5772fba..710108bbc 100644 --- a/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs +++ b/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs @@ -14,6 +14,7 @@ public class ShrineQueryStatus public enum ShrineQueryStatusType { Unknown, + SentToAdapters, ReceivedAtHub, UpdateQueryAtQepWithStatus, UpdateQueryReadyForAdapters, @@ -21,7 +22,8 @@ public enum ShrineQueryStatusType SubmittedToCRC, ResultProgress, ReceivedByAdapter, - CrcResult + CrcResult, + ResultFromCRC } } diff --git a/src/server/Model/Integration/Shrine/ShrineResultProgress.cs b/src/server/Model/Integration/Shrine/ShrineResultProgress.cs index 45e96fef4..1efa7d141 100644 --- a/src/server/Model/Integration/Shrine/ShrineResultProgress.cs +++ b/src/server/Model/Integration/Shrine/ShrineResultProgress.cs @@ -16,7 +16,7 @@ public class ShrineResultProgress public string AdapterNodeName { get; set; } public ShrineQueryStatus Status { get; set; } public string StatusMessage { get; set; } - public long CrcQueryInstanceId { get; set; } + public long? CrcQueryInstanceId { get; set; } public ShrineQueryStatusType EncodedClass { get; set; } public int Count { get; set; } = -1; public ShrineResultObfuscatingParameters ObfuscatingParameters { get; set; } diff --git a/src/server/Model/Notification/NotificationManager.cs b/src/server/Model/Notification/NotificationManager.cs index f784a4eb1..3c19fecf4 100644 --- a/src/server/Model/Notification/NotificationManager.cs +++ b/src/server/Model/Notification/NotificationManager.cs @@ -30,11 +30,11 @@ public enum ContentType readonly IUserContext user; readonly ILogger log; - public NotificationManager(INotificationService service, ILogger log, IUserContextProvider userContextProvider) + public NotificationManager(INotificationService service, ILogger log, IUserContext user) { svc = service; this.log = log; - this.user = userContextProvider.GetUserContext(); + this.user = user; } public async Task SendUserInquiry(UserInquiry inquiry) diff --git a/src/server/Model/Options/IntegrationOptions.cs b/src/server/Model/Options/IntegrationOptions.cs index bf5388f62..ae721aaf9 100644 --- a/src/server/Model/Options/IntegrationOptions.cs +++ b/src/server/Model/Options/IntegrationOptions.cs @@ -17,8 +17,21 @@ public class SHRINEOptions : IEnabled { public bool Enabled { get; set; } = false; public string HubApiURI { get; set; } - public long LocalNodeId { get; set; } - public string LocalNodeName { get; set; } + public LocalNode Node { get; set; } + public DefaultTopic Topic { get; set; } + + public class LocalNode + { + public long Id { get; set; } + public string Name { get; set; } + } + + public class DefaultTopic + { + public long Id { get; set; } + public string Name { get; set; } + public string Description { get; set; } + } } } diff --git a/src/server/Model/Search/PreflightResourceChecker.cs b/src/server/Model/Search/PreflightResourceChecker.cs index b91e9a33f..dc1c24cfe 100644 --- a/src/server/Model/Search/PreflightResourceChecker.cs +++ b/src/server/Model/Search/PreflightResourceChecker.cs @@ -46,7 +46,7 @@ public PreflightResourceChecker( ILogger log) { this.reader = reader; - this.user = userContextProvider.GetUserContext(0); + this.user = userContextProvider.GetUserContext(); this.log = log; } diff --git a/src/server/Model/Search/QueryManager.cs b/src/server/Model/Search/QueryManager.cs index d7212429d..d968a86aa 100644 --- a/src/server/Model/Search/QueryManager.cs +++ b/src/server/Model/Search/QueryManager.cs @@ -48,14 +48,14 @@ public QueryManager( IQueryService service, IOptions obfuscationOptions, ILogger log, - IUserContextProvider userContextProvider, + IUserContext user, PanelConverter converter, PanelValidator validator) { this.service = service; this.deidentOpts = obfuscationOptions.Value; this.log = log; - this.user = userContextProvider.GetUserContext(); + this.user = user; this.converter = converter; this.validator = validator; } diff --git a/src/server/Services/Admin/Compiler/AdminConceptEventService.cs b/src/server/Services/Admin/Compiler/AdminConceptEventService.cs index 663198c25..22cdd148e 100644 --- a/src/server/Services/Admin/Compiler/AdminConceptEventService.cs +++ b/src/server/Services/Admin/Compiler/AdminConceptEventService.cs @@ -23,10 +23,10 @@ public class AdminConceptEventService : AdminConceptEventManager.IAdminConceptEv public AdminConceptEventService( IOptions options, - IUserContextProvider userContextProvider) + IUserContext user) { opts = options.Value; - user = userContextProvider.GetUserContext(); + this.user = user; } public async Task CreateAsync(ConceptEvent ev) diff --git a/src/server/Services/Admin/Compiler/AdminConceptService.cs b/src/server/Services/Admin/Compiler/AdminConceptService.cs index b94d32490..ad75183dc 100644 --- a/src/server/Services/Admin/Compiler/AdminConceptService.cs +++ b/src/server/Services/Admin/Compiler/AdminConceptService.cs @@ -27,10 +27,10 @@ public class AdminConceptService : AdminConceptManager.IAdminConceptService public AdminConceptService( IOptions options, - IUserContextProvider userContextProvider) + IUserContext user) { opts = options.Value; - user = userContextProvider.GetUserContext(); + this.user = user; } public async Task CreateAsync(AdminConcept c) diff --git a/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs b/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs index c408340bd..d713b3a4f 100644 --- a/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs +++ b/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs @@ -28,11 +28,11 @@ public class AdminConceptSqlSetService : AdminConceptSqlSetManager.IAdminConcept public AdminConceptSqlSetService( ILogger logger, IOptions options, - IUserContextProvider userContextProvider) + IUserContext user) { this.logger = logger; opts = options.Value; - user = userContextProvider.GetUserContext(); + this.user = user; } public async Task CreateAsync(ConceptSqlSet set) diff --git a/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs b/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs index 144f81295..0a4d81837 100644 --- a/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs +++ b/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs @@ -23,10 +23,10 @@ public class AdminDatasetCategoryService : AdminDatasetCategoryManager.IAdminDat readonly AppDbOptions opts; public AdminDatasetCategoryService( - IUserContextProvider userContextProvider, + IUserContext user, IOptions opts) { - user = userContextProvider.GetUserContext(); + this.user = user; this.opts = opts.Value; } diff --git a/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs b/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs index 935dab18b..d5c284f25 100644 --- a/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs +++ b/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs @@ -26,10 +26,10 @@ public class AdminDatasetQueryService : AdminDatasetQueryManager.IAdminDatasetQu readonly AppDbOptions opts; readonly IUserContext user; - public AdminDatasetQueryService(IOptions opts, IUserContextProvider userContextProvider) + public AdminDatasetQueryService(IOptions opts, IUserContext user) { this.opts = opts.Value; - user = userContextProvider.GetUserContext(); + this.user = user; } public async Task GetDatasetQueryByIdAsync(Guid id) diff --git a/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs b/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs index 642c6cdfe..a66a93663 100644 --- a/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs +++ b/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs @@ -22,10 +22,10 @@ public class AdminDemographicQueryService : AdminDemographicsManager.IAdminDemog readonly AppDbOptions opts; readonly IUserContext user; - public AdminDemographicQueryService(IOptions opts, IUserContextProvider userContextProvider) + public AdminDemographicQueryService(IOptions opts, IUserContext user) { this.opts = opts.Value; - this.user = userContextProvider.GetUserContext(); + this.user = user; } public async Task GetDemographicQueryAsync() diff --git a/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs b/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs index 8c10a3e7d..93647c4d4 100644 --- a/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs +++ b/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs @@ -21,10 +21,10 @@ public class AdminGlobalPanelFilterService : AdminGlobalPanelFilterManager.IAdmi readonly AppDbOptions opts; readonly IUserContext user; - public AdminGlobalPanelFilterService(IOptions opts, IUserContextProvider userContextProvider) + public AdminGlobalPanelFilterService(IOptions opts, IUserContext user) { this.opts = opts.Value; - this.user = userContextProvider.GetUserContext(); + this.user = user; } public async Task> GetAsync() diff --git a/src/server/Services/Admin/Compiler/AdminSpecializationService.cs b/src/server/Services/Admin/Compiler/AdminSpecializationService.cs index cb7e75e25..c57b308dc 100644 --- a/src/server/Services/Admin/Compiler/AdminSpecializationService.cs +++ b/src/server/Services/Admin/Compiler/AdminSpecializationService.cs @@ -25,10 +25,10 @@ public class AdminSpecializationService : AdminSpecializationManager.IAdminSpeci public AdminSpecializationService( IOptions options, - IUserContextProvider userContextProvider) + IUserContext user) { opts = options.Value; - user = userContextProvider.GetUserContext(); + this.user = user; } public async Task CreateAsync(Specialization spec) diff --git a/src/server/Services/Admin/Network/AdminNetworkEndpointUpdater.cs b/src/server/Services/Admin/Network/AdminNetworkEndpointUpdater.cs index 7872c9635..81dcf67da 100644 --- a/src/server/Services/Admin/Network/AdminNetworkEndpointUpdater.cs +++ b/src/server/Services/Admin/Network/AdminNetworkEndpointUpdater.cs @@ -24,10 +24,10 @@ public class AdminNetworkEndpointUpdater : AdminNetworkEndpointManager.IAdminNet public AdminNetworkEndpointUpdater( IOptions dbOptions, - IUserContextProvider userContextProvider) + IUserContext user) { opts = dbOptions.Value; - this.user = userContextProvider.GetUserContext(); + this.user = user; } public async Task UpdateEndpointAsync(NetworkEndpoint item) diff --git a/src/server/Services/Admin/Notification/ServerStateService.cs b/src/server/Services/Admin/Notification/ServerStateService.cs index 9fa15667b..922b939b4 100644 --- a/src/server/Services/Admin/Notification/ServerStateService.cs +++ b/src/server/Services/Admin/Notification/ServerStateService.cs @@ -22,10 +22,10 @@ public class AdminServerStateService : AdminServerStateManager.IAdminServerState readonly AppDbOptions opts; readonly IUserContext user; - public AdminServerStateService(IOptions opts, IUserContextProvider userContextProvider) + public AdminServerStateService(IOptions opts, IUserContext user) { this.opts = opts.Value; - this.user = userContextProvider.GetUserContext(); + this.user = user; } public async Task GetServerStateAsync() diff --git a/src/server/Services/Cohort/CachedCohortFetcher.cs b/src/server/Services/Cohort/CachedCohortFetcher.cs index 77bd2fa0c..3d3b6ce9c 100644 --- a/src/server/Services/Cohort/CachedCohortFetcher.cs +++ b/src/server/Services/Cohort/CachedCohortFetcher.cs @@ -24,10 +24,10 @@ public class CachedCohortFetcher : ICachedCohortFetcher readonly AppDbOptions dbOptions; readonly IUserContext user; - public CachedCohortFetcher(IOptions dbOptions, IUserContextProvider userContextProvider) + public CachedCohortFetcher(IOptions dbOptions, IUserContext user) { this.dbOptions = dbOptions.Value; - this.user = userContextProvider.GetUserContext(); + this.user = user; } public async Task> FetchCohortAsync(Guid queryId, bool exportedOnly) diff --git a/src/server/Services/Cohort/CohortCacheService.cs b/src/server/Services/Cohort/CohortCacheService.cs index 426d29ee3..b345bd345 100644 --- a/src/server/Services/Cohort/CohortCacheService.cs +++ b/src/server/Services/Cohort/CohortCacheService.cs @@ -70,7 +70,7 @@ ILogger logger } var cohortTable = new PatientCohortTable(queryId, cohort.SeasonedPatients(exportLimit, queryId)); - rowCount = cohortTable.Rows.Count(); + rowCount = cohortTable.Rows.Length; using (var bc = new SqlBulkCopy(cn)) { diff --git a/src/server/Services/Cohort/DatasetExecutor.cs b/src/server/Services/Cohort/DatasetExecutor.cs index fa143b8c9..433486ace 100644 --- a/src/server/Services/Cohort/DatasetExecutor.cs +++ b/src/server/Services/Cohort/DatasetExecutor.cs @@ -27,13 +27,13 @@ public class DatasetExecutor : DatasetProvider.IDatasetExecutor readonly DeidentificationOptions deidentOpts; public DatasetExecutor( - IUserContextProvider userContextProvider, + IUserContext user, ISqlProviderQueryExecutor queryExecutor, ILogger log, IOptions dbOpts, IOptions deidentOpts) { - this.user = userContextProvider.GetUserContext(); + this.user = user; this.queryExecutor = queryExecutor; this.log = log; this.dbOpts = dbOpts.Value; diff --git a/src/server/Services/Cohort/DemographicsExecutor.cs b/src/server/Services/Cohort/DemographicsExecutor.cs index 4271ea776..b9c61994e 100644 --- a/src/server/Services/Cohort/DemographicsExecutor.cs +++ b/src/server/Services/Cohort/DemographicsExecutor.cs @@ -28,7 +28,7 @@ public class DemographicsExecutor : DemographicProvider.IDemographicsExecutor readonly DeidentificationOptions deidentOpts; public DemographicsExecutor( - IUserContextProvider userContextProvider, + IUserContext user, ISqlProviderQueryExecutor queryExecutor, ILogger log, IOptions dbOpts, @@ -37,7 +37,7 @@ public DemographicsExecutor( this.log = log; this.dbOpts = dbOpts.Value; this.deidentOpts = deidentOpts.Value; - this.user = userContextProvider.GetUserContext(); + this.user = user; this.queryExecutor = queryExecutor; } diff --git a/src/server/Services/Import/ImportService.cs b/src/server/Services/Import/ImportService.cs index 51a1231e1..ff07de15f 100644 --- a/src/server/Services/Import/ImportService.cs +++ b/src/server/Services/Import/ImportService.cs @@ -34,12 +34,12 @@ public class ImportService : DataImporter.IImportService public ImportService( IOptions dbOptions, ILogger logger, - IUserContextProvider userContextProvider + IUserContext user ) { this.dbOptions = dbOptions.Value; this.logger = logger; - this.user = userContextProvider.GetUserContext(); + this.user = user; } public async Task> GetAllImportMetadataAsync() diff --git a/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs b/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs index cad8910e7..a96ffb971 100644 --- a/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs +++ b/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs @@ -33,11 +33,11 @@ public class ConceptDatasetCompilerContextProvider : ConceptDatasetCompilerValid readonly ILogger log; public ConceptDatasetCompilerContextProvider( - IUserContextProvider userContextProvider, + IUserContext user, IOptions options, ILogger logger) { - user = userContextProvider.GetUserContext(); + this.user = user; opts = options.Value; log = logger; } diff --git a/src/server/Services/Search/ConceptHintSearchService.cs b/src/server/Services/Search/ConceptHintSearchService.cs index 8b6ba29c8..6a7d39d64 100644 --- a/src/server/Services/Search/ConceptHintSearchService.cs +++ b/src/server/Services/Search/ConceptHintSearchService.cs @@ -28,10 +28,10 @@ public class ConceptHintSearchService : ConceptHintSearcher.IConceptHintSearchSe readonly AppDbOptions opts; readonly IUserContext user; - public ConceptHintSearchService(IOptions dbOptions, IUserContextProvider userContextProvider) + public ConceptHintSearchService(IOptions dbOptions, IUserContext user) { opts = dbOptions.Value; - user = userContextProvider.GetUserContext(); + this.user = user; } /// diff --git a/src/server/Services/Search/ConceptTreeReader.cs b/src/server/Services/Search/ConceptTreeReader.cs index af37ea58a..7a6d2510b 100644 --- a/src/server/Services/Search/ConceptTreeReader.cs +++ b/src/server/Services/Search/ConceptTreeReader.cs @@ -38,10 +38,10 @@ public class ConceptTreeReader : ConceptTreeSearcher.IConceptTreeReader readonly AppDbOptions opts; readonly IUserContext user; - public ConceptTreeReader(IOptions dbOpts, IUserContextProvider userContextProvider) + public ConceptTreeReader(IOptions dbOpts, IUserContext user) { opts = dbOpts.Value; - user = userContextProvider.GetUserContext(); + this.user = user; } public async Task GetAsync(Guid id) diff --git a/src/server/Services/Search/DatasetCompilerContextProvider.cs b/src/server/Services/Search/DatasetCompilerContextProvider.cs index bbd60576d..a7a980180 100644 --- a/src/server/Services/Search/DatasetCompilerContextProvider.cs +++ b/src/server/Services/Search/DatasetCompilerContextProvider.cs @@ -33,11 +33,11 @@ public class DatasetCompilerContextProvider : DatasetCompilerValidationContextPr }; public DatasetCompilerContextProvider( - IUserContextProvider userContextProvider, + IUserContext user, IOptions dbOptions, ILogger logger) { - user = userContextProvider.GetUserContext(); + this.user = user; log = logger; opts = dbOptions.Value; } diff --git a/src/server/Services/Search/DatasetQueryFetcher.cs b/src/server/Services/Search/DatasetQueryFetcher.cs index 8d7c09add..561a5c422 100644 --- a/src/server/Services/Search/DatasetQueryFetcher.cs +++ b/src/server/Services/Search/DatasetQueryFetcher.cs @@ -24,10 +24,10 @@ public class DatasetQueryFetcher : IDatasetQueryFetcher readonly AppDbOptions opts; public DatasetQueryFetcher( - IUserContextProvider userContextProvider, + IUserContext user, IOptions dbOptions) { - user = userContextProvider.GetUserContext(); + this.user = user; opts = dbOptions.Value; } diff --git a/src/server/Services/Search/DemographicCompilerContextProvider.cs b/src/server/Services/Search/DemographicCompilerContextProvider.cs index 881541bdf..ef4963357 100644 --- a/src/server/Services/Search/DemographicCompilerContextProvider.cs +++ b/src/server/Services/Search/DemographicCompilerContextProvider.cs @@ -29,11 +29,11 @@ public class DemographicCompilerContextProvider : DemographicCompilerValidationC readonly ILogger log; public DemographicCompilerContextProvider( - IUserContextProvider userContextProvider, + IUserContext user, IOptions options, ILogger logger) { - user = userContextProvider.GetUserContext(); + this.user = user; opts = options.Value; log = logger; } diff --git a/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs b/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs index 3e27e81bb..6c0baddf1 100644 --- a/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs +++ b/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs @@ -36,11 +36,11 @@ public class PanelDatasetCompilerContextProvider : PanelDatasetCompilerValidatio }; public PanelDatasetCompilerContextProvider( - IUserContextProvider userContextProvider, + IUserContext user, IOptions options, ILogger logger) { - user = userContextProvider.GetUserContext(); + this.user = user; opts = options.Value; log = logger; } diff --git a/src/server/Services/Search/PreflightResourceReader.cs b/src/server/Services/Search/PreflightResourceReader.cs index ff0458869..be0a2854f 100644 --- a/src/server/Services/Search/PreflightResourceReader.cs +++ b/src/server/Services/Search/PreflightResourceReader.cs @@ -10,7 +10,6 @@ using System.Linq; using System.Threading.Tasks; using Dapper; -using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using Model.Authorization; using Model.Compiler; @@ -31,7 +30,7 @@ public PreflightResourceReader( IUserContextProvider userContextProvider) { opts = options.Value; - user = userContextProvider.GetUserContext(); + this.user = userContextProvider.GetUserContext(); } public async Task GetResourcesByIdsAsync(ResourceRefs refs) diff --git a/src/server/Services/Search/QueryService.cs b/src/server/Services/Search/QueryService.cs index cd39dd664..48e621772 100644 --- a/src/server/Services/Search/QueryService.cs +++ b/src/server/Services/Search/QueryService.cs @@ -34,11 +34,11 @@ public class QueryService : IQueryService readonly AppDbOptions dbOpts; public QueryService( - IUserContextProvider userContextProvider, + IUserContext user, IOptions dbOpts ) { - user = userContextProvider.GetUserContext(); + this.user = user; this.dbOpts = dbOpts.Value; } From 9eeafedb2b0ad1f84d250f0a041f3c731bd3cf89 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Wed, 22 Nov 2023 17:15:37 -0800 Subject: [PATCH 10/19] holy crap leaf reports correct results back to shrine, and shrine shows it in ui. happy thanksgiving --- .../Shrine/ShrineDeliveryAttemptDTO.cs | 4 + .../ShrineUpdateResultWithCrcResultDTO.cs | 47 ++++++++ .../ShrineUpdateResultWithProgressDTO.cs | 54 +++++++++ .../Integration/Shrine/ShrineMessageBroker.cs | 7 +- .../Jobs/BackgroundShrinePollingService.cs | 105 +++++++++++++----- src/server/API/Options/Config.Integration.cs | 1 + .../API/Options/StartupExtensions.Options.cs | 1 + src/server/API/appsettings.json | 1 + .../Shrine/ShrineDeliveryAttempt.cs | 4 +- .../Integration/Shrine/ShrineQueryStatus.cs | 4 +- .../Shrine/ShrineUpdateResultWithCrcResult.cs | 16 +++ .../Shrine/ShrineUpdateResultWithProgress.cs | 20 ++++ .../Model/Options/IntegrationOptions.cs | 1 + 13 files changed, 236 insertions(+), 29 deletions(-) create mode 100644 src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithCrcResultDTO.cs create mode 100644 src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithProgressDTO.cs create mode 100644 src/server/Model/Integration/Shrine/ShrineUpdateResultWithCrcResult.cs create mode 100644 src/server/Model/Integration/Shrine/ShrineUpdateResultWithProgress.cs diff --git a/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs index 97ec6b80f..216b52e24 100644 --- a/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs @@ -26,13 +26,16 @@ public class ShrineInnerDeliveryAttemptDTO public class ShrineDeliveryContentsDTO { public string Contents { get; set; } + public long ContentsSubject { get; set; } public string ContentsType { get; set; } + public int ProtocolVersion = 2; public ShrineDeliveryContentsDTO() { } public ShrineDeliveryContentsDTO(ShrineDeliveryContents contents) { Contents = contents.Contents; + ContentsSubject = contents.ContentsSubject; ContentsType = contents.ContentsType.ToString(); } } @@ -62,6 +65,7 @@ public static ShrineDeliveryContents ToContents(this ShrineDeliveryContentsDTO d return new ShrineDeliveryContents { Contents = dto.Contents, + ContentsSubject = dto.ContentsSubject, ContentsType = contentsType }; } diff --git a/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithCrcResultDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithCrcResultDTO.cs new file mode 100644 index 000000000..12d7666bd --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithCrcResultDTO.cs @@ -0,0 +1,47 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine; + +namespace API.DTO.Integration.Shrine +{ + public class ShrineUpdateResultWithCrcResultDTO : ShrineUpdateResultWithProgressDTO + { + public string Breakdowns { get; set; } + public ShrineResultObfuscatingParametersDTO ObfuscatingParameters { get; set; } + public int Count { get; set; } + + public ShrineUpdateResultWithCrcResultDTO(ShrineUpdateResultWithCrcResult update) : base(update) + { + ObfuscatingParameters = new ShrineResultObfuscatingParametersDTO(update.ObfuscatingParameters); + Count = update.Count; + } + } + + public static class ShrineUpdateResultWithCrcResultDTOExtensions + { + public static ShrineUpdateResultWithCrcResult ToUpdate(this ShrineUpdateResultWithCrcResultDTO dto) + { + _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryStatusType type); + + var output = new ShrineUpdateResultWithCrcResult + { + QueryId = dto.QueryId, + AdapterNodeKey = dto.AdapterNodeKey, + Status = dto.Status.ToStatus(), + StatusMessage = dto.StatusMessage, + CrcQueryInstanceId = dto.CrcQueryInstanceId, + AdapterTime = DateTimeOffset.FromUnixTimeMilliseconds(dto.AdapterTime).UtcDateTime, + EncodedClass = type, + ObfuscatingParameters = dto.ObfuscatingParameters.ToParameters(), + Count = dto.Count + }; + + return output; + } + } +} + diff --git a/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithProgressDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithProgressDTO.cs new file mode 100644 index 000000000..bbe104d4a --- /dev/null +++ b/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithProgressDTO.cs @@ -0,0 +1,54 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Model.Integration.Shrine; + +namespace API.DTO.Integration.Shrine +{ + public class ShrineUpdateResultWithProgressDTO + { + public long QueryId { get; set; } + public string AdapterNodeKey { get; set; } + public ShrineQueryStatusDTO Status { get; set; } + public string StatusMessage { get; set; } + public long? CrcQueryInstanceId { get; set; } + public long AdapterTime { get; set; } + public string EncodedClass { get; set; } + + public ShrineUpdateResultWithProgressDTO(ShrineUpdateResultWithProgress update) + { + QueryId = update.QueryId; + AdapterNodeKey = update.AdapterNodeKey; + Status = new ShrineQueryStatusDTO(update.Status); + StatusMessage = update.StatusMessage; + CrcQueryInstanceId = update.CrcQueryInstanceId; + AdapterTime = ((DateTimeOffset)update.AdapterTime).ToUnixTimeMilliseconds(); + EncodedClass = update.EncodedClass.ToString(); + } + } + + public static class ShrineUpdateResultWithProgressDTOExtensions + { + public static ShrineUpdateResultWithProgress ToUpdate(this ShrineUpdateResultWithProgressDTO dto) + { + _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryStatusType type); + + var output = new ShrineUpdateResultWithProgress + { + QueryId = dto.QueryId, + AdapterNodeKey = dto.AdapterNodeKey, + Status = dto.Status.ToStatus(), + StatusMessage = dto.StatusMessage, + CrcQueryInstanceId = dto.CrcQueryInstanceId, + AdapterTime = DateTimeOffset.FromUnixTimeMilliseconds(dto.AdapterTime).UtcDateTime, + EncodedClass = type + }; + + return output; + } + } +} + diff --git a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs index b71feabf4..0090429a9 100644 --- a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs +++ b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs @@ -13,6 +13,7 @@ using Model.Options; using Newtonsoft.Json; using Newtonsoft.Json.Linq; +using Newtonsoft.Json.Serialization; namespace API.Integration.Shrine { @@ -27,6 +28,10 @@ public class ShrineMessageBroker : IShrineMessageBroker readonly HttpClient client; readonly SHRINEOptions opts; readonly int TimeOutSeconds = 50; + readonly JsonSerializerSettings serializerSettings = new JsonSerializerSettings + { + ContractResolver = new CamelCasePropertyNamesContractResolver() + }; public ShrineMessageBroker(HttpClient client, IOptions opts) { @@ -73,7 +78,7 @@ public async Task SendMessageToHub(ShrineDeliveryContents c RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/sendMessage/hub"), Method = HttpMethod.Put, Content = new StringContent( - JsonConvert.SerializeObject(new ShrineDeliveryContentsDTO(contents)), + JsonConvert.SerializeObject(new ShrineDeliveryContentsDTO(contents), serializerSettings), Encoding.UTF8, "application/x-www-form-urlencoded" ) diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs index 9adf77055..a474808cd 100644 --- a/src/server/API/Jobs/BackgroundShrinePollingService.cs +++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs @@ -21,6 +21,7 @@ using Model.Compiler; using Model.Options; using Microsoft.Extensions.Options; +using Newtonsoft.Json.Serialization; namespace API.Jobs { @@ -34,6 +35,10 @@ public class BackgroundShrinePollingService : BackgroundService readonly SHRINEOptions opts; readonly ShrineQueryDefinitionConverter converter; readonly int ErrorPauseSeconds = 30; + readonly JsonSerializerSettings serializerSettings = new JsonSerializerSettings + { + ContractResolver = new CamelCasePropertyNamesContractResolver() + }; public BackgroundShrinePollingService( ILogger logger, @@ -41,7 +46,7 @@ public BackgroundShrinePollingService( IShrineQueryResultCache queryResultCache, IShrineUserQueryCache userQueryCache, IServiceScopeFactory serviceScopeFactory, - IOptions opts, + IOptions opts, ShrineQueryDefinitionConverter converter ) { @@ -51,7 +56,7 @@ ShrineQueryDefinitionConverter converter this.userQueryCache = userQueryCache; this.serviceScopeFactory = serviceScopeFactory; this.converter = converter; - this.opts = opts.Value; + this.opts = opts.Value.SHRINE; } protected override async Task ExecuteAsync(CancellationToken stoppingToken) @@ -77,8 +82,6 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) } } - - _ = Task.Run(async () => { switch (message.ContentsType) @@ -145,8 +148,15 @@ void HandleResultMessage(ShrineResultProgress progress) async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run, CancellationToken stoppingToken) { + // Let hub know query received + await SendQueryReceievedByAdapter(run.Query.Id); + + // Get user context, convert query var (user, query) = GetContext(run); + // Let hub know query converted, executing + await SendQuerySubmittedToCrc(run.Query.Id); + // Create scope to ensure query run as this user using (var scope = serviceScopeFactory.CreateAsyncScope()) { @@ -164,31 +174,74 @@ async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run, Cancellat queryResultCache.Put(run.Query.Id, run.Researcher); - var result = new ShrineResultProgress - { - Id = 1, //ShrineQueryDefinitionConverter.GenerateRandomLongId(), - VersionInfo = new ShrineVersionInfo { }, - QueryId = run.Query.Id, - AdapterNodeId = opts.Node.Id, - AdapterNodeName = opts.Node.Name, - Status = new ShrineQueryStatus { EncodedClass = ShrineQueryStatusType.ResultFromCRC }, - StatusMessage = "FINISHED", - Count = count.Result.Value, - ObfuscatingParameters = new ShrineResultObfuscatingParameters - { - BinSize = 5, StdDev = 6.5M, NoiseClamp = count.Result.PlusMinus, LowLimit = 10 // TODO don't hardcode - }, - EncodedClass = ShrineQueryStatusType.CrcResult - }; - var response = new ShrineDeliveryContents - { - ContentsSubject = run.Query.Id, - Contents = JsonConvert.SerializeObject(result) - }; - _ = await broker.SendMessageToHub(response); + // Let hub know query result + await SendQueryResult(run.Query.Id, count); } } + async Task SendQueryResult(long queryId, CohortCountDTO count) + { + var message = new ShrineUpdateResultWithCrcResult + { + QueryId = queryId, + AdapterNodeKey = opts.Node.Key, + Count = count.Result.Value, + CrcQueryInstanceId = 42, + Breakdowns = null, + ObfuscatingParameters = new ShrineResultObfuscatingParameters + { + BinSize = 5, + StdDev = 6.5M, + NoiseClamp = 10, + LowLimit = 10 + }, + Status = new ShrineQueryStatus { EncodedClass = ShrineQueryStatusType.ResultFromCRC }, + StatusMessage = "FINISHED", + AdapterTime = DateTime.Now, + EncodedClass = ShrineQueryStatusType.UpdateResultWithCrcResult + }; + var dto = new ShrineUpdateResultWithCrcResultDTO(message); + + var response = new ShrineDeliveryContents + { + ContentsSubject = queryId, + Contents = JsonConvert.SerializeObject(dto, serializerSettings), + ContentsType = ShrineDeliveryContentsType.UpdateResult + }; + _ = await broker.SendMessageToHub(response); + } + + async Task SendQueryReceievedByAdapter(long queryId) + { + await SendQueryReceivedMessage(queryId, ShrineQueryStatusType.ReceivedByAdapter, ShrineQueryStatusType.UpdateResultWithProgress); + } + + async Task SendQuerySubmittedToCrc(long queryId) + { + await SendQueryReceivedMessage(queryId, ShrineQueryStatusType.SubmittedToCRC, ShrineQueryStatusType.UpdateResultWithProgress); + } + + async Task SendQueryReceivedMessage(long queryId, ShrineQueryStatusType innerClass, ShrineQueryStatusType outerClass) + { + var message = new ShrineUpdateResultWithProgress + { + QueryId = queryId, + AdapterNodeKey = opts.Node.Key, + Status = new ShrineQueryStatus { EncodedClass = innerClass }, + AdapterTime = DateTime.Now, + EncodedClass = outerClass + }; + var dto = new ShrineUpdateResultWithProgressDTO(message); + + var response = new ShrineDeliveryContents + { + ContentsSubject = queryId, + Contents = JsonConvert.SerializeObject(dto, serializerSettings), + ContentsType = ShrineDeliveryContentsType.UpdateResult + }; + _ = await broker.SendMessageToHub(response); + } + (IUserContext, IPatientCountQueryDTO) GetContext(ShrineRunQueryForResult run) { var cached = userQueryCache.GetOrDefault(run.Query.Id); diff --git a/src/server/API/Options/Config.Integration.cs b/src/server/API/Options/Config.Integration.cs index 1528b1117..d6b19e4a0 100644 --- a/src/server/API/Options/Config.Integration.cs +++ b/src/server/API/Options/Config.Integration.cs @@ -22,6 +22,7 @@ public static class SHRINE public static class Node { public const string Id = @"Integration:SHRINE:Node:Id"; + public const string Key = @"Integration:SHRINE:Node:Key"; public const string Name = @"Integration:SHRINE:Node:Name"; } diff --git a/src/server/API/Options/StartupExtensions.Options.cs b/src/server/API/Options/StartupExtensions.Options.cs index 30102236f..7e8de6d30 100644 --- a/src/server/API/Options/StartupExtensions.Options.cs +++ b/src/server/API/Options/StartupExtensions.Options.cs @@ -270,6 +270,7 @@ static IServiceCollection ConfigureIntegrationOptions(this IServiceCollection se Node = new SHRINEOptions.LocalNode { Id = config.GetValue(Config.Integration.SHRINE.Node.Id), + Key = config.GetValue(Config.Integration.SHRINE.Node.Key), Name = config.GetValue(Config.Integration.SHRINE.Node.Name) }, Topic = new SHRINEOptions.DefaultTopic diff --git a/src/server/API/appsettings.json b/src/server/API/appsettings.json index 5e81c1693..231af2de6 100644 --- a/src/server/API/appsettings.json +++ b/src/server/API/appsettings.json @@ -90,6 +90,7 @@ "HubApiURI": "https://localhost:6443", "Node": { "Id": 8304711555476111654, + "Key": "leaftest", "Name": "leaftest" }, "Researcher": { diff --git a/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs b/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs index 82bdf1013..cd16c0e46 100644 --- a/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs +++ b/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs @@ -25,6 +25,7 @@ public class ShrineDeliveryContents public string Contents { get; set; } public long ContentsSubject { get; set; } public ShrineDeliveryContentsType ContentsType { get; set; } + public int ProtocolVersion = 2; } public enum ShrineDeliveryContentsType @@ -33,7 +34,8 @@ public enum ShrineDeliveryContentsType UpdateQueryAtQep, RunQueryForResult, RunQueryAtHub, - Result + Result, + UpdateResult } } diff --git a/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs b/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs index 710108bbc..cf2da07c2 100644 --- a/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs +++ b/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs @@ -23,7 +23,9 @@ public enum ShrineQueryStatusType ResultProgress, ReceivedByAdapter, CrcResult, - ResultFromCRC + ResultFromCRC, + UpdateResultWithProgress, + UpdateResultWithCrcResult } } diff --git a/src/server/Model/Integration/Shrine/ShrineUpdateResultWithCrcResult.cs b/src/server/Model/Integration/Shrine/ShrineUpdateResultWithCrcResult.cs new file mode 100644 index 000000000..f9ba16db0 --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineUpdateResultWithCrcResult.cs @@ -0,0 +1,16 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine +{ + public class ShrineUpdateResultWithCrcResult : ShrineUpdateResultWithProgress + { + public string Breakdowns { get; set; } + public ShrineResultObfuscatingParameters ObfuscatingParameters { get; set; } + public int Count { get; set; } + } +} + diff --git a/src/server/Model/Integration/Shrine/ShrineUpdateResultWithProgress.cs b/src/server/Model/Integration/Shrine/ShrineUpdateResultWithProgress.cs new file mode 100644 index 000000000..cf40bdf65 --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineUpdateResultWithProgress.cs @@ -0,0 +1,20 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +namespace Model.Integration.Shrine +{ + public class ShrineUpdateResultWithProgress + { + public long QueryId { get; set; } + public string AdapterNodeKey { get; set; } + public ShrineQueryStatus Status { get; set; } + public string StatusMessage { get; set; } + public long? CrcQueryInstanceId { get; set; } + public DateTime AdapterTime { get; set; } + public ShrineQueryStatusType EncodedClass { get; set; } + } +} + diff --git a/src/server/Model/Options/IntegrationOptions.cs b/src/server/Model/Options/IntegrationOptions.cs index ae721aaf9..533d5e4f0 100644 --- a/src/server/Model/Options/IntegrationOptions.cs +++ b/src/server/Model/Options/IntegrationOptions.cs @@ -23,6 +23,7 @@ public class SHRINEOptions : IEnabled public class LocalNode { public long Id { get; set; } + public string Key { get; set; } public string Name { get; set; } } From 2f98f3086792827289d479f1f64f579adc532233 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Thu, 28 Dec 2023 17:46:33 -0800 Subject: [PATCH 11/19] more query conversion thrash --- .../Shrine/4_1/ShrineExpressionDTO.cs | 43 +++++++- .../4_1/ShrineQueryDefinitionConverter.cs | 100 +++++++++++++++--- .../Integration/Shrine/ShrineMessageBroker.cs | 19 +--- .../Shrine/4_1/ShrineExpression.cs | 63 ++++++++++- 4 files changed, 196 insertions(+), 29 deletions(-) diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs index 1bb4a7250..b9e575521 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs @@ -42,7 +42,7 @@ public class ShrineConjunctionDTO public int NMustBeTrue { get; set; } public string EncodedClass { get; set; } public ShrineConjunctionCompareDTO Compare { get; set; } - public IEnumerable Possibilities { get; set; } + public IEnumerable Possibilities { get; set; } public ShrineConjunctionDTO() { } @@ -52,6 +52,47 @@ public ShrineConjunctionDTO(ShrineConjunction conjunction) } } + public class ShrineConceptGroupOrTimelineDTO : ShrineConceptGroupDTO + { + public ShrineConceptGroupDTO First { get; set; } + public IEnumerable Subsequent { get; set; } = new List(); + + public bool IsConceptGroup => First == null; + public bool IsTimeline => First != null; + } + + public class ShrineTimelineSubsequentEventDTO + { + public ShrineConceptGroupDTO ConceptGroup { get; set; } + public ShrineTimelineSubsequentEventOccurrenceDTO PreviousOccurrence { get; set; } + public ShrineTimelineSubsequentEventOccurrenceDTO ThisOccurrence { get; set; } + public ShrineTimelineSubsequentEventTimeConstraintDTO TimeConstraint { get; set; } + + public ShrineTimelineSubsequentEventDTO() { } + } + + public class ShrineTimelineSubsequentEventOccurrenceDTO + { + public string EncodedClass { get; set; } + } + + public class ShrineTimelineSubsequentEventTimeConstraintDTO + { + public ShrineOperatorDTO Operator { get; set; } + public double Value { get; set; } + public ShrineTimeUnitDTO TimeUnit { get; set; } + } + + public class ShrineOperatorDTO + { + public string EncodedClass { get; set; } + } + + public class ShrineTimeUnitDTO + { + public string EncodedClass { get; set; } + } + public class ShrineConceptGroupDTO : ShrineGroupDTO { public long? StartDate { get; set; } diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs index 684615f85..bbbf48947 100644 --- a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs +++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs @@ -20,21 +20,34 @@ public class ShrineQueryDefinitionConverter public IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery) { - var panels = shrineQuery.QueryDefinition.Expression.Possibilities.Select((conceptGroup, i) => + var possibilities = shrineQuery.QueryDefinition.Expression.Possibilities; + var panels = possibilities.Select( + (grp, i) => grp.IsConceptGroup ? ShrineConceptGroupToPanelDTO(grp, i) : ShrineTimelineToPanelDTO(grp, i) + ); + + return new PatientCountQueryDTO { - return new PanelDTO - { - IncludePanel = conceptGroup.Concepts.NMustBeTrue > 0, - Index = i, - Domain = PanelDomain.Panel, - DateFilter = conceptGroup.StartDate.HasValue ? + QueryId = Guid.NewGuid().ToString(), + Panels = panels, + PanelFilters = Array.Empty() + }; + } + + PanelDTO ShrineConceptGroupToPanelDTO(ShrineConceptGroup conceptGroup, int i) + { + return new PanelDTO + { + IncludePanel = conceptGroup.Concepts.NMustBeTrue > 0, + Index = i, + Domain = PanelDomain.Panel, + DateFilter = conceptGroup.StartDate.HasValue ? new DateBoundary { Start = new DateFilter { Date = conceptGroup.StartDate.Value }, End = new DateFilter { Date = conceptGroup.EndDate.Value } } : null, - SubPanels = new List + SubPanels = new List { new SubPanelDTO { @@ -58,14 +71,77 @@ public IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery) }) } } + }; + } + + PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) + { + var first = new SubPanelDTO + { + IncludeSubPanel = timeline.First.NMustBeTrue > 0, + Index = 0, + MinimumCount = timeline.First.NMustBeTrue, + PanelIndex = i, + PanelItems = timeline.First.Concepts.Possibilities.Select((c, j) => + { + return new PanelItemDTO + { + Index = j, + SubPanelIndex = 0, + PanelIndex = i, + Resource = new ResourceRef + { + UiDisplayName = c.DisplayName, + UniversalId = UniversalIdPrefix + c.TermPath + } + }; + }) + }; + + var subsequent = timeline.Subsequent.Select((sub, i) => + { + return new SubPanelDTO + { + IncludeSubPanel = sub.ConceptGroup.NMustBeTrue > 0, + Index = i + 1, + MinimumCount = sub.ConceptGroup.NMustBeTrue, + JoinSequence = new SubPanelJoinSequence + { + Increment = sub.TimeConstraint != null ? sub.TimeConstraint.Value : -1, + DateIncrementType = DateIncrementType.Day, // FIX + SequenceType = SequenceType.AnytimeFollowing + }, + PanelIndex = i, + PanelItems = sub.ConceptGroup.Concepts.Possibilities.Select((c, j) => + { + return new PanelItemDTO + { + Index = j, + SubPanelIndex = 0, + PanelIndex = i, + Resource = new ResourceRef + { + UiDisplayName = c.DisplayName, + UniversalId = UniversalIdPrefix + c.TermPath + } + }; + }) }; }); - return new PatientCountQueryDTO + return new PanelDTO { - QueryId = Guid.NewGuid().ToString(), - Panels = panels, - PanelFilters = Array.Empty() + IncludePanel = timeline.Concepts.NMustBeTrue > 0, + Index = i, + Domain = PanelDomain.Panel, + DateFilter = timeline.StartDate.HasValue ? + new DateBoundary + { + Start = new DateFilter { Date = timeline.StartDate.Value }, + End = new DateFilter { Date = timeline.EndDate.Value } + } + : null, + SubPanels = new List() { first }.Union(subsequent) }; } diff --git a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs index 0090429a9..5de94fd6e 100644 --- a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs +++ b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs @@ -12,7 +12,6 @@ using Model.Integration.Shrine; using Model.Options; using Newtonsoft.Json; -using Newtonsoft.Json.Linq; using Newtonsoft.Json.Serialization; namespace API.Integration.Shrine @@ -48,15 +47,18 @@ public ShrineMessageBroker(HttpClient client, IOptions opts) }; var resp = await client.SendAsync(req); + req.Dispose(); if (!resp.IsSuccessStatusCode || resp.Content == null) { - req.Dispose(); return (resp, null); } var jsonMessage = await resp.Content.ReadAsStringAsync(); + if (string.IsNullOrEmpty(jsonMessage)) + { + return (resp, null); + } var message = JsonConvert.DeserializeObject(jsonMessage).ToDeliveryAttempt(); - req.Dispose(); var ack = new HttpRequestMessage { @@ -88,17 +90,6 @@ public async Task SendMessageToHub(ShrineDeliveryContents c return response; } - - private static string GetDeliveryAttemptId(string body) - { - var raw = JObject.Parse(body); - - if (raw.ContainsKey("deliveryAttemptId")) - { - return (string)raw["deliveryAttemptId"]["underlying"]; - } - return null; - } } } diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs index 4ec530fde..e960d3749 100644 --- a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs +++ b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs @@ -30,10 +30,51 @@ public abstract class ShrineGroup : ShrineExpression public class ShrineConjunction : ShrineExpression { - public IEnumerable Possibilities { get; set; } = new List(); + public IEnumerable Possibilities { get; set; } = new List(); } - public class ShrineConceptConjunction : ShrineExpression + public class ShrineConceptGroupOrTimeline : ShrineConceptGroup + { + public ShrineConceptGroup First { get; set; } + public IEnumerable Subsequent { get; set; } = new List(); + + public bool IsConceptGroup => First == null; + public bool IsTimeline => First != null; + } + + public class ShrineTimelineSubsequentEvent + { + public ShrineConceptGroup ConceptGroup { get; set; } + public ShrineTimelineSubsequentEventOccurrence PreviousOccurrence { get; set; } + public ShrineTimelineSubsequentEventOccurrence ThisOccurrence { get; set; } + public ShrineTimelineSubsequentEventTimeConstraint TimeConstraint { get; set; } + + public ShrineTimelineSubsequentEvent() { } + } + + public class ShrineTimelineSubsequentEventOccurrence + { + public string EncodedClass { get; set; } + } + + public class ShrineTimelineSubsequentEventTimeConstraint + { + public ShrineOperator Operator { get; set; } + public int Value { get; set; } + public ShrineTimeUnit TimeUnit { get; set; } + } + + public class ShrineOperator + { + public string EncodedClass { get; set; } + } + + public class ShrineTimeUnit + { + public string EncodedClass { get; set; } + } + + public class ShrineConceptConjunction : ShrineExpression { public IEnumerable Possibilities { get; set; } = new List(); } @@ -43,6 +84,18 @@ public class ShrineConceptGroup : ShrineGroup public new ShrineConceptConjunction Concepts { get; set; } } + public class ShrineTimelineGroup : ShrineGroup + { + public ShrineConceptGroup ConceptGroup { get; set; } + + } + + public class ShrineTimeline : ShrineGroup + { + public ShrineConceptGroup First { get; set; } + public IEnumerable Subsequent { get; set; } + } + public class ShrineConcept : ShrineExpression { public string DisplayName { get; set; } @@ -61,5 +114,11 @@ public enum ShrineConjunctionComparison Exactly, AtMost } + + public enum ShrineOccurrence + { + Any, + First + } } From abb8be0e42518823fe2436377fc98190bb49fe98 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Fri, 29 Dec 2023 10:11:59 -0800 Subject: [PATCH 12/19] shrine <-> leaf query conversion thrash --- .../Shrine/4_1/ShrineExpressionDTO.cs | 129 +++++++++++++----- .../4_1/ShrineQueryDefinitionConverter.cs | 105 ++++++++++---- .../Model/Compiler/NumericFilterType.cs | 4 +- src/server/Model/Compiler/PanelValidator.cs | 4 +- .../Compiler/SqlBuilder/PanelItemSqlSet.cs | 4 +- src/server/Model/Compiler/SubPanel.cs | 1 - .../Shrine/4_1/ShrineExpression.cs | 24 +--- 7 files changed, 186 insertions(+), 85 deletions(-) diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs index b9e575521..5e42489d2 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs @@ -4,9 +4,10 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using System.Linq; using System.Collections.Generic; +using Model.Compiler; using Model.Integration.Shrine4_1; -using System.Linq; namespace API.DTO.Integration.Shrine4_1 { @@ -22,10 +23,21 @@ public ShrineQueryDefinitionDTO(ShrineQueryDefinition definition) } } - public abstract class ShrineGroupDTO + public class ShrineAnonymousEncodedClassDTO { - public int NMustBeTrue { get; set; } public string EncodedClass { get; set; } + + public ShrineAnonymousEncodedClassDTO() { } + + public ShrineAnonymousEncodedClassDTO(string encodedClass) + { + EncodedClass = encodedClass; + } + } + + public abstract class ShrineGroupDTO : ShrineAnonymousEncodedClassDTO + { + public int NMustBeTrue { get; set; } public ShrineConjunctionCompareDTO Compare { get; set; } public ShrineGroupDTO() { } @@ -37,18 +49,21 @@ public ShrineGroupDTO(ShrineGroup expr) } } - public class ShrineConjunctionDTO + public class ShrineConjunctionDTO : ShrineAnonymousEncodedClassDTO { public int NMustBeTrue { get; set; } - public string EncodedClass { get; set; } public ShrineConjunctionCompareDTO Compare { get; set; } public IEnumerable Possibilities { get; set; } - public ShrineConjunctionDTO() { } + public ShrineConjunctionDTO() + { + EncodedClass = "Conjunction"; + } public ShrineConjunctionDTO(ShrineConjunction conjunction) { - Possibilities = conjunction.Possibilities.Select(p => new ShrineConceptGroupDTO(p)); + EncodedClass = "Conjunction"; + Possibilities = conjunction.Possibilities.Select(p => new ShrineConceptGroupOrTimelineDTO(p)); } } @@ -59,38 +74,53 @@ public class ShrineConceptGroupOrTimelineDTO : ShrineConceptGroupDTO public bool IsConceptGroup => First == null; public bool IsTimeline => First != null; + + public ShrineConceptGroupOrTimelineDTO(ShrineConceptGroupOrTimeline cg) + { + if (cg.IsConceptGroup) + { + Concepts = new ShrineConceptConjunctionDTO(cg.Concepts); + EncodedClass = "ConceptGroup"; + } + else + { + First = new ShrineConceptGroupDTO(cg.First); + Subsequent = cg.Subsequent.Select(s => new ShrineTimelineSubsequentEventDTO(s)); + EncodedClass = "Timeline"; + } + } } public class ShrineTimelineSubsequentEventDTO { public ShrineConceptGroupDTO ConceptGroup { get; set; } - public ShrineTimelineSubsequentEventOccurrenceDTO PreviousOccurrence { get; set; } - public ShrineTimelineSubsequentEventOccurrenceDTO ThisOccurrence { get; set; } + public ShrineAnonymousEncodedClassDTO PreviousOccurrence { get; set; } + public ShrineAnonymousEncodedClassDTO ThisOccurrence { get; set; } public ShrineTimelineSubsequentEventTimeConstraintDTO TimeConstraint { get; set; } public ShrineTimelineSubsequentEventDTO() { } - } - public class ShrineTimelineSubsequentEventOccurrenceDTO - { - public string EncodedClass { get; set; } + public ShrineTimelineSubsequentEventDTO(ShrineTimelineSubsequentEvent sub) + { + ConceptGroup = new ShrineConceptGroupDTO(sub.ConceptGroup); + PreviousOccurrence = new ShrineAnonymousEncodedClassDTO(sub.PreviousOccurrence.ToString()); + ThisOccurrence = new ShrineAnonymousEncodedClassDTO(sub.ThisOccurrence.ToString()); + TimeConstraint = sub.TimeConstraint != null ? new ShrineTimelineSubsequentEventTimeConstraintDTO(sub.TimeConstraint) : null; + } } public class ShrineTimelineSubsequentEventTimeConstraintDTO { - public ShrineOperatorDTO Operator { get; set; } - public double Value { get; set; } - public ShrineTimeUnitDTO TimeUnit { get; set; } - } - - public class ShrineOperatorDTO - { - public string EncodedClass { get; set; } - } + public ShrineAnonymousEncodedClassDTO Operator { get; set; } + public ShrineAnonymousEncodedClassDTO TimeUnit { get; set; } + public int Value { get; set; } - public class ShrineTimeUnitDTO - { - public string EncodedClass { get; set; } + public ShrineTimelineSubsequentEventTimeConstraintDTO(ShrineTimelineSubsequentEventTimeConstraint timeConstraint) + { + Operator = new ShrineAnonymousEncodedClassDTO(timeConstraint.Operator.ToString()); + TimeUnit = new ShrineAnonymousEncodedClassDTO(timeConstraint.TimeUnit.ToString()); + Value = timeConstraint.Value; + } } public class ShrineConceptGroupDTO : ShrineGroupDTO @@ -111,10 +141,9 @@ public ShrineConceptGroupDTO(ShrineConceptGroup group) : base(group) } } - public class ShrineConceptConjunctionDTO + public class ShrineConceptConjunctionDTO : ShrineAnonymousEncodedClassDTO { public int NMustBeTrue { get; set; } - public string EncodedClass { get; set; } public ShrineConjunctionCompareDTO Compare { get; set; } public IEnumerable Possibilities { get; set; } @@ -145,10 +174,8 @@ public ShrineConceptDTO(ShrineConcept concept) } } - public class ShrineConjunctionCompareDTO + public class ShrineConjunctionCompareDTO : ShrineAnonymousEncodedClassDTO { - public string EncodedClass { get; set; } - public ShrineConjunctionCompareDTO() { } public ShrineConjunctionCompareDTO(ShrineConjunctionCompare compare) @@ -189,13 +216,53 @@ public static ShrineConceptGroup ToConceptGroup(this ShrineConceptGroupDTO dto) }; } + public static ShrineConceptGroupOrTimeline ToConceptGroupOrTimeline(this ShrineConceptGroupOrTimelineDTO dto) + { + return new ShrineConceptGroupOrTimeline + { + StartDate = dto.StartDate != null ? DateTimeOffset.FromUnixTimeMilliseconds((long)dto.StartDate).UtcDateTime : null, + EndDate = dto.EndDate != null ? DateTimeOffset.FromUnixTimeMilliseconds((long)dto.EndDate).UtcDateTime : null, + OccursAtLeast = dto.OccursAtLeast, + Concepts = dto.IsConceptGroup ? dto.Concepts.ToConjunction() : null, + First = dto.IsTimeline ? dto.First.ToConceptGroup() : null, + Subsequent = dto.IsTimeline ? dto.Subsequent.Select(s => s.ToSubsequentEvent()) : null + }; + } + public static ShrineConjunction ToConjunction(this ShrineConjunctionDTO dto) { return new ShrineConjunction { NMustBeTrue = dto.NMustBeTrue, Compare = dto.Compare.ToCompare(), - Possibilities = dto.Possibilities.Select(p => p.ToConceptGroup()) + Possibilities = dto.Possibilities.Select(p => p.ToConceptGroupOrTimeline()) + }; + } + + public static ShrineTimelineSubsequentEvent ToSubsequentEvent(this ShrineTimelineSubsequentEventDTO dto) + { + _ = Enum.TryParse(dto.PreviousOccurrence.EncodedClass, out ShrineOccurrence previousOccurrence); + _ = Enum.TryParse(dto.ThisOccurrence.EncodedClass, out ShrineOccurrence thisOccurrence); + + return new ShrineTimelineSubsequentEvent + { + ConceptGroup = dto.ConceptGroup.ToConceptGroup(), + PreviousOccurrence = previousOccurrence, + ThisOccurrence = thisOccurrence, + TimeConstraint = dto?.TimeConstraint.ToTimeConstraint() + }; + } + + public static ShrineTimelineSubsequentEventTimeConstraint ToTimeConstraint(this ShrineTimelineSubsequentEventTimeConstraintDTO dto) + { + _ = Enum.TryParse(dto.Operator.EncodedClass, out NumericFilterType op); + _ = Enum.TryParse(dto.TimeUnit.EncodedClass, out DateIncrementType timeUnit); + + return new ShrineTimelineSubsequentEventTimeConstraint + { + Operator = op, + TimeUnit = timeUnit, + Value = dto.Value }; } diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs index bbbf48947..d1a8f542b 100644 --- a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs +++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs @@ -21,8 +21,9 @@ public class ShrineQueryDefinitionConverter public IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery) { var possibilities = shrineQuery.QueryDefinition.Expression.Possibilities; - var panels = possibilities.Select( - (grp, i) => grp.IsConceptGroup ? ShrineConceptGroupToPanelDTO(grp, i) : ShrineTimelineToPanelDTO(grp, i) + var panels = possibilities.Select((grp, i) => grp.IsConceptGroup + ? ShrineConceptGroupToPanelDTO(grp, i) + : ShrineTimelineToPanelDTO(grp, i) ); return new PatientCountQueryDTO @@ -108,7 +109,7 @@ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) JoinSequence = new SubPanelJoinSequence { Increment = sub.TimeConstraint != null ? sub.TimeConstraint.Value : -1, - DateIncrementType = DateIncrementType.Day, // FIX + DateIncrementType = sub.TimeConstraint.TimeUnit, SequenceType = SequenceType.AnytimeFollowing }, PanelIndex = i, @@ -175,37 +176,85 @@ public ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery) }, Possibilities = panels.Select(p => { - var subpanel = p.SubPanels.First(); - - return new ShrineConceptGroup - { - Concepts = new ShrineConceptConjunction - { - NMustBeTrue = p.IncludePanel ? 1 : 0, - Compare = new ShrineConjunctionCompare - { - EncodedClass = p.IncludePanel ? ShrineConjunctionComparison.AtLeast : ShrineConjunctionComparison.AtMost, - }, - Possibilities = subpanel.PanelItems.Select(pi => - { - return new ShrineConcept - { - DisplayName = pi.Resource.UiDisplayName, - TermPath = pi.Resource.UniversalId.ToString().Replace(UniversalIdPrefix, ""), - Constraint = null - }; - }), - StartDate = p.DateFilter?.Start?.Date, - EndDate = p.DateFilter?.End?.Date, - OccursAtLeast = p.IncludePanel ? subpanel.MinimumCount : 0 - } - }; + return p.SubPanels.Count() == 1 + ? LeafNonSequenceToShrineConceptGroup(p) + : LeafSequenceToShrineTimeline(p); }) } } }; } + ShrineConceptGroupOrTimeline LeafNonSequenceToShrineConceptGroup(IPanelDTO panel) + { + var subpanel = panel.SubPanels.First(); + + return new ShrineConceptGroupOrTimeline + { + Concepts = LeafSubPanelToShrineConceptConjunction(panel, subpanel) + }; + } + + ShrineConceptGroupOrTimeline LeafSequenceToShrineTimeline(IPanelDTO panel) + { + var firstSubpanel = panel.SubPanels.First(); + var first = new ShrineConceptGroup + { + Concepts = LeafSubPanelToShrineConceptConjunction(panel, firstSubpanel) + }; + + var subsequent = panel.SubPanels.Skip(1).Select(subpanel => + { + return new ShrineTimelineSubsequentEvent + { + ConceptGroup = new ShrineConceptGroup + { + Concepts = LeafSubPanelToShrineConceptConjunction(panel, subpanel) + }, + PreviousOccurrence = ShrineOccurrence.Any, + ThisOccurrence = ShrineOccurrence.Any, + TimeConstraint = subpanel.JoinSequence.SequenceType == SequenceType.WithinFollowing + ? new ShrineTimelineSubsequentEventTimeConstraint + { + Operator = NumericFilterType.LessThanOrEqual, + TimeUnit = subpanel.JoinSequence.DateIncrementType, + Value = subpanel.JoinSequence.Increment + } + : null + }; + }); + + return new ShrineConceptGroupOrTimeline + { + First = first, + Subsequent = subsequent + }; + } + + ShrineConceptConjunction LeafSubPanelToShrineConceptConjunction(IPanelDTO panel, ISubPanelDTO subpanel) + { + return new ShrineConceptConjunction + { + NMustBeTrue = panel.IncludePanel ? 1 : 0, + Compare = new ShrineConjunctionCompare + { + EncodedClass = panel.IncludePanel ? ShrineConjunctionComparison.AtLeast : ShrineConjunctionComparison.AtMost, + }, + Possibilities = subpanel.PanelItems.Select(pi => + { + return new ShrineConcept + { + DisplayName = pi.Resource.UiDisplayName, + TermPath = pi.Resource.UniversalId.ToString().Replace(UniversalIdPrefix, ""), + Constraint = null + }; + }), + StartDate = panel.DateFilter?.Start?.Date, + EndDate = panel.DateFilter?.End?.Date, + OccursAtLeast = panel.IncludePanel ? subpanel.MinimumCount : 0 + }; + } + public static long GenerateRandomLongId() { return LongRandom(10000000000000000, 999999999999999999, new Random()); diff --git a/src/server/Model/Compiler/NumericFilterType.cs b/src/server/Model/Compiler/NumericFilterType.cs index fd5a4a58b..c0cc852c0 100644 --- a/src/server/Model/Compiler/NumericFilterType.cs +++ b/src/server/Model/Compiler/NumericFilterType.cs @@ -10,9 +10,9 @@ public enum NumericFilterType { None, GreaterThan, - GreaterThanOrEqualTo, + GreaterThanOrEqual, LessThan, - LessThanOrEqualTo, + LessThanOrEqual, EqualTo, Between } diff --git a/src/server/Model/Compiler/PanelValidator.cs b/src/server/Model/Compiler/PanelValidator.cs index ebaf27a50..ff387a41a 100644 --- a/src/server/Model/Compiler/PanelValidator.cs +++ b/src/server/Model/Compiler/PanelValidator.cs @@ -215,9 +215,9 @@ void throwIfNotLength(int expected) { case NumericFilterType.EqualTo: case NumericFilterType.GreaterThan: - case NumericFilterType.GreaterThanOrEqualTo: + case NumericFilterType.GreaterThanOrEqual: case NumericFilterType.LessThan: - case NumericFilterType.LessThanOrEqualTo: + case NumericFilterType.LessThanOrEqual: throwIfNotLength(1); return; case NumericFilterType.Between: diff --git a/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs b/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs index a25c5f9bf..1f598092b 100644 --- a/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs +++ b/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs @@ -198,13 +198,13 @@ void CheckNumericFilter() case NumericFilterType.GreaterThan: where.Add(Number > val1); return; - case NumericFilterType.GreaterThanOrEqualTo: + case NumericFilterType.GreaterThanOrEqual: where.Add(Number >= val1); return; case NumericFilterType.LessThan: where.Add(Number < val1); return; - case NumericFilterType.LessThanOrEqualTo: + case NumericFilterType.LessThanOrEqual: where.Add(Number <= val1); return; case NumericFilterType.EqualTo: diff --git a/src/server/Model/Compiler/SubPanel.cs b/src/server/Model/Compiler/SubPanel.cs index c7d8a55fc..083e88dad 100644 --- a/src/server/Model/Compiler/SubPanel.cs +++ b/src/server/Model/Compiler/SubPanel.cs @@ -5,7 +5,6 @@ // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; using System.Collections.Generic; -using System.Linq; namespace Model.Compiler { diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs index e960d3749..0183a09b2 100644 --- a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs +++ b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs @@ -5,6 +5,7 @@ // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; using System.Collections.Generic; +using Model.Compiler; namespace Model.Integration.Shrine4_1 { @@ -45,33 +46,18 @@ public class ShrineConceptGroupOrTimeline : ShrineConceptGroup public class ShrineTimelineSubsequentEvent { public ShrineConceptGroup ConceptGroup { get; set; } - public ShrineTimelineSubsequentEventOccurrence PreviousOccurrence { get; set; } - public ShrineTimelineSubsequentEventOccurrence ThisOccurrence { get; set; } + public ShrineOccurrence PreviousOccurrence { get; set; } + public ShrineOccurrence ThisOccurrence { get; set; } public ShrineTimelineSubsequentEventTimeConstraint TimeConstraint { get; set; } public ShrineTimelineSubsequentEvent() { } } - public class ShrineTimelineSubsequentEventOccurrence - { - public string EncodedClass { get; set; } - } - public class ShrineTimelineSubsequentEventTimeConstraint { - public ShrineOperator Operator { get; set; } + public NumericFilterType Operator { get; set; } + public DateIncrementType TimeUnit { get; set; } public int Value { get; set; } - public ShrineTimeUnit TimeUnit { get; set; } - } - - public class ShrineOperator - { - public string EncodedClass { get; set; } - } - - public class ShrineTimeUnit - { - public string EncodedClass { get; set; } } public class ShrineConceptConjunction : ShrineExpression From 19f2a7440b13afd04ed7203a59aa93b865b95abe Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Fri, 29 Dec 2023 13:11:07 -0800 Subject: [PATCH 13/19] leaf returns demographics as well --- .../Shrine/4_1/ShrineExpressionDTO.cs | 4 + .../Integration/Shrine/4_1/ShrineOutputDTO.cs | 35 ------- .../Integration/Shrine/4_1/ShrineQueryDTO.cs | 15 +-- .../Integration/Shrine/4_1/ShrineStatusDTO.cs | 35 ------- .../ShrineUpdateResultWithCrcResultDTO.cs | 26 +++++- .../Shrine/4_1/ShrineDemographicsConverter.cs | 92 +++++++++++++++++++ .../4_1/ShrineQueryDefinitionConverter.cs | 7 +- .../Jobs/BackgroundShrinePollingService.cs | 67 +++++++++++--- .../API/Options/StartupExtensions.Services.cs | 3 +- .../Model/Cohort/DemographicProvider.cs | 4 +- .../Compiler/SqlBuilder/PanelSqlCompiler.cs | 4 +- .../Integration/Shrine/4_1/ShrineOutput.cs | 19 ---- .../Integration/Shrine/4_1/ShrineQuery.cs | 18 +++- .../Integration/Shrine/4_1/ShrineStatus.cs | 20 ---- .../Shrine/ShrineUpdateResultWithCrcResult.cs | 7 +- .../Services/Cohort/CachedCohortFetcher.cs | 4 +- .../DemographicCompilerContextProvider.cs | 4 +- 17 files changed, 217 insertions(+), 147 deletions(-) delete mode 100644 src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs delete mode 100644 src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs create mode 100644 src/server/API/Integration/Shrine/4_1/ShrineDemographicsConverter.cs delete mode 100644 src/server/Model/Integration/Shrine/4_1/ShrineOutput.cs delete mode 100644 src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs index 5e42489d2..cbf4eeaab 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs @@ -75,6 +75,8 @@ public class ShrineConceptGroupOrTimelineDTO : ShrineConceptGroupDTO public bool IsConceptGroup => First == null; public bool IsTimeline => First != null; + public ShrineConceptGroupOrTimelineDTO() { } + public ShrineConceptGroupOrTimelineDTO(ShrineConceptGroupOrTimeline cg) { if (cg.IsConceptGroup) @@ -115,6 +117,8 @@ public class ShrineTimelineSubsequentEventTimeConstraintDTO public ShrineAnonymousEncodedClassDTO TimeUnit { get; set; } public int Value { get; set; } + public ShrineTimelineSubsequentEventTimeConstraintDTO() { } + public ShrineTimelineSubsequentEventTimeConstraintDTO(ShrineTimelineSubsequentEventTimeConstraint timeConstraint) { Operator = new ShrineAnonymousEncodedClassDTO(timeConstraint.Operator.ToString()); diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs deleted file mode 100644 index be8ea37fb..000000000 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineOutputDTO.cs +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2023, UW Medicine Research IT, University of Washington -// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. -using System; -using Model.Integration.Shrine4_1; - -namespace API.DTO.Integration.Shrine4_1 -{ - public class ShrineOutputDTO - { - public string EncodedClass { get; set; } - - public ShrineOutputDTO() { } - - public ShrineOutputDTO(ShrineOutput output) - { - EncodedClass = output.EncodedClass.ToString(); - } - } - - public static class ShrineOutputExtensions - { - public static ShrineOutput ToOutput(this ShrineOutputDTO dto) - { - _ = Enum.TryParse(dto.EncodedClass, out ShrineOutputType type); - return new ShrineOutput - { - EncodedClass = type - }; - } - } -} - diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs index e451b32ba..57ec6cdb5 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs @@ -13,9 +13,9 @@ public class ShrineQueryDTO { public long Id { get; set; } public ShrineVersionInfoDTO VersionInfo { get; set; } - public ShrineStatusDTO Status { get; set; } public ShrineQueryDefinitionDTO QueryDefinition { get; set; } - public ShrineOutputDTO Output { get; set; } + public ShrineAnonymousEncodedClassDTO Output { get; set; } + public ShrineAnonymousEncodedClassDTO Status { get; set; } public string QueryName { get; set; } public long NodeOfOriginId { get; set; } public long ResearcherId { get; set; } @@ -31,9 +31,9 @@ public ShrineQueryDTO(ShrineQuery query) { Id = query.Id; VersionInfo = new ShrineVersionInfoDTO(query.VersionInfo); - Status = new ShrineStatusDTO(query.Status); QueryDefinition = new ShrineQueryDefinitionDTO(query.QueryDefinition); - Output = new ShrineOutputDTO(query.Output); + Status = new ShrineAnonymousEncodedClassDTO(query.Status.ToString()); + Output = new ShrineAnonymousEncodedClassDTO(query.Output.ToString()); QueryName = query.QueryName; NodeOfOriginId = query.NodeOfOriginId; ResearcherId = query.ResearcherId; @@ -50,13 +50,16 @@ public static class ShrineQueryExtensions public static ShrineQuery ToQuery(this ShrineQueryDTO dto) { _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryType type); + _ = Enum.TryParse(dto.Status.EncodedClass, out ShrineStatusType status); + _ = Enum.TryParse(dto.Output.EncodedClass, out ShrineOutputType output); + return new ShrineQuery { Id = dto.Id, VersionInfo = dto.VersionInfo.ToVersionInfo(), - Status = dto.Status.ToStatus(), + Status = status, QueryDefinition = dto.QueryDefinition.ToDefinition(), - Output = dto.Output.ToOutput(), + Output = output, QueryName = dto.QueryName, NodeOfOriginId = dto.NodeOfOriginId, ResearcherId = dto.ResearcherId, diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs deleted file mode 100644 index 618b25d4f..000000000 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineStatusDTO.cs +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2023, UW Medicine Research IT, University of Washington -// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. -using System; -using Model.Integration.Shrine4_1; - -namespace API.DTO.Integration.Shrine4_1 -{ - public class ShrineStatusDTO - { - public string EncodedClass { get; set; } - - public ShrineStatusDTO() { } - - public ShrineStatusDTO(ShrineStatus status) - { - EncodedClass = status.EncodedClass.ToString(); - } - } - - public static class ShrineStatusExtensions - { - public static ShrineStatus ToStatus(this ShrineStatusDTO dto) - { - _ = Enum.TryParse(dto.EncodedClass, out ShrineStatusType status); - return new ShrineStatus - { - EncodedClass = status - }; - } - } -} - diff --git a/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithCrcResultDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithCrcResultDTO.cs index 12d7666bd..ab2c9f3b2 100644 --- a/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithCrcResultDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithCrcResultDTO.cs @@ -10,17 +10,31 @@ namespace API.DTO.Integration.Shrine { public class ShrineUpdateResultWithCrcResultDTO : ShrineUpdateResultWithProgressDTO { - public string Breakdowns { get; set; } - public ShrineResultObfuscatingParametersDTO ObfuscatingParameters { get; set; } + public ShrineBreakdownDTO Breakdowns { get; set; } + public ShrineResultObfuscatingParametersDTO ObfuscatingParameters { get; set; } public int Count { get; set; } public ShrineUpdateResultWithCrcResultDTO(ShrineUpdateResultWithCrcResult update) : base(update) { ObfuscatingParameters = new ShrineResultObfuscatingParametersDTO(update.ObfuscatingParameters); Count = update.Count; + if (update.Breakdowns != null) + { + Breakdowns = new ShrineBreakdownDTO(update.Breakdowns); + } } } + public class ShrineBreakdownDTO + { + public object[] Counts { get; set; } + + public ShrineBreakdownDTO(ShrineBreakdown breakdown) + { + Counts = breakdown.Counts; + } + } + public static class ShrineUpdateResultWithCrcResultDTOExtensions { public static ShrineUpdateResultWithCrcResult ToUpdate(this ShrineUpdateResultWithCrcResultDTO dto) @@ -37,11 +51,17 @@ public static ShrineUpdateResultWithCrcResult ToUpdate(this ShrineUpdateResultWi AdapterTime = DateTimeOffset.FromUnixTimeMilliseconds(dto.AdapterTime).UtcDateTime, EncodedClass = type, ObfuscatingParameters = dto.ObfuscatingParameters.ToParameters(), - Count = dto.Count + Count = dto.Count, + Breakdowns = dto?.Breakdowns.ToBreakdown() }; return output; } + + public static ShrineBreakdown ToBreakdown(this ShrineBreakdownDTO dto) + { + return new ShrineBreakdown { Counts = dto.Counts }; + } } } diff --git a/src/server/API/Integration/Shrine/4_1/ShrineDemographicsConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineDemographicsConverter.cs new file mode 100644 index 000000000..60f59c072 --- /dev/null +++ b/src/server/API/Integration/Shrine/4_1/ShrineDemographicsConverter.cs @@ -0,0 +1,92 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using System.Linq; +using Model.Cohort; +using Model.Integration.Shrine; + +namespace API.Integration.Shrine4_1 +{ + public class ShrineDemographicsConverter + { + public ShrineBreakdown ToShrineBreakdown(DemographicProvider.Result result) + { + var stats = result.Demographics.Statistics; + var leafGenders = stats.BinarySplitData.Where(bs => bs.Category == "Gender").First(); + var leafVitals = stats.BinarySplitData.Where(bs => bs.Category == "VitalStatus").First(); + var leafRaces = stats.NihRaceEthnicityData.EthnicBackgrounds; + var leafAges = stats.AgeByGenderData.Buckets; + + object[][] gender = + { + new object[] { "Female", leafGenders.Left.Value }, + new object[] { "Male", leafGenders.Right.Value }, + new object[] { "Unknown", -1 } + }; + + object[][] races = leafRaces.Select(r => + { + var h = r.Value.Hispanic; + var n = r.Value.NotHispanic; + var u = r.Value.Unknown; + var sum = h.Females + h.Males + h.Others + n.Females + n.Males + n.Others + u.Females + u.Males + u.Others; + return new object[] { Capitalize(r.Key), sum }; + }).ToArray(); + + object[][] vitals = + { + new object[] { "Living", leafVitals.Left.Value }, + new object[] { "Deceased", leafVitals.Right.Value }, + new object[] { "Deferred", -1 }, + new object[] { "Not recorded", -1 } + }; + + // SHRINE uses slightly different age buckets, but we can avoid recalculating everything + var zero = leafAges.Where(a => a.Key == "<1" || a.Key == "1-9").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others); + var ten = leafAges.Where(a => a.Key == "10-17").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others); + var eighteen = leafAges.Where(a => a.Key == "18-24" || a.Key == "25-34").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others); + var thirtyfive = leafAges.Where(a => a.Key == "35-44").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others); + var fortyfive = leafAges.Where(a => a.Key == "45-54").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others); + var fiftyfive = leafAges.Where(a => a.Key == "55-64").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others); + var sixtyfive = leafAges.Where(a => a.Key == "65-74").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others); + var seventyfive = leafAges.Where(a => a.Key == "75-84").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others); + var eightyfive = leafAges.Where(a => a.Key == ">84").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others); + var sixtyfiveplus = sixtyfive + seventyfive + eightyfive; + + object[][] ages = + { + // Note: the spaces are not a typo. SHRINE (I assume unintentionally?) has spaces before buckets, + // so we have to match them to get viz to line up + new object[] { " 0-9 years old", CheckIfZero(zero) }, + new object[] { " 10-17 years old", CheckIfZero(ten) }, + new object[] { " 18-34 years old", CheckIfZero(eighteen) }, + new object[] { " 35-44 years old", CheckIfZero(thirtyfive) }, + new object[] { " 45-54 years old", CheckIfZero(fortyfive) }, + new object[] { " 55-64 years old", CheckIfZero(fiftyfive) }, + new object[] { " 65-74 years old", CheckIfZero(sixtyfive) }, + new object[] { " 75-84 years old", CheckIfZero(seventyfive) }, + new object[] { ">= 65 years old", CheckIfZero(sixtyfiveplus) }, + new object[] { ">= 85 years old", CheckIfZero(eightyfive) } + }; + + return new ShrineBreakdown + { + Counts = new object[] + { + new object[] { "PATIENT_GENDER_COUNT_XML", gender }, + new object[] { "PATIENT_RACE_COUNT_XML", races }, + new object[] { "PATIENT_VITALSTATUS_COUNT_XML", vitals }, + new object[] { "PATIENT_AGE_COUNT_XML", ages }, + } + }; + } + + static int CheckIfZero(int value) => value == 0 ? -1 : value; + + static string Capitalize(string text) => char.ToUpper(text[0]) + text.Remove(0, 1); + } +} + diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs index d1a8f542b..e7177e110 100644 --- a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs +++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs @@ -132,7 +132,7 @@ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) return new PanelDTO { - IncludePanel = timeline.Concepts.NMustBeTrue > 0, + IncludePanel = timeline.First.Concepts.NMustBeTrue > 0, Index = i, Domain = PanelDomain.Panel, DateFilter = timeline.StartDate.HasValue ? @@ -161,10 +161,7 @@ public ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery) CreateDate = DateTime.Now, ChangeDate = DateTime.Now }, - Status = new ShrineStatus - { - EncodedClass = ShrineStatusType.SentToHub - }, + Status = ShrineStatusType.SentToHub, QueryDefinition = new ShrineQueryDefinition { Expression = new ShrineConjunction diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs index a474808cd..f7bea20db 100644 --- a/src/server/API/Jobs/BackgroundShrinePollingService.cs +++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs @@ -33,8 +33,9 @@ public class BackgroundShrinePollingService : BackgroundService readonly IShrineUserQueryCache userQueryCache; readonly IServiceScopeFactory serviceScopeFactory; readonly SHRINEOptions opts; - readonly ShrineQueryDefinitionConverter converter; - readonly int ErrorPauseSeconds = 30; + readonly ShrineQueryDefinitionConverter queryConverter; + readonly ShrineDemographicsConverter demographicsConverter; + readonly int ErrorPauseSeconds = 3; readonly JsonSerializerSettings serializerSettings = new JsonSerializerSettings { ContractResolver = new CamelCasePropertyNamesContractResolver() @@ -47,7 +48,8 @@ public BackgroundShrinePollingService( IShrineUserQueryCache userQueryCache, IServiceScopeFactory serviceScopeFactory, IOptions opts, - ShrineQueryDefinitionConverter converter + ShrineQueryDefinitionConverter queryConverter, + ShrineDemographicsConverter demographicsConverter ) { this.logger = logger; @@ -55,7 +57,8 @@ ShrineQueryDefinitionConverter converter this.queryResultCache = queryResultCache; this.userQueryCache = userQueryCache; this.serviceScopeFactory = serviceScopeFactory; - this.converter = converter; + this.queryConverter = queryConverter; + this.demographicsConverter = demographicsConverter; this.opts = opts.Value.SHRINE; } @@ -157,6 +160,13 @@ async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run, Cancellat // Let hub know query converted, executing await SendQuerySubmittedToCrc(run.Query.Id); + // Query conversion failed, tell hub no patients + if (query == null) + { + await SendFailedQueryResult(run.Query.Id); + return; + } + // Create scope to ensure query run as this user using (var scope = serviceScopeFactory.CreateAsyncScope()) { @@ -169,25 +179,50 @@ async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run, Cancellat if (!cohort.ValidationContext.PreflightPassed) { - // TODO Respond with error + await SendFailedQueryResult(run.Query.Id); + return; } queryResultCache.Put(run.Query.Id, run.Researcher); - // Let hub know query result - await SendQueryResult(run.Query.Id, count); + // Check if we need to get demographics as well + if (run.Query.Output == Model.Integration.Shrine4_1.ShrineOutputType.DemographicsAndCount) + { + var queryRef = new QueryRef(count.QueryId); + var demographicsProvider = scope.ServiceProvider.GetRequiredService(); + var demographics = await demographicsProvider.GetDemographicsAsync(queryRef, stoppingToken); + var breakdowns = demographicsConverter.ToShrineBreakdown(demographics); + + // Let hub know demographics result + await SendQueryResult(run.Query.Id, count.Result.Value, breakdowns); + } + else + { + // Let hub know query result + await SendQueryResult(run.Query.Id, count.Result.Value); + } } } - async Task SendQueryResult(long queryId, CohortCountDTO count) + async Task SendFailedQueryResult(long queryId) + { + await SendQueryResult(queryId, -1); + } + + async Task SendQueryResult(long queryId, int count) + { + await SendQueryResult(queryId, count, null); + } + + async Task SendQueryResult(long queryId, int count, ShrineBreakdown breakdowns) { var message = new ShrineUpdateResultWithCrcResult { QueryId = queryId, AdapterNodeKey = opts.Node.Key, - Count = count.Result.Value, + Count = count, CrcQueryInstanceId = 42, - Breakdowns = null, + Breakdowns = breakdowns, ObfuscatingParameters = new ShrineResultObfuscatingParameters { BinSize = 5, @@ -253,7 +288,17 @@ async Task SendQueryReceivedMessage(long queryId, ShrineQueryStatusType innerCla } // Else not from Leaf, so set user context and transform query defintion - return (new ShrineUserContext(run.Researcher), converter.ToLeafQuery(run.Query)); + IPatientCountQueryDTO query = null; + try + { + query = queryConverter.ToLeafQuery(run.Query); + } + catch (Exception ex) + { + logger.LogError("Failed to convert SHRINE query to Leaf query. SHRINE query: {@Query}. Error: {Error}", run.Query, ex.ToString()); + } + + return (new ShrineUserContext(run.Researcher), query); } } } diff --git a/src/server/API/Options/StartupExtensions.Services.cs b/src/server/API/Options/StartupExtensions.Services.cs index 7cfac1a5e..ab117fff3 100644 --- a/src/server/API/Options/StartupExtensions.Services.cs +++ b/src/server/API/Options/StartupExtensions.Services.cs @@ -27,6 +27,7 @@ using Model.Compiler.SqlBuilder; using Model.Compiler.PanelSqlCompiler; using Model.Export; +using Model.Integration.Shrine; using Model.Network; using Model.Options; using Model.Search; @@ -50,7 +51,6 @@ using Services.Notification; using Services.Obfuscation; using System.Net.Http; -using Model.Integration.Shrine; namespace API.Options { @@ -205,6 +205,7 @@ static IServiceCollection AddIntegrationServices(this IServiceCollection service services.AddHostedService(); services.AddHostedService(); services.AddTransient(); + services.AddTransient(); services.AddTransient(); services.AddSingleton(); services.AddSingleton(); diff --git a/src/server/Model/Cohort/DemographicProvider.cs b/src/server/Model/Cohort/DemographicProvider.cs index 50a81b375..96b0e70ae 100644 --- a/src/server/Model/Cohort/DemographicProvider.cs +++ b/src/server/Model/Cohort/DemographicProvider.cs @@ -42,7 +42,7 @@ Task ExecuteDemographicsAsync( readonly ILogger log; public DemographicProvider( - IUserContext user, + IUserContextProvider userContextProvider, DemographicCompilerValidationContextProvider contextProvider, IOptions clientOpts, IOptions deidentOpts, @@ -50,7 +50,7 @@ public DemographicProvider( IDemographicsExecutor executor, ILogger log) { - this.user = user; + this.user = userContextProvider.GetUserContext(); this.contextProvider = contextProvider; this.compiler = compiler; this.executor = executor; diff --git a/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs b/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs index 7abf52b60..74e5af5dc 100644 --- a/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs +++ b/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs @@ -22,11 +22,11 @@ public class PanelSqlCompiler : IPanelSqlCompiler readonly CompilerOptions compilerOptions; public PanelSqlCompiler( - IUserContext user, + IUserContextProvider userContextProvider, ISqlDialect dialect, IOptions compilerOptions) { - this.user = user; + this.user = userContextProvider.GetUserContext(); this.dialect = dialect; this.compilerOptions = compilerOptions.Value; } diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineOutput.cs b/src/server/Model/Integration/Shrine/4_1/ShrineOutput.cs deleted file mode 100644 index 803310401..000000000 --- a/src/server/Model/Integration/Shrine/4_1/ShrineOutput.cs +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright (c) 2023, UW Medicine Research IT, University of Washington -// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. -using System; -namespace Model.Integration.Shrine4_1 -{ - public class ShrineOutput - { - public ShrineOutputType EncodedClass { get; set; } - } - - public enum ShrineOutputType - { - Count - } -} - diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs b/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs index 0ef950f7a..91302b6ce 100644 --- a/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs +++ b/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs @@ -12,9 +12,9 @@ public class ShrineQuery { public long Id { get; set; } public ShrineVersionInfo VersionInfo { get; set; } - public ShrineStatus Status { get; set; } - public ShrineQueryDefinition QueryDefinition { get; set; } - public ShrineOutput Output { get; set; } + public ShrineQueryDefinition QueryDefinition { get; set; } + public ShrineStatusType Status { get; set; } + public ShrineOutputType Output { get; set; } public string QueryName { get; set; } public long NodeOfOriginId { get; set; } public long ResearcherId { get; set; } @@ -29,5 +29,17 @@ public enum ShrineQueryType { QueryProgress } + + public enum ShrineOutputType + { + Count, + DemographicsAndCount + } + + public enum ShrineStatusType + { + ReadyForAdapters, + SentToHub + } } diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs b/src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs deleted file mode 100644 index 1415b2b1c..000000000 --- a/src/server/Model/Integration/Shrine/4_1/ShrineStatus.cs +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) 2023, UW Medicine Research IT, University of Washington -// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at http://mozilla.org/MPL/2.0/. -using System; -namespace Model.Integration.Shrine4_1 -{ - public class ShrineStatus - { - public ShrineStatusType EncodedClass { get; set; } - } - - public enum ShrineStatusType - { - ReadyForAdapters, - SentToHub - } -} - diff --git a/src/server/Model/Integration/Shrine/ShrineUpdateResultWithCrcResult.cs b/src/server/Model/Integration/Shrine/ShrineUpdateResultWithCrcResult.cs index f9ba16db0..67b4bbdc8 100644 --- a/src/server/Model/Integration/Shrine/ShrineUpdateResultWithCrcResult.cs +++ b/src/server/Model/Integration/Shrine/ShrineUpdateResultWithCrcResult.cs @@ -8,9 +8,14 @@ namespace Model.Integration.Shrine { public class ShrineUpdateResultWithCrcResult : ShrineUpdateResultWithProgress { - public string Breakdowns { get; set; } + public ShrineBreakdown Breakdowns { get; set; } public ShrineResultObfuscatingParameters ObfuscatingParameters { get; set; } public int Count { get; set; } } + + public class ShrineBreakdown + { + public object[] Counts { get; set; } + } } diff --git a/src/server/Services/Cohort/CachedCohortFetcher.cs b/src/server/Services/Cohort/CachedCohortFetcher.cs index 3d3b6ce9c..77bd2fa0c 100644 --- a/src/server/Services/Cohort/CachedCohortFetcher.cs +++ b/src/server/Services/Cohort/CachedCohortFetcher.cs @@ -24,10 +24,10 @@ public class CachedCohortFetcher : ICachedCohortFetcher readonly AppDbOptions dbOptions; readonly IUserContext user; - public CachedCohortFetcher(IOptions dbOptions, IUserContext user) + public CachedCohortFetcher(IOptions dbOptions, IUserContextProvider userContextProvider) { this.dbOptions = dbOptions.Value; - this.user = user; + this.user = userContextProvider.GetUserContext(); } public async Task> FetchCohortAsync(Guid queryId, bool exportedOnly) diff --git a/src/server/Services/Search/DemographicCompilerContextProvider.cs b/src/server/Services/Search/DemographicCompilerContextProvider.cs index ef4963357..fbba3ac2a 100644 --- a/src/server/Services/Search/DemographicCompilerContextProvider.cs +++ b/src/server/Services/Search/DemographicCompilerContextProvider.cs @@ -29,11 +29,11 @@ public class DemographicCompilerContextProvider : DemographicCompilerValidationC readonly ILogger log; public DemographicCompilerContextProvider( - IUserContext user, + IUserContextProvider userContextProvider, IOptions options, ILogger logger) { - this.user = user; + this.user = userContextProvider.GetUserContext(); opts = options.Value; log = logger; } From f7cefa77c96fb2a0654b7b55fb75ae821f97cbc6 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Fri, 29 Dec 2023 16:00:05 -0800 Subject: [PATCH 14/19] working on leaf UI & Leaf -> shrine query conversion --- .../API/Controllers/ConfigController.cs | 12 ++++ .../API/Controllers/IntegrationController.cs | 52 ++++++++------- src/server/API/DTO/Config/ConfigDTO.cs | 12 ++++ .../Shrine/4_1/ShrineExpressionDTO.cs | 2 +- .../Integration/Shrine/4_1/ShrineQueryDTO.cs | 2 +- .../Shrine/ShrineRunQueryForResultDTO.cs | 8 +-- .../4_1/ShrineQueryDefinitionConverter.cs | 33 ++++++++-- .../Integration/Shrine/ShrineMessageBroker.cs | 16 ++++- .../Jobs/BackgroundShrinePollingService.cs | 23 ++----- src/server/API/Options/Config.Integration.cs | 7 ++ .../API/Options/StartupExtensions.Options.cs | 12 +++- src/server/API/appsettings.json | 2 +- .../Integration/Shrine/4_1/ShrineQuery.cs | 2 +- .../Shrine/IShrineQueryResultCache.cs | 4 +- .../Shrine/IShrineUserQueryCache.cs | 4 +- .../Integration/Shrine/ShrineCohortCounter.cs | 64 +++++++++++++++++++ .../Model/Options/IntegrationOptions.cs | 12 +++- src/ui-client/src/actions/cohort/count.ts | 33 +++++++++- src/ui-client/src/models/Auth.ts | 10 +++ .../models/integration/ShrineQueryResult.ts | 35 ++++++++++ src/ui-client/src/services/cohortApi.ts | 35 ++++++++-- 21 files changed, 307 insertions(+), 73 deletions(-) create mode 100644 src/server/Model/Integration/Shrine/ShrineCohortCounter.cs create mode 100644 src/ui-client/src/models/integration/ShrineQueryResult.ts diff --git a/src/server/API/Controllers/ConfigController.cs b/src/server/API/Controllers/ConfigController.cs index 50277b017..757d0bf39 100644 --- a/src/server/API/Controllers/ConfigController.cs +++ b/src/server/API/Controllers/ConfigController.cs @@ -24,6 +24,7 @@ public class ConfigController : Controller readonly ClientOptions clientOptions; readonly AttestationOptions attestationOptions; readonly DeidentificationOptions deidentOptions; + readonly IntegrationOptions integrationOptions; readonly IServerStateCache serverStateCache; public ConfigController( @@ -33,6 +34,7 @@ public ConfigController( IOptions clientOptions, IOptions attestationOptions, IOptions deidentOptions, + IOptions integrationOptions, IServerStateCache serverStateCache) { this.authenticationOptions = authenticationOptions.Value; @@ -41,6 +43,7 @@ public ConfigController( this.clientOptions = clientOptions.Value; this.attestationOptions = attestationOptions.Value; this.deidentOptions = deidentOptions.Value; + this.integrationOptions = integrationOptions.Value; this.serverStateCache = serverStateCache; } @@ -112,6 +115,15 @@ public ActionResult Get() { Server = versionOptions.Version.ToString(), Db = serverStateCache.GetServerState().Db.Version.ToString() + }, + Integration = new IntegrationConfigDTO + { + Enabled = integrationOptions.Enabled, + Shrine = integrationOptions.SHRINE != null + ? new IntegrationConfigDTO.IntegrationTypeDTO + { + Enabled = integrationOptions.SHRINE.Enabled + } : null } }; diff --git a/src/server/API/Controllers/IntegrationController.cs b/src/server/API/Controllers/IntegrationController.cs index 75ebee9fd..3c0d57a89 100644 --- a/src/server/API/Controllers/IntegrationController.cs +++ b/src/server/API/Controllers/IntegrationController.cs @@ -4,7 +4,9 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. using System; +using System.Threading; using API.DTO.Cohort; +using API.DTO.Integration.Shrine; using API.Integration.Shrine; using API.Integration.Shrine4_1; using Microsoft.AspNetCore.Authorization; @@ -27,6 +29,7 @@ public class IntegrationController : Controller readonly ILogger log; readonly IntegrationOptions opts; readonly ShrineQueryDefinitionConverter converter; + readonly IUserContext user; readonly IShrineUserQueryCache userQueryCache; readonly IShrineQueryResultCache queryResultCache; readonly IShrineMessageBroker broker; @@ -34,6 +37,7 @@ public class IntegrationController : Controller public IntegrationController( ILogger log, IOptions opts, + IUserContext user, IShrineUserQueryCache userQueryCache, IShrineQueryResultCache queryResultCache, IShrineMessageBroker broker, @@ -42,6 +46,7 @@ ShrineQueryDefinitionConverter converter { this.log = log; this.opts = opts.Value; + this.user = user; this.userQueryCache = userQueryCache; this.queryResultCache = queryResultCache; this.broker = broker; @@ -51,36 +56,42 @@ ShrineQueryDefinitionConverter converter [HttpPost("shrine/count")] public ActionResult ShrineCount( [FromBody] PatientCountQueryDTO patientCountQuery - //[FromServices] IUserContextProvider userContextProvider ) { if (!opts.Enabled || !opts.SHRINE.Enabled) return BadRequest(); try { - var queryId = ShrineQueryDefinitionConverter.GenerateRandomLongId(); - /* - var user = userContextProvider.GetUserContext(); var queryDefinition = converter.ToShrineQuery(patientCountQuery); + + var researcher = opts.SHRINE.Researcher; + var node = opts.SHRINE.Node; + var topic = opts.SHRINE.Topic; var runQuery = new ShrineRunQueryForResult { Query = queryDefinition, - Node = new ShrineNode { }, - Topic = new ShrineTopic { }, - ResultProgress = new ShrineResultProgress { }, - Researcher = new ShrineResearcher { }, + Researcher = new ShrineResearcher + { + Id = researcher.Id, + VersionInfo = queryDefinition.VersionInfo, + UserName = researcher.Name, + UserDomainName = researcher.Domain, + NodeId = node.Id + }, + Topic = new ShrineTopic + { + Id = topic.Id, + VersionInfo = queryDefinition.VersionInfo, + ResearcherId = researcher.Id, + Name = topic.Name, + Description = topic.Description + }, ProtocolVersion = 2 }; - var contents = new ShrineDeliveryContents - { - Contents = JsonConvert.SerializeObject(runQuery), - ContentsSubject = queryId - }; - + var dto = new ShrineRunQueryForResultDTO(runQuery); userQueryCache.Put(queryId, user, patientCountQuery); - broker.SendMessageToHub(contents); - */ + broker.SendMessageToHub(queryId, dto, ShrineDeliveryContentsType.RunQueryAtHub); return Ok(queryId); } @@ -92,21 +103,14 @@ [FromBody] PatientCountQueryDTO patientCountQuery } [HttpGet("shrine/cohort/{queryId}/count")] - public ActionResult GetShrineCountResult( - long queryId - //[FromServices] IUserContextProvider userContextProvider - ) + public ActionResult GetShrineCountResult(long queryId) { if (!opts.Enabled || !opts.SHRINE.Enabled) return BadRequest(); try { - - //var user = userContextProvider.GetUserContext(); var results = queryResultCache.GetOrDefault(queryId); - if (results == null) return NotFound(); - //if (results.User.UserName != user.UUID) return NotFound(); return Ok(results); } diff --git a/src/server/API/DTO/Config/ConfigDTO.cs b/src/server/API/DTO/Config/ConfigDTO.cs index 41fec882f..4d0611b73 100644 --- a/src/server/API/DTO/Config/ConfigDTO.cs +++ b/src/server/API/DTO/Config/ConfigDTO.cs @@ -15,6 +15,7 @@ public class ConfigDTO public CohortConfigDTO Cohort { get; set; } public ClientOptionsDTO Client { get;set; } public VersionConfigDTO Version { get; set; } + public IntegrationConfigDTO Integration { get; set; } } public class AuthenticationConfigDTO @@ -106,4 +107,15 @@ public class VersionConfigDTO public string Server { get; set; } public string Db { get; set; } } + + public class IntegrationConfigDTO + { + public bool Enabled { get; set; } + public IntegrationTypeDTO Shrine { get; set; } + + public class IntegrationTypeDTO + { + public bool Enabled { get; set; } + } + } } diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs index cbf4eeaab..3f7999e6e 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs @@ -253,7 +253,7 @@ public static ShrineTimelineSubsequentEvent ToSubsequentEvent(this ShrineTimelin ConceptGroup = dto.ConceptGroup.ToConceptGroup(), PreviousOccurrence = previousOccurrence, ThisOccurrence = thisOccurrence, - TimeConstraint = dto?.TimeConstraint.ToTimeConstraint() + TimeConstraint = dto.TimeConstraint != null ? dto.TimeConstraint.ToTimeConstraint() : null }; } diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs index 57ec6cdb5..2b12925ff 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs @@ -19,7 +19,7 @@ public class ShrineQueryDTO public string QueryName { get; set; } public long NodeOfOriginId { get; set; } public long ResearcherId { get; set; } - public int TopicId { get; set; } + public long TopicId { get; set; } public string ProjectName { get; set; } public bool Flagged { get; set; } public string FlaggedMessage { get; set; } diff --git a/src/server/API/DTO/Integration/Shrine/ShrineRunQueryForResultDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineRunQueryForResultDTO.cs index 555fb88e7..a17e70b10 100644 --- a/src/server/API/DTO/Integration/Shrine/ShrineRunQueryForResultDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/ShrineRunQueryForResultDTO.cs @@ -26,10 +26,10 @@ public ShrineRunQueryForResultDTO() public ShrineRunQueryForResultDTO(ShrineRunQueryForResult runQueryForResult) { Query = new ShrineQueryDTO(runQueryForResult.Query); - Node = new ShrineNodeDTO(runQueryForResult.Node); - Topic = new ShrineTopicDTO(runQueryForResult.Topic); - ResultProgress = new ShrineResultProgressDTO(runQueryForResult.ResultProgress); - Researcher = new ShrineResearcherDTO(runQueryForResult.Researcher); + Node = runQueryForResult.Node != null ? new ShrineNodeDTO(runQueryForResult.Node) : null; + Topic = runQueryForResult.Topic != null ? new ShrineTopicDTO(runQueryForResult.Topic) : null; + ResultProgress = runQueryForResult.ResultProgress != null ? new ShrineResultProgressDTO(runQueryForResult.ResultProgress) : null; + Researcher = runQueryForResult.Researcher != null ? new ShrineResearcherDTO(runQueryForResult.Researcher) : null; ProtocolVersion = runQueryForResult.ProtocolVersion; } } diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs index e7177e110..234947ece 100644 --- a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs +++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs @@ -8,15 +8,23 @@ using System.Linq; using API.DTO.Cohort; using API.DTO.Compiler; +using Microsoft.Extensions.Options; using Model.Compiler; using Model.Integration.Shrine; using Model.Integration.Shrine4_1; +using Model.Options; namespace API.Integration.Shrine4_1 { public class ShrineQueryDefinitionConverter { readonly string UniversalIdPrefix = $"urn:leaf:concept:shrine:"; + readonly ShrineIntegrationOptions opts; + + public ShrineQueryDefinitionConverter(IOptions opts) + { + this.opts = opts.Value; + } public IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery) { @@ -79,9 +87,9 @@ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) { var first = new SubPanelDTO { - IncludeSubPanel = timeline.First.NMustBeTrue > 0, + IncludeSubPanel = timeline.First.Concepts.NMustBeTrue > 0, Index = 0, - MinimumCount = timeline.First.NMustBeTrue, + MinimumCount = timeline.First.Concepts.NMustBeTrue, PanelIndex = i, PanelItems = timeline.First.Concepts.Possibilities.Select((c, j) => { @@ -109,7 +117,7 @@ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) JoinSequence = new SubPanelJoinSequence { Increment = sub.TimeConstraint != null ? sub.TimeConstraint.Value : -1, - DateIncrementType = sub.TimeConstraint.TimeUnit, + DateIncrementType = sub.TimeConstraint != null ? sub.TimeConstraint.TimeUnit : DateIncrementType.None, SequenceType = SequenceType.AnytimeFollowing }, PanelIndex = i, @@ -173,12 +181,21 @@ public ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery) }, Possibilities = panels.Select(p => { - return p.SubPanels.Count() == 1 + return p.SubPanels.Count() > 1 && p.SubPanels.ElementAt(1).PanelItems.Any() ? LeafNonSequenceToShrineConceptGroup(p) : LeafSequenceToShrineTimeline(p); }) } - } + }, + Output = ShrineOutputType.Count, + QueryName = "Query" + /* + NodeOfOriginId = opts.Node.Id, + ResearcherId = opts.Researcher.Id, + TopicId = opts.Topic.Id, + ProjectName = "Query", + Flagged = false + */ }; } @@ -254,7 +271,11 @@ ShrineConceptConjunction LeafSubPanelToShrineConceptConjunction(IPanelDTO panel, public static long GenerateRandomLongId() { - return LongRandom(10000000000000000, 999999999999999999, new Random()); + //return LongRandom(10000000000000000, long.MaxValue, new Random()); + Random random = new(); + byte[] bytes = new byte[8]; + random.NextBytes(bytes); + return BitConverter.ToInt64(bytes, 0); } static long LongRandom(long min, long max, Random rand) diff --git a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs index 5de94fd6e..71360cd69 100644 --- a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs +++ b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs @@ -20,13 +20,14 @@ public interface IShrineMessageBroker { Task<(HttpResponseMessage, ShrineDeliveryContents)> ReadHubMessageAndAcknowledge(); Task SendMessageToHub(ShrineDeliveryContents contents); + Task SendMessageToHub(long queryId, object contents, ShrineDeliveryContentsType type); } public class ShrineMessageBroker : IShrineMessageBroker { readonly HttpClient client; - readonly SHRINEOptions opts; - readonly int TimeOutSeconds = 50; + readonly ShrineIntegrationOptions opts; + readonly int TimeOutSeconds = 5; readonly JsonSerializerSettings serializerSettings = new JsonSerializerSettings { ContractResolver = new CamelCasePropertyNamesContractResolver() @@ -73,6 +74,17 @@ public ShrineMessageBroker(HttpClient client, IOptions opts) return (resp, contents.ToContents()); } + public async Task SendMessageToHub(long queryId, object contents, ShrineDeliveryContentsType type) + { + var delivery = new ShrineDeliveryContents + { + ContentsSubject = queryId, + Contents = JsonConvert.SerializeObject(contents, serializerSettings), + ContentsType = type + }; + return await SendMessageToHub(delivery); + } + public async Task SendMessageToHub(ShrineDeliveryContents contents) { var request = new HttpRequestMessage diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs index f7bea20db..fd1380032 100644 --- a/src/server/API/Jobs/BackgroundShrinePollingService.cs +++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs @@ -32,14 +32,10 @@ public class BackgroundShrinePollingService : BackgroundService readonly IShrineQueryResultCache queryResultCache; readonly IShrineUserQueryCache userQueryCache; readonly IServiceScopeFactory serviceScopeFactory; - readonly SHRINEOptions opts; + readonly ShrineIntegrationOptions opts; readonly ShrineQueryDefinitionConverter queryConverter; readonly ShrineDemographicsConverter demographicsConverter; readonly int ErrorPauseSeconds = 3; - readonly JsonSerializerSettings serializerSettings = new JsonSerializerSettings - { - ContractResolver = new CamelCasePropertyNamesContractResolver() - }; public BackgroundShrinePollingService( ILogger logger, @@ -83,6 +79,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) // Error, delay before next poll await Task.Delay(TimeSpan.FromSeconds(ErrorPauseSeconds), stoppingToken); } + continue; } _ = Task.Run(async () => @@ -237,13 +234,7 @@ async Task SendQueryResult(long queryId, int count, ShrineBreakdown breakdowns) }; var dto = new ShrineUpdateResultWithCrcResultDTO(message); - var response = new ShrineDeliveryContents - { - ContentsSubject = queryId, - Contents = JsonConvert.SerializeObject(dto, serializerSettings), - ContentsType = ShrineDeliveryContentsType.UpdateResult - }; - _ = await broker.SendMessageToHub(response); + _ = await broker.SendMessageToHub(queryId, dto, ShrineDeliveryContentsType.UpdateResult); } async Task SendQueryReceievedByAdapter(long queryId) @@ -268,13 +259,7 @@ async Task SendQueryReceivedMessage(long queryId, ShrineQueryStatusType innerCla }; var dto = new ShrineUpdateResultWithProgressDTO(message); - var response = new ShrineDeliveryContents - { - ContentsSubject = queryId, - Contents = JsonConvert.SerializeObject(dto, serializerSettings), - ContentsType = ShrineDeliveryContentsType.UpdateResult - }; - _ = await broker.SendMessageToHub(response); + _ = await broker.SendMessageToHub(queryId, dto, ShrineDeliveryContentsType.UpdateResult); } (IUserContext, IPatientCountQueryDTO) GetContext(ShrineRunQueryForResult run) diff --git a/src/server/API/Options/Config.Integration.cs b/src/server/API/Options/Config.Integration.cs index d6b19e4a0..3dd78dd38 100644 --- a/src/server/API/Options/Config.Integration.cs +++ b/src/server/API/Options/Config.Integration.cs @@ -26,6 +26,13 @@ public static class Node public const string Name = @"Integration:SHRINE:Node:Name"; } + public static class Researcher + { + public const string Id = @"Integration:SHRINE:Researcher:Id"; + public const string Name = @"Integration:SHRINE:Researcher:Name"; + public const string Domain = @"Integration:SHRINE:Researcher:Domain"; + } + public static class Topic { public const string Id = @"Integration:SHRINE:Topic:Id"; diff --git a/src/server/API/Options/StartupExtensions.Options.cs b/src/server/API/Options/StartupExtensions.Options.cs index 7e8de6d30..fe06580f2 100644 --- a/src/server/API/Options/StartupExtensions.Options.cs +++ b/src/server/API/Options/StartupExtensions.Options.cs @@ -263,17 +263,23 @@ static IServiceCollection ConfigureIntegrationOptions(this IServiceCollection se config.TryGetValue(Config.Integration.SHRINE.Enabled, out bool shrineEnabled); if (shrineEnabled) { - var shrine = new SHRINEOptions + var shrine = new ShrineIntegrationOptions { Enabled = shrineEnabled, HubApiURI = config.GetValue(Config.Integration.SHRINE.HubApiURI), - Node = new SHRINEOptions.LocalNode + Node = new ShrineIntegrationOptions.LocalNode { Id = config.GetValue(Config.Integration.SHRINE.Node.Id), Key = config.GetValue(Config.Integration.SHRINE.Node.Key), Name = config.GetValue(Config.Integration.SHRINE.Node.Name) }, - Topic = new SHRINEOptions.DefaultTopic + Researcher = new ShrineIntegrationOptions.LocalResearcher + { + Id = config.GetValue(Config.Integration.SHRINE.Researcher.Id), + Name = config.GetValue(Config.Integration.SHRINE.Researcher.Name), + Domain = config.GetValue(Config.Integration.SHRINE.Researcher.Domain) + }, + Topic = new ShrineIntegrationOptions.DefaultTopic { Id = config.GetValue(Config.Integration.SHRINE.Topic.Id), Name = config.GetValue(Config.Integration.SHRINE.Topic.Name), diff --git a/src/server/API/appsettings.json b/src/server/API/appsettings.json index 231af2de6..3393b14fa 100644 --- a/src/server/API/appsettings.json +++ b/src/server/API/appsettings.json @@ -96,7 +96,7 @@ "Researcher": { "Id": 24823904, "Name": "demo", - "DomainName": "i2b2demo" + "Domain": "i2b2demo" }, "Topic": { "Id": 1481654093, diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs b/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs index 91302b6ce..c3555588b 100644 --- a/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs +++ b/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs @@ -18,7 +18,7 @@ public class ShrineQuery public string QueryName { get; set; } public long NodeOfOriginId { get; set; } public long ResearcherId { get; set; } - public int TopicId { get; set; } + public long TopicId { get; set; } public string ProjectName { get; set; } public bool Flagged { get; set; } = false; public string FlaggedMessage { get; set; } diff --git a/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs index 1b1a7a0a5..7b6abdbc5 100644 --- a/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs +++ b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs @@ -25,8 +25,8 @@ public interface IShrineQueryResultCache : IEnumerable public class ShrineQueryResultCache : IShrineQueryResultCache { - readonly Dictionary store = new Dictionary(); - readonly ReaderWriterLockSlim sync = new ReaderWriterLockSlim(); + readonly Dictionary store = new(); + readonly ReaderWriterLockSlim sync = new(); public ShrineQueryResultCache(IEnumerable initial) { diff --git a/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs b/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs index 9733adbe0..5260bc1e6 100644 --- a/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs +++ b/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs @@ -23,8 +23,8 @@ public interface IShrineUserQueryCache : IEnumerable public class ShrineUserContextCache : IShrineUserQueryCache { - readonly Dictionary store = new Dictionary(); - readonly ReaderWriterLockSlim sync = new ReaderWriterLockSlim(); + readonly Dictionary store = new(); + readonly ReaderWriterLockSlim sync = new(); public IEnumerable All() { diff --git a/src/server/Model/Integration/Shrine/ShrineCohortCounter.cs b/src/server/Model/Integration/Shrine/ShrineCohortCounter.cs new file mode 100644 index 000000000..11649d516 --- /dev/null +++ b/src/server/Model/Integration/Shrine/ShrineCohortCounter.cs @@ -0,0 +1,64 @@ +// Copyright (c) 2023, UW Medicine Research IT, University of Washington +// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +using System; +using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Options; +using Model.Authorization; +using Model.Options; +using Model.Integration.Shrine4_1; +using Model.Compiler; + +namespace Model.Integration.Shrine +{ + public class ShrineCohortCounter + { + readonly ILogger log; + readonly IUserContext user; + readonly IShrineUserQueryCache userQueryCache; + readonly IShrineQueryResultCache queryResultCache; + readonly ShrineIntegrationOptions opts; + + public ShrineCohortCounter( + ILogger log, + IOptions opts, + IUserContext user, + IShrineUserQueryCache userQueryCache, + IShrineQueryResultCache queryResultCache) + { + this.user = user; + this.userQueryCache = userQueryCache; + this.queryResultCache = queryResultCache; + this.log = log; + this.opts = opts.Value; + } + + public ShrineRunQueryForResult SubmitQueryToShrine(ShrineQuery query) + { + return new ShrineRunQueryForResult + { + Query = query, + Researcher = new ShrineResearcher + { + Id = opts.Researcher.Id, + VersionInfo = query.VersionInfo, + UserName = opts.Researcher.Name, + UserDomainName = opts.Researcher.Domain, + NodeId = opts.Node.Id + }, + Topic = new ShrineTopic + { + Id = opts.Topic.Id, + VersionInfo = query.VersionInfo, + ResearcherId = opts.Researcher.Id, + Name = opts.Topic.Name, + Description = opts.Topic.Description + }, + ProtocolVersion = 2 + }; + } + } +} + diff --git a/src/server/Model/Options/IntegrationOptions.cs b/src/server/Model/Options/IntegrationOptions.cs index 533d5e4f0..f471b9346 100644 --- a/src/server/Model/Options/IntegrationOptions.cs +++ b/src/server/Model/Options/IntegrationOptions.cs @@ -10,14 +10,15 @@ namespace Model.Options public class IntegrationOptions { public bool Enabled { get; set; } = false; - public SHRINEOptions SHRINE { get; set; } + public ShrineIntegrationOptions SHRINE { get; set; } } - public class SHRINEOptions : IEnabled + public class ShrineIntegrationOptions : IEnabled { public bool Enabled { get; set; } = false; public string HubApiURI { get; set; } public LocalNode Node { get; set; } + public LocalResearcher Researcher { get; set; } public DefaultTopic Topic { get; set; } public class LocalNode @@ -27,6 +28,13 @@ public class LocalNode public string Name { get; set; } } + public class LocalResearcher + { + public long Id { get; set; } + public string Name { get; set; } + public string Domain { get; set; } + } + public class DefaultTopic { public long Id { get; set; } diff --git a/src/ui-client/src/actions/cohort/count.ts b/src/ui-client/src/actions/cohort/count.ts index a35c1a9f5..a9eab136b 100644 --- a/src/ui-client/src/actions/cohort/count.ts +++ b/src/ui-client/src/actions/cohort/count.ts @@ -15,7 +15,7 @@ import { NetworkIdentity, NetworkResponderMap } from '../../models/NetworkRespon import { panelToDto } from '../../models/panel/Panel'; import { PanelFilter } from '../../models/panel/PanelFilter'; import { aggregateStatistics } from '../../services/cohortAggregatorApi'; -import { fetchCount, fetchDemographics } from '../../services/cohortApi'; +import { fetchCount, fetchDemographics, fetchSHRINEQueryResults, submitSHRINEQuery } from '../../services/cohortApi'; import { clearPreviousPatientList } from '../../services/patientListApi'; import { formatMultipleSql } from '../../utils/formatSql'; import { getPatientListFromNewBaseDataset, getPatientListDataset, setPatientListCustomColumnNames } from './patientList'; @@ -27,6 +27,7 @@ import { allowAllDatasets } from '../../services/datasetSearchApi'; import { clearAllTimelinesData } from '../../services/timelinesApi'; import { setDatasetSearchResult, setDatasetSearchTerm } from '../datasets'; import { sleep } from '../../utils/Sleep'; +import { ShrineQueryResult } from '../../models/integration/ShrineQueryResult'; export const REGISTER_NETWORK_COHORTS = 'REGISTER_NETWORK_COHORTS'; export const COHORT_COUNT_SET = 'COHORT_COUNT_SET'; @@ -58,6 +59,36 @@ export interface CohortCountAction { * If a result comes back after query is cancelled, it is discarded. */ export const getCounts = () => { + return async (dispatch: any, getState: () => AppState) => { + const state = getState(); + const integration = state.auth.config.integration; + + if (!integration.enabled) { + dispatch(getDirectCounts()); + } else if (integration.shrine?.enabled) { + const cancelSource = Axios.CancelToken.source(); + const panels = state.panels.map(p => panelToDto(p)); + const panelFilters = state.panelFilters.filter((pf: PanelFilter) => pf.isActive); + const homeNode = state.responders.get(0); + const queryId = state.cohort.networkCohorts.get(homeNode.id)!.count.queryId + const response = await submitSHRINEQuery(getState(), homeNode, panelFilters, panels, queryId, cancelSource); + const shrineQueryId = response.data as number; + + let resultsComplete = false; + let i = 1; + while (true) { + const response = await fetchSHRINEQueryResults(getState(), homeNode, shrineQueryId); + const results = response.data as ShrineQueryResult; + console.log(results); + await sleep(1000); + i++; + if (i >= 10) break; + } + } + }; +} + +export const getDirectCounts = () => { return async (dispatch: Dispatch, getState: () => AppState) => { let atLeastOneSucceeded = false; let atleastOneCached = false; diff --git a/src/ui-client/src/models/Auth.ts b/src/ui-client/src/models/Auth.ts index 82b9b372d..d09a89967 100644 --- a/src/ui-client/src/models/Auth.ts +++ b/src/ui-client/src/models/Auth.ts @@ -16,6 +16,7 @@ export interface ConfigDTO { attestation: AttestationOptionsDTO; cohort: CohortConfigDTO; client: ClientOptions; + integration: IntegrationConfigDTO; version: VersionConfigDTO; } @@ -49,6 +50,15 @@ interface VersionConfigDTO { server: string; } +interface IntegrationConfigDTO { + enabled: boolean; + shrine?: IntegrationTypeDTO; +} + +interface IntegrationTypeDTO { + enabled: boolean; +} + export enum CustomAttestationType { Text = 1, Html = 2 diff --git a/src/ui-client/src/models/integration/ShrineQueryResult.ts b/src/ui-client/src/models/integration/ShrineQueryResult.ts new file mode 100644 index 000000000..0695128fc --- /dev/null +++ b/src/ui-client/src/models/integration/ShrineQueryResult.ts @@ -0,0 +1,35 @@ + +export interface ShrineQueryResult { + id: number; + updated: string; + results: ShrineResultsMap; + user: ShrineResearcher; +} + +interface ShrineResultProgress { + adapterNodeId: number; + adapterNodeName: string; + crcInstanceId: number; + count: number; + id: number; + obfuscatingParameters: ShrineResultObfuscatingParameters; + queryId: number; +} + +interface ShrineResultsMap { + [id: number]: ShrineResultProgress; +} + +interface ShrineResearcher { + id: number; + userName: string; + userDomainName: string; + nodeId: number; +} + +interface ShrineResultObfuscatingParameters { + binSize: number; + lowLimit: number; + noiseClamp: number; + stdDev: number; +} \ No newline at end of file diff --git a/src/ui-client/src/services/cohortApi.ts b/src/ui-client/src/services/cohortApi.ts index 128785298..ba8ad7a33 100644 --- a/src/ui-client/src/services/cohortApi.ts +++ b/src/ui-client/src/services/cohortApi.ts @@ -31,6 +31,33 @@ export function fetchCount( return request; }; +/** + * Initiate patient count query to SHRINE + */ +export const submitSHRINEQuery = ( + state: AppState, nr: NetworkIdentity, panelFilters: PanelFilter[], panels: PanelDTO[], queryId: string, cancelToken: CancelTokenSource + ) => { + const { token } = state.session.context!; + const http = HttpFactory.authenticated(token); + const request = http.post(`${nr.address}/api/integration/shrine/count`, { + cancelToken: cancelToken.token, + panelFilters, + panels, + queryId, + }); + return request; +}; + +export const fetchSHRINEQueryResults = ( + state: AppState, + nr: NetworkIdentity, + shrineQueryId: number + ) => { + const { token } = state.session.context!; + const http = HttpFactory.authenticated(token); + return http.get(`${nr.address}/api/integration/shrine/cohort/${shrineQueryId}/count`); +}; + /** * Fetch demographics (shared by patient list and visuzalization) * based on already run patient counts. @@ -129,11 +156,11 @@ export const fetchAvailableDatasets = async (state: AppState): Promise { const dateTypeKeyMap = new Map([ - [DateIncrementType.HOUR, 'h'], - [DateIncrementType.DAY, 'd'], - [DateIncrementType.WEEK, 'w'], + [DateIncrementType.HOUR, 'h'], + [DateIncrementType.DAY, 'd'], + [DateIncrementType.WEEK, 'w'], [DateIncrementType.MONTH, 'M'], - [DateIncrementType.YEAR, 'y'] + [DateIncrementType.YEAR, 'y'] ]); if (date.dateIncrementType === DateIncrementType.NOW) { From b5c58ecbe8f9e2d0c5ac8662d9d6d082be775381 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Wed, 3 Jan 2024 13:34:48 -0800 Subject: [PATCH 15/19] added shrine test temp data --- .../API/Controllers/IntegrationController.cs | 1 - .../Shrine/4_1/ShrineDemographicsConverter.cs | 22 +- .../Jobs/BackgroundShrinePollingService.cs | 14 +- src/server/API/appsettings.json | 10 +- .../Model/Cohort/DemographicProvider.cs | 5 +- src/shrine-conv-temp/api_test.py | 210 + src/shrine-conv-temp/create_concepts.sql | 127854 +++++++ src/shrine-conv-temp/create_leaf_concepts.py | 133 + src/shrine-conv-temp/get_concept_tree.py | 42 + src/shrine-conv-temp/messages_received.json | 397 + src/shrine-conv-temp/nic_steps.md | 20 + src/shrine-conv-temp/ontology.json | 276902 +++++++++++++++ .../query_definitions/example1.json | 120 + .../query_definitions/example2.json | 109 + .../query_definitions/example3.json | 121 + .../query_definitions/example4.json | 123 + .../query_definitions/example5.json | 171 + 17 files changed, 406232 insertions(+), 22 deletions(-) create mode 100644 src/shrine-conv-temp/api_test.py create mode 100644 src/shrine-conv-temp/create_concepts.sql create mode 100644 src/shrine-conv-temp/create_leaf_concepts.py create mode 100644 src/shrine-conv-temp/get_concept_tree.py create mode 100644 src/shrine-conv-temp/messages_received.json create mode 100644 src/shrine-conv-temp/nic_steps.md create mode 100644 src/shrine-conv-temp/ontology.json create mode 100644 src/shrine-conv-temp/query_definitions/example1.json create mode 100644 src/shrine-conv-temp/query_definitions/example2.json create mode 100644 src/shrine-conv-temp/query_definitions/example3.json create mode 100644 src/shrine-conv-temp/query_definitions/example4.json create mode 100644 src/shrine-conv-temp/query_definitions/example5.json diff --git a/src/server/API/Controllers/IntegrationController.cs b/src/server/API/Controllers/IntegrationController.cs index 3c0d57a89..f5227a800 100644 --- a/src/server/API/Controllers/IntegrationController.cs +++ b/src/server/API/Controllers/IntegrationController.cs @@ -17,7 +17,6 @@ using Model.Authorization; using Model.Integration.Shrine; using Model.Options; -using Newtonsoft.Json; namespace API.Controllers { diff --git a/src/server/API/Integration/Shrine/4_1/ShrineDemographicsConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineDemographicsConverter.cs index 60f59c072..413310704 100644 --- a/src/server/API/Integration/Shrine/4_1/ShrineDemographicsConverter.cs +++ b/src/server/API/Integration/Shrine/4_1/ShrineDemographicsConverter.cs @@ -60,16 +60,16 @@ public ShrineBreakdown ToShrineBreakdown(DemographicProvider.Result result) { // Note: the spaces are not a typo. SHRINE (I assume unintentionally?) has spaces before buckets, // so we have to match them to get viz to line up - new object[] { " 0-9 years old", CheckIfZero(zero) }, - new object[] { " 10-17 years old", CheckIfZero(ten) }, - new object[] { " 18-34 years old", CheckIfZero(eighteen) }, - new object[] { " 35-44 years old", CheckIfZero(thirtyfive) }, - new object[] { " 45-54 years old", CheckIfZero(fortyfive) }, - new object[] { " 55-64 years old", CheckIfZero(fiftyfive) }, - new object[] { " 65-74 years old", CheckIfZero(sixtyfive) }, - new object[] { " 75-84 years old", CheckIfZero(seventyfive) }, - new object[] { ">= 65 years old", CheckIfZero(sixtyfiveplus) }, - new object[] { ">= 85 years old", CheckIfZero(eightyfive) } + new object[] { " 0-9 years old", NegativeOneIfZero(zero) }, + new object[] { " 10-17 years old", NegativeOneIfZero(ten) }, + new object[] { " 18-34 years old", NegativeOneIfZero(eighteen) }, + new object[] { " 35-44 years old", NegativeOneIfZero(thirtyfive) }, + new object[] { " 45-54 years old", NegativeOneIfZero(fortyfive) }, + new object[] { " 55-64 years old", NegativeOneIfZero(fiftyfive) }, + new object[] { " 65-74 years old", NegativeOneIfZero(sixtyfive) }, + new object[] { " 75-84 years old", NegativeOneIfZero(seventyfive) }, + new object[] { ">= 65 years old", NegativeOneIfZero(sixtyfiveplus) }, + new object[] { ">= 85 years old", NegativeOneIfZero(eightyfive) } }; return new ShrineBreakdown @@ -84,7 +84,7 @@ public ShrineBreakdown ToShrineBreakdown(DemographicProvider.Result result) }; } - static int CheckIfZero(int value) => value == 0 ? -1 : value; + static int NegativeOneIfZero(int value) => value == 0 ? -1 : value; static string Capitalize(string text) => char.ToUpper(text[0]) + text.Remove(0, 1); } diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs index fd1380032..f10b5bf49 100644 --- a/src/server/API/Jobs/BackgroundShrinePollingService.cs +++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs @@ -21,7 +21,6 @@ using Model.Compiler; using Model.Options; using Microsoft.Extensions.Options; -using Newtonsoft.Json.Serialization; namespace API.Jobs { @@ -32,6 +31,7 @@ public class BackgroundShrinePollingService : BackgroundService readonly IShrineQueryResultCache queryResultCache; readonly IShrineUserQueryCache userQueryCache; readonly IServiceScopeFactory serviceScopeFactory; + readonly DeidentificationOptions deidentOpts; readonly ShrineIntegrationOptions opts; readonly ShrineQueryDefinitionConverter queryConverter; readonly ShrineDemographicsConverter demographicsConverter; @@ -43,6 +43,7 @@ public BackgroundShrinePollingService( IShrineQueryResultCache queryResultCache, IShrineUserQueryCache userQueryCache, IServiceScopeFactory serviceScopeFactory, + IOptions deidentOpts, IOptions opts, ShrineQueryDefinitionConverter queryConverter, ShrineDemographicsConverter demographicsConverter @@ -56,6 +57,7 @@ ShrineDemographicsConverter demographicsConverter this.queryConverter = queryConverter; this.demographicsConverter = demographicsConverter; this.opts = opts.Value.SHRINE; + this.deidentOpts = deidentOpts.Value; } protected override async Task ExecuteAsync(CancellationToken stoppingToken) @@ -104,7 +106,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) } catch (Exception ex) { - logger.LogError("BackgroundShrinePollingService failed to parse SHRINE message. Error: {Error}", ex.ToString()); + logger.LogError("BackgroundShrinePollingService encountered an error. Error: {Error}", ex.ToString()); } break; @@ -224,8 +226,12 @@ async Task SendQueryResult(long queryId, int count, ShrineBreakdown breakdowns) { BinSize = 5, StdDev = 6.5M, - NoiseClamp = 10, - LowLimit = 10 + NoiseClamp = deidentOpts.Cohort.Enabled && deidentOpts.Cohort.Noise.Enabled + ? Math.Max(deidentOpts.Cohort.Noise.LowerBound, deidentOpts.Cohort.Noise.UpperBound) + : 10, + LowLimit = deidentOpts.Cohort.Enabled && deidentOpts.Cohort.LowCellSizeMasking.Enabled + ? deidentOpts.Cohort.LowCellSizeMasking.Threshold + : 10 }, Status = new ShrineQueryStatus { EncodedClass = ShrineQueryStatusType.ResultFromCRC }, StatusMessage = "FINISHED", diff --git a/src/server/API/appsettings.json b/src/server/API/appsettings.json index 3393b14fa..8eadcaf1c 100644 --- a/src/server/API/appsettings.json +++ b/src/server/API/appsettings.json @@ -124,13 +124,13 @@ "Cohort": { "Enabled": true, "Noise": { - "Enabled": false, - "LowerBound": -10, - "UpperBound": 10 + "Enabled": true, + "LowerBound": -3, + "UpperBound": 3 }, "LowCellSizeMasking": { - "Enabled": false, - "Threshold": 10 + "Enabled": true, + "Threshold": 3 } } }, diff --git a/src/server/Model/Cohort/DemographicProvider.cs b/src/server/Model/Cohort/DemographicProvider.cs index 96b0e70ae..838cf33cd 100644 --- a/src/server/Model/Cohort/DemographicProvider.cs +++ b/src/server/Model/Cohort/DemographicProvider.cs @@ -39,6 +39,7 @@ Task ExecuteDemographicsAsync( readonly IUserContext user; readonly ClientOptions clientOpts; readonly DeidentificationOptions deidentOpts; + readonly IntegrationOptions integrationOpts; readonly ILogger log; public DemographicProvider( @@ -46,6 +47,7 @@ public DemographicProvider( DemographicCompilerValidationContextProvider contextProvider, IOptions clientOpts, IOptions deidentOpts, + IOptions integrationOpts, IDemographicSqlCompiler compiler, IDemographicsExecutor executor, ILogger log) @@ -56,6 +58,7 @@ public DemographicProvider( this.executor = executor; this.clientOpts = clientOpts.Value; this.deidentOpts = deidentOpts.Value; + this.integrationOpts = integrationOpts.Value; this.log = log; } @@ -130,7 +133,7 @@ void ThrowIfSettingsInvalid() { throw new Exception("Both Visualize and Patient List are disabled"); } - if (deidentOpts.Cohort.Noise.Enabled) + if (deidentOpts.Cohort.Noise.Enabled && !integrationOpts.Enabled) { throw new Exception("Demographics cannot be returned if Cohort De-identification Noise is enabled"); } diff --git a/src/shrine-conv-temp/api_test.py b/src/shrine-conv-temp/api_test.py new file mode 100644 index 000000000..73b639693 --- /dev/null +++ b/src/shrine-conv-temp/api_test.py @@ -0,0 +1,210 @@ +import os +import requests +import random +import json +import time +import warnings + +warnings.filterwarnings("ignore") +os.environ["PYTHONWARNINGS"] = "ignore:Unverified HTTPS request" + +node1_id = 3698283121779390840 +leaf_node_id = 8304711555476111654 +node1_name = 'shrinenode1' +leaf_node_name = 'leaftest' +hub_base_uri = 'https://localhost:6443' + +query_id = int(str(random.getrandbits(128))[:18]) +node_id = leaf_node_id #node1_id +node_name = leaf_node_name #node1_name +researcher_id = 24823904 +create_date = round(time.time() * 1000) + +data = { + "contentsType": "RunQueryAtHub", + "contentsSubject": query_id, + "contents": { + "query": { + "id": query_id, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 2, + "createDate": create_date, + "changeDate": create_date + }, + "status": { + "encodedClass": "SentToHub" + }, + "queryDefinition": { + "expression": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "45-54 years old", + "termPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\", + "constraint": None, + "encodedClass": "Concept" + } + ] + }, + "startDate": None, + "endDate": None, + "occursAtLeast": 1, + "encodedClass": "ConceptGroup" + } + ], + "encodedClass": "Conjunction" + } + }, + "output": { + "encodedClass": "Count" + }, + "queryName": "Test from code", + "nodeOfOriginId": node_id, + "researcherId": researcher_id, + "topicId": 1, + "projectName": "Testing 2", + "flagged": False, + "flaggedMessage": None + }, + "researcher": { + "id": 0, #researcher_id, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "userName": 'ndobb', #"demo", + "userDomainName": 'u.washington.edu', # "i2b2demo", + "nodeId": node_id + }, + "topic": { + "id": 1481654093, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "researcherId": researcher_id, + "name": "Testing", + "description": "This is a topic for testing SHRINE 2020 (1)" + }, + "protocolVersion": 2 + }, + "protocolVersion": 2 +} +data['contents'] = json.dumps(data['contents'], separators=(',', ': ')).replace(': ',':') + + +query_request = requests.put(f'{hub_base_uri}/shrine-api/mom/sendMessage/hub', json=data, verify=False) +nodes = {} +print() + +while 1 != 0: + status = requests.get(f'{hub_base_uri}/shrine-api/mom/receiveMessage/{node_name}?timeOutSeconds=50', verify=False) + if status.ok and status.text: + delivery_attempt = json.loads(status.text) + update_query_at_qep = json.loads(delivery_attempt['contents']) + query_status = json.loads(update_query_at_qep['contents']) + + if update_query_at_qep['contentsType'] == 'RunQueryForResult': + msg_query_id = query_status['query']['id'] + else: + msg_query_id = query_status['queryId'] + + delivery_attempt_id = delivery_attempt['deliveryAttemptId']['underlying'] + acknowledged = requests.put(f'{hub_base_uri}/shrine-api/mom/acknowledge/{delivery_attempt_id}', verify=False) + + print(f'{delivery_attempt_id} - {msg_query_id} - {update_query_at_qep["contentsType"]}') + print(update_query_at_qep['contents']) + print() + + if 'adapterNodeId' not in query_status: + continue + + msg_type = query_status['encodedClass'] + node_id = query_status['adapterNodeId'] + + if node_id not in nodes: + node_info = requests.get(f'{hub_base_uri}/shrine-api/hub/node/{node_id}', verify=False) + nodes[node_id] = { 'node': json.loads(node_info.text), 'complete': False } + if msg_type == 'ResultProgress': + nodes[node_id]['status'] = query_status['status']['encodedClass'] + elif msg_type == 'CrcResult': + nodes[node_id]['complete'] = True + nodes[node_id]['result'] = { + 'count': query_status['count'], + 'crcQueryInstanceId': query_status['crcQueryInstanceId'], + 'obfuscatingParameters': query_status['obfuscatingParameters'] + } + + #if all([node for _, node in nodes.items() if node['complete'] == True]): + # break + + else: + break + +total = 0 +for _, node in nodes.items(): + if node['complete']: + total += node['result']['count'] + print(f"{node['node']['name']}: {node['result']['count']}") +print(f'Total: {total}') + +''' +delivery_attempt_id query_id contentsType +------------------- ------------------- ---------------- +5127093841472865589 - 100523611964537284 - UpdateQueryAtQep +{"queryId":100523611964537284,"queryStatus":{"encodedClass":"ReceivedAtHub"},"changeDate":1696525308901,"encodedClass":"UpdateQueryAtQepWithStatus"} + +8714169745439229153 - 100523611964537284 - UpdateQueryAtQep +{"queryId":100523611964537284,"changeDate":1696525309001,"resultProgresses":[{"id":1784089895897391647,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":1696525309001,"changeDate":1696525309001},"queryId":100523611964537284,"adapterNodeId":3854912477537176565,"adapterNodeName":"Local Node 2","status":{"encodedClass":"IdAssigned"},"statusMessage":null,"crcQueryInstanceId":null},{"id":1702258560717024998,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":1696525309001,"changeDate":1696525309001},"queryId":100523611964537284,"adapterNodeId":8304711555476111654,"adapterNodeName":"Leaf Test","status":{"encodedClass":"IdAssigned"},"statusMessage":null,"crcQueryInstanceId":null},{"id":4279393489486628251,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":1696525309001,"changeDate":1696525309001},"queryId":100523611964537284,"adapterNodeId":3698283121779390840,"adapterNodeName":"Local Node 1","status":{"encodedClass":"IdAssigned"},"statusMessage":null,"crcQueryInstanceId":null}],"encodedClass":"UpdateQueryReadyForAdapters"} + +281767842998056701 - 100523611964537284 - RunQueryForResult +{"query":{"id":100523611964537284,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":4,"createDate":1696525308735,"changeDate":1696525309001},"status":{"encodedClass":"ReadyForAdapters"},"queryDefinition":{"expression":{"nMustBeTrue":1,"compare":{"encodedClass":"AtLeast"},"possibilities":[{"concepts":{"nMustBeTrue":1,"compare":{"encodedClass":"AtLeast"},"possibilities":[{"displayName":"45-54 years old","termPath":"\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\","constraint":null,"encodedClass":"Concept"}]},"startDate":null,"endDate":null,"occursAtLeast":1,"encodedClass":"ConceptGroup"}],"encodedClass":"Conjunction"}},"output":{"encodedClass":"Count"},"queryName":"Test from code","nodeOfOriginId":8304711555476111654,"researcherId":24823904,"topicId":1,"projectName":"Testing 2","flagged":false,"flaggedMessage":null,"encodedClass":"QueryProgress"},"researcher":{"id":24823904,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":0,"changeDate":0},"userName":"demo","userDomainName":"i2b2demo","nodeId":8304711555476111654},"node":{"id":8304711555476111654,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":1691522665369,"changeDate":1691522665369},"name":"Leaf Test","key":"leaftest","userDomainName":"leaftest","momQueueName":"leaftest","adminEmail":"","sendQueries":true,"understandsProtocol":2,"momId":"leaftest"},"topic":{"id":1481654093,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":0,"changeDate":0},"researcherId":24823904,"name":"Testing","description":"This is a topic for testing SHRINE 2020 (1)"},"resultProgress":{"id":1702258560717024998,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":2,"createDate":1696525309001,"changeDate":1696525309083},"queryId":100523611964537284,"adapterNodeId":8304711555476111654,"adapterNodeName":"Leaf Test","status":{"encodedClass":"SentToAdapter"},"statusMessage":null,"crcQueryInstanceId":null},"protocolVersion":2} + +3826692987303208400 - 100523611964537284 - Result +{"id":1784089895897391647,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":2,"createDate":1696525309001,"changeDate":1696525309081},"queryId":100523611964537284,"adapterNodeId":3854912477537176565,"adapterNodeName":"Local Node 2","status":{"encodedClass":"SentToAdapter"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"} + +1789400259777802191 - 100523611964537284 - Result +{"id":1702258560717024998,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":2,"createDate":1696525309001,"changeDate":1696525309083},"queryId":100523611964537284,"adapterNodeId":8304711555476111654,"adapterNodeName":"Leaf Test","status":{"encodedClass":"SentToAdapter"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"} + +7775922862824602811 - 100523611964537284 - Result +{"id":4279393489486628251,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":2,"createDate":1696525309001,"changeDate":1696525309084},"queryId":100523611964537284,"adapterNodeId":3698283121779390840,"adapterNodeName":"Local Node 1","status":{"encodedClass":"SentToAdapter"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"} + +6627771438749993387 - 100523611964537284 - Result +{"id":4279393489486628251,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":2,"createDate":1696525309001,"changeDate":1696525309155},"queryId":100523611964537284,"adapterNodeId":3698283121779390840,"adapterNodeName":"Local Node 1","status":{"encodedClass":"ReceivedByAdapter"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"} + +4728163467598226460 - 100523611964537284 - UpdateQueryAtQep +{"queryId":100523611964537284,"queryStatus":{"encodedClass":"SentToAdapters"},"changeDate":1696525309299,"encodedClass":"UpdateQueryAtQepWithStatus"} + +4244047169261764344 - 100523611964537284 - Result +{"id":1784089895897391647,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":3,"createDate":1696525309001,"changeDate":1696525309163},"queryId":100523611964537284,"adapterNodeId":3854912477537176565,"adapterNodeName":"Local Node 2","status":{"encodedClass":"ReceivedByAdapter"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"} + +3228446450385589517 - 100523611964537284 - Result +{"id":4279393489486628251,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":3,"createDate":1696525309001,"changeDate":1696525309415},"queryId":100523611964537284,"adapterNodeId":3698283121779390840,"adapterNodeName":"Local Node 1","status":{"encodedClass":"SubmittedToCRC"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"} + +4203268677852707696 - 100523611964537284 - Result +{"id":1784089895897391647,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":4,"createDate":1696525309001,"changeDate":1696525309473},"queryId":100523611964537284,"adapterNodeId":3854912477537176565,"adapterNodeName":"Local Node 2","status":{"encodedClass":"SubmittedToCRC"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"} + +6462503807587626080 - 100523611964537284 - Result +{"id":4279393489486628251,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":4,"createDate":1696525309001,"changeDate":1696525313734},"queryId":100523611964537284,"adapterNodeId":3698283121779390840,"adapterNodeName":"Local Node 1","status":{"encodedClass":"ResultFromCRC"},"statusMessage":"FINISHED","crcQueryInstanceId":2095,"count":40,"obfuscatingParameters":{"binSize":5,"stdDev":6.5,"noiseClamp":10,"lowLimit":10},"breakdowns":null,"encodedClass":"CrcResult"} + +3639190312427515142 - 100523611964537284 - Result +{"id":1784089895897391647,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":5,"createDate":1696525309001,"changeDate":1696525314404},"queryId":100523611964537284,"adapterNodeId":3854912477537176565,"adapterNodeName":"Local Node 2","status":{"encodedClass":"ResultFromCRC"},"statusMessage":"FINISHED","crcQueryInstanceId":2065,"count":35,"obfuscatingParameters":{"binSize":5,"stdDev":6.5,"noiseClamp":10,"lowLimit":10},"breakdowns":null,"encodedClass":"CrcResult"} +''' \ No newline at end of file diff --git a/src/shrine-conv-temp/create_concepts.sql b/src/shrine-conv-temp/create_concepts.sql new file mode 100644 index 000000000..740d8c1f9 --- /dev/null +++ b/src/shrine-conv-temp/create_concepts.sql @@ -0,0 +1,127854 @@ + +DECLARE @user NVARCHAR(20) = 'leaf_scripts' +INSERT INTO app.ConceptSqlSet (SqlSetFrom, IsEncounterBased, IsEventBased, SqlFieldDate, Created, CreatedBy, Updated, UpdatedBy) +SELECT * +FROM (VALUES ('dbo.person', 0, 0, NULL, GETDATE(), @user, GETDATE(), @user), + ('dbo.condition_occurrence', 1, 0, '@.condition_start_date', GETDATE(), @user, GETDATE(), @user), + ('dbo.measurement', 1, 0, '@.measurement_date', GETDATE(), @user, GETDATE(), @user), + ('dbo.drug_exposure', 1, 0, '@.drug_exposure_start_date', GETDATE(), @user, GETDATE(), @user) + ) AS X(col1,col2,col3,col4,col5,col6,col7,col8) + +DECLARE @sqlset_person INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.person') +DECLARE @sqlset_condition_occurrence INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.condition_occurrence') +DECLARE @sqlset_measurement INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.measurement') +DECLARE @sqlset_drug_exposure INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.drug_exposure') +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', NULL, 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 1, 0, + 1, 1, @sqlset_person, NULL, NULL, + 'Demographics', 'Demographics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Age', 'Age', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 1, 0, + 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 0 AND 9', NULL, + '0-9 years old', '0-9 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\0 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\0 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 0', NULL, + '0 years old', '0 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\1 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\1 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 1', NULL, + '1 years old', '1 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\2 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\2 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 2', NULL, + '2 years old', '2 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\3 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\3 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 3', NULL, + '3 years old', '3 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\4 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\4 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 4', NULL, + '4 years old', '4 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\5 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\5 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 5', NULL, + '5 years old', '5 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\6 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\6 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 6', NULL, + '6 years old', '6 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\7 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\7 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 7', NULL, + '7 years old', '7 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\8 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\8 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 8', NULL, + '8 years old', '8 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\9 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 9', NULL, + '9 years old', '9 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 1, 0, + 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 10 AND 17', NULL, + '10-17 years old', '10-17 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\10 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\10 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 10', NULL, + '10 years old', '10 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\11 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\11 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 11', NULL, + '11 years old', '11 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\12 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\12 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 12', NULL, + '12 years old', '12 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\13 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\13 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 13', NULL, + '13 years old', '13 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\14 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\14 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 14', NULL, + '14 years old', '14 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\15 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\15 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 15', NULL, + '15 years old', '15 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\16 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\16 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 16', NULL, + '16 years old', '16 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\17 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 17', NULL, + '17 years old', '17 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 1, 0, + 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 18 AND 34', NULL, + '18-34 years old', '18-34 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\18 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\18 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 18', NULL, + '18 years old', '18 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\19 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\19 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 19', NULL, + '19 years old', '19 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\20 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\20 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 20', NULL, + '20 years old', '20 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\21 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\21 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 21', NULL, + '21 years old', '21 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\22 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\22 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 22', NULL, + '22 years old', '22 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\23 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\23 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 23', NULL, + '23 years old', '23 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\24 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\24 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 24', NULL, + '24 years old', '24 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\25 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\25 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 25', NULL, + '25 years old', '25 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\26 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\26 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 26', NULL, + '26 years old', '26 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\27 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\27 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 27', NULL, + '27 years old', '27 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\28 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\28 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 28', NULL, + '28 years old', '28 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\29 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\29 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 29', NULL, + '29 years old', '29 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\30 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\30 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 30', NULL, + '30 years old', '30 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\31 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\31 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 31', NULL, + '31 years old', '31 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\32 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\32 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 32', NULL, + '32 years old', '32 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\33 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\33 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 33', NULL, + '33 years old', '33 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\34 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 34', NULL, + '34 years old', '34 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 1, 0, + 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 35 AND 44', NULL, + '35-44 years old', '35-44 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\35 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\35 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 35', NULL, + '35 years old', '35 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\36 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\36 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 36', NULL, + '36 years old', '36 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\37 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\37 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 37', NULL, + '37 years old', '37 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\38 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\38 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 38', NULL, + '38 years old', '38 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\39 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\39 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 39', NULL, + '39 years old', '39 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\40 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\40 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 40', NULL, + '40 years old', '40 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\41 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\41 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 41', NULL, + '41 years old', '41 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\42 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\42 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 42', NULL, + '42 years old', '42 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\43 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\43 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 43', NULL, + '43 years old', '43 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\44 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 44', NULL, + '44 years old', '44 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 1, 0, + 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 45 AND 54', NULL, + '45-54 years old', '45-54 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\45 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\45 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 45', NULL, + '45 years old', '45 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\46 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\46 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 46', NULL, + '46 years old', '46 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\47 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\47 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 47', NULL, + '47 years old', '47 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\48 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\48 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 48', NULL, + '48 years old', '48 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\49 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\49 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 49', NULL, + '49 years old', '49 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\50 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\50 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 50', NULL, + '50 years old', '50 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\51 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\51 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 51', NULL, + '51 years old', '51 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\52 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\52 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 52', NULL, + '52 years old', '52 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\53 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\53 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 53', NULL, + '53 years old', '53 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\54 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 54', NULL, + '54 years old', '54 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 1, 0, + 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 55 AND 64', NULL, + '55-64 years old', '55-64 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\55 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\55 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 55', NULL, + '55 years old', '55 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\56 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\56 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 56', NULL, + '56 years old', '56 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\57 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\57 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 57', NULL, + '57 years old', '57 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\58 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\58 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 58', NULL, + '58 years old', '58 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\59 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\59 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 59', NULL, + '59 years old', '59 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\60 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\60 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 60', NULL, + '60 years old', '60 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\61 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\61 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 61', NULL, + '61 years old', '61 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\62 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\62 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 62', NULL, + '62 years old', '62 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\63 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\63 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 63', NULL, + '63 years old', '63 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\64 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 64', NULL, + '64 years old', '64 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 1, 0, + 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 65 AND 74', NULL, + '65-74 years old', '65-74 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\65 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\65 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 65', NULL, + '65 years old', '65 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\66 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\66 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 66', NULL, + '66 years old', '66 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\67 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\67 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 67', NULL, + '67 years old', '67 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\68 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\68 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 68', NULL, + '68 years old', '68 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\69 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\69 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 69', NULL, + '69 years old', '69 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\70 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\70 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 70', NULL, + '70 years old', '70 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\71 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\71 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 71', NULL, + '71 years old', '71 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\72 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\72 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 72', NULL, + '72 years old', '72 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\73 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\73 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 73', NULL, + '73 years old', '73 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\74 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 74', NULL, + '74 years old', '74 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 1, 0, + 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 75 AND 84', NULL, + '75-84 years old', '75-84 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\75 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\75 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 75', NULL, + '75 years old', '75 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\76 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\76 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 76', NULL, + '76 years old', '76 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\77 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\77 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 77', NULL, + '77 years old', '77 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\78 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\78 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 78', NULL, + '78 years old', '78 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\79 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\79 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 79', NULL, + '79 years old', '79 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\80 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\80 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 80', NULL, + '80 years old', '80 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\81 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\81 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 81', NULL, + '81 years old', '81 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\82 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\82 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 82', NULL, + '82 years old', '82 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\83 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\83 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 83', NULL, + '83 years old', '83 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\84 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 84', NULL, + '84 years old', '84 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 1, 0, + 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 85 AND 89', NULL, + '85-89 years old', '85-89 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\85 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\85 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 85', NULL, + '85 years old', '85 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\86 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\86 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 86', NULL, + '86 years old', '86 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\87 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\87 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 87', NULL, + '87 years old', '87 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\88 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\88 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 88', NULL, + '88 years old', '88 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\89 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 89', NULL, + '89 years old', '89 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=65 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=65 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 65', NULL, + '>=65 years old', '>=65 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=80 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=80 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 80', NULL, + '>=80 years old', '>=80 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=85 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=85 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 85', NULL, + '>=85 years old', '>=85 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=90 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=90 years old\', 1, 0, + 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 90', NULL, + '>=90 years old', '>=90 years old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\Unknown\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\Unknown\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Unknown', 'Unknown', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Gender', 'Gender', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Female\', 1, 0, + 0, 0, @sqlset_person, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.gender_concept_id AND @C.concept_name = ''FEMALE'')', NULL, + 'Female', 'Female', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Male\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Male\', 1, 0, + 0, 0, @sqlset_person, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.gender_concept_id AND @C.concept_name = ''MALE'')', NULL, + 'Male', 'Male', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Unknown\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Unknown\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Unknown', 'Unknown', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Language', 'Language', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Albanian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Albanian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Albanian', 'Albanian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Amharic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Amharic\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Amharic', 'Amharic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Arabic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Arabic\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Arabic', 'Arabic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Armenian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Armenian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Armenian', 'Armenian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Australian languages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Australian languages\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Australian languages', 'Australian languages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bantu (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bantu (Other)\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Bantu (Other)', 'Bantu (Other)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bengali\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bengali\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Bengali', 'Bengali', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bini\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bini\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Bini', 'Bini', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bosnian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bosnian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Bosnian', 'Bosnian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bulgarian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bulgarian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Bulgarian', 'Bulgarian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Burmese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Burmese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Burmese', 'Burmese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Castilian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Castilian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Castilian', 'Castilian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Central Khmer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Central Khmer\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Central Khmer', 'Central Khmer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Chinese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Chinese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Chinese', 'Chinese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins (Other)\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Creoles and pidgins (Other)', 'Creoles and pidgins (Other)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, English-based (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, English-based (Other)\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Creoles and pidgins, English-based (Other)', 'Creoles and pidgins, English-based (Other)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, French-based (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, French-based (Other)\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Creoles and pidgins, French-based (Other)', 'Creoles and pidgins, French-based (Other)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, Portuguese-based (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, Portuguese-based (Other)\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Creoles and pidgins, Portuguese-based (Other)', 'Creoles and pidgins, Portuguese-based (Other)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Czech\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Czech\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Czech', 'Czech', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Danish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Danish\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Danish', 'Danish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Dutch\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Dutch\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Dutch', 'Dutch', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Edo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Edo\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Edo', 'Edo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\English\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\English\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'English', 'English', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ewe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ewe\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Ewe', 'Ewe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Filipino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Filipino\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Filipino', 'Filipino', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Flemish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Flemish\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Flemish', 'Flemish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\French\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\French\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'French', 'French', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Fulah\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Fulah\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Fulah', 'Fulah', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\German\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\German\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'German', 'German', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Greek, Modern (1453-)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Greek, Modern (1453-)\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Greek, Modern (1453-)', 'Greek, Modern (1453-)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Gujarati\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Gujarati\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Gujarati', 'Gujarati', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Haitian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Haitian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Haitian', 'Haitian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Haitian Creole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Haitian Creole\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Haitian Creole', 'Haitian Creole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hausa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hausa\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Hausa', 'Hausa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hebrew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hebrew\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Hebrew', 'Hebrew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hebrew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hebrew\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Hebrew', 'Hebrew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hindi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hindi\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Hindi', 'Hindi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hmong\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hmong\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Hmong', 'Hmong', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hungarian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hungarian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Hungarian', 'Hungarian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Icelandic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Icelandic\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Icelandic', 'Icelandic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Igbo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Igbo\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Igbo', 'Igbo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ijo languages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ijo languages\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Ijo languages', 'Ijo languages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Italian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Italian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Italian', 'Italian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Japanese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Japanese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Japanese', 'Japanese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Kanuri\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Kanuri\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Kanuri', 'Kanuri', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Korean\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Korean\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Korean', 'Korean', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Lao\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Lao\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Lao', 'Lao', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Latvian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Latvian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Latvian', 'Latvian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Lithuanian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Lithuanian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Lithuanian', 'Lithuanian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Macedonian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Macedonian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Macedonian', 'Macedonian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Navaho\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Navaho\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Navaho', 'Navaho', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Navajo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Navajo\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Navajo', 'Navajo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ndebele, North\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ndebele, North\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Ndebele, North', 'Ndebele, North', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\North American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\North American Indian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'North American Indian', 'North American Indian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\North Ndebele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\North Ndebele\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'North Ndebele', 'North Ndebele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Norwegian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Norwegian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Norwegian', 'Norwegian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Panjabi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Panjabi\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Panjabi', 'Panjabi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Persian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Persian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Persian', 'Persian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Pilipino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Pilipino\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Pilipino', 'Pilipino', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Polish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Polish\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Polish', 'Polish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Portuguese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Portuguese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Portuguese', 'Portuguese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Punjabi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Punjabi\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Punjabi', 'Punjabi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Romanian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Romanian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Romanian', 'Romanian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Russian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Russian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Russian', 'Russian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Serbian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Serbian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Serbian', 'Serbian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Serbo-Croatian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Serbo-Croatian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Serbo-Croatian', 'Serbo-Croatian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Shona\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Shona\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Shona', 'Shona', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Sign Languages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Sign Languages\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Sign Languages', 'Sign Languages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Slavic (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Slavic (Other)\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Slavic (Other)', 'Slavic (Other)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Slovenian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Slovenian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Slovenian', 'Slovenian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Somali\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Somali\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Somali', 'Somali', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Spanish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Spanish\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Spanish', 'Spanish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Swahili\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Swahili\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Swahili', 'Swahili', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Swedish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Swedish\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Swedish', 'Swedish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tagalog\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tagalog\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Tagalog', 'Tagalog', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tamil\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tamil\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Tamil', 'Tamil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Thai\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Thai\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Thai', 'Thai', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tibetan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tibetan\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Tibetan', 'Tibetan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tigrinya\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tigrinya\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Tigrinya', 'Tigrinya', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Turkish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Turkish\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Turkish', 'Turkish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ukrainian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ukrainian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Ukrainian', 'Ukrainian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Urdu\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Urdu\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Urdu', 'Urdu', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Vietnamese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Vietnamese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Vietnamese', 'Vietnamese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Yoruba\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Yoruba\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Yoruba', 'Yoruba', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Unknown\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Unknown\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'zz Unknown', 'zz Unknown', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Marital Status', 'Marital Status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Divorced\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Divorced\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Divorced', 'Divorced', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Domestic partner\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Domestic partner\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Domestic partner', 'Domestic partner', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Legally Separated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Legally Separated\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Legally Separated', 'Legally Separated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Married\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Married\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Married', 'Married', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Never Married\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Never Married\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Never Married', 'Never Married', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Widowed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Widowed\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Widowed', 'Widowed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Unknown\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Unknown\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'zz Unknown', 'zz Unknown', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 1, 0, + 1, 0, @sqlset_person, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.race_concept_id AND @C.concept_name = ''Race'')', NULL, + 'Race and Ethnicity', 'Race and Ethnicity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'E1: Hispanic or Latino', 'E1: Hispanic or Latino', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Central American', 'Central American', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Costa Rican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Costa Rican\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Costa Rican', 'Costa Rican', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Guatemalan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Guatemalan\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Guatemalan', 'Guatemalan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Honduran\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Honduran\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Honduran', 'Honduran', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Nicaraguan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Nicaraguan\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Nicaraguan', 'Nicaraguan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Panamanian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Panamanian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Panamanian', 'Panamanian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Salvadoran\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Salvadoran\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Salvadoran', 'Salvadoran', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Cuban\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Cuban\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Cuban', 'Cuban', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Latin American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Latin American\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Latin American', 'Latin American', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Mexican', 'Mexican', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Chicano\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Chicano\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Chicano', 'Chicano', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\La Raza\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\La Raza\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'La Raza', 'La Raza', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Mexican American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Mexican American\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Mexican American', 'Mexican American', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Mexicano\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Mexicano\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Mexicano', 'Mexicano', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Puerto Rican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Puerto Rican\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Puerto Rican', 'Puerto Rican', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'South American', 'South American', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Argentinean\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Argentinean\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Argentinean', 'Argentinean', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Bolivian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Bolivian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Bolivian', 'Bolivian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Chilean\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Chilean\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Chilean', 'Chilean', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Colombian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Colombian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Colombian', 'Colombian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Criollo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Criollo\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Criollo', 'Criollo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Ecuadorian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Ecuadorian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Ecuadorian', 'Ecuadorian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Paraguayan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Paraguayan\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Paraguayan', 'Paraguayan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Peruvian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Peruvian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Peruvian', 'Peruvian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Uruguayan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Uruguayan\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Uruguayan', 'Uruguayan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Venezuelan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Venezuelan\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Venezuelan', 'Venezuelan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Spaniard', 'Spaniard', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Asturian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Asturian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Asturian', 'Asturian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Belearic Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Belearic Islander\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Belearic Islander', 'Belearic Islander', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Canarian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Canarian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Canarian', 'Canarian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Castillian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Castillian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Castillian', 'Castillian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Catalonian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Catalonian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Catalonian', 'Catalonian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Spanish Basque\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Spanish Basque\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Spanish Basque', 'Spanish Basque', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Valencian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Valencian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Valencian', 'Valencian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Not Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Not Hispanic or Latino\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'E2: Not Hispanic or Latino', 'E2: Not Hispanic or Latino', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Unknown Ethnicity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Unknown Ethnicity\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'E9: Unknown Ethnicity', 'E9: Unknown Ethnicity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'R1: American Indian or Alaska Native', 'R1: American Indian or Alaska Native', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Alaska Native', 'Alaska Native', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Alaska Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Alaska Indian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Alaska Indian', 'Alaska Indian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Aleut', 'Aleut', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\Unangan Aleut\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\Unangan Aleut\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Unangan Aleut', 'Unangan Aleut', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\Unangan Aleut\Aleutian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\Unangan Aleut\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\Unangan Aleut\Aleutian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Aleutian', 'Aleutian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Eskimo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Eskimo\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Eskimo', 'Eskimo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'American Indian', 'American Indian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Abenaki\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Abenaki\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Abenaki', 'Abenaki', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Canadian and Latin American Indian', 'Canadian and Latin American Indian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\Central American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\Central American Indian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Central American Indian', 'Central American Indian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\Mexican American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\Mexican American Indian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Mexican American Indian', 'Mexican American Indian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\South American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\South American Indian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'South American Indian', 'South American Indian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Eastern Tribes', 'Eastern Tribes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Attacapa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Attacapa\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Attacapa', 'Attacapa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Biloxi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Biloxi\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Biloxi', 'Biloxi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Moor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Moor\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Moor', 'Moor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nansemond\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nansemond\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Nansemond', 'Nansemond', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nausu Waiwash\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nausu Waiwash\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Nausu Waiwash', 'Nausu Waiwash', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nipmuc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nipmuc\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Nipmuc', 'Nipmuc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Paugussett\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Paugussett\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Paugussett', 'Paugussett', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Pocomoke Acohonock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Pocomoke Acohonock\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Pocomoke Acohonock', 'Pocomoke Acohonock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Tunica Biloxi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Tunica Biloxi\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Tunica Biloxi', 'Tunica Biloxi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Waccamaw-Siousan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Waccamaw-Siousan\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Waccamaw-Siousan', 'Waccamaw-Siousan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Wicomico\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Wicomico\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Wicomico', 'Wicomico', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Navajo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Navajo\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Navajo', 'Navajo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Wampanoag\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Wampanoag\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Wampanoag', 'Wampanoag', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'R2: Asian', 'R2: Asian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Asian Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Asian Indian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Asian Indian', 'Asian Indian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Bangladeshi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Bangladeshi\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Bangladeshi', 'Bangladeshi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Burmese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Burmese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Burmese', 'Burmese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Cambodian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Cambodian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Cambodian', 'Cambodian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Chinese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Chinese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Chinese', 'Chinese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Filipino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Filipino\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Filipino', 'Filipino', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Hmong\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Hmong\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Hmong', 'Hmong', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Indonesian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Indonesian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Indonesian', 'Indonesian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Japanese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Japanese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Japanese', 'Japanese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Korean\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Korean\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Korean', 'Korean', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Laotian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Laotian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Laotian', 'Laotian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Madagascar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Madagascar\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Madagascar', 'Madagascar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Malaysian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Malaysian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Malaysian', 'Malaysian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Nepalese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Nepalese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Nepalese', 'Nepalese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Okinawan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Okinawan\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Okinawan', 'Okinawan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Pakistani\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Pakistani\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Pakistani', 'Pakistani', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Singaporean\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Singaporean\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Singaporean', 'Singaporean', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Sri Lankan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Sri Lankan\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Sri Lankan', 'Sri Lankan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Taiwanese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Taiwanese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Taiwanese', 'Taiwanese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Thai\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Thai\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Thai', 'Thai', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Vietnamese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Vietnamese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Vietnamese', 'Vietnamese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'R3: Black or African American', 'R3: Black or African American', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'African', 'African', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Botswanan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Botswanan\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Botswanan', 'Botswanan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Ethiopian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Ethiopian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Ethiopian', 'Ethiopian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Liberian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Liberian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Liberian', 'Liberian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Namibian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Namibian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Namibian', 'Namibian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Nigerian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Nigerian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Nigerian', 'Nigerian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African American\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'African American', 'African American', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Bahamian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Bahamian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Bahamian', 'Bahamian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Barbadian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Barbadian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Barbadian', 'Barbadian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Black\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Black\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Black', 'Black', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Dominica Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Dominica Islander\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Dominica Islander', 'Dominica Islander', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Dominican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Dominican\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Dominican', 'Dominican', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Haitian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Haitian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Haitian', 'Haitian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Jamaican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Jamaican\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Jamaican', 'Jamaican', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Trinidadian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Trinidadian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Trinidadian', 'Trinidadian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\West Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\West Indian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'West Indian', 'West Indian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'R4: Native Hawaiian or Other Pacific Islander', 'R4: Native Hawaiian or Other Pacific Islander', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Other Pacific Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Other Pacific Islander\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Other Pacific Islander', 'Other Pacific Islander', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Polynesian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Polynesian\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Polynesian', 'Polynesian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Polynesian\Native Hawaiian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Polynesian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Polynesian\Native Hawaiian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Native Hawaiian', 'Native Hawaiian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'R5: White', 'R5: White', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Arab\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Arab\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Arab', 'Arab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'European', 'European', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Armenian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Armenian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Armenian', 'Armenian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\English\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\English\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'English', 'English', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\French\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\French\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'French', 'French', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\German\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\German\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'German', 'German', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Irish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Irish\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Irish', 'Irish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Italian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Italian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Italian', 'Italian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Polish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Polish\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Polish', 'Polish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Scottish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Scottish\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Scottish', 'Scottish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 1, 0, + 1, 0, @sqlset_person, NULL, NULL, + 'Middle Eastern or North African', 'Middle Eastern or North African', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Afghanistani\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Afghanistani\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Afghanistani', 'Afghanistani', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Assyrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Assyrian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Assyrian', 'Assyrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Egyptian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Egyptian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Egyptian', 'Egyptian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Iranian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Iranian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Iranian', 'Iranian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Iraqi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Iraqi\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Iraqi', 'Iraqi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Israeili\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Israeili\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Israeili', 'Israeili', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Lebanese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Lebanese\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Lebanese', 'Lebanese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Palestinian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Palestinian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Palestinian', 'Palestinian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Syrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Syrian\', 1, 0, + 0, 0, @sqlset_person, NULL, NULL, + 'Syrian', 'Syrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Unknown Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Unknown Race\', 1, 0, + 0, 0, @sqlset_person, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.race_concept_id AND @C.concept_name = ''Unknown Race'')', NULL, + 'R9: Unknown Race', 'R9: Unknown Race', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', NULL, 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 1, 0, + 1, 1, @sqlset_condition_occurrence, NULL, NULL, + 'Diagnoses', 'Diagnoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''760'' AND ''779.99''', NULL, + 'Certain conditions originating in the perinatal period (760-779.99)', 'Certain conditions originating in the perinatal period (760-779.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''760'' AND ''763.99''', NULL, + 'Maternal causes of perinatal morbidity and mortality (760-763.99)', 'Maternal causes of perinatal morbidity and mortality (760-763.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762''', NULL, + 'Fetus or newborn affected by complications of placenta, cord, and membranes (762)', 'Fetus or newborn affected by complications of placenta, cord, and membranes (762)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.0) Placenta previa affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.0) Placenta previa affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.0''', NULL, + '(762.0) Placenta previa affecting fetus or newborn', '(762.0) Placenta previa affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.1) Other forms of placental separation and hemorrhage affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.1) Other forms of placental separation and hemorrhage affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.1''', NULL, + '(762.1) Other forms of placental separation and hemorrhage affecting fetus or newborn', '(762.1) Other forms of placental separation and hemorrhage affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.2) Other and unspecified morphological and functional abnormalities of placenta affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.2) Other and unspecified morphological and functional abnormalities of placenta affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.2''', NULL, + '(762.2) Other and unspecified morphological and functional abnormalities of placenta affecting fetus or newborn', '(762.2) Other and unspecified morphological and functional abnormalities of placenta affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.3) Placental transfusion syndromes affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.3) Placental transfusion syndromes affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.3''', NULL, + '(762.3) Placental transfusion syndromes affecting fetus or newborn', '(762.3) Placental transfusion syndromes affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.4) Prolapsed umbilical cord affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.4) Prolapsed umbilical cord affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.4''', NULL, + '(762.4) Prolapsed umbilical cord affecting fetus or newborn', '(762.4) Prolapsed umbilical cord affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.5) Other compression of umbilical cord affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.5) Other compression of umbilical cord affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.5''', NULL, + '(762.5) Other compression of umbilical cord affecting fetus or newborn', '(762.5) Other compression of umbilical cord affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.6) Other and unspecified conditions of umbilical cord affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.6) Other and unspecified conditions of umbilical cord affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.6''', NULL, + '(762.6) Other and unspecified conditions of umbilical cord affecting fetus or newborn', '(762.6) Other and unspecified conditions of umbilical cord affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.7) Chorioamnionitis affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.7) Chorioamnionitis affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.7''', NULL, + '(762.7) Chorioamnionitis affecting fetus or newborn', '(762.7) Chorioamnionitis affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.8) Other specified abnormalities of chorion and amnion affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.8) Other specified abnormalities of chorion and amnion affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.8''', NULL, + '(762.8) Other specified abnormalities of chorion and amnion affecting fetus or newborn', '(762.8) Other specified abnormalities of chorion and amnion affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.9) Unspecified abnormality of chorion and amnion affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.9) Unspecified abnormality of chorion and amnion affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.9''', NULL, + '(762.9) Unspecified abnormality of chorion and amnion affecting fetus or newborn', '(762.9) Unspecified abnormality of chorion and amnion affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761''', NULL, + 'Fetus or newborn affected by maternal complications of pregnancy (761)', 'Fetus or newborn affected by maternal complications of pregnancy (761)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.0) Incompetent cervix affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.0) Incompetent cervix affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.0''', NULL, + '(761.0) Incompetent cervix affecting fetus or newborn', '(761.0) Incompetent cervix affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.1) Premature rupture of membranes affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.1) Premature rupture of membranes affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.1''', NULL, + '(761.1) Premature rupture of membranes affecting fetus or newborn', '(761.1) Premature rupture of membranes affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.2) Oligohydramnios affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.2) Oligohydramnios affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.2''', NULL, + '(761.2) Oligohydramnios affecting fetus or newborn', '(761.2) Oligohydramnios affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.3) Polyhydramnios affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.3) Polyhydramnios affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.3''', NULL, + '(761.3) Polyhydramnios affecting fetus or newborn', '(761.3) Polyhydramnios affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.4) Ectopic pregnancy affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.4) Ectopic pregnancy affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.4''', NULL, + '(761.4) Ectopic pregnancy affecting fetus or newborn', '(761.4) Ectopic pregnancy affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.5) Multiple pregnancy affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.5) Multiple pregnancy affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.5''', NULL, + '(761.5) Multiple pregnancy affecting fetus or newborn', '(761.5) Multiple pregnancy affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.6) Maternal death affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.6) Maternal death affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.6''', NULL, + '(761.6) Maternal death affecting fetus or newborn', '(761.6) Maternal death affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.7) Malpresentation before labor affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.7) Malpresentation before labor affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.7''', NULL, + '(761.7) Malpresentation before labor affecting fetus or newborn', '(761.7) Malpresentation before labor affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.8) Other specified maternal complications of pregnancy affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.8) Other specified maternal complications of pregnancy affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.8''', NULL, + '(761.8) Other specified maternal complications of pregnancy affecting fetus or newborn', '(761.8) Other specified maternal complications of pregnancy affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.9) Unspecified maternal complication of pregnancy affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.9) Unspecified maternal complication of pregnancy affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.9''', NULL, + '(761.9) Unspecified maternal complication of pregnancy affecting fetus or newborn', '(761.9) Unspecified maternal complication of pregnancy affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760''', NULL, + 'Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)', 'Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.0) Maternal hypertensive disorders affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.0) Maternal hypertensive disorders affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.0''', NULL, + '(760.0) Maternal hypertensive disorders affecting fetus or newborn', '(760.0) Maternal hypertensive disorders affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.1) Maternal renal and urinary tract diseases affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.1) Maternal renal and urinary tract diseases affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.1''', NULL, + '(760.1) Maternal renal and urinary tract diseases affecting fetus or newborn', '(760.1) Maternal renal and urinary tract diseases affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.2) Maternal infections affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.2) Maternal infections affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.2''', NULL, + '(760.2) Maternal infections affecting fetus or newborn', '(760.2) Maternal infections affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.3) Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.3) Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.3''', NULL, + '(760.3) Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn', '(760.3) Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.4) Maternal nutritional disorders affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.4) Maternal nutritional disorders affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.4''', NULL, + '(760.4) Maternal nutritional disorders affecting fetus or newborn', '(760.4) Maternal nutritional disorders affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.5) Maternal injury affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.5) Maternal injury affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.5''', NULL, + '(760.5) Maternal injury affecting fetus or newborn', '(760.5) Maternal injury affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.8) Other specified maternal conditions affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.8) Other specified maternal conditions affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.8''', NULL, + '(760.8) Other specified maternal conditions affecting fetus or newborn', '(760.8) Other specified maternal conditions affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.9) Unspecified maternal condition affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.9) Unspecified maternal condition affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.9''', NULL, + '(760.9) Unspecified maternal condition affecting fetus or newborn', '(760.9) Unspecified maternal condition affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.7''', NULL, + 'Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)', 'Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.70) Unspecified noxious substance affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.70) Unspecified noxious substance affecting fetus or newborn via placenta or breast milk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.70''', NULL, + '(760.70) Unspecified noxious substance affecting fetus or newborn via placenta or breast milk', '(760.70) Unspecified noxious substance affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.71) Alcohol affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.71) Alcohol affecting fetus or newborn via placenta or breast milk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.71''', NULL, + '(760.71) Alcohol affecting fetus or newborn via placenta or breast milk', '(760.71) Alcohol affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.72) Narcotics affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.72) Narcotics affecting fetus or newborn via placenta or breast milk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.72''', NULL, + '(760.72) Narcotics affecting fetus or newborn via placenta or breast milk', '(760.72) Narcotics affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.73) Hallucinogenic agents affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.73) Hallucinogenic agents affecting fetus or newborn via placenta or breast milk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.73''', NULL, + '(760.73) Hallucinogenic agents affecting fetus or newborn via placenta or breast milk', '(760.73) Hallucinogenic agents affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.74) Anti-infectives affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.74) Anti-infectives affecting fetus or newborn via placenta or breast milk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.74''', NULL, + '(760.74) Anti-infectives affecting fetus or newborn via placenta or breast milk', '(760.74) Anti-infectives affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.75) Cocaine affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.75) Cocaine affecting fetus or newborn via placenta or breast milk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.75''', NULL, + '(760.75) Cocaine affecting fetus or newborn via placenta or breast milk', '(760.75) Cocaine affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.76) Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.76) Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.76''', NULL, + '(760.76) Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk', '(760.76) Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.77) Anticonvulsants affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.77) Anticonvulsants affecting fetus or newborn via placenta or breast milk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.77''', NULL, + '(760.77) Anticonvulsants affecting fetus or newborn via placenta or breast milk', '(760.77) Anticonvulsants affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.78) Antimetabolic agents affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.78) Antimetabolic agents affecting fetus or newborn via placenta or breast milk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.78''', NULL, + '(760.78) Antimetabolic agents affecting fetus or newborn via placenta or breast milk', '(760.78) Antimetabolic agents affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.79) Other noxious influences affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.79) Other noxious influences affecting fetus or newborn via placenta or breast milk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.79''', NULL, + '(760.79) Other noxious influences affecting fetus or newborn via placenta or breast milk', '(760.79) Other noxious influences affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Surgical operation on mother and fetus (760.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Surgical operation on mother and fetus (760.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.6''', NULL, + 'Surgical operation on mother and fetus (760.6)', 'Surgical operation on mother and fetus (760.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763''', NULL, + 'Fetus or newborn affected by other complications of labor and delivery (763)', 'Fetus or newborn affected by other complications of labor and delivery (763)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.0) Breech delivery and extraction affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.0) Breech delivery and extraction affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.0''', NULL, + '(763.0) Breech delivery and extraction affecting fetus or newborn', '(763.0) Breech delivery and extraction affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.1) Other malpresentation, malposition, and disproportion during labor and delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.1) Other malpresentation, malposition, and disproportion during labor and delivery affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.1''', NULL, + '(763.1) Other malpresentation, malposition, and disproportion during labor and delivery affecting fetus or newborn', '(763.1) Other malpresentation, malposition, and disproportion during labor and delivery affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.2) Forceps delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.2) Forceps delivery affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.2''', NULL, + '(763.2) Forceps delivery affecting fetus or newborn', '(763.2) Forceps delivery affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.3) Delivery by vacuum extractor affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.3) Delivery by vacuum extractor affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.3''', NULL, + '(763.3) Delivery by vacuum extractor affecting fetus or newborn', '(763.3) Delivery by vacuum extractor affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.4) Cesarean delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.4) Cesarean delivery affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.4''', NULL, + '(763.4) Cesarean delivery affecting fetus or newborn', '(763.4) Cesarean delivery affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.5) Maternal anesthesia and analgesia affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.5) Maternal anesthesia and analgesia affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.5''', NULL, + '(763.5) Maternal anesthesia and analgesia affecting fetus or newborn', '(763.5) Maternal anesthesia and analgesia affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.6) Precipitate delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.6) Precipitate delivery affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.6''', NULL, + '(763.6) Precipitate delivery affecting fetus or newborn', '(763.6) Precipitate delivery affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.7) Abnormal uterine contractions affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.7) Abnormal uterine contractions affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.7''', NULL, + '(763.7) Abnormal uterine contractions affecting fetus or newborn', '(763.7) Abnormal uterine contractions affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.9) Unspecified complication of labor and delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.9) Unspecified complication of labor and delivery affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.9''', NULL, + '(763.9) Unspecified complication of labor and delivery affecting fetus or newborn', '(763.9) Unspecified complication of labor and delivery affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.8''', NULL, + 'Other specified complications of labor and delivery affecting fetus or newborn (763.8)', 'Other specified complications of labor and delivery affecting fetus or newborn (763.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.81) Abnormality in fetal heart rate or rhythm before the onset of labor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.81) Abnormality in fetal heart rate or rhythm before the onset of labor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.81''', NULL, + '(763.81) Abnormality in fetal heart rate or rhythm before the onset of labor', '(763.81) Abnormality in fetal heart rate or rhythm before the onset of labor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.82) Abnormality in fetal heart rate or rhythm during labor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.82) Abnormality in fetal heart rate or rhythm during labor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.82''', NULL, + '(763.82) Abnormality in fetal heart rate or rhythm during labor', '(763.82) Abnormality in fetal heart rate or rhythm during labor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.83) Abnormality in fetal heart rate or rhythm, unspecified as to time of onset\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.83) Abnormality in fetal heart rate or rhythm, unspecified as to time of onset\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.83''', NULL, + '(763.83) Abnormality in fetal heart rate or rhythm, unspecified as to time of onset', '(763.83) Abnormality in fetal heart rate or rhythm, unspecified as to time of onset', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.84) Meconium passage during delivery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.84) Meconium passage during delivery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.84''', NULL, + '(763.84) Meconium passage during delivery', '(763.84) Meconium passage during delivery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.89) Other specified complications of labor and delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.89) Other specified complications of labor and delivery affecting fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.89''', NULL, + '(763.89) Other specified complications of labor and delivery affecting fetus or newborn', '(763.89) Other specified complications of labor and delivery affecting fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''764'' AND ''779.99''', NULL, + 'Other conditions originating in the perinatal period (764-779.99)', 'Other conditions originating in the perinatal period (764-779.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\(769) Respiratory distress syndrome in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\(769) Respiratory distress syndrome in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''769''', NULL, + '(769) Respiratory distress syndrome in newborn', '(769) Respiratory distress syndrome in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767''', NULL, + 'Birth trauma (767)', 'Birth trauma (767)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.0) Subdural and cerebral hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.0) Subdural and cerebral hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.0''', NULL, + '(767.0) Subdural and cerebral hemorrhage', '(767.0) Subdural and cerebral hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.2) Fracture of clavicle due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.2) Fracture of clavicle due to birth trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.2''', NULL, + '(767.2) Fracture of clavicle due to birth trauma', '(767.2) Fracture of clavicle due to birth trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.3) Other injuries to skeleton due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.3) Other injuries to skeleton due to birth trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.3''', NULL, + '(767.3) Other injuries to skeleton due to birth trauma', '(767.3) Other injuries to skeleton due to birth trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.4) Injury to spine and spinal cord due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.4) Injury to spine and spinal cord due to birth trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.4''', NULL, + '(767.4) Injury to spine and spinal cord due to birth trauma', '(767.4) Injury to spine and spinal cord due to birth trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.5) Facial nerve injury due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.5) Facial nerve injury due to birth trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.5''', NULL, + '(767.5) Facial nerve injury due to birth trauma', '(767.5) Facial nerve injury due to birth trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.6) Injury to brachial plexus due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.6) Injury to brachial plexus due to birth trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.6''', NULL, + '(767.6) Injury to brachial plexus due to birth trauma', '(767.6) Injury to brachial plexus due to birth trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.7) Other cranial and peripheral nerve injuries due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.7) Other cranial and peripheral nerve injuries due to birth trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.7''', NULL, + '(767.7) Other cranial and peripheral nerve injuries due to birth trauma', '(767.7) Other cranial and peripheral nerve injuries due to birth trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.8) Other specified birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.8) Other specified birth trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.8''', NULL, + '(767.8) Other specified birth trauma', '(767.8) Other specified birth trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.9) Birth trauma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.9) Birth trauma, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.9''', NULL, + '(767.9) Birth trauma, unspecified', '(767.9) Birth trauma, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.1''', NULL, + 'Injuries to scalp due to birth trauma (767.1)', 'Injuries to scalp due to birth trauma (767.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\(767.11) Epicranial subaponeurotic hemorrhage (massive)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\(767.11) Epicranial subaponeurotic hemorrhage (massive)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.11) Epicranial subaponeurotic hemorrhage (massive''', NULL, + '(767.11) Epicranial subaponeurotic hemorrhage (massive)', '(767.11) Epicranial subaponeurotic hemorrhage (massive)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\(767.19) Other injuries to scalp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\(767.19) Other injuries to scalp\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.19''', NULL, + '(767.19) Other injuries to scalp', '(767.19) Other injuries to scalp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778''', NULL, + 'Conditions involving the integument and temperature regulation of fetus and newborn (778)', 'Conditions involving the integument and temperature regulation of fetus and newborn (778)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.0) Hydrops fetalis not due to isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.0) Hydrops fetalis not due to isoimmunization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.0''', NULL, + '(778.0) Hydrops fetalis not due to isoimmunization', '(778.0) Hydrops fetalis not due to isoimmunization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.1) Sclerema neonatorum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.1) Sclerema neonatorum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.1''', NULL, + '(778.1) Sclerema neonatorum', '(778.1) Sclerema neonatorum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.2) Cold injury syndrome of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.2) Cold injury syndrome of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.2''', NULL, + '(778.2) Cold injury syndrome of newborn', '(778.2) Cold injury syndrome of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.3) Other hypothermia of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.3) Other hypothermia of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.3''', NULL, + '(778.3) Other hypothermia of newborn', '(778.3) Other hypothermia of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.4) Other disturbances of temperature regulation of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.4) Other disturbances of temperature regulation of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.4''', NULL, + '(778.4) Other disturbances of temperature regulation of newborn', '(778.4) Other disturbances of temperature regulation of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.5) Other and unspecified edema of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.5) Other and unspecified edema of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.5''', NULL, + '(778.5) Other and unspecified edema of newborn', '(778.5) Other and unspecified edema of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.6) Congenital hydrocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.6) Congenital hydrocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.6''', NULL, + '(778.6) Congenital hydrocele', '(778.6) Congenital hydrocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.7) Breast engorgement in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.7) Breast engorgement in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.7''', NULL, + '(778.7) Breast engorgement in newborn', '(778.7) Breast engorgement in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.8) Other specified conditions involving the integument of fetus and newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.8) Other specified conditions involving the integument of fetus and newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.8''', NULL, + '(778.8) Other specified conditions involving the integument of fetus and newborn', '(778.8) Other specified conditions involving the integument of fetus and newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.9) Unspecified condition involving the integument and temperature regulation of fetus and newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.9) Unspecified condition involving the integument and temperature regulation of fetus and newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.9''', NULL, + '(778.9) Unspecified condition involving the integument and temperature regulation of fetus and newborn', '(778.9) Unspecified condition involving the integument and temperature regulation of fetus and newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766''', NULL, + 'Disorders relating to long gestation and high birthweight (766)', 'Disorders relating to long gestation and high birthweight (766)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\(766.0) Exceptionally large baby\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\(766.0) Exceptionally large baby\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766.0''', NULL, + '(766.0) Exceptionally large baby', '(766.0) Exceptionally large baby', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\(766.1) Other "heavy-for-dates" infants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\(766.1) Other "heavy-for-dates" infants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766.1''', NULL, + '(766.1) Other "heavy-for-dates" infants', '(766.1) Other "heavy-for-dates" infants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766.2''', NULL, + 'Late infant, not "heavy-for-dates" (766.2)', 'Late infant, not "heavy-for-dates" (766.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\(766.21) Post-term infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\(766.21) Post-term infant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766.21''', NULL, + '(766.21) Post-term infant', '(766.21) Post-term infant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\(766.22) Prolonged gestation of infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\(766.22) Prolonged gestation of infant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766.22''', NULL, + '(766.22) Prolonged gestation of infant', '(766.22) Prolonged gestation of infant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765''', NULL, + 'Disorders relating to short gestation and unspecified low birthweight (765)', 'Disorders relating to short gestation and unspecified low birthweight (765)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.0''', NULL, + 'Extreme immaturity (765.0)', 'Extreme immaturity (765.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.00) Extreme immaturity, unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.00) Extreme immaturity, unspecified [weight]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.00''', NULL, + '(765.00) Extreme immaturity, unspecified [weight]', '(765.00) Extreme immaturity, unspecified [weight]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.01) Extreme immaturity, less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.01) Extreme immaturity, less than 500 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.01''', NULL, + '(765.01) Extreme immaturity, less than 500 grams', '(765.01) Extreme immaturity, less than 500 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.02) Extreme immaturity, 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.02) Extreme immaturity, 500-749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.02''', NULL, + '(765.02) Extreme immaturity, 500-749 grams', '(765.02) Extreme immaturity, 500-749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.03) Extreme immaturity, 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.03) Extreme immaturity, 750-999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.03''', NULL, + '(765.03) Extreme immaturity, 750-999 grams', '(765.03) Extreme immaturity, 750-999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.04) Extreme immaturity, 1,000-1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.04) Extreme immaturity, 1,000-1,249 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.04''', NULL, + '(765.04) Extreme immaturity, 1,000-1,249 grams', '(765.04) Extreme immaturity, 1,000-1,249 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.05) Extreme immaturity, 1,250-1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.05) Extreme immaturity, 1,250-1,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.05''', NULL, + '(765.05) Extreme immaturity, 1,250-1,499 grams', '(765.05) Extreme immaturity, 1,250-1,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.06) Extreme immaturity, 1,500-1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.06) Extreme immaturity, 1,500-1,749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.06''', NULL, + '(765.06) Extreme immaturity, 1,500-1,749 grams', '(765.06) Extreme immaturity, 1,500-1,749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.07) Extreme immaturity, 1,750-1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.07) Extreme immaturity, 1,750-1,999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.07''', NULL, + '(765.07) Extreme immaturity, 1,750-1,999 grams', '(765.07) Extreme immaturity, 1,750-1,999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.08) Extreme immaturity, 2,000-2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.08) Extreme immaturity, 2,000-2,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.08''', NULL, + '(765.08) Extreme immaturity, 2,000-2,499 grams', '(765.08) Extreme immaturity, 2,000-2,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.09) Extreme immaturity, 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.09) Extreme immaturity, 2,500 grams and over\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.09''', NULL, + '(765.09) Extreme immaturity, 2,500 grams and over', '(765.09) Extreme immaturity, 2,500 grams and over', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.1''', NULL, + 'Other preterm infants (765.1)', 'Other preterm infants (765.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.10) Other preterm infants, unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.10) Other preterm infants, unspecified [weight]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.10''', NULL, + '(765.10) Other preterm infants, unspecified [weight]', '(765.10) Other preterm infants, unspecified [weight]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.11) Other preterm infants, less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.11) Other preterm infants, less than 500 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.11''', NULL, + '(765.11) Other preterm infants, less than 500 grams', '(765.11) Other preterm infants, less than 500 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.12) Other preterm infants, 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.12) Other preterm infants, 500-749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.12''', NULL, + '(765.12) Other preterm infants, 500-749 grams', '(765.12) Other preterm infants, 500-749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.13) Other preterm infants, 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.13) Other preterm infants, 750-999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.13''', NULL, + '(765.13) Other preterm infants, 750-999 grams', '(765.13) Other preterm infants, 750-999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.14) Other preterm infants, 1,000-1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.14) Other preterm infants, 1,000-1,249 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.14''', NULL, + '(765.14) Other preterm infants, 1,000-1,249 grams', '(765.14) Other preterm infants, 1,000-1,249 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.15) Other preterm infants, 1,250-1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.15) Other preterm infants, 1,250-1,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.15''', NULL, + '(765.15) Other preterm infants, 1,250-1,499 grams', '(765.15) Other preterm infants, 1,250-1,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.16) Other preterm infants, 1,500-1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.16) Other preterm infants, 1,500-1,749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.16''', NULL, + '(765.16) Other preterm infants, 1,500-1,749 grams', '(765.16) Other preterm infants, 1,500-1,749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.17) Other preterm infants, 1,750-1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.17) Other preterm infants, 1,750-1,999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.17''', NULL, + '(765.17) Other preterm infants, 1,750-1,999 grams', '(765.17) Other preterm infants, 1,750-1,999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.18) Other preterm infants, 2,000-2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.18) Other preterm infants, 2,000-2,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.18''', NULL, + '(765.18) Other preterm infants, 2,000-2,499 grams', '(765.18) Other preterm infants, 2,000-2,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.19) Other preterm infants, 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.19) Other preterm infants, 2,500 grams and over\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.19''', NULL, + '(765.19) Other preterm infants, 2,500 grams and over', '(765.19) Other preterm infants, 2,500 grams and over', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.2''', NULL, + 'Weeks of gestation (765.2)', 'Weeks of gestation (765.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.20) Unspecified weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.20) Unspecified weeks of gestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.20''', NULL, + '(765.20) Unspecified weeks of gestation', '(765.20) Unspecified weeks of gestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.21) Less than 24 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.21) Less than 24 completed weeks of gestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.21''', NULL, + '(765.21) Less than 24 completed weeks of gestation', '(765.21) Less than 24 completed weeks of gestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.22) 24 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.22) 24 completed weeks of gestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.22''', NULL, + '(765.22) 24 completed weeks of gestation', '(765.22) 24 completed weeks of gestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.23) 25-26 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.23) 25-26 completed weeks of gestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.23''', NULL, + '(765.23) 25-26 completed weeks of gestation', '(765.23) 25-26 completed weeks of gestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.24) 27-28 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.24) 27-28 completed weeks of gestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.24''', NULL, + '(765.24) 27-28 completed weeks of gestation', '(765.24) 27-28 completed weeks of gestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.25) 29-30 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.25) 29-30 completed weeks of gestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.25''', NULL, + '(765.25) 29-30 completed weeks of gestation', '(765.25) 29-30 completed weeks of gestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.26) 31-32 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.26) 31-32 completed weeks of gestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.26''', NULL, + '(765.26) 31-32 completed weeks of gestation', '(765.26) 31-32 completed weeks of gestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.27) 33-34 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.27) 33-34 completed weeks of gestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.27''', NULL, + '(765.27) 33-34 completed weeks of gestation', '(765.27) 33-34 completed weeks of gestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.28) 35-36 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.28) 35-36 completed weeks of gestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.28''', NULL, + '(765.28) 35-36 completed weeks of gestation', '(765.28) 35-36 completed weeks of gestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.29) 37 or more completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.29) 37 or more completed weeks of gestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.29''', NULL, + '(765.29) 37 or more completed weeks of gestation', '(765.29) 37 or more completed weeks of gestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775''', NULL, + 'Endocrine and metabolic disturbances specific to the fetus and newborn (775)', 'Endocrine and metabolic disturbances specific to the fetus and newborn (775)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.0) Syndrome of "infant of a diabetic mother"\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.0) Syndrome of "infant of a diabetic mother"\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.0''', NULL, + '(775.0) Syndrome of "infant of a diabetic mother"', '(775.0) Syndrome of "infant of a diabetic mother"', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.1) Neonatal diabetes mellitus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.1) Neonatal diabetes mellitus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.1''', NULL, + '(775.1) Neonatal diabetes mellitus', '(775.1) Neonatal diabetes mellitus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.2) Neonatal myasthenia gravis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.2) Neonatal myasthenia gravis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.2''', NULL, + '(775.2) Neonatal myasthenia gravis', '(775.2) Neonatal myasthenia gravis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.3) Neonatal thyrotoxicosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.3) Neonatal thyrotoxicosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.3''', NULL, + '(775.3) Neonatal thyrotoxicosis', '(775.3) Neonatal thyrotoxicosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.4) Hypocalcemia and hypomagnesemia of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.4) Hypocalcemia and hypomagnesemia of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.4''', NULL, + '(775.4) Hypocalcemia and hypomagnesemia of newborn', '(775.4) Hypocalcemia and hypomagnesemia of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.5) Other transitory neonatal electrolyte disturbances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.5) Other transitory neonatal electrolyte disturbances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.5''', NULL, + '(775.5) Other transitory neonatal electrolyte disturbances', '(775.5) Other transitory neonatal electrolyte disturbances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.6) Neonatal hypoglycemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.6) Neonatal hypoglycemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.6''', NULL, + '(775.6) Neonatal hypoglycemia', '(775.6) Neonatal hypoglycemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.7) Late metabolic acidosis of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.7) Late metabolic acidosis of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.7''', NULL, + '(775.7) Late metabolic acidosis of newborn', '(775.7) Late metabolic acidosis of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.9) Unspecified endocrine and metabolic disturbances specific to the fetus and newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.9) Unspecified endocrine and metabolic disturbances specific to the fetus and newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.9''', NULL, + '(775.9) Unspecified endocrine and metabolic disturbances specific to the fetus and newborn', '(775.9) Unspecified endocrine and metabolic disturbances specific to the fetus and newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.8''', NULL, + 'Other neonatal endocrine and metabolic disturbances (775.8)', 'Other neonatal endocrine and metabolic disturbances (775.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\(775.81) Other acidosis of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\(775.81) Other acidosis of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.81''', NULL, + '(775.81) Other acidosis of newborn', '(775.81) Other acidosis of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\(775.89) Other neonatal endocrine and metabolic disturbances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\(775.89) Other neonatal endocrine and metabolic disturbances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.89''', NULL, + '(775.89) Other neonatal endocrine and metabolic disturbances', '(775.89) Other neonatal endocrine and metabolic disturbances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772''', NULL, + 'Fetal and neonatal hemorrhage (772)', 'Fetal and neonatal hemorrhage (772)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.0) Fetal blood loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.0) Fetal blood loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.0''', NULL, + '(772.0) Fetal blood loss', '(772.0) Fetal blood loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.2) Subarachnoid hemorrhage of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.2) Subarachnoid hemorrhage of fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.2''', NULL, + '(772.2) Subarachnoid hemorrhage of fetus or newborn', '(772.2) Subarachnoid hemorrhage of fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.3) Umbilical hemorrhage after birth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.3) Umbilical hemorrhage after birth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.3''', NULL, + '(772.3) Umbilical hemorrhage after birth', '(772.3) Umbilical hemorrhage after birth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.4) Gastrointestinal hemorrhage of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.4) Gastrointestinal hemorrhage of fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.4''', NULL, + '(772.4) Gastrointestinal hemorrhage of fetus or newborn', '(772.4) Gastrointestinal hemorrhage of fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.5) Adrenal hemorrhage of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.5) Adrenal hemorrhage of fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.5''', NULL, + '(772.5) Adrenal hemorrhage of fetus or newborn', '(772.5) Adrenal hemorrhage of fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.6) Cutaneous hemorrhage of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.6) Cutaneous hemorrhage of fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.6''', NULL, + '(772.6) Cutaneous hemorrhage of fetus or newborn', '(772.6) Cutaneous hemorrhage of fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.8) Other specified hemorrhage of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.8) Other specified hemorrhage of fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.8''', NULL, + '(772.8) Other specified hemorrhage of fetus or newborn', '(772.8) Other specified hemorrhage of fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.9) Unspecified hemorrhage of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.9) Unspecified hemorrhage of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.9''', NULL, + '(772.9) Unspecified hemorrhage of newborn', '(772.9) Unspecified hemorrhage of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.1''', NULL, + 'Intraventricular hemorrhage of fetus or newborn (772.1)', 'Intraventricular hemorrhage of fetus or newborn (772.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.10) Intraventricular hemorrhage unspecified grade\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.10) Intraventricular hemorrhage unspecified grade\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.10''', NULL, + '(772.10) Intraventricular hemorrhage unspecified grade', '(772.10) Intraventricular hemorrhage unspecified grade', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.11) Intraventricular hemorrhage, grade I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.11) Intraventricular hemorrhage, grade I\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.11''', NULL, + '(772.11) Intraventricular hemorrhage, grade I', '(772.11) Intraventricular hemorrhage, grade I', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.12) Intraventricular hemorrhage, grade II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.12) Intraventricular hemorrhage, grade II\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.12''', NULL, + '(772.12) Intraventricular hemorrhage, grade II', '(772.12) Intraventricular hemorrhage, grade II', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.13) Intraventricular hemorrhage, grade III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.13) Intraventricular hemorrhage, grade III\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.13''', NULL, + '(772.13) Intraventricular hemorrhage, grade III', '(772.13) Intraventricular hemorrhage, grade III', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.14) Intraventricular hemorrhage, grade IV\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.14) Intraventricular hemorrhage, grade IV\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.14''', NULL, + '(772.14) Intraventricular hemorrhage, grade IV', '(772.14) Intraventricular hemorrhage, grade IV', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776''', NULL, + 'Hematological disorders of newborn (776)', 'Hematological disorders of newborn (776)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.0) Hemorrhagic disease of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.0) Hemorrhagic disease of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.0''', NULL, + '(776.0) Hemorrhagic disease of newborn', '(776.0) Hemorrhagic disease of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.1) Transient neonatal thrombocytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.1) Transient neonatal thrombocytopenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.1''', NULL, + '(776.1) Transient neonatal thrombocytopenia', '(776.1) Transient neonatal thrombocytopenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.2) Disseminated intravascular coagulation in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.2) Disseminated intravascular coagulation in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.2''', NULL, + '(776.2) Disseminated intravascular coagulation in newborn', '(776.2) Disseminated intravascular coagulation in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.3) Other transient neonatal disorders of coagulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.3) Other transient neonatal disorders of coagulation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.3''', NULL, + '(776.3) Other transient neonatal disorders of coagulation', '(776.3) Other transient neonatal disorders of coagulation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.4) Polycythemia neonatorum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.4) Polycythemia neonatorum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.4''', NULL, + '(776.4) Polycythemia neonatorum', '(776.4) Polycythemia neonatorum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.5) Congenital anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.5) Congenital anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.5''', NULL, + '(776.5) Congenital anemia', '(776.5) Congenital anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.6) Anemia of prematurity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.6) Anemia of prematurity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.6''', NULL, + '(776.6) Anemia of prematurity', '(776.6) Anemia of prematurity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.7) Transient neonatal neutropenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.7) Transient neonatal neutropenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.7''', NULL, + '(776.7) Transient neonatal neutropenia', '(776.7) Transient neonatal neutropenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.8) Other specified transient hematological disorders of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.8) Other specified transient hematological disorders of fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.8''', NULL, + '(776.8) Other specified transient hematological disorders of fetus or newborn', '(776.8) Other specified transient hematological disorders of fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.9) Unspecified hematological disorder specific to newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.9) Unspecified hematological disorder specific to newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.9''', NULL, + '(776.9) Unspecified hematological disorder specific to newborn', '(776.9) Unspecified hematological disorder specific to newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773''', NULL, + 'Hemolytic disease of fetus or newborn, due to isoimmunization (773)', 'Hemolytic disease of fetus or newborn, due to isoimmunization (773)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.0) Hemolytic disease of fetus or newborn due to Rh isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.0) Hemolytic disease of fetus or newborn due to Rh isoimmunization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.0''', NULL, + '(773.0) Hemolytic disease of fetus or newborn due to Rh isoimmunization', '(773.0) Hemolytic disease of fetus or newborn due to Rh isoimmunization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.1) Hemolytic disease of fetus or newborn due to ABO isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.1) Hemolytic disease of fetus or newborn due to ABO isoimmunization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.1''', NULL, + '(773.1) Hemolytic disease of fetus or newborn due to ABO isoimmunization', '(773.1) Hemolytic disease of fetus or newborn due to ABO isoimmunization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.2) Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.2) Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.2''', NULL, + '(773.2) Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization', '(773.2) Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.3) Hydrops fetalis due to isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.3) Hydrops fetalis due to isoimmunization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.3''', NULL, + '(773.3) Hydrops fetalis due to isoimmunization', '(773.3) Hydrops fetalis due to isoimmunization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.4) Kernicterus of fetus or newborn due to isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.4) Kernicterus of fetus or newborn due to isoimmunization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.4''', NULL, + '(773.4) Kernicterus of fetus or newborn due to isoimmunization', '(773.4) Kernicterus of fetus or newborn due to isoimmunization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.5) Late anemia of fetus or newborn due to isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.5) Late anemia of fetus or newborn due to isoimmunization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.5''', NULL, + '(773.5) Late anemia of fetus or newborn due to isoimmunization', '(773.5) Late anemia of fetus or newborn due to isoimmunization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771''', NULL, + 'Infections specific to the perinatal period (771)', 'Infections specific to the perinatal period (771)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.0) Congenital rubella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.0) Congenital rubella\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.0''', NULL, + '(771.0) Congenital rubella', '(771.0) Congenital rubella', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.1) Congenital cytomegalovirus infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.1) Congenital cytomegalovirus infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.1''', NULL, + '(771.1) Congenital cytomegalovirus infection', '(771.1) Congenital cytomegalovirus infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.2) Other congenital infections specific to the perinatal period\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.2) Other congenital infections specific to the perinatal period\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.2''', NULL, + '(771.2) Other congenital infections specific to the perinatal period', '(771.2) Other congenital infections specific to the perinatal period', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.3) Tetanus neonatorum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.3) Tetanus neonatorum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.3''', NULL, + '(771.3) Tetanus neonatorum', '(771.3) Tetanus neonatorum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.4) Omphalitis of the newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.4) Omphalitis of the newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.4''', NULL, + '(771.4) Omphalitis of the newborn', '(771.4) Omphalitis of the newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.5) Neonatal infective mastitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.5) Neonatal infective mastitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.5''', NULL, + '(771.5) Neonatal infective mastitis', '(771.5) Neonatal infective mastitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.6) Neonatal conjunctivitis and dacryocystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.6) Neonatal conjunctivitis and dacryocystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.6''', NULL, + '(771.6) Neonatal conjunctivitis and dacryocystitis', '(771.6) Neonatal conjunctivitis and dacryocystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.7) Neonatal Candida infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.7) Neonatal Candida infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.7''', NULL, + '(771.7) Neonatal Candida infection', '(771.7) Neonatal Candida infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.8''', NULL, + 'Other infection specific to the perinatal period (771.8)', 'Other infection specific to the perinatal period (771.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.81) Septicemia [sepsis] of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.81) Septicemia [sepsis] of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.81''', NULL, + '(771.81) Septicemia [sepsis] of newborn', '(771.81) Septicemia [sepsis] of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.82) Urinary tract infection of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.82) Urinary tract infection of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.82''', NULL, + '(771.82) Urinary tract infection of newborn', '(771.82) Urinary tract infection of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.83) Bacteremia of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.83) Bacteremia of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.83''', NULL, + '(771.83) Bacteremia of newborn', '(771.83) Bacteremia of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.89) Other infections specific to the perinatal period\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.89) Other infections specific to the perinatal period\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.89''', NULL, + '(771.89) Other infections specific to the perinatal period', '(771.89) Other infections specific to the perinatal period', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768''', NULL, + 'Intrauterine hypoxia and birth asphyxia (768)', 'Intrauterine hypoxia and birth asphyxia (768)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.0) Fetal death from asphyxia or anoxia before onset of labor or at unspecified time\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.0) Fetal death from asphyxia or anoxia before onset of labor or at unspecified time\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.0''', NULL, + '(768.0) Fetal death from asphyxia or anoxia before onset of labor or at unspecified time', '(768.0) Fetal death from asphyxia or anoxia before onset of labor or at unspecified time', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.1) Fetal death from asphyxia or anoxia during labor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.1) Fetal death from asphyxia or anoxia during labor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.1''', NULL, + '(768.1) Fetal death from asphyxia or anoxia during labor', '(768.1) Fetal death from asphyxia or anoxia during labor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.2) Fetal distress before onset of labor, in liveborn infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.2) Fetal distress before onset of labor, in liveborn infant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.2''', NULL, + '(768.2) Fetal distress before onset of labor, in liveborn infant', '(768.2) Fetal distress before onset of labor, in liveborn infant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.3) Fetal distress first noted during labor and delivery, in liveborn infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.3) Fetal distress first noted during labor and delivery, in liveborn infant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.3''', NULL, + '(768.3) Fetal distress first noted during labor and delivery, in liveborn infant', '(768.3) Fetal distress first noted during labor and delivery, in liveborn infant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.4) Fetal distress, unspecified as to time of onset, in liveborn infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.4) Fetal distress, unspecified as to time of onset, in liveborn infant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.4''', NULL, + '(768.4) Fetal distress, unspecified as to time of onset, in liveborn infant', '(768.4) Fetal distress, unspecified as to time of onset, in liveborn infant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.5) Severe birth asphyxia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.5) Severe birth asphyxia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.5''', NULL, + '(768.5) Severe birth asphyxia', '(768.5) Severe birth asphyxia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.6) Mild or moderate birth asphyxia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.6) Mild or moderate birth asphyxia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.6''', NULL, + '(768.6) Mild or moderate birth asphyxia', '(768.6) Mild or moderate birth asphyxia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.9) Unspecified severity of birth asphyxia in liveborn infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.9) Unspecified severity of birth asphyxia in liveborn infant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.9''', NULL, + '(768.9) Unspecified severity of birth asphyxia in liveborn infant', '(768.9) Unspecified severity of birth asphyxia in liveborn infant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''HIE) (768.7''', NULL, + 'Hypoxic-ischemic encephalopathy (HIE) (768.7)', 'Hypoxic-ischemic encephalopathy (HIE) (768.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.70) Hypoxic-ischemic encephalopathy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.70) Hypoxic-ischemic encephalopathy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.70''', NULL, + '(768.70) Hypoxic-ischemic encephalopathy, unspecified', '(768.70) Hypoxic-ischemic encephalopathy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.71) Mild hypoxic-ischemic encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.71) Mild hypoxic-ischemic encephalopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.71''', NULL, + '(768.71) Mild hypoxic-ischemic encephalopathy', '(768.71) Mild hypoxic-ischemic encephalopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.72) Moderate hypoxic-ischemic encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.72) Moderate hypoxic-ischemic encephalopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.72''', NULL, + '(768.72) Moderate hypoxic-ischemic encephalopathy', '(768.72) Moderate hypoxic-ischemic encephalopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.73) Severe hypoxic-ischemic encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.73) Severe hypoxic-ischemic encephalopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.73''', NULL, + '(768.73) Severe hypoxic-ischemic encephalopathy', '(768.73) Severe hypoxic-ischemic encephalopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779''', NULL, + 'Other and ill-defined conditions originating in the perinatal period (779)', 'Other and ill-defined conditions originating in the perinatal period (779)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.0) Convulsions in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.0) Convulsions in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.0''', NULL, + '(779.0) Convulsions in newborn', '(779.0) Convulsions in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.1) Other and unspecified cerebral irritability in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.1) Other and unspecified cerebral irritability in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.1''', NULL, + '(779.1) Other and unspecified cerebral irritability in newborn', '(779.1) Other and unspecified cerebral irritability in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.2) Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.2) Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.2''', NULL, + '(779.2) Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn', '(779.2) Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.4) Drug reactions and intoxications specific to newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.4) Drug reactions and intoxications specific to newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.4''', NULL, + '(779.4) Drug reactions and intoxications specific to newborn', '(779.4) Drug reactions and intoxications specific to newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.5) Drug withdrawal syndrome in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.5) Drug withdrawal syndrome in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.5''', NULL, + '(779.5) Drug withdrawal syndrome in newborn', '(779.5) Drug withdrawal syndrome in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.6) Termination of pregnancy (fetus)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.6) Termination of pregnancy (fetus)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.6) Termination of pregnancy (fetus''', NULL, + '(779.6) Termination of pregnancy (fetus)', '(779.6) Termination of pregnancy (fetus)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.7) Periventricular leukomalacia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.7) Periventricular leukomalacia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.7''', NULL, + '(779.7) Periventricular leukomalacia', '(779.7) Periventricular leukomalacia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.9) Unspecified condition originating in the perinatal period\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.9) Unspecified condition originating in the perinatal period\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.9''', NULL, + '(779.9) Unspecified condition originating in the perinatal period', '(779.9) Unspecified condition originating in the perinatal period', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.3''', NULL, + 'Disorder of stomach function and feeding problems in newborn (779.3)', 'Disorder of stomach function and feeding problems in newborn (779.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.31) Feeding problems in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.31) Feeding problems in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.31''', NULL, + '(779.31) Feeding problems in newborn', '(779.31) Feeding problems in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.32) Bilious vomiting in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.32) Bilious vomiting in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.32''', NULL, + '(779.32) Bilious vomiting in newborn', '(779.32) Bilious vomiting in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.33) Other vomiting in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.33) Other vomiting in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.33''', NULL, + '(779.33) Other vomiting in newborn', '(779.33) Other vomiting in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.34) Failure to thrive in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.34) Failure to thrive in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.34''', NULL, + '(779.34) Failure to thrive in newborn', '(779.34) Failure to thrive in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.8''', NULL, + 'Other specified conditions originating in the perinatal period (779.8)', 'Other specified conditions originating in the perinatal period (779.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.81) Neonatal bradycardia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.81) Neonatal bradycardia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.81''', NULL, + '(779.81) Neonatal bradycardia', '(779.81) Neonatal bradycardia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.82) Neonatal tachycardia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.82) Neonatal tachycardia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.82''', NULL, + '(779.82) Neonatal tachycardia', '(779.82) Neonatal tachycardia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.83) Delayed separation of umbilical cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.83) Delayed separation of umbilical cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.83''', NULL, + '(779.83) Delayed separation of umbilical cord', '(779.83) Delayed separation of umbilical cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.84) Meconium staining\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.84) Meconium staining\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.84''', NULL, + '(779.84) Meconium staining', '(779.84) Meconium staining', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.85) Cardiac arrest of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.85) Cardiac arrest of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.85''', NULL, + '(779.85) Cardiac arrest of newborn', '(779.85) Cardiac arrest of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.89) Other specified conditions originating in the perinatal period\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.89) Other specified conditions originating in the perinatal period\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.89''', NULL, + '(779.89) Other specified conditions originating in the perinatal period', '(779.89) Other specified conditions originating in the perinatal period', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774''', NULL, + 'Other perinatal jaundice (774)', 'Other perinatal jaundice (774)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.0) Perinatal jaundice from hereditary hemolytic anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.0) Perinatal jaundice from hereditary hemolytic anemias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.0''', NULL, + '(774.0) Perinatal jaundice from hereditary hemolytic anemias', '(774.0) Perinatal jaundice from hereditary hemolytic anemias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.1) Perinatal jaundice from other excessive hemolysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.1) Perinatal jaundice from other excessive hemolysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.1''', NULL, + '(774.1) Perinatal jaundice from other excessive hemolysis', '(774.1) Perinatal jaundice from other excessive hemolysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.2) Neonatal jaundice associated with preterm delivery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.2) Neonatal jaundice associated with preterm delivery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.2''', NULL, + '(774.2) Neonatal jaundice associated with preterm delivery', '(774.2) Neonatal jaundice associated with preterm delivery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.4) Perinatal jaundice due to hepatocellular damage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.4) Perinatal jaundice due to hepatocellular damage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.4''', NULL, + '(774.4) Perinatal jaundice due to hepatocellular damage', '(774.4) Perinatal jaundice due to hepatocellular damage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.5) Perinatal jaundice from other causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.5) Perinatal jaundice from other causes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.5''', NULL, + '(774.5) Perinatal jaundice from other causes', '(774.5) Perinatal jaundice from other causes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.6) Unspecified fetal and neonatal jaundice\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.6) Unspecified fetal and neonatal jaundice\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.6''', NULL, + '(774.6) Unspecified fetal and neonatal jaundice', '(774.6) Unspecified fetal and neonatal jaundice', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.7) Kernicterus of fetus or newborn not due to isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.7) Kernicterus of fetus or newborn not due to isoimmunization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.7''', NULL, + '(774.7) Kernicterus of fetus or newborn not due to isoimmunization', '(774.7) Kernicterus of fetus or newborn not due to isoimmunization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.3''', NULL, + 'Neonatal jaundice due to delayed conjugation from other causes (774.3)', 'Neonatal jaundice due to delayed conjugation from other causes (774.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.30) Neonatal jaundice due to delayed conjugation, cause unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.30) Neonatal jaundice due to delayed conjugation, cause unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.30''', NULL, + '(774.30) Neonatal jaundice due to delayed conjugation, cause unspecified', '(774.30) Neonatal jaundice due to delayed conjugation, cause unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.31) Neonatal jaundice due to delayed conjugation in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.31) Neonatal jaundice due to delayed conjugation in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.31''', NULL, + '(774.31) Neonatal jaundice due to delayed conjugation in diseases classified elsewhere', '(774.31) Neonatal jaundice due to delayed conjugation in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.39) Other neonatal jaundice due to delayed conjugation from other causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.39) Other neonatal jaundice due to delayed conjugation from other causes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.39''', NULL, + '(774.39) Other neonatal jaundice due to delayed conjugation from other causes', '(774.39) Other neonatal jaundice due to delayed conjugation from other causes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770''', NULL, + 'Other respiratory conditions of fetus and newborn (770)', 'Other respiratory conditions of fetus and newborn (770)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.0) Congenital pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.0) Congenital pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.0''', NULL, + '(770.0) Congenital pneumonia', '(770.0) Congenital pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.2) Interstitial emphysema and related conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.2) Interstitial emphysema and related conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.2''', NULL, + '(770.2) Interstitial emphysema and related conditions', '(770.2) Interstitial emphysema and related conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.3) Pulmonary hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.3) Pulmonary hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.3''', NULL, + '(770.3) Pulmonary hemorrhage', '(770.3) Pulmonary hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.4) Primary atelectasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.4) Primary atelectasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.4''', NULL, + '(770.4) Primary atelectasis', '(770.4) Primary atelectasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.5) Other and unspecified atelectasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.5) Other and unspecified atelectasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.5''', NULL, + '(770.5) Other and unspecified atelectasis', '(770.5) Other and unspecified atelectasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.6) Transitory tachypnea of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.6) Transitory tachypnea of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.6''', NULL, + '(770.6) Transitory tachypnea of newborn', '(770.6) Transitory tachypnea of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.7) Chronic respiratory disease arising in the perinatal period\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.7) Chronic respiratory disease arising in the perinatal period\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.7''', NULL, + '(770.7) Chronic respiratory disease arising in the perinatal period', '(770.7) Chronic respiratory disease arising in the perinatal period', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.9) Unspecified respiratory condition of fetus and newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.9) Unspecified respiratory condition of fetus and newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.9''', NULL, + '(770.9) Unspecified respiratory condition of fetus and newborn', '(770.9) Unspecified respiratory condition of fetus and newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.1''', NULL, + 'Fetal and newborn aspiration (770.1)', 'Fetal and newborn aspiration (770.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.10) Fetal and newborn aspiration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.10) Fetal and newborn aspiration, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.10''', NULL, + '(770.10) Fetal and newborn aspiration, unspecified', '(770.10) Fetal and newborn aspiration, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.11) Meconium aspiration without respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.11) Meconium aspiration without respiratory symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.11''', NULL, + '(770.11) Meconium aspiration without respiratory symptoms', '(770.11) Meconium aspiration without respiratory symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.12) Meconium aspiration with respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.12) Meconium aspiration with respiratory symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.12''', NULL, + '(770.12) Meconium aspiration with respiratory symptoms', '(770.12) Meconium aspiration with respiratory symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.13) Aspiration of clear amniotic fluid without respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.13) Aspiration of clear amniotic fluid without respiratory symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.13''', NULL, + '(770.13) Aspiration of clear amniotic fluid without respiratory symptoms', '(770.13) Aspiration of clear amniotic fluid without respiratory symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.14) Aspiration of clear amniotic fluid with respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.14) Aspiration of clear amniotic fluid with respiratory symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.14''', NULL, + '(770.14) Aspiration of clear amniotic fluid with respiratory symptoms', '(770.14) Aspiration of clear amniotic fluid with respiratory symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.15) Aspiration of blood without respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.15) Aspiration of blood without respiratory symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.15''', NULL, + '(770.15) Aspiration of blood without respiratory symptoms', '(770.15) Aspiration of blood without respiratory symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.16) Aspiration of blood with respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.16) Aspiration of blood with respiratory symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.16''', NULL, + '(770.16) Aspiration of blood with respiratory symptoms', '(770.16) Aspiration of blood with respiratory symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.17) Other fetal and newborn aspiration without respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.17) Other fetal and newborn aspiration without respiratory symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.17''', NULL, + '(770.17) Other fetal and newborn aspiration without respiratory symptoms', '(770.17) Other fetal and newborn aspiration without respiratory symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.18) Other fetal and newborn aspiration with respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.18) Other fetal and newborn aspiration with respiratory symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.18''', NULL, + '(770.18) Other fetal and newborn aspiration with respiratory symptoms', '(770.18) Other fetal and newborn aspiration with respiratory symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.8''', NULL, + 'Other newborn respiratory problems (770.8)', 'Other newborn respiratory problems (770.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.81) Primary apnea of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.81) Primary apnea of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.81''', NULL, + '(770.81) Primary apnea of newborn', '(770.81) Primary apnea of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.82) Other apnea of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.82) Other apnea of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.82''', NULL, + '(770.82) Other apnea of newborn', '(770.82) Other apnea of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.83) Cyanotic attacks of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.83) Cyanotic attacks of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.83''', NULL, + '(770.83) Cyanotic attacks of newborn', '(770.83) Cyanotic attacks of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.84) Respiratory failure of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.84) Respiratory failure of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.84''', NULL, + '(770.84) Respiratory failure of newborn', '(770.84) Respiratory failure of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.85) Aspiration of postnatal stomach contents without respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.85) Aspiration of postnatal stomach contents without respiratory symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.85''', NULL, + '(770.85) Aspiration of postnatal stomach contents without respiratory symptoms', '(770.85) Aspiration of postnatal stomach contents without respiratory symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.86) Aspiration of postnatal stomach contents with respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.86) Aspiration of postnatal stomach contents with respiratory symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.86''', NULL, + '(770.86) Aspiration of postnatal stomach contents with respiratory symptoms', '(770.86) Aspiration of postnatal stomach contents with respiratory symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.87) Respiratory arrest of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.87) Respiratory arrest of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.87''', NULL, + '(770.87) Respiratory arrest of newborn', '(770.87) Respiratory arrest of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.88) Hypoxemia of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.88) Hypoxemia of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.88''', NULL, + '(770.88) Hypoxemia of newborn', '(770.88) Hypoxemia of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.89) Other respiratory problems after birth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.89) Other respiratory problems after birth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.89''', NULL, + '(770.89) Other respiratory problems after birth', '(770.89) Other respiratory problems after birth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777''', NULL, + 'Perinatal disorders of digestive system (777)', 'Perinatal disorders of digestive system (777)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.1) Meconium obstruction in fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.1) Meconium obstruction in fetus or newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.1''', NULL, + '(777.1) Meconium obstruction in fetus or newborn', '(777.1) Meconium obstruction in fetus or newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.2) Intestinal obstruction in newborn due to inspissated milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.2) Intestinal obstruction in newborn due to inspissated milk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.2''', NULL, + '(777.2) Intestinal obstruction in newborn due to inspissated milk', '(777.2) Intestinal obstruction in newborn due to inspissated milk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.3) Hematemesis and melena of newborn due to swallowed maternal blood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.3) Hematemesis and melena of newborn due to swallowed maternal blood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.3''', NULL, + '(777.3) Hematemesis and melena of newborn due to swallowed maternal blood', '(777.3) Hematemesis and melena of newborn due to swallowed maternal blood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.4) Transitory ileus of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.4) Transitory ileus of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.4''', NULL, + '(777.4) Transitory ileus of newborn', '(777.4) Transitory ileus of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.6) Perinatal intestinal perforation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.6) Perinatal intestinal perforation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.6''', NULL, + '(777.6) Perinatal intestinal perforation', '(777.6) Perinatal intestinal perforation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.8) Other specified perinatal disorders of digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.8) Other specified perinatal disorders of digestive system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.8''', NULL, + '(777.8) Other specified perinatal disorders of digestive system', '(777.8) Other specified perinatal disorders of digestive system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.9) Unspecified perinatal disorder of digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.9) Unspecified perinatal disorder of digestive system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.9''', NULL, + '(777.9) Unspecified perinatal disorder of digestive system', '(777.9) Unspecified perinatal disorder of digestive system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.5''', NULL, + 'Necrotizing enterocolitis in newborn (777.5)', 'Necrotizing enterocolitis in newborn (777.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.50) Necrotizing enterocolitis in newborn, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.50) Necrotizing enterocolitis in newborn, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.50''', NULL, + '(777.50) Necrotizing enterocolitis in newborn, unspecified', '(777.50) Necrotizing enterocolitis in newborn, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.51) Stage I necrotizing enterocolitis in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.51) Stage I necrotizing enterocolitis in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.51''', NULL, + '(777.51) Stage I necrotizing enterocolitis in newborn', '(777.51) Stage I necrotizing enterocolitis in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.52) Stage II necrotizing enterocolitis in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.52) Stage II necrotizing enterocolitis in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.52''', NULL, + '(777.52) Stage II necrotizing enterocolitis in newborn', '(777.52) Stage II necrotizing enterocolitis in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.53) Stage III necrotizing enterocolitis in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.53) Stage III necrotizing enterocolitis in newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.53''', NULL, + '(777.53) Stage III necrotizing enterocolitis in newborn', '(777.53) Stage III necrotizing enterocolitis in newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764''', NULL, + 'Slow fetal growth and fetal malnutrition (764)', 'Slow fetal growth and fetal malnutrition (764)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.9''', NULL, + 'Fetal growth retardation, unspecified (764.9)', 'Fetal growth retardation, unspecified (764.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.90) Fetal growth retardation, unspecified, unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.90) Fetal growth retardation, unspecified, unspecified [weight]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.90''', NULL, + '(764.90) Fetal growth retardation, unspecified, unspecified [weight]', '(764.90) Fetal growth retardation, unspecified, unspecified [weight]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.91) Fetal growth retardation, unspecified, less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.91) Fetal growth retardation, unspecified, less than 500 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.91''', NULL, + '(764.91) Fetal growth retardation, unspecified, less than 500 grams', '(764.91) Fetal growth retardation, unspecified, less than 500 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.92) Fetal growth retardation, unspecified, 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.92) Fetal growth retardation, unspecified, 500-749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.92''', NULL, + '(764.92) Fetal growth retardation, unspecified, 500-749 grams', '(764.92) Fetal growth retardation, unspecified, 500-749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.93) Fetal growth retardation, unspecified, 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.93) Fetal growth retardation, unspecified, 750-999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.93''', NULL, + '(764.93) Fetal growth retardation, unspecified, 750-999 grams', '(764.93) Fetal growth retardation, unspecified, 750-999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.94) Fetal growth retardation, unspecified, 1,000-1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.94) Fetal growth retardation, unspecified, 1,000-1,249 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.94''', NULL, + '(764.94) Fetal growth retardation, unspecified, 1,000-1,249 grams', '(764.94) Fetal growth retardation, unspecified, 1,000-1,249 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.95) Fetal growth retardation, unspecified, 1,250-1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.95) Fetal growth retardation, unspecified, 1,250-1,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.95''', NULL, + '(764.95) Fetal growth retardation, unspecified, 1,250-1,499 grams', '(764.95) Fetal growth retardation, unspecified, 1,250-1,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.96) Fetal growth retardation, unspecified, 1,500-1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.96) Fetal growth retardation, unspecified, 1,500-1,749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.96''', NULL, + '(764.96) Fetal growth retardation, unspecified, 1,500-1,749 grams', '(764.96) Fetal growth retardation, unspecified, 1,500-1,749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.97) Fetal growth retardation, unspecified, 1,750-1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.97) Fetal growth retardation, unspecified, 1,750-1,999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.97''', NULL, + '(764.97) Fetal growth retardation, unspecified, 1,750-1,999 grams', '(764.97) Fetal growth retardation, unspecified, 1,750-1,999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.98) Fetal growth retardation, unspecified, 2,000-2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.98) Fetal growth retardation, unspecified, 2,000-2,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.98''', NULL, + '(764.98) Fetal growth retardation, unspecified, 2,000-2,499 grams', '(764.98) Fetal growth retardation, unspecified, 2,000-2,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.99) Fetal growth retardation, unspecified, 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.99) Fetal growth retardation, unspecified, 2,500 grams and over\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.99''', NULL, + '(764.99) Fetal growth retardation, unspecified, 2,500 grams and over', '(764.99) Fetal growth retardation, unspecified, 2,500 grams and over', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.2''', NULL, + 'Fetal malnutrition without mention of "light-for-dates" (764.2)', 'Fetal malnutrition without mention of "light-for-dates" (764.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.20) Fetal malnutrition without mention of "light-for-dates", unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.20) Fetal malnutrition without mention of "light-for-dates", unspecified [weight]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.20''', NULL, + '(764.20) Fetal malnutrition without mention of "light-for-dates", unspecified [weight]', '(764.20) Fetal malnutrition without mention of "light-for-dates", unspecified [weight]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.21) Fetal malnutrition without mention of "light-for-dates", less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.21) Fetal malnutrition without mention of "light-for-dates", less than 500 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.21''', NULL, + '(764.21) Fetal malnutrition without mention of "light-for-dates", less than 500 grams', '(764.21) Fetal malnutrition without mention of "light-for-dates", less than 500 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.22) Fetal malnutrition without mention of "light-for-dates", 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.22) Fetal malnutrition without mention of "light-for-dates", 500-749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.22''', NULL, + '(764.22) Fetal malnutrition without mention of "light-for-dates", 500-749 grams', '(764.22) Fetal malnutrition without mention of "light-for-dates", 500-749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.23) Fetal malnutrition without mention of "light-for-dates", 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.23) Fetal malnutrition without mention of "light-for-dates", 750-999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.23''', NULL, + '(764.23) Fetal malnutrition without mention of "light-for-dates", 750-999 grams', '(764.23) Fetal malnutrition without mention of "light-for-dates", 750-999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.24) Fetal malnutrition without mention of "light-for-dates", 1,000-1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.24) Fetal malnutrition without mention of "light-for-dates", 1,000-1,249 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.24''', NULL, + '(764.24) Fetal malnutrition without mention of "light-for-dates", 1,000-1,249 grams', '(764.24) Fetal malnutrition without mention of "light-for-dates", 1,000-1,249 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.25) Fetal malnutrition without mention of "light-for-dates", 1,250-1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.25) Fetal malnutrition without mention of "light-for-dates", 1,250-1,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.25''', NULL, + '(764.25) Fetal malnutrition without mention of "light-for-dates", 1,250-1,499 grams', '(764.25) Fetal malnutrition without mention of "light-for-dates", 1,250-1,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.26) Fetal malnutrition without mention of "light-for-dates", 1,500-1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.26) Fetal malnutrition without mention of "light-for-dates", 1,500-1,749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.26''', NULL, + '(764.26) Fetal malnutrition without mention of "light-for-dates", 1,500-1,749 grams', '(764.26) Fetal malnutrition without mention of "light-for-dates", 1,500-1,749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.27) Fetal malnutrition without mention of "light-for-dates", 1,750-1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.27) Fetal malnutrition without mention of "light-for-dates", 1,750-1,999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.27''', NULL, + '(764.27) Fetal malnutrition without mention of "light-for-dates", 1,750-1,999 grams', '(764.27) Fetal malnutrition without mention of "light-for-dates", 1,750-1,999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.28) Fetal malnutrition without mention of "light-for-dates", 2,000-2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.28) Fetal malnutrition without mention of "light-for-dates", 2,000-2,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.28''', NULL, + '(764.28) Fetal malnutrition without mention of "light-for-dates", 2,000-2,499 grams', '(764.28) Fetal malnutrition without mention of "light-for-dates", 2,000-2,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.29) Fetal malnutrition without mention of "light-for-dates", 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.29) Fetal malnutrition without mention of "light-for-dates", 2,500 grams and over\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.29''', NULL, + '(764.29) Fetal malnutrition without mention of "light-for-dates", 2,500 grams and over', '(764.29) Fetal malnutrition without mention of "light-for-dates", 2,500 grams and over', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.1''', NULL, + 'Light-for-dates with signs of fetal malnutrition (764.1)', 'Light-for-dates with signs of fetal malnutrition (764.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.10) Light-for-dates with signs of fetal malnutrition, unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.10) Light-for-dates with signs of fetal malnutrition, unspecified [weight]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.10''', NULL, + '(764.10) Light-for-dates with signs of fetal malnutrition, unspecified [weight]', '(764.10) Light-for-dates with signs of fetal malnutrition, unspecified [weight]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.11) Light-for-dates with signs of fetal malnutrition, less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.11) Light-for-dates with signs of fetal malnutrition, less than 500 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.11''', NULL, + '(764.11) Light-for-dates with signs of fetal malnutrition, less than 500 grams', '(764.11) Light-for-dates with signs of fetal malnutrition, less than 500 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.12) Light-for-dateswith signs of fetal malnutrition, 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.12) Light-for-dateswith signs of fetal malnutrition, 500-749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.12''', NULL, + '(764.12) Light-for-dateswith signs of fetal malnutrition, 500-749 grams', '(764.12) Light-for-dateswith signs of fetal malnutrition, 500-749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.13) Light-for-dates with signs of fetal malnutrition, 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.13) Light-for-dates with signs of fetal malnutrition, 750-999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.13''', NULL, + '(764.13) Light-for-dates with signs of fetal malnutrition, 750-999 grams', '(764.13) Light-for-dates with signs of fetal malnutrition, 750-999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.14) Light-for-dates with signs of fetal malnutrition, 1,000-1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.14) Light-for-dates with signs of fetal malnutrition, 1,000-1,249 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.14''', NULL, + '(764.14) Light-for-dates with signs of fetal malnutrition, 1,000-1,249 grams', '(764.14) Light-for-dates with signs of fetal malnutrition, 1,000-1,249 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.15) Light-for-dates with signs of fetal malnutrition, 1,250-1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.15) Light-for-dates with signs of fetal malnutrition, 1,250-1,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.15''', NULL, + '(764.15) Light-for-dates with signs of fetal malnutrition, 1,250-1,499 grams', '(764.15) Light-for-dates with signs of fetal malnutrition, 1,250-1,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.16) Light-for-dates with signs of fetal malnutrition, 1,500-1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.16) Light-for-dates with signs of fetal malnutrition, 1,500-1,749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.16''', NULL, + '(764.16) Light-for-dates with signs of fetal malnutrition, 1,500-1,749 grams', '(764.16) Light-for-dates with signs of fetal malnutrition, 1,500-1,749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.17) Light-for-dates with signs of fetal malnutrition, 1,750-1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.17) Light-for-dates with signs of fetal malnutrition, 1,750-1,999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.17''', NULL, + '(764.17) Light-for-dates with signs of fetal malnutrition, 1,750-1,999 grams', '(764.17) Light-for-dates with signs of fetal malnutrition, 1,750-1,999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.18) Light-for-dateswith signs of fetal malnutrition, 2,000-2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.18) Light-for-dateswith signs of fetal malnutrition, 2,000-2,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.18''', NULL, + '(764.18) Light-for-dateswith signs of fetal malnutrition, 2,000-2,499 grams', '(764.18) Light-for-dateswith signs of fetal malnutrition, 2,000-2,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.19) Light-for-dateswith signs of fetal malnutrition, 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.19) Light-for-dateswith signs of fetal malnutrition, 2,500 grams and over\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.19''', NULL, + '(764.19) Light-for-dateswith signs of fetal malnutrition, 2,500 grams and over', '(764.19) Light-for-dateswith signs of fetal malnutrition, 2,500 grams and over', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.0''', NULL, + 'Light-for-dates without mention of fetal malnutrition (764.0)', 'Light-for-dates without mention of fetal malnutrition (764.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.00) Light-for-dates without mention of fetal malnutrition, unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.00) Light-for-dates without mention of fetal malnutrition, unspecified [weight]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.00''', NULL, + '(764.00) Light-for-dates without mention of fetal malnutrition, unspecified [weight]', '(764.00) Light-for-dates without mention of fetal malnutrition, unspecified [weight]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.01) Light-for-dates without mention of fetal malnutrition, less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.01) Light-for-dates without mention of fetal malnutrition, less than 500 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.01''', NULL, + '(764.01) Light-for-dates without mention of fetal malnutrition, less than 500 grams', '(764.01) Light-for-dates without mention of fetal malnutrition, less than 500 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.02) Light-for-dates without mention of fetal malnutrition, 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.02) Light-for-dates without mention of fetal malnutrition, 500-749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.02''', NULL, + '(764.02) Light-for-dates without mention of fetal malnutrition, 500-749 grams', '(764.02) Light-for-dates without mention of fetal malnutrition, 500-749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.03) Light-for-dates without mention of fetal malnutrition, 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.03) Light-for-dates without mention of fetal malnutrition, 750-999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.03''', NULL, + '(764.03) Light-for-dates without mention of fetal malnutrition, 750-999 grams', '(764.03) Light-for-dates without mention of fetal malnutrition, 750-999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.04) Light-for-dates without mention of fetal malnutrition, 1,000- 1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.04) Light-for-dates without mention of fetal malnutrition, 1,000- 1,249 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.04''', NULL, + '(764.04) Light-for-dates without mention of fetal malnutrition, 1,000- 1,249 grams', '(764.04) Light-for-dates without mention of fetal malnutrition, 1,000- 1,249 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.05) Light-for-dateswithout mention of fetal malnutrition, 1,250- 1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.05) Light-for-dateswithout mention of fetal malnutrition, 1,250- 1,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.05''', NULL, + '(764.05) Light-for-dateswithout mention of fetal malnutrition, 1,250- 1,499 grams', '(764.05) Light-for-dateswithout mention of fetal malnutrition, 1,250- 1,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.06) Light-for-dates without mention of fetal malnutrition, 1,500- 1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.06) Light-for-dates without mention of fetal malnutrition, 1,500- 1,749 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.06''', NULL, + '(764.06) Light-for-dates without mention of fetal malnutrition, 1,500- 1,749 grams', '(764.06) Light-for-dates without mention of fetal malnutrition, 1,500- 1,749 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.07) Light-for-dates without mention of fetal malnutrition, 1,750- 1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.07) Light-for-dates without mention of fetal malnutrition, 1,750- 1,999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.07''', NULL, + '(764.07) Light-for-dates without mention of fetal malnutrition, 1,750- 1,999 grams', '(764.07) Light-for-dates without mention of fetal malnutrition, 1,750- 1,999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.08) Light-for-dates without mention of fetal malnutrition, 2,000- 2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.08) Light-for-dates without mention of fetal malnutrition, 2,000- 2,499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.08''', NULL, + '(764.08) Light-for-dates without mention of fetal malnutrition, 2,000- 2,499 grams', '(764.08) Light-for-dates without mention of fetal malnutrition, 2,000- 2,499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.09) Light-for-dates without mention of fetal malnutrition, 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.09) Light-for-dates without mention of fetal malnutrition, 2,500 grams and over\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.09''', NULL, + '(764.09) Light-for-dates without mention of fetal malnutrition, 2,500 grams and over', '(764.09) Light-for-dates without mention of fetal malnutrition, 2,500 grams and over', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''630'' AND ''679.99''', NULL, + 'Complications of pregnancy, childbirth, and the puerperium (630-679.99)', 'Complications of pregnancy, childbirth, and the puerperium (630-679.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''640'' AND ''649.99''', NULL, + 'Complications mainly related to pregnancy (640-649.99)', 'Complications mainly related to pregnancy (640-649.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641''', NULL, + 'Antepartum hemorrhage, abruptio placentae, and placenta previa (641)', 'Antepartum hemorrhage, abruptio placentae, and placenta previa (641)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.3''', NULL, + 'Antepartum hemorrhage associated with coagulation defects (641.3)', 'Antepartum hemorrhage associated with coagulation defects (641.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.30) Antepartum hemorrhage associated with coagulation defects, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.30) Antepartum hemorrhage associated with coagulation defects, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.30''', NULL, + '(641.30) Antepartum hemorrhage associated with coagulation defects, unspecified as to episode of care or not applicable', '(641.30) Antepartum hemorrhage associated with coagulation defects, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.31) Antepartum hemorrhage associated with coagulation defects, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.31) Antepartum hemorrhage associated with coagulation defects, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.31''', NULL, + '(641.31) Antepartum hemorrhage associated with coagulation defects, delivered, with or without mention of antepartum condition', '(641.31) Antepartum hemorrhage associated with coagulation defects, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.33) Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.33) Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.33''', NULL, + '(641.33) Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication', '(641.33) Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.1''', NULL, + 'Hemorrhage from placenta previa (641.1)', 'Hemorrhage from placenta previa (641.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.10) Hemorrhage from placenta previa, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.10) Hemorrhage from placenta previa, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.10''', NULL, + '(641.10) Hemorrhage from placenta previa, unspecified as to episode of care or not applicable', '(641.10) Hemorrhage from placenta previa, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.11) Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.11) Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.11''', NULL, + '(641.11) Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition', '(641.11) Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.13) Hemorrhage from placenta previa, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.13) Hemorrhage from placenta previa, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.13''', NULL, + '(641.13) Hemorrhage from placenta previa, antepartum condition or complication', '(641.13) Hemorrhage from placenta previa, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.8''', NULL, + 'Other antepartum hemorrhage (641.8)', 'Other antepartum hemorrhage (641.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.80) Other antepartum hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.80) Other antepartum hemorrhage, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.80''', NULL, + '(641.80) Other antepartum hemorrhage, unspecified as to episode of care or not applicable', '(641.80) Other antepartum hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.81) Other antepartum hemorrhage, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.81) Other antepartum hemorrhage, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.81''', NULL, + '(641.81) Other antepartum hemorrhage, delivered, with or without mention of antepartum condition', '(641.81) Other antepartum hemorrhage, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.83) Other antepartum hemorrhage, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.83) Other antepartum hemorrhage, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.83''', NULL, + '(641.83) Other antepartum hemorrhage, antepartum condition or complication', '(641.83) Other antepartum hemorrhage, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.0''', NULL, + 'Placenta previa without hemorrhage (641.0)', 'Placenta previa without hemorrhage (641.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.00) Placenta previa without hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.00) Placenta previa without hemorrhage, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.00''', NULL, + '(641.00) Placenta previa without hemorrhage, unspecified as to episode of care or not applicable', '(641.00) Placenta previa without hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.01) Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.01) Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.01''', NULL, + '(641.01) Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition', '(641.01) Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.03) Placenta previa without hemorrhage, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.03) Placenta previa without hemorrhage, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.03''', NULL, + '(641.03) Placenta previa without hemorrhage, antepartum condition or complication', '(641.03) Placenta previa without hemorrhage, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.2''', NULL, + 'Premature separation of placenta (641.2)', 'Premature separation of placenta (641.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.20) Premature separation of placenta, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.20) Premature separation of placenta, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.20''', NULL, + '(641.20) Premature separation of placenta, unspecified as to episode of care or not applicable', '(641.20) Premature separation of placenta, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.21) Premature separation of placenta, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.21) Premature separation of placenta, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.21''', NULL, + '(641.21) Premature separation of placenta, delivered, with or without mention of antepartum condition', '(641.21) Premature separation of placenta, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.23) Premature separation of placenta, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.23) Premature separation of placenta, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.23''', NULL, + '(641.23) Premature separation of placenta, antepartum condition or complication', '(641.23) Premature separation of placenta, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.9''', NULL, + 'Unspecified antepartum hemorrhage (641.9)', 'Unspecified antepartum hemorrhage (641.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.90) Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.90) Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.90''', NULL, + '(641.90) Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable', '(641.90) Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.91) Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.91) Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.91''', NULL, + '(641.91) Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition', '(641.91) Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.93) Unspecified antepartum hemorrhage, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.93) Unspecified antepartum hemorrhage, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.93''', NULL, + '(641.93) Unspecified antepartum hemorrhage, antepartum condition or complication', '(641.93) Unspecified antepartum hemorrhage, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644''', NULL, + 'Early or threatened labor (644)', 'Early or threatened labor (644)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.2''', NULL, + 'Early onset of delivery (644.2)', 'Early onset of delivery (644.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\(644.20) Early onset of delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\(644.20) Early onset of delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.20''', NULL, + '(644.20) Early onset of delivery, unspecified as to episode of care or not applicable', '(644.20) Early onset of delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\(644.21) Early onset of delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\(644.21) Early onset of delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.21''', NULL, + '(644.21) Early onset of delivery, delivered, with or without mention of antepartum condition', '(644.21) Early onset of delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.1''', NULL, + 'Other threatened labor (644.1)', 'Other threatened labor (644.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\(644.10) Other threatened labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\(644.10) Other threatened labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.10''', NULL, + '(644.10) Other threatened labor, unspecified as to episode of care or not applicable', '(644.10) Other threatened labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\(644.13) Other threatened labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\(644.13) Other threatened labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.13''', NULL, + '(644.13) Other threatened labor, antepartum condition or complication', '(644.13) Other threatened labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.0''', NULL, + 'Threatened premature labor (644.0)', 'Threatened premature labor (644.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\(644.00) Threatened premature labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\(644.00) Threatened premature labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.00''', NULL, + '(644.00) Threatened premature labor, unspecified as to episode of care or not applicable', '(644.00) Threatened premature labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\(644.03) Threatened premature labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\(644.03) Threatened premature labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.03''', NULL, + '(644.03) Threatened premature labor, antepartum condition or complication', '(644.03) Threatened premature labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643''', NULL, + 'Excessive vomiting in pregnancy (643)', 'Excessive vomiting in pregnancy (643)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.1''', NULL, + 'Hyperemesis gravidarum with metabolic disturbance (643.1)', 'Hyperemesis gravidarum with metabolic disturbance (643.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.10) Hyperemesis gravidarum with metabolic disturbance, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.10) Hyperemesis gravidarum with metabolic disturbance, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.10''', NULL, + '(643.10) Hyperemesis gravidarum with metabolic disturbance, unspecified as to episode of care or not applicable', '(643.10) Hyperemesis gravidarum with metabolic disturbance, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.11) Hyperemesis gravidarum with metabolic disturbance, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.11) Hyperemesis gravidarum with metabolic disturbance, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.11''', NULL, + '(643.11) Hyperemesis gravidarum with metabolic disturbance, delivered, with or without mention of antepartum condition', '(643.11) Hyperemesis gravidarum with metabolic disturbance, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.13) Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.13) Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.13''', NULL, + '(643.13) Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication', '(643.13) Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.2''', NULL, + 'Late vomiting of pregnancy (643.2)', 'Late vomiting of pregnancy (643.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.20) Late vomiting of pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.20) Late vomiting of pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.20''', NULL, + '(643.20) Late vomiting of pregnancy, unspecified as to episode of care or not applicable', '(643.20) Late vomiting of pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.21) Late vomiting of pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.21) Late vomiting of pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.21''', NULL, + '(643.21) Late vomiting of pregnancy, delivered, with or without mention of antepartum condition', '(643.21) Late vomiting of pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.23) Late vomiting of pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.23) Late vomiting of pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.23''', NULL, + '(643.23) Late vomiting of pregnancy, antepartum condition or complication', '(643.23) Late vomiting of pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.0''', NULL, + 'Mild hyperemesis gravidarum (643.0)', 'Mild hyperemesis gravidarum (643.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.00) Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.00) Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.00''', NULL, + '(643.00) Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable', '(643.00) Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.01) Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.01) Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.01''', NULL, + '(643.01) Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition', '(643.01) Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.03) Mild hyperemesis gravidarum, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.03) Mild hyperemesis gravidarum, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.03''', NULL, + '(643.03) Mild hyperemesis gravidarum, antepartum condition or complication', '(643.03) Mild hyperemesis gravidarum, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.8''', NULL, + 'Other vomiting complicating pregnancy (643.8)', 'Other vomiting complicating pregnancy (643.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.80) Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.80) Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.80''', NULL, + '(643.80) Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable', '(643.80) Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.81) Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.81) Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.81''', NULL, + '(643.81) Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition', '(643.81) Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.83) Other vomiting complicating pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.83) Other vomiting complicating pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.83''', NULL, + '(643.83) Other vomiting complicating pregnancy, antepartum condition or complication', '(643.83) Other vomiting complicating pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.9''', NULL, + 'Unspecified vomiting of pregnancy (643.9)', 'Unspecified vomiting of pregnancy (643.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.90) Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.90) Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.90''', NULL, + '(643.90) Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable', '(643.90) Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.91) Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.91) Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.91''', NULL, + '(643.91) Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition', '(643.91) Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.93) Unspecified vomiting of pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.93) Unspecified vomiting of pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.93''', NULL, + '(643.93) Unspecified vomiting of pregnancy, antepartum condition or complication', '(643.93) Unspecified vomiting of pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640''', NULL, + 'Hemorrhage in early pregnancy (640)', 'Hemorrhage in early pregnancy (640)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.8''', NULL, + 'Other specified hemorrhage in early pregnancy (640.8)', 'Other specified hemorrhage in early pregnancy (640.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.80) Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.80) Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.80''', NULL, + '(640.80) Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable', '(640.80) Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.81) Other specified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.81) Other specified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.81''', NULL, + '(640.81) Other specified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition', '(640.81) Other specified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.83) Other specified hemorrhage in early pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.83) Other specified hemorrhage in early pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.83''', NULL, + '(640.83) Other specified hemorrhage in early pregnancy, antepartum condition or complication', '(640.83) Other specified hemorrhage in early pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.0''', NULL, + 'Threatened abortion (640.0)', 'Threatened abortion (640.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.00) Threatened abortion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.00) Threatened abortion, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.00''', NULL, + '(640.00) Threatened abortion, unspecified as to episode of care or not applicable', '(640.00) Threatened abortion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.01) Threatened abortion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.01) Threatened abortion, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.01''', NULL, + '(640.01) Threatened abortion, delivered, with or without mention of antepartum condition', '(640.01) Threatened abortion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.03) Threatened abortion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.03) Threatened abortion, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.03''', NULL, + '(640.03) Threatened abortion, antepartum condition or complication', '(640.03) Threatened abortion, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.9''', NULL, + 'Unspecified hemorrhage in early pregnancy (640.9)', 'Unspecified hemorrhage in early pregnancy (640.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.90) Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.90) Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.90''', NULL, + '(640.90) Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable', '(640.90) Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.91) Unspecified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.91) Unspecified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.91''', NULL, + '(640.91) Unspecified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition', '(640.91) Unspecified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.93) Unspecified hemorrhage in early pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.93) Unspecified hemorrhage in early pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.93''', NULL, + '(640.93) Unspecified hemorrhage in early pregnancy, antepartum condition or complication', '(640.93) Unspecified hemorrhage in early pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642''', NULL, + 'Hypertension complicating pregnancy, childbirth, and the puerperium (642)', 'Hypertension complicating pregnancy, childbirth, and the puerperium (642)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.0''', NULL, + 'Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)', 'Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.00) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.00) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.00''', NULL, + '(642.00) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', '(642.00) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.01) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.01) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.01''', NULL, + '(642.01) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', '(642.01) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.02) Benign essential hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.02) Benign essential hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.02''', NULL, + '(642.02) Benign essential hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', '(642.02) Benign essential hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.03) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.03) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.03''', NULL, + '(642.03) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', '(642.03) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.04) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.04) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.04''', NULL, + '(642.04) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication', '(642.04) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.6''', NULL, + 'Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)', 'Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.60) Eclampsia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.60) Eclampsia, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.60''', NULL, + '(642.60) Eclampsia, unspecified as to episode of care or not applicable', '(642.60) Eclampsia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.61) Eclampsia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.61) Eclampsia, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.61''', NULL, + '(642.61) Eclampsia, delivered, with or without mention of antepartum condition', '(642.61) Eclampsia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.62) Eclampsia, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.62) Eclampsia, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.62''', NULL, + '(642.62) Eclampsia, delivered, with mention of postpartum complication', '(642.62) Eclampsia, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.63) Eclampsia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.63) Eclampsia, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.63''', NULL, + '(642.63) Eclampsia, antepartum condition or complication', '(642.63) Eclampsia, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.64) Eclampsia, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.64) Eclampsia, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.64''', NULL, + '(642.64) Eclampsia, postpartum condition or complication', '(642.64) Eclampsia, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.1''', NULL, + 'Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)', 'Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.10) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.10) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.10''', NULL, + '(642.10) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', '(642.10) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.11) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.11) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.11''', NULL, + '(642.11) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', '(642.11) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.12) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.12) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.12''', NULL, + '(642.12) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', '(642.12) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.13) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.13) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.13''', NULL, + '(642.13) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', '(642.13) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.14) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.14) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.14''', NULL, + '(642.14) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication', '(642.14) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.4''', NULL, + 'Mild or unspecified pre-eclampsia (642.4)', 'Mild or unspecified pre-eclampsia (642.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.40) Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.40) Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.40''', NULL, + '(642.40) Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable', '(642.40) Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.41) Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.41) Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.41''', NULL, + '(642.41) Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition', '(642.41) Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.42) Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.42) Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.42''', NULL, + '(642.42) Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication', '(642.42) Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.43) Mild or unspecified pre-eclampsia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.43) Mild or unspecified pre-eclampsia, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.43''', NULL, + '(642.43) Mild or unspecified pre-eclampsia, antepartum condition or complication', '(642.43) Mild or unspecified pre-eclampsia, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.44) Mild or unspecified pre-eclampsia, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.44) Mild or unspecified pre-eclampsia, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.44''', NULL, + '(642.44) Mild or unspecified pre-eclampsia, postpartum condition or complication', '(642.44) Mild or unspecified pre-eclampsia, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.2''', NULL, + 'Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)', 'Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.20) Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.20) Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.20''', NULL, + '(642.20) Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', '(642.20) Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.21) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.21) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.21''', NULL, + '(642.21) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', '(642.21) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.22) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.22) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.22''', NULL, + '(642.22) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', '(642.22) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.23) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.23) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.23''', NULL, + '(642.23) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', '(642.23) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.24) Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.24) Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.24''', NULL, + '(642.24) Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication', '(642.24) Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.7''', NULL, + 'Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)', 'Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.70) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.70) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.70''', NULL, + '(642.70) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, unspecified as to episode of care or not applicable', '(642.70) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.71) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.71) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.71''', NULL, + '(642.71) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition', '(642.71) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.72) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.72) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.72''', NULL, + '(642.72) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication', '(642.72) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.73) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.73) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.73''', NULL, + '(642.73) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication', '(642.73) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.74) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.74) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.74''', NULL, + '(642.74) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication', '(642.74) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.5''', NULL, + 'Severe pre-eclampsia (642.5)', 'Severe pre-eclampsia (642.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.50) Severe pre-eclampsia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.50) Severe pre-eclampsia, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.50''', NULL, + '(642.50) Severe pre-eclampsia, unspecified as to episode of care or not applicable', '(642.50) Severe pre-eclampsia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.51) Severe pre-eclampsia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.51) Severe pre-eclampsia, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.51''', NULL, + '(642.51) Severe pre-eclampsia, delivered, with or without mention of antepartum condition', '(642.51) Severe pre-eclampsia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.52) Severe pre-eclampsia, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.52) Severe pre-eclampsia, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.52''', NULL, + '(642.52) Severe pre-eclampsia, delivered, with mention of postpartum complication', '(642.52) Severe pre-eclampsia, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.53) Severe pre-eclampsia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.53) Severe pre-eclampsia, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.53''', NULL, + '(642.53) Severe pre-eclampsia, antepartum condition or complication', '(642.53) Severe pre-eclampsia, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.54) Severe pre-eclampsia, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.54) Severe pre-eclampsia, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.54''', NULL, + '(642.54) Severe pre-eclampsia, postpartum condition or complication', '(642.54) Severe pre-eclampsia, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.3''', NULL, + 'Transient hypertension of pregnancy (642.3)', 'Transient hypertension of pregnancy (642.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.30) Transient hypertension of pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.30) Transient hypertension of pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.30''', NULL, + '(642.30) Transient hypertension of pregnancy, unspecified as to episode of care or not applicable', '(642.30) Transient hypertension of pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.31) Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.31) Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.31''', NULL, + '(642.31) Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition', '(642.31) Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.32) Transient hypertension of pregnancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.32) Transient hypertension of pregnancy, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.32''', NULL, + '(642.32) Transient hypertension of pregnancy, delivered, with mention of postpartum complication', '(642.32) Transient hypertension of pregnancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.33) Transient hypertension of pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.33) Transient hypertension of pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.33''', NULL, + '(642.33) Transient hypertension of pregnancy, antepartum condition or complication', '(642.33) Transient hypertension of pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.34) Transient hypertension of pregnancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.34) Transient hypertension of pregnancy, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.34''', NULL, + '(642.34) Transient hypertension of pregnancy, postpartum condition or complication', '(642.34) Transient hypertension of pregnancy, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.9''', NULL, + 'Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)', 'Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.90) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.90) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.90''', NULL, + '(642.90) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(642.90) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.91) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.91) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.91''', NULL, + '(642.91) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(642.91) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.92) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.92) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.92''', NULL, + '(642.92) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(642.92) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.93) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.93) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.93''', NULL, + '(642.93) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(642.93) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.94) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.94) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.94''', NULL, + '(642.94) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(642.94) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647''', NULL, + 'Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)', 'Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.1''', NULL, + 'Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)', 'Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.10) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.10) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.10''', NULL, + '(647.10) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(647.10) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.11) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.11) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.11''', NULL, + '(647.11) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(647.11) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.12) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.12) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.12''', NULL, + '(647.12) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(647.12) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.13) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.13) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.13''', NULL, + '(647.13) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(647.13) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.14) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.14) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.14''', NULL, + '(647.14) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(647.14) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.4''', NULL, + 'Malaria complicating pregnancy, childbirth, or the puerperium (647.4)', 'Malaria complicating pregnancy, childbirth, or the puerperium (647.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.40) Malaria in the mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.40) Malaria in the mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.40''', NULL, + '(647.40) Malaria in the mother, unspecified as to episode of care or not applicable', '(647.40) Malaria in the mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.41) Malaria in the mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.41) Malaria in the mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.41''', NULL, + '(647.41) Malaria in the mother, delivered, with or without mention of antepartum condition', '(647.41) Malaria in the mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.42) Malaria in the mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.42) Malaria in the mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.42''', NULL, + '(647.42) Malaria in the mother, delivered, with mention of postpartum complication', '(647.42) Malaria in the mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.43) Malaria in the mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.43) Malaria in the mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.43''', NULL, + '(647.43) Malaria in the mother, antepartum condition or complication', '(647.43) Malaria in the mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.44) Malaria in the mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.44) Malaria in the mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.44''', NULL, + '(647.44) Malaria in the mother, postpartum condition or complication', '(647.44) Malaria in the mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.8''', NULL, + 'Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)', 'Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.80) Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.80) Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.80''', NULL, + '(647.80) Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable', '(647.80) Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.81) Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.81) Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.81''', NULL, + '(647.81) Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition', '(647.81) Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.82) Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.82) Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.82''', NULL, + '(647.82) Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication', '(647.82) Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.83) Other specified infectious and parasitic diseases of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.83) Other specified infectious and parasitic diseases of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.83''', NULL, + '(647.83) Other specified infectious and parasitic diseases of mother, antepartum condition or complication', '(647.83) Other specified infectious and parasitic diseases of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.84) Other specified infectious and parasitic diseases of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.84) Other specified infectious and parasitic diseases of mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.84''', NULL, + '(647.84) Other specified infectious and parasitic diseases of mother, postpartum condition or complication', '(647.84) Other specified infectious and parasitic diseases of mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.2''', NULL, + 'Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)', 'Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.20) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.20) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.20''', NULL, + '(647.20) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(647.20) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.21) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.21) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.21''', NULL, + '(647.21) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(647.21) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.22) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.22) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.22''', NULL, + '(647.22) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(647.22) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.23) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.23) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.23''', NULL, + '(647.23) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(647.23) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.24) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.24) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.24''', NULL, + '(647.24) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication', '(647.24) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.6''', NULL, + 'Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)', 'Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.60) Other viral diseases in the mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.60) Other viral diseases in the mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.60''', NULL, + '(647.60) Other viral diseases in the mother, unspecified as to episode of care or not applicable', '(647.60) Other viral diseases in the mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.61) Other viral diseases in the mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.61) Other viral diseases in the mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.61''', NULL, + '(647.61) Other viral diseases in the mother, delivered, with or without mention of antepartum condition', '(647.61) Other viral diseases in the mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.62) Other viral diseases in the mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.62) Other viral diseases in the mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.62''', NULL, + '(647.62) Other viral diseases in the mother, delivered, with mention of postpartum complication', '(647.62) Other viral diseases in the mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.63) Other viral diseases in the mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.63) Other viral diseases in the mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.63''', NULL, + '(647.63) Other viral diseases in the mother, antepartum condition or complication', '(647.63) Other viral diseases in the mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.64) Other viral diseases in the mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.64) Other viral diseases in the mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.64''', NULL, + '(647.64) Other viral diseases in the mother, postpartum condition or complication', '(647.64) Other viral diseases in the mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.5''', NULL, + 'Rubella complicating pregnancy, childbirth, or the puerperium (647.5)', 'Rubella complicating pregnancy, childbirth, or the puerperium (647.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.50) Rubella in the mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.50) Rubella in the mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.50''', NULL, + '(647.50) Rubella in the mother, unspecified as to episode of care or not applicable', '(647.50) Rubella in the mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.51) Rubella in the mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.51) Rubella in the mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.51''', NULL, + '(647.51) Rubella in the mother, delivered, with or without mention of antepartum condition', '(647.51) Rubella in the mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.52) Rubella in the mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.52) Rubella in the mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.52''', NULL, + '(647.52) Rubella in the mother, delivered, with mention of postpartum complication', '(647.52) Rubella in the mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.53) Rubella in the mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.53) Rubella in the mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.53''', NULL, + '(647.53) Rubella in the mother, antepartum condition or complication', '(647.53) Rubella in the mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.54) Rubella in the mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.54) Rubella in the mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.54''', NULL, + '(647.54) Rubella in the mother, postpartum condition or complication', '(647.54) Rubella in the mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.0''', NULL, + 'Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)', 'Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.00) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.00) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.00''', NULL, + '(647.00) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(647.00) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.01) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.01) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.01''', NULL, + '(647.01) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(647.01) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.02) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.02) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.02''', NULL, + '(647.02) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(647.02) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.03) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.03) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.03''', NULL, + '(647.03) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(647.03) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.04) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.04) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.04''', NULL, + '(647.04) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(647.04) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.3''', NULL, + 'Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)', 'Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.30) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.30) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.30''', NULL, + '(647.30) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(647.30) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.31) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.31) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.31''', NULL, + '(647.31) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(647.31) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.32) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.32) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.32''', NULL, + '(647.32) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(647.32) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.33) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.33) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.33''', NULL, + '(647.33) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(647.33) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.34) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.34) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.34''', NULL, + '(647.34) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication', '(647.34) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.9''', NULL, + 'Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)', 'Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.90) Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.90) Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.90''', NULL, + '(647.90) Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable', '(647.90) Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.91) Unspecified infection or infestation of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.91) Unspecified infection or infestation of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.91''', NULL, + '(647.91) Unspecified infection or infestation of mother, delivered, with or without mention of antepartum condition', '(647.91) Unspecified infection or infestation of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.92) Unspecified infection or infestation of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.92) Unspecified infection or infestation of mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.92''', NULL, + '(647.92) Unspecified infection or infestation of mother, delivered, with mention of postpartum complication', '(647.92) Unspecified infection or infestation of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.93) Unspecified infection or infestation of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.93) Unspecified infection or infestation of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.93''', NULL, + '(647.93) Unspecified infection or infestation of mother, antepartum condition or complication', '(647.93) Unspecified infection or infestation of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.94) Unspecified infection or infestation of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.94) Unspecified infection or infestation of mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.94''', NULL, + '(647.94) Unspecified infection or infestation of mother, postpartum condition or complication', '(647.94) Unspecified infection or infestation of mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645''', NULL, + 'Late pregnancy (645)', 'Late pregnancy (645)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.1''', NULL, + 'Post term pregnancy (645.1)', 'Post term pregnancy (645.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.10) Post term pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.10) Post term pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.10''', NULL, + '(645.10) Post term pregnancy, unspecified as to episode of care or not applicable', '(645.10) Post term pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.11) Post term pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.11) Post term pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.11''', NULL, + '(645.11) Post term pregnancy, delivered, with or without mention of antepartum condition', '(645.11) Post term pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.13) Post term pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.13) Post term pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.13''', NULL, + '(645.13) Post term pregnancy, antepartum condition or complication', '(645.13) Post term pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.2''', NULL, + 'Prolonged pregnancy (645.2)', 'Prolonged pregnancy (645.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.20) Prolonged pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.20) Prolonged pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.20''', NULL, + '(645.20) Prolonged pregnancy, unspecified as to episode of care or not applicable', '(645.20) Prolonged pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.21) Prolonged pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.21) Prolonged pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.21''', NULL, + '(645.21) Prolonged pregnancy, delivered, with or without mention of antepartum condition', '(645.21) Prolonged pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.23) Prolonged pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.23) Prolonged pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.23''', NULL, + '(645.23) Prolonged pregnancy, antepartum condition or complication', '(645.23) Prolonged pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646''', NULL, + 'Other complications of pregnancy, not elsewhere classified (646)', 'Other complications of pregnancy, not elsewhere classified (646)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.5''', NULL, + 'Asymptomatic bacteriuria in pregnancy (646.5)', 'Asymptomatic bacteriuria in pregnancy (646.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.50) Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.50) Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.50''', NULL, + '(646.50) Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable', '(646.50) Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.51) Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.51) Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.51''', NULL, + '(646.51) Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition', '(646.51) Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.52) Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.52) Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.52''', NULL, + '(646.52) Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication', '(646.52) Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.53) Asymptomatic bacteriuria in pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.53) Asymptomatic bacteriuria in pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.53''', NULL, + '(646.53) Asymptomatic bacteriuria in pregnancy, antepartum condition or complication', '(646.53) Asymptomatic bacteriuria in pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.54) Asymptomatic bacteriuria in pregnancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.54) Asymptomatic bacteriuria in pregnancy, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.54''', NULL, + '(646.54) Asymptomatic bacteriuria in pregnancy, postpartum condition or complication', '(646.54) Asymptomatic bacteriuria in pregnancy, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.1''', NULL, + 'Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)', 'Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.10) Edema or excessive weight gain in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.10) Edema or excessive weight gain in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.10''', NULL, + '(646.10) Edema or excessive weight gain in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable', '(646.10) Edema or excessive weight gain in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.11) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.11) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.11''', NULL, + '(646.11) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum complication', '(646.11) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.12) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.12) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.12''', NULL, + '(646.12) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication', '(646.12) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.13) Edema or excessive weight gain in pregnancy, without mention of hypertension, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.13) Edema or excessive weight gain in pregnancy, without mention of hypertension, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.13''', NULL, + '(646.13) Edema or excessive weight gain in pregnancy, without mention of hypertension, antepartum condition or complication', '(646.13) Edema or excessive weight gain in pregnancy, without mention of hypertension, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.14) Edema or excessive weight gain in pregnancy, without mention of hypertension, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.14) Edema or excessive weight gain in pregnancy, without mention of hypertension, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.14''', NULL, + '(646.14) Edema or excessive weight gain in pregnancy, without mention of hypertension, postpartum condition or complication', '(646.14) Edema or excessive weight gain in pregnancy, without mention of hypertension, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.6''', NULL, + 'Infections of genitourinary tract in pregnancy (646.6)', 'Infections of genitourinary tract in pregnancy (646.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.60) Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.60) Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.60''', NULL, + '(646.60) Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable', '(646.60) Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.61) Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.61) Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.61''', NULL, + '(646.61) Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition', '(646.61) Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.62) Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.62) Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.62''', NULL, + '(646.62) Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication', '(646.62) Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.63) Infections of genitourinary tract in pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.63) Infections of genitourinary tract in pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.63''', NULL, + '(646.63) Infections of genitourinary tract in pregnancy, antepartum condition or complication', '(646.63) Infections of genitourinary tract in pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.64) Infections of genitourinary tract in pregnancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.64) Infections of genitourinary tract in pregnancy, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.64''', NULL, + '(646.64) Infections of genitourinary tract in pregnancy, postpartum condition or complication', '(646.64) Infections of genitourinary tract in pregnancy, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.7''', NULL, + 'Liver and biliary tract disorders in pregnancy (646.7)', 'Liver and biliary tract disorders in pregnancy (646.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.70) Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.70) Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.70''', NULL, + '(646.70) Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable', '(646.70) Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.71) Liver and biliary tract disorders in pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.71) Liver and biliary tract disorders in pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.71''', NULL, + '(646.71) Liver and biliary tract disorders in pregnancy, delivered, with or without mention of antepartum condition', '(646.71) Liver and biliary tract disorders in pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.73) Liver and biliary tract disorders in pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.73) Liver and biliary tract disorders in pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.73''', NULL, + '(646.73) Liver and biliary tract disorders in pregnancy, antepartum condition or complication', '(646.73) Liver and biliary tract disorders in pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.8''', NULL, + 'Other specified complications of pregnancy (646.8)', 'Other specified complications of pregnancy (646.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.80) Other specified complications of pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.80) Other specified complications of pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.80''', NULL, + '(646.80) Other specified complications of pregnancy, unspecified as to episode of care or not applicable', '(646.80) Other specified complications of pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.81) Other specified complications of pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.81) Other specified complications of pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.81''', NULL, + '(646.81) Other specified complications of pregnancy, delivered, with or without mention of antepartum condition', '(646.81) Other specified complications of pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.82) Other specified complications of pregnancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.82) Other specified complications of pregnancy, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.82''', NULL, + '(646.82) Other specified complications of pregnancy, delivered, with mention of postpartum complication', '(646.82) Other specified complications of pregnancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.83) Other specified complications of pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.83) Other specified complications of pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.83''', NULL, + '(646.83) Other specified complications of pregnancy, antepartum condition or complication', '(646.83) Other specified complications of pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.84) Other specified complications of pregnancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.84) Other specified complications of pregnancy, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.84''', NULL, + '(646.84) Other specified complications of pregnancy, postpartum condition or complication', '(646.84) Other specified complications of pregnancy, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.0''', NULL, + 'Papyraceous fetus (646.0)', 'Papyraceous fetus (646.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.00) Papyraceous fetus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.00) Papyraceous fetus, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.00''', NULL, + '(646.00) Papyraceous fetus, unspecified as to episode of care or not applicable', '(646.00) Papyraceous fetus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.01) Papyraceous fetus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.01) Papyraceous fetus, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.01''', NULL, + '(646.01) Papyraceous fetus, delivered, with or without mention of antepartum condition', '(646.01) Papyraceous fetus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.03) Papyraceous fetus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.03) Papyraceous fetus, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.03''', NULL, + '(646.03) Papyraceous fetus, antepartum condition or complication', '(646.03) Papyraceous fetus, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.4''', NULL, + 'Peripheral neuritis in pregnancy (646.4)', 'Peripheral neuritis in pregnancy (646.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.40) Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.40) Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.40''', NULL, + '(646.40) Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable', '(646.40) Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.41) Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.41) Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.41''', NULL, + '(646.41) Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition', '(646.41) Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.42) Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.42) Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.42''', NULL, + '(646.42) Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication', '(646.42) Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.43) Peripheral neuritis in pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.43) Peripheral neuritis in pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.43''', NULL, + '(646.43) Peripheral neuritis in pregnancy, antepartum condition or complication', '(646.43) Peripheral neuritis in pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.44) Peripheral neuritis in pregnancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.44) Peripheral neuritis in pregnancy, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.44''', NULL, + '(646.44) Peripheral neuritis in pregnancy, postpartum condition or complication', '(646.44) Peripheral neuritis in pregnancy, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.3''', NULL, + 'Recurrent pregnancy loss (646.3)', 'Recurrent pregnancy loss (646.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.30) Recurrent pregnancy loss, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.30) Recurrent pregnancy loss, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.30''', NULL, + '(646.30) Recurrent pregnancy loss, unspecified as to episode of care or not applicable', '(646.30) Recurrent pregnancy loss, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.31) Recurrent pregnancy loss, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.31) Recurrent pregnancy loss, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.31''', NULL, + '(646.31) Recurrent pregnancy loss, delivered, with or without mention of antepartum condition', '(646.31) Recurrent pregnancy loss, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.33) Recurrent pregnancy loss, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.33) Recurrent pregnancy loss, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.33''', NULL, + '(646.33) Recurrent pregnancy loss, antepartum condition or complication', '(646.33) Recurrent pregnancy loss, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.9''', NULL, + 'Unspecified complication of pregnancy (646.9)', 'Unspecified complication of pregnancy (646.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.90) Unspecified complication of pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.90) Unspecified complication of pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.90''', NULL, + '(646.90) Unspecified complication of pregnancy, unspecified as to episode of care or not applicable', '(646.90) Unspecified complication of pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.91) Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.91) Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.91''', NULL, + '(646.91) Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition', '(646.91) Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.93) Unspecified complication of pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.93) Unspecified complication of pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.93''', NULL, + '(646.93) Unspecified complication of pregnancy, antepartum condition or complication', '(646.93) Unspecified complication of pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.2''', NULL, + 'Unspecified renal disease in pregnancy, without mention of hypertension (646.2)', 'Unspecified renal disease in pregnancy, without mention of hypertension (646.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.20) Unspecified renal disease in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.20) Unspecified renal disease in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.20''', NULL, + '(646.20) Unspecified renal disease in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable', '(646.20) Unspecified renal disease in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.21) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.21) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.21''', NULL, + '(646.21) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum condition', '(646.21) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.22) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.22) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.22''', NULL, + '(646.22) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication', '(646.22) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.23) Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.23) Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.23''', NULL, + '(646.23) Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication', '(646.23) Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.24) Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.24) Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.24''', NULL, + '(646.24) Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication', '(646.24) Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649''', NULL, + 'Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)', 'Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.2''', NULL, + 'Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)', 'Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.20) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.20) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.20''', NULL, + '(649.20) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(649.20) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.21) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.21) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.21''', NULL, + '(649.21) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(649.21) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.22) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.22) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.22''', NULL, + '(649.22) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(649.22) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.23) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.23) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.23''', NULL, + '(649.23) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(649.23) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.24) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.24) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.24''', NULL, + '(649.24) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(649.24) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.7''', NULL, + 'Cervical shortening (649.7)', 'Cervical shortening (649.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.70) Cervical shortening, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.70) Cervical shortening, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.70''', NULL, + '(649.70) Cervical shortening, unspecified as to episode of care or not applicable', '(649.70) Cervical shortening, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.71) Cervical shortening, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.71) Cervical shortening, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.71''', NULL, + '(649.71) Cervical shortening, delivered, with or without mention of antepartum condition', '(649.71) Cervical shortening, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.73) Cervical shortening, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.73) Cervical shortening, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.73''', NULL, + '(649.73) Cervical shortening, antepartum condition or complication', '(649.73) Cervical shortening, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.3''', NULL, + 'Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)', 'Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.30) Coagulation defects complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.30) Coagulation defects complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.30''', NULL, + '(649.30) Coagulation defects complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(649.30) Coagulation defects complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.31) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.31) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.31''', NULL, + '(649.31) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(649.31) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.32) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.32) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.32''', NULL, + '(649.32) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(649.32) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.33) Coagulation defects complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.33) Coagulation defects complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.33''', NULL, + '(649.33) Coagulation defects complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(649.33) Coagulation defects complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.34) Coagulation defects complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.34) Coagulation defects complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.34''', NULL, + '(649.34) Coagulation defects complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(649.34) Coagulation defects complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.4''', NULL, + 'Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)', 'Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.40) Epilepsy complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.40) Epilepsy complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.40''', NULL, + '(649.40) Epilepsy complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(649.40) Epilepsy complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.41) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.41) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.41''', NULL, + '(649.41) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(649.41) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.42) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.42) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.42''', NULL, + '(649.42) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(649.42) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.43) Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.43) Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.43''', NULL, + '(649.43) Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(649.43) Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.44) Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.44) Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.44''', NULL, + '(649.44) Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(649.44) Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.1''', NULL, + 'Obesity complicating pregnancy, childbirth, or the puerperium (649.1)', 'Obesity complicating pregnancy, childbirth, or the puerperium (649.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.10) Obesity complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.10) Obesity complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.10''', NULL, + '(649.10) Obesity complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(649.10) Obesity complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.11) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.11) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.11''', NULL, + '(649.11) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(649.11) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.12) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.12) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.12''', NULL, + '(649.12) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(649.12) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.13) Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.13) Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.13''', NULL, + '(649.13) Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(649.13) Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.14) Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.14) Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.14''', NULL, + '(649.14) Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(649.14) Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8''', NULL, + 'Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)', 'Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\(649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\(649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned''', NULL, + '(649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition', '(649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.5''', NULL, + 'Spotting complicating pregnancy (649.5)', 'Spotting complicating pregnancy (649.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.50) Spotting complicating pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.50) Spotting complicating pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.50''', NULL, + '(649.50) Spotting complicating pregnancy, unspecified as to episode of care or not applicable', '(649.50) Spotting complicating pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.51) Spotting complicating pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.51) Spotting complicating pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.51''', NULL, + '(649.51) Spotting complicating pregnancy, delivered, with or without mention of antepartum condition', '(649.51) Spotting complicating pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.53) Spotting complicating pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.53) Spotting complicating pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.53''', NULL, + '(649.53) Spotting complicating pregnancy, antepartum condition or complication', '(649.53) Spotting complicating pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.0''', NULL, + 'Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)', 'Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.00) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.00) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.00''', NULL, + '(649.00) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(649.00) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.01) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.01) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.01''', NULL, + '(649.01) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(649.01) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.02) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.02) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.02''', NULL, + '(649.02) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(649.02) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.03) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.03) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.03''', NULL, + '(649.03) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(649.03) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.04) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.04) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.04''', NULL, + '(649.04) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(649.04) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.6''', NULL, + 'Uterine size date discrepancy (649.6)', 'Uterine size date discrepancy (649.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.60) Uterine size date discrepancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.60) Uterine size date discrepancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.60''', NULL, + '(649.60) Uterine size date discrepancy, unspecified as to episode of care or not applicable', '(649.60) Uterine size date discrepancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.61) Uterine size date discrepancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.61) Uterine size date discrepancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.61''', NULL, + '(649.61) Uterine size date discrepancy, delivered, with or without mention of antepartum condition', '(649.61) Uterine size date discrepancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.62) Uterine size date discrepancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.62) Uterine size date discrepancy, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.62''', NULL, + '(649.62) Uterine size date discrepancy, delivered, with mention of postpartum complication', '(649.62) Uterine size date discrepancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.63) Uterine size date discrepancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.63) Uterine size date discrepancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.63''', NULL, + '(649.63) Uterine size date discrepancy, antepartum condition or complication', '(649.63) Uterine size date discrepancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.64) Uterine size date discrepancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.64) Uterine size date discrepancy, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.64''', NULL, + '(649.64) Uterine size date discrepancy, postpartum condition or complication', '(649.64) Uterine size date discrepancy, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648''', NULL, + 'Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)', 'Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.8''', NULL, + 'Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)', 'Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.80) Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.80) Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.80''', NULL, + '(648.80) Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable', '(648.80) Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.81) Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.81) Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.81''', NULL, + '(648.81) Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition', '(648.81) Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.82) Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.82) Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.82''', NULL, + '(648.82) Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication', '(648.82) Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.83) Abnormal glucose tolerance of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.83) Abnormal glucose tolerance of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.83''', NULL, + '(648.83) Abnormal glucose tolerance of mother, antepartum condition or complication', '(648.83) Abnormal glucose tolerance of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.84) Abnormal glucose tolerance of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.84) Abnormal glucose tolerance of mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.84''', NULL, + '(648.84) Abnormal glucose tolerance of mother, postpartum condition or complication', '(648.84) Abnormal glucose tolerance of mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.2''', NULL, + 'Anemia complicating pregnancy, childbirth, or the puerperium (648.2)', 'Anemia complicating pregnancy, childbirth, or the puerperium (648.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.20) Anemia of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.20) Anemia of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.20''', NULL, + '(648.20) Anemia of mother, unspecified as to episode of care or not applicable', '(648.20) Anemia of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.21) Anemia of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.21) Anemia of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.21''', NULL, + '(648.21) Anemia of mother, delivered, with or without mention of antepartum condition', '(648.21) Anemia of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.22) Anemia of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.22) Anemia of mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.22''', NULL, + '(648.22) Anemia of mother, delivered, with mention of postpartum complication', '(648.22) Anemia of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.23) Anemia of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.23) Anemia of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.23''', NULL, + '(648.23) Anemia of mother, antepartum condition or complication', '(648.23) Anemia of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.24) Anemia of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.24) Anemia of mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.24''', NULL, + '(648.24) Anemia of mother, postpartum condition or complication', '(648.24) Anemia of mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.7''', NULL, + 'Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)', 'Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.70) Bone and joint disorders of back, pelvis, and lower limbs of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.70) Bone and joint disorders of back, pelvis, and lower limbs of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.70''', NULL, + '(648.70) Bone and joint disorders of back, pelvis, and lower limbs of mother, unspecified as to episode of care or not applicable', '(648.70) Bone and joint disorders of back, pelvis, and lower limbs of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.71) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.71) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.71''', NULL, + '(648.71) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with or without mention of antepartum condition', '(648.71) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.72) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.72) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.72''', NULL, + '(648.72) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with mention of postpartum complication', '(648.72) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.73) Bone and joint disorders of back, pelvis, and lower limbs of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.73) Bone and joint disorders of back, pelvis, and lower limbs of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.73''', NULL, + '(648.73) Bone and joint disorders of back, pelvis, and lower limbs of mother, antepartum condition or complication', '(648.73) Bone and joint disorders of back, pelvis, and lower limbs of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.74) Bone and joint disorders of back, pelvis, and lower limbs of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.74) Bone and joint disorders of back, pelvis, and lower limbs of mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.74''', NULL, + '(648.74) Bone and joint disorders of back, pelvis, and lower limbs of mother, postpartum condition or complication', '(648.74) Bone and joint disorders of back, pelvis, and lower limbs of mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.5''', NULL, + 'Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)', 'Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.50) Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.50) Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.50''', NULL, + '(648.50) Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable', '(648.50) Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.51) Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.51) Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.51''', NULL, + '(648.51) Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition', '(648.51) Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.52) Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.52) Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.52''', NULL, + '(648.52) Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication', '(648.52) Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.53) Congenital cardiovascular disorders of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.53) Congenital cardiovascular disorders of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.53''', NULL, + '(648.53) Congenital cardiovascular disorders of mother, antepartum condition or complication', '(648.53) Congenital cardiovascular disorders of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.54) Congenital cardiovascular disorders of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.54) Congenital cardiovascular disorders of mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.54''', NULL, + '(648.54) Congenital cardiovascular disorders of mother, postpartum condition or complication', '(648.54) Congenital cardiovascular disorders of mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.0''', NULL, + 'Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)', 'Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.00) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.00) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.00''', NULL, + '(648.00) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(648.00) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.01) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.01) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.01''', NULL, + '(648.01) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(648.01) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.02) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.02) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.02''', NULL, + '(648.02) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(648.02) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.03) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.03) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.03''', NULL, + '(648.03) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(648.03) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.04) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.04) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.04''', NULL, + '(648.04) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(648.04) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.3''', NULL, + 'Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)', 'Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.30) Drug dependence of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.30) Drug dependence of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.30''', NULL, + '(648.30) Drug dependence of mother, unspecified as to episode of care or not applicable', '(648.30) Drug dependence of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.31) Drug dependence of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.31) Drug dependence of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.31''', NULL, + '(648.31) Drug dependence of mother, delivered, with or without mention of antepartum condition', '(648.31) Drug dependence of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.32) Drug dependence of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.32) Drug dependence of mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.32''', NULL, + '(648.32) Drug dependence of mother, delivered, with mention of postpartum complication', '(648.32) Drug dependence of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.33) Drug dependence of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.33) Drug dependence of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.33''', NULL, + '(648.33) Drug dependence of mother, antepartum condition or complication', '(648.33) Drug dependence of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.34) Drug dependence of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.34) Drug dependence of mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.34''', NULL, + '(648.34) Drug dependence of mother, postpartum condition or complication', '(648.34) Drug dependence of mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.4''', NULL, + 'Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)', 'Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.40) Mental disorders of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.40) Mental disorders of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.40''', NULL, + '(648.40) Mental disorders of mother, unspecified as to episode of care or not applicable', '(648.40) Mental disorders of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.41) Mental disorders of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.41) Mental disorders of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.41''', NULL, + '(648.41) Mental disorders of mother, delivered, with or without mention of antepartum condition', '(648.41) Mental disorders of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.42) Mental disorders of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.42) Mental disorders of mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.42''', NULL, + '(648.42) Mental disorders of mother, delivered, with mention of postpartum complication', '(648.42) Mental disorders of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.43) Mental disorders of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.43) Mental disorders of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.43''', NULL, + '(648.43) Mental disorders of mother, antepartum condition or complication', '(648.43) Mental disorders of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.44) Mental disorders of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.44) Mental disorders of mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.44''', NULL, + '(648.44) Mental disorders of mother, postpartum condition or complication', '(648.44) Mental disorders of mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.6''', NULL, + 'Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)', 'Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.60) Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.60) Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.60''', NULL, + '(648.60) Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable', '(648.60) Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.61) Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.61) Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.61''', NULL, + '(648.61) Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition', '(648.61) Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.62) Other cardiovascular diseases of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.62) Other cardiovascular diseases of mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.62''', NULL, + '(648.62) Other cardiovascular diseases of mother, delivered, with mention of postpartum complication', '(648.62) Other cardiovascular diseases of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.63) Other cardiovascular diseases of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.63) Other cardiovascular diseases of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.63''', NULL, + '(648.63) Other cardiovascular diseases of mother, antepartum condition or complication', '(648.63) Other cardiovascular diseases of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.64) Other cardiovascular diseases of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.64) Other cardiovascular diseases of mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.64''', NULL, + '(648.64) Other cardiovascular diseases of mother, postpartum condition or complication', '(648.64) Other cardiovascular diseases of mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.9''', NULL, + 'Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)', 'Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.90) Other current conditions classifiable elsewhere of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.90) Other current conditions classifiable elsewhere of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.90''', NULL, + '(648.90) Other current conditions classifiable elsewhere of mother, unspecified as to episode of care or not applicable', '(648.90) Other current conditions classifiable elsewhere of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.91) Other current conditions classifiable elsewhere of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.91) Other current conditions classifiable elsewhere of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.91''', NULL, + '(648.91) Other current conditions classifiable elsewhere of mother, delivered, with or without mention of antepartum condition', '(648.91) Other current conditions classifiable elsewhere of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.92) Other current conditions classifiable elsewhere of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.92) Other current conditions classifiable elsewhere of mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.92''', NULL, + '(648.92) Other current conditions classifiable elsewhere of mother, delivered, with mention of postpartum complication', '(648.92) Other current conditions classifiable elsewhere of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.93) Other current conditions classifiable elsewhere of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.93) Other current conditions classifiable elsewhere of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.93''', NULL, + '(648.93) Other current conditions classifiable elsewhere of mother, antepartum condition or complication', '(648.93) Other current conditions classifiable elsewhere of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.94) Other current conditions classifiable elsewhere of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.94) Other current conditions classifiable elsewhere of mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.94''', NULL, + '(648.94) Other current conditions classifiable elsewhere of mother, postpartum condition or complication', '(648.94) Other current conditions classifiable elsewhere of mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.1''', NULL, + 'Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)', 'Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.10) Thyroid dysfunction of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.10) Thyroid dysfunction of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.10''', NULL, + '(648.10) Thyroid dysfunction of mother, unspecified as to episode of care or not applicable', '(648.10) Thyroid dysfunction of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.11) Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.11) Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.11''', NULL, + '(648.11) Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition', '(648.11) Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.12) Thyroid dysfunction of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.12) Thyroid dysfunction of mother, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.12''', NULL, + '(648.12) Thyroid dysfunction of mother, delivered, with mention of postpartum complication', '(648.12) Thyroid dysfunction of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.13) Thyroid dysfunction of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.13) Thyroid dysfunction of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.13''', NULL, + '(648.13) Thyroid dysfunction of mother, antepartum condition or complication', '(648.13) Thyroid dysfunction of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.14) Thyroid dysfunction of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.14) Thyroid dysfunction of mother, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.14''', NULL, + '(648.14) Thyroid dysfunction of mother, postpartum condition or complication', '(648.14) Thyroid dysfunction of mother, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''660'' AND ''669.99''', NULL, + 'Complications occurring mainly in the course of labor and delivery (660-669.99)', 'Complications occurring mainly in the course of labor and delivery (660-669.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661''', NULL, + 'Abnormality of forces of labor (661)', 'Abnormality of forces of labor (661)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.4''', NULL, + 'Hypertonic, incoordinate, or prolonged uterine contractions (661.4)', 'Hypertonic, incoordinate, or prolonged uterine contractions (661.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.40) Hypertonic, incoordinate, or prolonged uterine contractions, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.40) Hypertonic, incoordinate, or prolonged uterine contractions, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.40''', NULL, + '(661.40) Hypertonic, incoordinate, or prolonged uterine contractions, unspecified as to episode of care or not applicable', '(661.40) Hypertonic, incoordinate, or prolonged uterine contractions, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.41) Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.41) Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.41''', NULL, + '(661.41) Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition', '(661.41) Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.43) Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.43) Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.43''', NULL, + '(661.43) Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication', '(661.43) Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.2''', NULL, + 'Other and unspecified uterine inertia (661.2)', 'Other and unspecified uterine inertia (661.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.20) Other and unspecified uterine inertia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.20) Other and unspecified uterine inertia, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.20''', NULL, + '(661.20) Other and unspecified uterine inertia, unspecified as to episode of care or not applicable', '(661.20) Other and unspecified uterine inertia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.21) Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.21) Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.21''', NULL, + '(661.21) Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition', '(661.21) Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.23) Other and unspecified uterine inertia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.23) Other and unspecified uterine inertia, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.23''', NULL, + '(661.23) Other and unspecified uterine inertia, antepartum condition or complication', '(661.23) Other and unspecified uterine inertia, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.3''', NULL, + 'Precipitate labor (661.3)', 'Precipitate labor (661.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.30) Precipitate labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.30) Precipitate labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.30''', NULL, + '(661.30) Precipitate labor, unspecified as to episode of care or not applicable', '(661.30) Precipitate labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.31) Precipitate labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.31) Precipitate labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.31''', NULL, + '(661.31) Precipitate labor, delivered, with or without mention of antepartum condition', '(661.31) Precipitate labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.33) Precipitate labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.33) Precipitate labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.33''', NULL, + '(661.33) Precipitate labor, antepartum condition or complication', '(661.33) Precipitate labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.0''', NULL, + 'Primary uterine inertia (661.0)', 'Primary uterine inertia (661.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.00) Primary uterine inertia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.00) Primary uterine inertia, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.00''', NULL, + '(661.00) Primary uterine inertia, unspecified as to episode of care or not applicable', '(661.00) Primary uterine inertia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.01) Primary uterine inertia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.01) Primary uterine inertia, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.01''', NULL, + '(661.01) Primary uterine inertia, delivered, with or without mention of antepartum condition', '(661.01) Primary uterine inertia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.03) Primary uterine inertia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.03) Primary uterine inertia, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.03''', NULL, + '(661.03) Primary uterine inertia, antepartum condition or complication', '(661.03) Primary uterine inertia, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.1''', NULL, + 'Secondary uterine inertia (661.1)', 'Secondary uterine inertia (661.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.10) Secondary uterine inertia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.10) Secondary uterine inertia, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.10''', NULL, + '(661.10) Secondary uterine inertia, unspecified as to episode of care or not applicable', '(661.10) Secondary uterine inertia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.11) Secondary uterine inertia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.11) Secondary uterine inertia, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.11''', NULL, + '(661.11) Secondary uterine inertia, delivered, with or without mention of antepartum condition', '(661.11) Secondary uterine inertia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.13) Secondary uterine inertia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.13) Secondary uterine inertia, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.13''', NULL, + '(661.13) Secondary uterine inertia, antepartum condition or complication', '(661.13) Secondary uterine inertia, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.9''', NULL, + 'Unspecified abnormality of labor (661.9)', 'Unspecified abnormality of labor (661.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.90) Unspecified abnormality of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.90) Unspecified abnormality of labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.90''', NULL, + '(661.90) Unspecified abnormality of labor, unspecified as to episode of care or not applicable', '(661.90) Unspecified abnormality of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.91) Unspecified abnormality of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.91) Unspecified abnormality of labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.91''', NULL, + '(661.91) Unspecified abnormality of labor, delivered, with or without mention of antepartum condition', '(661.91) Unspecified abnormality of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.93) Unspecified abnormality of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.93) Unspecified abnormality of labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.93''', NULL, + '(661.93) Unspecified abnormality of labor, antepartum condition or complication', '(661.93) Unspecified abnormality of labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668''', NULL, + 'Complications of the administration of anesthetic or other sedation in labor and delivery (668)', 'Complications of the administration of anesthetic or other sedation in labor and delivery (668)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.1''', NULL, + 'Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)', 'Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.10) Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.10) Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.10''', NULL, + '(668.10) Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', '(668.10) Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.11) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.11) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.11''', NULL, + '(668.11) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', '(668.11) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.12) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.12) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.12''', NULL, + '(668.12) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', '(668.12) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.13) Cardiac complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.13) Cardiac complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.13''', NULL, + '(668.13) Cardiac complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', '(668.13) Cardiac complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.14) Cardiac complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.14) Cardiac complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.14''', NULL, + '(668.14) Cardiac complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', '(668.14) Cardiac complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.2''', NULL, + 'Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)', 'Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.20) Central nervous system complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.20) Central nervous system complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.20''', NULL, + '(668.20) Central nervous system complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', '(668.20) Central nervous system complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.21) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.21) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.21''', NULL, + '(668.21) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', '(668.21) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.22) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.22) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.22''', NULL, + '(668.22) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', '(668.22) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.23) Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.23) Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.23''', NULL, + '(668.23) Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', '(668.23) Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.24) Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.24) Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.24''', NULL, + '(668.24) Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', '(668.24) Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.8''', NULL, + 'Other complications of anesthesia or other sedation in labor and delivery (668.8)', 'Other complications of anesthesia or other sedation in labor and delivery (668.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.80) Other complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.80) Other complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.80''', NULL, + '(668.80) Other complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', '(668.80) Other complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.81) Other complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.81) Other complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.81''', NULL, + '(668.81) Other complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', '(668.81) Other complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.82) Other complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.82) Other complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.82''', NULL, + '(668.82) Other complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', '(668.82) Other complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.83) Other complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.83) Other complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.83''', NULL, + '(668.83) Other complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', '(668.83) Other complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.84) Other complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.84) Other complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.84''', NULL, + '(668.84) Other complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', '(668.84) Other complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.0''', NULL, + 'Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)', 'Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.00) Pulmonary complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.00) Pulmonary complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.00''', NULL, + '(668.00) Pulmonary complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', '(668.00) Pulmonary complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.01) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.01) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.01''', NULL, + '(668.01) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', '(668.01) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.02) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.02) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.02''', NULL, + '(668.02) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', '(668.02) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.03) Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.03) Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.03''', NULL, + '(668.03) Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', '(668.03) Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.04) Pulmonary complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.04) Pulmonary complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.04''', NULL, + '(668.04) Pulmonary complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', '(668.04) Pulmonary complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.9''', NULL, + 'Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)', 'Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.90) Unspecified complication of anesthesia and other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.90) Unspecified complication of anesthesia and other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.90''', NULL, + '(668.90) Unspecified complication of anesthesia and other sedation in labor and delivery, unspecified as to episode of care or not applicable', '(668.90) Unspecified complication of anesthesia and other sedation in labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.91) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.91) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.91''', NULL, + '(668.91) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with or without mention of antepartum condition', '(668.91) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.92) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.92) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.92''', NULL, + '(668.92) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with mention of postpartum complication', '(668.92) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.93) Unspecified complication of anesthesia and other sedation in labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.93) Unspecified complication of anesthesia and other sedation in labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.93''', NULL, + '(668.93) Unspecified complication of anesthesia and other sedation in labor and delivery, antepartum condition or complication', '(668.93) Unspecified complication of anesthesia and other sedation in labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.94) Unspecified complication of anesthesia and other sedation in labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.94) Unspecified complication of anesthesia and other sedation in labor and delivery, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.94''', NULL, + '(668.94) Unspecified complication of anesthesia and other sedation in labor and delivery, postpartum condition or complication', '(668.94) Unspecified complication of anesthesia and other sedation in labor and delivery, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662''', NULL, + 'Long labor (662)', 'Long labor (662)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.3''', NULL, + 'Delayed delivery of second twin, triplet, etc. (662.3)', 'Delayed delivery of second twin, triplet, etc. (662.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.30) Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.30) Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.30''', NULL, + '(662.30) Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable', '(662.30) Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.31) Delayed delivery of second twin, triplet, etc., delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.31) Delayed delivery of second twin, triplet, etc., delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.31''', NULL, + '(662.31) Delayed delivery of second twin, triplet, etc., delivered, with or without mention of antepartum condition', '(662.31) Delayed delivery of second twin, triplet, etc., delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.33) Delayed delivery of second twin, triplet, etc., antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.33) Delayed delivery of second twin, triplet, etc., antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.33''', NULL, + '(662.33) Delayed delivery of second twin, triplet, etc., antepartum condition or complication', '(662.33) Delayed delivery of second twin, triplet, etc., antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.0''', NULL, + 'Prolonged first stage of labor (662.0)', 'Prolonged first stage of labor (662.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.00) Prolonged first stage of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.00) Prolonged first stage of labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.00''', NULL, + '(662.00) Prolonged first stage of labor, unspecified as to episode of care or not applicable', '(662.00) Prolonged first stage of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.01) Prolonged first stage of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.01) Prolonged first stage of labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.01''', NULL, + '(662.01) Prolonged first stage of labor, delivered, with or without mention of antepartum condition', '(662.01) Prolonged first stage of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.03) Prolonged first stage of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.03) Prolonged first stage of labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.03''', NULL, + '(662.03) Prolonged first stage of labor, antepartum condition or complication', '(662.03) Prolonged first stage of labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.1''', NULL, + 'Prolonged labor, unspecified (662.1)', 'Prolonged labor, unspecified (662.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.10) Unspecified prolonged labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.10) Unspecified prolonged labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.10''', NULL, + '(662.10) Unspecified prolonged labor, unspecified as to episode of care or not applicable', '(662.10) Unspecified prolonged labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.11) Unspecified prolonged labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.11) Unspecified prolonged labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.11''', NULL, + '(662.11) Unspecified prolonged labor, delivered, with or without mention of antepartum condition', '(662.11) Unspecified prolonged labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.13) Unspecified prolonged labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.13) Unspecified prolonged labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.13''', NULL, + '(662.13) Unspecified prolonged labor, antepartum condition or complication', '(662.13) Unspecified prolonged labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.2''', NULL, + 'Prolonged second stage of labor (662.2)', 'Prolonged second stage of labor (662.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.20) Prolonged second stage of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.20) Prolonged second stage of labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.20''', NULL, + '(662.20) Prolonged second stage of labor, unspecified as to episode of care or not applicable', '(662.20) Prolonged second stage of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.21) Prolonged second stage of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.21) Prolonged second stage of labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.21''', NULL, + '(662.21) Prolonged second stage of labor, delivered, with or without mention of antepartum condition', '(662.21) Prolonged second stage of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.23) Prolonged second stage of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.23) Prolonged second stage of labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.23''', NULL, + '(662.23) Prolonged second stage of labor, antepartum condition or complication', '(662.23) Prolonged second stage of labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660''', NULL, + 'Obstructed labor (660)', 'Obstructed labor (660)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.3''', NULL, + 'Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)', 'Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.30) Deep transverse arrest and persistent occipitoposterior position, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.30) Deep transverse arrest and persistent occipitoposterior position, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.30''', NULL, + '(660.30) Deep transverse arrest and persistent occipitoposterior position, unspecified as to episode of care or not applicable', '(660.30) Deep transverse arrest and persistent occipitoposterior position, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.31) Deep transverse arrest and persistent occipitoposterior position, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.31) Deep transverse arrest and persistent occipitoposterior position, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.31''', NULL, + '(660.31) Deep transverse arrest and persistent occipitoposterior position, delivered, with or without mention of antepartum condition', '(660.31) Deep transverse arrest and persistent occipitoposterior position, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.33) Deep transverse arrest and persistent occipitoposterior position, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.33) Deep transverse arrest and persistent occipitoposterior position, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.33''', NULL, + '(660.33) Deep transverse arrest and persistent occipitoposterior position, antepartum condition or complication', '(660.33) Deep transverse arrest and persistent occipitoposterior position, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.7''', NULL, + 'Failed forceps or vacuum extractor, unspecified (660.7)', 'Failed forceps or vacuum extractor, unspecified (660.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.70) Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.70) Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.70''', NULL, + '(660.70) Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable', '(660.70) Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.71) Failed forceps or vacuum extractor, unspecified, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.71) Failed forceps or vacuum extractor, unspecified, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.71''', NULL, + '(660.71) Failed forceps or vacuum extractor, unspecified, delivered, with or without mention of antepartum condition', '(660.71) Failed forceps or vacuum extractor, unspecified, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.73) Failed forceps or vacuum extractor, unspecified, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.73) Failed forceps or vacuum extractor, unspecified, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.73''', NULL, + '(660.73) Failed forceps or vacuum extractor, unspecified, antepartum condition or complication', '(660.73) Failed forceps or vacuum extractor, unspecified, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.6''', NULL, + 'Failed trial of labor, unspecified (660.6)', 'Failed trial of labor, unspecified (660.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.60) Unspecified failed trial of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.60) Unspecified failed trial of labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.60''', NULL, + '(660.60) Unspecified failed trial of labor, unspecified as to episode of care or not applicable', '(660.60) Unspecified failed trial of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.61) Unspecified failed trial of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.61) Unspecified failed trial of labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.61''', NULL, + '(660.61) Unspecified failed trial of labor, delivered, with or without mention of antepartum condition', '(660.61) Unspecified failed trial of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.63) Unspecified failed trial of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.63) Unspecified failed trial of labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.63''', NULL, + '(660.63) Unspecified failed trial of labor, antepartum condition or complication', '(660.63) Unspecified failed trial of labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.5''', NULL, + 'Locked twins (660.5)', 'Locked twins (660.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.50) Locked twins, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.50) Locked twins, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.50''', NULL, + '(660.50) Locked twins, unspecified as to episode of care or not applicable', '(660.50) Locked twins, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.51) Locked twins, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.51) Locked twins, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.51''', NULL, + '(660.51) Locked twins, delivered, with or without mention of antepartum condition', '(660.51) Locked twins, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.53) Locked twins, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.53) Locked twins, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.53''', NULL, + '(660.53) Locked twins, antepartum condition or complication', '(660.53) Locked twins, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.2''', NULL, + 'Obstruction by abnormal pelvic soft tissues during labor (660.2)', 'Obstruction by abnormal pelvic soft tissues during labor (660.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.20) Obstruction by abnormal pelvic soft tissues during labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.20) Obstruction by abnormal pelvic soft tissues during labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.20''', NULL, + '(660.20) Obstruction by abnormal pelvic soft tissues during labor, unspecified as to episode of care or not applicable', '(660.20) Obstruction by abnormal pelvic soft tissues during labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.21) Obstruction by abnormal pelvic soft tissues during labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.21) Obstruction by abnormal pelvic soft tissues during labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.21''', NULL, + '(660.21) Obstruction by abnormal pelvic soft tissues during labor, delivered, with or without mention of antepartum condition', '(660.21) Obstruction by abnormal pelvic soft tissues during labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.23) Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.23) Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.23''', NULL, + '(660.23) Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication', '(660.23) Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.1''', NULL, + 'Obstruction by bony pelvis during labor (660.1)', 'Obstruction by bony pelvis during labor (660.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.10) Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.10) Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.10''', NULL, + '(660.10) Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable', '(660.10) Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.11) Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.11) Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.11''', NULL, + '(660.11) Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition', '(660.11) Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.13) Obstruction by bony pelvis during labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.13) Obstruction by bony pelvis during labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.13''', NULL, + '(660.13) Obstruction by bony pelvis during labor, antepartum condition or complication', '(660.13) Obstruction by bony pelvis during labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.0''', NULL, + 'Obstruction caused by malposition of fetus at onset of labor (660.0)', 'Obstruction caused by malposition of fetus at onset of labor (660.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.00) Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.00) Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.00''', NULL, + '(660.00) Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable', '(660.00) Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.01) Obstruction caused by malposition of fetus at onset of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.01) Obstruction caused by malposition of fetus at onset of labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.01''', NULL, + '(660.01) Obstruction caused by malposition of fetus at onset of labor, delivered, with or without mention of antepartum condition', '(660.01) Obstruction caused by malposition of fetus at onset of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.03) Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.03) Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.03''', NULL, + '(660.03) Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication', '(660.03) Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.8''', NULL, + 'Other causes of obstructed labor (660.8)', 'Other causes of obstructed labor (660.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.80) Other causes of obstructed labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.80) Other causes of obstructed labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.80''', NULL, + '(660.80) Other causes of obstructed labor, unspecified as to episode of care or not applicable', '(660.80) Other causes of obstructed labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.81) Other causes of obstructed labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.81) Other causes of obstructed labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.81''', NULL, + '(660.81) Other causes of obstructed labor, delivered, with or without mention of antepartum condition', '(660.81) Other causes of obstructed labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.83) Other causes of obstructed labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.83) Other causes of obstructed labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.83''', NULL, + '(660.83) Other causes of obstructed labor, antepartum condition or complication', '(660.83) Other causes of obstructed labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''girdle) dystocia during labor and delivery (660.4''', NULL, + 'Shoulder (girdle) dystocia during labor and delivery (660.4)', 'Shoulder (girdle) dystocia during labor and delivery (660.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.40) Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.40) Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.40) Shoulder (girdle''', NULL, + '(660.40) Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable', '(660.40) Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.41) Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.41) Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.41) Shoulder (girdle''', NULL, + '(660.41) Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition', '(660.41) Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.43) Shoulder (girdle) dystocia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.43) Shoulder (girdle) dystocia, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.43) Shoulder (girdle''', NULL, + '(660.43) Shoulder (girdle) dystocia, antepartum condition or complication', '(660.43) Shoulder (girdle) dystocia, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.9''', NULL, + 'Unspecified obstructed labor (660.9)', 'Unspecified obstructed labor (660.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.90) Unspecified obstructed labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.90) Unspecified obstructed labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.90''', NULL, + '(660.90) Unspecified obstructed labor, unspecified as to episode of care or not applicable', '(660.90) Unspecified obstructed labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.91) Unspecified obstructed labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.91) Unspecified obstructed labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.91''', NULL, + '(660.91) Unspecified obstructed labor, delivered, with or without mention of antepartum condition', '(660.91) Unspecified obstructed labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.93) Unspecified obstructed labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.93) Unspecified obstructed labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.93''', NULL, + '(660.93) Unspecified obstructed labor, antepartum condition or complication', '(660.93) Unspecified obstructed labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669''', NULL, + 'Other complications of labor and delivery, not elsewhere classified (669)', 'Other complications of labor and delivery, not elsewhere classified (669)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.3''', NULL, + 'Acute kidney failure following labor and delivery (669.3)', 'Acute kidney failure following labor and delivery (669.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.30) Acute kidney failure following labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.30) Acute kidney failure following labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.30''', NULL, + '(669.30) Acute kidney failure following labor and delivery, unspecified as to episode of care or not applicable', '(669.30) Acute kidney failure following labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.32) Acute kidney failure following labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.32) Acute kidney failure following labor and delivery, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.32''', NULL, + '(669.32) Acute kidney failure following labor and delivery, delivered, with mention of postpartum complication', '(669.32) Acute kidney failure following labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.34) Acute kidney failure following labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.34) Acute kidney failure following labor and delivery, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.34''', NULL, + '(669.34) Acute kidney failure following labor and delivery, postpartum condition or complication', '(669.34) Acute kidney failure following labor and delivery, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.6''', NULL, + 'Breech extraction, without mention of indication (669.6)', 'Breech extraction, without mention of indication (669.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\(669.60) Breech extraction, without mention of indication, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\(669.60) Breech extraction, without mention of indication, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.60''', NULL, + '(669.60) Breech extraction, without mention of indication, unspecified as to episode of care or not applicable', '(669.60) Breech extraction, without mention of indication, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\(669.61) Breech extraction, without mention of indication, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\(669.61) Breech extraction, without mention of indication, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.61''', NULL, + '(669.61) Breech extraction, without mention of indication, delivered, with or without mention of antepartum condition', '(669.61) Breech extraction, without mention of indication, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.7''', NULL, + 'Cesarean delivery, without mention of indication (669.7)', 'Cesarean delivery, without mention of indication (669.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\(669.70) Cesarean delivery, without mention of indication, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\(669.70) Cesarean delivery, without mention of indication, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.70''', NULL, + '(669.70) Cesarean delivery, without mention of indication, unspecified as to episode of care or not applicable', '(669.70) Cesarean delivery, without mention of indication, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\(669.71) Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\(669.71) Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.71''', NULL, + '(669.71) Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition', '(669.71) Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.5''', NULL, + 'Forceps or vacuum extractor delivery without mention of indication (669.5)', 'Forceps or vacuum extractor delivery without mention of indication (669.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\(669.50) Forceps or vacuum extractor delivery without mention of indication, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\(669.50) Forceps or vacuum extractor delivery without mention of indication, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.50''', NULL, + '(669.50) Forceps or vacuum extractor delivery without mention of indication, unspecified as to episode of care or not applicable', '(669.50) Forceps or vacuum extractor delivery without mention of indication, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\(669.51) Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\(669.51) Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.51''', NULL, + '(669.51) Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition', '(669.51) Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.0''', NULL, + 'Maternal distress (669.0)', 'Maternal distress (669.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.00) Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.00) Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.00''', NULL, + '(669.00) Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable', '(669.00) Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.01) Maternal distress complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.01) Maternal distress complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.01''', NULL, + '(669.01) Maternal distress complicating labor and delivery, delivered, with or without mention of antepartum condition', '(669.01) Maternal distress complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.02) Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.02) Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.02''', NULL, + '(669.02) Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication', '(669.02) Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.03) Maternal distress complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.03) Maternal distress complicating labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.03''', NULL, + '(669.03) Maternal distress complicating labor and delivery, antepartum condition or complication', '(669.03) Maternal distress complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.04) Maternal distress complicating labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.04) Maternal distress complicating labor and delivery, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.04''', NULL, + '(669.04) Maternal distress complicating labor and delivery, postpartum condition or complication', '(669.04) Maternal distress complicating labor and delivery, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.2''', NULL, + 'Maternal hypotension syndrome (669.2)', 'Maternal hypotension syndrome (669.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.20) Maternal hypotension syndrome, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.20) Maternal hypotension syndrome, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.20''', NULL, + '(669.20) Maternal hypotension syndrome, unspecified as to episode of care or not applicable', '(669.20) Maternal hypotension syndrome, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.21) Maternal hypotension syndrome, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.21) Maternal hypotension syndrome, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.21''', NULL, + '(669.21) Maternal hypotension syndrome, delivered, with or without mention of antepartum condition', '(669.21) Maternal hypotension syndrome, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.22) Maternal hypotension syndrome, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.22) Maternal hypotension syndrome, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.22''', NULL, + '(669.22) Maternal hypotension syndrome, delivered, with mention of postpartum complication', '(669.22) Maternal hypotension syndrome, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.23) Maternal hypotension syndrome, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.23) Maternal hypotension syndrome, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.23''', NULL, + '(669.23) Maternal hypotension syndrome, antepartum condition or complication', '(669.23) Maternal hypotension syndrome, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.24) Maternal hypotension syndrome, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.24) Maternal hypotension syndrome, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.24''', NULL, + '(669.24) Maternal hypotension syndrome, postpartum condition or complication', '(669.24) Maternal hypotension syndrome, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.8''', NULL, + 'Other complications of labor and delivery (669.8)', 'Other complications of labor and delivery (669.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.80) Other complications of labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.80) Other complications of labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.80''', NULL, + '(669.80) Other complications of labor and delivery, unspecified as to episode of care or not applicable', '(669.80) Other complications of labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.81) Other complications of labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.81) Other complications of labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.81''', NULL, + '(669.81) Other complications of labor and delivery, delivered, with or without mention of antepartum condition', '(669.81) Other complications of labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.82) Other complications of labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.82) Other complications of labor and delivery, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.82''', NULL, + '(669.82) Other complications of labor and delivery, delivered, with mention of postpartum complication', '(669.82) Other complications of labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.83) Other complications of labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.83) Other complications of labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.83''', NULL, + '(669.83) Other complications of labor and delivery, antepartum condition or complication', '(669.83) Other complications of labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.84) Other complications of labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.84) Other complications of labor and delivery, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.84''', NULL, + '(669.84) Other complications of labor and delivery, postpartum condition or complication', '(669.84) Other complications of labor and delivery, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.4''', NULL, + 'Other complications of obstetrical surgery and procedures (669.4)', 'Other complications of obstetrical surgery and procedures (669.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.40) Other complications of obstetrical surgery and procedures, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.40) Other complications of obstetrical surgery and procedures, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.40''', NULL, + '(669.40) Other complications of obstetrical surgery and procedures, unspecified as to episode of care or not applicable', '(669.40) Other complications of obstetrical surgery and procedures, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.41) Other complications of obstetrical surgery and procedures, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.41) Other complications of obstetrical surgery and procedures, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.41''', NULL, + '(669.41) Other complications of obstetrical surgery and procedures, delivered, with or without mention of antepartum condition', '(669.41) Other complications of obstetrical surgery and procedures, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.42) Other complications of obstetrical surgery and procedures, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.42) Other complications of obstetrical surgery and procedures, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.42''', NULL, + '(669.42) Other complications of obstetrical surgery and procedures, delivered, with mention of postpartum complication', '(669.42) Other complications of obstetrical surgery and procedures, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.43) Other complications of obstetrical surgery and procedures, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.43) Other complications of obstetrical surgery and procedures, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.43''', NULL, + '(669.43) Other complications of obstetrical surgery and procedures, antepartum condition or complication', '(669.43) Other complications of obstetrical surgery and procedures, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.44) Other complications of obstetrical surgery and procedures, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.44) Other complications of obstetrical surgery and procedures, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.44''', NULL, + '(669.44) Other complications of obstetrical surgery and procedures, postpartum condition or complication', '(669.44) Other complications of obstetrical surgery and procedures, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.1''', NULL, + 'Shock during or following labor and delivery (669.1)', 'Shock during or following labor and delivery (669.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.10) Shock during or following labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.10) Shock during or following labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.10''', NULL, + '(669.10) Shock during or following labor and delivery, unspecified as to episode of care or not applicable', '(669.10) Shock during or following labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.11) Shock during or following labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.11) Shock during or following labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.11''', NULL, + '(669.11) Shock during or following labor and delivery, delivered, with or without mention of antepartum condition', '(669.11) Shock during or following labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.12) Shock during or following labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.12) Shock during or following labor and delivery, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.12''', NULL, + '(669.12) Shock during or following labor and delivery, delivered, with mention of postpartum complication', '(669.12) Shock during or following labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.13) Shock during or following labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.13) Shock during or following labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.13''', NULL, + '(669.13) Shock during or following labor and delivery, antepartum condition or complication', '(669.13) Shock during or following labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.14) Shock during or following labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.14) Shock during or following labor and delivery, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.14''', NULL, + '(669.14) Shock during or following labor and delivery, postpartum condition or complication', '(669.14) Shock during or following labor and delivery, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.9''', NULL, + 'Unspecified complication of labor and delivery (669.9)', 'Unspecified complication of labor and delivery (669.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.90) Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.90) Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.90''', NULL, + '(669.90) Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable', '(669.90) Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.91) Unspecified complication of labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.91) Unspecified complication of labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.91''', NULL, + '(669.91) Unspecified complication of labor and delivery, delivered, with or without mention of antepartum condition', '(669.91) Unspecified complication of labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.92) Unspecified complication of labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.92) Unspecified complication of labor and delivery, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.92''', NULL, + '(669.92) Unspecified complication of labor and delivery, delivered, with mention of postpartum complication', '(669.92) Unspecified complication of labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.93) Unspecified complication of labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.93) Unspecified complication of labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.93''', NULL, + '(669.93) Unspecified complication of labor and delivery, antepartum condition or complication', '(669.93) Unspecified complication of labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.94) Unspecified complication of labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.94) Unspecified complication of labor and delivery, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.94''', NULL, + '(669.94) Unspecified complication of labor and delivery, postpartum condition or complication', '(669.94) Unspecified complication of labor and delivery, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665''', NULL, + 'Other obstetrical trauma (665)', 'Other obstetrical trauma (665)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.4''', NULL, + 'High vaginal laceration during and after labor (665.4)', 'High vaginal laceration during and after labor (665.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.40) High vaginal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.40) High vaginal laceration, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.40''', NULL, + '(665.40) High vaginal laceration, unspecified as to episode of care or not applicable', '(665.40) High vaginal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.41) High vaginal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.41) High vaginal laceration, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.41''', NULL, + '(665.41) High vaginal laceration, delivered, with or without mention of antepartum condition', '(665.41) High vaginal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.44) High vaginal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.44) High vaginal laceration, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.44''', NULL, + '(665.44) High vaginal laceration, postpartum condition or complication', '(665.44) High vaginal laceration, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.6''', NULL, + 'Obstetrical damage to pelvic joints and ligaments (665.6)', 'Obstetrical damage to pelvic joints and ligaments (665.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.60) Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.60) Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.60''', NULL, + '(665.60) Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable', '(665.60) Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.61) Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.61) Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.61''', NULL, + '(665.61) Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition', '(665.61) Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.64) Damage to pelvic joints and ligaments, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.64) Damage to pelvic joints and ligaments, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.64''', NULL, + '(665.64) Damage to pelvic joints and ligaments, postpartum condition or complication', '(665.64) Damage to pelvic joints and ligaments, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.2''', NULL, + 'Obstetrical inversion of uterus (665.2)', 'Obstetrical inversion of uterus (665.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.20) Inversion of uterus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.20) Inversion of uterus, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.20''', NULL, + '(665.20) Inversion of uterus, unspecified as to episode of care or not applicable', '(665.20) Inversion of uterus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.22) Inversion of uterus, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.22) Inversion of uterus, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.22''', NULL, + '(665.22) Inversion of uterus, delivered, with mention of postpartum complication', '(665.22) Inversion of uterus, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.24) Inversion of uterus, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.24) Inversion of uterus, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.24''', NULL, + '(665.24) Inversion of uterus, postpartum condition or complication', '(665.24) Inversion of uterus, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.3''', NULL, + 'Obstetrical laceration of cervix (665.3)', 'Obstetrical laceration of cervix (665.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.30) Laceration of cervix, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.30) Laceration of cervix, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.30''', NULL, + '(665.30) Laceration of cervix, unspecified as to episode of care or not applicable', '(665.30) Laceration of cervix, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.31) Laceration of cervix, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.31) Laceration of cervix, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.31''', NULL, + '(665.31) Laceration of cervix, delivered, with or without mention of antepartum condition', '(665.31) Laceration of cervix, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.34) Laceration of cervix, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.34) Laceration of cervix, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.34''', NULL, + '(665.34) Laceration of cervix, postpartum condition or complication', '(665.34) Laceration of cervix, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.7''', NULL, + 'Obstetrical pelvic hematoma (665.7)', 'Obstetrical pelvic hematoma (665.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.70) Pelvic hematoma, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.70) Pelvic hematoma, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.70''', NULL, + '(665.70) Pelvic hematoma, unspecified as to episode of care or not applicable', '(665.70) Pelvic hematoma, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.71) Pelvic hematoma, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.71) Pelvic hematoma, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.71''', NULL, + '(665.71) Pelvic hematoma, delivered, with or without mention of antepartum condition', '(665.71) Pelvic hematoma, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.72) Pelvic hematoma, delivered with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.72) Pelvic hematoma, delivered with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.72''', NULL, + '(665.72) Pelvic hematoma, delivered with mention of postpartum complication', '(665.72) Pelvic hematoma, delivered with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.74) Pelvic hematoma, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.74) Pelvic hematoma, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.74''', NULL, + '(665.74) Pelvic hematoma, postpartum condition or complication', '(665.74) Pelvic hematoma, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.5''', NULL, + 'Other obstetrical injury to pelvic organs (665.5)', 'Other obstetrical injury to pelvic organs (665.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.50) Other injury to pelvic organs, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.50) Other injury to pelvic organs, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.50''', NULL, + '(665.50) Other injury to pelvic organs, unspecified as to episode of care or not applicable', '(665.50) Other injury to pelvic organs, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.51) Other injury to pelvic organs, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.51) Other injury to pelvic organs, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.51''', NULL, + '(665.51) Other injury to pelvic organs, delivered, with or without mention of antepartum condition', '(665.51) Other injury to pelvic organs, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.54) Other injury to pelvic organs, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.54) Other injury to pelvic organs, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.54''', NULL, + '(665.54) Other injury to pelvic organs, postpartum condition or complication', '(665.54) Other injury to pelvic organs, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.8''', NULL, + 'Other specified obstetrical trauma (665.8)', 'Other specified obstetrical trauma (665.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.80) Other specified obstetrical trauma, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.80) Other specified obstetrical trauma, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.80''', NULL, + '(665.80) Other specified obstetrical trauma, unspecified as to episode of care or not applicable', '(665.80) Other specified obstetrical trauma, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.81) Other specified obstetrical trauma, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.81) Other specified obstetrical trauma, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.81''', NULL, + '(665.81) Other specified obstetrical trauma, delivered, with or without mention of antepartum condition', '(665.81) Other specified obstetrical trauma, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.82) Other specified obstetrical trauma, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.82) Other specified obstetrical trauma, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.82''', NULL, + '(665.82) Other specified obstetrical trauma, delivered, with mention of postpartum complication', '(665.82) Other specified obstetrical trauma, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.83) Other specified obstetrical trauma, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.83) Other specified obstetrical trauma, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.83''', NULL, + '(665.83) Other specified obstetrical trauma, antepartum condition or complication', '(665.83) Other specified obstetrical trauma, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.84) Other specified obstetrical trauma, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.84) Other specified obstetrical trauma, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.84''', NULL, + '(665.84) Other specified obstetrical trauma, postpartum condition or complication', '(665.84) Other specified obstetrical trauma, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.0''', NULL, + 'Rupture of uterus before onset of labor (665.0)', 'Rupture of uterus before onset of labor (665.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.00) Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.00) Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.00''', NULL, + '(665.00) Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable', '(665.00) Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.01) Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.01) Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.01''', NULL, + '(665.01) Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition', '(665.01) Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.03) Rupture of uterus before onset of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.03) Rupture of uterus before onset of labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.03''', NULL, + '(665.03) Rupture of uterus before onset of labor, antepartum condition or complication', '(665.03) Rupture of uterus before onset of labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.1''', NULL, + 'Rupture of uterus during labor (665.1)', 'Rupture of uterus during labor (665.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\(665.10) Rupture of uterus during labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\(665.10) Rupture of uterus during labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.10''', NULL, + '(665.10) Rupture of uterus during labor, unspecified as to episode of care or not applicable', '(665.10) Rupture of uterus during labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\(665.11) Rupture of uterus during labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\(665.11) Rupture of uterus during labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.11''', NULL, + '(665.11) Rupture of uterus during labor, delivered, with or without mention of antepartum condition', '(665.11) Rupture of uterus during labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.9''', NULL, + 'Unspecified obstetrical trauma (665.9)', 'Unspecified obstetrical trauma (665.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.90) Unspecified obstetrical trauma, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.90) Unspecified obstetrical trauma, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.90''', NULL, + '(665.90) Unspecified obstetrical trauma, unspecified as to episode of care or not applicable', '(665.90) Unspecified obstetrical trauma, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.91) Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.91) Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.91''', NULL, + '(665.91) Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition', '(665.91) Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.92) Unspecified obstetrical trauma, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.92) Unspecified obstetrical trauma, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.92''', NULL, + '(665.92) Unspecified obstetrical trauma, delivered, with mention of postpartum complication', '(665.92) Unspecified obstetrical trauma, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.93) Unspecified obstetrical trauma, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.93) Unspecified obstetrical trauma, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.93''', NULL, + '(665.93) Unspecified obstetrical trauma, antepartum condition or complication', '(665.93) Unspecified obstetrical trauma, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.94) Unspecified obstetrical trauma, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.94) Unspecified obstetrical trauma, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.94''', NULL, + '(665.94) Unspecified obstetrical trauma, postpartum condition or complication', '(665.94) Unspecified obstetrical trauma, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666''', NULL, + 'Postpartum hemorrhage (666)', 'Postpartum hemorrhage (666)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.2''', NULL, + 'Delayed and secondary postpartum hemorrhage (666.2)', 'Delayed and secondary postpartum hemorrhage (666.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.20) Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.20) Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.20''', NULL, + '(666.20) Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable', '(666.20) Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.22) Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.22) Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.22''', NULL, + '(666.22) Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication', '(666.22) Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.24) Delayed and secondary postpartum hemorrhage, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.24) Delayed and secondary postpartum hemorrhage, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.24''', NULL, + '(666.24) Delayed and secondary postpartum hemorrhage, postpartum condition or complication', '(666.24) Delayed and secondary postpartum hemorrhage, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.1''', NULL, + 'Other immediate postpartum hemorrhage (666.1)', 'Other immediate postpartum hemorrhage (666.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.10) Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.10) Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.10''', NULL, + '(666.10) Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable', '(666.10) Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.12) Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.12) Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.12''', NULL, + '(666.12) Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication', '(666.12) Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.14) Other immediate postpartum hemorrhage, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.14) Other immediate postpartum hemorrhage, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.14''', NULL, + '(666.14) Other immediate postpartum hemorrhage, postpartum condition or complication', '(666.14) Other immediate postpartum hemorrhage, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.3''', NULL, + 'Postpartum coagulation defects (666.3)', 'Postpartum coagulation defects (666.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.30) Postpartum coagulation defects, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.30) Postpartum coagulation defects, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.30''', NULL, + '(666.30) Postpartum coagulation defects, unspecified as to episode of care or not applicable', '(666.30) Postpartum coagulation defects, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.32) Postpartum coagulation defects, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.32) Postpartum coagulation defects, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.32''', NULL, + '(666.32) Postpartum coagulation defects, delivered, with mention of postpartum complication', '(666.32) Postpartum coagulation defects, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.34) Postpartum coagulation defects, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.34) Postpartum coagulation defects, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.34''', NULL, + '(666.34) Postpartum coagulation defects, postpartum condition or complication', '(666.34) Postpartum coagulation defects, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.0''', NULL, + 'Third-stage postpartum hemorrhage (666.0)', 'Third-stage postpartum hemorrhage (666.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.00) Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.00) Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.00''', NULL, + '(666.00) Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable', '(666.00) Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.02) Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.02) Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.02''', NULL, + '(666.02) Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication', '(666.02) Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.04) Third-stage postpartum hemorrhage, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.04) Third-stage postpartum hemorrhage, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.04''', NULL, + '(666.04) Third-stage postpartum hemorrhage, postpartum condition or complication', '(666.04) Third-stage postpartum hemorrhage, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667''', NULL, + 'Retained placenta or membranes, without hemorrhage (667)', 'Retained placenta or membranes, without hemorrhage (667)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.0''', NULL, + 'Retained placenta without hemorrhage (667.0)', 'Retained placenta without hemorrhage (667.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.00) Retained placenta without hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.00) Retained placenta without hemorrhage, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.00''', NULL, + '(667.00) Retained placenta without hemorrhage, unspecified as to episode of care or not applicable', '(667.00) Retained placenta without hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.02) Retained placenta without hemorrhage, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.02) Retained placenta without hemorrhage, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.02''', NULL, + '(667.02) Retained placenta without hemorrhage, delivered, with mention of postpartum complication', '(667.02) Retained placenta without hemorrhage, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.04) Retained placenta without hemorrhage, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.04) Retained placenta without hemorrhage, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.04''', NULL, + '(667.04) Retained placenta without hemorrhage, postpartum condition or complication', '(667.04) Retained placenta without hemorrhage, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.1''', NULL, + 'Retained portions of placenta or membranes, without hemorrhage (667.1)', 'Retained portions of placenta or membranes, without hemorrhage (667.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.10) Retained portions of placenta or membranes, without hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.10) Retained portions of placenta or membranes, without hemorrhage, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.10''', NULL, + '(667.10) Retained portions of placenta or membranes, without hemorrhage, unspecified as to episode of care or not applicable', '(667.10) Retained portions of placenta or membranes, without hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.12) Retained portions of placenta or membranes, without hemorrhage, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.12) Retained portions of placenta or membranes, without hemorrhage, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.12''', NULL, + '(667.12) Retained portions of placenta or membranes, without hemorrhage, delivered, with mention of postpartum complication', '(667.12) Retained portions of placenta or membranes, without hemorrhage, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.14) Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.14) Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.14''', NULL, + '(667.14) Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication', '(667.14) Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664''', NULL, + 'Trauma to perineum and vulva during delivery (664)', 'Trauma to perineum and vulva during delivery (664)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.6''', NULL, + 'Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)', 'Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.60) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.60) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.60''', NULL, + '(664.60) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, unspecified as to episode of care or not applicable', '(664.60) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.61) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.61) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.61''', NULL, + '(664.61) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, delivered, with or without mention of antepartum condition', '(664.61) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.64) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.64) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.64''', NULL, + '(664.64) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, postpartum condition or complication', '(664.64) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.0''', NULL, + 'First-degree perineal laceration during delivery (664.0)', 'First-degree perineal laceration during delivery (664.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.00) First-degree perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.00) First-degree perineal laceration, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.00''', NULL, + '(664.00) First-degree perineal laceration, unspecified as to episode of care or not applicable', '(664.00) First-degree perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.01) First-degree perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.01) First-degree perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.01''', NULL, + '(664.01) First-degree perineal laceration, delivered, with or without mention of antepartum condition', '(664.01) First-degree perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.04) First-degree perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.04) First-degree perineal laceration, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.04''', NULL, + '(664.04) First-degree perineal laceration, postpartum condition or complication', '(664.04) First-degree perineal laceration, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.3''', NULL, + 'Fourth-degree perineal laceration during delivery (664.3)', 'Fourth-degree perineal laceration during delivery (664.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.30) Fourth-degree perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.30) Fourth-degree perineal laceration, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.30''', NULL, + '(664.30) Fourth-degree perineal laceration, unspecified as to episode of care or not applicable', '(664.30) Fourth-degree perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.31) Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.31) Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.31''', NULL, + '(664.31) Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition', '(664.31) Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.34) Fourth-degree perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.34) Fourth-degree perineal laceration, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.34''', NULL, + '(664.34) Fourth-degree perineal laceration, postpartum condition or complication', '(664.34) Fourth-degree perineal laceration, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.8''', NULL, + 'Other specified trauma to perineum and vulva during delivery (664.8)', 'Other specified trauma to perineum and vulva during delivery (664.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.80) Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.80) Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.80''', NULL, + '(664.80) Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable', '(664.80) Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.81) Other specified trauma to perineum and vulva, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.81) Other specified trauma to perineum and vulva, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.81''', NULL, + '(664.81) Other specified trauma to perineum and vulva, delivered, with or without mention of antepartum condition', '(664.81) Other specified trauma to perineum and vulva, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.84) Other specified trauma to perineum and vulva, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.84) Other specified trauma to perineum and vulva, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.84''', NULL, + '(664.84) Other specified trauma to perineum and vulva, postpartum condition or complication', '(664.84) Other specified trauma to perineum and vulva, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.1''', NULL, + 'Second-degree perineal laceration during delivery (664.1)', 'Second-degree perineal laceration during delivery (664.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.10) Second-degree perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.10) Second-degree perineal laceration, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.10''', NULL, + '(664.10) Second-degree perineal laceration, unspecified as to episode of care or not applicable', '(664.10) Second-degree perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.11) Second-degree perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.11) Second-degree perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.11''', NULL, + '(664.11) Second-degree perineal laceration, delivered, with or without mention of antepartum condition', '(664.11) Second-degree perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.14) Second-degree perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.14) Second-degree perineal laceration, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.14''', NULL, + '(664.14) Second-degree perineal laceration, postpartum condition or complication', '(664.14) Second-degree perineal laceration, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.2''', NULL, + 'Third-degree perineal laceration during delivery (664.2)', 'Third-degree perineal laceration during delivery (664.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.20) Third-degree perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.20) Third-degree perineal laceration, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.20''', NULL, + '(664.20) Third-degree perineal laceration, unspecified as to episode of care or not applicable', '(664.20) Third-degree perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.21) Third-degree perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.21) Third-degree perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.21''', NULL, + '(664.21) Third-degree perineal laceration, delivered, with or without mention of antepartum condition', '(664.21) Third-degree perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.24) Third-degree perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.24) Third-degree perineal laceration, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.24''', NULL, + '(664.24) Third-degree perineal laceration, postpartum condition or complication', '(664.24) Third-degree perineal laceration, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.4''', NULL, + 'Unspecified perineal laceration during delivery (664.4)', 'Unspecified perineal laceration during delivery (664.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.40) Unspecified perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.40) Unspecified perineal laceration, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.40''', NULL, + '(664.40) Unspecified perineal laceration, unspecified as to episode of care or not applicable', '(664.40) Unspecified perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.41) Unspecified perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.41) Unspecified perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.41''', NULL, + '(664.41) Unspecified perineal laceration, delivered, with or without mention of antepartum condition', '(664.41) Unspecified perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.44) Unspecified perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.44) Unspecified perineal laceration, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.44''', NULL, + '(664.44) Unspecified perineal laceration, postpartum condition or complication', '(664.44) Unspecified perineal laceration, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.9''', NULL, + 'Unspecified trauma to perineum and vulva during delivery (664.9)', 'Unspecified trauma to perineum and vulva during delivery (664.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.90) Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.90) Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.90''', NULL, + '(664.90) Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable', '(664.90) Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.91) Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.91) Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.91''', NULL, + '(664.91) Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition', '(664.91) Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.94) Unspecified trauma to perineum and vulva, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.94) Unspecified trauma to perineum and vulva, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.94''', NULL, + '(664.94) Unspecified trauma to perineum and vulva, postpartum condition or complication', '(664.94) Unspecified trauma to perineum and vulva, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.5''', NULL, + 'Vulvar and perineal hematoma during delivery (664.5)', 'Vulvar and perineal hematoma during delivery (664.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.50) Vulvar and perineal hematoma, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.50) Vulvar and perineal hematoma, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.50''', NULL, + '(664.50) Vulvar and perineal hematoma, unspecified as to episode of care or not applicable', '(664.50) Vulvar and perineal hematoma, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.51) Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.51) Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.51''', NULL, + '(664.51) Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition', '(664.51) Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.54) Vulvar and perineal hematoma, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.54) Vulvar and perineal hematoma, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.54''', NULL, + '(664.54) Vulvar and perineal hematoma, postpartum condition or complication', '(664.54) Vulvar and perineal hematoma, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663''', NULL, + 'Umbilical cord complications during labor and delivery (663)', 'Umbilical cord complications during labor and delivery (663)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.1''', NULL, + 'Cord around neck, with compression, complicating labor and delivery (663.1)', 'Cord around neck, with compression, complicating labor and delivery (663.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.10) Cord around neck with compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.10) Cord around neck with compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.10''', NULL, + '(663.10) Cord around neck with compression, complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.10) Cord around neck with compression, complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.11) Cord around neck, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.11) Cord around neck, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.11''', NULL, + '(663.11) Cord around neck, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.11) Cord around neck, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.13) Cord around neck, with compression, complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.13) Cord around neck, with compression, complicating labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.13''', NULL, + '(663.13) Cord around neck, with compression, complicating labor and delivery, antepartum condition or complication', '(663.13) Cord around neck, with compression, complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.2''', NULL, + 'Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)', 'Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.20) Other and unspecified cord entanglement, with compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.20) Other and unspecified cord entanglement, with compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.20''', NULL, + '(663.20) Other and unspecified cord entanglement, with compression, complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.20) Other and unspecified cord entanglement, with compression, complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.21) Other and unspecified cord entanglement, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.21) Other and unspecified cord entanglement, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.21''', NULL, + '(663.21) Other and unspecified cord entanglement, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.21) Other and unspecified cord entanglement, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.23) Other and unspecified cord entanglement, with compression, complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.23) Other and unspecified cord entanglement, with compression, complicating labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.23''', NULL, + '(663.23) Other and unspecified cord entanglement, with compression, complicating labor and delivery, antepartum condition or complication', '(663.23) Other and unspecified cord entanglement, with compression, complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.3''', NULL, + 'Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)', 'Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.30) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.30) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.30''', NULL, + '(663.30) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.30) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.31) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.31) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.31''', NULL, + '(663.31) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.31) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.33) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.33) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.33''', NULL, + '(663.33) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication', '(663.33) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.8''', NULL, + 'Other umbilical cord complications during labor and delivery (663.8)', 'Other umbilical cord complications during labor and delivery (663.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.80) Other umbilical cord complications complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.80) Other umbilical cord complications complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.80''', NULL, + '(663.80) Other umbilical cord complications complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.80) Other umbilical cord complications complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.81) Other umbilical cord complications complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.81) Other umbilical cord complications complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.81''', NULL, + '(663.81) Other umbilical cord complications complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.81) Other umbilical cord complications complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.83) Other umbilical cord complications complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.83) Other umbilical cord complications complicating labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.83''', NULL, + '(663.83) Other umbilical cord complications complicating labor and delivery, antepartum condition or complication', '(663.83) Other umbilical cord complications complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.0''', NULL, + 'Prolapse of cord complicating labor and delivery (663.0)', 'Prolapse of cord complicating labor and delivery (663.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.00) Prolapse of cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.00) Prolapse of cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.00''', NULL, + '(663.00) Prolapse of cord complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.00) Prolapse of cord complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.01) Prolapse of cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.01) Prolapse of cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.01''', NULL, + '(663.01) Prolapse of cord complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.01) Prolapse of cord complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.03) Prolapse of cord complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.03) Prolapse of cord complicating labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.03''', NULL, + '(663.03) Prolapse of cord complicating labor and delivery, antepartum condition or complication', '(663.03) Prolapse of cord complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.4''', NULL, + 'Short cord complicating labor and delivery (663.4)', 'Short cord complicating labor and delivery (663.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.40) Short cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.40) Short cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.40''', NULL, + '(663.40) Short cord complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.40) Short cord complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.41) Short cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.41) Short cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.41''', NULL, + '(663.41) Short cord complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.41) Short cord complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.43) Short cord complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.43) Short cord complicating labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.43''', NULL, + '(663.43) Short cord complicating labor and delivery, antepartum condition or complication', '(663.43) Short cord complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.9''', NULL, + 'Unspecified umbilical cord complication during labor and delivery (663.9)', 'Unspecified umbilical cord complication during labor and delivery (663.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.90) Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.90) Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.90''', NULL, + '(663.90) Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.90) Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.91) Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.91) Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.91''', NULL, + '(663.91) Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.91) Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.93) Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.93) Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.93''', NULL, + '(663.93) Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication', '(663.93) Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.5''', NULL, + 'Vasa previa complicating labor and delivery (663.5)', 'Vasa previa complicating labor and delivery (663.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.50) Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.50) Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.50''', NULL, + '(663.50) Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.50) Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.51) Vasa previa complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.51) Vasa previa complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.51''', NULL, + '(663.51) Vasa previa complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.51) Vasa previa complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.53) Vasa previa complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.53) Vasa previa complicating labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.53''', NULL, + '(663.53) Vasa previa complicating labor and delivery, antepartum condition or complication', '(663.53) Vasa previa complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.6''', NULL, + 'Vascular lesions of cord complicating labor and delivery (663.6)', 'Vascular lesions of cord complicating labor and delivery (663.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.60) Vascular lesions of cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.60) Vascular lesions of cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.60''', NULL, + '(663.60) Vascular lesions of cord complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.60) Vascular lesions of cord complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.61) Vascular lesions of cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.61) Vascular lesions of cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.61''', NULL, + '(663.61) Vascular lesions of cord complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.61) Vascular lesions of cord complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.63) Vascular lesions of cord complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.63) Vascular lesions of cord complicating labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.63''', NULL, + '(663.63) Vascular lesions of cord complicating labor and delivery, antepartum condition or complication', '(663.63) Vascular lesions of cord complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''670'' AND ''677.99''', NULL, + 'Complications of the puerperium (670-677.99)', 'Complications of the puerperium (670-677.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\(677) Late effect of complication of pregnancy, childbirth, and the puerperium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\(677) Late effect of complication of pregnancy, childbirth, and the puerperium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''677''', NULL, + '(677) Late effect of complication of pregnancy, childbirth, and the puerperium', '(677) Late effect of complication of pregnancy, childbirth, and the puerperium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675''', NULL, + 'Infections of the breast and nipple associated with childbirth (675)', 'Infections of the breast and nipple associated with childbirth (675)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.1''', NULL, + 'Abscess of breast associated with childbirth (675.1)', 'Abscess of breast associated with childbirth (675.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.10) Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.10) Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.10''', NULL, + '(675.10) Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable', '(675.10) Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.11) Abscess of breast associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.11) Abscess of breast associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.11''', NULL, + '(675.11) Abscess of breast associated with childbirth, delivered, with or without mention of antepartum condition', '(675.11) Abscess of breast associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.12) Abscess of breast associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.12) Abscess of breast associated with childbirth, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.12''', NULL, + '(675.12) Abscess of breast associated with childbirth, delivered, with mention of postpartum complication', '(675.12) Abscess of breast associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.13) Abscess of breast associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.13) Abscess of breast associated with childbirth, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.13''', NULL, + '(675.13) Abscess of breast associated with childbirth, antepartum condition or complication', '(675.13) Abscess of breast associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.14) Abscess of breast associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.14) Abscess of breast associated with childbirth, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.14''', NULL, + '(675.14) Abscess of breast associated with childbirth, postpartum condition or complication', '(675.14) Abscess of breast associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.0''', NULL, + 'Infections of nipple associated with childbirth (675.0)', 'Infections of nipple associated with childbirth (675.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.00) Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.00) Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.00''', NULL, + '(675.00) Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable', '(675.00) Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.01) Infections of nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.01) Infections of nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.01''', NULL, + '(675.01) Infections of nipple associated with childbirth, delivered, with or without mention of antepartum condition', '(675.01) Infections of nipple associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.02) Infections of nipple associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.02) Infections of nipple associated with childbirth, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.02''', NULL, + '(675.02) Infections of nipple associated with childbirth, delivered, with mention of postpartum complication', '(675.02) Infections of nipple associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.03) Infections of nipple associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.03) Infections of nipple associated with childbirth, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.03''', NULL, + '(675.03) Infections of nipple associated with childbirth, antepartum condition or complication', '(675.03) Infections of nipple associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.04) Infections of nipple associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.04) Infections of nipple associated with childbirth, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.04''', NULL, + '(675.04) Infections of nipple associated with childbirth, postpartum condition or complication', '(675.04) Infections of nipple associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.2''', NULL, + 'Nonpurulent mastitis associated with childbirth (675.2)', 'Nonpurulent mastitis associated with childbirth (675.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.20) Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.20) Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.20''', NULL, + '(675.20) Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable', '(675.20) Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.21) Nonpurulent mastitis associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.21) Nonpurulent mastitis associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.21''', NULL, + '(675.21) Nonpurulent mastitis associated with childbirth, delivered, with or without mention of antepartum condition', '(675.21) Nonpurulent mastitis associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.22) Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.22) Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.22''', NULL, + '(675.22) Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication', '(675.22) Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.23) Nonpurulent mastitis associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.23) Nonpurulent mastitis associated with childbirth, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.23''', NULL, + '(675.23) Nonpurulent mastitis associated with childbirth, antepartum condition or complication', '(675.23) Nonpurulent mastitis associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.24) Nonpurulent mastitis associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.24) Nonpurulent mastitis associated with childbirth, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.24''', NULL, + '(675.24) Nonpurulent mastitis associated with childbirth, postpartum condition or complication', '(675.24) Nonpurulent mastitis associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.8''', NULL, + 'Other specified infections of the breast and nipple associated with childbirth (675.8)', 'Other specified infections of the breast and nipple associated with childbirth (675.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.80) Other specified infections of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.80) Other specified infections of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.80''', NULL, + '(675.80) Other specified infections of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable', '(675.80) Other specified infections of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.81) Other specified infections of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.81) Other specified infections of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.81''', NULL, + '(675.81) Other specified infections of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition', '(675.81) Other specified infections of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.82) Other specified infections of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.82) Other specified infections of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.82''', NULL, + '(675.82) Other specified infections of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication', '(675.82) Other specified infections of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.83) Other specified infections of the breast and nipple associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.83) Other specified infections of the breast and nipple associated with childbirth, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.83''', NULL, + '(675.83) Other specified infections of the breast and nipple associated with childbirth, antepartum condition or complication', '(675.83) Other specified infections of the breast and nipple associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.84) Other specified infections of the breast and nipple associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.84) Other specified infections of the breast and nipple associated with childbirth, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.84''', NULL, + '(675.84) Other specified infections of the breast and nipple associated with childbirth, postpartum condition or complication', '(675.84) Other specified infections of the breast and nipple associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.9''', NULL, + 'Unspecified infection of the breast and nipple associated with childbirth (675.9)', 'Unspecified infection of the breast and nipple associated with childbirth (675.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.90) Unspecified infection of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.90) Unspecified infection of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.90''', NULL, + '(675.90) Unspecified infection of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable', '(675.90) Unspecified infection of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.91) Unspecified infection of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.91) Unspecified infection of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.91''', NULL, + '(675.91) Unspecified infection of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition', '(675.91) Unspecified infection of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.92) Unspecified infection of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.92) Unspecified infection of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.92''', NULL, + '(675.92) Unspecified infection of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication', '(675.92) Unspecified infection of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.93) Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.93) Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.93''', NULL, + '(675.93) Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication', '(675.93) Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.94) Unspecified infection of the breast and nipple associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.94) Unspecified infection of the breast and nipple associated with childbirth, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.94''', NULL, + '(675.94) Unspecified infection of the breast and nipple associated with childbirth, postpartum condition or complication', '(675.94) Unspecified infection of the breast and nipple associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670''', NULL, + 'Major puerperal infection (670)', 'Major puerperal infection (670)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.0''', NULL, + 'Major puerperal infection, unspecified (670.0)', 'Major puerperal infection, unspecified (670.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.00) Major puerperal infection, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.00) Major puerperal infection, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.00''', NULL, + '(670.00) Major puerperal infection, unspecified as to episode of care or not applicable', '(670.00) Major puerperal infection, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.02) Major puerperal infection, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.02) Major puerperal infection, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.02''', NULL, + '(670.02) Major puerperal infection, delivered, with mention of postpartum complication', '(670.02) Major puerperal infection, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.04) Major puerperal infection, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.04) Major puerperal infection, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.04''', NULL, + '(670.04) Major puerperal infection, postpartum condition or complication', '(670.04) Major puerperal infection, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.8''', NULL, + 'Other major puerperal infection (670.8)', 'Other major puerperal infection (670.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\(670.82) Other major puerperal infection, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\(670.82) Other major puerperal infection, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.82''', NULL, + '(670.82) Other major puerperal infection, delivered, with mention of postpartum complication', '(670.82) Other major puerperal infection, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\(670.84) Other major puerperal infection, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\(670.84) Other major puerperal infection, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.84''', NULL, + '(670.84) Other major puerperal infection, postpartum condition or complication', '(670.84) Other major puerperal infection, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.1''', NULL, + 'Puerperal endometritis (670.1)', 'Puerperal endometritis (670.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\(670.12) Puerperal endometritis, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\(670.12) Puerperal endometritis, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.12''', NULL, + '(670.12) Puerperal endometritis, delivered, with mention of postpartum complication', '(670.12) Puerperal endometritis, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\(670.14) Puerperal endometritis, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\(670.14) Puerperal endometritis, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.14''', NULL, + '(670.14) Puerperal endometritis, postpartum condition or complication', '(670.14) Puerperal endometritis, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.2''', NULL, + 'Puerperal sepsis (670.2)', 'Puerperal sepsis (670.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\(670.20) Puerperal sepsis, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\(670.20) Puerperal sepsis, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.20''', NULL, + '(670.20) Puerperal sepsis, unspecified as to episode of care or not applicable', '(670.20) Puerperal sepsis, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\(670.24) Puerperal sepsis, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\(670.24) Puerperal sepsis, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.24''', NULL, + '(670.24) Puerperal sepsis, postpartum condition or complication', '(670.24) Puerperal sepsis, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673''', NULL, + 'Obstetrical pulmonary embolism (673)', 'Obstetrical pulmonary embolism (673)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.1''', NULL, + 'Amniotic fluid embolism (673.1)', 'Amniotic fluid embolism (673.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.10) Amniotic fluid embolism, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.10) Amniotic fluid embolism, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.10''', NULL, + '(673.10) Amniotic fluid embolism, unspecified as to episode of care or not applicable', '(673.10) Amniotic fluid embolism, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.11) Amniotic fluid embolism, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.11) Amniotic fluid embolism, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.11''', NULL, + '(673.11) Amniotic fluid embolism, delivered, with or without mention of antepartum condition', '(673.11) Amniotic fluid embolism, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.12) Amniotic fluid embolism, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.12) Amniotic fluid embolism, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.12''', NULL, + '(673.12) Amniotic fluid embolism, delivered, with mention of postpartum complication', '(673.12) Amniotic fluid embolism, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.13) Amniotic fluid embolism, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.13) Amniotic fluid embolism, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.13''', NULL, + '(673.13) Amniotic fluid embolism, antepartum condition or complication', '(673.13) Amniotic fluid embolism, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.14) Amniotic fluid embolism, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.14) Amniotic fluid embolism, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.14''', NULL, + '(673.14) Amniotic fluid embolism, postpartum condition or complication', '(673.14) Amniotic fluid embolism, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.0''', NULL, + 'Obstetrical air embolism (673.0)', 'Obstetrical air embolism (673.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.00) Obstetrical air embolism, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.00) Obstetrical air embolism, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.00''', NULL, + '(673.00) Obstetrical air embolism, unspecified as to episode of care or not applicable', '(673.00) Obstetrical air embolism, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.01) Obstetrical air embolism, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.01) Obstetrical air embolism, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.01''', NULL, + '(673.01) Obstetrical air embolism, delivered, with or without mention of antepartum condition', '(673.01) Obstetrical air embolism, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.02) Obstetrical air embolism, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.02) Obstetrical air embolism, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.02''', NULL, + '(673.02) Obstetrical air embolism, delivered, with mention of postpartum complication', '(673.02) Obstetrical air embolism, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.03) Obstetrical air embolism, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.03) Obstetrical air embolism, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.03''', NULL, + '(673.03) Obstetrical air embolism, antepartum condition or complication', '(673.03) Obstetrical air embolism, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.04) Obstetrical air embolism, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.04) Obstetrical air embolism, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.04''', NULL, + '(673.04) Obstetrical air embolism, postpartum condition or complication', '(673.04) Obstetrical air embolism, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.2''', NULL, + 'Obstetrical blood-clot embolism (673.2)', 'Obstetrical blood-clot embolism (673.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.20) Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.20) Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.20''', NULL, + '(673.20) Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable', '(673.20) Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.21) Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.21) Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.21''', NULL, + '(673.21) Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition', '(673.21) Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.22) Obstetrical blood-clot embolism, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.22) Obstetrical blood-clot embolism, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.22''', NULL, + '(673.22) Obstetrical blood-clot embolism, delivered, with mention of postpartum complication', '(673.22) Obstetrical blood-clot embolism, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.23) Obstetrical blood-clot embolism, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.23) Obstetrical blood-clot embolism, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.23''', NULL, + '(673.23) Obstetrical blood-clot embolism, antepartum condition or complication', '(673.23) Obstetrical blood-clot embolism, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.24) Obstetrical blood-clot embolism, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.24) Obstetrical blood-clot embolism, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.24''', NULL, + '(673.24) Obstetrical blood-clot embolism, postpartum condition or complication', '(673.24) Obstetrical blood-clot embolism, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.3''', NULL, + 'Obstetrical pyemic and septic embolism (673.3)', 'Obstetrical pyemic and septic embolism (673.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.30) Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.30) Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.30''', NULL, + '(673.30) Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable', '(673.30) Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.31) Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.31) Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.31''', NULL, + '(673.31) Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition', '(673.31) Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.32) Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.32) Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.32''', NULL, + '(673.32) Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication', '(673.32) Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.33) Obstetrical pyemic and septic embolism, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.33) Obstetrical pyemic and septic embolism, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.33''', NULL, + '(673.33) Obstetrical pyemic and septic embolism, antepartum condition or complication', '(673.33) Obstetrical pyemic and septic embolism, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.34) Obstetrical pyemic and septic embolism, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.34) Obstetrical pyemic and septic embolism, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.34''', NULL, + '(673.34) Obstetrical pyemic and septic embolism, postpartum condition or complication', '(673.34) Obstetrical pyemic and septic embolism, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.8''', NULL, + 'Other obstetrical pulmonary embolism (673.8)', 'Other obstetrical pulmonary embolism (673.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.80) Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.80) Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.80''', NULL, + '(673.80) Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable', '(673.80) Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.81) Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.81) Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.81''', NULL, + '(673.81) Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition', '(673.81) Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.82) Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.82) Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.82''', NULL, + '(673.82) Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication', '(673.82) Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.83) Other obstetrical pulmonary embolism, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.83) Other obstetrical pulmonary embolism, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.83''', NULL, + '(673.83) Other obstetrical pulmonary embolism, antepartum condition or complication', '(673.83) Other obstetrical pulmonary embolism, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.84) Other obstetrical pulmonary embolism, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.84) Other obstetrical pulmonary embolism, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.84''', NULL, + '(673.84) Other obstetrical pulmonary embolism, postpartum condition or complication', '(673.84) Other obstetrical pulmonary embolism, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674''', NULL, + 'Other and unspecified complications of the puerperium, not elsewhere classified (674)', 'Other and unspecified complications of the puerperium, not elsewhere classified (674)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.0''', NULL, + 'Cerebrovascular disorders in the puerperium (674.0)', 'Cerebrovascular disorders in the puerperium (674.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.00) Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.00) Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.00''', NULL, + '(674.00) Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable', '(674.00) Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.01) Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.01) Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.01''', NULL, + '(674.01) Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition', '(674.01) Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.02) Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.02) Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.02''', NULL, + '(674.02) Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication', '(674.02) Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.03) Cerebrovascular disorders in the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.03) Cerebrovascular disorders in the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.03''', NULL, + '(674.03) Cerebrovascular disorders in the puerperium, antepartum condition or complication', '(674.03) Cerebrovascular disorders in the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.04) Cerebrovascular disorders in the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.04) Cerebrovascular disorders in the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.04''', NULL, + '(674.04) Cerebrovascular disorders in the puerperium, postpartum condition or complication', '(674.04) Cerebrovascular disorders in the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.1''', NULL, + 'Disruption of cesarean wound (674.1)', 'Disruption of cesarean wound (674.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.10) Disruption of cesarean wound, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.10) Disruption of cesarean wound, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.10''', NULL, + '(674.10) Disruption of cesarean wound, unspecified as to episode of care or not applicable', '(674.10) Disruption of cesarean wound, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.12) Disruption of cesarean wound, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.12) Disruption of cesarean wound, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.12''', NULL, + '(674.12) Disruption of cesarean wound, delivered, with mention of postpartum complication', '(674.12) Disruption of cesarean wound, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.14) Disruption of cesarean wound, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.14) Disruption of cesarean wound, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.14''', NULL, + '(674.14) Disruption of cesarean wound, postpartum condition or complication', '(674.14) Disruption of cesarean wound, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.2''', NULL, + 'Disruption of obstetrical perineal wound (674.2)', 'Disruption of obstetrical perineal wound (674.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.20) Disruption of perineal wound, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.20) Disruption of perineal wound, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.20''', NULL, + '(674.20) Disruption of perineal wound, unspecified as to episode of care or not applicable', '(674.20) Disruption of perineal wound, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.22) Disruption of perineal wound, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.22) Disruption of perineal wound, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.22''', NULL, + '(674.22) Disruption of perineal wound, delivered, with mention of postpartum complication', '(674.22) Disruption of perineal wound, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.24) Disruption of perineal wound, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.24) Disruption of perineal wound, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.24''', NULL, + '(674.24) Disruption of perineal wound, postpartum condition or complication', '(674.24) Disruption of perineal wound, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.3''', NULL, + 'Other complications of obstetrical surgical wounds (674.3)', 'Other complications of obstetrical surgical wounds (674.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.30) Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.30) Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.30''', NULL, + '(674.30) Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable', '(674.30) Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.32) Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.32) Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.32''', NULL, + '(674.32) Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication', '(674.32) Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.34) Other complications of obstetrical surgical wounds, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.34) Other complications of obstetrical surgical wounds, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.34''', NULL, + '(674.34) Other complications of obstetrical surgical wounds, postpartum condition or complication', '(674.34) Other complications of obstetrical surgical wounds, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.8''', NULL, + 'Other complications of the puerperium (674.8)', 'Other complications of the puerperium (674.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.80) Other complications of puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.80) Other complications of puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.80''', NULL, + '(674.80) Other complications of puerperium, unspecified as to episode of care or not applicable', '(674.80) Other complications of puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.82) Other complications of puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.82) Other complications of puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.82''', NULL, + '(674.82) Other complications of puerperium, delivered, with mention of postpartum complication', '(674.82) Other complications of puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.84) Other complications of puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.84) Other complications of puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.84''', NULL, + '(674.84) Other complications of puerperium, postpartum condition or complication', '(674.84) Other complications of puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.5''', NULL, + 'Peripartum cardiomyopathy (674.5)', 'Peripartum cardiomyopathy (674.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.50) Peripartum cardiomyopathy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.50) Peripartum cardiomyopathy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.50''', NULL, + '(674.50) Peripartum cardiomyopathy, unspecified as to episode of care or not applicable', '(674.50) Peripartum cardiomyopathy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.51) Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.51) Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.51''', NULL, + '(674.51) Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition', '(674.51) Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.52) Peripartum cardiomyopathy, delivered, with mention of postpartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.52) Peripartum cardiomyopathy, delivered, with mention of postpartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.52''', NULL, + '(674.52) Peripartum cardiomyopathy, delivered, with mention of postpartum condition', '(674.52) Peripartum cardiomyopathy, delivered, with mention of postpartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.53) Peripartum cardiomyopathy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.53) Peripartum cardiomyopathy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.53''', NULL, + '(674.53) Peripartum cardiomyopathy, antepartum condition or complication', '(674.53) Peripartum cardiomyopathy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.54) Peripartum cardiomyopathy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.54) Peripartum cardiomyopathy, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.54''', NULL, + '(674.54) Peripartum cardiomyopathy, postpartum condition or complication', '(674.54) Peripartum cardiomyopathy, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.4''', NULL, + 'Placental polyp (674.4)', 'Placental polyp (674.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.40) Placental polyp, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.40) Placental polyp, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.40''', NULL, + '(674.40) Placental polyp, unspecified as to episode of care or not applicable', '(674.40) Placental polyp, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.42) Placental polyp, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.42) Placental polyp, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.42''', NULL, + '(674.42) Placental polyp, delivered, with mention of postpartum complication', '(674.42) Placental polyp, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.44) Placental polyp, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.44) Placental polyp, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.44''', NULL, + '(674.44) Placental polyp, postpartum condition or complication', '(674.44) Placental polyp, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.9''', NULL, + 'Unspecified complications of the puerperium (674.9)', 'Unspecified complications of the puerperium (674.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.90) Unspecified complications of puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.90) Unspecified complications of puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.90''', NULL, + '(674.90) Unspecified complications of puerperium, unspecified as to episode of care or not applicable', '(674.90) Unspecified complications of puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.92) Unspecified complications of puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.92) Unspecified complications of puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.92''', NULL, + '(674.92) Unspecified complications of puerperium, delivered, with mention of postpartum complication', '(674.92) Unspecified complications of puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.94) Unspecified complications of puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.94) Unspecified complications of puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.94''', NULL, + '(674.94) Unspecified complications of puerperium, postpartum condition or complication', '(674.94) Unspecified complications of puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676''', NULL, + 'Other disorders of the breast associated with childbirth and disorders of lactation (676)', 'Other disorders of the breast associated with childbirth and disorders of lactation (676)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.1''', NULL, + 'Cracked nipple associated with childbirth (676.1)', 'Cracked nipple associated with childbirth (676.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.10) Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.10) Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.10''', NULL, + '(676.10) Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable', '(676.10) Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.11) Cracked nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.11) Cracked nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.11''', NULL, + '(676.11) Cracked nipple associated with childbirth, delivered, with or without mention of antepartum condition', '(676.11) Cracked nipple associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.12) Cracked nipple associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.12) Cracked nipple associated with childbirth, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.12''', NULL, + '(676.12) Cracked nipple associated with childbirth, delivered, with mention of postpartum complication', '(676.12) Cracked nipple associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.13) Cracked nipple associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.13) Cracked nipple associated with childbirth, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.13''', NULL, + '(676.13) Cracked nipple associated with childbirth, antepartum condition or complication', '(676.13) Cracked nipple associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.14) Cracked nipple associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.14) Cracked nipple associated with childbirth, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.14''', NULL, + '(676.14) Cracked nipple associated with childbirth, postpartum condition or complication', '(676.14) Cracked nipple associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.2''', NULL, + 'Engorgement of breasts associated with childbirth (676.2)', 'Engorgement of breasts associated with childbirth (676.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.20) Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.20) Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.20''', NULL, + '(676.20) Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable', '(676.20) Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.21) Engorgement of breasts associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.21) Engorgement of breasts associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.21''', NULL, + '(676.21) Engorgement of breasts associated with childbirth, delivered, with or without mention of antepartum condition', '(676.21) Engorgement of breasts associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.22) Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.22) Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.22''', NULL, + '(676.22) Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication', '(676.22) Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.23) Engorgement of breasts associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.23) Engorgement of breasts associated with childbirth, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.23''', NULL, + '(676.23) Engorgement of breasts associated with childbirth, antepartum condition or complication', '(676.23) Engorgement of breasts associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.24) Engorgement of breasts associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.24) Engorgement of breasts associated with childbirth, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.24''', NULL, + '(676.24) Engorgement of breasts associated with childbirth, postpartum condition or complication', '(676.24) Engorgement of breasts associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.4''', NULL, + 'Failure of lactation (676.4)', 'Failure of lactation (676.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.40) Failure of lactation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.40) Failure of lactation, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.40''', NULL, + '(676.40) Failure of lactation, unspecified as to episode of care or not applicable', '(676.40) Failure of lactation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.41) Failure of lactation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.41) Failure of lactation, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.41''', NULL, + '(676.41) Failure of lactation, delivered, with or without mention of antepartum condition', '(676.41) Failure of lactation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.42) Failure of lactation, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.42) Failure of lactation, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.42''', NULL, + '(676.42) Failure of lactation, delivered, with mention of postpartum complication', '(676.42) Failure of lactation, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.43) Failure of lactation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.43) Failure of lactation, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.43''', NULL, + '(676.43) Failure of lactation, antepartum condition or complication', '(676.43) Failure of lactation, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.44) Failure of lactation, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.44) Failure of lactation, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.44''', NULL, + '(676.44) Failure of lactation, postpartum condition or complication', '(676.44) Failure of lactation, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.6''', NULL, + 'Galactorrhea (676.6)', 'Galactorrhea (676.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.60) Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.60) Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.60''', NULL, + '(676.60) Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable', '(676.60) Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.61) Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.61) Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.61''', NULL, + '(676.61) Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition', '(676.61) Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.62) Galactorrhea associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.62) Galactorrhea associated with childbirth, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.62''', NULL, + '(676.62) Galactorrhea associated with childbirth, delivered, with mention of postpartum complication', '(676.62) Galactorrhea associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.63) Galactorrhea associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.63) Galactorrhea associated with childbirth, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.63''', NULL, + '(676.63) Galactorrhea associated with childbirth, antepartum condition or complication', '(676.63) Galactorrhea associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.64) Galactorrhea associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.64) Galactorrhea associated with childbirth, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.64''', NULL, + '(676.64) Galactorrhea associated with childbirth, postpartum condition or complication', '(676.64) Galactorrhea associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.3''', NULL, + 'Other and unspecified disorder of breast associated with childbirth (676.3)', 'Other and unspecified disorder of breast associated with childbirth (676.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.30) Other and unspecified disorder of breast associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.30) Other and unspecified disorder of breast associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.30''', NULL, + '(676.30) Other and unspecified disorder of breast associated with childbirth, unspecified as to episode of care or not applicable', '(676.30) Other and unspecified disorder of breast associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.31) Other and unspecified disorder of breast associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.31) Other and unspecified disorder of breast associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.31''', NULL, + '(676.31) Other and unspecified disorder of breast associated with childbirth, delivered, with or without mention of antepartum condition', '(676.31) Other and unspecified disorder of breast associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.32) Other and unspecified disorder of breast associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.32) Other and unspecified disorder of breast associated with childbirth, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.32''', NULL, + '(676.32) Other and unspecified disorder of breast associated with childbirth, delivered, with mention of postpartum complication', '(676.32) Other and unspecified disorder of breast associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.33) Other and unspecified disorder of breast associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.33) Other and unspecified disorder of breast associated with childbirth, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.33''', NULL, + '(676.33) Other and unspecified disorder of breast associated with childbirth, antepartum condition or complication', '(676.33) Other and unspecified disorder of breast associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.34) Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.34) Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.34''', NULL, + '(676.34) Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication', '(676.34) Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.8''', NULL, + 'Other disorders of lactation (676.8)', 'Other disorders of lactation (676.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.80) Other disorders of lactation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.80) Other disorders of lactation, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.80''', NULL, + '(676.80) Other disorders of lactation, unspecified as to episode of care or not applicable', '(676.80) Other disorders of lactation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.81) Other disorders of lactation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.81) Other disorders of lactation, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.81''', NULL, + '(676.81) Other disorders of lactation, delivered, with or without mention of antepartum condition', '(676.81) Other disorders of lactation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.82) Other disorders of lactation, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.82) Other disorders of lactation, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.82''', NULL, + '(676.82) Other disorders of lactation, delivered, with mention of postpartum complication', '(676.82) Other disorders of lactation, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.83) Other disorders of lactation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.83) Other disorders of lactation, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.83''', NULL, + '(676.83) Other disorders of lactation, antepartum condition or complication', '(676.83) Other disorders of lactation, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.84) Other disorders of lactation, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.84) Other disorders of lactation, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.84''', NULL, + '(676.84) Other disorders of lactation, postpartum condition or complication', '(676.84) Other disorders of lactation, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.0''', NULL, + 'Retracted nipple associated with childbirth (676.0)', 'Retracted nipple associated with childbirth (676.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.00) Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.00) Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.00''', NULL, + '(676.00) Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable', '(676.00) Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.01) Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.01) Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.01''', NULL, + '(676.01) Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition', '(676.01) Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.02) Retracted nipple associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.02) Retracted nipple associated with childbirth, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.02''', NULL, + '(676.02) Retracted nipple associated with childbirth, delivered, with mention of postpartum complication', '(676.02) Retracted nipple associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.03) Retracted nipple associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.03) Retracted nipple associated with childbirth, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.03''', NULL, + '(676.03) Retracted nipple associated with childbirth, antepartum condition or complication', '(676.03) Retracted nipple associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.04) Retracted nipple associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.04) Retracted nipple associated with childbirth, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.04''', NULL, + '(676.04) Retracted nipple associated with childbirth, postpartum condition or complication', '(676.04) Retracted nipple associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.5''', NULL, + 'Suppressed lactation (676.5)', 'Suppressed lactation (676.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.50) Suppressed lactation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.50) Suppressed lactation, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.50''', NULL, + '(676.50) Suppressed lactation, unspecified as to episode of care or not applicable', '(676.50) Suppressed lactation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.51) Suppressed lactation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.51) Suppressed lactation, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.51''', NULL, + '(676.51) Suppressed lactation, delivered, with or without mention of antepartum condition', '(676.51) Suppressed lactation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.52) Suppressed lactation, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.52) Suppressed lactation, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.52''', NULL, + '(676.52) Suppressed lactation, delivered, with mention of postpartum complication', '(676.52) Suppressed lactation, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.53) Suppressed lactation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.53) Suppressed lactation, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.53''', NULL, + '(676.53) Suppressed lactation, antepartum condition or complication', '(676.53) Suppressed lactation, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.54) Suppressed lactation, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.54) Suppressed lactation, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.54''', NULL, + '(676.54) Suppressed lactation, postpartum condition or complication', '(676.54) Suppressed lactation, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.9''', NULL, + 'Unspecified disorder of lactation (676.9)', 'Unspecified disorder of lactation (676.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.90) Unspecified disorder of lactation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.90) Unspecified disorder of lactation, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.90''', NULL, + '(676.90) Unspecified disorder of lactation, unspecified as to episode of care or not applicable', '(676.90) Unspecified disorder of lactation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.91) Unspecified disorder of lactation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.91) Unspecified disorder of lactation, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.91''', NULL, + '(676.91) Unspecified disorder of lactation, delivered, with or without mention of antepartum condition', '(676.91) Unspecified disorder of lactation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.92) Unspecified disorder of lactation, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.92) Unspecified disorder of lactation, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.92''', NULL, + '(676.92) Unspecified disorder of lactation, delivered, with mention of postpartum complication', '(676.92) Unspecified disorder of lactation, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.93) Unspecified disorder of lactation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.93) Unspecified disorder of lactation, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.93''', NULL, + '(676.93) Unspecified disorder of lactation, antepartum condition or complication', '(676.93) Unspecified disorder of lactation, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.94) Unspecified disorder of lactation, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.94) Unspecified disorder of lactation, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.94''', NULL, + '(676.94) Unspecified disorder of lactation, postpartum condition or complication', '(676.94) Unspecified disorder of lactation, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''672''', NULL, + 'Pyrexia of unknown origin during the puerperium (672)', 'Pyrexia of unknown origin during the puerperium (672)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''672.0''', NULL, + 'Pyrexia of unknown origin during the puerperium (672.0)', 'Pyrexia of unknown origin during the puerperium (672.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.00) Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.00) Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''672.00''', NULL, + '(672.00) Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable', '(672.00) Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.02) Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.02) Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''672.02''', NULL, + '(672.02) Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication', '(672.02) Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.04) Pyrexia of unknown origin during the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.04) Pyrexia of unknown origin during the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''672.04''', NULL, + '(672.04) Pyrexia of unknown origin during the puerperium, postpartum condition or complication', '(672.04) Pyrexia of unknown origin during the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671''', NULL, + 'Venous complications in pregnancy and the puerperium (671)', 'Venous complications in pregnancy and the puerperium (671)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.3''', NULL, + 'Deep phlebothrombosis, antepartum (671.3)', 'Deep phlebothrombosis, antepartum (671.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.30) Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.30) Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.30''', NULL, + '(671.30) Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable', '(671.30) Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.31) Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.31) Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.31''', NULL, + '(671.31) Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition', '(671.31) Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.33) Deep phlebothrombosis, antepartum, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.33) Deep phlebothrombosis, antepartum, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.33''', NULL, + '(671.33) Deep phlebothrombosis, antepartum, antepartum condition or complication', '(671.33) Deep phlebothrombosis, antepartum, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.4''', NULL, + 'Deep phlebothrombosis, postpartum (671.4)', 'Deep phlebothrombosis, postpartum (671.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.40) Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.40) Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.40''', NULL, + '(671.40) Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable', '(671.40) Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.42) Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.42) Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.42''', NULL, + '(671.42) Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication', '(671.42) Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.44) Deep phlebothrombosis, postpartum, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.44) Deep phlebothrombosis, postpartum, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.44''', NULL, + '(671.44) Deep phlebothrombosis, postpartum, postpartum condition or complication', '(671.44) Deep phlebothrombosis, postpartum, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.5''', NULL, + 'Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)', 'Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.50) Other phlebitis and thrombosis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.50) Other phlebitis and thrombosis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.50''', NULL, + '(671.50) Other phlebitis and thrombosis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.50) Other phlebitis and thrombosis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.51) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.51) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.51''', NULL, + '(671.51) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.51) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.52) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.52) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.52''', NULL, + '(671.52) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.52) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.53) Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.53) Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.53''', NULL, + '(671.53) Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication', '(671.53) Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.54) Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.54) Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.54''', NULL, + '(671.54) Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication', '(671.54) Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.8''', NULL, + 'Other venous complications in pregnancy and the puerperium (671.8)', 'Other venous complications in pregnancy and the puerperium (671.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.80) Other venous complications of pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.80) Other venous complications of pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.80''', NULL, + '(671.80) Other venous complications of pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.80) Other venous complications of pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.81) Other venous complications of pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.81) Other venous complications of pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.81''', NULL, + '(671.81) Other venous complications of pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.81) Other venous complications of pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.82) Other venous complications of pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.82) Other venous complications of pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.82''', NULL, + '(671.82) Other venous complications of pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.82) Other venous complications of pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.83) Other venous complications of pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.83) Other venous complications of pregnancy and the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.83''', NULL, + '(671.83) Other venous complications of pregnancy and the puerperium, antepartum condition or complication', '(671.83) Other venous complications of pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.84) Other venous complications of pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.84) Other venous complications of pregnancy and the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.84''', NULL, + '(671.84) Other venous complications of pregnancy and the puerperium, postpartum condition or complication', '(671.84) Other venous complications of pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.2''', NULL, + 'Superficial thrombophlebitis in pregnancy and the puerperium (671.2)', 'Superficial thrombophlebitis in pregnancy and the puerperium (671.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.20) Superficial thrombophlebitis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.20) Superficial thrombophlebitis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.20''', NULL, + '(671.20) Superficial thrombophlebitis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.20) Superficial thrombophlebitis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.21) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.21) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.21''', NULL, + '(671.21) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.21) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.22) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.22) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.22''', NULL, + '(671.22) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.22) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.23) Superficial thrombophlebitis complicating pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.23) Superficial thrombophlebitis complicating pregnancy and the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.23''', NULL, + '(671.23) Superficial thrombophlebitis complicating pregnancy and the puerperium, antepartum condition or complication', '(671.23) Superficial thrombophlebitis complicating pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.24) Superficial thrombophlebitis complicating pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.24) Superficial thrombophlebitis complicating pregnancy and the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.24''', NULL, + '(671.24) Superficial thrombophlebitis complicating pregnancy and the puerperium, postpartum condition or complication', '(671.24) Superficial thrombophlebitis complicating pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.9''', NULL, + 'Unspecified venous complication in pregnancy and the puerperium (671.9)', 'Unspecified venous complication in pregnancy and the puerperium (671.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.90) Unspecified venous complication of pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.90) Unspecified venous complication of pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.90''', NULL, + '(671.90) Unspecified venous complication of pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.90) Unspecified venous complication of pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.91) Unspecified venous complication of pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.91) Unspecified venous complication of pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.91''', NULL, + '(671.91) Unspecified venous complication of pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.91) Unspecified venous complication of pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.92) Unspecified venous complication of pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.92) Unspecified venous complication of pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.92''', NULL, + '(671.92) Unspecified venous complication of pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.92) Unspecified venous complication of pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.93) Unspecified venous complication of pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.93) Unspecified venous complication of pregnancy and the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.93''', NULL, + '(671.93) Unspecified venous complication of pregnancy and the puerperium, antepartum condition or complication', '(671.93) Unspecified venous complication of pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.94) Unspecified venous complication of pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.94) Unspecified venous complication of pregnancy and the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.94''', NULL, + '(671.94) Unspecified venous complication of pregnancy and the puerperium, postpartum condition or complication', '(671.94) Unspecified venous complication of pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.0''', NULL, + 'Varicose veins of legs in pregnancy and the puerperium (671.0)', 'Varicose veins of legs in pregnancy and the puerperium (671.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.00) Varicose veins of legs complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.00) Varicose veins of legs complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.00''', NULL, + '(671.00) Varicose veins of legs complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.00) Varicose veins of legs complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.01) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.01) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.01''', NULL, + '(671.01) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.01) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.02) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.02) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.02''', NULL, + '(671.02) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.02) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.03) Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.03) Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.03''', NULL, + '(671.03) Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication', '(671.03) Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.04) Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.04) Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.04''', NULL, + '(671.04) Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication', '(671.04) Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.1''', NULL, + 'Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)', 'Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.10) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.10) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.10''', NULL, + '(671.10) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.10) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.11) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.11) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.11''', NULL, + '(671.11) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.11) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.12) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.12) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.12''', NULL, + '(671.12) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.12) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.13) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.13) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.13''', NULL, + '(671.13) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, antepartum condition or complication', '(671.13) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.14) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.14) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.14''', NULL, + '(671.14) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, postpartum condition or complication', '(671.14) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''630'' AND ''633.99''', NULL, + 'Ectopic and molar pregnancy (630-633.99)', 'Ectopic and molar pregnancy (630-633.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\(630) Hydatidiform mole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\(630) Hydatidiform mole\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''630''', NULL, + '(630) Hydatidiform mole', '(630) Hydatidiform mole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\(632) Missed abortion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\(632) Missed abortion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''632''', NULL, + '(632) Missed abortion', '(632) Missed abortion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633''', NULL, + 'Ectopic pregnancy (633)', 'Ectopic pregnancy (633)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.0''', NULL, + 'Abdominal pregnancy (633.0)', 'Abdominal pregnancy (633.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\(633.00) Abdominal pregnancy without intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\(633.00) Abdominal pregnancy without intrauterine pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.00''', NULL, + '(633.00) Abdominal pregnancy without intrauterine pregnancy', '(633.00) Abdominal pregnancy without intrauterine pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\(633.01) Abdominal pregnancy with intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\(633.01) Abdominal pregnancy with intrauterine pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.01''', NULL, + '(633.01) Abdominal pregnancy with intrauterine pregnancy', '(633.01) Abdominal pregnancy with intrauterine pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.8''', NULL, + 'Other ectopic pregnancy (633.8)', 'Other ectopic pregnancy (633.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\(633.80) Other ectopic pregnancy without intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\(633.80) Other ectopic pregnancy without intrauterine pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.80''', NULL, + '(633.80) Other ectopic pregnancy without intrauterine pregnancy', '(633.80) Other ectopic pregnancy without intrauterine pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\(633.81) Other ectopic pregnancy with intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\(633.81) Other ectopic pregnancy with intrauterine pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.81''', NULL, + '(633.81) Other ectopic pregnancy with intrauterine pregnancy', '(633.81) Other ectopic pregnancy with intrauterine pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.2''', NULL, + 'Ovarian pregnancy (633.2)', 'Ovarian pregnancy (633.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\(633.20) Ovarian pregnancy without intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\(633.20) Ovarian pregnancy without intrauterine pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.20''', NULL, + '(633.20) Ovarian pregnancy without intrauterine pregnancy', '(633.20) Ovarian pregnancy without intrauterine pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\(633.21) Ovarian pregnancy with intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\(633.21) Ovarian pregnancy with intrauterine pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.21''', NULL, + '(633.21) Ovarian pregnancy with intrauterine pregnancy', '(633.21) Ovarian pregnancy with intrauterine pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.1''', NULL, + 'Tubal pregnancy (633.1)', 'Tubal pregnancy (633.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\(633.10) Tubal pregnancy without intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\(633.10) Tubal pregnancy without intrauterine pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.10''', NULL, + '(633.10) Tubal pregnancy without intrauterine pregnancy', '(633.10) Tubal pregnancy without intrauterine pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\(633.11) Tubal pregnancy with intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\(633.11) Tubal pregnancy with intrauterine pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.11''', NULL, + '(633.11) Tubal pregnancy with intrauterine pregnancy', '(633.11) Tubal pregnancy with intrauterine pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.9''', NULL, + 'Unspecified ectopic pregnancy (633.9)', 'Unspecified ectopic pregnancy (633.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\(633.90) Unspecified ectopic pregnancy without intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\(633.90) Unspecified ectopic pregnancy without intrauterine pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.90''', NULL, + '(633.90) Unspecified ectopic pregnancy without intrauterine pregnancy', '(633.90) Unspecified ectopic pregnancy without intrauterine pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\(633.91) Unspecified ectopic pregnancy with intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\(633.91) Unspecified ectopic pregnancy with intrauterine pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.91''', NULL, + '(633.91) Unspecified ectopic pregnancy with intrauterine pregnancy', '(633.91) Unspecified ectopic pregnancy with intrauterine pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''631''', NULL, + 'Other abnormal product of conception (631)', 'Other abnormal product of conception (631)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\(631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\(631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG''', NULL, + '(631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy', '(631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\(631.8) Other abnormal products of conception\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\(631.8) Other abnormal products of conception\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''631.8''', NULL, + '(631.8) Other abnormal products of conception', '(631.8) Other abnormal products of conception', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''650'' AND ''659.99''', NULL, + 'Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)', 'Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\(650) Normal delivery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\(650) Normal delivery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''650''', NULL, + '(650) Normal delivery', '(650) Normal delivery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654''', NULL, + 'Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)', 'Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.5''', NULL, + 'Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)', 'Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.50) Cervical incompetence, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.50) Cervical incompetence, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.50''', NULL, + '(654.50) Cervical incompetence, unspecified as to episode of care or not applicable', '(654.50) Cervical incompetence, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.51) Cervical incompetence, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.51) Cervical incompetence, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.51''', NULL, + '(654.51) Cervical incompetence, delivered, with or without mention of antepartum condition', '(654.51) Cervical incompetence, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.52) Cervical incompetence, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.52) Cervical incompetence, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.52''', NULL, + '(654.52) Cervical incompetence, delivered, with mention of postpartum complication', '(654.52) Cervical incompetence, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.53) Cervical incompetence, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.53) Cervical incompetence, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.53''', NULL, + '(654.53) Cervical incompetence, antepartum condition or complication', '(654.53) Cervical incompetence, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.54) Cervical incompetence, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.54) Cervical incompetence, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.54''', NULL, + '(654.54) Cervical incompetence, postpartum condition or complication', '(654.54) Cervical incompetence, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.0''', NULL, + 'Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)', 'Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.00) Congenital abnormalities of uterus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.00) Congenital abnormalities of uterus, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.00''', NULL, + '(654.00) Congenital abnormalities of uterus, unspecified as to episode of care or not applicable', '(654.00) Congenital abnormalities of uterus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.01) Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.01) Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.01''', NULL, + '(654.01) Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition', '(654.01) Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.02) Congenital abnormalities of uterus, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.02) Congenital abnormalities of uterus, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.02''', NULL, + '(654.02) Congenital abnormalities of uterus, delivered, with mention of postpartum complication', '(654.02) Congenital abnormalities of uterus, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.03) Congenital abnormalities of uterus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.03) Congenital abnormalities of uterus, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.03''', NULL, + '(654.03) Congenital abnormalities of uterus, antepartum condition or complication', '(654.03) Congenital abnormalities of uterus, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.04) Congenital abnormalities of uterus, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.04) Congenital abnormalities of uterus, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.04''', NULL, + '(654.04) Congenital abnormalities of uterus, postpartum condition or complication', '(654.04) Congenital abnormalities of uterus, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.7''', NULL, + 'Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)', 'Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.70) Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.70) Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.70''', NULL, + '(654.70) Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable', '(654.70) Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.71) Congenital or acquired abnormality of vagina, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.71) Congenital or acquired abnormality of vagina, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.71''', NULL, + '(654.71) Congenital or acquired abnormality of vagina, delivered, with or without mention of antepartum condition', '(654.71) Congenital or acquired abnormality of vagina, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.72) Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.72) Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.72''', NULL, + '(654.72) Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication', '(654.72) Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.73) Congenital or acquired abnormality of vagina, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.73) Congenital or acquired abnormality of vagina, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.73''', NULL, + '(654.73) Congenital or acquired abnormality of vagina, antepartum condition or complication', '(654.73) Congenital or acquired abnormality of vagina, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.74) Congenital or acquired abnormality of vagina, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.74) Congenital or acquired abnormality of vagina, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.74''', NULL, + '(654.74) Congenital or acquired abnormality of vagina, postpartum condition or complication', '(654.74) Congenital or acquired abnormality of vagina, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.8''', NULL, + 'Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)', 'Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.80) Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.80) Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.80''', NULL, + '(654.80) Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable', '(654.80) Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.81) Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.81) Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.81''', NULL, + '(654.81) Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition', '(654.81) Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.82) Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.82) Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.82''', NULL, + '(654.82) Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication', '(654.82) Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.83) Congenital or acquired abnormality of vulva, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.83) Congenital or acquired abnormality of vulva, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.83''', NULL, + '(654.83) Congenital or acquired abnormality of vulva, antepartum condition or complication', '(654.83) Congenital or acquired abnormality of vulva, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.84) Congenital or acquired abnormality of vulva, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.84) Congenital or acquired abnormality of vulva, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.84''', NULL, + '(654.84) Congenital or acquired abnormality of vulva, postpartum condition or complication', '(654.84) Congenital or acquired abnormality of vulva, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.4''', NULL, + 'Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)', 'Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.40) Other abnormalities in shape or position of gravid uterus and of neighboring structures, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.40) Other abnormalities in shape or position of gravid uterus and of neighboring structures, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.40''', NULL, + '(654.40) Other abnormalities in shape or position of gravid uterus and of neighboring structures, unspecified as to episode of care or not applicable', '(654.40) Other abnormalities in shape or position of gravid uterus and of neighboring structures, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.41) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.41) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.41''', NULL, + '(654.41) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with or without mention of antepartum condition', '(654.41) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.42) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.42) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.42''', NULL, + '(654.42) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with mention of postpartum complication', '(654.42) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.43) Other abnormalities in shape or position of gravid uterus and of neighboring structures, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.43) Other abnormalities in shape or position of gravid uterus and of neighboring structures, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.43''', NULL, + '(654.43) Other abnormalities in shape or position of gravid uterus and of neighboring structures, antepartum condition or complication', '(654.43) Other abnormalities in shape or position of gravid uterus and of neighboring structures, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.44) Other abnormalities in shape or position of gravid uterus and of neighboring structures, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.44) Other abnormalities in shape or position of gravid uterus and of neighboring structures, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.44''', NULL, + '(654.44) Other abnormalities in shape or position of gravid uterus and of neighboring structures, postpartum condition or complication', '(654.44) Other abnormalities in shape or position of gravid uterus and of neighboring structures, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.9''', NULL, + 'Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)', 'Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.90) Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.90) Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.90''', NULL, + '(654.90) Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable', '(654.90) Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.91) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.91) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.91''', NULL, + '(654.91) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition', '(654.91) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.92) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.92) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.92''', NULL, + '(654.92) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication', '(654.92) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.93) Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.93) Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.93''', NULL, + '(654.93) Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication', '(654.93) Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.94) Other and unspecified abnormality of organs and soft tissues of pelvis, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.94) Other and unspecified abnormality of organs and soft tissues of pelvis, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.94''', NULL, + '(654.94) Other and unspecified abnormality of organs and soft tissues of pelvis, postpartum condition or complication', '(654.94) Other and unspecified abnormality of organs and soft tissues of pelvis, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.6''', NULL, + 'Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)', 'Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.60) Other congenital or acquired abnormality of cervix, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.60) Other congenital or acquired abnormality of cervix, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.60''', NULL, + '(654.60) Other congenital or acquired abnormality of cervix, unspecified as to episode of care or not applicable', '(654.60) Other congenital or acquired abnormality of cervix, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.61) Other congenital or acquired abnormality of cervix, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.61) Other congenital or acquired abnormality of cervix, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.61''', NULL, + '(654.61) Other congenital or acquired abnormality of cervix, delivered, with or without mention of antepartum condition', '(654.61) Other congenital or acquired abnormality of cervix, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.62) Other congenital or acquired abnormality of cervix, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.62) Other congenital or acquired abnormality of cervix, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.62''', NULL, + '(654.62) Other congenital or acquired abnormality of cervix, delivered, with mention of postpartum complication', '(654.62) Other congenital or acquired abnormality of cervix, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.63) Other congenital or acquired abnormality of cervix, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.63) Other congenital or acquired abnormality of cervix, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.63''', NULL, + '(654.63) Other congenital or acquired abnormality of cervix, antepartum condition or complication', '(654.63) Other congenital or acquired abnormality of cervix, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.64) Other congenital or acquired abnormality of cervix, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.64) Other congenital or acquired abnormality of cervix, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.64''', NULL, + '(654.64) Other congenital or acquired abnormality of cervix, postpartum condition or complication', '(654.64) Other congenital or acquired abnormality of cervix, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.2''', NULL, + 'Previous cesarean section complicating pregnancy or childbirth (654.2)', 'Previous cesarean section complicating pregnancy or childbirth (654.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.20) Previous cesarean delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.20) Previous cesarean delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.20''', NULL, + '(654.20) Previous cesarean delivery, unspecified as to episode of care or not applicable', '(654.20) Previous cesarean delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.21) Previous cesarean delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.21) Previous cesarean delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.21''', NULL, + '(654.21) Previous cesarean delivery, delivered, with or without mention of antepartum condition', '(654.21) Previous cesarean delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.23) Previous cesarean delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.23) Previous cesarean delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.23''', NULL, + '(654.23) Previous cesarean delivery, antepartum condition or complication', '(654.23) Previous cesarean delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.3''', NULL, + 'Retroverted and incarcerated gravid uterus (654.3)', 'Retroverted and incarcerated gravid uterus (654.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.30) Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.30) Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.30''', NULL, + '(654.30) Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable', '(654.30) Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.31) Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.31) Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.31''', NULL, + '(654.31) Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition', '(654.31) Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.32) Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.32) Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.32''', NULL, + '(654.32) Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication', '(654.32) Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.33) Retroverted and incarcerated gravid uterus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.33) Retroverted and incarcerated gravid uterus, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.33''', NULL, + '(654.33) Retroverted and incarcerated gravid uterus, antepartum condition or complication', '(654.33) Retroverted and incarcerated gravid uterus, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.34) Retroverted and incarcerated gravid uterus, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.34) Retroverted and incarcerated gravid uterus, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.34''', NULL, + '(654.34) Retroverted and incarcerated gravid uterus, postpartum condition or complication', '(654.34) Retroverted and incarcerated gravid uterus, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.1''', NULL, + 'Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)', 'Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.10) Tumors of body of uterus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.10) Tumors of body of uterus, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.10''', NULL, + '(654.10) Tumors of body of uterus, unspecified as to episode of care or not applicable', '(654.10) Tumors of body of uterus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.11) Tumors of body of uterus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.11) Tumors of body of uterus, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.11''', NULL, + '(654.11) Tumors of body of uterus, delivered, with or without mention of antepartum condition', '(654.11) Tumors of body of uterus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.12) Tumors of body of uterus, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.12) Tumors of body of uterus, delivered, with mention of postpartum complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.12''', NULL, + '(654.12) Tumors of body of uterus, delivered, with mention of postpartum complication', '(654.12) Tumors of body of uterus, delivered, with mention of postpartum complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.13) Tumors of body of uterus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.13) Tumors of body of uterus, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.13''', NULL, + '(654.13) Tumors of body of uterus, antepartum condition or complication', '(654.13) Tumors of body of uterus, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.14) Tumors of body of uterus, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.14) Tumors of body of uterus, postpartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.14''', NULL, + '(654.14) Tumors of body of uterus, postpartum condition or complication', '(654.14) Tumors of body of uterus, postpartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653''', NULL, + 'Disproportion in pregnancy, labor, and delivery (653)', 'Disproportion in pregnancy, labor, and delivery (653)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.8''', NULL, + 'Disproportion of other origin in pregnancy, labor, and delivery (653.8)', 'Disproportion of other origin in pregnancy, labor, and delivery (653.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.80) Disproportion of other origin, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.80) Disproportion of other origin, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.80''', NULL, + '(653.80) Disproportion of other origin, unspecified as to episode of care or not applicable', '(653.80) Disproportion of other origin, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.81) Disproportion of other origin, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.81) Disproportion of other origin, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.81''', NULL, + '(653.81) Disproportion of other origin, delivered, with or without mention of antepartum condition', '(653.81) Disproportion of other origin, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.83) Disproportion of other origin, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.83) Disproportion of other origin, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.83''', NULL, + '(653.83) Disproportion of other origin, antepartum condition or complication', '(653.83) Disproportion of other origin, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.4''', NULL, + 'Fetopelvic disproportion (653.4)', 'Fetopelvic disproportion (653.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.40) Fetopelvic disproportion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.40) Fetopelvic disproportion, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.40''', NULL, + '(653.40) Fetopelvic disproportion, unspecified as to episode of care or not applicable', '(653.40) Fetopelvic disproportion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.41) Fetopelvic disproportion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.41) Fetopelvic disproportion, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.41''', NULL, + '(653.41) Fetopelvic disproportion, delivered, with or without mention of antepartum condition', '(653.41) Fetopelvic disproportion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.43) Fetopelvic disproportion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.43) Fetopelvic disproportion, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.43''', NULL, + '(653.43) Fetopelvic disproportion, antepartum condition or complication', '(653.43) Fetopelvic disproportion, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.1''', NULL, + 'Generally contracted pelvis in pregnancy, labor, and delivery (653.1)', 'Generally contracted pelvis in pregnancy, labor, and delivery (653.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.10) Generally contracted pelvis, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.10) Generally contracted pelvis, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.10''', NULL, + '(653.10) Generally contracted pelvis, unspecified as to episode of care or not applicable', '(653.10) Generally contracted pelvis, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.11) Generally contracted pelvis, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.11) Generally contracted pelvis, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.11''', NULL, + '(653.11) Generally contracted pelvis, delivered, with or without mention of antepartum condition', '(653.11) Generally contracted pelvis, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.13) Generally contracted pelvis, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.13) Generally contracted pelvis, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.13''', NULL, + '(653.13) Generally contracted pelvis, antepartum condition or complication', '(653.13) Generally contracted pelvis, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.6''', NULL, + 'Hydrocephalic fetus causing disproportion (653.6)', 'Hydrocephalic fetus causing disproportion (653.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.60) Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.60) Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.60''', NULL, + '(653.60) Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable', '(653.60) Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.61) Hydrocephalic fetus causing disproportion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.61) Hydrocephalic fetus causing disproportion, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.61''', NULL, + '(653.61) Hydrocephalic fetus causing disproportion, delivered, with or without mention of antepartum condition', '(653.61) Hydrocephalic fetus causing disproportion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.63) Hydrocephalic fetus causing disproportion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.63) Hydrocephalic fetus causing disproportion, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.63''', NULL, + '(653.63) Hydrocephalic fetus causing disproportion, antepartum condition or complication', '(653.63) Hydrocephalic fetus causing disproportion, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.2''', NULL, + 'Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)', 'Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.20) Inlet contraction of pelvis, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.20) Inlet contraction of pelvis, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.20''', NULL, + '(653.20) Inlet contraction of pelvis, unspecified as to episode of care or not applicable', '(653.20) Inlet contraction of pelvis, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.21) Inlet contraction of pelvis, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.21) Inlet contraction of pelvis, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.21''', NULL, + '(653.21) Inlet contraction of pelvis, delivered, with or without mention of antepartum condition', '(653.21) Inlet contraction of pelvis, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.23) Inlet contraction of pelvis, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.23) Inlet contraction of pelvis, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.23''', NULL, + '(653.23) Inlet contraction of pelvis, antepartum condition or complication', '(653.23) Inlet contraction of pelvis, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.0''', NULL, + 'Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)', 'Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.00) Major abnormality of bony pelvis, not further specified, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.00) Major abnormality of bony pelvis, not further specified, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.00''', NULL, + '(653.00) Major abnormality of bony pelvis, not further specified, unspecified as to episode of care or not applicable', '(653.00) Major abnormality of bony pelvis, not further specified, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.01) Major abnormality of bony pelvis, not further specified, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.01) Major abnormality of bony pelvis, not further specified, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.01''', NULL, + '(653.01) Major abnormality of bony pelvis, not further specified, delivered, with or without mention of antepartum condition', '(653.01) Major abnormality of bony pelvis, not further specified, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.03) Major abnormality of bony pelvis, not further specified, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.03) Major abnormality of bony pelvis, not further specified, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.03''', NULL, + '(653.03) Major abnormality of bony pelvis, not further specified, antepartum condition or complication', '(653.03) Major abnormality of bony pelvis, not further specified, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.7''', NULL, + 'Other fetal abnormality causing disproportion (653.7)', 'Other fetal abnormality causing disproportion (653.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.70) Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.70) Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.70''', NULL, + '(653.70) Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable', '(653.70) Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.71) Other fetal abnormality causing disproportion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.71) Other fetal abnormality causing disproportion, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.71''', NULL, + '(653.71) Other fetal abnormality causing disproportion, delivered, with or without mention of antepartum condition', '(653.71) Other fetal abnormality causing disproportion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.73) Other fetal abnormality causing disproportion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.73) Other fetal abnormality causing disproportion, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.73''', NULL, + '(653.73) Other fetal abnormality causing disproportion, antepartum condition or complication', '(653.73) Other fetal abnormality causing disproportion, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.3''', NULL, + 'Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)', 'Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.30) Outlet contraction of pelvis, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.30) Outlet contraction of pelvis, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.30''', NULL, + '(653.30) Outlet contraction of pelvis, unspecified as to episode of care or not applicable', '(653.30) Outlet contraction of pelvis, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.31) Outlet contraction of pelvis, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.31) Outlet contraction of pelvis, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.31''', NULL, + '(653.31) Outlet contraction of pelvis, delivered, with or without mention of antepartum condition', '(653.31) Outlet contraction of pelvis, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.33) Outlet contraction of pelvis, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.33) Outlet contraction of pelvis, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.33''', NULL, + '(653.33) Outlet contraction of pelvis, antepartum condition or complication', '(653.33) Outlet contraction of pelvis, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.9''', NULL, + 'Unspecified disproportion in pregnancy, labor, and delivery (653.9)', 'Unspecified disproportion in pregnancy, labor, and delivery (653.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.90) Unspecified disproportion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.90) Unspecified disproportion, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.90''', NULL, + '(653.90) Unspecified disproportion, unspecified as to episode of care or not applicable', '(653.90) Unspecified disproportion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.91) Unspecified disproportion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.91) Unspecified disproportion, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.91''', NULL, + '(653.91) Unspecified disproportion, delivered, with or without mention of antepartum condition', '(653.91) Unspecified disproportion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.93) Unspecified disproportion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.93) Unspecified disproportion, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.93''', NULL, + '(653.93) Unspecified disproportion, antepartum condition or complication', '(653.93) Unspecified disproportion, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.5''', NULL, + 'Unusually large fetus causing disproportion (653.5)', 'Unusually large fetus causing disproportion (653.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.50) Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.50) Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.50''', NULL, + '(653.50) Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable', '(653.50) Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.51) Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.51) Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.51''', NULL, + '(653.51) Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition', '(653.51) Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.53) Unusually large fetus causing disproportion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.53) Unusually large fetus causing disproportion, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.53''', NULL, + '(653.53) Unusually large fetus causing disproportion, antepartum condition or complication', '(653.53) Unusually large fetus causing disproportion, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655''', NULL, + 'Known or suspected fetal abnormality affecting management of mother (655)', 'Known or suspected fetal abnormality affecting management of mother (655)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.0''', NULL, + 'Central nervous system malformation in fetus affecting management of mother (655.0)', 'Central nervous system malformation in fetus affecting management of mother (655.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.00) Central nervous system malformation in fetus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.00) Central nervous system malformation in fetus, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.00''', NULL, + '(655.00) Central nervous system malformation in fetus, unspecified as to episode of care or not applicable', '(655.00) Central nervous system malformation in fetus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.01) Central nervous system malformation in fetus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.01) Central nervous system malformation in fetus, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.01''', NULL, + '(655.01) Central nervous system malformation in fetus, delivered, with or without mention of antepartum condition', '(655.01) Central nervous system malformation in fetus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.03) Central nervous system malformation in fetus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.03) Central nervous system malformation in fetus, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.03''', NULL, + '(655.03) Central nervous system malformation in fetus, antepartum condition or complication', '(655.03) Central nervous system malformation in fetus, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.1''', NULL, + 'Chromosomal abnormality in fetus affecting management of mother (655.1)', 'Chromosomal abnormality in fetus affecting management of mother (655.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.10) Chromosomal abnormality in fetus, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.10) Chromosomal abnormality in fetus, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.10''', NULL, + '(655.10) Chromosomal abnormality in fetus, affecting management of mother, unspecified as to episode of care or not applicable', '(655.10) Chromosomal abnormality in fetus, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.11) Chromosomal abnormality in fetus, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.11) Chromosomal abnormality in fetus, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.11''', NULL, + '(655.11) Chromosomal abnormality in fetus, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.11) Chromosomal abnormality in fetus, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.13) Chromosomal abnormality in fetus, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.13) Chromosomal abnormality in fetus, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.13''', NULL, + '(655.13) Chromosomal abnormality in fetus, affecting management of mother, antepartum condition or complication', '(655.13) Chromosomal abnormality in fetus, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.7''', NULL, + 'Decreased fetal movements, affecting management of mother (655.7)', 'Decreased fetal movements, affecting management of mother (655.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.70) Decreased fetal movements, affecting management of mother, unspecified as to episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.70) Decreased fetal movements, affecting management of mother, unspecified as to episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.70''', NULL, + '(655.70) Decreased fetal movements, affecting management of mother, unspecified as to episode of care', '(655.70) Decreased fetal movements, affecting management of mother, unspecified as to episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.71) Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.71) Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.71''', NULL, + '(655.71) Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.71) Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.73) Decreased fetal movements, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.73) Decreased fetal movements, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.73''', NULL, + '(655.73) Decreased fetal movements, affecting management of mother, antepartum condition or complication', '(655.73) Decreased fetal movements, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.2''', NULL, + 'Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)', 'Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.20) Hereditary disease in family possibly affecting fetus, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.20) Hereditary disease in family possibly affecting fetus, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.20''', NULL, + '(655.20) Hereditary disease in family possibly affecting fetus, affecting management of mother, unspecified as to episode of care or not applicable', '(655.20) Hereditary disease in family possibly affecting fetus, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.21) Hereditary disease in family possibly affecting fetus, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.21) Hereditary disease in family possibly affecting fetus, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.21''', NULL, + '(655.21) Hereditary disease in family possibly affecting fetus, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.21) Hereditary disease in family possibly affecting fetus, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.23) Hereditary disease in family possibly affecting fetus, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.23) Hereditary disease in family possibly affecting fetus, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.23''', NULL, + '(655.23) Hereditary disease in family possibly affecting fetus, affecting management of mother, antepartum condition or complication', '(655.23) Hereditary disease in family possibly affecting fetus, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.8''', NULL, + 'Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)', 'Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.80) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.80) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.80''', NULL, + '(655.80) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable', '(655.80) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.81) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.81) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.81''', NULL, + '(655.81) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.81) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.83) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.83) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.83''', NULL, + '(655.83) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, antepartum condition or complication', '(655.83) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.5''', NULL, + 'Suspected damage to fetus from drugs, affecting management of mother (655.5)', 'Suspected damage to fetus from drugs, affecting management of mother (655.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.50) Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.50) Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.50''', NULL, + '(655.50) Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable', '(655.50) Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.51) Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.51) Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.51''', NULL, + '(655.51) Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.51) Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.53) Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.53) Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.53''', NULL, + '(655.53) Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication', '(655.53) Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.4''', NULL, + 'Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)', 'Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.40) Suspected damage to fetus from other disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.40) Suspected damage to fetus from other disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.40''', NULL, + '(655.40) Suspected damage to fetus from other disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable', '(655.40) Suspected damage to fetus from other disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.41) Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.41) Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.41''', NULL, + '(655.41) Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.41) Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.43) Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.43) Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.43''', NULL, + '(655.43) Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication', '(655.43) Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.6''', NULL, + 'Suspected damage to fetus from radiation, affecting management of mother (655.6)', 'Suspected damage to fetus from radiation, affecting management of mother (655.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.60) Suspected damage to fetus from radiation, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.60) Suspected damage to fetus from radiation, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.60''', NULL, + '(655.60) Suspected damage to fetus from radiation, affecting management of mother, unspecified as to episode of care or not applicable', '(655.60) Suspected damage to fetus from radiation, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.61) Suspected damage to fetus from radiation, affecting management of mother, delivered,\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.61) Suspected damage to fetus from radiation, affecting management of mother, delivered,\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.61''', NULL, + '(655.61) Suspected damage to fetus from radiation, affecting management of mother, delivered,', '(655.61) Suspected damage to fetus from radiation, affecting management of mother, delivered,', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.63) Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.63) Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.63''', NULL, + '(655.63) Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication', '(655.63) Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.3''', NULL, + 'Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)', 'Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.30) Suspected damage to fetus from viral disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.30) Suspected damage to fetus from viral disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.30''', NULL, + '(655.30) Suspected damage to fetus from viral disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable', '(655.30) Suspected damage to fetus from viral disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.31) Suspected damage to fetus from viral disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.31) Suspected damage to fetus from viral disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.31''', NULL, + '(655.31) Suspected damage to fetus from viral disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.31) Suspected damage to fetus from viral disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.33) Suspected damage to fetus from viral disease in the mother, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.33) Suspected damage to fetus from viral disease in the mother, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.33''', NULL, + '(655.33) Suspected damage to fetus from viral disease in the mother, affecting management of mother, antepartum condition or complication', '(655.33) Suspected damage to fetus from viral disease in the mother, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.9''', NULL, + 'Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)', 'Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.90) Unspecified suspected fetal abnormality, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.90) Unspecified suspected fetal abnormality, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.90''', NULL, + '(655.90) Unspecified suspected fetal abnormality, affecting management of mother, unspecified as to episode of care or not applicable', '(655.90) Unspecified suspected fetal abnormality, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.91) Unspecified suspected fetal abnormality, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.91) Unspecified suspected fetal abnormality, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.91''', NULL, + '(655.91) Unspecified suspected fetal abnormality, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.91) Unspecified suspected fetal abnormality, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.93) Unspecified suspected fetal abnormality, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.93) Unspecified suspected fetal abnormality, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.93''', NULL, + '(655.93) Unspecified suspected fetal abnormality, affecting management of mother, antepartum condition or complication', '(655.93) Unspecified suspected fetal abnormality, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652''', NULL, + 'Malposition and malpresentation of fetus (652)', 'Malposition and malpresentation of fetus (652)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.1''', NULL, + 'Breech or other malpresentation successfully converted to cephalic presentation (652.1)', 'Breech or other malpresentation successfully converted to cephalic presentation (652.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.10) Breech or other malpresentation successfully converted to cephalic presentation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.10) Breech or other malpresentation successfully converted to cephalic presentation, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.10''', NULL, + '(652.10) Breech or other malpresentation successfully converted to cephalic presentation, unspecified as to episode of care or not applicable', '(652.10) Breech or other malpresentation successfully converted to cephalic presentation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.11) Breech or other malpresentation successfully converted to cephalic presentation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.11) Breech or other malpresentation successfully converted to cephalic presentation, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.11''', NULL, + '(652.11) Breech or other malpresentation successfully converted to cephalic presentation, delivered, with or without mention of antepartum condition', '(652.11) Breech or other malpresentation successfully converted to cephalic presentation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.13) Breech or other malpresentation successfully converted to cephalic presentation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.13) Breech or other malpresentation successfully converted to cephalic presentation, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.13''', NULL, + '(652.13) Breech or other malpresentation successfully converted to cephalic presentation, antepartum condition or complication', '(652.13) Breech or other malpresentation successfully converted to cephalic presentation, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.2''', NULL, + 'Breech presentation without mention of version (652.2)', 'Breech presentation without mention of version (652.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.20) Breech presentation without mention of version, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.20) Breech presentation without mention of version, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.20''', NULL, + '(652.20) Breech presentation without mention of version, unspecified as to episode of care or not applicable', '(652.20) Breech presentation without mention of version, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.21) Breech presentation without mention of version, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.21) Breech presentation without mention of version, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.21''', NULL, + '(652.21) Breech presentation without mention of version, delivered, with or without mention of antepartum condition', '(652.21) Breech presentation without mention of version, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.23) Breech presentation without mention of version, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.23) Breech presentation without mention of version, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.23''', NULL, + '(652.23) Breech presentation without mention of version, antepartum condition or complication', '(652.23) Breech presentation without mention of version, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.4''', NULL, + 'Face or brow presentation of fetus (652.4)', 'Face or brow presentation of fetus (652.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.40) Face or brow presentation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.40) Face or brow presentation, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.40''', NULL, + '(652.40) Face or brow presentation, unspecified as to episode of care or not applicable', '(652.40) Face or brow presentation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.41) Face or brow presentation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.41) Face or brow presentation, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.41''', NULL, + '(652.41) Face or brow presentation, delivered, with or without mention of antepartum condition', '(652.41) Face or brow presentation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.43) Face or brow presentation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.43) Face or brow presentation, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.43''', NULL, + '(652.43) Face or brow presentation, antepartum condition or complication', '(652.43) Face or brow presentation, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.5''', NULL, + 'High fetal head at term (652.5)', 'High fetal head at term (652.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.50) High head at term, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.50) High head at term, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.50''', NULL, + '(652.50) High head at term, unspecified as to episode of care or not applicable', '(652.50) High head at term, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.51) High head at term, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.51) High head at term, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.51''', NULL, + '(652.51) High head at term, delivered, with or without mention of antepartum condition', '(652.51) High head at term, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.53) High head at term, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.53) High head at term, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.53''', NULL, + '(652.53) High head at term, antepartum condition or complication', '(652.53) High head at term, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.6''', NULL, + 'Multiple gestation with malpresentation of one fetus or more (652.6)', 'Multiple gestation with malpresentation of one fetus or more (652.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.60) Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.60) Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.60''', NULL, + '(652.60) Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable', '(652.60) Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.61) Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.61) Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.61''', NULL, + '(652.61) Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition', '(652.61) Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.63) Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.63) Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.63''', NULL, + '(652.63) Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication', '(652.63) Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.8''', NULL, + 'Other specified malposition or malpresentation of fetus (652.8)', 'Other specified malposition or malpresentation of fetus (652.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.80) Other specified malposition or malpresentation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.80) Other specified malposition or malpresentation, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.80''', NULL, + '(652.80) Other specified malposition or malpresentation, unspecified as to episode of care or not applicable', '(652.80) Other specified malposition or malpresentation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.81) Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.81) Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.81''', NULL, + '(652.81) Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition', '(652.81) Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.83) Other specified malposition or malpresentation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.83) Other specified malposition or malpresentation, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.83''', NULL, + '(652.83) Other specified malposition or malpresentation, antepartum condition or complication', '(652.83) Other specified malposition or malpresentation, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.7''', NULL, + 'Prolapsed arm of fetus (652.7)', 'Prolapsed arm of fetus (652.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.70) Prolapsed arm of fetus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.70) Prolapsed arm of fetus, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.70''', NULL, + '(652.70) Prolapsed arm of fetus, unspecified as to episode of care or not applicable', '(652.70) Prolapsed arm of fetus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.71) Prolapsed arm of fetus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.71) Prolapsed arm of fetus, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.71''', NULL, + '(652.71) Prolapsed arm of fetus, delivered, with or without mention of antepartum condition', '(652.71) Prolapsed arm of fetus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.73) Prolapsed arm of fetus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.73) Prolapsed arm of fetus, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.73''', NULL, + '(652.73) Prolapsed arm of fetus, antepartum condition or complication', '(652.73) Prolapsed arm of fetus, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.3''', NULL, + 'Transverse or oblique presentation of fetus (652.3)', 'Transverse or oblique presentation of fetus (652.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.30) Transverse or oblique presentation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.30) Transverse or oblique presentation, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.30''', NULL, + '(652.30) Transverse or oblique presentation, unspecified as to episode of care or not applicable', '(652.30) Transverse or oblique presentation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.31) Transverse or oblique presentation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.31) Transverse or oblique presentation, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.31''', NULL, + '(652.31) Transverse or oblique presentation, delivered, with or without mention of antepartum condition', '(652.31) Transverse or oblique presentation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.33) Transverse or oblique presentation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.33) Transverse or oblique presentation, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.33''', NULL, + '(652.33) Transverse or oblique presentation, antepartum condition or complication', '(652.33) Transverse or oblique presentation, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.9''', NULL, + 'Unspecified malposition or malpresentation of fetus (652.9)', 'Unspecified malposition or malpresentation of fetus (652.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.90) Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.90) Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.90''', NULL, + '(652.90) Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable', '(652.90) Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.91) Unspecified malposition or malpresentation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.91) Unspecified malposition or malpresentation, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.91''', NULL, + '(652.91) Unspecified malposition or malpresentation, delivered, with or without mention of antepartum condition', '(652.91) Unspecified malposition or malpresentation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.93) Unspecified malposition or malpresentation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.93) Unspecified malposition or malpresentation, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.93''', NULL, + '(652.93) Unspecified malposition or malpresentation, antepartum condition or complication', '(652.93) Unspecified malposition or malpresentation, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.0''', NULL, + 'Unstable lie of fetus (652.0)', 'Unstable lie of fetus (652.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.00) Unstable lie, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.00) Unstable lie, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.00''', NULL, + '(652.00) Unstable lie, unspecified as to episode of care or not applicable', '(652.00) Unstable lie, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.01) Unstable lie, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.01) Unstable lie, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.01''', NULL, + '(652.01) Unstable lie, delivered, with or without mention of antepartum condition', '(652.01) Unstable lie, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.03) Unstable lie, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.03) Unstable lie, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.03''', NULL, + '(652.03) Unstable lie, antepartum condition or complication', '(652.03) Unstable lie, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651''', NULL, + 'Multiple gestation (651)', 'Multiple gestation (651)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''elective) fetal reduction (651.7''', NULL, + 'Multiple gestation following (elective) fetal reduction (651.7)', 'Multiple gestation following (elective) fetal reduction (651.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.70) Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.70) Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.70) Multiple gestation following (elective''', NULL, + '(651.70) Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable', '(651.70) Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.71) Multiple gestation following (elective) fetal reduction,delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.71) Multiple gestation following (elective) fetal reduction,delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.71) Multiple gestation following (elective''', NULL, + '(651.71) Multiple gestation following (elective) fetal reduction,delivered, with or without mention of antepartum condition', '(651.71) Multiple gestation following (elective) fetal reduction,delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.73) Multiple gestation following (elective) fetal reduction, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.73) Multiple gestation following (elective) fetal reduction, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.73) Multiple gestation following (elective''', NULL, + '(651.73) Multiple gestation following (elective) fetal reduction, antepartum condition or complication', '(651.73) Multiple gestation following (elective) fetal reduction, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''es) (651.6''', NULL, + 'Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)', 'Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es''', NULL, + '(651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', '(651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es''', NULL, + '(651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', '(651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es''', NULL, + '(651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', '(651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.8''', NULL, + 'Other specified multiple gestation (651.8)', 'Other specified multiple gestation (651.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.80) Other specified multiple gestation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.80) Other specified multiple gestation, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.80''', NULL, + '(651.80) Other specified multiple gestation, unspecified as to episode of care or not applicable', '(651.80) Other specified multiple gestation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.81) Other specified multiple gestation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.81) Other specified multiple gestation, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.81''', NULL, + '(651.81) Other specified multiple gestation, delivered, with or without mention of antepartum condition', '(651.81) Other specified multiple gestation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.83) Other specified multiple gestation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.83) Other specified multiple gestation, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.83''', NULL, + '(651.83) Other specified multiple gestation, antepartum condition or complication', '(651.83) Other specified multiple gestation, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.2''', NULL, + 'Quadruplet pregnancy (651.2)', 'Quadruplet pregnancy (651.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.20) Quadruplet pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.20) Quadruplet pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.20''', NULL, + '(651.20) Quadruplet pregnancy, unspecified as to episode of care or not applicable', '(651.20) Quadruplet pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.21) Quadruplet pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.21) Quadruplet pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.21''', NULL, + '(651.21) Quadruplet pregnancy, delivered, with or without mention of antepartum condition', '(651.21) Quadruplet pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.23) Quadruplet pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.23) Quadruplet pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.23''', NULL, + '(651.23) Quadruplet pregnancy, antepartum condition or complication', '(651.23) Quadruplet pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''es) (651.5''', NULL, + 'Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)', 'Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL, + '(651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', '(651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL, + '(651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', '(651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL, + '(651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', '(651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.1''', NULL, + 'Triplet pregnancy (651.1)', 'Triplet pregnancy (651.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.10) Triplet pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.10) Triplet pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.10''', NULL, + '(651.10) Triplet pregnancy, unspecified as to episode of care or not applicable', '(651.10) Triplet pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.11) Triplet pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.11) Triplet pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.11''', NULL, + '(651.11) Triplet pregnancy, delivered, with or without mention of antepartum condition', '(651.11) Triplet pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.13) Triplet pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.13) Triplet pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.13''', NULL, + '(651.13) Triplet pregnancy, antepartum condition or complication', '(651.13) Triplet pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''es) (651.4''', NULL, + 'Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)', 'Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL, + '(651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', '(651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL, + '(651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', '(651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL, + '(651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', '(651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.0''', NULL, + 'Twin pregnancy (651.0)', 'Twin pregnancy (651.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.00) Twin pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.00) Twin pregnancy, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.00''', NULL, + '(651.00) Twin pregnancy, unspecified as to episode of care or not applicable', '(651.00) Twin pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.01) Twin pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.01) Twin pregnancy, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.01''', NULL, + '(651.01) Twin pregnancy, delivered, with or without mention of antepartum condition', '(651.01) Twin pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.03) Twin pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.03) Twin pregnancy, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.03''', NULL, + '(651.03) Twin pregnancy, antepartum condition or complication', '(651.03) Twin pregnancy, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.3''', NULL, + 'Twin pregnancy with fetal loss and retention of one fetus (651.3)', 'Twin pregnancy with fetal loss and retention of one fetus (651.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.30) Twin pregnancy with fetal loss and retention of one fetus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.30) Twin pregnancy with fetal loss and retention of one fetus, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.30''', NULL, + '(651.30) Twin pregnancy with fetal loss and retention of one fetus, unspecified as to episode of care or not applicable', '(651.30) Twin pregnancy with fetal loss and retention of one fetus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.31) Twin pregnancy with fetal loss and retention of one fetus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.31) Twin pregnancy with fetal loss and retention of one fetus, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.31''', NULL, + '(651.31) Twin pregnancy with fetal loss and retention of one fetus, delivered, with or without mention of antepartum condition', '(651.31) Twin pregnancy with fetal loss and retention of one fetus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.33) Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.33) Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.33''', NULL, + '(651.33) Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication', '(651.33) Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.9''', NULL, + 'Unspecified multiple gestation (651.9)', 'Unspecified multiple gestation (651.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.90) Unspecified multiple gestation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.90) Unspecified multiple gestation, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.90''', NULL, + '(651.90) Unspecified multiple gestation, unspecified as to episode of care or not applicable', '(651.90) Unspecified multiple gestation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.91) Unspecified multiple gestation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.91) Unspecified multiple gestation, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.91''', NULL, + '(651.91) Unspecified multiple gestation, delivered, with or without mention of antepartum condition', '(651.91) Unspecified multiple gestation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.93) Unspecified multiple gestation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.93) Unspecified multiple gestation, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.93''', NULL, + '(651.93) Unspecified multiple gestation, antepartum condition or complication', '(651.93) Unspecified multiple gestation, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659''', NULL, + 'Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)', 'Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.7''', NULL, + 'Abnormality in fetal heart rate or rhythm (659.7)', 'Abnormality in fetal heart rate or rhythm (659.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.70) Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.70) Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.70''', NULL, + '(659.70) Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable', '(659.70) Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.71) Abnormality in fetal heart rate or rhythm, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.71) Abnormality in fetal heart rate or rhythm, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.71''', NULL, + '(659.71) Abnormality in fetal heart rate or rhythm, delivered, with or without mention of antepartum condition', '(659.71) Abnormality in fetal heart rate or rhythm, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.73) Abnormality in fetal heart rate or rhythm, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.73) Abnormality in fetal heart rate or rhythm, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.73''', NULL, + '(659.73) Abnormality in fetal heart rate or rhythm, antepartum condition or complication', '(659.73) Abnormality in fetal heart rate or rhythm, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.6''', NULL, + 'Elderly multigravida (659.6)', 'Elderly multigravida (659.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.60) Elderly multigravida, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.60) Elderly multigravida, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.60''', NULL, + '(659.60) Elderly multigravida, unspecified as to episode of care or not applicable', '(659.60) Elderly multigravida, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.61) Elderly multigravida, delivered with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.61) Elderly multigravida, delivered with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.61''', NULL, + '(659.61) Elderly multigravida, delivered with or without mention of antepartum condition', '(659.61) Elderly multigravida, delivered with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.63) Elderly multigravida, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.63) Elderly multigravida, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.63''', NULL, + '(659.63) Elderly multigravida, antepartum condition or complication', '(659.63) Elderly multigravida, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.5''', NULL, + 'Elderly primigravida (659.5)', 'Elderly primigravida (659.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.50) Elderly primigravida, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.50) Elderly primigravida, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.50''', NULL, + '(659.50) Elderly primigravida, unspecified as to episode of care or not applicable', '(659.50) Elderly primigravida, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.51) Elderly primigravida, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.51) Elderly primigravida, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.51''', NULL, + '(659.51) Elderly primigravida, delivered, with or without mention of antepartum condition', '(659.51) Elderly primigravida, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.53) Elderly primigravida, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.53) Elderly primigravida, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.53''', NULL, + '(659.53) Elderly primigravida, antepartum condition or complication', '(659.53) Elderly primigravida, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.0''', NULL, + 'Failed mechanical induction of labor (659.0)', 'Failed mechanical induction of labor (659.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.00) Failed mechanical induction of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.00) Failed mechanical induction of labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.00''', NULL, + '(659.00) Failed mechanical induction of labor, unspecified as to episode of care or not applicable', '(659.00) Failed mechanical induction of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.01) Failed mechanical induction of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.01) Failed mechanical induction of labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.01''', NULL, + '(659.01) Failed mechanical induction of labor, delivered, with or without mention of antepartum condition', '(659.01) Failed mechanical induction of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.03) Failed mechanical induction of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.03) Failed mechanical induction of labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.03''', NULL, + '(659.03) Failed mechanical induction of labor, antepartum condition or complication', '(659.03) Failed mechanical induction of labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.1''', NULL, + 'Failed medical or unspecified induction of labor (659.1)', 'Failed medical or unspecified induction of labor (659.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.10) Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.10) Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.10''', NULL, + '(659.10) Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable', '(659.10) Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.11) Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.11) Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.11''', NULL, + '(659.11) Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition', '(659.11) Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.13) Failed medical or unspecified induction of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.13) Failed medical or unspecified induction of labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.13''', NULL, + '(659.13) Failed medical or unspecified induction of labor, antepartum condition or complication', '(659.13) Failed medical or unspecified induction of labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.3''', NULL, + 'Generalized infection during labor (659.3)', 'Generalized infection during labor (659.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.30) Generalized infection during labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.30) Generalized infection during labor, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.30''', NULL, + '(659.30) Generalized infection during labor, unspecified as to episode of care or not applicable', '(659.30) Generalized infection during labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.31) Generalized infection during labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.31) Generalized infection during labor, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.31''', NULL, + '(659.31) Generalized infection during labor, delivered, with or without mention of antepartum condition', '(659.31) Generalized infection during labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.33) Generalized infection during labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.33) Generalized infection during labor, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.33''', NULL, + '(659.33) Generalized infection during labor, antepartum condition or complication', '(659.33) Generalized infection during labor, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.4''', NULL, + 'Grand multiparity, with current pregnancy (659.4)', 'Grand multiparity, with current pregnancy (659.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.40) Grand multiparity, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.40) Grand multiparity, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.40''', NULL, + '(659.40) Grand multiparity, unspecified as to episode of care or not applicable', '(659.40) Grand multiparity, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.41) Grand multiparity, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.41) Grand multiparity, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.41''', NULL, + '(659.41) Grand multiparity, delivered, with or without mention of antepartum condition', '(659.41) Grand multiparity, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.43) Grand multiparity, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.43) Grand multiparity, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.43''', NULL, + '(659.43) Grand multiparity, antepartum condition or complication', '(659.43) Grand multiparity, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.2''', NULL, + 'Maternal pyrexia during labor, unspecified (659.2)', 'Maternal pyrexia during labor, unspecified (659.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.20) Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.20) Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.20''', NULL, + '(659.20) Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable', '(659.20) Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.21) Maternal pyrexia during labor, unspecified, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.21) Maternal pyrexia during labor, unspecified, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.21''', NULL, + '(659.21) Maternal pyrexia during labor, unspecified, delivered, with or without mention of antepartum condition', '(659.21) Maternal pyrexia during labor, unspecified, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.23) Maternal pyrexia during labor, unspecified, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.23) Maternal pyrexia during labor, unspecified, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.23''', NULL, + '(659.23) Maternal pyrexia during labor, unspecified, antepartum condition or complication', '(659.23) Maternal pyrexia during labor, unspecified, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.8''', NULL, + 'Other specified indications for care or intervention related to labor and delivery (659.8)', 'Other specified indications for care or intervention related to labor and delivery (659.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.80) Other specified indications for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.80) Other specified indications for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.80''', NULL, + '(659.80) Other specified indications for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable', '(659.80) Other specified indications for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.81) Other specified indications for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.81) Other specified indications for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.81''', NULL, + '(659.81) Other specified indications for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition', '(659.81) Other specified indications for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.83) Other specified indications for care or intervention related to labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.83) Other specified indications for care or intervention related to labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.83''', NULL, + '(659.83) Other specified indications for care or intervention related to labor and delivery, antepartum condition or complication', '(659.83) Other specified indications for care or intervention related to labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.9''', NULL, + 'Unspecified indication for care or intervention related to labor and delivery (659.9)', 'Unspecified indication for care or intervention related to labor and delivery (659.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.90) Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.90) Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.90''', NULL, + '(659.90) Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable', '(659.90) Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.91) Unspecified indication for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.91) Unspecified indication for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.91''', NULL, + '(659.91) Unspecified indication for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition', '(659.91) Unspecified indication for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.93) Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.93) Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.93''', NULL, + '(659.93) Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication', '(659.93) Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656''', NULL, + 'Other known or suspected fetal and placental problems affecting management of mother (656)', 'Other known or suspected fetal and placental problems affecting management of mother (656)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.6''', NULL, + 'Excessive fetal growth affecting management of mother (656.6)', 'Excessive fetal growth affecting management of mother (656.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.60) Excessive fetal growth, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.60) Excessive fetal growth, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.60''', NULL, + '(656.60) Excessive fetal growth, affecting management of mother, unspecified as to episode of care or not applicable', '(656.60) Excessive fetal growth, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.61) Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.61) Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.61''', NULL, + '(656.61) Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.61) Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.63) Excessive fetal growth, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.63) Excessive fetal growth, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.63''', NULL, + '(656.63) Excessive fetal growth, affecting management of mother, antepartum condition or complication', '(656.63) Excessive fetal growth, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.3''', NULL, + 'Fetal distress affecting management of mother (656.3)', 'Fetal distress affecting management of mother (656.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.30) Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.30) Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.30''', NULL, + '(656.30) Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable', '(656.30) Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.31) Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.31) Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.31''', NULL, + '(656.31) Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.31) Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.33) Fetal distress, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.33) Fetal distress, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.33''', NULL, + '(656.33) Fetal distress, affecting management of mother, antepartum condition or complication', '(656.33) Fetal distress, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.0''', NULL, + 'Fetal-maternal hemorrhage affecting management of mother (656.0)', 'Fetal-maternal hemorrhage affecting management of mother (656.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.00) Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.00) Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.00''', NULL, + '(656.00) Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable', '(656.00) Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.01) Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.01) Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.01''', NULL, + '(656.01) Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition', '(656.01) Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.03) Fetal-maternal hemorrhage, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.03) Fetal-maternal hemorrhage, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.03''', NULL, + '(656.03) Fetal-maternal hemorrhage, antepartum condition or complication', '(656.03) Fetal-maternal hemorrhage, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.4''', NULL, + 'Intrauterine death affecting management of mother (656.4)', 'Intrauterine death affecting management of mother (656.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.40) Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.40) Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.40''', NULL, + '(656.40) Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable', '(656.40) Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.41) Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.41) Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.41''', NULL, + '(656.41) Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.41) Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.43) Intrauterine death, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.43) Intrauterine death, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.43''', NULL, + '(656.43) Intrauterine death, affecting management of mother, antepartum condition or complication', '(656.43) Intrauterine death, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.2''', NULL, + 'Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)', 'Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.20) Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.20) Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.20''', NULL, + '(656.20) Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable', '(656.20) Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.21) Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.21) Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.21''', NULL, + '(656.21) Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition', '(656.21) Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.23) Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.23) Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.23''', NULL, + '(656.23) Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication', '(656.23) Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.7''', NULL, + 'Other placental conditions affecting management of mother (656.7)', 'Other placental conditions affecting management of mother (656.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.70) Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.70) Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.70''', NULL, + '(656.70) Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable', '(656.70) Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.71) Other placental conditions, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.71) Other placental conditions, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.71''', NULL, + '(656.71) Other placental conditions, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.71) Other placental conditions, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.73) Other placental conditions, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.73) Other placental conditions, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.73''', NULL, + '(656.73) Other placental conditions, affecting management of mother, antepartum condition or complication', '(656.73) Other placental conditions, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.8''', NULL, + 'Other specified fetal and placental problems affecting management of mother (656.8)', 'Other specified fetal and placental problems affecting management of mother (656.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.80) Other specified fetal and placental problems, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.80) Other specified fetal and placental problems, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.80''', NULL, + '(656.80) Other specified fetal and placental problems, affecting management of mother, unspecified as to episode of care or not applicable', '(656.80) Other specified fetal and placental problems, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.81) Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.81) Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.81''', NULL, + '(656.81) Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.81) Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.83) Other specified fetal and placental problems, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.83) Other specified fetal and placental problems, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.83''', NULL, + '(656.83) Other specified fetal and placental problems, affecting management of mother, antepartum condition or complication', '(656.83) Other specified fetal and placental problems, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.5''', NULL, + 'Poor fetal growth affecting management of mother (656.5)', 'Poor fetal growth affecting management of mother (656.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.50) Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.50) Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.50''', NULL, + '(656.50) Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable', '(656.50) Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.51) Poor fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.51) Poor fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.51''', NULL, + '(656.51) Poor fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.51) Poor fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.53) Poor fetal growth, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.53) Poor fetal growth, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.53''', NULL, + '(656.53) Poor fetal growth, affecting management of mother, antepartum condition or complication', '(656.53) Poor fetal growth, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.1''', NULL, + 'Rhesus isoimmunization affecting management of mother (656.1)', 'Rhesus isoimmunization affecting management of mother (656.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.10) Rhesus isoimmunization, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.10) Rhesus isoimmunization, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.10''', NULL, + '(656.10) Rhesus isoimmunization, unspecified as to episode of care or not applicable', '(656.10) Rhesus isoimmunization, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.11) Rhesus isoimmunization, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.11) Rhesus isoimmunization, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.11''', NULL, + '(656.11) Rhesus isoimmunization, delivered, with or without mention of antepartum condition', '(656.11) Rhesus isoimmunization, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.13) Rhesus isoimmunization, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.13) Rhesus isoimmunization, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.13''', NULL, + '(656.13) Rhesus isoimmunization, antepartum condition or complication', '(656.13) Rhesus isoimmunization, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.9''', NULL, + 'Unspecified fetal and placental problem affecting management of mother (656.9)', 'Unspecified fetal and placental problem affecting management of mother (656.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.90) Unspecified fetal and placental problem, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.90) Unspecified fetal and placental problem, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.90''', NULL, + '(656.90) Unspecified fetal and placental problem, affecting management of mother, unspecified as to episode of care or not applicable', '(656.90) Unspecified fetal and placental problem, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.91) Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.91) Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.91''', NULL, + '(656.91) Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.91) Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.93) Unspecified fetal and placental problem, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.93) Unspecified fetal and placental problem, affecting management of mother, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.93''', NULL, + '(656.93) Unspecified fetal and placental problem, affecting management of mother, antepartum condition or complication', '(656.93) Unspecified fetal and placental problem, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658''', NULL, + 'Other problems associated with amniotic cavity and membranes (658)', 'Other problems associated with amniotic cavity and membranes (658)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.3''', NULL, + 'Delayed delivery after artificial rupture of membranes (658.3)', 'Delayed delivery after artificial rupture of membranes (658.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.30) Delayed delivery after artificial rupture of membranes, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.30) Delayed delivery after artificial rupture of membranes, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.30''', NULL, + '(658.30) Delayed delivery after artificial rupture of membranes, unspecified as to episode of care or not applicable', '(658.30) Delayed delivery after artificial rupture of membranes, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.31) Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.31) Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.31''', NULL, + '(658.31) Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition', '(658.31) Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.33) Delayed delivery after artificial rupture of membranes, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.33) Delayed delivery after artificial rupture of membranes, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.33''', NULL, + '(658.33) Delayed delivery after artificial rupture of membranes, antepartum condition or complication', '(658.33) Delayed delivery after artificial rupture of membranes, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.2''', NULL, + 'Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)', 'Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.20) Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.20) Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.20''', NULL, + '(658.20) Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable', '(658.20) Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.21) Delayed delivery after spontaneous or unspecified rupture of membranes, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.21) Delayed delivery after spontaneous or unspecified rupture of membranes, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.21''', NULL, + '(658.21) Delayed delivery after spontaneous or unspecified rupture of membranes, delivered, with or without mention of antepartum condition', '(658.21) Delayed delivery after spontaneous or unspecified rupture of membranes, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.23) Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.23) Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.23''', NULL, + '(658.23) Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication', '(658.23) Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.4''', NULL, + 'Infection of amniotic cavity (658.4)', 'Infection of amniotic cavity (658.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.40) Infection of amniotic cavity, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.40) Infection of amniotic cavity, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.40''', NULL, + '(658.40) Infection of amniotic cavity, unspecified as to episode of care or not applicable', '(658.40) Infection of amniotic cavity, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.41) Infection of amniotic cavity, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.41) Infection of amniotic cavity, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.41''', NULL, + '(658.41) Infection of amniotic cavity, delivered, with or without mention of antepartum condition', '(658.41) Infection of amniotic cavity, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.43) Infection of amniotic cavity, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.43) Infection of amniotic cavity, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.43''', NULL, + '(658.43) Infection of amniotic cavity, antepartum condition or complication', '(658.43) Infection of amniotic cavity, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.0''', NULL, + 'Oligohydramnios (658.0)', 'Oligohydramnios (658.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.00) Oligohydramnios, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.00) Oligohydramnios, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.00''', NULL, + '(658.00) Oligohydramnios, unspecified as to episode of care or not applicable', '(658.00) Oligohydramnios, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.01) Oligohydramnios, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.01) Oligohydramnios, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.01''', NULL, + '(658.01) Oligohydramnios, delivered, with or without mention of antepartum condition', '(658.01) Oligohydramnios, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.03) Oligohydramnios, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.03) Oligohydramnios, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.03''', NULL, + '(658.03) Oligohydramnios, antepartum condition or complication', '(658.03) Oligohydramnios, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.8''', NULL, + 'Other problems associated with amniotic cavity and membranes (658.8)', 'Other problems associated with amniotic cavity and membranes (658.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.80) Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.80) Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.80''', NULL, + '(658.80) Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable', '(658.80) Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.81) Other problems associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.81) Other problems associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.81''', NULL, + '(658.81) Other problems associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition', '(658.81) Other problems associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.83) Other problems associated with amniotic cavity and membranes, antepartum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.83) Other problems associated with amniotic cavity and membranes, antepartum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.83''', NULL, + '(658.83) Other problems associated with amniotic cavity and membranes, antepartum', '(658.83) Other problems associated with amniotic cavity and membranes, antepartum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.1''', NULL, + 'Premature rupture of membranes (658.1)', 'Premature rupture of membranes (658.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.10) Premature rupture of membranes, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.10) Premature rupture of membranes, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.10''', NULL, + '(658.10) Premature rupture of membranes, unspecified as to episode of care or not applicable', '(658.10) Premature rupture of membranes, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.11) Premature rupture of membranes, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.11) Premature rupture of membranes, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.11''', NULL, + '(658.11) Premature rupture of membranes, delivered, with or without mention of antepartum condition', '(658.11) Premature rupture of membranes, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.13) Premature rupture of membranes, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.13) Premature rupture of membranes, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.13''', NULL, + '(658.13) Premature rupture of membranes, antepartum condition or complication', '(658.13) Premature rupture of membranes, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.9''', NULL, + 'Unspecified problem associated with amniotic cavity and membranes (658.9)', 'Unspecified problem associated with amniotic cavity and membranes (658.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.90) Unspecified problem associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.90) Unspecified problem associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.90''', NULL, + '(658.90) Unspecified problem associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable', '(658.90) Unspecified problem associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.91) Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.91) Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.91''', NULL, + '(658.91) Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition', '(658.91) Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.93) Unspecified problem associated with amniotic cavity and membranes, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.93) Unspecified problem associated with amniotic cavity and membranes, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.93''', NULL, + '(658.93) Unspecified problem associated with amniotic cavity and membranes, antepartum condition or complication', '(658.93) Unspecified problem associated with amniotic cavity and membranes, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''657''', NULL, + 'Polyhydramnios (657)', 'Polyhydramnios (657)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''657.0''', NULL, + 'Polyhydramnios (657.0)', 'Polyhydramnios (657.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.00) Polyhydramnios, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.00) Polyhydramnios, unspecified as to episode of care or not applicable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''657.00''', NULL, + '(657.00) Polyhydramnios, unspecified as to episode of care or not applicable', '(657.00) Polyhydramnios, unspecified as to episode of care or not applicable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.01) Polyhydramnios, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.01) Polyhydramnios, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''657.01''', NULL, + '(657.01) Polyhydramnios, delivered, with or without mention of antepartum condition', '(657.01) Polyhydramnios, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.03) Polyhydramnios, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.03) Polyhydramnios, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''657.03''', NULL, + '(657.03) Polyhydramnios, antepartum condition or complication', '(657.03) Polyhydramnios, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''678'' AND ''679.99''', NULL, + 'Other maternal and fetal complications (678-679.99)', 'Other maternal and fetal complications (678-679.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678''', NULL, + 'Other fetal conditions (678)', 'Other fetal conditions (678)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal conjoined twins (678.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal conjoined twins (678.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678.1''', NULL, + 'Fetal conjoined twins (678.1)', 'Fetal conjoined twins (678.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal conjoined twins (678.1)\(678.13) Fetal conjoined twins, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal conjoined twins (678.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal conjoined twins (678.1)\(678.13) Fetal conjoined twins, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678.13''', NULL, + '(678.13) Fetal conjoined twins, antepartum condition or complication', '(678.13) Fetal conjoined twins, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678.0''', NULL, + 'Fetal hematologic conditions (678.0)', 'Fetal hematologic conditions (678.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\(678.01) Fetal hematologic conditions, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\(678.01) Fetal hematologic conditions, delivered, with or without mention of antepartum condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678.01''', NULL, + '(678.01) Fetal hematologic conditions, delivered, with or without mention of antepartum condition', '(678.01) Fetal hematologic conditions, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\(678.03) Fetal hematologic conditions, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\(678.03) Fetal hematologic conditions, antepartum condition or complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678.03''', NULL, + '(678.03) Fetal hematologic conditions, antepartum condition or complication', '(678.03) Fetal hematologic conditions, antepartum condition or complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''634'' AND ''639.99''', NULL, + 'Other pregnancy with abortive outcome (634-639.99)', 'Other pregnancy with abortive outcome (634-639.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639''', NULL, + 'Complications following abortion or ectopic and molar pregnancies (639)', 'Complications following abortion or ectopic and molar pregnancies (639)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.0) Genital tract and pelvic infection following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.0) Genital tract and pelvic infection following abortion or ectopic and molar pregnancies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.0''', NULL, + '(639.0) Genital tract and pelvic infection following abortion or ectopic and molar pregnancies', '(639.0) Genital tract and pelvic infection following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.1) Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.1) Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.1''', NULL, + '(639.1) Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies', '(639.1) Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.2) Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.2) Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.2''', NULL, + '(639.2) Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies', '(639.2) Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.3) Kidney failure following abortion and ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.3) Kidney failure following abortion and ectopic and molar pregnancies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.3''', NULL, + '(639.3) Kidney failure following abortion and ectopic and molar pregnancies', '(639.3) Kidney failure following abortion and ectopic and molar pregnancies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.4) Metabolic disorders following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.4) Metabolic disorders following abortion or ectopic and molar pregnancies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.4''', NULL, + '(639.4) Metabolic disorders following abortion or ectopic and molar pregnancies', '(639.4) Metabolic disorders following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.5) Shock following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.5) Shock following abortion or ectopic and molar pregnancies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.5''', NULL, + '(639.5) Shock following abortion or ectopic and molar pregnancies', '(639.5) Shock following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.6) Embolism following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.6) Embolism following abortion or ectopic and molar pregnancies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.6''', NULL, + '(639.6) Embolism following abortion or ectopic and molar pregnancies', '(639.6) Embolism following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.8) Other specified complications following abortion or ectopic and molar pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.8) Other specified complications following abortion or ectopic and molar pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.8''', NULL, + '(639.8) Other specified complications following abortion or ectopic and molar pregnancy', '(639.8) Other specified complications following abortion or ectopic and molar pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.9) Unspecified complication following abortion or ectopic and molar pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.9) Unspecified complication following abortion or ectopic and molar pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.9''', NULL, + '(639.9) Unspecified complication following abortion or ectopic and molar pregnancy', '(639.9) Unspecified complication following abortion or ectopic and molar pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638''', NULL, + 'Failed attempted abortion (638)', 'Failed attempted abortion (638)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.0) Failed attempted abortion complicated by genital tract and pelvic infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.0) Failed attempted abortion complicated by genital tract and pelvic infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.0''', NULL, + '(638.0) Failed attempted abortion complicated by genital tract and pelvic infection', '(638.0) Failed attempted abortion complicated by genital tract and pelvic infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.1) Failed attempted abortion complicated by delayed or excessive hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.1) Failed attempted abortion complicated by delayed or excessive hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.1''', NULL, + '(638.1) Failed attempted abortion complicated by delayed or excessive hemorrhage', '(638.1) Failed attempted abortion complicated by delayed or excessive hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.2) Failed attempted abortion complicated by damage to pelvic organs or tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.2) Failed attempted abortion complicated by damage to pelvic organs or tissues\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.2''', NULL, + '(638.2) Failed attempted abortion complicated by damage to pelvic organs or tissues', '(638.2) Failed attempted abortion complicated by damage to pelvic organs or tissues', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.3) Failed attempted abortion complicated by renal failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.3) Failed attempted abortion complicated by renal failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.3''', NULL, + '(638.3) Failed attempted abortion complicated by renal failure', '(638.3) Failed attempted abortion complicated by renal failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.4) Failed attempted abortion complicated by metabolic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.4) Failed attempted abortion complicated by metabolic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.4''', NULL, + '(638.4) Failed attempted abortion complicated by metabolic disorder', '(638.4) Failed attempted abortion complicated by metabolic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.5) Failed attempted abortion complicated by shock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.5) Failed attempted abortion complicated by shock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.5''', NULL, + '(638.5) Failed attempted abortion complicated by shock', '(638.5) Failed attempted abortion complicated by shock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.6) Failed attempted abortion complicated by embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.6) Failed attempted abortion complicated by embolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.6''', NULL, + '(638.6) Failed attempted abortion complicated by embolism', '(638.6) Failed attempted abortion complicated by embolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.7) Failed attempted abortion with other specified complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.7) Failed attempted abortion with other specified complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.7''', NULL, + '(638.7) Failed attempted abortion with other specified complications', '(638.7) Failed attempted abortion with other specified complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.8) Failed attempted abortion with unspecified complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.8) Failed attempted abortion with unspecified complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.8''', NULL, + '(638.8) Failed attempted abortion with unspecified complication', '(638.8) Failed attempted abortion with unspecified complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.9) Failed attempted abortion without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.9) Failed attempted abortion without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.9''', NULL, + '(638.9) Failed attempted abortion without mention of complication', '(638.9) Failed attempted abortion without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636''', NULL, + 'Illegally induced abortion (636)', 'Illegally induced abortion (636)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.2''', NULL, + 'Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)', 'Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.20) Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.20) Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.20''', NULL, + '(636.20) Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified', '(636.20) Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.21) Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.21) Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.21''', NULL, + '(636.21) Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete', '(636.21) Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.22) Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.22) Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.22''', NULL, + '(636.22) Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete', '(636.22) Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.1''', NULL, + 'Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)', 'Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.10) Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.10) Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.10''', NULL, + '(636.10) Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified', '(636.10) Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.11) Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.11) Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.11''', NULL, + '(636.11) Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete', '(636.11) Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.12) Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.12) Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.12''', NULL, + '(636.12) Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete', '(636.12) Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.6''', NULL, + 'Illegally induced abortion complicated by embolism (636.6)', 'Illegally induced abortion complicated by embolism (636.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.60) Illegally induced abortion, complicated by embolism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.60) Illegally induced abortion, complicated by embolism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.60''', NULL, + '(636.60) Illegally induced abortion, complicated by embolism, unspecified', '(636.60) Illegally induced abortion, complicated by embolism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.61) Illegally induced abortion, complicated by embolism, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.61) Illegally induced abortion, complicated by embolism, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.61''', NULL, + '(636.61) Illegally induced abortion, complicated by embolism, incomplete', '(636.61) Illegally induced abortion, complicated by embolism, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.62) Illegally induced abortion, complicated by embolism, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.62) Illegally induced abortion, complicated by embolism, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.62''', NULL, + '(636.62) Illegally induced abortion, complicated by embolism, complete', '(636.62) Illegally induced abortion, complicated by embolism, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.0''', NULL, + 'Illegally induced abortion complicated by genital tract and pelvic infection (636.0)', 'Illegally induced abortion complicated by genital tract and pelvic infection (636.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.00) Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.00) Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.00''', NULL, + '(636.00) Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified', '(636.00) Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.01) Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.01) Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.01''', NULL, + '(636.01) Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete', '(636.01) Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.02) Illegally induced abortion, complicated by genital tract and pelvic infection, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.02) Illegally induced abortion, complicated by genital tract and pelvic infection, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.02''', NULL, + '(636.02) Illegally induced abortion, complicated by genital tract and pelvic infection, complete', '(636.02) Illegally induced abortion, complicated by genital tract and pelvic infection, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.4''', NULL, + 'Illegally induced abortion complicated by metabolic disorder (636.4)', 'Illegally induced abortion complicated by metabolic disorder (636.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.40) Illegally induced abortion, complicated by metabolic disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.40) Illegally induced abortion, complicated by metabolic disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.40''', NULL, + '(636.40) Illegally induced abortion, complicated by metabolic disorder, unspecified', '(636.40) Illegally induced abortion, complicated by metabolic disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.41) Illegally induced abortion, complicated by metabolic disorder, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.41) Illegally induced abortion, complicated by metabolic disorder, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.41''', NULL, + '(636.41) Illegally induced abortion, complicated by metabolic disorder, incomplete', '(636.41) Illegally induced abortion, complicated by metabolic disorder, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.42) Illegally induced abortion, complicated by metabolic disorder, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.42) Illegally induced abortion, complicated by metabolic disorder, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.42''', NULL, + '(636.42) Illegally induced abortion, complicated by metabolic disorder, complete', '(636.42) Illegally induced abortion, complicated by metabolic disorder, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.3''', NULL, + 'Illegally induced abortion complicated by renal failure (636.3)', 'Illegally induced abortion complicated by renal failure (636.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.30) Illegally induced abortion, complicated by renal failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.30) Illegally induced abortion, complicated by renal failure, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.30''', NULL, + '(636.30) Illegally induced abortion, complicated by renal failure, unspecified', '(636.30) Illegally induced abortion, complicated by renal failure, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.31) Illegally induced abortion, complicated by renal failure, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.31) Illegally induced abortion, complicated by renal failure, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.31''', NULL, + '(636.31) Illegally induced abortion, complicated by renal failure, incomplete', '(636.31) Illegally induced abortion, complicated by renal failure, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.32) Illegally induced abortion, complicated by renal failure, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.32) Illegally induced abortion, complicated by renal failure, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.32''', NULL, + '(636.32) Illegally induced abortion, complicated by renal failure, complete', '(636.32) Illegally induced abortion, complicated by renal failure, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.5''', NULL, + 'Illegally induced abortion complicated by shock (636.5)', 'Illegally induced abortion complicated by shock (636.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.50) Illegally induced abortion, complicated by shock, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.50) Illegally induced abortion, complicated by shock, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.50''', NULL, + '(636.50) Illegally induced abortion, complicated by shock, unspecified', '(636.50) Illegally induced abortion, complicated by shock, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.51) Illegally induced abortion, complicated by shock, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.51) Illegally induced abortion, complicated by shock, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.51''', NULL, + '(636.51) Illegally induced abortion, complicated by shock, incomplete', '(636.51) Illegally induced abortion, complicated by shock, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.52) Illegally induced abortion, complicated by shock, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.52) Illegally induced abortion, complicated by shock, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.52''', NULL, + '(636.52) Illegally induced abortion, complicated by shock, complete', '(636.52) Illegally induced abortion, complicated by shock, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.7''', NULL, + 'Illegally induced abortion with other specified complications (636.7)', 'Illegally induced abortion with other specified complications (636.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.70) Illegally induced abortion, with other specified complications, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.70) Illegally induced abortion, with other specified complications, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.70''', NULL, + '(636.70) Illegally induced abortion, with other specified complications, unspecified', '(636.70) Illegally induced abortion, with other specified complications, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.71) Illegally induced abortion, with other specified complications, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.71) Illegally induced abortion, with other specified complications, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.71''', NULL, + '(636.71) Illegally induced abortion, with other specified complications, incomplete', '(636.71) Illegally induced abortion, with other specified complications, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.72) Illegally induced abortion, with other specified complications, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.72) Illegally induced abortion, with other specified complications, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.72''', NULL, + '(636.72) Illegally induced abortion, with other specified complications, complete', '(636.72) Illegally induced abortion, with other specified complications, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.8''', NULL, + 'Illegally induced abortion with unspecified complication (636.8)', 'Illegally induced abortion with unspecified complication (636.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.80) Illegally induced abortion, with unspecified complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.80) Illegally induced abortion, with unspecified complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.80''', NULL, + '(636.80) Illegally induced abortion, with unspecified complication, unspecified', '(636.80) Illegally induced abortion, with unspecified complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.81) Illegally induced abortion, with unspecified complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.81) Illegally induced abortion, with unspecified complication, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.81''', NULL, + '(636.81) Illegally induced abortion, with unspecified complication, incomplete', '(636.81) Illegally induced abortion, with unspecified complication, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.82) Illegally induced abortion, with unspecified complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.82) Illegally induced abortion, with unspecified complication, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.82''', NULL, + '(636.82) Illegally induced abortion, with unspecified complication, complete', '(636.82) Illegally induced abortion, with unspecified complication, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.9''', NULL, + 'Illegally induced abortion without mention of complication (636.9)', 'Illegally induced abortion without mention of complication (636.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.90) Illegally induced abortion, without mention of complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.90) Illegally induced abortion, without mention of complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.90''', NULL, + '(636.90) Illegally induced abortion, without mention of complication, unspecified', '(636.90) Illegally induced abortion, without mention of complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.91) Illegally induced abortion, without mention of complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.91) Illegally induced abortion, without mention of complication, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.91''', NULL, + '(636.91) Illegally induced abortion, without mention of complication, incomplete', '(636.91) Illegally induced abortion, without mention of complication, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.92) Illegally induced abortion, without mention of complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.92) Illegally induced abortion, without mention of complication, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.92''', NULL, + '(636.92) Illegally induced abortion, without mention of complication, complete', '(636.92) Illegally induced abortion, without mention of complication, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635''', NULL, + 'Legally induced abortion (635)', 'Legally induced abortion (635)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.2''', NULL, + 'Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)', 'Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.20) Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.20) Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.20''', NULL, + '(635.20) Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified', '(635.20) Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.21) Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.21) Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.21''', NULL, + '(635.21) Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete', '(635.21) Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.22) Legally induced abortion, complicated by damage to pelvic organs or tissues, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.22) Legally induced abortion, complicated by damage to pelvic organs or tissues, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.22''', NULL, + '(635.22) Legally induced abortion, complicated by damage to pelvic organs or tissues, complete', '(635.22) Legally induced abortion, complicated by damage to pelvic organs or tissues, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.1''', NULL, + 'Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)', 'Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.10) Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.10) Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.10''', NULL, + '(635.10) Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified', '(635.10) Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.11) Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.11) Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.11''', NULL, + '(635.11) Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete', '(635.11) Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.12) Legally induced abortion, complicated by delayed or excessive hemorrhage, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.12) Legally induced abortion, complicated by delayed or excessive hemorrhage, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.12''', NULL, + '(635.12) Legally induced abortion, complicated by delayed or excessive hemorrhage, complete', '(635.12) Legally induced abortion, complicated by delayed or excessive hemorrhage, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.6''', NULL, + 'Legally induced abortion complicated by embolism (635.6)', 'Legally induced abortion complicated by embolism (635.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.60) Legally induced abortion, complicated by embolism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.60) Legally induced abortion, complicated by embolism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.60''', NULL, + '(635.60) Legally induced abortion, complicated by embolism, unspecified', '(635.60) Legally induced abortion, complicated by embolism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.61) Legally induced abortion, complicated by embolism, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.61) Legally induced abortion, complicated by embolism, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.61''', NULL, + '(635.61) Legally induced abortion, complicated by embolism, incomplete', '(635.61) Legally induced abortion, complicated by embolism, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.62) Legally induced abortion, complicated by embolism, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.62) Legally induced abortion, complicated by embolism, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.62''', NULL, + '(635.62) Legally induced abortion, complicated by embolism, complete', '(635.62) Legally induced abortion, complicated by embolism, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.0''', NULL, + 'Legally induced abortion complicated by genital tract and pelvic infection (635.0)', 'Legally induced abortion complicated by genital tract and pelvic infection (635.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.00) Legally induced abortion, complicated by genital tract and pelvic infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.00) Legally induced abortion, complicated by genital tract and pelvic infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.00''', NULL, + '(635.00) Legally induced abortion, complicated by genital tract and pelvic infection, unspecified', '(635.00) Legally induced abortion, complicated by genital tract and pelvic infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.01) Legally induced abortion, complicated by genital tract and pelvic infection, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.01) Legally induced abortion, complicated by genital tract and pelvic infection, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.01''', NULL, + '(635.01) Legally induced abortion, complicated by genital tract and pelvic infection, incomplete', '(635.01) Legally induced abortion, complicated by genital tract and pelvic infection, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.02) Legally induced abortion, complicated by genital tract and pelvic infection, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.02) Legally induced abortion, complicated by genital tract and pelvic infection, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.02''', NULL, + '(635.02) Legally induced abortion, complicated by genital tract and pelvic infection, complete', '(635.02) Legally induced abortion, complicated by genital tract and pelvic infection, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.4''', NULL, + 'Legally induced abortion complicated by metabolic disorder (635.4)', 'Legally induced abortion complicated by metabolic disorder (635.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.40) Legally induced abortion, complicated by metabolic disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.40) Legally induced abortion, complicated by metabolic disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.40''', NULL, + '(635.40) Legally induced abortion, complicated by metabolic disorder, unspecified', '(635.40) Legally induced abortion, complicated by metabolic disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.41) Legally induced abortion, complicated by metabolic disorder, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.41) Legally induced abortion, complicated by metabolic disorder, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.41''', NULL, + '(635.41) Legally induced abortion, complicated by metabolic disorder, incomplete', '(635.41) Legally induced abortion, complicated by metabolic disorder, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.42) Legally induced abortion, complicated by metabolic disorder, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.42) Legally induced abortion, complicated by metabolic disorder, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.42''', NULL, + '(635.42) Legally induced abortion, complicated by metabolic disorder, complete', '(635.42) Legally induced abortion, complicated by metabolic disorder, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.3''', NULL, + 'Legally induced abortion complicated by renal failure (635.3)', 'Legally induced abortion complicated by renal failure (635.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.30) Legally induced abortion, complicated by renal failure,unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.30) Legally induced abortion, complicated by renal failure,unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.30''', NULL, + '(635.30) Legally induced abortion, complicated by renal failure,unspecified', '(635.30) Legally induced abortion, complicated by renal failure,unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.31) Legally induced abortion, complicated by renal failure, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.31) Legally induced abortion, complicated by renal failure, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.31''', NULL, + '(635.31) Legally induced abortion, complicated by renal failure, incomplete', '(635.31) Legally induced abortion, complicated by renal failure, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.32) Legally induced abortion, complicated by renal failure, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.32) Legally induced abortion, complicated by renal failure, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.32''', NULL, + '(635.32) Legally induced abortion, complicated by renal failure, complete', '(635.32) Legally induced abortion, complicated by renal failure, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.5''', NULL, + 'Legally induced abortion complicated by shock (635.5)', 'Legally induced abortion complicated by shock (635.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.50) Legally induced abortion, complicated by shock, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.50) Legally induced abortion, complicated by shock, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.50''', NULL, + '(635.50) Legally induced abortion, complicated by shock, unspecified', '(635.50) Legally induced abortion, complicated by shock, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.51) Legally induced abortion, complicated by shock, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.51) Legally induced abortion, complicated by shock, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.51''', NULL, + '(635.51) Legally induced abortion, complicated by shock, incomplete', '(635.51) Legally induced abortion, complicated by shock, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.52) Legally induced abortion, complicated by shock, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.52) Legally induced abortion, complicated by shock, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.52''', NULL, + '(635.52) Legally induced abortion, complicated by shock, complete', '(635.52) Legally induced abortion, complicated by shock, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.7''', NULL, + 'Legally induced abortion with other specified complications (635.7)', 'Legally induced abortion with other specified complications (635.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.70) Legally induced abortion, with other specified complications, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.70) Legally induced abortion, with other specified complications, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.70''', NULL, + '(635.70) Legally induced abortion, with other specified complications, unspecified', '(635.70) Legally induced abortion, with other specified complications, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.71) Legally induced abortion, with other specified complications, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.71) Legally induced abortion, with other specified complications, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.71''', NULL, + '(635.71) Legally induced abortion, with other specified complications, incomplete', '(635.71) Legally induced abortion, with other specified complications, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.72) Legally induced abortion, with other specified complications, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.72) Legally induced abortion, with other specified complications, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.72''', NULL, + '(635.72) Legally induced abortion, with other specified complications, complete', '(635.72) Legally induced abortion, with other specified complications, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.8''', NULL, + 'Legally induced abortion with unspecified complication (635.8)', 'Legally induced abortion with unspecified complication (635.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.80) Legally induced abortion, with unspecified complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.80) Legally induced abortion, with unspecified complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.80''', NULL, + '(635.80) Legally induced abortion, with unspecified complication, unspecified', '(635.80) Legally induced abortion, with unspecified complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.81) Legally induced abortion, with unspecified complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.81) Legally induced abortion, with unspecified complication, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.81''', NULL, + '(635.81) Legally induced abortion, with unspecified complication, incomplete', '(635.81) Legally induced abortion, with unspecified complication, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.82) Legally induced abortion, with unspecified complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.82) Legally induced abortion, with unspecified complication, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.82''', NULL, + '(635.82) Legally induced abortion, with unspecified complication, complete', '(635.82) Legally induced abortion, with unspecified complication, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.9''', NULL, + 'Legally induced abortion without mention of complication (635.9)', 'Legally induced abortion without mention of complication (635.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.90) Legally induced abortion, without mention of complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.90) Legally induced abortion, without mention of complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.90''', NULL, + '(635.90) Legally induced abortion, without mention of complication, unspecified', '(635.90) Legally induced abortion, without mention of complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.91) Legally induced abortion, without mention of complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.91) Legally induced abortion, without mention of complication, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.91''', NULL, + '(635.91) Legally induced abortion, without mention of complication, incomplete', '(635.91) Legally induced abortion, without mention of complication, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.92) Legally induced abortion, without mention of complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.92) Legally induced abortion, without mention of complication, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.92''', NULL, + '(635.92) Legally induced abortion, without mention of complication, complete', '(635.92) Legally induced abortion, without mention of complication, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634''', NULL, + 'Spontaneous abortion (634)', 'Spontaneous abortion (634)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.2''', NULL, + 'Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)', 'Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.20) Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.20) Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.20''', NULL, + '(634.20) Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified', '(634.20) Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.21) Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.21) Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.21''', NULL, + '(634.21) Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete', '(634.21) Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.22) Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.22) Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.22''', NULL, + '(634.22) Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete', '(634.22) Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.1''', NULL, + 'Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)', 'Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.10) Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.10) Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.10''', NULL, + '(634.10) Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified', '(634.10) Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.11) Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.11) Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.11''', NULL, + '(634.11) Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete', '(634.11) Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.12) Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.12) Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.12''', NULL, + '(634.12) Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete', '(634.12) Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.6''', NULL, + 'Spontaneous abortion complicated by embolism (634.6)', 'Spontaneous abortion complicated by embolism (634.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.60) Spontaneous abortion, complicated by embolism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.60) Spontaneous abortion, complicated by embolism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.60''', NULL, + '(634.60) Spontaneous abortion, complicated by embolism, unspecified', '(634.60) Spontaneous abortion, complicated by embolism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.61) Spontaneous abortion, complicated by embolism, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.61) Spontaneous abortion, complicated by embolism, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.61''', NULL, + '(634.61) Spontaneous abortion, complicated by embolism, incomplete', '(634.61) Spontaneous abortion, complicated by embolism, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.62) Spontaneous abortion, complicated by embolism, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.62) Spontaneous abortion, complicated by embolism, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.62''', NULL, + '(634.62) Spontaneous abortion, complicated by embolism, complete', '(634.62) Spontaneous abortion, complicated by embolism, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.0''', NULL, + 'Spontaneous abortion complicated by genital tract and pelvic infection (634.0)', 'Spontaneous abortion complicated by genital tract and pelvic infection (634.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.00) Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.00) Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.00''', NULL, + '(634.00) Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified', '(634.00) Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.01) Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.01) Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.01''', NULL, + '(634.01) Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete', '(634.01) Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.02) Spontaneous abortion, complicated by genital tract and pelvic infection, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.02) Spontaneous abortion, complicated by genital tract and pelvic infection, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.02''', NULL, + '(634.02) Spontaneous abortion, complicated by genital tract and pelvic infection, complete', '(634.02) Spontaneous abortion, complicated by genital tract and pelvic infection, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.4''', NULL, + 'Spontaneous abortion complicated by metabolic disorder (634.4)', 'Spontaneous abortion complicated by metabolic disorder (634.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.40) Spontaneous abortion, complicated by metabolic disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.40) Spontaneous abortion, complicated by metabolic disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.40''', NULL, + '(634.40) Spontaneous abortion, complicated by metabolic disorder, unspecified', '(634.40) Spontaneous abortion, complicated by metabolic disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.41) Spontaneous abortion, complicated by metabolic disorder, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.41) Spontaneous abortion, complicated by metabolic disorder, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.41''', NULL, + '(634.41) Spontaneous abortion, complicated by metabolic disorder, incomplete', '(634.41) Spontaneous abortion, complicated by metabolic disorder, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.42) Spontaneous abortion, complicated by metabolic disorder, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.42) Spontaneous abortion, complicated by metabolic disorder, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.42''', NULL, + '(634.42) Spontaneous abortion, complicated by metabolic disorder, complete', '(634.42) Spontaneous abortion, complicated by metabolic disorder, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.3''', NULL, + 'Spontaneous abortion complicated by renal failure (634.3)', 'Spontaneous abortion complicated by renal failure (634.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.30) Spontaneous abortion, complicated by renal failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.30) Spontaneous abortion, complicated by renal failure, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.30''', NULL, + '(634.30) Spontaneous abortion, complicated by renal failure, unspecified', '(634.30) Spontaneous abortion, complicated by renal failure, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.31) Spontaneous abortion, complicated by renal failure, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.31) Spontaneous abortion, complicated by renal failure, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.31''', NULL, + '(634.31) Spontaneous abortion, complicated by renal failure, incomplete', '(634.31) Spontaneous abortion, complicated by renal failure, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.32) Spontaneous abortion, complicated by renal failure, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.32) Spontaneous abortion, complicated by renal failure, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.32''', NULL, + '(634.32) Spontaneous abortion, complicated by renal failure, complete', '(634.32) Spontaneous abortion, complicated by renal failure, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.5''', NULL, + 'Spontaneous abortion complicated by shock (634.5)', 'Spontaneous abortion complicated by shock (634.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.50) Spontaneous abortion, complicated by shock, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.50) Spontaneous abortion, complicated by shock, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.50''', NULL, + '(634.50) Spontaneous abortion, complicated by shock, unspecified', '(634.50) Spontaneous abortion, complicated by shock, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.51) Spontaneous abortion, complicated by shock, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.51) Spontaneous abortion, complicated by shock, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.51''', NULL, + '(634.51) Spontaneous abortion, complicated by shock, incomplete', '(634.51) Spontaneous abortion, complicated by shock, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.52) Spontaneous abortion, complicated by shock, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.52) Spontaneous abortion, complicated by shock, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.52''', NULL, + '(634.52) Spontaneous abortion, complicated by shock, complete', '(634.52) Spontaneous abortion, complicated by shock, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.7''', NULL, + 'Spontaneous abortion with other specified complications (634.7)', 'Spontaneous abortion with other specified complications (634.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.70) Spontaneous abortion, with other specified complications, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.70) Spontaneous abortion, with other specified complications, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.70''', NULL, + '(634.70) Spontaneous abortion, with other specified complications, unspecified', '(634.70) Spontaneous abortion, with other specified complications, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.71) Spontaneous abortion, with other specified complications, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.71) Spontaneous abortion, with other specified complications, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.71''', NULL, + '(634.71) Spontaneous abortion, with other specified complications, incomplete', '(634.71) Spontaneous abortion, with other specified complications, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.72) Spontaneous abortion, with other specified complications, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.72) Spontaneous abortion, with other specified complications, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.72''', NULL, + '(634.72) Spontaneous abortion, with other specified complications, complete', '(634.72) Spontaneous abortion, with other specified complications, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.8''', NULL, + 'Spontaneous abortion with unspecified complication (634.8)', 'Spontaneous abortion with unspecified complication (634.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.80) Spontaneous abortion, with unspecified complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.80) Spontaneous abortion, with unspecified complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.80''', NULL, + '(634.80) Spontaneous abortion, with unspecified complication, unspecified', '(634.80) Spontaneous abortion, with unspecified complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.81) Spontaneous abortion, with unspecified complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.81) Spontaneous abortion, with unspecified complication, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.81''', NULL, + '(634.81) Spontaneous abortion, with unspecified complication, incomplete', '(634.81) Spontaneous abortion, with unspecified complication, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.82) Spontaneous abortion, with unspecified complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.82) Spontaneous abortion, with unspecified complication, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.82''', NULL, + '(634.82) Spontaneous abortion, with unspecified complication, complete', '(634.82) Spontaneous abortion, with unspecified complication, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.9''', NULL, + 'Spontaneous abortion without mention of complication (634.9)', 'Spontaneous abortion without mention of complication (634.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.90) Spontaneous abortion, without mention of complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.90) Spontaneous abortion, without mention of complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.90''', NULL, + '(634.90) Spontaneous abortion, without mention of complication, unspecified', '(634.90) Spontaneous abortion, without mention of complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.91) Spontaneous abortion, without mention of complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.91) Spontaneous abortion, without mention of complication, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.91''', NULL, + '(634.91) Spontaneous abortion, without mention of complication, incomplete', '(634.91) Spontaneous abortion, without mention of complication, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.92) Spontaneous abortion, without mention of complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.92) Spontaneous abortion, without mention of complication, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.92''', NULL, + '(634.92) Spontaneous abortion, without mention of complication, complete', '(634.92) Spontaneous abortion, without mention of complication, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637''', NULL, + 'Unspecified abortion (637)', 'Unspecified abortion (637)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.2''', NULL, + 'Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)', 'Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.20) Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.20) Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.20''', NULL, + '(637.20) Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified', '(637.20) Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.21) Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.21) Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.21''', NULL, + '(637.21) Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete', '(637.21) Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.22) Unspecified abortion, complicated by damage to pelvic organs or tissues, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.22) Unspecified abortion, complicated by damage to pelvic organs or tissues, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.22''', NULL, + '(637.22) Unspecified abortion, complicated by damage to pelvic organs or tissues, complete', '(637.22) Unspecified abortion, complicated by damage to pelvic organs or tissues, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.1''', NULL, + 'Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)', 'Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.10) Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.10) Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.10''', NULL, + '(637.10) Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified', '(637.10) Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.11) Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.11) Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.11''', NULL, + '(637.11) Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete', '(637.11) Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.12) Unspecified abortion, complicated by delayed or excessive hemorrhage, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.12) Unspecified abortion, complicated by delayed or excessive hemorrhage, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.12''', NULL, + '(637.12) Unspecified abortion, complicated by delayed or excessive hemorrhage, complete', '(637.12) Unspecified abortion, complicated by delayed or excessive hemorrhage, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.6''', NULL, + 'Unspecified abortion complicated by embolism (637.6)', 'Unspecified abortion complicated by embolism (637.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.60) Unspecified abortion, complicated by embolism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.60) Unspecified abortion, complicated by embolism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.60''', NULL, + '(637.60) Unspecified abortion, complicated by embolism, unspecified', '(637.60) Unspecified abortion, complicated by embolism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.61) Unspecified abortion, complicated by embolism, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.61) Unspecified abortion, complicated by embolism, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.61''', NULL, + '(637.61) Unspecified abortion, complicated by embolism, incomplete', '(637.61) Unspecified abortion, complicated by embolism, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.62) Unspecified abortion, complicated by embolism, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.62) Unspecified abortion, complicated by embolism, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.62''', NULL, + '(637.62) Unspecified abortion, complicated by embolism, complete', '(637.62) Unspecified abortion, complicated by embolism, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.0''', NULL, + 'Unspecified abortion complicated by genital tract and pelvic infection (637.0)', 'Unspecified abortion complicated by genital tract and pelvic infection (637.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.00) Unspecified abortion, complicated by genital tract and pelvic infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.00) Unspecified abortion, complicated by genital tract and pelvic infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.00''', NULL, + '(637.00) Unspecified abortion, complicated by genital tract and pelvic infection, unspecified', '(637.00) Unspecified abortion, complicated by genital tract and pelvic infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.01) Unspecified abortion, complicated by genital tract and pelvic infection, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.01) Unspecified abortion, complicated by genital tract and pelvic infection, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.01''', NULL, + '(637.01) Unspecified abortion, complicated by genital tract and pelvic infection, incomplete', '(637.01) Unspecified abortion, complicated by genital tract and pelvic infection, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.02) Unspecified abortion, complicated by genital tract and pelvic infection, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.02) Unspecified abortion, complicated by genital tract and pelvic infection, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.02''', NULL, + '(637.02) Unspecified abortion, complicated by genital tract and pelvic infection, complete', '(637.02) Unspecified abortion, complicated by genital tract and pelvic infection, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.4''', NULL, + 'Unspecified abortion complicated by metabolic disorder (637.4)', 'Unspecified abortion complicated by metabolic disorder (637.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.40) Unspecified abortion, complicated by metabolic disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.40) Unspecified abortion, complicated by metabolic disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.40''', NULL, + '(637.40) Unspecified abortion, complicated by metabolic disorder, unspecified', '(637.40) Unspecified abortion, complicated by metabolic disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.41) Unspecified abortion, complicated by metabolic disorder, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.41) Unspecified abortion, complicated by metabolic disorder, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.41''', NULL, + '(637.41) Unspecified abortion, complicated by metabolic disorder, incomplete', '(637.41) Unspecified abortion, complicated by metabolic disorder, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.42) Unspecified abortion, complicated by metabolic disorder, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.42) Unspecified abortion, complicated by metabolic disorder, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.42''', NULL, + '(637.42) Unspecified abortion, complicated by metabolic disorder, complete', '(637.42) Unspecified abortion, complicated by metabolic disorder, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.3''', NULL, + 'Unspecified abortion complicated by renal failure (637.3)', 'Unspecified abortion complicated by renal failure (637.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.30) Unspecified abortion, complicated by renal failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.30) Unspecified abortion, complicated by renal failure, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.30''', NULL, + '(637.30) Unspecified abortion, complicated by renal failure, unspecified', '(637.30) Unspecified abortion, complicated by renal failure, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.31) Unspecified abortion, complicated by renal failure, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.31) Unspecified abortion, complicated by renal failure, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.31''', NULL, + '(637.31) Unspecified abortion, complicated by renal failure, incomplete', '(637.31) Unspecified abortion, complicated by renal failure, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.32) Unspecified abortion, complicated by renal failure, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.32) Unspecified abortion, complicated by renal failure, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.32''', NULL, + '(637.32) Unspecified abortion, complicated by renal failure, complete', '(637.32) Unspecified abortion, complicated by renal failure, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.5''', NULL, + 'Unspecified abortion complicated by shock (637.5)', 'Unspecified abortion complicated by shock (637.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.50) Unspecified abortion, complicated by shock, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.50) Unspecified abortion, complicated by shock, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.50''', NULL, + '(637.50) Unspecified abortion, complicated by shock, unspecified', '(637.50) Unspecified abortion, complicated by shock, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.51) Unspecified abortion, complicated by shock, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.51) Unspecified abortion, complicated by shock, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.51''', NULL, + '(637.51) Unspecified abortion, complicated by shock, incomplete', '(637.51) Unspecified abortion, complicated by shock, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.52) Unspecified abortion, complicated by shock, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.52) Unspecified abortion, complicated by shock, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.52''', NULL, + '(637.52) Unspecified abortion, complicated by shock, complete', '(637.52) Unspecified abortion, complicated by shock, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.7''', NULL, + 'Unspecified abortion with other specified complications (637.7)', 'Unspecified abortion with other specified complications (637.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.70) Unspecified abortion, with other specified complications, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.70) Unspecified abortion, with other specified complications, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.70''', NULL, + '(637.70) Unspecified abortion, with other specified complications, unspecified', '(637.70) Unspecified abortion, with other specified complications, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.71) Unspecified abortion, with other specified complications, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.71) Unspecified abortion, with other specified complications, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.71''', NULL, + '(637.71) Unspecified abortion, with other specified complications, incomplete', '(637.71) Unspecified abortion, with other specified complications, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.72) Unspecified abortion, with other specified complications, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.72) Unspecified abortion, with other specified complications, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.72''', NULL, + '(637.72) Unspecified abortion, with other specified complications, complete', '(637.72) Unspecified abortion, with other specified complications, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.8''', NULL, + 'Unspecified abortion with unspecified complication (637.8)', 'Unspecified abortion with unspecified complication (637.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.80) Unspecified abortion, with unspecified complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.80) Unspecified abortion, with unspecified complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.80''', NULL, + '(637.80) Unspecified abortion, with unspecified complication, unspecified', '(637.80) Unspecified abortion, with unspecified complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.81) Unspecified abortion, with unspecified complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.81) Unspecified abortion, with unspecified complication, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.81''', NULL, + '(637.81) Unspecified abortion, with unspecified complication, incomplete', '(637.81) Unspecified abortion, with unspecified complication, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.82) Unspecified abortion, with unspecified complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.82) Unspecified abortion, with unspecified complication, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.82''', NULL, + '(637.82) Unspecified abortion, with unspecified complication, complete', '(637.82) Unspecified abortion, with unspecified complication, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.9''', NULL, + 'Unspecified abortion without mention of complication (637.9)', 'Unspecified abortion without mention of complication (637.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.90) Unspecified abortion, without mention of complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.90) Unspecified abortion, without mention of complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.90''', NULL, + '(637.90) Unspecified abortion, without mention of complication, unspecified', '(637.90) Unspecified abortion, without mention of complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.91) Unspecified abortion, without mention of complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.91) Unspecified abortion, without mention of complication, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.91''', NULL, + '(637.91) Unspecified abortion, without mention of complication, incomplete', '(637.91) Unspecified abortion, without mention of complication, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.92) Unspecified abortion, without mention of complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.92) Unspecified abortion, without mention of complication, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.92''', NULL, + '(637.92) Unspecified abortion, without mention of complication, complete', '(637.92) Unspecified abortion, without mention of complication, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''740'' AND ''759.99''', NULL, + 'Congenital anomalies (740-759.99)', 'Congenital anomalies (740-759.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''740''', NULL, + 'Anencephalus and similar anomalies (740)', 'Anencephalus and similar anomalies (740)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.0) Anencephalus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.0) Anencephalus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''740.0''', NULL, + '(740.0) Anencephalus', '(740.0) Anencephalus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.1) Craniorachischisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.1) Craniorachischisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''740.1''', NULL, + '(740.1) Craniorachischisis', '(740.1) Craniorachischisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.2) Iniencephaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.2) Iniencephaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''740.2''', NULL, + '(740.2) Iniencephaly', '(740.2) Iniencephaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748''', NULL, + 'Anomalies of respiratory system, congenital (748)', 'Anomalies of respiratory system, congenital (748)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.0) Choanal atresia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.0) Choanal atresia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.0''', NULL, + '(748.0) Choanal atresia', '(748.0) Choanal atresia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.1) Other anomalies of nose\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.1) Other anomalies of nose\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.1''', NULL, + '(748.1) Other anomalies of nose', '(748.1) Other anomalies of nose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.2) Web of larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.2) Web of larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.2''', NULL, + '(748.2) Web of larynx', '(748.2) Web of larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.3) Other anomalies of larynx, trachea, and bronchus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.3) Other anomalies of larynx, trachea, and bronchus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.3''', NULL, + '(748.3) Other anomalies of larynx, trachea, and bronchus', '(748.3) Other anomalies of larynx, trachea, and bronchus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.4) Congenital cystic lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.4) Congenital cystic lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.4''', NULL, + '(748.4) Congenital cystic lung', '(748.4) Congenital cystic lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.5) Agenesis, hypoplasia, and dysplasia of lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.5) Agenesis, hypoplasia, and dysplasia of lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.5''', NULL, + '(748.5) Agenesis, hypoplasia, and dysplasia of lung', '(748.5) Agenesis, hypoplasia, and dysplasia of lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.8) Other specified anomalies of respiratory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.8) Other specified anomalies of respiratory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.8''', NULL, + '(748.8) Other specified anomalies of respiratory system', '(748.8) Other specified anomalies of respiratory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.9) Unspecified anomaly of respiratory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.9) Unspecified anomaly of respiratory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.9''', NULL, + '(748.9) Unspecified anomaly of respiratory system', '(748.9) Unspecified anomaly of respiratory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.6''', NULL, + 'Congenital other anomalies of lung (748.6)', 'Congenital other anomalies of lung (748.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.60) Anomaly of lung, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.60) Anomaly of lung, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.60''', NULL, + '(748.60) Anomaly of lung, unspecified', '(748.60) Anomaly of lung, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.61) Congenital bronchiectasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.61) Congenital bronchiectasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.61''', NULL, + '(748.61) Congenital bronchiectasis', '(748.61) Congenital bronchiectasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.69) Other congenital anomalies of lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.69) Other congenital anomalies of lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.69''', NULL, + '(748.69) Other congenital anomalies of lung', '(748.69) Other congenital anomalies of lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745''', NULL, + 'Bulbus cordis anomalies and anomalies of cardiac septal closure (745)', 'Bulbus cordis anomalies and anomalies of cardiac septal closure (745)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.0) Common truncus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.0) Common truncus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.0''', NULL, + '(745.0) Common truncus', '(745.0) Common truncus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.2) Tetralogy of fallot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.2) Tetralogy of fallot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.2''', NULL, + '(745.2) Tetralogy of fallot', '(745.2) Tetralogy of fallot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.3) Common ventricle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.3) Common ventricle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.3''', NULL, + '(745.3) Common ventricle', '(745.3) Common ventricle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.4) Ventricular septal defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.4) Ventricular septal defect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.4''', NULL, + '(745.4) Ventricular septal defect', '(745.4) Ventricular septal defect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.5) Ostium secundum type atrial septal defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.5) Ostium secundum type atrial septal defect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.5''', NULL, + '(745.5) Ostium secundum type atrial septal defect', '(745.5) Ostium secundum type atrial septal defect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.7) Cor biloculare\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.7) Cor biloculare\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.7''', NULL, + '(745.7) Cor biloculare', '(745.7) Cor biloculare', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.8) Other bulbus cordis anomalies and anomalies of cardiac septal closure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.8) Other bulbus cordis anomalies and anomalies of cardiac septal closure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.8''', NULL, + '(745.8) Other bulbus cordis anomalies and anomalies of cardiac septal closure', '(745.8) Other bulbus cordis anomalies and anomalies of cardiac septal closure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.9) Unspecified defect of septal closure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.9) Unspecified defect of septal closure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.9''', NULL, + '(745.9) Unspecified defect of septal closure', '(745.9) Unspecified defect of septal closure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.6''', NULL, + 'Endocardial cushion defects (745.6)', 'Endocardial cushion defects (745.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.60) Endocardial cushion defect, unspecified type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.60) Endocardial cushion defect, unspecified type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.60''', NULL, + '(745.60) Endocardial cushion defect, unspecified type', '(745.60) Endocardial cushion defect, unspecified type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.61) Ostium primum defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.61) Ostium primum defect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.61''', NULL, + '(745.61) Ostium primum defect', '(745.61) Ostium primum defect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.69) Other endocardial cushion defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.69) Other endocardial cushion defects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.69''', NULL, + '(745.69) Other endocardial cushion defects', '(745.69) Other endocardial cushion defects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.1''', NULL, + 'Transposition of great vessels (745.1)', 'Transposition of great vessels (745.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.10) Complete transposition of great vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.10) Complete transposition of great vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.10''', NULL, + '(745.10) Complete transposition of great vessels', '(745.10) Complete transposition of great vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.11) Double outlet right ventricle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.11) Double outlet right ventricle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.11''', NULL, + '(745.11) Double outlet right ventricle', '(745.11) Double outlet right ventricle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.12) Corrected transposition of great vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.12) Corrected transposition of great vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.12''', NULL, + '(745.12) Corrected transposition of great vessels', '(745.12) Corrected transposition of great vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.19) Other transposition of great vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.19) Other transposition of great vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.19''', NULL, + '(745.19) Other transposition of great vessels', '(745.19) Other transposition of great vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754''', NULL, + 'Certain congenital musculoskeletal deformities (754)', 'Certain congenital musculoskeletal deformities (754)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.0''', NULL, + '(754.0) Congenital musculoskeletal deformities of skull, face, and jaw', '(754.0) Congenital musculoskeletal deformities of skull, face, and jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.1''', NULL, + '(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle', '(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.2) Congenital musculoskeletal deformities of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.2) Congenital musculoskeletal deformities of spine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.2''', NULL, + '(754.2) Congenital musculoskeletal deformities of spine', '(754.2) Congenital musculoskeletal deformities of spine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.3''', NULL, + 'Congenital dislocation of hip (754.3)', 'Congenital dislocation of hip (754.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.30) Congenital dislocation of hip, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.30) Congenital dislocation of hip, unilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.30''', NULL, + '(754.30) Congenital dislocation of hip, unilateral', '(754.30) Congenital dislocation of hip, unilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.31) Congenital dislocation of hip, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.31) Congenital dislocation of hip, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.31''', NULL, + '(754.31) Congenital dislocation of hip, bilateral', '(754.31) Congenital dislocation of hip, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.32) Congenital subluxation of hip, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.32) Congenital subluxation of hip, unilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.32''', NULL, + '(754.32) Congenital subluxation of hip, unilateral', '(754.32) Congenital subluxation of hip, unilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.33) Congenital subluxation of hip, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.33) Congenital subluxation of hip, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.33''', NULL, + '(754.33) Congenital subluxation of hip, bilateral', '(754.33) Congenital subluxation of hip, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.35) Congenital dislocation of one hip with subluxation of other hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.35) Congenital dislocation of one hip with subluxation of other hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.35''', NULL, + '(754.35) Congenital dislocation of one hip with subluxation of other hip', '(754.35) Congenital dislocation of one hip with subluxation of other hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.4''', NULL, + 'Congenital genu recurvatum and bowing of long bones of leg (754.4)', 'Congenital genu recurvatum and bowing of long bones of leg (754.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.40) Genu recurvatum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.40) Genu recurvatum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.40''', NULL, + '(754.40) Genu recurvatum', '(754.40) Genu recurvatum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.41) Congenital dislocation of knee (with genu recurvatum)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.41) Congenital dislocation of knee (with genu recurvatum)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.41) Congenital dislocation of knee (with genu recurvatum''', NULL, + '(754.41) Congenital dislocation of knee (with genu recurvatum)', '(754.41) Congenital dislocation of knee (with genu recurvatum)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.42) Congenital bowing of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.42) Congenital bowing of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.42''', NULL, + '(754.42) Congenital bowing of femur', '(754.42) Congenital bowing of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.43) Congenital bowing of tibia and fibula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.43) Congenital bowing of tibia and fibula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.43''', NULL, + '(754.43) Congenital bowing of tibia and fibula', '(754.43) Congenital bowing of tibia and fibula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.44) Congenital bowing of unspecified long bones of leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.44) Congenital bowing of unspecified long bones of leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.44''', NULL, + '(754.44) Congenital bowing of unspecified long bones of leg', '(754.44) Congenital bowing of unspecified long bones of leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.7''', NULL, + 'Other congenital deformities of feet (754.7)', 'Other congenital deformities of feet (754.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.70) Talipes, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.70) Talipes, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.70''', NULL, + '(754.70) Talipes, unspecified', '(754.70) Talipes, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.71) Talipes cavus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.71) Talipes cavus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.71''', NULL, + '(754.71) Talipes cavus', '(754.71) Talipes cavus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.79) Other deformities of feet\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.79) Other deformities of feet\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.79''', NULL, + '(754.79) Other deformities of feet', '(754.79) Other deformities of feet', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.8''', NULL, + 'Other specified nonteratogenic anomalies (754.8)', 'Other specified nonteratogenic anomalies (754.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.81) Pectus excavatum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.81) Pectus excavatum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.81''', NULL, + '(754.81) Pectus excavatum', '(754.81) Pectus excavatum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.82) Pectus carinatum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.82) Pectus carinatum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.82''', NULL, + '(754.82) Pectus carinatum', '(754.82) Pectus carinatum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.89) Other specified nonteratogenic anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.89) Other specified nonteratogenic anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.89''', NULL, + '(754.89) Other specified nonteratogenic anomalies', '(754.89) Other specified nonteratogenic anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.6''', NULL, + 'Valgus deformities of feet, congenital (754.6)', 'Valgus deformities of feet, congenital (754.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.60) Talipes valgus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.60) Talipes valgus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.60''', NULL, + '(754.60) Talipes valgus', '(754.60) Talipes valgus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.61) Congenital pes planus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.61) Congenital pes planus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.61''', NULL, + '(754.61) Congenital pes planus', '(754.61) Congenital pes planus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.62) Talipes calcaneovalgus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.62) Talipes calcaneovalgus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.62''', NULL, + '(754.62) Talipes calcaneovalgus', '(754.62) Talipes calcaneovalgus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.69) Other valgus deformities of feet\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.69) Other valgus deformities of feet\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.69''', NULL, + '(754.69) Other valgus deformities of feet', '(754.69) Other valgus deformities of feet', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.5''', NULL, + 'Varus deformities of feet, congenital (754.5)', 'Varus deformities of feet, congenital (754.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.50) Talipes varus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.50) Talipes varus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.50''', NULL, + '(754.50) Talipes varus', '(754.50) Talipes varus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.51) Talipes equinovarus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.51) Talipes equinovarus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.51''', NULL, + '(754.51) Talipes equinovarus', '(754.51) Talipes equinovarus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.52) Metatarsus primus varus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.52) Metatarsus primus varus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.52''', NULL, + '(754.52) Metatarsus primus varus', '(754.52) Metatarsus primus varus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.53) Metatarsus varus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.53) Metatarsus varus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.53''', NULL, + '(754.53) Metatarsus varus', '(754.53) Metatarsus varus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.59) Other varus deformities of feet\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.59) Other varus deformities of feet\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.59''', NULL, + '(754.59) Other varus deformities of feet', '(754.59) Other varus deformities of feet', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758''', NULL, + 'Chromosomal anomalies (758)', 'Chromosomal anomalies (758)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.0) Down''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.0) Down''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.0''', NULL, + '(758.0) Down''s syndrome', '(758.0) Down''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.1) Patau''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.1) Patau''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.1''', NULL, + '(758.1) Patau''s syndrome', '(758.1) Patau''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.2) Edwards'' syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.2) Edwards'' syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.2''', NULL, + '(758.2) Edwards'' syndrome', '(758.2) Edwards'' syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.4) Balanced autosomal translocation in normal individual\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.4) Balanced autosomal translocation in normal individual\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.4''', NULL, + '(758.4) Balanced autosomal translocation in normal individual', '(758.4) Balanced autosomal translocation in normal individual', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.5) Other conditions due to autosomal anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.5) Other conditions due to autosomal anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.5''', NULL, + '(758.5) Other conditions due to autosomal anomalies', '(758.5) Other conditions due to autosomal anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.6) Gonadal dysgenesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.6) Gonadal dysgenesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.6''', NULL, + '(758.6) Gonadal dysgenesis', '(758.6) Gonadal dysgenesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.7) Klinefelter''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.7) Klinefelter''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.7''', NULL, + '(758.7) Klinefelter''s syndrome', '(758.7) Klinefelter''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.9) Conditions due to anomaly of unspecified chromosome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.9) Conditions due to anomaly of unspecified chromosome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.9''', NULL, + '(758.9) Conditions due to anomaly of unspecified chromosome', '(758.9) Conditions due to anomaly of unspecified chromosome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.3''', NULL, + 'Autosomal deletion syndromes (758.3)', 'Autosomal deletion syndromes (758.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.31) Cri-du-chat syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.31) Cri-du-chat syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.31''', NULL, + '(758.31) Cri-du-chat syndrome', '(758.31) Cri-du-chat syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.32) Velo-cardio-facial syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.32) Velo-cardio-facial syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.32''', NULL, + '(758.32) Velo-cardio-facial syndrome', '(758.32) Velo-cardio-facial syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.33) Other microdeletions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.33) Other microdeletions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.33''', NULL, + '(758.33) Other microdeletions', '(758.33) Other microdeletions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.39) Other autosomal deletions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.39) Other autosomal deletions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.39''', NULL, + '(758.39) Other autosomal deletions', '(758.39) Other autosomal deletions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.8''', NULL, + 'Other conditions due to chromosome anomalies (758.8)', 'Other conditions due to chromosome anomalies (758.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\(758.81) Other conditions due to sex chromosome anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\(758.81) Other conditions due to sex chromosome anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.81''', NULL, + '(758.81) Other conditions due to sex chromosome anomalies', '(758.81) Other conditions due to sex chromosome anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\(758.89) Other conditions due to chromosome anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\(758.89) Other conditions due to chromosome anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.89''', NULL, + '(758.89) Other conditions due to chromosome anomalies', '(758.89) Other conditions due to chromosome anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749''', NULL, + 'Cleft palate and cleft lip (749)', 'Cleft palate and cleft lip (749)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.1''', NULL, + 'Cleft lip (749.1)', 'Cleft lip (749.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.10) Cleft lip, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.10) Cleft lip, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.10''', NULL, + '(749.10) Cleft lip, unspecified', '(749.10) Cleft lip, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.11) Cleft lip, unilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.11) Cleft lip, unilateral, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.11''', NULL, + '(749.11) Cleft lip, unilateral, complete', '(749.11) Cleft lip, unilateral, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.12) Cleft lip, unilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.12) Cleft lip, unilateral, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.12''', NULL, + '(749.12) Cleft lip, unilateral, incomplete', '(749.12) Cleft lip, unilateral, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.13) Cleft lip, bilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.13) Cleft lip, bilateral, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.13''', NULL, + '(749.13) Cleft lip, bilateral, complete', '(749.13) Cleft lip, bilateral, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.14) Cleft lip, bilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.14) Cleft lip, bilateral, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.14''', NULL, + '(749.14) Cleft lip, bilateral, incomplete', '(749.14) Cleft lip, bilateral, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.0''', NULL, + 'Cleft palate (749.0)', 'Cleft palate (749.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.00) Cleft palate, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.00) Cleft palate, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.00''', NULL, + '(749.00) Cleft palate, unspecified', '(749.00) Cleft palate, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.01) Cleft palate, unilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.01) Cleft palate, unilateral, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.01''', NULL, + '(749.01) Cleft palate, unilateral, complete', '(749.01) Cleft palate, unilateral, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.02) Cleft palate, unilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.02) Cleft palate, unilateral, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.02''', NULL, + '(749.02) Cleft palate, unilateral, incomplete', '(749.02) Cleft palate, unilateral, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.03) Cleft palate, bilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.03) Cleft palate, bilateral, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.03''', NULL, + '(749.03) Cleft palate, bilateral, complete', '(749.03) Cleft palate, bilateral, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.04) Cleft palate, bilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.04) Cleft palate, bilateral, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.04''', NULL, + '(749.04) Cleft palate, bilateral, incomplete', '(749.04) Cleft palate, bilateral, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.2''', NULL, + 'Cleft palate with cleft lip (749.2)', 'Cleft palate with cleft lip (749.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.20) Cleft palate with cleft lip, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.20) Cleft palate with cleft lip, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.20''', NULL, + '(749.20) Cleft palate with cleft lip, unspecified', '(749.20) Cleft palate with cleft lip, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.21) Cleft palate with cleft lip, unilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.21) Cleft palate with cleft lip, unilateral, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.21''', NULL, + '(749.21) Cleft palate with cleft lip, unilateral, complete', '(749.21) Cleft palate with cleft lip, unilateral, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.22) Cleft palate with cleft lip, unilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.22) Cleft palate with cleft lip, unilateral, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.22''', NULL, + '(749.22) Cleft palate with cleft lip, unilateral, incomplete', '(749.22) Cleft palate with cleft lip, unilateral, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.23) Cleft palate with cleft lip, bilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.23) Cleft palate with cleft lip, bilateral, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.23''', NULL, + '(749.23) Cleft palate with cleft lip, bilateral, complete', '(749.23) Cleft palate with cleft lip, bilateral, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.24) Cleft palate with cleft lip, bilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.24) Cleft palate with cleft lip, bilateral, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.24''', NULL, + '(749.24) Cleft palate with cleft lip, bilateral, incomplete', '(749.24) Cleft palate with cleft lip, bilateral, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.25) Other combinations of cleft palate with cleft lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.25) Other combinations of cleft palate with cleft lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.25''', NULL, + '(749.25) Other combinations of cleft palate with cleft lip', '(749.25) Other combinations of cleft palate with cleft lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744''', NULL, + 'Congenital anomalies of ear, face, and neck (744)', 'Congenital anomalies of ear, face, and neck (744)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.1) Accessory auricle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.1) Accessory auricle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.1''', NULL, + '(744.1) Accessory auricle', '(744.1) Accessory auricle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.3) Unspecified anomaly of ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.3) Unspecified anomaly of ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.3''', NULL, + '(744.3) Unspecified anomaly of ear', '(744.3) Unspecified anomaly of ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.5) Webbing of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.5) Webbing of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.5''', NULL, + '(744.5) Webbing of neck', '(744.5) Webbing of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.9) Unspecified congenital anomalies of face and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.9) Unspecified congenital anomalies of face and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.9''', NULL, + '(744.9) Unspecified congenital anomalies of face and neck', '(744.9) Unspecified congenital anomalies of face and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.4''', NULL, + 'Branchial cleft cyst or fistula; preauricular sinus (744.4)', 'Branchial cleft cyst or fistula; preauricular sinus (744.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.41) Branchial cleft sinus or fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.41) Branchial cleft sinus or fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.41''', NULL, + '(744.41) Branchial cleft sinus or fistula', '(744.41) Branchial cleft sinus or fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.42) Branchial cleft cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.42) Branchial cleft cyst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.42''', NULL, + '(744.42) Branchial cleft cyst', '(744.42) Branchial cleft cyst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.43) Cervical auricle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.43) Cervical auricle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.43''', NULL, + '(744.43) Cervical auricle', '(744.43) Cervical auricle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.46) Preauricular sinus or fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.46) Preauricular sinus or fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.46''', NULL, + '(744.46) Preauricular sinus or fistula', '(744.46) Preauricular sinus or fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.47) Preauricular cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.47) Preauricular cyst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.47''', NULL, + '(744.47) Preauricular cyst', '(744.47) Preauricular cyst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.49) Other branchial cleft cyst or fistula; preauricular sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.49) Other branchial cleft cyst or fistula; preauricular sinus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.49''', NULL, + '(744.49) Other branchial cleft cyst or fistula; preauricular sinus', '(744.49) Other branchial cleft cyst or fistula; preauricular sinus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.0''', NULL, + 'Congenital anomalies of ear causing impairment of hearing (744.0)', 'Congenital anomalies of ear causing impairment of hearing (744.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.00) Unspecified anomaly of ear with impairment of hearing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.00) Unspecified anomaly of ear with impairment of hearing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.00''', NULL, + '(744.00) Unspecified anomaly of ear with impairment of hearing', '(744.00) Unspecified anomaly of ear with impairment of hearing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.01) Absence of external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.01) Absence of external ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.01''', NULL, + '(744.01) Absence of external ear', '(744.01) Absence of external ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.02) Other anomalies of external ear with impairment of hearing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.02) Other anomalies of external ear with impairment of hearing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.02''', NULL, + '(744.02) Other anomalies of external ear with impairment of hearing', '(744.02) Other anomalies of external ear with impairment of hearing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.03) Anomaly of middle ear, except ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.03) Anomaly of middle ear, except ossicles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.03''', NULL, + '(744.03) Anomaly of middle ear, except ossicles', '(744.03) Anomaly of middle ear, except ossicles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.04) Anomalies of ear ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.04) Anomalies of ear ossicles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.04''', NULL, + '(744.04) Anomalies of ear ossicles', '(744.04) Anomalies of ear ossicles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.05) Anomalies of inner ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.05) Anomalies of inner ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.05''', NULL, + '(744.05) Anomalies of inner ear', '(744.05) Anomalies of inner ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.09) Other anomalies of ear causing impairment of hearing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.09) Other anomalies of ear causing impairment of hearing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.09''', NULL, + '(744.09) Other anomalies of ear causing impairment of hearing', '(744.09) Other anomalies of ear causing impairment of hearing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.2''', NULL, + 'Other specified congenital anomalies of ear (744.2)', 'Other specified congenital anomalies of ear (744.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.21) Absence of ear lobe, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.21) Absence of ear lobe, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.21''', NULL, + '(744.21) Absence of ear lobe, congenital', '(744.21) Absence of ear lobe, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.22) Macrotia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.22) Macrotia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.22''', NULL, + '(744.22) Macrotia', '(744.22) Macrotia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.23) Microtia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.23) Microtia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.23''', NULL, + '(744.23) Microtia', '(744.23) Microtia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.24) Specified anomalies of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.24) Specified anomalies of Eustachian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.24''', NULL, + '(744.24) Specified anomalies of Eustachian tube', '(744.24) Specified anomalies of Eustachian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.29) Other specified anomalies of ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.29) Other specified anomalies of ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.29''', NULL, + '(744.29) Other specified anomalies of ear', '(744.29) Other specified anomalies of ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.8''', NULL, + 'Other specified congenital anomalies of face and neck (744.8)', 'Other specified congenital anomalies of face and neck (744.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.81) Macrocheilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.81) Macrocheilia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.81''', NULL, + '(744.81) Macrocheilia', '(744.81) Macrocheilia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.82) Microcheilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.82) Microcheilia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.82''', NULL, + '(744.82) Microcheilia', '(744.82) Microcheilia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.83) Macrostomia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.83) Macrostomia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.83''', NULL, + '(744.83) Macrostomia', '(744.83) Macrostomia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.84) Microstomia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.84) Microstomia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.84''', NULL, + '(744.84) Microstomia', '(744.84) Microstomia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.89) Other specified congenital anomalies of face and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.89) Other specified congenital anomalies of face and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.89''', NULL, + '(744.89) Other specified congenital anomalies of face and neck', '(744.89) Other specified congenital anomalies of face and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743''', NULL, + 'Congenital anomalies of eye (743)', 'Congenital anomalies of eye (743)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\(743.8) Other specified anomalies of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\(743.8) Other specified anomalies of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.8''', NULL, + '(743.8) Other specified anomalies of eye', '(743.8) Other specified anomalies of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\(743.9) Unspecified anomaly of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\(743.9) Unspecified anomaly of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.9''', NULL, + '(743.9) Unspecified anomaly of eye', '(743.9) Unspecified anomaly of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.0''', NULL, + 'Anophthalmos (743.0)', 'Anophthalmos (743.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.00) Clinical anophthalmos, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.00) Clinical anophthalmos, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.00''', NULL, + '(743.00) Clinical anophthalmos, unspecified', '(743.00) Clinical anophthalmos, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.03) Cystic eyeball, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.03) Cystic eyeball, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.03''', NULL, + '(743.03) Cystic eyeball, congenital', '(743.03) Cystic eyeball, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.06) Cryptophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.06) Cryptophthalmos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.06''', NULL, + '(743.06) Cryptophthalmos', '(743.06) Cryptophthalmos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.2''', NULL, + 'Buphthalmos (743.2)', 'Buphthalmos (743.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.20) Buphthalmos, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.20) Buphthalmos, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.20''', NULL, + '(743.20) Buphthalmos, unspecified', '(743.20) Buphthalmos, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.21) Simple buphthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.21) Simple buphthalmos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.21''', NULL, + '(743.21) Simple buphthalmos', '(743.21) Simple buphthalmos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.22) Buphthalmos associated with other ocular anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.22) Buphthalmos associated with other ocular anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.22''', NULL, + '(743.22) Buphthalmos associated with other ocular anomalies', '(743.22) Buphthalmos associated with other ocular anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.4''', NULL, + 'Coloboma and other anomalies of anterior segment (743.4)', 'Coloboma and other anomalies of anterior segment (743.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.41) Congenital anomalies of corneal size and shape\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.41) Congenital anomalies of corneal size and shape\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.41''', NULL, + '(743.41) Congenital anomalies of corneal size and shape', '(743.41) Congenital anomalies of corneal size and shape', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.42) Corneal opacities, interfering with vision, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.42) Corneal opacities, interfering with vision, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.42''', NULL, + '(743.42) Corneal opacities, interfering with vision, congenital', '(743.42) Corneal opacities, interfering with vision, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.43) Other corneal opacities, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.43) Other corneal opacities, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.43''', NULL, + '(743.43) Other corneal opacities, congenital', '(743.43) Other corneal opacities, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.44) Specified congenital anomalies of anterior chamber, chamber angle, and related structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.44) Specified congenital anomalies of anterior chamber, chamber angle, and related structures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.44''', NULL, + '(743.44) Specified congenital anomalies of anterior chamber, chamber angle, and related structures', '(743.44) Specified congenital anomalies of anterior chamber, chamber angle, and related structures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.45) Aniridia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.45) Aniridia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.45''', NULL, + '(743.45) Aniridia', '(743.45) Aniridia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.46) Other specified congenital anomalies of iris and ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.46) Other specified congenital anomalies of iris and ciliary body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.46''', NULL, + '(743.46) Other specified congenital anomalies of iris and ciliary body', '(743.46) Other specified congenital anomalies of iris and ciliary body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.47) Specified congenital anomalies of sclera\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.47) Specified congenital anomalies of sclera\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.47''', NULL, + '(743.47) Specified congenital anomalies of sclera', '(743.47) Specified congenital anomalies of sclera', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.48) Multiple and combined congenital anomalies of anterior segment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.48) Multiple and combined congenital anomalies of anterior segment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.48''', NULL, + '(743.48) Multiple and combined congenital anomalies of anterior segment', '(743.48) Multiple and combined congenital anomalies of anterior segment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.49) Other congenital anomalies of anterior segment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.49) Other congenital anomalies of anterior segment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.49''', NULL, + '(743.49) Other congenital anomalies of anterior segment', '(743.49) Other congenital anomalies of anterior segment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.6''', NULL, + 'Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)', 'Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.61) Congenital ptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.61) Congenital ptosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.61''', NULL, + '(743.61) Congenital ptosis', '(743.61) Congenital ptosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.62) Congenital deformities of eyelids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.62) Congenital deformities of eyelids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.62''', NULL, + '(743.62) Congenital deformities of eyelids', '(743.62) Congenital deformities of eyelids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.63) Other specified congenital anomalies of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.63) Other specified congenital anomalies of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.63''', NULL, + '(743.63) Other specified congenital anomalies of eyelid', '(743.63) Other specified congenital anomalies of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.64) Specified congenital anomalies of lacrimal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.64) Specified congenital anomalies of lacrimal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.64''', NULL, + '(743.64) Specified congenital anomalies of lacrimal gland', '(743.64) Specified congenital anomalies of lacrimal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.65) Specified congenital anomalies of lacrimal passages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.65) Specified congenital anomalies of lacrimal passages\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.65''', NULL, + '(743.65) Specified congenital anomalies of lacrimal passages', '(743.65) Specified congenital anomalies of lacrimal passages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.66) Specified congenital anomalies of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.66) Specified congenital anomalies of orbit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.66''', NULL, + '(743.66) Specified congenital anomalies of orbit', '(743.66) Specified congenital anomalies of orbit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.69) Other congenital anomalies of eyelids, lacrimal system, and orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.69) Other congenital anomalies of eyelids, lacrimal system, and orbit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.69''', NULL, + '(743.69) Other congenital anomalies of eyelids, lacrimal system, and orbit', '(743.69) Other congenital anomalies of eyelids, lacrimal system, and orbit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.5''', NULL, + 'Congenital anomalies of posterior segment (743.5)', 'Congenital anomalies of posterior segment (743.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.51) Vitreous anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.51) Vitreous anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.51''', NULL, + '(743.51) Vitreous anomalies', '(743.51) Vitreous anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.52) Fundus coloboma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.52) Fundus coloboma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.52''', NULL, + '(743.52) Fundus coloboma', '(743.52) Fundus coloboma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.53) Chorioretinal degeneration, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.53) Chorioretinal degeneration, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.53''', NULL, + '(743.53) Chorioretinal degeneration, congenital', '(743.53) Chorioretinal degeneration, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.54) Congenital folds and cysts of posterior segment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.54) Congenital folds and cysts of posterior segment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.54''', NULL, + '(743.54) Congenital folds and cysts of posterior segment', '(743.54) Congenital folds and cysts of posterior segment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.55) Congenital macular changes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.55) Congenital macular changes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.55''', NULL, + '(743.55) Congenital macular changes', '(743.55) Congenital macular changes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.56) Other retinal changes, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.56) Other retinal changes, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.56''', NULL, + '(743.56) Other retinal changes, congenital', '(743.56) Other retinal changes, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.57) Specified congenital anomalies of optic disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.57) Specified congenital anomalies of optic disc\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.57''', NULL, + '(743.57) Specified congenital anomalies of optic disc', '(743.57) Specified congenital anomalies of optic disc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.58) Vascular anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.58) Vascular anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.58''', NULL, + '(743.58) Vascular anomalies', '(743.58) Vascular anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.59) Other congenital anomalies of posterior segment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.59) Other congenital anomalies of posterior segment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.59''', NULL, + '(743.59) Other congenital anomalies of posterior segment', '(743.59) Other congenital anomalies of posterior segment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.3''', NULL, + 'Congenital cataract and lens anomalies (743.3)', 'Congenital cataract and lens anomalies (743.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.30) Congenital cataract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.30) Congenital cataract, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.30''', NULL, + '(743.30) Congenital cataract, unspecified', '(743.30) Congenital cataract, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.31) Congenital capsular and subcapsular cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.31) Congenital capsular and subcapsular cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.31''', NULL, + '(743.31) Congenital capsular and subcapsular cataract', '(743.31) Congenital capsular and subcapsular cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.32) Congenital cortical and zonular cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.32) Congenital cortical and zonular cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.32''', NULL, + '(743.32) Congenital cortical and zonular cataract', '(743.32) Congenital cortical and zonular cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.33) Congenital nuclear cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.33) Congenital nuclear cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.33''', NULL, + '(743.33) Congenital nuclear cataract', '(743.33) Congenital nuclear cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.34) Total and subtotal cataract, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.34) Total and subtotal cataract, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.34''', NULL, + '(743.34) Total and subtotal cataract, congenital', '(743.34) Total and subtotal cataract, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.35) Congenital aphakia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.35) Congenital aphakia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.35''', NULL, + '(743.35) Congenital aphakia', '(743.35) Congenital aphakia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.36) Congenital anomalies of lens shape\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.36) Congenital anomalies of lens shape\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.36''', NULL, + '(743.36) Congenital anomalies of lens shape', '(743.36) Congenital anomalies of lens shape', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.37) Congenital ectopic lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.37) Congenital ectopic lens\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.37''', NULL, + '(743.37) Congenital ectopic lens', '(743.37) Congenital ectopic lens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.39) Other congenital cataract and lens anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.39) Other congenital cataract and lens anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.39''', NULL, + '(743.39) Other congenital cataract and lens anomalies', '(743.39) Other congenital cataract and lens anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.1''', NULL, + 'Microphthalmos (743.1)', 'Microphthalmos (743.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.10) Microphthalmos, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.10) Microphthalmos, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.10''', NULL, + '(743.10) Microphthalmos, unspecified', '(743.10) Microphthalmos, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.11) Simple microphthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.11) Simple microphthalmos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.11''', NULL, + '(743.11) Simple microphthalmos', '(743.11) Simple microphthalmos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.12) Microphthalmos associated with other anomalies of eye and adnexa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.12) Microphthalmos associated with other anomalies of eye and adnexa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.12''', NULL, + '(743.12) Microphthalmos associated with other anomalies of eye and adnexa', '(743.12) Microphthalmos associated with other anomalies of eye and adnexa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752''', NULL, + 'Congenital anomalies of genital organs (752)', 'Congenital anomalies of genital organs (752)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.0) Anomalies of ovaries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.0) Anomalies of ovaries\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.0''', NULL, + '(752.0) Anomalies of ovaries', '(752.0) Anomalies of ovaries', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.2) Doubling of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.2) Doubling of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.2''', NULL, + '(752.2) Doubling of uterus', '(752.2) Doubling of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.7) Indeterminate sex and pseudohermaphroditism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.7) Indeterminate sex and pseudohermaphroditism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.7''', NULL, + '(752.7) Indeterminate sex and pseudohermaphroditism', '(752.7) Indeterminate sex and pseudohermaphroditism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.9) Unspecified anomaly of genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.9) Unspecified anomaly of genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.9''', NULL, + '(752.9) Unspecified anomaly of genital organs', '(752.9) Unspecified anomaly of genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.4''', NULL, + 'Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)', 'Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.40) Unspecified anomaly of cervix, vagina, and external female genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.40) Unspecified anomaly of cervix, vagina, and external female genitalia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.40''', NULL, + '(752.40) Unspecified anomaly of cervix, vagina, and external female genitalia', '(752.40) Unspecified anomaly of cervix, vagina, and external female genitalia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.41) Embryonic cyst of cervix, vagina, and external female genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.41) Embryonic cyst of cervix, vagina, and external female genitalia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.41''', NULL, + '(752.41) Embryonic cyst of cervix, vagina, and external female genitalia', '(752.41) Embryonic cyst of cervix, vagina, and external female genitalia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.42) Imperforate hymen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.42) Imperforate hymen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.42''', NULL, + '(752.42) Imperforate hymen', '(752.42) Imperforate hymen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.43) Cervical agenesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.43) Cervical agenesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.43''', NULL, + '(752.43) Cervical agenesis', '(752.43) Cervical agenesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.45) Vaginal agenesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.45) Vaginal agenesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.45''', NULL, + '(752.45) Vaginal agenesis', '(752.45) Vaginal agenesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.47) Longitudinal vaginal septum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.47) Longitudinal vaginal septum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.47''', NULL, + '(752.47) Longitudinal vaginal septum', '(752.47) Longitudinal vaginal septum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.49) Other anomalies of cervix, vagina, and external female genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.49) Other anomalies of cervix, vagina, and external female genitalia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.49''', NULL, + '(752.49) Other anomalies of cervix, vagina, and external female genitalia', '(752.49) Other anomalies of cervix, vagina, and external female genitalia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.1''', NULL, + 'Anomalies of fallopian tubes and broad ligaments, congenital (752.1)', 'Anomalies of fallopian tubes and broad ligaments, congenital (752.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.10) Unspecified anomaly of fallopian tubes and broad ligaments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.10) Unspecified anomaly of fallopian tubes and broad ligaments\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.10''', NULL, + '(752.10) Unspecified anomaly of fallopian tubes and broad ligaments', '(752.10) Unspecified anomaly of fallopian tubes and broad ligaments', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.11) Embryonic cyst of fallopian tubes and broad ligaments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.11) Embryonic cyst of fallopian tubes and broad ligaments\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.11''', NULL, + '(752.11) Embryonic cyst of fallopian tubes and broad ligaments', '(752.11) Embryonic cyst of fallopian tubes and broad ligaments', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.19) Other anomalies of fallopian tubes and broad ligaments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.19) Other anomalies of fallopian tubes and broad ligaments\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.19''', NULL, + '(752.19) Other anomalies of fallopian tubes and broad ligaments', '(752.19) Other anomalies of fallopian tubes and broad ligaments', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.6''', NULL, + 'Hypospadias and epispadias and other penile anomalies (752.6)', 'Hypospadias and epispadias and other penile anomalies (752.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.61) Hypospadias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.61) Hypospadias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.61''', NULL, + '(752.61) Hypospadias', '(752.61) Hypospadias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.62) Epispadias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.62) Epispadias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.62''', NULL, + '(752.62) Epispadias', '(752.62) Epispadias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.63) Congenital chordee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.63) Congenital chordee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.63''', NULL, + '(752.63) Congenital chordee', '(752.63) Congenital chordee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.64) Micropenis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.64) Micropenis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.64''', NULL, + '(752.64) Micropenis', '(752.64) Micropenis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.65) Hidden penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.65) Hidden penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.65''', NULL, + '(752.65) Hidden penis', '(752.65) Hidden penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.69) Other penile anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.69) Other penile anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.69''', NULL, + '(752.69) Other penile anomalies', '(752.69) Other penile anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.3''', NULL, + 'Other congenital anomalies of uterus (752.3)', 'Other congenital anomalies of uterus (752.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.33) Unicornuate uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.33) Unicornuate uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.33''', NULL, + '(752.33) Unicornuate uterus', '(752.33) Unicornuate uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.34) Bicornuate uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.34) Bicornuate uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.34''', NULL, + '(752.34) Bicornuate uterus', '(752.34) Bicornuate uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.35) Septate uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.35) Septate uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.35''', NULL, + '(752.35) Septate uterus', '(752.35) Septate uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.36) Arcuate uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.36) Arcuate uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.36''', NULL, + '(752.36) Arcuate uterus', '(752.36) Arcuate uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.39) Other anomalies of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.39) Other anomalies of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.39''', NULL, + '(752.39) Other anomalies of uterus', '(752.39) Other anomalies of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.8''', NULL, + 'Other specified congenital anomalies of genital organs (752.8)', 'Other specified congenital anomalies of genital organs (752.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\(752.81) Scrotal transposition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\(752.81) Scrotal transposition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.81''', NULL, + '(752.81) Scrotal transposition', '(752.81) Scrotal transposition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\(752.89) Other specified anomalies of genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\(752.89) Other specified anomalies of genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.89''', NULL, + '(752.89) Other specified anomalies of genital organs', '(752.89) Other specified anomalies of genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.5''', NULL, + 'Undescended and retractile testicle (752.5)', 'Undescended and retractile testicle (752.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\(752.51) Undescended testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\(752.51) Undescended testis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.51''', NULL, + '(752.51) Undescended testis', '(752.51) Undescended testis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\(752.52) Retractile testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\(752.52) Retractile testis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.52''', NULL, + '(752.52) Retractile testis', '(752.52) Retractile testis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757''', NULL, + 'Congenital anomalies of the integument (757)', 'Congenital anomalies of the integument (757)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.0) Hereditary edema of legs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.0) Hereditary edema of legs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.0''', NULL, + '(757.0) Hereditary edema of legs', '(757.0) Hereditary edema of legs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.1) Ichthyosis congenita\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.1) Ichthyosis congenita\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.1''', NULL, + '(757.1) Ichthyosis congenita', '(757.1) Ichthyosis congenita', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.2) Dermatoglyphic anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.2) Dermatoglyphic anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.2''', NULL, + '(757.2) Dermatoglyphic anomalies', '(757.2) Dermatoglyphic anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.4) Specified anomalies of hair\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.4) Specified anomalies of hair\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.4''', NULL, + '(757.4) Specified anomalies of hair', '(757.4) Specified anomalies of hair', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.5) Specified anomalies of nails\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.5) Specified anomalies of nails\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.5''', NULL, + '(757.5) Specified anomalies of nails', '(757.5) Specified anomalies of nails', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.6) Specified congenital anomalies of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.6) Specified congenital anomalies of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.6''', NULL, + '(757.6) Specified congenital anomalies of breast', '(757.6) Specified congenital anomalies of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.8) Other specified anomalies of the integument\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.8) Other specified anomalies of the integument\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.8''', NULL, + '(757.8) Other specified anomalies of the integument', '(757.8) Other specified anomalies of the integument', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.9) Unspecified congenital anomaly of the integument\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.9) Unspecified congenital anomaly of the integument\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.9''', NULL, + '(757.9) Unspecified congenital anomaly of the integument', '(757.9) Unspecified congenital anomaly of the integument', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.3''', NULL, + 'Other specified congenital anomalies of skin (757.3)', 'Other specified congenital anomalies of skin (757.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.31) Congenital ectodermal dysplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.31) Congenital ectodermal dysplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.31''', NULL, + '(757.31) Congenital ectodermal dysplasia', '(757.31) Congenital ectodermal dysplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.32) Vascular hamartomas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.32) Vascular hamartomas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.32''', NULL, + '(757.32) Vascular hamartomas', '(757.32) Vascular hamartomas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.33) Congenital pigmentary anomalies of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.33) Congenital pigmentary anomalies of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.33''', NULL, + '(757.33) Congenital pigmentary anomalies of skin', '(757.33) Congenital pigmentary anomalies of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.39) Other specified anomalies of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.39) Other specified anomalies of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.39''', NULL, + '(757.39) Other specified anomalies of skin', '(757.39) Other specified anomalies of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753''', NULL, + 'Congenital anomalies of urinary system (753)', 'Congenital anomalies of urinary system (753)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.0) Renal agenesis and dysgenesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.0) Renal agenesis and dysgenesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.0''', NULL, + '(753.0) Renal agenesis and dysgenesis', '(753.0) Renal agenesis and dysgenesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.3) Other specified anomalies of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.3) Other specified anomalies of kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.3''', NULL, + '(753.3) Other specified anomalies of kidney', '(753.3) Other specified anomalies of kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.4) Other specified anomalies of ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.4) Other specified anomalies of ureter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.4''', NULL, + '(753.4) Other specified anomalies of ureter', '(753.4) Other specified anomalies of ureter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.5) Exstrophy of urinary bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.5) Exstrophy of urinary bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.5''', NULL, + '(753.5) Exstrophy of urinary bladder', '(753.5) Exstrophy of urinary bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.6) Atresia and stenosis of urethra and bladder neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.6) Atresia and stenosis of urethra and bladder neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.6''', NULL, + '(753.6) Atresia and stenosis of urethra and bladder neck', '(753.6) Atresia and stenosis of urethra and bladder neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.7) Anomalies of urachus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.7) Anomalies of urachus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.7''', NULL, + '(753.7) Anomalies of urachus', '(753.7) Anomalies of urachus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.8) Other specified anomalies of bladder and urethra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.8) Other specified anomalies of bladder and urethra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.8''', NULL, + '(753.8) Other specified anomalies of bladder and urethra', '(753.8) Other specified anomalies of bladder and urethra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.9) Unspecified anomaly of urinary system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.9) Unspecified anomaly of urinary system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.9''', NULL, + '(753.9) Unspecified anomaly of urinary system', '(753.9) Unspecified anomaly of urinary system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.1''', NULL, + 'Cystic kidney disease (753.1)', 'Cystic kidney disease (753.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.10) Cystic kidney disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.10) Cystic kidney disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.10''', NULL, + '(753.10) Cystic kidney disease, unspecified', '(753.10) Cystic kidney disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.11) Congenital single renal cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.11) Congenital single renal cyst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.11''', NULL, + '(753.11) Congenital single renal cyst', '(753.11) Congenital single renal cyst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.12) Polycystic kidney, unspecified type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.12) Polycystic kidney, unspecified type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.12''', NULL, + '(753.12) Polycystic kidney, unspecified type', '(753.12) Polycystic kidney, unspecified type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.13) Polycystic kidney, autosomal dominant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.13) Polycystic kidney, autosomal dominant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.13''', NULL, + '(753.13) Polycystic kidney, autosomal dominant', '(753.13) Polycystic kidney, autosomal dominant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.14) Polycystic kidney, autosomal recessive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.14) Polycystic kidney, autosomal recessive\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.14''', NULL, + '(753.14) Polycystic kidney, autosomal recessive', '(753.14) Polycystic kidney, autosomal recessive', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.15) Renal dysplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.15) Renal dysplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.15''', NULL, + '(753.15) Renal dysplasia', '(753.15) Renal dysplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.16) Medullary cystic kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.16) Medullary cystic kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.16''', NULL, + '(753.16) Medullary cystic kidney', '(753.16) Medullary cystic kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.17) Medullary sponge kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.17) Medullary sponge kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.17''', NULL, + '(753.17) Medullary sponge kidney', '(753.17) Medullary sponge kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.19) Other specified cystic kidney disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.19) Other specified cystic kidney disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.19''', NULL, + '(753.19) Other specified cystic kidney disease', '(753.19) Other specified cystic kidney disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.2''', NULL, + 'Obstructive defects of renal pelvis and ureter, congenital (753.2)', 'Obstructive defects of renal pelvis and ureter, congenital (753.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.20) Unspecified obstructive defect of renal pelvis and ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.20) Unspecified obstructive defect of renal pelvis and ureter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.20''', NULL, + '(753.20) Unspecified obstructive defect of renal pelvis and ureter', '(753.20) Unspecified obstructive defect of renal pelvis and ureter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.21) Congenital obstruction of ureteropelvic junction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.21) Congenital obstruction of ureteropelvic junction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.21''', NULL, + '(753.21) Congenital obstruction of ureteropelvic junction', '(753.21) Congenital obstruction of ureteropelvic junction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.22) Congenital obstruction of ureterovesical junction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.22) Congenital obstruction of ureterovesical junction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.22''', NULL, + '(753.22) Congenital obstruction of ureterovesical junction', '(753.22) Congenital obstruction of ureterovesical junction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.23) Congenital ureterocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.23) Congenital ureterocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.23''', NULL, + '(753.23) Congenital ureterocele', '(753.23) Congenital ureterocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.29) Other obstructive defects of renal pelvis and ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.29) Other obstructive defects of renal pelvis and ureter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.29''', NULL, + '(753.29) Other obstructive defects of renal pelvis and ureter', '(753.29) Other obstructive defects of renal pelvis and ureter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759''', NULL, + 'Other and unspecified congenital anomalies (759)', 'Other and unspecified congenital anomalies (759)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.0) Anomalies of spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.0) Anomalies of spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.0''', NULL, + '(759.0) Anomalies of spleen', '(759.0) Anomalies of spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.1) Anomalies of adrenal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.1) Anomalies of adrenal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.1''', NULL, + '(759.1) Anomalies of adrenal gland', '(759.1) Anomalies of adrenal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.2) Anomalies of other endocrine glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.2) Anomalies of other endocrine glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.2''', NULL, + '(759.2) Anomalies of other endocrine glands', '(759.2) Anomalies of other endocrine glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.3) Situs inversus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.3) Situs inversus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.3''', NULL, + '(759.3) Situs inversus', '(759.3) Situs inversus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.4) Conjoined twins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.4) Conjoined twins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.4''', NULL, + '(759.4) Conjoined twins', '(759.4) Conjoined twins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.5) Tuberous sclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.5) Tuberous sclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.5''', NULL, + '(759.5) Tuberous sclerosis', '(759.5) Tuberous sclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.6) Other hamartoses, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.6) Other hamartoses, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.6''', NULL, + '(759.6) Other hamartoses, not elsewhere classified', '(759.6) Other hamartoses, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.7) Multiple congenital anomalies, so described\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.7) Multiple congenital anomalies, so described\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.7''', NULL, + '(759.7) Multiple congenital anomalies, so described', '(759.7) Multiple congenital anomalies, so described', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.9) Congenital anomaly, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.9) Congenital anomaly, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.9''', NULL, + '(759.9) Congenital anomaly, unspecified', '(759.9) Congenital anomaly, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.8''', NULL, + 'Other specified anomalies (759.8)', 'Other specified anomalies (759.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.81) Prader-Willi syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.81) Prader-Willi syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.81''', NULL, + '(759.81) Prader-Willi syndrome', '(759.81) Prader-Willi syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.82) Marfan syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.82) Marfan syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.82''', NULL, + '(759.82) Marfan syndrome', '(759.82) Marfan syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.83) Fragile X syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.83) Fragile X syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.83''', NULL, + '(759.83) Fragile X syndrome', '(759.83) Fragile X syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.89) Other specified congenital anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.89) Other specified congenital anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.89''', NULL, + '(759.89) Other specified congenital anomalies', '(759.89) Other specified congenital anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747''', NULL, + 'Other congenital anomalies of circulatory system (747)', 'Other congenital anomalies of circulatory system (747)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.0) Patent ductus arteriosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.0) Patent ductus arteriosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.0''', NULL, + '(747.0) Patent ductus arteriosus', '(747.0) Patent ductus arteriosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.5) Absence or hypoplasia of umbilical artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.5) Absence or hypoplasia of umbilical artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.5''', NULL, + '(747.5) Absence or hypoplasia of umbilical artery', '(747.5) Absence or hypoplasia of umbilical artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.9) Unspecified anomaly of circulatory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.9) Unspecified anomaly of circulatory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.9''', NULL, + '(747.9) Unspecified anomaly of circulatory system', '(747.9) Unspecified anomaly of circulatory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.4''', NULL, + 'Anomalies of great veins, congenital (747.4)', 'Anomalies of great veins, congenital (747.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.40) Anomaly of great veins, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.40) Anomaly of great veins, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.40''', NULL, + '(747.40) Anomaly of great veins, unspecified', '(747.40) Anomaly of great veins, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.41) Total anomalous pulmonary venous connection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.41) Total anomalous pulmonary venous connection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.41''', NULL, + '(747.41) Total anomalous pulmonary venous connection', '(747.41) Total anomalous pulmonary venous connection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.42) Partial anomalous pulmonary venous connection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.42) Partial anomalous pulmonary venous connection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.42''', NULL, + '(747.42) Partial anomalous pulmonary venous connection', '(747.42) Partial anomalous pulmonary venous connection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.49) Other anomalies of great veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.49) Other anomalies of great veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.49''', NULL, + '(747.49) Other anomalies of great veins', '(747.49) Other anomalies of great veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.3''', NULL, + 'Anomalies of pulmonary artery, congenital (747.3)', 'Anomalies of pulmonary artery, congenital (747.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.31) Pulmonary artery coarctation and atresia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.31) Pulmonary artery coarctation and atresia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.31''', NULL, + '(747.31) Pulmonary artery coarctation and atresia', '(747.31) Pulmonary artery coarctation and atresia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.32) Pulmonary arteriovenous malformation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.32) Pulmonary arteriovenous malformation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.32''', NULL, + '(747.32) Pulmonary arteriovenous malformation', '(747.32) Pulmonary arteriovenous malformation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.39) Other anomalies of pulmonary artery and pulmonary circulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.39) Other anomalies of pulmonary artery and pulmonary circulation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.39''', NULL, + '(747.39) Other anomalies of pulmonary artery and pulmonary circulation', '(747.39) Other anomalies of pulmonary artery and pulmonary circulation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.1''', NULL, + 'Coarctation of aorta (747.1)', 'Coarctation of aorta (747.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\(747.10) Coarctation of aorta (preductal) (postductal)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\(747.10) Coarctation of aorta (preductal) (postductal)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.10) Coarctation of aorta (preductal) (postductal''', NULL, + '(747.10) Coarctation of aorta (preductal) (postductal)', '(747.10) Coarctation of aorta (preductal) (postductal)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\(747.11) Interruption of aortic arch\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\(747.11) Interruption of aortic arch\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.11''', NULL, + '(747.11) Interruption of aortic arch', '(747.11) Interruption of aortic arch', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.2''', NULL, + 'Other congenital anomalies of aorta (747.2)', 'Other congenital anomalies of aorta (747.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.20) Anomaly of aorta, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.20) Anomaly of aorta, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.20''', NULL, + '(747.20) Anomaly of aorta, unspecified', '(747.20) Anomaly of aorta, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.21) Anomalies of aortic arch\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.21) Anomalies of aortic arch\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.21''', NULL, + '(747.21) Anomalies of aortic arch', '(747.21) Anomalies of aortic arch', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.22) Atresia and stenosis of aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.22) Atresia and stenosis of aorta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.22''', NULL, + '(747.22) Atresia and stenosis of aorta', '(747.22) Atresia and stenosis of aorta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.29) Other anomalies of aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.29) Other anomalies of aorta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.29''', NULL, + '(747.29) Other anomalies of aorta', '(747.29) Other anomalies of aorta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.6''', NULL, + 'Other congenital anomalies of peripheral vascular system (747.6)', 'Other congenital anomalies of peripheral vascular system (747.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.60) Anomaly of the peripheral vascular system, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.60) Anomaly of the peripheral vascular system, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.60''', NULL, + '(747.60) Anomaly of the peripheral vascular system, unspecified site', '(747.60) Anomaly of the peripheral vascular system, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.61) Gastrointestinal vessel anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.61) Gastrointestinal vessel anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.61''', NULL, + '(747.61) Gastrointestinal vessel anomaly', '(747.61) Gastrointestinal vessel anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.62) Renal vessel anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.62) Renal vessel anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.62''', NULL, + '(747.62) Renal vessel anomaly', '(747.62) Renal vessel anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.63) Upper limb vessel anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.63) Upper limb vessel anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.63''', NULL, + '(747.63) Upper limb vessel anomaly', '(747.63) Upper limb vessel anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.64) Lower limb vessel anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.64) Lower limb vessel anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.64''', NULL, + '(747.64) Lower limb vessel anomaly', '(747.64) Lower limb vessel anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.69) Anomalies of other specified sites of peripheral vascular system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.69) Anomalies of other specified sites of peripheral vascular system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.69''', NULL, + '(747.69) Anomalies of other specified sites of peripheral vascular system', '(747.69) Anomalies of other specified sites of peripheral vascular system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.8''', NULL, + 'Other specified congenital anomalies of circulatory system (747.8)', 'Other specified congenital anomalies of circulatory system (747.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.81) Anomalies of cerebrovascular system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.81) Anomalies of cerebrovascular system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.81''', NULL, + '(747.81) Anomalies of cerebrovascular system', '(747.81) Anomalies of cerebrovascular system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.82) Spinal vessel anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.82) Spinal vessel anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.82''', NULL, + '(747.82) Spinal vessel anomaly', '(747.82) Spinal vessel anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.83) Persistent fetal circulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.83) Persistent fetal circulation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.83''', NULL, + '(747.83) Persistent fetal circulation', '(747.83) Persistent fetal circulation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.89) Other specified anomalies of circulatory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.89) Other specified anomalies of circulatory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.89''', NULL, + '(747.89) Other specified anomalies of circulatory system', '(747.89) Other specified anomalies of circulatory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751''', NULL, + 'Other congenital anomalies of digestive system (751)', 'Other congenital anomalies of digestive system (751)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.0) Meckel''s diverticulum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.0) Meckel''s diverticulum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.0''', NULL, + '(751.0) Meckel''s diverticulum', '(751.0) Meckel''s diverticulum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.1) Atresia and stenosis of small intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.1) Atresia and stenosis of small intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.1''', NULL, + '(751.1) Atresia and stenosis of small intestine', '(751.1) Atresia and stenosis of small intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.2) Atresia and stenosis of large intestine, rectum, and anal canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.2) Atresia and stenosis of large intestine, rectum, and anal canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.2''', NULL, + '(751.2) Atresia and stenosis of large intestine, rectum, and anal canal', '(751.2) Atresia and stenosis of large intestine, rectum, and anal canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.3) Hirschsprung''s disease and other congenital functional disorders of colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.3) Hirschsprung''s disease and other congenital functional disorders of colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.3''', NULL, + '(751.3) Hirschsprung''s disease and other congenital functional disorders of colon', '(751.3) Hirschsprung''s disease and other congenital functional disorders of colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.4) Anomalies of intestinal fixation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.4) Anomalies of intestinal fixation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.4''', NULL, + '(751.4) Anomalies of intestinal fixation', '(751.4) Anomalies of intestinal fixation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.5) Other anomalies of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.5) Other anomalies of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.5''', NULL, + '(751.5) Other anomalies of intestine', '(751.5) Other anomalies of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.7) Anomalies of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.7) Anomalies of pancreas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.7''', NULL, + '(751.7) Anomalies of pancreas', '(751.7) Anomalies of pancreas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.8) Other specified anomalies of digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.8) Other specified anomalies of digestive system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.8''', NULL, + '(751.8) Other specified anomalies of digestive system', '(751.8) Other specified anomalies of digestive system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.9) Unspecified anomaly of digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.9) Unspecified anomaly of digestive system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.9''', NULL, + '(751.9) Unspecified anomaly of digestive system', '(751.9) Unspecified anomaly of digestive system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.6''', NULL, + 'Anomalies of gallbladder, bile ducts, and liver (751.6)', 'Anomalies of gallbladder, bile ducts, and liver (751.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.60) Unspecified anomaly of gallbladder, bile ducts, and liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.60) Unspecified anomaly of gallbladder, bile ducts, and liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.60''', NULL, + '(751.60) Unspecified anomaly of gallbladder, bile ducts, and liver', '(751.60) Unspecified anomaly of gallbladder, bile ducts, and liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.61) Biliary atresia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.61) Biliary atresia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.61''', NULL, + '(751.61) Biliary atresia', '(751.61) Biliary atresia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.62) Congenital cystic disease of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.62) Congenital cystic disease of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.62''', NULL, + '(751.62) Congenital cystic disease of liver', '(751.62) Congenital cystic disease of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.69) Other anomalies of gallbladder, bile ducts, and liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.69) Other anomalies of gallbladder, bile ducts, and liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.69''', NULL, + '(751.69) Other anomalies of gallbladder, bile ducts, and liver', '(751.69) Other anomalies of gallbladder, bile ducts, and liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746''', NULL, + 'Other congenital anomalies of heart (746)', 'Other congenital anomalies of heart (746)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.1) Tricuspid atresia and stenosis, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.1) Tricuspid atresia and stenosis, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.1''', NULL, + '(746.1) Tricuspid atresia and stenosis, congenital', '(746.1) Tricuspid atresia and stenosis, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.2) Ebstein''s anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.2) Ebstein''s anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.2''', NULL, + '(746.2) Ebstein''s anomaly', '(746.2) Ebstein''s anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.3) Congenital stenosis of aortic valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.3) Congenital stenosis of aortic valve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.3''', NULL, + '(746.3) Congenital stenosis of aortic valve', '(746.3) Congenital stenosis of aortic valve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.4) Congenital insufficiency of aortic valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.4) Congenital insufficiency of aortic valve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.4''', NULL, + '(746.4) Congenital insufficiency of aortic valve', '(746.4) Congenital insufficiency of aortic valve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.5) Congenital mitral stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.5) Congenital mitral stenosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.5''', NULL, + '(746.5) Congenital mitral stenosis', '(746.5) Congenital mitral stenosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.6) Congenital mitral insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.6) Congenital mitral insufficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.6''', NULL, + '(746.6) Congenital mitral insufficiency', '(746.6) Congenital mitral insufficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.7) Hypoplastic left heart syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.7) Hypoplastic left heart syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.7''', NULL, + '(746.7) Hypoplastic left heart syndrome', '(746.7) Hypoplastic left heart syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.9) Unspecified congenital anomaly of heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.9) Unspecified congenital anomaly of heart\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.9''', NULL, + '(746.9) Unspecified congenital anomaly of heart', '(746.9) Unspecified congenital anomaly of heart', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.0''', NULL, + 'Anomalies of pulmonary valve, congenital (746.0)', 'Anomalies of pulmonary valve, congenital (746.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.00) Congenital pulmonary valve anomaly, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.00) Congenital pulmonary valve anomaly, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.00''', NULL, + '(746.00) Congenital pulmonary valve anomaly, unspecified', '(746.00) Congenital pulmonary valve anomaly, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.01) Atresia of pulmonary valve, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.01) Atresia of pulmonary valve, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.01''', NULL, + '(746.01) Atresia of pulmonary valve, congenital', '(746.01) Atresia of pulmonary valve, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.02) Stenosis of pulmonary valve, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.02) Stenosis of pulmonary valve, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.02''', NULL, + '(746.02) Stenosis of pulmonary valve, congenital', '(746.02) Stenosis of pulmonary valve, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.09) Other congenital anomalies of pulmonary valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.09) Other congenital anomalies of pulmonary valve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.09''', NULL, + '(746.09) Other congenital anomalies of pulmonary valve', '(746.09) Other congenital anomalies of pulmonary valve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.8''', NULL, + 'Other specified congenital anomalies of heart (746.8)', 'Other specified congenital anomalies of heart (746.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.81) Subaortic stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.81) Subaortic stenosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.81''', NULL, + '(746.81) Subaortic stenosis', '(746.81) Subaortic stenosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.82) Cor triatriatum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.82) Cor triatriatum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.82''', NULL, + '(746.82) Cor triatriatum', '(746.82) Cor triatriatum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.83) Infundibular pulmonic stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.83) Infundibular pulmonic stenosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.83''', NULL, + '(746.83) Infundibular pulmonic stenosis', '(746.83) Infundibular pulmonic stenosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.84) Obstructive anomalies of heart, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.84) Obstructive anomalies of heart, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.84''', NULL, + '(746.84) Obstructive anomalies of heart, not elsewhere classified', '(746.84) Obstructive anomalies of heart, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.85) Coronary artery anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.85) Coronary artery anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.85''', NULL, + '(746.85) Coronary artery anomaly', '(746.85) Coronary artery anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.86) Congenital heart block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.86) Congenital heart block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.86''', NULL, + '(746.86) Congenital heart block', '(746.86) Congenital heart block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.87) Malposition of heart and cardiac apex\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.87) Malposition of heart and cardiac apex\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.87''', NULL, + '(746.87) Malposition of heart and cardiac apex', '(746.87) Malposition of heart and cardiac apex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.89) Other specified congenital anomalies of heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.89) Other specified congenital anomalies of heart\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.89''', NULL, + '(746.89) Other specified congenital anomalies of heart', '(746.89) Other specified congenital anomalies of heart', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755''', NULL, + 'Other congenital anomalies of limbs (755)', 'Other congenital anomalies of limbs (755)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.4) Reduction deformities, unspecified limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.4) Reduction deformities, unspecified limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.4''', NULL, + '(755.4) Reduction deformities, unspecified limb', '(755.4) Reduction deformities, unspecified limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.8) Other specified anomalies of unspecified limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.8) Other specified anomalies of unspecified limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.8''', NULL, + '(755.8) Other specified anomalies of unspecified limb', '(755.8) Other specified anomalies of unspecified limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.9) Unspecified anomaly of unspecified limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.9) Unspecified anomaly of unspecified limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.9''', NULL, + '(755.9) Unspecified anomaly of unspecified limb', '(755.9) Unspecified anomaly of unspecified limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.6''', NULL, + 'Other congenital anomalies of lower limb, including pelvic girdle (755.6)', 'Other congenital anomalies of lower limb, including pelvic girdle (755.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.60) Unspecified anomaly of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.60) Unspecified anomaly of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.60''', NULL, + '(755.60) Unspecified anomaly of lower limb', '(755.60) Unspecified anomaly of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.61) Coxa valga, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.61) Coxa valga, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.61''', NULL, + '(755.61) Coxa valga, congenital', '(755.61) Coxa valga, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.62) Coxa vara, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.62) Coxa vara, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.62''', NULL, + '(755.62) Coxa vara, congenital', '(755.62) Coxa vara, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.63) Other congenital deformity of hip (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.63) Other congenital deformity of hip (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.63) Other congenital deformity of hip (joint''', NULL, + '(755.63) Other congenital deformity of hip (joint)', '(755.63) Other congenital deformity of hip (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.64) Congenital deformity of knee (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.64) Congenital deformity of knee (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.64) Congenital deformity of knee (joint''', NULL, + '(755.64) Congenital deformity of knee (joint)', '(755.64) Congenital deformity of knee (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.65) Macrodactylia of toes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.65) Macrodactylia of toes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.65''', NULL, + '(755.65) Macrodactylia of toes', '(755.65) Macrodactylia of toes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.66) Other anomalies of toes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.66) Other anomalies of toes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.66''', NULL, + '(755.66) Other anomalies of toes', '(755.66) Other anomalies of toes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.67) Anomalies of foot, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.67) Anomalies of foot, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.67''', NULL, + '(755.67) Anomalies of foot, not elsewhere classified', '(755.67) Anomalies of foot, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.69) Other anomalies of lower limb, including pelvic girdle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.69) Other anomalies of lower limb, including pelvic girdle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.69''', NULL, + '(755.69) Other anomalies of lower limb, including pelvic girdle', '(755.69) Other anomalies of lower limb, including pelvic girdle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.5''', NULL, + 'Other congenital anomalies of upper limb, including shoulder girdle (755.5)', 'Other congenital anomalies of upper limb, including shoulder girdle (755.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.50) Unspecified anomaly of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.50) Unspecified anomaly of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.50''', NULL, + '(755.50) Unspecified anomaly of upper limb', '(755.50) Unspecified anomaly of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.51) Congenital deformity of clavicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.51) Congenital deformity of clavicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.51''', NULL, + '(755.51) Congenital deformity of clavicle', '(755.51) Congenital deformity of clavicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.52) Congenital elevation of scapula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.52) Congenital elevation of scapula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.52''', NULL, + '(755.52) Congenital elevation of scapula', '(755.52) Congenital elevation of scapula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.53) Radioulnar synostosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.53) Radioulnar synostosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.53''', NULL, + '(755.53) Radioulnar synostosis', '(755.53) Radioulnar synostosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.54) Madelung''s deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.54) Madelung''s deformity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.54''', NULL, + '(755.54) Madelung''s deformity', '(755.54) Madelung''s deformity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.55) Acrocephalosyndactyly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.55) Acrocephalosyndactyly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.55''', NULL, + '(755.55) Acrocephalosyndactyly', '(755.55) Acrocephalosyndactyly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.56) Accessory carpal bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.56) Accessory carpal bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.56''', NULL, + '(755.56) Accessory carpal bones', '(755.56) Accessory carpal bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.57) Macrodactylia (fingers)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.57) Macrodactylia (fingers)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.57) Macrodactylia (fingers''', NULL, + '(755.57) Macrodactylia (fingers)', '(755.57) Macrodactylia (fingers)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.58) Cleft hand, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.58) Cleft hand, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.58''', NULL, + '(755.58) Cleft hand, congenital', '(755.58) Cleft hand, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.59) Other anomalies of upper limb, including shoulder girdle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.59) Other anomalies of upper limb, including shoulder girdle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.59''', NULL, + '(755.59) Other anomalies of upper limb, including shoulder girdle', '(755.59) Other anomalies of upper limb, including shoulder girdle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.0''', NULL, + 'Polydactyly (755.0)', 'Polydactyly (755.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.00) Polydactyly, unspecified digits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.00) Polydactyly, unspecified digits\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.00''', NULL, + '(755.00) Polydactyly, unspecified digits', '(755.00) Polydactyly, unspecified digits', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.01) Polydactyly of fingers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.01) Polydactyly of fingers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.01''', NULL, + '(755.01) Polydactyly of fingers', '(755.01) Polydactyly of fingers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.02) Polydactyly of toes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.02) Polydactyly of toes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.02''', NULL, + '(755.02) Polydactyly of toes', '(755.02) Polydactyly of toes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.3''', NULL, + 'Reduction deformities of lower limb, congenital (755.3)', 'Reduction deformities of lower limb, congenital (755.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.30) Unspecified reduction deformity of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.30) Unspecified reduction deformity of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.30''', NULL, + '(755.30) Unspecified reduction deformity of lower limb', '(755.30) Unspecified reduction deformity of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.31) Transverse deficiency of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.31) Transverse deficiency of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.31''', NULL, + '(755.31) Transverse deficiency of lower limb', '(755.31) Transverse deficiency of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.32) Longitudinal deficiency of lower limb, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.32) Longitudinal deficiency of lower limb, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.32''', NULL, + '(755.32) Longitudinal deficiency of lower limb, not elsewhere classified', '(755.32) Longitudinal deficiency of lower limb, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete''', NULL, + '(755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete)', '(755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete''', NULL, + '(755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete)', '(755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete''', NULL, + '(755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete)', '(755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete''', NULL, + '(755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete)', '(755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete''', NULL, + '(755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete)', '(755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency''', NULL, + '(755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency)', '(755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.39) Longitudinal deficiency, phalanges, complete or partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.39) Longitudinal deficiency, phalanges, complete or partial\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.39''', NULL, + '(755.39) Longitudinal deficiency, phalanges, complete or partial', '(755.39) Longitudinal deficiency, phalanges, complete or partial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.2''', NULL, + 'Reduction deformities of upper limb, congenital (755.2)', 'Reduction deformities of upper limb, congenital (755.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.20) Unspecified reduction deformity of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.20) Unspecified reduction deformity of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.20''', NULL, + '(755.20) Unspecified reduction deformity of upper limb', '(755.20) Unspecified reduction deformity of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.21) Transverse deficiency of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.21) Transverse deficiency of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.21''', NULL, + '(755.21) Transverse deficiency of upper limb', '(755.21) Transverse deficiency of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.22) Longitudinal deficiency of upper limb, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.22) Longitudinal deficiency of upper limb, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.22''', NULL, + '(755.22) Longitudinal deficiency of upper limb, not elsewhere classified', '(755.22) Longitudinal deficiency of upper limb, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete''', NULL, + '(755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)', '(755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete''', NULL, + '(755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete)', '(755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete''', NULL, + '(755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete)', '(755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete''', NULL, + '(755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete)', '(755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete''', NULL, + '(755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete)', '(755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency''', NULL, + '(755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency)', '(755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.29) Longitudinal deficiency, phalanges, complete or partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.29) Longitudinal deficiency, phalanges, complete or partial\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.29''', NULL, + '(755.29) Longitudinal deficiency, phalanges, complete or partial', '(755.29) Longitudinal deficiency, phalanges, complete or partial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.1''', NULL, + 'Syndactyly (755.1)', 'Syndactyly (755.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.10) Syndactyly of multiple and unspecified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.10) Syndactyly of multiple and unspecified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.10''', NULL, + '(755.10) Syndactyly of multiple and unspecified sites', '(755.10) Syndactyly of multiple and unspecified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.11) Syndactyly of fingers without fusion of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.11) Syndactyly of fingers without fusion of bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.11''', NULL, + '(755.11) Syndactyly of fingers without fusion of bone', '(755.11) Syndactyly of fingers without fusion of bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.12) Syndactyly of fingers with fusion of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.12) Syndactyly of fingers with fusion of bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.12''', NULL, + '(755.12) Syndactyly of fingers with fusion of bone', '(755.12) Syndactyly of fingers with fusion of bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.13) Syndactyly of toes without fusion of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.13) Syndactyly of toes without fusion of bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.13''', NULL, + '(755.13) Syndactyly of toes without fusion of bone', '(755.13) Syndactyly of toes without fusion of bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.14) Syndactyly of toes with fusion of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.14) Syndactyly of toes with fusion of bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.14''', NULL, + '(755.14) Syndactyly of toes with fusion of bone', '(755.14) Syndactyly of toes with fusion of bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742''', NULL, + 'Other congenital anomalies of nervous system (742)', 'Other congenital anomalies of nervous system (742)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.0) Encephalocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.0) Encephalocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.0''', NULL, + '(742.0) Encephalocele', '(742.0) Encephalocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.1) Microcephalus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.1) Microcephalus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.1''', NULL, + '(742.1) Microcephalus', '(742.1) Microcephalus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.2) Congenital reduction deformities of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.2) Congenital reduction deformities of brain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.2''', NULL, + '(742.2) Congenital reduction deformities of brain', '(742.2) Congenital reduction deformities of brain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.3) Congenital hydrocephalus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.3) Congenital hydrocephalus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.3''', NULL, + '(742.3) Congenital hydrocephalus', '(742.3) Congenital hydrocephalus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.4) Other specified congenital anomalies of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.4) Other specified congenital anomalies of brain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.4''', NULL, + '(742.4) Other specified congenital anomalies of brain', '(742.4) Other specified congenital anomalies of brain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.8) Other specified congenital anomalies of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.8) Other specified congenital anomalies of nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.8''', NULL, + '(742.8) Other specified congenital anomalies of nervous system', '(742.8) Other specified congenital anomalies of nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.9) Unspecified congenital anomaly of brain, spinal cord, and nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.9) Unspecified congenital anomaly of brain, spinal cord, and nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.9''', NULL, + '(742.9) Unspecified congenital anomaly of brain, spinal cord, and nervous system', '(742.9) Unspecified congenital anomaly of brain, spinal cord, and nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.5''', NULL, + 'Other specified congenital anomalies of spinal cord (742.5)', 'Other specified congenital anomalies of spinal cord (742.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.51) Diastematomyelia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.51) Diastematomyelia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.51''', NULL, + '(742.51) Diastematomyelia', '(742.51) Diastematomyelia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.53) Hydromyelia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.53) Hydromyelia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.53''', NULL, + '(742.53) Hydromyelia', '(742.53) Hydromyelia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.59) Other specified congenital anomalies of spinal cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.59) Other specified congenital anomalies of spinal cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.59''', NULL, + '(742.59) Other specified congenital anomalies of spinal cord', '(742.59) Other specified congenital anomalies of spinal cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750''', NULL, + 'Other congenital anomalies of upper alimentary tract (750)', 'Other congenital anomalies of upper alimentary tract (750)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.0) Tongue tie\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.0) Tongue tie\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.0''', NULL, + '(750.0) Tongue tie', '(750.0) Tongue tie', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.3) Tracheoesophageal fistula, esophageal atresia and stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.3) Tracheoesophageal fistula, esophageal atresia and stenosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.3''', NULL, + '(750.3) Tracheoesophageal fistula, esophageal atresia and stenosis', '(750.3) Tracheoesophageal fistula, esophageal atresia and stenosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.4) Other specified anomalies of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.4) Other specified anomalies of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.4''', NULL, + '(750.4) Other specified anomalies of esophagus', '(750.4) Other specified anomalies of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.5) Congenital hypertrophic pyloric stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.5) Congenital hypertrophic pyloric stenosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.5''', NULL, + '(750.5) Congenital hypertrophic pyloric stenosis', '(750.5) Congenital hypertrophic pyloric stenosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.6) Congenital hiatus hernia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.6) Congenital hiatus hernia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.6''', NULL, + '(750.6) Congenital hiatus hernia', '(750.6) Congenital hiatus hernia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.7) Other specified anomalies of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.7) Other specified anomalies of stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.7''', NULL, + '(750.7) Other specified anomalies of stomach', '(750.7) Other specified anomalies of stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.8) Other specified anomalies of upper alimentary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.8) Other specified anomalies of upper alimentary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.8''', NULL, + '(750.8) Other specified anomalies of upper alimentary tract', '(750.8) Other specified anomalies of upper alimentary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.9) Unspecified anomaly of upper alimentary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.9) Unspecified anomaly of upper alimentary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.9''', NULL, + '(750.9) Unspecified anomaly of upper alimentary tract', '(750.9) Unspecified anomaly of upper alimentary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.1''', NULL, + 'Other congenital anomalies of tongue (750.1)', 'Other congenital anomalies of tongue (750.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.10) Congenital anomaly of tongue, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.10) Congenital anomaly of tongue, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.10''', NULL, + '(750.10) Congenital anomaly of tongue, unspecified', '(750.10) Congenital anomaly of tongue, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.11) Aglossia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.11) Aglossia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.11''', NULL, + '(750.11) Aglossia', '(750.11) Aglossia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.12) Congenital adhesions of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.12) Congenital adhesions of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.12''', NULL, + '(750.12) Congenital adhesions of tongue', '(750.12) Congenital adhesions of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.13) Fissure of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.13) Fissure of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.13''', NULL, + '(750.13) Fissure of tongue', '(750.13) Fissure of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.15) Macroglossia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.15) Macroglossia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.15''', NULL, + '(750.15) Macroglossia', '(750.15) Macroglossia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.16) Microglossia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.16) Microglossia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.16''', NULL, + '(750.16) Microglossia', '(750.16) Microglossia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.19) Other congenital anomalies of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.19) Other congenital anomalies of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.19''', NULL, + '(750.19) Other congenital anomalies of tongue', '(750.19) Other congenital anomalies of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.2''', NULL, + 'Other specified congenital anomalies of mouth and pharynx (750.2)', 'Other specified congenital anomalies of mouth and pharynx (750.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.21) Absence of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.21) Absence of salivary gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.21''', NULL, + '(750.21) Absence of salivary gland', '(750.21) Absence of salivary gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.22) Accessory salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.22) Accessory salivary gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.22''', NULL, + '(750.22) Accessory salivary gland', '(750.22) Accessory salivary gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.23) Atresia, salivary duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.23) Atresia, salivary duct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.23''', NULL, + '(750.23) Atresia, salivary duct', '(750.23) Atresia, salivary duct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.24) Congenital fistula of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.24) Congenital fistula of salivary gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.24''', NULL, + '(750.24) Congenital fistula of salivary gland', '(750.24) Congenital fistula of salivary gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.25) Congenital fistula of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.25) Congenital fistula of lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.25''', NULL, + '(750.25) Congenital fistula of lip', '(750.25) Congenital fistula of lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.26) Other specified anomalies of mouth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.26) Other specified anomalies of mouth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.26''', NULL, + '(750.26) Other specified anomalies of mouth', '(750.26) Other specified anomalies of mouth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.27) Diverticulum of pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.27) Diverticulum of pharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.27''', NULL, + '(750.27) Diverticulum of pharynx', '(750.27) Diverticulum of pharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.29) Other specified anomalies of pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.29) Other specified anomalies of pharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.29''', NULL, + '(750.29) Other specified anomalies of pharynx', '(750.29) Other specified anomalies of pharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756''', NULL, + 'Other congenital musculoskeletal anomalies (756)', 'Other congenital musculoskeletal anomalies (756)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.0) Anomalies of skull and face bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.0) Anomalies of skull and face bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.0''', NULL, + '(756.0) Anomalies of skull and face bones', '(756.0) Anomalies of skull and face bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.2) Cervical rib\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.2) Cervical rib\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.2''', NULL, + '(756.2) Cervical rib', '(756.2) Cervical rib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.3) Other anomalies of ribs and sternum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.3) Other anomalies of ribs and sternum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.3''', NULL, + '(756.3) Other anomalies of ribs and sternum', '(756.3) Other anomalies of ribs and sternum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.4) Chondrodystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.4) Chondrodystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.4''', NULL, + '(756.4) Chondrodystrophy', '(756.4) Chondrodystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.6) Anomalies of diaphragm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.6) Anomalies of diaphragm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.6''', NULL, + '(756.6) Anomalies of diaphragm', '(756.6) Anomalies of diaphragm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.9) Other and unspecified anomalies of musculoskeletal system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.9) Other and unspecified anomalies of musculoskeletal system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.9''', NULL, + '(756.9) Other and unspecified anomalies of musculoskeletal system', '(756.9) Other and unspecified anomalies of musculoskeletal system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.7''', NULL, + 'Anomalies of abdominal wall, congenital (756.7)', 'Anomalies of abdominal wall, congenital (756.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.70) Anomaly of abdominal wall, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.70) Anomaly of abdominal wall, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.70''', NULL, + '(756.70) Anomaly of abdominal wall, unspecified', '(756.70) Anomaly of abdominal wall, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.71) Prune belly syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.71) Prune belly syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.71''', NULL, + '(756.71) Prune belly syndrome', '(756.71) Prune belly syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.72) Omphalocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.72) Omphalocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.72''', NULL, + '(756.72) Omphalocele', '(756.72) Omphalocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.73) Gastroschisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.73) Gastroschisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.73''', NULL, + '(756.73) Gastroschisis', '(756.73) Gastroschisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.79) Other congenital anomalies of abdominal wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.79) Other congenital anomalies of abdominal wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.79''', NULL, + '(756.79) Other congenital anomalies of abdominal wall', '(756.79) Other congenital anomalies of abdominal wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.1''', NULL, + 'Anomalies of spine, congenital (756.1)', 'Anomalies of spine, congenital (756.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.10) Anomaly of spine, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.10) Anomaly of spine, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.10''', NULL, + '(756.10) Anomaly of spine, unspecified', '(756.10) Anomaly of spine, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.11) Spondylolysis, lumbosacral region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.11) Spondylolysis, lumbosacral region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.11''', NULL, + '(756.11) Spondylolysis, lumbosacral region', '(756.11) Spondylolysis, lumbosacral region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.12) Spondylolisthesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.12) Spondylolisthesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.12''', NULL, + '(756.12) Spondylolisthesis', '(756.12) Spondylolisthesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.13) Absence of vertebra, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.13) Absence of vertebra, congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.13''', NULL, + '(756.13) Absence of vertebra, congenital', '(756.13) Absence of vertebra, congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.14) Hemivertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.14) Hemivertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.14''', NULL, + '(756.14) Hemivertebra', '(756.14) Hemivertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.15) Fusion of spine (vertebra), congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.15) Fusion of spine (vertebra), congenital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.15) Fusion of spine (vertebra''', NULL, + '(756.15) Fusion of spine (vertebra), congenital', '(756.15) Fusion of spine (vertebra), congenital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.16) Klippel-Feil syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.16) Klippel-Feil syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.16''', NULL, + '(756.16) Klippel-Feil syndrome', '(756.16) Klippel-Feil syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.17) Spina bifida occulta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.17) Spina bifida occulta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.17''', NULL, + '(756.17) Spina bifida occulta', '(756.17) Spina bifida occulta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.19) Other anomalies of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.19) Other anomalies of spine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.19''', NULL, + '(756.19) Other anomalies of spine', '(756.19) Other anomalies of spine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.5''', NULL, + 'Congenital osteodystrophies (756.5)', 'Congenital osteodystrophies (756.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.50) Congenital osteodystrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.50) Congenital osteodystrophy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.50''', NULL, + '(756.50) Congenital osteodystrophy, unspecified', '(756.50) Congenital osteodystrophy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.51) Osteogenesis imperfecta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.51) Osteogenesis imperfecta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.51''', NULL, + '(756.51) Osteogenesis imperfecta', '(756.51) Osteogenesis imperfecta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.52) Osteopetrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.52) Osteopetrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.52''', NULL, + '(756.52) Osteopetrosis', '(756.52) Osteopetrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.53) Osteopoikilosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.53) Osteopoikilosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.53''', NULL, + '(756.53) Osteopoikilosis', '(756.53) Osteopoikilosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.54) Polyostotic fibrous dysplasia of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.54) Polyostotic fibrous dysplasia of bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.54''', NULL, + '(756.54) Polyostotic fibrous dysplasia of bone', '(756.54) Polyostotic fibrous dysplasia of bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.55) Chondroectodermal dysplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.55) Chondroectodermal dysplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.55''', NULL, + '(756.55) Chondroectodermal dysplasia', '(756.55) Chondroectodermal dysplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.56) Multiple epiphyseal dysplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.56) Multiple epiphyseal dysplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.56''', NULL, + '(756.56) Multiple epiphyseal dysplasia', '(756.56) Multiple epiphyseal dysplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.59) Other osteodystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.59) Other osteodystrophies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.59''', NULL, + '(756.59) Other osteodystrophies', '(756.59) Other osteodystrophies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.8''', NULL, + 'Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)', 'Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.81) Absence of muscle and tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.81) Absence of muscle and tendon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.81''', NULL, + '(756.81) Absence of muscle and tendon', '(756.81) Absence of muscle and tendon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.82) Accessory muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.82) Accessory muscle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.82''', NULL, + '(756.82) Accessory muscle', '(756.82) Accessory muscle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.83) Ehlers-Danlos syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.83) Ehlers-Danlos syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.83''', NULL, + '(756.83) Ehlers-Danlos syndrome', '(756.83) Ehlers-Danlos syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.89) Other specified anomalies of muscle, tendon, fascia, and connective tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.89) Other specified anomalies of muscle, tendon, fascia, and connective tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.89''', NULL, + '(756.89) Other specified anomalies of muscle, tendon, fascia, and connective tissue', '(756.89) Other specified anomalies of muscle, tendon, fascia, and connective tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741''', NULL, + 'Spina bifida (741)', 'Spina bifida (741)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.0''', NULL, + 'Spina bifida with hydrocephalus (741.0)', 'Spina bifida with hydrocephalus (741.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.00) Spina bifida with hydrocephalus, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.00) Spina bifida with hydrocephalus, unspecified region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.00''', NULL, + '(741.00) Spina bifida with hydrocephalus, unspecified region', '(741.00) Spina bifida with hydrocephalus, unspecified region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.01) Spina bifida with hydrocephalus, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.01) Spina bifida with hydrocephalus, cervical region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.01''', NULL, + '(741.01) Spina bifida with hydrocephalus, cervical region', '(741.01) Spina bifida with hydrocephalus, cervical region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.02) Spina bifida with hydrocephalus, dorsal (thoracic) region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.02) Spina bifida with hydrocephalus, dorsal (thoracic) region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.02) Spina bifida with hydrocephalus, dorsal (thoracic''', NULL, + '(741.02) Spina bifida with hydrocephalus, dorsal (thoracic) region', '(741.02) Spina bifida with hydrocephalus, dorsal (thoracic) region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.03) Spina bifida with hydrocephalus, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.03) Spina bifida with hydrocephalus, lumbar region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.03''', NULL, + '(741.03) Spina bifida with hydrocephalus, lumbar region', '(741.03) Spina bifida with hydrocephalus, lumbar region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.9''', NULL, + 'Spina bifida without mention of hydrocephalus (741.9)', 'Spina bifida without mention of hydrocephalus (741.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.90) Spina bifida without mention of hydrocephalus, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.90) Spina bifida without mention of hydrocephalus, unspecified region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.90''', NULL, + '(741.90) Spina bifida without mention of hydrocephalus, unspecified region', '(741.90) Spina bifida without mention of hydrocephalus, unspecified region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.91) Spina bifida without mention of hydrocephalus, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.91) Spina bifida without mention of hydrocephalus, cervical region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.91''', NULL, + '(741.91) Spina bifida without mention of hydrocephalus, cervical region', '(741.91) Spina bifida without mention of hydrocephalus, cervical region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic) region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic) region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic''', NULL, + '(741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic) region', '(741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic) region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.93) Spina bifida without mention of hydrocephalus, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.93) Spina bifida without mention of hydrocephalus, lumbar region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.93''', NULL, + '(741.93) Spina bifida without mention of hydrocephalus, lumbar region', '(741.93) Spina bifida without mention of hydrocephalus, lumbar region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''280'' AND ''289.99''', NULL, + 'Diseases of the blood and blood-forming organs (280-289.99)', 'Diseases of the blood and blood-forming organs (280-289.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283''', NULL, + 'Acquired hemolytic anemias (283)', 'Acquired hemolytic anemias (283)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.0) Autoimmune hemolytic anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.0) Autoimmune hemolytic anemias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.0''', NULL, + '(283.0) Autoimmune hemolytic anemias', '(283.0) Autoimmune hemolytic anemias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.2) Hemoglobinuria due to hemolysis from external causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.2) Hemoglobinuria due to hemolysis from external causes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.2''', NULL, + '(283.2) Hemoglobinuria due to hemolysis from external causes', '(283.2) Hemoglobinuria due to hemolysis from external causes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.9) Acquired hemolytic anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.9) Acquired hemolytic anemia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.9''', NULL, + '(283.9) Acquired hemolytic anemia, unspecified', '(283.9) Acquired hemolytic anemia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.1''', NULL, + 'Non-autoimmune hemolytic anemias (283.1)', 'Non-autoimmune hemolytic anemias (283.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.10) Non-autoimmune hemolytic anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.10) Non-autoimmune hemolytic anemia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.10''', NULL, + '(283.10) Non-autoimmune hemolytic anemia, unspecified', '(283.10) Non-autoimmune hemolytic anemia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.11) Hemolytic-uremic syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.11) Hemolytic-uremic syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.11''', NULL, + '(283.11) Hemolytic-uremic syndrome', '(283.11) Hemolytic-uremic syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.19) Other non-autoimmune hemolytic anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.19) Other non-autoimmune hemolytic anemias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.19''', NULL, + '(283.19) Other non-autoimmune hemolytic anemias', '(283.19) Other non-autoimmune hemolytic anemias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284''', NULL, + 'Aplastic anemia and other bone marrow failure syndromes (284)', 'Aplastic anemia and other bone marrow failure syndromes (284)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\(284.2) Myelophthisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\(284.2) Myelophthisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.2''', NULL, + '(284.2) Myelophthisis', '(284.2) Myelophthisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\(284.9) Aplastic anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\(284.9) Aplastic anemia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.9''', NULL, + '(284.9) Aplastic anemia, unspecified', '(284.9) Aplastic anemia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.0''', NULL, + 'Constitutional aplastic anemia (284.0)', 'Constitutional aplastic anemia (284.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\(284.01) Constitutional red blood cell aplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\(284.01) Constitutional red blood cell aplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.01''', NULL, + '(284.01) Constitutional red blood cell aplasia', '(284.01) Constitutional red blood cell aplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\(284.09) Other constitutional aplastic anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\(284.09) Other constitutional aplastic anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.09''', NULL, + '(284.09) Other constitutional aplastic anemia', '(284.09) Other constitutional aplastic anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.8''', NULL, + 'Other specified aplastic anemias (284.8)', 'Other specified aplastic anemias (284.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\(284.81) Red cell aplasia (acquired)(adult)(with thymoma)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\(284.81) Red cell aplasia (acquired)(adult)(with thymoma)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.81) Red cell aplasia (acquired)(adult)(with thymoma''', NULL, + '(284.81) Red cell aplasia (acquired)(adult)(with thymoma)', '(284.81) Red cell aplasia (acquired)(adult)(with thymoma)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\(284.89) Other specified aplastic anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\(284.89) Other specified aplastic anemias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.89''', NULL, + '(284.89) Other specified aplastic anemias', '(284.89) Other specified aplastic anemias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.1''', NULL, + 'Pancytopenia (284.1)', 'Pancytopenia (284.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.11) Antineoplastic chemotherapy induced pancytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.11) Antineoplastic chemotherapy induced pancytopenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.11''', NULL, + '(284.11) Antineoplastic chemotherapy induced pancytopenia', '(284.11) Antineoplastic chemotherapy induced pancytopenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.12) Other drug-induced pancytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.12) Other drug-induced pancytopenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.12''', NULL, + '(284.12) Other drug-induced pancytopenia', '(284.12) Other drug-induced pancytopenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.19) Other pancytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.19) Other pancytopenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.19''', NULL, + '(284.19) Other pancytopenia', '(284.19) Other pancytopenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286''', NULL, + 'Coagulation defects (286)', 'Coagulation defects (286)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.0) Congenital factor VIII disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.0) Congenital factor VIII disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.0''', NULL, + '(286.0) Congenital factor VIII disorder', '(286.0) Congenital factor VIII disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.1) Congenital factor IX disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.1) Congenital factor IX disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.1''', NULL, + '(286.1) Congenital factor IX disorder', '(286.1) Congenital factor IX disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.2) Congenital factor XI deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.2) Congenital factor XI deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.2''', NULL, + '(286.2) Congenital factor XI deficiency', '(286.2) Congenital factor XI deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.3) Congenital deficiency of other clotting factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.3) Congenital deficiency of other clotting factors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.3''', NULL, + '(286.3) Congenital deficiency of other clotting factors', '(286.3) Congenital deficiency of other clotting factors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.4) Von Willebrand''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.4) Von Willebrand''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.4''', NULL, + '(286.4) Von Willebrand''s disease', '(286.4) Von Willebrand''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.6) Defibrination syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.6) Defibrination syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.6''', NULL, + '(286.6) Defibrination syndrome', '(286.6) Defibrination syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.7) Acquired coagulation factor deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.7) Acquired coagulation factor deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.7''', NULL, + '(286.7) Acquired coagulation factor deficiency', '(286.7) Acquired coagulation factor deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.9) Other and unspecified coagulation defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.9) Other and unspecified coagulation defects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.9''', NULL, + '(286.9) Other and unspecified coagulation defects', '(286.9) Other and unspecified coagulation defects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.5''', NULL, + 'Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)', 'Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.52) Acquired hemophilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.52) Acquired hemophilia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.52''', NULL, + '(286.52) Acquired hemophilia', '(286.52) Acquired hemophilia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.53) Antiphospholipid antibody with hemorrhagic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.53) Antiphospholipid antibody with hemorrhagic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.53''', NULL, + '(286.53) Antiphospholipid antibody with hemorrhagic disorder', '(286.53) Antiphospholipid antibody with hemorrhagic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.59) Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.59) Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.59''', NULL, + '(286.59) Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors', '(286.59) Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288''', NULL, + 'Diseases of white blood cells (288)', 'Diseases of white blood cells (288)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.1) Functional disorders of polymorphonuclear neutrophils\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.1) Functional disorders of polymorphonuclear neutrophils\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.1''', NULL, + '(288.1) Functional disorders of polymorphonuclear neutrophils', '(288.1) Functional disorders of polymorphonuclear neutrophils', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.2) Genetic anomalies of leukocytes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.2) Genetic anomalies of leukocytes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.2''', NULL, + '(288.2) Genetic anomalies of leukocytes', '(288.2) Genetic anomalies of leukocytes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.3) Eosinophilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.3) Eosinophilia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.3''', NULL, + '(288.3) Eosinophilia', '(288.3) Eosinophilia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.4) Hemophagocytic syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.4) Hemophagocytic syndromes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.4''', NULL, + '(288.4) Hemophagocytic syndromes', '(288.4) Hemophagocytic syndromes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.8) Other specified disease of white blood cells\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.8) Other specified disease of white blood cells\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.8''', NULL, + '(288.8) Other specified disease of white blood cells', '(288.8) Other specified disease of white blood cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.9) Unspecified disease of white blood cells\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.9) Unspecified disease of white blood cells\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.9''', NULL, + '(288.9) Unspecified disease of white blood cells', '(288.9) Unspecified disease of white blood cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.5''', NULL, + 'Decreased white blood cell count (288.5)', 'Decreased white blood cell count (288.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.50) Leukocytopenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.50) Leukocytopenia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.50''', NULL, + '(288.50) Leukocytopenia, unspecified', '(288.50) Leukocytopenia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.51) Lymphocytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.51) Lymphocytopenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.51''', NULL, + '(288.51) Lymphocytopenia', '(288.51) Lymphocytopenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.59) Other decreased white blood cell count\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.59) Other decreased white blood cell count\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.59''', NULL, + '(288.59) Other decreased white blood cell count', '(288.59) Other decreased white blood cell count', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.6''', NULL, + 'Elevated white blood cell count (288.6)', 'Elevated white blood cell count (288.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.60) Leukocytosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.60) Leukocytosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.60''', NULL, + '(288.60) Leukocytosis, unspecified', '(288.60) Leukocytosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.61) Lymphocytosis (symptomatic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.61) Lymphocytosis (symptomatic)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.61) Lymphocytosis (symptomatic''', NULL, + '(288.61) Lymphocytosis (symptomatic)', '(288.61) Lymphocytosis (symptomatic)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.62) Leukemoid reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.62) Leukemoid reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.62''', NULL, + '(288.62) Leukemoid reaction', '(288.62) Leukemoid reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.63) Monocytosis (symptomatic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.63) Monocytosis (symptomatic)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.63) Monocytosis (symptomatic''', NULL, + '(288.63) Monocytosis (symptomatic)', '(288.63) Monocytosis (symptomatic)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.64) Plasmacytosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.64) Plasmacytosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.64''', NULL, + '(288.64) Plasmacytosis', '(288.64) Plasmacytosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.65) Basophilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.65) Basophilia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.65''', NULL, + '(288.65) Basophilia', '(288.65) Basophilia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.66) Bandemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.66) Bandemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.66''', NULL, + '(288.66) Bandemia', '(288.66) Bandemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.69) Other elevated white blood cell count\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.69) Other elevated white blood cell count\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.69''', NULL, + '(288.69) Other elevated white blood cell count', '(288.69) Other elevated white blood cell count', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.0''', NULL, + 'Neutropenia (288.0)', 'Neutropenia (288.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.00) Neutropenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.00) Neutropenia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.00''', NULL, + '(288.00) Neutropenia, unspecified', '(288.00) Neutropenia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.01) Congenital neutropenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.01) Congenital neutropenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.01''', NULL, + '(288.01) Congenital neutropenia', '(288.01) Congenital neutropenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.02) Cyclic neutropenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.02) Cyclic neutropenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.02''', NULL, + '(288.02) Cyclic neutropenia', '(288.02) Cyclic neutropenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.03) Drug induced neutropenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.03) Drug induced neutropenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.03''', NULL, + '(288.03) Drug induced neutropenia', '(288.03) Drug induced neutropenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.04) Neutropenia due to infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.04) Neutropenia due to infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.04''', NULL, + '(288.04) Neutropenia due to infection', '(288.04) Neutropenia due to infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.09) Other neutropenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.09) Other neutropenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.09''', NULL, + '(288.09) Other neutropenia', '(288.09) Other neutropenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282''', NULL, + 'Hereditary hemolytic anemias (282)', 'Hereditary hemolytic anemias (282)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.0) Hereditary spherocytosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.0) Hereditary spherocytosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.0''', NULL, + '(282.0) Hereditary spherocytosis', '(282.0) Hereditary spherocytosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.1) Hereditary elliptocytosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.1) Hereditary elliptocytosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.1''', NULL, + '(282.1) Hereditary elliptocytosis', '(282.1) Hereditary elliptocytosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.2) Anemias due to disorders of glutathione metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.2) Anemias due to disorders of glutathione metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.2''', NULL, + '(282.2) Anemias due to disorders of glutathione metabolism', '(282.2) Anemias due to disorders of glutathione metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.3) Other hemolytic anemias due to enzyme deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.3) Other hemolytic anemias due to enzyme deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.3''', NULL, + '(282.3) Other hemolytic anemias due to enzyme deficiency', '(282.3) Other hemolytic anemias due to enzyme deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.5) Sickle-cell trait\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.5) Sickle-cell trait\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.5''', NULL, + '(282.5) Sickle-cell trait', '(282.5) Sickle-cell trait', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.7) Other hemoglobinopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.7) Other hemoglobinopathies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.7''', NULL, + '(282.7) Other hemoglobinopathies', '(282.7) Other hemoglobinopathies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.8) Other specified hereditary hemolytic anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.8) Other specified hereditary hemolytic anemias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.8''', NULL, + '(282.8) Other specified hereditary hemolytic anemias', '(282.8) Other specified hereditary hemolytic anemias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.9) Hereditary hemolytic anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.9) Hereditary hemolytic anemia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.9''', NULL, + '(282.9) Hereditary hemolytic anemia, unspecified', '(282.9) Hereditary hemolytic anemia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.6''', NULL, + 'Sickle-cell disease (282.6)', 'Sickle-cell disease (282.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.60) Sickle-cell disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.60) Sickle-cell disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.60''', NULL, + '(282.60) Sickle-cell disease, unspecified', '(282.60) Sickle-cell disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.61) Hb-SS disease without crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.61) Hb-SS disease without crisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.61''', NULL, + '(282.61) Hb-SS disease without crisis', '(282.61) Hb-SS disease without crisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.62) Hb-SS disease with crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.62) Hb-SS disease with crisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.62''', NULL, + '(282.62) Hb-SS disease with crisis', '(282.62) Hb-SS disease with crisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.63) Sickle-cell/Hb-C disease without crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.63) Sickle-cell/Hb-C disease without crisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.63''', NULL, + '(282.63) Sickle-cell/Hb-C disease without crisis', '(282.63) Sickle-cell/Hb-C disease without crisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.64) Sickle-cell/Hb-C disease with crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.64) Sickle-cell/Hb-C disease with crisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.64''', NULL, + '(282.64) Sickle-cell/Hb-C disease with crisis', '(282.64) Sickle-cell/Hb-C disease with crisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.68) Other sickle-cell disease without crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.68) Other sickle-cell disease without crisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.68''', NULL, + '(282.68) Other sickle-cell disease without crisis', '(282.68) Other sickle-cell disease without crisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.69) Other sickle-cell disease with crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.69) Other sickle-cell disease with crisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.69''', NULL, + '(282.69) Other sickle-cell disease with crisis', '(282.69) Other sickle-cell disease with crisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.4''', NULL, + 'Thalassemias (282.4)', 'Thalassemias (282.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.40) Thalassemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.40) Thalassemia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.40''', NULL, + '(282.40) Thalassemia, unspecified', '(282.40) Thalassemia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.41) Sickle-cell thalassemia without crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.41) Sickle-cell thalassemia without crisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.41''', NULL, + '(282.41) Sickle-cell thalassemia without crisis', '(282.41) Sickle-cell thalassemia without crisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.42) Sickle-cell thalassemia with crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.42) Sickle-cell thalassemia with crisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.42''', NULL, + '(282.42) Sickle-cell thalassemia with crisis', '(282.42) Sickle-cell thalassemia with crisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.44) Beta thalassemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.44) Beta thalassemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.44''', NULL, + '(282.44) Beta thalassemia', '(282.44) Beta thalassemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.46) Thalassemia minor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.46) Thalassemia minor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.46''', NULL, + '(282.46) Thalassemia minor', '(282.46) Thalassemia minor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.49) Other thalassemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.49) Other thalassemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.49''', NULL, + '(282.49) Other thalassemia', '(282.49) Other thalassemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''280''', NULL, + 'Iron deficiency anemias (280)', 'Iron deficiency anemias (280)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.0) Iron deficiency anemia secondary to blood loss (chronic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.0) Iron deficiency anemia secondary to blood loss (chronic)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''280.0) Iron deficiency anemia secondary to blood loss (chronic''', NULL, + '(280.0) Iron deficiency anemia secondary to blood loss (chronic)', '(280.0) Iron deficiency anemia secondary to blood loss (chronic)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.1) Iron deficiency anemia secondary to inadequate dietary iron intake\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.1) Iron deficiency anemia secondary to inadequate dietary iron intake\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''280.1''', NULL, + '(280.1) Iron deficiency anemia secondary to inadequate dietary iron intake', '(280.1) Iron deficiency anemia secondary to inadequate dietary iron intake', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.8) Other specified iron deficiency anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.8) Other specified iron deficiency anemias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''280.8''', NULL, + '(280.8) Other specified iron deficiency anemias', '(280.8) Other specified iron deficiency anemias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.9) Iron deficiency anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.9) Iron deficiency anemia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''280.9''', NULL, + '(280.9) Iron deficiency anemia, unspecified', '(280.9) Iron deficiency anemia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285''', NULL, + 'Other and unspecified anemias (285)', 'Other and unspecified anemias (285)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.0) Sideroblastic anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.0) Sideroblastic anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.0''', NULL, + '(285.0) Sideroblastic anemia', '(285.0) Sideroblastic anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.1) Acute posthemorrhagic anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.1) Acute posthemorrhagic anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.1''', NULL, + '(285.1) Acute posthemorrhagic anemia', '(285.1) Acute posthemorrhagic anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.3) Antineoplastic chemotherapy induced anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.3) Antineoplastic chemotherapy induced anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.3''', NULL, + '(285.3) Antineoplastic chemotherapy induced anemia', '(285.3) Antineoplastic chemotherapy induced anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.8) Other specified anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.8) Other specified anemias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.8''', NULL, + '(285.8) Other specified anemias', '(285.8) Other specified anemias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.9) Anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.9) Anemia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.9''', NULL, + '(285.9) Anemia, unspecified', '(285.9) Anemia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.2''', NULL, + 'Anemia of chronic disease (285.2)', 'Anemia of chronic disease (285.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.21) Anemia in chronic kidney disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.21) Anemia in chronic kidney disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.21''', NULL, + '(285.21) Anemia in chronic kidney disease', '(285.21) Anemia in chronic kidney disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.22) Anemia in neoplastic disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.22) Anemia in neoplastic disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.22''', NULL, + '(285.22) Anemia in neoplastic disease', '(285.22) Anemia in neoplastic disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.29) Anemia of other chronic disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.29) Anemia of other chronic disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.29''', NULL, + '(285.29) Anemia of other chronic disease', '(285.29) Anemia of other chronic disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281''', NULL, + 'Other deficiency anemias (281)', 'Other deficiency anemias (281)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.0) Pernicious anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.0) Pernicious anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.0''', NULL, + '(281.0) Pernicious anemia', '(281.0) Pernicious anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.1) Other vitamin B12 deficiency anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.1) Other vitamin B12 deficiency anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.1''', NULL, + '(281.1) Other vitamin B12 deficiency anemia', '(281.1) Other vitamin B12 deficiency anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.2) Folate-deficiency anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.2) Folate-deficiency anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.2''', NULL, + '(281.2) Folate-deficiency anemia', '(281.2) Folate-deficiency anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.3) Other specified megaloblastic anemias not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.3) Other specified megaloblastic anemias not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.3''', NULL, + '(281.3) Other specified megaloblastic anemias not elsewhere classified', '(281.3) Other specified megaloblastic anemias not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.4) Protein-deficiency anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.4) Protein-deficiency anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.4''', NULL, + '(281.4) Protein-deficiency anemia', '(281.4) Protein-deficiency anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.8) Anemia associated with other specified nutritional deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.8) Anemia associated with other specified nutritional deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.8''', NULL, + '(281.8) Anemia associated with other specified nutritional deficiency', '(281.8) Anemia associated with other specified nutritional deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.9) Unspecified deficiency anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.9) Unspecified deficiency anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.9''', NULL, + '(281.9) Unspecified deficiency anemia', '(281.9) Unspecified deficiency anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289''', NULL, + 'Other diseases of blood and blood-forming organs (289)', 'Other diseases of blood and blood-forming organs (289)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.0) Polycythemia, secondary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.0) Polycythemia, secondary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.0''', NULL, + '(289.0) Polycythemia, secondary', '(289.0) Polycythemia, secondary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.1) Chronic lymphadenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.1) Chronic lymphadenitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.1''', NULL, + '(289.1) Chronic lymphadenitis', '(289.1) Chronic lymphadenitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.2) Nonspecific mesenteric lymphadenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.2) Nonspecific mesenteric lymphadenitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.2''', NULL, + '(289.2) Nonspecific mesenteric lymphadenitis', '(289.2) Nonspecific mesenteric lymphadenitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.3) Lymphadenitis, unspecified, except mesenteric\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.3) Lymphadenitis, unspecified, except mesenteric\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.3''', NULL, + '(289.3) Lymphadenitis, unspecified, except mesenteric', '(289.3) Lymphadenitis, unspecified, except mesenteric', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.4) Hypersplenism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.4) Hypersplenism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.4''', NULL, + '(289.4) Hypersplenism', '(289.4) Hypersplenism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.6) Familial polycythemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.6) Familial polycythemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.6''', NULL, + '(289.6) Familial polycythemia', '(289.6) Familial polycythemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.7) Methemoglobinemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.7) Methemoglobinemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.7''', NULL, + '(289.7) Methemoglobinemia', '(289.7) Methemoglobinemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.9) Unspecified diseases of blood and blood-forming organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.9) Unspecified diseases of blood and blood-forming organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.9''', NULL, + '(289.9) Unspecified diseases of blood and blood-forming organs', '(289.9) Unspecified diseases of blood and blood-forming organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.5''', NULL, + 'Other diseases of spleen (289.5)', 'Other diseases of spleen (289.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.50) Disease of spleen, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.50) Disease of spleen, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.50''', NULL, + '(289.50) Disease of spleen, unspecified', '(289.50) Disease of spleen, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.51) Chronic congestive splenomegaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.51) Chronic congestive splenomegaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.51''', NULL, + '(289.51) Chronic congestive splenomegaly', '(289.51) Chronic congestive splenomegaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.52) Splenic sequestration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.52) Splenic sequestration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.52''', NULL, + '(289.52) Splenic sequestration', '(289.52) Splenic sequestration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.53) Neutropenic splenomegaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.53) Neutropenic splenomegaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.53''', NULL, + '(289.53) Neutropenic splenomegaly', '(289.53) Neutropenic splenomegaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.59) Other diseases of spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.59) Other diseases of spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.59''', NULL, + '(289.59) Other diseases of spleen', '(289.59) Other diseases of spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.8''', NULL, + 'Other specified diseases of blood and blood-forming organs (289.8)', 'Other specified diseases of blood and blood-forming organs (289.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.81) Primary hypercoagulable state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.81) Primary hypercoagulable state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.81''', NULL, + '(289.81) Primary hypercoagulable state', '(289.81) Primary hypercoagulable state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.82) Secondary hypercoagulable state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.82) Secondary hypercoagulable state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.82''', NULL, + '(289.82) Secondary hypercoagulable state', '(289.82) Secondary hypercoagulable state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.83) Myelofibrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.83) Myelofibrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.83''', NULL, + '(289.83) Myelofibrosis', '(289.83) Myelofibrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.84) Heparin-induced thrombocytopenia (HIT)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.84) Heparin-induced thrombocytopenia (HIT)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''289.84) Heparin'' AND ''induced thrombocytopenia (HIT''', NULL, + '(289.84) Heparin-induced thrombocytopenia (HIT)', '(289.84) Heparin-induced thrombocytopenia (HIT)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.89) Other specified diseases of blood and blood-forming organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.89) Other specified diseases of blood and blood-forming organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.89''', NULL, + '(289.89) Other specified diseases of blood and blood-forming organs', '(289.89) Other specified diseases of blood and blood-forming organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287''', NULL, + 'Purpura and other hemorrhagic conditions (287)', 'Purpura and other hemorrhagic conditions (287)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.0) Allergic purpura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.0) Allergic purpura\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.0''', NULL, + '(287.0) Allergic purpura', '(287.0) Allergic purpura', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.1) Qualitative platelet defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.1) Qualitative platelet defects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.1''', NULL, + '(287.1) Qualitative platelet defects', '(287.1) Qualitative platelet defects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.2) Other nonthrombocytopenic purpuras\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.2) Other nonthrombocytopenic purpuras\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.2''', NULL, + '(287.2) Other nonthrombocytopenic purpuras', '(287.2) Other nonthrombocytopenic purpuras', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.5) Thrombocytopenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.5) Thrombocytopenia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.5''', NULL, + '(287.5) Thrombocytopenia, unspecified', '(287.5) Thrombocytopenia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.8) Other specified hemorrhagic conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.8) Other specified hemorrhagic conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.8''', NULL, + '(287.8) Other specified hemorrhagic conditions', '(287.8) Other specified hemorrhagic conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.9) Unspecified hemorrhagic conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.9) Unspecified hemorrhagic conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.9''', NULL, + '(287.9) Unspecified hemorrhagic conditions', '(287.9) Unspecified hemorrhagic conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.3''', NULL, + 'Primary thrombocytopenia (287.3)', 'Primary thrombocytopenia (287.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.30) Primary thrombocytopenia,unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.30) Primary thrombocytopenia,unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.30''', NULL, + '(287.30) Primary thrombocytopenia,unspecified', '(287.30) Primary thrombocytopenia,unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.31) Immune thrombocytopenic purpura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.31) Immune thrombocytopenic purpura\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.31''', NULL, + '(287.31) Immune thrombocytopenic purpura', '(287.31) Immune thrombocytopenic purpura', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.32) Evans'' syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.32) Evans'' syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.32''', NULL, + '(287.32) Evans'' syndrome', '(287.32) Evans'' syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.33) Congenital and hereditary thrombocytopenic purpura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.33) Congenital and hereditary thrombocytopenic purpura\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.33''', NULL, + '(287.33) Congenital and hereditary thrombocytopenic purpura', '(287.33) Congenital and hereditary thrombocytopenic purpura', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.39) Other primary thrombocytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.39) Other primary thrombocytopenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.39''', NULL, + '(287.39) Other primary thrombocytopenia', '(287.39) Other primary thrombocytopenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.4''', NULL, + 'Secondary thrombocytopenia (287.4)', 'Secondary thrombocytopenia (287.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\(287.41) Posttransfusion purpura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\(287.41) Posttransfusion purpura\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.41''', NULL, + '(287.41) Posttransfusion purpura', '(287.41) Posttransfusion purpura', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\(287.49) Other secondary thrombocytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\(287.49) Other secondary thrombocytopenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.49''', NULL, + '(287.49) Other secondary thrombocytopenia', '(287.49) Other secondary thrombocytopenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''390'' AND ''459.99''', NULL, + 'Diseases of the circulatory system (390-459.99)', 'Diseases of the circulatory system (390-459.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''390'' AND ''392.99''', NULL, + 'Acute rheumatic fever (390-392.99)', 'Acute rheumatic fever (390-392.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\(390) Rheumatic fever without mention of heart involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\(390) Rheumatic fever without mention of heart involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''390''', NULL, + '(390) Rheumatic fever without mention of heart involvement', '(390) Rheumatic fever without mention of heart involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''392''', NULL, + 'Rheumatic chorea (392)', 'Rheumatic chorea (392)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\(392.0) Rheumatic chorea with heart involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\(392.0) Rheumatic chorea with heart involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''392.0''', NULL, + '(392.0) Rheumatic chorea with heart involvement', '(392.0) Rheumatic chorea with heart involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\(392.9) Rheumatic chorea without mention of heart involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\(392.9) Rheumatic chorea without mention of heart involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''392.9''', NULL, + '(392.9) Rheumatic chorea without mention of heart involvement', '(392.9) Rheumatic chorea without mention of heart involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391''', NULL, + 'Rheumatic fever with heart involvement (391)', 'Rheumatic fever with heart involvement (391)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.0) Acute rheumatic pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.0) Acute rheumatic pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391.0''', NULL, + '(391.0) Acute rheumatic pericarditis', '(391.0) Acute rheumatic pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.1) Acute rheumatic endocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.1) Acute rheumatic endocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391.1''', NULL, + '(391.1) Acute rheumatic endocarditis', '(391.1) Acute rheumatic endocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.2) Acute rheumatic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.2) Acute rheumatic myocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391.2''', NULL, + '(391.2) Acute rheumatic myocarditis', '(391.2) Acute rheumatic myocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.8) Other acute rheumatic heart disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.8) Other acute rheumatic heart disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391.8''', NULL, + '(391.8) Other acute rheumatic heart disease', '(391.8) Other acute rheumatic heart disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.9) Acute rheumatic heart disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.9) Acute rheumatic heart disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391.9''', NULL, + '(391.9) Acute rheumatic heart disease, unspecified', '(391.9) Acute rheumatic heart disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''430'' AND ''438.99''', NULL, + 'Cerebrovascular disease (430-438.99)', 'Cerebrovascular disease (430-438.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(430) Subarachnoid hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(430) Subarachnoid hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''430''', NULL, + '(430) Subarachnoid hemorrhage', '(430) Subarachnoid hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(431) Intracerebral hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(431) Intracerebral hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''431''', NULL, + '(431) Intracerebral hemorrhage', '(431) Intracerebral hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(436) Acute, but ill-defined, cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(436) Acute, but ill-defined, cerebrovascular disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''436''', NULL, + '(436) Acute, but ill-defined, cerebrovascular disease', '(436) Acute, but ill-defined, cerebrovascular disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438''', NULL, + 'Late effects of cerebrovascular disease (438)', 'Late effects of cerebrovascular disease (438)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.0) Late effects of cerebrovascular disease, cognitive deficits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.0) Late effects of cerebrovascular disease, cognitive deficits\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.0''', NULL, + '(438.0) Late effects of cerebrovascular disease, cognitive deficits', '(438.0) Late effects of cerebrovascular disease, cognitive deficits', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.6) Late effects of cerebrovascular disease, alterations of sensations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.6) Late effects of cerebrovascular disease, alterations of sensations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.6''', NULL, + '(438.6) Late effects of cerebrovascular disease, alterations of sensations', '(438.6) Late effects of cerebrovascular disease, alterations of sensations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.7) Late effects of cerebrovascular disease, disturbances of vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.7) Late effects of cerebrovascular disease, disturbances of vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.7''', NULL, + '(438.7) Late effects of cerebrovascular disease, disturbances of vision', '(438.7) Late effects of cerebrovascular disease, disturbances of vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.9) Unspecified late effects of cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.9) Unspecified late effects of cerebrovascular disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.9''', NULL, + '(438.9) Unspecified late effects of cerebrovascular disease', '(438.9) Unspecified late effects of cerebrovascular disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.2''', NULL, + 'Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)', 'Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.20) Late effects of cerebrovascular disease, hemiplegia affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.20) Late effects of cerebrovascular disease, hemiplegia affecting unspecified side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.20''', NULL, + '(438.20) Late effects of cerebrovascular disease, hemiplegia affecting unspecified side', '(438.20) Late effects of cerebrovascular disease, hemiplegia affecting unspecified side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.21) Late effects of cerebrovascular disease, hemiplegia affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.21) Late effects of cerebrovascular disease, hemiplegia affecting dominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.21''', NULL, + '(438.21) Late effects of cerebrovascular disease, hemiplegia affecting dominant side', '(438.21) Late effects of cerebrovascular disease, hemiplegia affecting dominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.22) Late effects of cerebrovascular disease, hemiplegia affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.22) Late effects of cerebrovascular disease, hemiplegia affecting nondominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.22''', NULL, + '(438.22) Late effects of cerebrovascular disease, hemiplegia affecting nondominant side', '(438.22) Late effects of cerebrovascular disease, hemiplegia affecting nondominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.4''', NULL, + 'Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)', 'Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.40) Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.40) Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.40''', NULL, + '(438.40) Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side', '(438.40) Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.41) Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.41) Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.41''', NULL, + '(438.41) Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side', '(438.41) Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.42) Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.42) Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.42''', NULL, + '(438.42) Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side', '(438.42) Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.3''', NULL, + 'Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)', 'Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.30) Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.30) Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.30''', NULL, + '(438.30) Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side', '(438.30) Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.31) Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.31) Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.31''', NULL, + '(438.31) Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side', '(438.31) Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.32) Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.32) Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.32''', NULL, + '(438.32) Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side', '(438.32) Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.8''', NULL, + 'Other late effects of cerebrovascular disease (438.8)', 'Other late effects of cerebrovascular disease (438.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.81) Other late effects of cerebrovascular disease, apraxia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.81) Other late effects of cerebrovascular disease, apraxia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.81''', NULL, + '(438.81) Other late effects of cerebrovascular disease, apraxia', '(438.81) Other late effects of cerebrovascular disease, apraxia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.82) Other late effects of cerebrovascular disease, dysphagia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.82) Other late effects of cerebrovascular disease, dysphagia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.82''', NULL, + '(438.82) Other late effects of cerebrovascular disease, dysphagia', '(438.82) Other late effects of cerebrovascular disease, dysphagia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.83) Other late effects of cerebrovascular disease, facial weakness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.83) Other late effects of cerebrovascular disease, facial weakness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.83''', NULL, + '(438.83) Other late effects of cerebrovascular disease, facial weakness', '(438.83) Other late effects of cerebrovascular disease, facial weakness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.84) Other late effects of cerebrovascular disease, ataxia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.84) Other late effects of cerebrovascular disease, ataxia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.84''', NULL, + '(438.84) Other late effects of cerebrovascular disease, ataxia', '(438.84) Other late effects of cerebrovascular disease, ataxia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.85) Other late effects of cerebrovascular disease, vertigo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.85) Other late effects of cerebrovascular disease, vertigo\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.85''', NULL, + '(438.85) Other late effects of cerebrovascular disease, vertigo', '(438.85) Other late effects of cerebrovascular disease, vertigo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.89) Other late effects of cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.89) Other late effects of cerebrovascular disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.89''', NULL, + '(438.89) Other late effects of cerebrovascular disease', '(438.89) Other late effects of cerebrovascular disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.5''', NULL, + 'Other paralytic syndrome as late effect of cerebrovascular disease (438.5)', 'Other paralytic syndrome as late effect of cerebrovascular disease (438.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.50) Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.50) Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.50''', NULL, + '(438.50) Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side', '(438.50) Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.51) Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.51) Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.51''', NULL, + '(438.51) Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side', '(438.51) Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.52) Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.52) Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.52''', NULL, + '(438.52) Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side', '(438.52) Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.53) Late effects of cerebrovascular disease, other paralytic syndrome, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.53) Late effects of cerebrovascular disease, other paralytic syndrome, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.53''', NULL, + '(438.53) Late effects of cerebrovascular disease, other paralytic syndrome, bilateral', '(438.53) Late effects of cerebrovascular disease, other paralytic syndrome, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.1''', NULL, + 'Speech and language deficits as late effect of cerebrovascular disease (438.1)', 'Speech and language deficits as late effect of cerebrovascular disease (438.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.10) Late effects of cerebrovascular disease, speech and language deficit, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.10) Late effects of cerebrovascular disease, speech and language deficit, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.10''', NULL, + '(438.10) Late effects of cerebrovascular disease, speech and language deficit, unspecified', '(438.10) Late effects of cerebrovascular disease, speech and language deficit, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.11) Late effects of cerebrovascular disease, aphasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.11) Late effects of cerebrovascular disease, aphasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.11''', NULL, + '(438.11) Late effects of cerebrovascular disease, aphasia', '(438.11) Late effects of cerebrovascular disease, aphasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.12) Late effects of cerebrovascular disease, dysphasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.12) Late effects of cerebrovascular disease, dysphasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.12''', NULL, + '(438.12) Late effects of cerebrovascular disease, dysphasia', '(438.12) Late effects of cerebrovascular disease, dysphasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.13) Late effects of cerebrovascular disease, dysarthria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.13) Late effects of cerebrovascular disease, dysarthria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.13''', NULL, + '(438.13) Late effects of cerebrovascular disease, dysarthria', '(438.13) Late effects of cerebrovascular disease, dysarthria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.19) Late effects of cerebrovascular disease, other speech and language deficits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.19) Late effects of cerebrovascular disease, other speech and language deficits\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.19''', NULL, + '(438.19) Late effects of cerebrovascular disease, other speech and language deficits', '(438.19) Late effects of cerebrovascular disease, other speech and language deficits', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433''', NULL, + 'Occlusion and stenosis of precerebral arteries (433)', 'Occlusion and stenosis of precerebral arteries (433)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.0''', NULL, + 'Occlusion and stenosis of basilar artery (433.0)', 'Occlusion and stenosis of basilar artery (433.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\(433.00) Occlusion and stenosis of basilar artery without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\(433.00) Occlusion and stenosis of basilar artery without mention of cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.00''', NULL, + '(433.00) Occlusion and stenosis of basilar artery without mention of cerebral infarction', '(433.00) Occlusion and stenosis of basilar artery without mention of cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\(433.01) Occlusion and stenosis of basilar artery with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\(433.01) Occlusion and stenosis of basilar artery with cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.01''', NULL, + '(433.01) Occlusion and stenosis of basilar artery with cerebral infarction', '(433.01) Occlusion and stenosis of basilar artery with cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.1''', NULL, + 'Occlusion and stenosis of carotid artery (433.1)', 'Occlusion and stenosis of carotid artery (433.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\(433.10) Occlusion and stenosis of carotid artery without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\(433.10) Occlusion and stenosis of carotid artery without mention of cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.10''', NULL, + '(433.10) Occlusion and stenosis of carotid artery without mention of cerebral infarction', '(433.10) Occlusion and stenosis of carotid artery without mention of cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\(433.11) Occlusion and stenosis of carotid artery with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\(433.11) Occlusion and stenosis of carotid artery with cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.11''', NULL, + '(433.11) Occlusion and stenosis of carotid artery with cerebral infarction', '(433.11) Occlusion and stenosis of carotid artery with cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.3''', NULL, + 'Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)', 'Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\(433.30) Occlusion and stenosis of multiple and bilateral precerebral arteries without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\(433.30) Occlusion and stenosis of multiple and bilateral precerebral arteries without mention of cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.30''', NULL, + '(433.30) Occlusion and stenosis of multiple and bilateral precerebral arteries without mention of cerebral infarction', '(433.30) Occlusion and stenosis of multiple and bilateral precerebral arteries without mention of cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\(433.31) Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\(433.31) Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.31''', NULL, + '(433.31) Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction', '(433.31) Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.8''', NULL, + 'Occlusion and stenosis of other specified precerebral artery (433.8)', 'Occlusion and stenosis of other specified precerebral artery (433.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\(433.80) Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\(433.80) Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.80''', NULL, + '(433.80) Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction', '(433.80) Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\(433.81) Occlusion and stenosis of other specified precerebral artery with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\(433.81) Occlusion and stenosis of other specified precerebral artery with cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.81''', NULL, + '(433.81) Occlusion and stenosis of other specified precerebral artery with cerebral infarction', '(433.81) Occlusion and stenosis of other specified precerebral artery with cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.9''', NULL, + 'Occlusion and stenosis of unspecified precerebral artery (433.9)', 'Occlusion and stenosis of unspecified precerebral artery (433.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\(433.90) Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\(433.90) Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.90''', NULL, + '(433.90) Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction', '(433.90) Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\(433.91) Occlusion and stenosis of unspecified precerebral artery with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\(433.91) Occlusion and stenosis of unspecified precerebral artery with cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.91''', NULL, + '(433.91) Occlusion and stenosis of unspecified precerebral artery with cerebral infarction', '(433.91) Occlusion and stenosis of unspecified precerebral artery with cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.2''', NULL, + 'Occlusion and stenosis of vertebral artery (433.2)', 'Occlusion and stenosis of vertebral artery (433.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\(433.20) Occlusion and stenosis of vertebral artery without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\(433.20) Occlusion and stenosis of vertebral artery without mention of cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.20''', NULL, + '(433.20) Occlusion and stenosis of vertebral artery without mention of cerebral infarction', '(433.20) Occlusion and stenosis of vertebral artery without mention of cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\(433.21) Occlusion and stenosis of vertebral artery with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\(433.21) Occlusion and stenosis of vertebral artery with cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.21''', NULL, + '(433.21) Occlusion and stenosis of vertebral artery with cerebral infarction', '(433.21) Occlusion and stenosis of vertebral artery with cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434''', NULL, + 'Occlusion of cerebral arteries (434)', 'Occlusion of cerebral arteries (434)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.9''', NULL, + 'Cerebral artery occlusion, unspecified (434.9)', 'Cerebral artery occlusion, unspecified (434.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\(434.90) Cerebral artery occlusion, unspecified without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\(434.90) Cerebral artery occlusion, unspecified without mention of cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.90''', NULL, + '(434.90) Cerebral artery occlusion, unspecified without mention of cerebral infarction', '(434.90) Cerebral artery occlusion, unspecified without mention of cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\(434.91) Cerebral artery occlusion, unspecified with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\(434.91) Cerebral artery occlusion, unspecified with cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.91''', NULL, + '(434.91) Cerebral artery occlusion, unspecified with cerebral infarction', '(434.91) Cerebral artery occlusion, unspecified with cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.1''', NULL, + 'Cerebral embolism (434.1)', 'Cerebral embolism (434.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\(434.10) Cerebral embolism without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\(434.10) Cerebral embolism without mention of cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.10''', NULL, + '(434.10) Cerebral embolism without mention of cerebral infarction', '(434.10) Cerebral embolism without mention of cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\(434.11) Cerebral embolism with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\(434.11) Cerebral embolism with cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.11''', NULL, + '(434.11) Cerebral embolism with cerebral infarction', '(434.11) Cerebral embolism with cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.0''', NULL, + 'Cerebral thrombosis (434.0)', 'Cerebral thrombosis (434.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\(434.00) Cerebral thrombosis without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\(434.00) Cerebral thrombosis without mention of cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.00''', NULL, + '(434.00) Cerebral thrombosis without mention of cerebral infarction', '(434.00) Cerebral thrombosis without mention of cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\(434.01) Cerebral thrombosis with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\(434.01) Cerebral thrombosis with cerebral infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.01''', NULL, + '(434.01) Cerebral thrombosis with cerebral infarction', '(434.01) Cerebral thrombosis with cerebral infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437''', NULL, + 'Other and ill-defined cerebrovascular disease (437)', 'Other and ill-defined cerebrovascular disease (437)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.0) Cerebral atherosclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.0) Cerebral atherosclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.0''', NULL, + '(437.0) Cerebral atherosclerosis', '(437.0) Cerebral atherosclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.1) Other generalized ischemic cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.1) Other generalized ischemic cerebrovascular disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.1''', NULL, + '(437.1) Other generalized ischemic cerebrovascular disease', '(437.1) Other generalized ischemic cerebrovascular disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.2) Hypertensive encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.2) Hypertensive encephalopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.2''', NULL, + '(437.2) Hypertensive encephalopathy', '(437.2) Hypertensive encephalopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.3) Cerebral aneurysm, nonruptured\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.3) Cerebral aneurysm, nonruptured\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.3''', NULL, + '(437.3) Cerebral aneurysm, nonruptured', '(437.3) Cerebral aneurysm, nonruptured', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.4) Cerebral arteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.4) Cerebral arteritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.4''', NULL, + '(437.4) Cerebral arteritis', '(437.4) Cerebral arteritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.5) Moyamoya disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.5) Moyamoya disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.5''', NULL, + '(437.5) Moyamoya disease', '(437.5) Moyamoya disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.6) Nonpyogenic thrombosis of intracranial venous sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.6) Nonpyogenic thrombosis of intracranial venous sinus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.6''', NULL, + '(437.6) Nonpyogenic thrombosis of intracranial venous sinus', '(437.6) Nonpyogenic thrombosis of intracranial venous sinus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.7) Transient global amnesia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.7) Transient global amnesia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.7''', NULL, + '(437.7) Transient global amnesia', '(437.7) Transient global amnesia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.8) Other ill-defined cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.8) Other ill-defined cerebrovascular disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.8''', NULL, + '(437.8) Other ill-defined cerebrovascular disease', '(437.8) Other ill-defined cerebrovascular disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.9) Unspecified cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.9) Unspecified cerebrovascular disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.9''', NULL, + '(437.9) Unspecified cerebrovascular disease', '(437.9) Unspecified cerebrovascular disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''432''', NULL, + 'Other and unspecified intracranial hemorrhage (432)', 'Other and unspecified intracranial hemorrhage (432)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.0) Nontraumatic extradural hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.0) Nontraumatic extradural hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''432.0''', NULL, + '(432.0) Nontraumatic extradural hemorrhage', '(432.0) Nontraumatic extradural hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.1) Subdural hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.1) Subdural hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''432.1''', NULL, + '(432.1) Subdural hemorrhage', '(432.1) Subdural hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.9) Unspecified intracranial hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.9) Unspecified intracranial hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''432.9''', NULL, + '(432.9) Unspecified intracranial hemorrhage', '(432.9) Unspecified intracranial hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435''', NULL, + 'Transient cerebral ischemia (435)', 'Transient cerebral ischemia (435)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.0) Basilar artery syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.0) Basilar artery syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.0''', NULL, + '(435.0) Basilar artery syndrome', '(435.0) Basilar artery syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.1) Vertebral artery syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.1) Vertebral artery syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.1''', NULL, + '(435.1) Vertebral artery syndrome', '(435.1) Vertebral artery syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.2) Subclavian steal syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.2) Subclavian steal syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.2''', NULL, + '(435.2) Subclavian steal syndrome', '(435.2) Subclavian steal syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.3) Vertebrobasilar artery syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.3) Vertebrobasilar artery syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.3''', NULL, + '(435.3) Vertebrobasilar artery syndrome', '(435.3) Vertebrobasilar artery syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.8) Other specified transient cerebral ischemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.8) Other specified transient cerebral ischemias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.8''', NULL, + '(435.8) Other specified transient cerebral ischemias', '(435.8) Other specified transient cerebral ischemias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.9) Unspecified transient cerebral ischemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.9) Unspecified transient cerebral ischemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.9''', NULL, + '(435.9) Unspecified transient cerebral ischemia', '(435.9) Unspecified transient cerebral ischemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''393'' AND ''398.99''', NULL, + 'Chronic rheumatic heart disease (393-398.99)', 'Chronic rheumatic heart disease (393-398.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\(393) Chronic rheumatic pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\(393) Chronic rheumatic pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''393''', NULL, + '(393) Chronic rheumatic pericarditis', '(393) Chronic rheumatic pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''395''', NULL, + 'Diseases of aortic valve (395)', 'Diseases of aortic valve (395)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.0) Rheumatic aortic stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.0) Rheumatic aortic stenosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''395.0''', NULL, + '(395.0) Rheumatic aortic stenosis', '(395.0) Rheumatic aortic stenosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.1) Rheumatic aortic insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.1) Rheumatic aortic insufficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''395.1''', NULL, + '(395.1) Rheumatic aortic insufficiency', '(395.1) Rheumatic aortic insufficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.2) Rheumatic aortic stenosis with insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.2) Rheumatic aortic stenosis with insufficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''395.2''', NULL, + '(395.2) Rheumatic aortic stenosis with insufficiency', '(395.2) Rheumatic aortic stenosis with insufficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.9) Other and unspecified rheumatic aortic diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.9) Other and unspecified rheumatic aortic diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''395.9''', NULL, + '(395.9) Other and unspecified rheumatic aortic diseases', '(395.9) Other and unspecified rheumatic aortic diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396''', NULL, + 'Diseases of mitral and aortic valves (396)', 'Diseases of mitral and aortic valves (396)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.0) Mitral valve stenosis and aortic valve stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.0) Mitral valve stenosis and aortic valve stenosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.0''', NULL, + '(396.0) Mitral valve stenosis and aortic valve stenosis', '(396.0) Mitral valve stenosis and aortic valve stenosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.1) Mitral valve stenosis and aortic valve insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.1) Mitral valve stenosis and aortic valve insufficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.1''', NULL, + '(396.1) Mitral valve stenosis and aortic valve insufficiency', '(396.1) Mitral valve stenosis and aortic valve insufficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.2) Mitral valve insufficiency and aortic valve stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.2) Mitral valve insufficiency and aortic valve stenosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.2''', NULL, + '(396.2) Mitral valve insufficiency and aortic valve stenosis', '(396.2) Mitral valve insufficiency and aortic valve stenosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.3) Mitral valve insufficiency and aortic valve insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.3) Mitral valve insufficiency and aortic valve insufficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.3''', NULL, + '(396.3) Mitral valve insufficiency and aortic valve insufficiency', '(396.3) Mitral valve insufficiency and aortic valve insufficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.8) Multiple involvement of mitral and aortic valves\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.8) Multiple involvement of mitral and aortic valves\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.8''', NULL, + '(396.8) Multiple involvement of mitral and aortic valves', '(396.8) Multiple involvement of mitral and aortic valves', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.9) Mitral and aortic valve diseases, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.9) Mitral and aortic valve diseases, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.9''', NULL, + '(396.9) Mitral and aortic valve diseases, unspecified', '(396.9) Mitral and aortic valve diseases, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''394''', NULL, + 'Diseases of mitral valve (394)', 'Diseases of mitral valve (394)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.0) Mitral stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.0) Mitral stenosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''394.0''', NULL, + '(394.0) Mitral stenosis', '(394.0) Mitral stenosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.1) Rheumatic mitral insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.1) Rheumatic mitral insufficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''394.1''', NULL, + '(394.1) Rheumatic mitral insufficiency', '(394.1) Rheumatic mitral insufficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.2) Mitral stenosis with insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.2) Mitral stenosis with insufficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''394.2''', NULL, + '(394.2) Mitral stenosis with insufficiency', '(394.2) Mitral stenosis with insufficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.9) Other and unspecified mitral valve diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.9) Other and unspecified mitral valve diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''394.9''', NULL, + '(394.9) Other and unspecified mitral valve diseases', '(394.9) Other and unspecified mitral valve diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''397''', NULL, + 'Diseases of other endocardial structures (397)', 'Diseases of other endocardial structures (397)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.0) Diseases of tricuspid valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.0) Diseases of tricuspid valve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''397.0''', NULL, + '(397.0) Diseases of tricuspid valve', '(397.0) Diseases of tricuspid valve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.1) Rheumatic diseases of pulmonary valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.1) Rheumatic diseases of pulmonary valve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''397.1''', NULL, + '(397.1) Rheumatic diseases of pulmonary valve', '(397.1) Rheumatic diseases of pulmonary valve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.9) Rheumatic diseases of endocardium, valve unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.9) Rheumatic diseases of endocardium, valve unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''397.9''', NULL, + '(397.9) Rheumatic diseases of endocardium, valve unspecified', '(397.9) Rheumatic diseases of endocardium, valve unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398''', NULL, + 'Other rheumatic heart disease (398)', 'Other rheumatic heart disease (398)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\(398.0) Rheumatic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\(398.0) Rheumatic myocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398.0''', NULL, + '(398.0) Rheumatic myocarditis', '(398.0) Rheumatic myocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398.9''', NULL, + 'Other and unspecified rheumatic heart diseases (398.9)', 'Other and unspecified rheumatic heart diseases (398.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.90) Rheumatic heart disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.90) Rheumatic heart disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398.90''', NULL, + '(398.90) Rheumatic heart disease, unspecified', '(398.90) Rheumatic heart disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.91) Rheumatic heart failure (congestive)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.91) Rheumatic heart failure (congestive)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398.91) Rheumatic heart failure (congestive''', NULL, + '(398.91) Rheumatic heart failure (congestive)', '(398.91) Rheumatic heart failure (congestive)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.99) Other rheumatic heart diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.99) Other rheumatic heart diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398.99''', NULL, + '(398.99) Other rheumatic heart diseases', '(398.99) Other rheumatic heart diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''440'' AND ''449.99''', NULL, + 'Diseases of arteries, arterioles, and capillaries (440-449.99)', 'Diseases of arteries, arterioles, and capillaries (440-449.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\(449) Septic arterial embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\(449) Septic arterial embolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''449''', NULL, + '(449) Septic arterial embolism', '(449) Septic arterial embolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441''', NULL, + 'Aortic aneurysm and dissection (441)', 'Aortic aneurysm and dissection (441)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.1) Thoracic aneurysm, ruptured\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.1) Thoracic aneurysm, ruptured\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.1''', NULL, + '(441.1) Thoracic aneurysm, ruptured', '(441.1) Thoracic aneurysm, ruptured', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.2) Thoracic aneurysm without mention of rupture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.2) Thoracic aneurysm without mention of rupture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.2''', NULL, + '(441.2) Thoracic aneurysm without mention of rupture', '(441.2) Thoracic aneurysm without mention of rupture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.3) Abdominal aneurysm, ruptured\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.3) Abdominal aneurysm, ruptured\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.3''', NULL, + '(441.3) Abdominal aneurysm, ruptured', '(441.3) Abdominal aneurysm, ruptured', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.4) Abdominal aneurysm without mention of rupture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.4) Abdominal aneurysm without mention of rupture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.4''', NULL, + '(441.4) Abdominal aneurysm without mention of rupture', '(441.4) Abdominal aneurysm without mention of rupture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.5) Aortic aneurysm of unspecified site, ruptured\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.5) Aortic aneurysm of unspecified site, ruptured\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.5''', NULL, + '(441.5) Aortic aneurysm of unspecified site, ruptured', '(441.5) Aortic aneurysm of unspecified site, ruptured', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.6) Thoracoabdominal aneurysm, ruptured\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.6) Thoracoabdominal aneurysm, ruptured\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.6''', NULL, + '(441.6) Thoracoabdominal aneurysm, ruptured', '(441.6) Thoracoabdominal aneurysm, ruptured', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.7) Thoracoabdominal aneurysm, without mention of rupture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.7) Thoracoabdominal aneurysm, without mention of rupture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.7''', NULL, + '(441.7) Thoracoabdominal aneurysm, without mention of rupture', '(441.7) Thoracoabdominal aneurysm, without mention of rupture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.9) Aortic aneurysm of unspecified site without mention of rupture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.9) Aortic aneurysm of unspecified site without mention of rupture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.9''', NULL, + '(441.9) Aortic aneurysm of unspecified site without mention of rupture', '(441.9) Aortic aneurysm of unspecified site without mention of rupture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.0''', NULL, + 'Dissecting aneurysm of aorta (441.0)', 'Dissecting aneurysm of aorta (441.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.00) Dissection of aorta, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.00) Dissection of aorta, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.00''', NULL, + '(441.00) Dissection of aorta, unspecified site', '(441.00) Dissection of aorta, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.01) Dissection of aorta, thoracic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.01) Dissection of aorta, thoracic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.01''', NULL, + '(441.01) Dissection of aorta, thoracic', '(441.01) Dissection of aorta, thoracic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.02) Dissection of aorta, abdominal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.02) Dissection of aorta, abdominal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.02''', NULL, + '(441.02) Dissection of aorta, abdominal', '(441.02) Dissection of aorta, abdominal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.03) Dissection of aorta, thoracoabdominal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.03) Dissection of aorta, thoracoabdominal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.03''', NULL, + '(441.03) Dissection of aorta, thoracoabdominal', '(441.03) Dissection of aorta, thoracoabdominal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444''', NULL, + 'Arterial embolism and thrombosis (444)', 'Arterial embolism and thrombosis (444)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\(444.1) Embolism and thrombosis of thoracic aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\(444.1) Embolism and thrombosis of thoracic aorta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.1''', NULL, + '(444.1) Embolism and thrombosis of thoracic aorta', '(444.1) Embolism and thrombosis of thoracic aorta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\(444.9) Embolism and thrombosis of unspecified artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\(444.9) Embolism and thrombosis of unspecified artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.9''', NULL, + '(444.9) Embolism and thrombosis of unspecified artery', '(444.9) Embolism and thrombosis of unspecified artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of abdominal aorta (444.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of abdominal aorta (444.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.0''', NULL, + 'Embolism and thrombosis of abdominal aorta (444.0)', 'Embolism and thrombosis of abdominal aorta (444.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of abdominal aorta (444.0)\(444.09) Other arterial embolism and thrombosis of abdominal aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of abdominal aorta (444.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of abdominal aorta (444.0)\(444.09) Other arterial embolism and thrombosis of abdominal aorta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.09''', NULL, + '(444.09) Other arterial embolism and thrombosis of abdominal aorta', '(444.09) Other arterial embolism and thrombosis of abdominal aorta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.2''', NULL, + 'Embolism and thrombosis of arteries of the extremities (444.2)', 'Embolism and thrombosis of arteries of the extremities (444.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\(444.21) Arterial embolism and thrombosis of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\(444.21) Arterial embolism and thrombosis of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.21''', NULL, + '(444.21) Arterial embolism and thrombosis of upper extremity', '(444.21) Arterial embolism and thrombosis of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\(444.22) Arterial embolism and thrombosis of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\(444.22) Arterial embolism and thrombosis of lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.22''', NULL, + '(444.22) Arterial embolism and thrombosis of lower extremity', '(444.22) Arterial embolism and thrombosis of lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.8''', NULL, + 'Embolism and thrombosis of other specified artery (444.8)', 'Embolism and thrombosis of other specified artery (444.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\(444.81) Embolism and thrombosis of iliac artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\(444.81) Embolism and thrombosis of iliac artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.81''', NULL, + '(444.81) Embolism and thrombosis of iliac artery', '(444.81) Embolism and thrombosis of iliac artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\(444.89) Embolism and thrombosis of other specified artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\(444.89) Embolism and thrombosis of other specified artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.89''', NULL, + '(444.89) Embolism and thrombosis of other specified artery', '(444.89) Embolism and thrombosis of other specified artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445''', NULL, + 'Atheroembolism (445)', 'Atheroembolism (445)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.0''', NULL, + 'Atheroembolism Of extremities (445.0)', 'Atheroembolism Of extremities (445.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\(445.01) Atheroembolism of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\(445.01) Atheroembolism of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.01''', NULL, + '(445.01) Atheroembolism of upper extremity', '(445.01) Atheroembolism of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\(445.02) Atheroembolism of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\(445.02) Atheroembolism of lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.02''', NULL, + '(445.02) Atheroembolism of lower extremity', '(445.02) Atheroembolism of lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.8''', NULL, + 'Atheroembolism of other sites (445.8)', 'Atheroembolism of other sites (445.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\(445.81) Atheroembolism of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\(445.81) Atheroembolism of kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.81''', NULL, + '(445.81) Atheroembolism of kidney', '(445.81) Atheroembolism of kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\(445.89) Atheroembolism of other site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\(445.89) Atheroembolism of other site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.89''', NULL, + '(445.89) Atheroembolism of other site', '(445.89) Atheroembolism of other site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440''', NULL, + 'Atherosclerosis (440)', 'Atherosclerosis (440)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.0) Atherosclerosis of aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.0) Atherosclerosis of aorta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.0''', NULL, + '(440.0) Atherosclerosis of aorta', '(440.0) Atherosclerosis of aorta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.1) Atherosclerosis of renal artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.1) Atherosclerosis of renal artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.1''', NULL, + '(440.1) Atherosclerosis of renal artery', '(440.1) Atherosclerosis of renal artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.4) Chronic total occlusion of artery of the extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.4) Chronic total occlusion of artery of the extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.4''', NULL, + '(440.4) Chronic total occlusion of artery of the extremities', '(440.4) Chronic total occlusion of artery of the extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.8) Atherosclerosis of other specified arteries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.8) Atherosclerosis of other specified arteries\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.8''', NULL, + '(440.8) Atherosclerosis of other specified arteries', '(440.8) Atherosclerosis of other specified arteries', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.9) Generalized and unspecified atherosclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.9) Generalized and unspecified atherosclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.9''', NULL, + '(440.9) Generalized and unspecified atherosclerosis', '(440.9) Generalized and unspecified atherosclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.2''', NULL, + 'Atherosclerosis of native arteries of the extremities (440.2)', 'Atherosclerosis of native arteries of the extremities (440.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.20) Atherosclerosis of native arteries of the extremities, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.20) Atherosclerosis of native arteries of the extremities, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.20''', NULL, + '(440.20) Atherosclerosis of native arteries of the extremities, unspecified', '(440.20) Atherosclerosis of native arteries of the extremities, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.21) Atherosclerosis of native arteries of the extremities with intermittent claudication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.21) Atherosclerosis of native arteries of the extremities with intermittent claudication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.21''', NULL, + '(440.21) Atherosclerosis of native arteries of the extremities with intermittent claudication', '(440.21) Atherosclerosis of native arteries of the extremities with intermittent claudication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.22) Atherosclerosis of native arteries of the extremities with rest pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.22) Atherosclerosis of native arteries of the extremities with rest pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.22''', NULL, + '(440.22) Atherosclerosis of native arteries of the extremities with rest pain', '(440.22) Atherosclerosis of native arteries of the extremities with rest pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.23) Atherosclerosis of native arteries of the extremities with ulceration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.23) Atherosclerosis of native arteries of the extremities with ulceration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.23''', NULL, + '(440.23) Atherosclerosis of native arteries of the extremities with ulceration', '(440.23) Atherosclerosis of native arteries of the extremities with ulceration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.24) Atherosclerosis of native arteries of the extremities with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.24) Atherosclerosis of native arteries of the extremities with gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.24''', NULL, + '(440.24) Atherosclerosis of native arteries of the extremities with gangrene', '(440.24) Atherosclerosis of native arteries of the extremities with gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.29) Other atherosclerosis of native arteries of the extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.29) Other atherosclerosis of native arteries of the extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.29''', NULL, + '(440.29) Other atherosclerosis of native arteries of the extremities', '(440.29) Other atherosclerosis of native arteries of the extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.3''', NULL, + 'Of bypass graft of the extremities (440.3)', 'Of bypass graft of the extremities (440.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.30) Atherosclerosis of unspecified bypass graft of the extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.30) Atherosclerosis of unspecified bypass graft of the extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.30''', NULL, + '(440.30) Atherosclerosis of unspecified bypass graft of the extremities', '(440.30) Atherosclerosis of unspecified bypass graft of the extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.31) Atherosclerosis of autologous vein bypass graft of the extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.31) Atherosclerosis of autologous vein bypass graft of the extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.31''', NULL, + '(440.31) Atherosclerosis of autologous vein bypass graft of the extremities', '(440.31) Atherosclerosis of autologous vein bypass graft of the extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.32) Atherosclerosis of nonautologous biological bypass graft of the extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.32) Atherosclerosis of nonautologous biological bypass graft of the extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.32''', NULL, + '(440.32) Atherosclerosis of nonautologous biological bypass graft of the extremities', '(440.32) Atherosclerosis of nonautologous biological bypass graft of the extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''448''', NULL, + 'Disease of capillaries (448)', 'Disease of capillaries (448)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.0) Hereditary hemorrhagic telangiectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.0) Hereditary hemorrhagic telangiectasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''448.0''', NULL, + '(448.0) Hereditary hemorrhagic telangiectasia', '(448.0) Hereditary hemorrhagic telangiectasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.1) Nevus, non-neoplastic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.1) Nevus, non-neoplastic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''448.1''', NULL, + '(448.1) Nevus, non-neoplastic', '(448.1) Nevus, non-neoplastic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.9) Other and unspecified capillary diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.9) Other and unspecified capillary diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''448.9''', NULL, + '(448.9) Other and unspecified capillary diseases', '(448.9) Other and unspecified capillary diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442''', NULL, + 'Other aneurysm (442)', 'Other aneurysm (442)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.0) Aneurysm of artery of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.0) Aneurysm of artery of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.0''', NULL, + '(442.0) Aneurysm of artery of upper extremity', '(442.0) Aneurysm of artery of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.1) Aneurysm of renal artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.1) Aneurysm of renal artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.1''', NULL, + '(442.1) Aneurysm of renal artery', '(442.1) Aneurysm of renal artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.2) Aneurysm of iliac artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.2) Aneurysm of iliac artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.2''', NULL, + '(442.2) Aneurysm of iliac artery', '(442.2) Aneurysm of iliac artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.3) Aneurysm of artery of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.3) Aneurysm of artery of lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.3''', NULL, + '(442.3) Aneurysm of artery of lower extremity', '(442.3) Aneurysm of artery of lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.9) Aneurysm of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.9) Aneurysm of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.9''', NULL, + '(442.9) Aneurysm of unspecified site', '(442.9) Aneurysm of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.8''', NULL, + 'Aneurysm of other specified artery (442.8)', 'Aneurysm of other specified artery (442.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.81) Aneurysm of artery of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.81) Aneurysm of artery of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.81''', NULL, + '(442.81) Aneurysm of artery of neck', '(442.81) Aneurysm of artery of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.82) Aneurysm of subclavian artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.82) Aneurysm of subclavian artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.82''', NULL, + '(442.82) Aneurysm of subclavian artery', '(442.82) Aneurysm of subclavian artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.83) Aneurysm of splenic artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.83) Aneurysm of splenic artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.83''', NULL, + '(442.83) Aneurysm of splenic artery', '(442.83) Aneurysm of splenic artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.84) Aneurysm of other visceral artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.84) Aneurysm of other visceral artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.84''', NULL, + '(442.84) Aneurysm of other visceral artery', '(442.84) Aneurysm of other visceral artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.89) Aneurysm of other specified artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.89) Aneurysm of other specified artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.89''', NULL, + '(442.89) Aneurysm of other specified artery', '(442.89) Aneurysm of other specified artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447''', NULL, + 'Other disorders of arteries and arterioles (447)', 'Other disorders of arteries and arterioles (447)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.0) Arteriovenous fistula, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.0) Arteriovenous fistula, acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.0''', NULL, + '(447.0) Arteriovenous fistula, acquired', '(447.0) Arteriovenous fistula, acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.1) Stricture of artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.1) Stricture of artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.1''', NULL, + '(447.1) Stricture of artery', '(447.1) Stricture of artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.2) Rupture of artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.2) Rupture of artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.2''', NULL, + '(447.2) Rupture of artery', '(447.2) Rupture of artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.3) Hyperplasia of renal artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.3) Hyperplasia of renal artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.3''', NULL, + '(447.3) Hyperplasia of renal artery', '(447.3) Hyperplasia of renal artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.4) Celiac artery compression syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.4) Celiac artery compression syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.4''', NULL, + '(447.4) Celiac artery compression syndrome', '(447.4) Celiac artery compression syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.5) Necrosis of artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.5) Necrosis of artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.5''', NULL, + '(447.5) Necrosis of artery', '(447.5) Necrosis of artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.6) Arteritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.6) Arteritis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.6''', NULL, + '(447.6) Arteritis, unspecified', '(447.6) Arteritis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.8) Other specified disorders of arteries and arterioles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.8) Other specified disorders of arteries and arterioles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.8''', NULL, + '(447.8) Other specified disorders of arteries and arterioles', '(447.8) Other specified disorders of arteries and arterioles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.9) Unspecified disorders of arteries and arterioles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.9) Unspecified disorders of arteries and arterioles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.9''', NULL, + '(447.9) Unspecified disorders of arteries and arterioles', '(447.9) Unspecified disorders of arteries and arterioles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.7''', NULL, + 'Aortic ectasia (447.7)', 'Aortic ectasia (447.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.70) Aortic ectasia, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.70) Aortic ectasia, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.70''', NULL, + '(447.70) Aortic ectasia, unspecified site', '(447.70) Aortic ectasia, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.71) Thoracic aortic ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.71) Thoracic aortic ectasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.71''', NULL, + '(447.71) Thoracic aortic ectasia', '(447.71) Thoracic aortic ectasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.72) Abdominal aortic ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.72) Abdominal aortic ectasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.72''', NULL, + '(447.72) Abdominal aortic ectasia', '(447.72) Abdominal aortic ectasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.73) Thoracoabdominal aortic ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.73) Thoracoabdominal aortic ectasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.73''', NULL, + '(447.73) Thoracoabdominal aortic ectasia', '(447.73) Thoracoabdominal aortic ectasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443''', NULL, + 'Other peripheral vascular disease (443)', 'Other peripheral vascular disease (443)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.0) Raynaud''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.0) Raynaud''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.0''', NULL, + '(443.0) Raynaud''s syndrome', '(443.0) Raynaud''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.1) Thromboangiitis obliterans [Buerger''s disease]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.1) Thromboangiitis obliterans [Buerger''s disease]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.1''', NULL, + '(443.1) Thromboangiitis obliterans [Buerger''s disease]', '(443.1) Thromboangiitis obliterans [Buerger''s disease]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.9) Peripheral vascular disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.9) Peripheral vascular disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.9''', NULL, + '(443.9) Peripheral vascular disease, unspecified', '(443.9) Peripheral vascular disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.2''', NULL, + 'Other arterial dissection (443.2)', 'Other arterial dissection (443.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.21) Dissection of carotid artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.21) Dissection of carotid artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.21''', NULL, + '(443.21) Dissection of carotid artery', '(443.21) Dissection of carotid artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.22) Dissection of iliac artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.22) Dissection of iliac artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.22''', NULL, + '(443.22) Dissection of iliac artery', '(443.22) Dissection of iliac artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.23) Dissection of renal artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.23) Dissection of renal artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.23''', NULL, + '(443.23) Dissection of renal artery', '(443.23) Dissection of renal artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.24) Dissection of vertebral artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.24) Dissection of vertebral artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.24''', NULL, + '(443.24) Dissection of vertebral artery', '(443.24) Dissection of vertebral artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.29) Dissection of other artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.29) Dissection of other artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.29''', NULL, + '(443.29) Dissection of other artery', '(443.29) Dissection of other artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.8''', NULL, + 'Other specified peripheral vascular diseases (443.8)', 'Other specified peripheral vascular diseases (443.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.81) Peripheral angiopathy in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.81) Peripheral angiopathy in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.81''', NULL, + '(443.81) Peripheral angiopathy in diseases classified elsewhere', '(443.81) Peripheral angiopathy in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.82) Erythromelalgia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.82) Erythromelalgia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.82''', NULL, + '(443.82) Erythromelalgia', '(443.82) Erythromelalgia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.89) Other specified peripheral vascular diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.89) Other specified peripheral vascular diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.89''', NULL, + '(443.89) Other specified peripheral vascular diseases', '(443.89) Other specified peripheral vascular diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446''', NULL, + 'Polyarteritis nodosa and allied conditions (446)', 'Polyarteritis nodosa and allied conditions (446)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.0) Polyarteritis nodosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.0) Polyarteritis nodosa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.0''', NULL, + '(446.0) Polyarteritis nodosa', '(446.0) Polyarteritis nodosa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.1) Acute febrile mucocutaneous lymph node syndrome [MCLS]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.1) Acute febrile mucocutaneous lymph node syndrome [MCLS]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.1''', NULL, + '(446.1) Acute febrile mucocutaneous lymph node syndrome [MCLS]', '(446.1) Acute febrile mucocutaneous lymph node syndrome [MCLS]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.3) Lethal midline granuloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.3) Lethal midline granuloma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.3''', NULL, + '(446.3) Lethal midline granuloma', '(446.3) Lethal midline granuloma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.4) Wegener''s granulomatosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.4) Wegener''s granulomatosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.4''', NULL, + '(446.4) Wegener''s granulomatosis', '(446.4) Wegener''s granulomatosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.5) Giant cell arteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.5) Giant cell arteritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.5''', NULL, + '(446.5) Giant cell arteritis', '(446.5) Giant cell arteritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.6) Thrombotic microangiopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.6) Thrombotic microangiopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.6''', NULL, + '(446.6) Thrombotic microangiopathy', '(446.6) Thrombotic microangiopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.7) Takayasu''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.7) Takayasu''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.7''', NULL, + '(446.7) Takayasu''s disease', '(446.7) Takayasu''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.2''', NULL, + 'Hypersensitivity angiitis (446.2)', 'Hypersensitivity angiitis (446.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.20) Hypersensitivity angiitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.20) Hypersensitivity angiitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.20''', NULL, + '(446.20) Hypersensitivity angiitis, unspecified', '(446.20) Hypersensitivity angiitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.21) Goodpasture''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.21) Goodpasture''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.21''', NULL, + '(446.21) Goodpasture''s syndrome', '(446.21) Goodpasture''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.29) Other specified hypersensitivity angiitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.29) Other specified hypersensitivity angiitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.29''', NULL, + '(446.29) Other specified hypersensitivity angiitis', '(446.29) Other specified hypersensitivity angiitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''415'' AND ''417.99''', NULL, + 'Diseases of pulmonary circulation (415-417.99)', 'Diseases of pulmonary circulation (415-417.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415''', NULL, + 'Acute pulmonary heart disease (415)', 'Acute pulmonary heart disease (415)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\(415.0) Acute cor pulmonale\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\(415.0) Acute cor pulmonale\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.0''', NULL, + '(415.0) Acute cor pulmonale', '(415.0) Acute cor pulmonale', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.1''', NULL, + 'Pulmonary embolism and infarction (415.1)', 'Pulmonary embolism and infarction (415.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.11) Iatrogenic pulmonary embolism and infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.11) Iatrogenic pulmonary embolism and infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.11''', NULL, + '(415.11) Iatrogenic pulmonary embolism and infarction', '(415.11) Iatrogenic pulmonary embolism and infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.12) Septic pulmonary embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.12) Septic pulmonary embolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.12''', NULL, + '(415.12) Septic pulmonary embolism', '(415.12) Septic pulmonary embolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.13) Saddle embolus of pulmonary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.13) Saddle embolus of pulmonary artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.13''', NULL, + '(415.13) Saddle embolus of pulmonary artery', '(415.13) Saddle embolus of pulmonary artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.19) Other pulmonary embolism and infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.19) Other pulmonary embolism and infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.19''', NULL, + '(415.19) Other pulmonary embolism and infarction', '(415.19) Other pulmonary embolism and infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416''', NULL, + 'Chronic pulmonary heart disease (416)', 'Chronic pulmonary heart disease (416)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.0) Primary pulmonary hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.0) Primary pulmonary hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416.0''', NULL, + '(416.0) Primary pulmonary hypertension', '(416.0) Primary pulmonary hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.1) Kyphoscoliotic heart disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.1) Kyphoscoliotic heart disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416.1''', NULL, + '(416.1) Kyphoscoliotic heart disease', '(416.1) Kyphoscoliotic heart disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.2) Chronic pulmonary embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.2) Chronic pulmonary embolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416.2''', NULL, + '(416.2) Chronic pulmonary embolism', '(416.2) Chronic pulmonary embolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.8) Other chronic pulmonary heart diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.8) Other chronic pulmonary heart diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416.8''', NULL, + '(416.8) Other chronic pulmonary heart diseases', '(416.8) Other chronic pulmonary heart diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.9) Chronic pulmonary heart disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.9) Chronic pulmonary heart disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416.9''', NULL, + '(416.9) Chronic pulmonary heart disease, unspecified', '(416.9) Chronic pulmonary heart disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''417''', NULL, + 'Other diseases of pulmonary circulation (417)', 'Other diseases of pulmonary circulation (417)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.0) Arteriovenous fistula of pulmonary vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.0) Arteriovenous fistula of pulmonary vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''417.0''', NULL, + '(417.0) Arteriovenous fistula of pulmonary vessels', '(417.0) Arteriovenous fistula of pulmonary vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.1) Aneurysm of pulmonary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.1) Aneurysm of pulmonary artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''417.1''', NULL, + '(417.1) Aneurysm of pulmonary artery', '(417.1) Aneurysm of pulmonary artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.8) Other specified diseases of pulmonary circulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.8) Other specified diseases of pulmonary circulation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''417.8''', NULL, + '(417.8) Other specified diseases of pulmonary circulation', '(417.8) Other specified diseases of pulmonary circulation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.9) Unspecified disease of pulmonary circulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.9) Unspecified disease of pulmonary circulation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''417.9''', NULL, + '(417.9) Unspecified disease of pulmonary circulation', '(417.9) Unspecified disease of pulmonary circulation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''451'' AND ''459.99''', NULL, + 'Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)', 'Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\(452) Portal vein thrombosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\(452) Portal vein thrombosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''452''', NULL, + '(452) Portal vein thrombosis', '(452) Portal vein thrombosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455''', NULL, + 'Hemorrhoids (455)', 'Hemorrhoids (455)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.0) Internal hemorrhoids without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.0) Internal hemorrhoids without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.0''', NULL, + '(455.0) Internal hemorrhoids without mention of complication', '(455.0) Internal hemorrhoids without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.1) Internal thrombosed hemorrhoids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.1) Internal thrombosed hemorrhoids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.1''', NULL, + '(455.1) Internal thrombosed hemorrhoids', '(455.1) Internal thrombosed hemorrhoids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.2) Internal hemorrhoids with other complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.2) Internal hemorrhoids with other complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.2''', NULL, + '(455.2) Internal hemorrhoids with other complication', '(455.2) Internal hemorrhoids with other complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.3) External hemorrhoids without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.3) External hemorrhoids without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.3''', NULL, + '(455.3) External hemorrhoids without mention of complication', '(455.3) External hemorrhoids without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.4) External thrombosed hemorrhoids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.4) External thrombosed hemorrhoids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.4''', NULL, + '(455.4) External thrombosed hemorrhoids', '(455.4) External thrombosed hemorrhoids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.5) External hemorrhoids with other complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.5) External hemorrhoids with other complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.5''', NULL, + '(455.5) External hemorrhoids with other complication', '(455.5) External hemorrhoids with other complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.6) Unspecified hemorrhoids without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.6) Unspecified hemorrhoids without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.6''', NULL, + '(455.6) Unspecified hemorrhoids without mention of complication', '(455.6) Unspecified hemorrhoids without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.7) Unspecified thrombosed hemorrhoids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.7) Unspecified thrombosed hemorrhoids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.7''', NULL, + '(455.7) Unspecified thrombosed hemorrhoids', '(455.7) Unspecified thrombosed hemorrhoids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.8) Unspecified hemorrhoids with other complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.8) Unspecified hemorrhoids with other complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.8''', NULL, + '(455.8) Unspecified hemorrhoids with other complication', '(455.8) Unspecified hemorrhoids with other complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.9) Residual hemorrhoidal skin tags\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.9) Residual hemorrhoidal skin tags\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.9''', NULL, + '(455.9) Residual hemorrhoidal skin tags', '(455.9) Residual hemorrhoidal skin tags', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458''', NULL, + 'Hypotension (458)', 'Hypotension (458)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.0) Orthostatic hypotension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.0) Orthostatic hypotension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.0''', NULL, + '(458.0) Orthostatic hypotension', '(458.0) Orthostatic hypotension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.1) Chronic hypotension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.1) Chronic hypotension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.1''', NULL, + '(458.1) Chronic hypotension', '(458.1) Chronic hypotension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.8) Other specified hypotension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.8) Other specified hypotension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.8''', NULL, + '(458.8) Other specified hypotension', '(458.8) Other specified hypotension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.9) Hypotension, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.9) Hypotension, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.9''', NULL, + '(458.9) Hypotension, unspecified', '(458.9) Hypotension, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.2''', NULL, + 'Iatrogenic hypotension (458.2)', 'Iatrogenic hypotension (458.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\(458.21) Hypotension of hemodialysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\(458.21) Hypotension of hemodialysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.21''', NULL, + '(458.21) Hypotension of hemodialysis', '(458.21) Hypotension of hemodialysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\(458.29) Other iatrogenic hypotension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\(458.29) Other iatrogenic hypotension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.29''', NULL, + '(458.29) Other iatrogenic hypotension', '(458.29) Other iatrogenic hypotension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457''', NULL, + 'Noninfectious disorders of lymphatic channels (457)', 'Noninfectious disorders of lymphatic channels (457)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.0) Postmastectomy lymphedema syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.0) Postmastectomy lymphedema syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457.0''', NULL, + '(457.0) Postmastectomy lymphedema syndrome', '(457.0) Postmastectomy lymphedema syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.1) Other lymphedema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.1) Other lymphedema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457.1''', NULL, + '(457.1) Other lymphedema', '(457.1) Other lymphedema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.2) Lymphangitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.2) Lymphangitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457.2''', NULL, + '(457.2) Lymphangitis', '(457.2) Lymphangitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.8) Other noninfectious disorders of lymphatic channels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.8) Other noninfectious disorders of lymphatic channels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457.8''', NULL, + '(457.8) Other noninfectious disorders of lymphatic channels', '(457.8) Other noninfectious disorders of lymphatic channels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.9) Unspecified noninfectious disorder of lymphatic channels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.9) Unspecified noninfectious disorder of lymphatic channels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457.9''', NULL, + '(457.9) Unspecified noninfectious disorder of lymphatic channels', '(457.9) Unspecified noninfectious disorder of lymphatic channels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459''', NULL, + 'Other disorders of circulatory system (459)', 'Other disorders of circulatory system (459)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.0) Hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.0) Hemorrhage, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.0''', NULL, + '(459.0) Hemorrhage, unspecified', '(459.0) Hemorrhage, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.2) Compression of vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.2) Compression of vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.2''', NULL, + '(459.2) Compression of vein', '(459.2) Compression of vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.9) Unspecified circulatory system disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.9) Unspecified circulatory system disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.9''', NULL, + '(459.9) Unspecified circulatory system disorder', '(459.9) Unspecified circulatory system disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''idiopathic) (459.3''', NULL, + 'Chronic venous hypertension (idiopathic) (459.3)', 'Chronic venous hypertension (idiopathic) (459.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.30) Chronic venous hypertension without complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.30) Chronic venous hypertension without complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.30''', NULL, + '(459.30) Chronic venous hypertension without complications', '(459.30) Chronic venous hypertension without complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.31) Chronic venous hypertension with ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.31) Chronic venous hypertension with ulcer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.31''', NULL, + '(459.31) Chronic venous hypertension with ulcer', '(459.31) Chronic venous hypertension with ulcer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.32) Chronic venous hypertension with inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.32) Chronic venous hypertension with inflammation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.32''', NULL, + '(459.32) Chronic venous hypertension with inflammation', '(459.32) Chronic venous hypertension with inflammation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.33) Chronic venous hypertension with ulcer and inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.33) Chronic venous hypertension with ulcer and inflammation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.33''', NULL, + '(459.33) Chronic venous hypertension with ulcer and inflammation', '(459.33) Chronic venous hypertension with ulcer and inflammation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.39) Chronic venous hypertension with other complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.39) Chronic venous hypertension with other complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.39''', NULL, + '(459.39) Chronic venous hypertension with other complication', '(459.39) Chronic venous hypertension with other complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.8''', NULL, + 'Other specified disorders of circulatory system (459.8)', 'Other specified disorders of circulatory system (459.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\(459.81) Venous (peripheral) insufficiency, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\(459.81) Venous (peripheral) insufficiency, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.81) Venous (peripheral''', NULL, + '(459.81) Venous (peripheral) insufficiency, unspecified', '(459.81) Venous (peripheral) insufficiency, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\(459.89) Other specified disorders of circulatory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\(459.89) Other specified disorders of circulatory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.89''', NULL, + '(459.89) Other specified disorders of circulatory system', '(459.89) Other specified disorders of circulatory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.1''', NULL, + 'Postphlebitic syndrome (459.1)', 'Postphlebitic syndrome (459.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.10) Postphlebetic syndrome without complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.10) Postphlebetic syndrome without complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.10''', NULL, + '(459.10) Postphlebetic syndrome without complications', '(459.10) Postphlebetic syndrome without complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.11) Postphlebetic syndrome with ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.11) Postphlebetic syndrome with ulcer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.11''', NULL, + '(459.11) Postphlebetic syndrome with ulcer', '(459.11) Postphlebetic syndrome with ulcer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.12) Postphlebetic syndrome with inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.12) Postphlebetic syndrome with inflammation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.12''', NULL, + '(459.12) Postphlebetic syndrome with inflammation', '(459.12) Postphlebetic syndrome with inflammation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.13) Postphlebetic syndrome with ulcer and inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.13) Postphlebetic syndrome with ulcer and inflammation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.13''', NULL, + '(459.13) Postphlebetic syndrome with ulcer and inflammation', '(459.13) Postphlebetic syndrome with ulcer and inflammation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.19) Postphlebetic syndrome with other complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.19) Postphlebetic syndrome with other complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.19''', NULL, + '(459.19) Postphlebetic syndrome with other complication', '(459.19) Postphlebetic syndrome with other complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453''', NULL, + 'Other venous embolism and thrombosis (453)', 'Other venous embolism and thrombosis (453)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.0) Budd-chiari syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.0) Budd-chiari syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.0''', NULL, + '(453.0) Budd-chiari syndrome', '(453.0) Budd-chiari syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.1) Thrombophlebitis migrans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.1) Thrombophlebitis migrans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.1''', NULL, + '(453.1) Thrombophlebitis migrans', '(453.1) Thrombophlebitis migrans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.2) Other venous embolism and thrombosis of inferior vena cava\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.2) Other venous embolism and thrombosis of inferior vena cava\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.2''', NULL, + '(453.2) Other venous embolism and thrombosis of inferior vena cava', '(453.2) Other venous embolism and thrombosis of inferior vena cava', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.3) Other venous embolism and thrombosis of renal vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.3) Other venous embolism and thrombosis of renal vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.3''', NULL, + '(453.3) Other venous embolism and thrombosis of renal vein', '(453.3) Other venous embolism and thrombosis of renal vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.6) Venous embolism and thrombosis of superficial vessels of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.6) Venous embolism and thrombosis of superficial vessels of lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.6''', NULL, + '(453.6) Venous embolism and thrombosis of superficial vessels of lower extremity', '(453.6) Venous embolism and thrombosis of superficial vessels of lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.9) Other venous embolism and thrombosis of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.9) Other venous embolism and thrombosis of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.9''', NULL, + '(453.9) Other venous embolism and thrombosis of unspecified site', '(453.9) Other venous embolism and thrombosis of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.4''', NULL, + 'Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)', 'Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.40) Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.40) Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.40''', NULL, + '(453.40) Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity', '(453.40) Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.41) Acute venous embolism and thrombosis of deep vessels of proximal lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.41) Acute venous embolism and thrombosis of deep vessels of proximal lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.41''', NULL, + '(453.41) Acute venous embolism and thrombosis of deep vessels of proximal lower extremity', '(453.41) Acute venous embolism and thrombosis of deep vessels of proximal lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.42) Acute venous embolism and thrombosis of deep vessels of distal lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.42) Acute venous embolism and thrombosis of deep vessels of distal lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.42''', NULL, + '(453.42) Acute venous embolism and thrombosis of deep vessels of distal lower extremity', '(453.42) Acute venous embolism and thrombosis of deep vessels of distal lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.8''', NULL, + 'Acute venous embolism and thrombosis of other specified veins (453.8)', 'Acute venous embolism and thrombosis of other specified veins (453.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.81) Acute venous embolism and thrombosis of superficial veins of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.81) Acute venous embolism and thrombosis of superficial veins of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.81''', NULL, + '(453.81) Acute venous embolism and thrombosis of superficial veins of upper extremity', '(453.81) Acute venous embolism and thrombosis of superficial veins of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.82) Acute venous embolism and thrombosis of deep veins of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.82) Acute venous embolism and thrombosis of deep veins of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.82''', NULL, + '(453.82) Acute venous embolism and thrombosis of deep veins of upper extremity', '(453.82) Acute venous embolism and thrombosis of deep veins of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.83) Acute venous embolism and thrombosis of upper extremity, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.83) Acute venous embolism and thrombosis of upper extremity, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.83''', NULL, + '(453.83) Acute venous embolism and thrombosis of upper extremity, unspecified', '(453.83) Acute venous embolism and thrombosis of upper extremity, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.84) Acute venous embolism and thrombosis of axillary veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.84) Acute venous embolism and thrombosis of axillary veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.84''', NULL, + '(453.84) Acute venous embolism and thrombosis of axillary veins', '(453.84) Acute venous embolism and thrombosis of axillary veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.85) Acute venous embolism and thrombosis of subclavian veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.85) Acute venous embolism and thrombosis of subclavian veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.85''', NULL, + '(453.85) Acute venous embolism and thrombosis of subclavian veins', '(453.85) Acute venous embolism and thrombosis of subclavian veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.86) Acute venous embolism and thrombosis of internal jugular veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.86) Acute venous embolism and thrombosis of internal jugular veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.86''', NULL, + '(453.86) Acute venous embolism and thrombosis of internal jugular veins', '(453.86) Acute venous embolism and thrombosis of internal jugular veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.87) Acute venous embolism and thrombosis of other thoracic veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.87) Acute venous embolism and thrombosis of other thoracic veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.87''', NULL, + '(453.87) Acute venous embolism and thrombosis of other thoracic veins', '(453.87) Acute venous embolism and thrombosis of other thoracic veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.89) Acute venous embolism and thrombosis of other specified veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.89) Acute venous embolism and thrombosis of other specified veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.89''', NULL, + '(453.89) Acute venous embolism and thrombosis of other specified veins', '(453.89) Acute venous embolism and thrombosis of other specified veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.5''', NULL, + 'Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)', 'Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.50) Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.50) Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.50''', NULL, + '(453.50) Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity', '(453.50) Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.51) Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.51) Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.51''', NULL, + '(453.51) Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity', '(453.51) Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.52) Chronic venous embolism and thrombosis of deep vessels of distal lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.52) Chronic venous embolism and thrombosis of deep vessels of distal lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.52''', NULL, + '(453.52) Chronic venous embolism and thrombosis of deep vessels of distal lower extremity', '(453.52) Chronic venous embolism and thrombosis of deep vessels of distal lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.7''', NULL, + 'Chronic venous embolism and thrombosis of other specified vessels (453.7)', 'Chronic venous embolism and thrombosis of other specified vessels (453.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.71) Chronic venous embolism and thrombosis of superficial veins of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.71) Chronic venous embolism and thrombosis of superficial veins of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.71''', NULL, + '(453.71) Chronic venous embolism and thrombosis of superficial veins of upper extremity', '(453.71) Chronic venous embolism and thrombosis of superficial veins of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.72) Chronic venous embolism and thrombosis of deep veins of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.72) Chronic venous embolism and thrombosis of deep veins of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.72''', NULL, + '(453.72) Chronic venous embolism and thrombosis of deep veins of upper extremity', '(453.72) Chronic venous embolism and thrombosis of deep veins of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.73) Chronic venous embolism and thrombosis of upper extremity, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.73) Chronic venous embolism and thrombosis of upper extremity, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.73''', NULL, + '(453.73) Chronic venous embolism and thrombosis of upper extremity, unspecified', '(453.73) Chronic venous embolism and thrombosis of upper extremity, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.74) Chronic venous embolism and thrombosis of axillary veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.74) Chronic venous embolism and thrombosis of axillary veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.74''', NULL, + '(453.74) Chronic venous embolism and thrombosis of axillary veins', '(453.74) Chronic venous embolism and thrombosis of axillary veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.75) Chronic venous embolism and thrombosis of subclavian veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.75) Chronic venous embolism and thrombosis of subclavian veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.75''', NULL, + '(453.75) Chronic venous embolism and thrombosis of subclavian veins', '(453.75) Chronic venous embolism and thrombosis of subclavian veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.76) Chronic venous embolism and thrombosis of internal jugular veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.76) Chronic venous embolism and thrombosis of internal jugular veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.76''', NULL, + '(453.76) Chronic venous embolism and thrombosis of internal jugular veins', '(453.76) Chronic venous embolism and thrombosis of internal jugular veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.77) Chronic venous embolism and thrombosis of other thoracic veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.77) Chronic venous embolism and thrombosis of other thoracic veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.77''', NULL, + '(453.77) Chronic venous embolism and thrombosis of other thoracic veins', '(453.77) Chronic venous embolism and thrombosis of other thoracic veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.79) Chronic venous embolism and thrombosis of other specified veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.79) Chronic venous embolism and thrombosis of other specified veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.79''', NULL, + '(453.79) Chronic venous embolism and thrombosis of other specified veins', '(453.79) Chronic venous embolism and thrombosis of other specified veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451''', NULL, + 'Phlebitis and thrombophlebitis (451)', 'Phlebitis and thrombophlebitis (451)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.0) Phlebitis and thrombophlebitis of superficial vessels of lower extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.0) Phlebitis and thrombophlebitis of superficial vessels of lower extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.0''', NULL, + '(451.0) Phlebitis and thrombophlebitis of superficial vessels of lower extremities', '(451.0) Phlebitis and thrombophlebitis of superficial vessels of lower extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.2) Phlebitis and thrombophlebitis of lower extremities, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.2) Phlebitis and thrombophlebitis of lower extremities, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.2''', NULL, + '(451.2) Phlebitis and thrombophlebitis of lower extremities, unspecified', '(451.2) Phlebitis and thrombophlebitis of lower extremities, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.9) Phlebitis and thrombophlebitis of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.9) Phlebitis and thrombophlebitis of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.9''', NULL, + '(451.9) Phlebitis and thrombophlebitis of unspecified site', '(451.9) Phlebitis and thrombophlebitis of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.1''', NULL, + 'Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)', 'Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\(451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\(451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial''', NULL, + '(451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)', '(451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\(451.19) Phlebitis and thrombophlebitis of deep veins of lower extremities, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\(451.19) Phlebitis and thrombophlebitis of deep veins of lower extremities, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.19''', NULL, + '(451.19) Phlebitis and thrombophlebitis of deep veins of lower extremities, other', '(451.19) Phlebitis and thrombophlebitis of deep veins of lower extremities, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.8''', NULL, + 'Phlebitis and thrombophlebitis of other sites (451.8)', 'Phlebitis and thrombophlebitis of other sites (451.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.81) Phlebitis and thrombophlebitis of iliac vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.81) Phlebitis and thrombophlebitis of iliac vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.81''', NULL, + '(451.81) Phlebitis and thrombophlebitis of iliac vein', '(451.81) Phlebitis and thrombophlebitis of iliac vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.82) Phlebitis and thrombophlebitis of superficial veins of upper extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.82) Phlebitis and thrombophlebitis of superficial veins of upper extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.82''', NULL, + '(451.82) Phlebitis and thrombophlebitis of superficial veins of upper extremities', '(451.82) Phlebitis and thrombophlebitis of superficial veins of upper extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.83) Phlebitis and thrombophlebitis of deep veins of upper extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.83) Phlebitis and thrombophlebitis of deep veins of upper extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.83''', NULL, + '(451.83) Phlebitis and thrombophlebitis of deep veins of upper extremities', '(451.83) Phlebitis and thrombophlebitis of deep veins of upper extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.84) Phlebitis and thrombophlebitis of upper extremities, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.84) Phlebitis and thrombophlebitis of upper extremities, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.84''', NULL, + '(451.84) Phlebitis and thrombophlebitis of upper extremities, unspecified', '(451.84) Phlebitis and thrombophlebitis of upper extremities, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.89) Phlebitis and thrombophlebitis of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.89) Phlebitis and thrombophlebitis of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.89''', NULL, + '(451.89) Phlebitis and thrombophlebitis of other sites', '(451.89) Phlebitis and thrombophlebitis of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454''', NULL, + 'Varicose veins of lower extremities (454)', 'Varicose veins of lower extremities (454)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.0) Varicose veins of lower extremities with ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.0) Varicose veins of lower extremities with ulcer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454.0''', NULL, + '(454.0) Varicose veins of lower extremities with ulcer', '(454.0) Varicose veins of lower extremities with ulcer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.1) Varicose veins of lower extremities with inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.1) Varicose veins of lower extremities with inflammation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454.1''', NULL, + '(454.1) Varicose veins of lower extremities with inflammation', '(454.1) Varicose veins of lower extremities with inflammation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.2) Varicose veins of lower extremities with ulcer and inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.2) Varicose veins of lower extremities with ulcer and inflammation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454.2''', NULL, + '(454.2) Varicose veins of lower extremities with ulcer and inflammation', '(454.2) Varicose veins of lower extremities with ulcer and inflammation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.8) Varicose veins of lower extremities with other complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.8) Varicose veins of lower extremities with other complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454.8''', NULL, + '(454.8) Varicose veins of lower extremities with other complications', '(454.8) Varicose veins of lower extremities with other complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.9) Asymptomatic varicose veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.9) Asymptomatic varicose veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454.9''', NULL, + '(454.9) Asymptomatic varicose veins', '(454.9) Asymptomatic varicose veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456''', NULL, + 'Varicose veins of other sites (456)', 'Varicose veins of other sites (456)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.0) Esophageal varices with bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.0) Esophageal varices with bleeding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.0''', NULL, + '(456.0) Esophageal varices with bleeding', '(456.0) Esophageal varices with bleeding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.1) Esophageal varices without mention of bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.1) Esophageal varices without mention of bleeding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.1''', NULL, + '(456.1) Esophageal varices without mention of bleeding', '(456.1) Esophageal varices without mention of bleeding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.3) Sublingual varices\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.3) Sublingual varices\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.3''', NULL, + '(456.3) Sublingual varices', '(456.3) Sublingual varices', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.4) Scrotal varices\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.4) Scrotal varices\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.4''', NULL, + '(456.4) Scrotal varices', '(456.4) Scrotal varices', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.5) Pelvic varices\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.5) Pelvic varices\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.5''', NULL, + '(456.5) Pelvic varices', '(456.5) Pelvic varices', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.6) Vulval varices\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.6) Vulval varices\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.6''', NULL, + '(456.6) Vulval varices', '(456.6) Vulval varices', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.8) Varices of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.8) Varices of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.8''', NULL, + '(456.8) Varices of other sites', '(456.8) Varices of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.2''', NULL, + 'Esophageal varices in diseases classified elsewhere (456.2)', 'Esophageal varices in diseases classified elsewhere (456.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\(456.20) Esophageal varices in diseases classified elsewhere, with bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\(456.20) Esophageal varices in diseases classified elsewhere, with bleeding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.20''', NULL, + '(456.20) Esophageal varices in diseases classified elsewhere, with bleeding', '(456.20) Esophageal varices in diseases classified elsewhere, with bleeding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\(456.21) Esophageal varices in diseases classified elsewhere, without mention of bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\(456.21) Esophageal varices in diseases classified elsewhere, without mention of bleeding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.21''', NULL, + '(456.21) Esophageal varices in diseases classified elsewhere, without mention of bleeding', '(456.21) Esophageal varices in diseases classified elsewhere, without mention of bleeding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''401'' AND ''405.99''', NULL, + 'Hypertensive disease (401-405.99)', 'Hypertensive disease (401-405.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''401''', NULL, + 'Essential hypertension (401)', 'Essential hypertension (401)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.0) Malignant essential hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.0) Malignant essential hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''401.0''', NULL, + '(401.0) Malignant essential hypertension', '(401.0) Malignant essential hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.1) Benign essential hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.1) Benign essential hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''401.1''', NULL, + '(401.1) Benign essential hypertension', '(401.1) Benign essential hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.9) Unspecified essential hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.9) Unspecified essential hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''401.9''', NULL, + '(401.9) Unspecified essential hypertension', '(401.9) Unspecified essential hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403''', NULL, + 'Hypertensive chronic kidney disease (403)', 'Hypertensive chronic kidney disease (403)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.0''', NULL, + 'Hypertensive chronic kidney disease, malignant (403.0)', 'Hypertensive chronic kidney disease, malignant (403.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\(403.00) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\(403.00) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.00''', NULL, + '(403.00) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified', '(403.00) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\(403.01) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\(403.01) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.01''', NULL, + '(403.01) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease', '(403.01) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.1''', NULL, + 'Hypertensive renal disease, benign (403.1)', 'Hypertensive renal disease, benign (403.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\(403.10) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\(403.10) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.10''', NULL, + '(403.10) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified', '(403.10) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\(403.11) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\(403.11) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.11''', NULL, + '(403.11) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease', '(403.11) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.9''', NULL, + 'Hypertensive renal disease, unspecified (403.9)', 'Hypertensive renal disease, unspecified (403.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\(403.90) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\(403.90) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.90''', NULL, + '(403.90) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified', '(403.90) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\(403.91) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\(403.91) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.91''', NULL, + '(403.91) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease', '(403.91) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404''', NULL, + 'Hypertensive heart and chronic kidney disease (404)', 'Hypertensive heart and chronic kidney disease (404)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.0''', NULL, + 'Hypertensive heart and chronic kidney disease, malignant (404.0)', 'Hypertensive heart and chronic kidney disease, malignant (404.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.00) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.00) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.00''', NULL, + '(404.00) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.00) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.01) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.01) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.01''', NULL, + '(404.01) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.01) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.02) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.02) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.02''', NULL, + '(404.02) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease', '(404.02) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.03) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.03) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.03''', NULL, + '(404.03) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease', '(404.03) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.1''', NULL, + 'Hypertensive heart and renal disease, benign (404.1)', 'Hypertensive heart and renal disease, benign (404.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.10) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.10) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.10''', NULL, + '(404.10) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.10) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.11) Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.11) Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.11''', NULL, + '(404.11) Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.11) Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.12) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.12) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.12''', NULL, + '(404.12) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease', '(404.12) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.13) Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.13) Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.13''', NULL, + '(404.13) Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease', '(404.13) Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.9''', NULL, + 'Hypertensive heart and renal disease, unspecified (404.9)', 'Hypertensive heart and renal disease, unspecified (404.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.90) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.90) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.90''', NULL, + '(404.90) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.90) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.91) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.91) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.91''', NULL, + '(404.91) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.91) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.92) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.92) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.92''', NULL, + '(404.92) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease', '(404.92) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.93) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.93) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.93''', NULL, + '(404.93) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease', '(404.93) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402''', NULL, + 'Hypertensive heart disease (402)', 'Hypertensive heart disease (402)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.1''', NULL, + 'Benign hypertensive heart disease (402.1)', 'Benign hypertensive heart disease (402.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\(402.10) Benign hypertensive heart disease without heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\(402.10) Benign hypertensive heart disease without heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.10''', NULL, + '(402.10) Benign hypertensive heart disease without heart failure', '(402.10) Benign hypertensive heart disease without heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\(402.11) Benign hypertensive heart disease with heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\(402.11) Benign hypertensive heart disease with heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.11''', NULL, + '(402.11) Benign hypertensive heart disease with heart failure', '(402.11) Benign hypertensive heart disease with heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.0''', NULL, + 'Malignant hypertensive heart disease (402.0)', 'Malignant hypertensive heart disease (402.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\(402.00) Malignant hypertensive heart disease without heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\(402.00) Malignant hypertensive heart disease without heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.00''', NULL, + '(402.00) Malignant hypertensive heart disease without heart failure', '(402.00) Malignant hypertensive heart disease without heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\(402.01) Malignant hypertensive heart disease with heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\(402.01) Malignant hypertensive heart disease with heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.01''', NULL, + '(402.01) Malignant hypertensive heart disease with heart failure', '(402.01) Malignant hypertensive heart disease with heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.9''', NULL, + 'Unspecified hypertensive heart disease (402.9)', 'Unspecified hypertensive heart disease (402.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\(402.90) Unspecified hypertensive heart disease without heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\(402.90) Unspecified hypertensive heart disease without heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.90''', NULL, + '(402.90) Unspecified hypertensive heart disease without heart failure', '(402.90) Unspecified hypertensive heart disease without heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\(402.91) Unspecified hypertensive heart disease with heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\(402.91) Unspecified hypertensive heart disease with heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.91''', NULL, + '(402.91) Unspecified hypertensive heart disease with heart failure', '(402.91) Unspecified hypertensive heart disease with heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405''', NULL, + 'Secondary hypertension (405)', 'Secondary hypertension (405)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.1''', NULL, + 'Benign secondary hypertension (405.1)', 'Benign secondary hypertension (405.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\(405.11) Benign renovascular hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\(405.11) Benign renovascular hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.11''', NULL, + '(405.11) Benign renovascular hypertension', '(405.11) Benign renovascular hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\(405.19) Other benign secondary hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\(405.19) Other benign secondary hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.19''', NULL, + '(405.19) Other benign secondary hypertension', '(405.19) Other benign secondary hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.0''', NULL, + 'Malignant secondary hypertension (405.0)', 'Malignant secondary hypertension (405.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\(405.01) Malignant renovascular hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\(405.01) Malignant renovascular hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.01''', NULL, + '(405.01) Malignant renovascular hypertension', '(405.01) Malignant renovascular hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\(405.09) Other malignant secondary hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\(405.09) Other malignant secondary hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.09''', NULL, + '(405.09) Other malignant secondary hypertension', '(405.09) Other malignant secondary hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.9''', NULL, + 'Unspecified secondary hypertension (405.9)', 'Unspecified secondary hypertension (405.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\(405.91) Unspecified renovascular hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\(405.91) Unspecified renovascular hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.91''', NULL, + '(405.91) Unspecified renovascular hypertension', '(405.91) Unspecified renovascular hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\(405.99) Other unspecified secondary hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\(405.99) Other unspecified secondary hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.99''', NULL, + '(405.99) Other unspecified secondary hypertension', '(405.99) Other unspecified secondary hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''410'' AND ''414.99''', NULL, + 'Ischemic heart disease (410-414.99)', 'Ischemic heart disease (410-414.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\(412) Old myocardial infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\(412) Old myocardial infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''412''', NULL, + '(412) Old myocardial infarction', '(412) Old myocardial infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410''', NULL, + 'Acute myocardial infarction (410)', 'Acute myocardial infarction (410)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.0''', NULL, + 'Acute myocardial infarction, of anterolateral wall (410.0)', 'Acute myocardial infarction, of anterolateral wall (410.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.00) Acute myocardial infarction of anterolateral wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.00) Acute myocardial infarction of anterolateral wall, episode of care unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.00''', NULL, + '(410.00) Acute myocardial infarction of anterolateral wall, episode of care unspecified', '(410.00) Acute myocardial infarction of anterolateral wall, episode of care unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.01) Acute myocardial infarction of anterolateral wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.01) Acute myocardial infarction of anterolateral wall, initial episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.01''', NULL, + '(410.01) Acute myocardial infarction of anterolateral wall, initial episode of care', '(410.01) Acute myocardial infarction of anterolateral wall, initial episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.02) Acute myocardial infarction of anterolateral wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.02) Acute myocardial infarction of anterolateral wall, subsequent episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.02''', NULL, + '(410.02) Acute myocardial infarction of anterolateral wall, subsequent episode of care', '(410.02) Acute myocardial infarction of anterolateral wall, subsequent episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.2''', NULL, + 'Acute myocardial infarction, of inferolateral wall (410.2)', 'Acute myocardial infarction, of inferolateral wall (410.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.20) Acute myocardial infarction of inferolateral wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.20) Acute myocardial infarction of inferolateral wall, episode of care unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.20''', NULL, + '(410.20) Acute myocardial infarction of inferolateral wall, episode of care unspecified', '(410.20) Acute myocardial infarction of inferolateral wall, episode of care unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.21) Acute myocardial infarction of inferolateral wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.21) Acute myocardial infarction of inferolateral wall, initial episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.21''', NULL, + '(410.21) Acute myocardial infarction of inferolateral wall, initial episode of care', '(410.21) Acute myocardial infarction of inferolateral wall, initial episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.22) Acute myocardial infarction of inferolateral wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.22) Acute myocardial infarction of inferolateral wall, subsequent episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.22''', NULL, + '(410.22) Acute myocardial infarction of inferolateral wall, subsequent episode of care', '(410.22) Acute myocardial infarction of inferolateral wall, subsequent episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.3''', NULL, + 'Acute myocardial infarction, of inferoposterior wall (410.3)', 'Acute myocardial infarction, of inferoposterior wall (410.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.30) Acute myocardial infarction of inferoposterior wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.30) Acute myocardial infarction of inferoposterior wall, episode of care unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.30''', NULL, + '(410.30) Acute myocardial infarction of inferoposterior wall, episode of care unspecified', '(410.30) Acute myocardial infarction of inferoposterior wall, episode of care unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.31) Acute myocardial infarction of inferoposterior wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.31) Acute myocardial infarction of inferoposterior wall, initial episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.31''', NULL, + '(410.31) Acute myocardial infarction of inferoposterior wall, initial episode of care', '(410.31) Acute myocardial infarction of inferoposterior wall, initial episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.32) Acute myocardial infarction of inferoposterior wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.32) Acute myocardial infarction of inferoposterior wall, subsequent episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.32''', NULL, + '(410.32) Acute myocardial infarction of inferoposterior wall, subsequent episode of care', '(410.32) Acute myocardial infarction of inferoposterior wall, subsequent episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.1''', NULL, + 'Acute myocardial infarction, of other anterior wall (410.1)', 'Acute myocardial infarction, of other anterior wall (410.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.10) Acute myocardial infarction of other anterior wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.10) Acute myocardial infarction of other anterior wall, episode of care unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.10''', NULL, + '(410.10) Acute myocardial infarction of other anterior wall, episode of care unspecified', '(410.10) Acute myocardial infarction of other anterior wall, episode of care unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.11) Acute myocardial infarction of other anterior wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.11) Acute myocardial infarction of other anterior wall, initial episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.11''', NULL, + '(410.11) Acute myocardial infarction of other anterior wall, initial episode of care', '(410.11) Acute myocardial infarction of other anterior wall, initial episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.12) Acute myocardial infarction of other anterior wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.12) Acute myocardial infarction of other anterior wall, subsequent episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.12''', NULL, + '(410.12) Acute myocardial infarction of other anterior wall, subsequent episode of care', '(410.12) Acute myocardial infarction of other anterior wall, subsequent episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.4''', NULL, + 'Acute myocardial infarction, of other inferior wall (410.4)', 'Acute myocardial infarction, of other inferior wall (410.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.40) Acute myocardial infarction of other inferior wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.40) Acute myocardial infarction of other inferior wall, episode of care unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.40''', NULL, + '(410.40) Acute myocardial infarction of other inferior wall, episode of care unspecified', '(410.40) Acute myocardial infarction of other inferior wall, episode of care unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.41) Acute myocardial infarction of other inferior wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.41) Acute myocardial infarction of other inferior wall, initial episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.41''', NULL, + '(410.41) Acute myocardial infarction of other inferior wall, initial episode of care', '(410.41) Acute myocardial infarction of other inferior wall, initial episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.42) Acute myocardial infarction of other inferior wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.42) Acute myocardial infarction of other inferior wall, subsequent episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.42''', NULL, + '(410.42) Acute myocardial infarction of other inferior wall, subsequent episode of care', '(410.42) Acute myocardial infarction of other inferior wall, subsequent episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.5''', NULL, + 'Acute myocardial infarction, of other lateral wall (410.5)', 'Acute myocardial infarction, of other lateral wall (410.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.50) Acute myocardial infarction of other lateral wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.50) Acute myocardial infarction of other lateral wall, episode of care unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.50''', NULL, + '(410.50) Acute myocardial infarction of other lateral wall, episode of care unspecified', '(410.50) Acute myocardial infarction of other lateral wall, episode of care unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.51) Acute myocardial infarction of other lateral wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.51) Acute myocardial infarction of other lateral wall, initial episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.51''', NULL, + '(410.51) Acute myocardial infarction of other lateral wall, initial episode of care', '(410.51) Acute myocardial infarction of other lateral wall, initial episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.52) Acute myocardial infarction of other lateral wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.52) Acute myocardial infarction of other lateral wall, subsequent episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.52''', NULL, + '(410.52) Acute myocardial infarction of other lateral wall, subsequent episode of care', '(410.52) Acute myocardial infarction of other lateral wall, subsequent episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.8''', NULL, + 'Acute myocardial infarction, of other specified sites (410.8)', 'Acute myocardial infarction, of other specified sites (410.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.80) Acute myocardial infarction of other specified sites, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.80) Acute myocardial infarction of other specified sites, episode of care unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.80''', NULL, + '(410.80) Acute myocardial infarction of other specified sites, episode of care unspecified', '(410.80) Acute myocardial infarction of other specified sites, episode of care unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.81) Acute myocardial infarction of other specified sites, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.81) Acute myocardial infarction of other specified sites, initial episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.81''', NULL, + '(410.81) Acute myocardial infarction of other specified sites, initial episode of care', '(410.81) Acute myocardial infarction of other specified sites, initial episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.82) Acute myocardial infarction of other specified sites, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.82) Acute myocardial infarction of other specified sites, subsequent episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.82''', NULL, + '(410.82) Acute myocardial infarction of other specified sites, subsequent episode of care', '(410.82) Acute myocardial infarction of other specified sites, subsequent episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.7''', NULL, + 'Acute myocardial infarction, subendocardial infarction (410.7)', 'Acute myocardial infarction, subendocardial infarction (410.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.70) Subendocardial infarction, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.70) Subendocardial infarction, episode of care unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.70''', NULL, + '(410.70) Subendocardial infarction, episode of care unspecified', '(410.70) Subendocardial infarction, episode of care unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.71) Subendocardial infarction, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.71) Subendocardial infarction, initial episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.71''', NULL, + '(410.71) Subendocardial infarction, initial episode of care', '(410.71) Subendocardial infarction, initial episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.72) Subendocardial infarction, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.72) Subendocardial infarction, subsequent episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.72''', NULL, + '(410.72) Subendocardial infarction, subsequent episode of care', '(410.72) Subendocardial infarction, subsequent episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.6''', NULL, + 'Acute myocardial infarction, true posterior wall infarction (410.6)', 'Acute myocardial infarction, true posterior wall infarction (410.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.60) True posterior wall infarction, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.60) True posterior wall infarction, episode of care unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.60''', NULL, + '(410.60) True posterior wall infarction, episode of care unspecified', '(410.60) True posterior wall infarction, episode of care unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.61) True posterior wall infarction, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.61) True posterior wall infarction, initial episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.61''', NULL, + '(410.61) True posterior wall infarction, initial episode of care', '(410.61) True posterior wall infarction, initial episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.62) True posterior wall infarction, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.62) True posterior wall infarction, subsequent episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.62''', NULL, + '(410.62) True posterior wall infarction, subsequent episode of care', '(410.62) True posterior wall infarction, subsequent episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.9''', NULL, + 'Acute myocardial infarction, unspecified site (410.9)', 'Acute myocardial infarction, unspecified site (410.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.90) Acute myocardial infarction of unspecified site, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.90) Acute myocardial infarction of unspecified site, episode of care unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.90''', NULL, + '(410.90) Acute myocardial infarction of unspecified site, episode of care unspecified', '(410.90) Acute myocardial infarction of unspecified site, episode of care unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.91) Acute myocardial infarction of unspecified site, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.91) Acute myocardial infarction of unspecified site, initial episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.91''', NULL, + '(410.91) Acute myocardial infarction of unspecified site, initial episode of care', '(410.91) Acute myocardial infarction of unspecified site, initial episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.92) Acute myocardial infarction of unspecified site, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.92) Acute myocardial infarction of unspecified site, subsequent episode of care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.92''', NULL, + '(410.92) Acute myocardial infarction of unspecified site, subsequent episode of care', '(410.92) Acute myocardial infarction of unspecified site, subsequent episode of care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''413''', NULL, + 'Angina pectoris (413)', 'Angina pectoris (413)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.0) Angina decubitus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.0) Angina decubitus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''413.0''', NULL, + '(413.0) Angina decubitus', '(413.0) Angina decubitus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.1) Prinzmetal angina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.1) Prinzmetal angina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''413.1''', NULL, + '(413.1) Prinzmetal angina', '(413.1) Prinzmetal angina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.9) Other and unspecified angina pectoris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.9) Other and unspecified angina pectoris\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''413.9''', NULL, + '(413.9) Other and unspecified angina pectoris', '(413.9) Other and unspecified angina pectoris', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411''', NULL, + 'Other acute and subacute forms of ischemic heart disease (411)', 'Other acute and subacute forms of ischemic heart disease (411)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\(411.0) Postmyocardial infarction syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\(411.0) Postmyocardial infarction syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411.0''', NULL, + '(411.0) Postmyocardial infarction syndrome', '(411.0) Postmyocardial infarction syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\(411.1) Intermediate coronary syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\(411.1) Intermediate coronary syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411.1''', NULL, + '(411.1) Intermediate coronary syndrome', '(411.1) Intermediate coronary syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411.8''', NULL, + 'Other acute and subacute forms of ischemic heart disease (411.8)', 'Other acute and subacute forms of ischemic heart disease (411.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\(411.81) Acute coronary occlusion without myocardial infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\(411.81) Acute coronary occlusion without myocardial infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411.81''', NULL, + '(411.81) Acute coronary occlusion without myocardial infarction', '(411.81) Acute coronary occlusion without myocardial infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\(411.89) Other acute and subacute forms of ischemic heart disease, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\(411.89) Other acute and subacute forms of ischemic heart disease, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411.89''', NULL, + '(411.89) Other acute and subacute forms of ischemic heart disease, other', '(411.89) Other acute and subacute forms of ischemic heart disease, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414''', NULL, + 'Other forms of chronic ischemic heart disease (414)', 'Other forms of chronic ischemic heart disease (414)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.2) Chronic total occlusion of coronary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.2) Chronic total occlusion of coronary artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.2''', NULL, + '(414.2) Chronic total occlusion of coronary artery', '(414.2) Chronic total occlusion of coronary artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.3) Coronary atherosclerosis due to lipid rich plaque\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.3) Coronary atherosclerosis due to lipid rich plaque\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.3''', NULL, + '(414.3) Coronary atherosclerosis due to lipid rich plaque', '(414.3) Coronary atherosclerosis due to lipid rich plaque', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.8) Other specified forms of chronic ischemic heart disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.8) Other specified forms of chronic ischemic heart disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.8''', NULL, + '(414.8) Other specified forms of chronic ischemic heart disease', '(414.8) Other specified forms of chronic ischemic heart disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.9) Chronic ischemic heart disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.9) Chronic ischemic heart disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.9''', NULL, + '(414.9) Chronic ischemic heart disease, unspecified', '(414.9) Chronic ischemic heart disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.1''', NULL, + 'Aneurysm and dissection of heart (414.1)', 'Aneurysm and dissection of heart (414.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.10) Aneurysm of heart (wall)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.10) Aneurysm of heart (wall)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.10) Aneurysm of heart (wall''', NULL, + '(414.10) Aneurysm of heart (wall)', '(414.10) Aneurysm of heart (wall)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.11) Aneurysm of coronary vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.11) Aneurysm of coronary vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.11''', NULL, + '(414.11) Aneurysm of coronary vessels', '(414.11) Aneurysm of coronary vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.12) Dissection of coronary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.12) Dissection of coronary artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.12''', NULL, + '(414.12) Dissection of coronary artery', '(414.12) Dissection of coronary artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.19) Other aneurysm of heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.19) Other aneurysm of heart\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.19''', NULL, + '(414.19) Other aneurysm of heart', '(414.19) Other aneurysm of heart', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.0''', NULL, + 'Coronary atherosclerosis (414.0)', 'Coronary atherosclerosis (414.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.00) Coronary atherosclerosis of unspecified type of vessel, native or graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.00) Coronary atherosclerosis of unspecified type of vessel, native or graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.00''', NULL, + '(414.00) Coronary atherosclerosis of unspecified type of vessel, native or graft', '(414.00) Coronary atherosclerosis of unspecified type of vessel, native or graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.01) Coronary atherosclerosis of native coronary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.01) Coronary atherosclerosis of native coronary artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.01''', NULL, + '(414.01) Coronary atherosclerosis of native coronary artery', '(414.01) Coronary atherosclerosis of native coronary artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.02) Coronary atherosclerosis of autologous vein bypass graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.02) Coronary atherosclerosis of autologous vein bypass graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.02''', NULL, + '(414.02) Coronary atherosclerosis of autologous vein bypass graft', '(414.02) Coronary atherosclerosis of autologous vein bypass graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.03) Coronary atherosclerosis of nonautologous biological bypass graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.03) Coronary atherosclerosis of nonautologous biological bypass graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.03''', NULL, + '(414.03) Coronary atherosclerosis of nonautologous biological bypass graft', '(414.03) Coronary atherosclerosis of nonautologous biological bypass graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.04) Coronary atherosclerosis of artery bypass graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.04) Coronary atherosclerosis of artery bypass graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.04''', NULL, + '(414.04) Coronary atherosclerosis of artery bypass graft', '(414.04) Coronary atherosclerosis of artery bypass graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.05) Coronary atherosclerosis of unspecified bypass graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.05) Coronary atherosclerosis of unspecified bypass graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.05''', NULL, + '(414.05) Coronary atherosclerosis of unspecified bypass graft', '(414.05) Coronary atherosclerosis of unspecified bypass graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.06) Coronary atherosclerosis of native coronary artery of transplanted heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.06) Coronary atherosclerosis of native coronary artery of transplanted heart\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.06''', NULL, + '(414.06) Coronary atherosclerosis of native coronary artery of transplanted heart', '(414.06) Coronary atherosclerosis of native coronary artery of transplanted heart', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.07) Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.07) Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.07) Coronary atherosclerosis of bypass graft (artery) (vein''', NULL, + '(414.07) Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart', '(414.07) Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''420'' AND ''429.99''', NULL, + 'Other forms of heart disease (420-429.99)', 'Other forms of heart disease (420-429.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''421''', NULL, + 'Acute and subacute endocarditis (421)', 'Acute and subacute endocarditis (421)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.0) Acute and subacute bacterial endocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.0) Acute and subacute bacterial endocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''421.0''', NULL, + '(421.0) Acute and subacute bacterial endocarditis', '(421.0) Acute and subacute bacterial endocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.1) Acute and subacute infective endocarditis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.1) Acute and subacute infective endocarditis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''421.1''', NULL, + '(421.1) Acute and subacute infective endocarditis in diseases classified elsewhere', '(421.1) Acute and subacute infective endocarditis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.9) Acute endocarditis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.9) Acute endocarditis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''421.9''', NULL, + '(421.9) Acute endocarditis, unspecified', '(421.9) Acute endocarditis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422''', NULL, + 'Acute myocarditis (422)', 'Acute myocarditis (422)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\(422.0) Acute myocarditis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\(422.0) Acute myocarditis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.0''', NULL, + '(422.0) Acute myocarditis in diseases classified elsewhere', '(422.0) Acute myocarditis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.9''', NULL, + 'Other and unspecified acute myocarditis (422.9)', 'Other and unspecified acute myocarditis (422.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.90) Acute myocarditis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.90) Acute myocarditis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.90''', NULL, + '(422.90) Acute myocarditis, unspecified', '(422.90) Acute myocarditis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.91) Idiopathic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.91) Idiopathic myocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.91''', NULL, + '(422.91) Idiopathic myocarditis', '(422.91) Idiopathic myocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.92) Septic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.92) Septic myocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.92''', NULL, + '(422.92) Septic myocarditis', '(422.92) Septic myocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.93) Toxic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.93) Toxic myocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.93''', NULL, + '(422.93) Toxic myocarditis', '(422.93) Toxic myocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.99) Other acute myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.99) Other acute myocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.99''', NULL, + '(422.99) Other acute myocarditis', '(422.99) Other acute myocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420''', NULL, + 'Acute pericarditis (420)', 'Acute pericarditis (420)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\(420.0) Acute pericarditis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\(420.0) Acute pericarditis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420.0''', NULL, + '(420.0) Acute pericarditis in diseases classified elsewhere', '(420.0) Acute pericarditis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420.9''', NULL, + 'Other and unspecified acute pericarditis (420.9)', 'Other and unspecified acute pericarditis (420.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.90) Acute pericarditis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.90) Acute pericarditis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420.90''', NULL, + '(420.90) Acute pericarditis, unspecified', '(420.90) Acute pericarditis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.91) Acute idiopathic pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.91) Acute idiopathic pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420.91''', NULL, + '(420.91) Acute idiopathic pericarditis', '(420.91) Acute idiopathic pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.99) Other acute pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.99) Other acute pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420.99''', NULL, + '(420.99) Other acute pericarditis', '(420.99) Other acute pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427''', NULL, + 'Cardiac dysrhythmias (427)', 'Cardiac dysrhythmias (427)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.0) Paroxysmal supraventricular tachycardia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.0) Paroxysmal supraventricular tachycardia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.0''', NULL, + '(427.0) Paroxysmal supraventricular tachycardia', '(427.0) Paroxysmal supraventricular tachycardia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.1) Paroxysmal ventricular tachycardia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.1) Paroxysmal ventricular tachycardia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.1''', NULL, + '(427.1) Paroxysmal ventricular tachycardia', '(427.1) Paroxysmal ventricular tachycardia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.2) Paroxysmal tachycardia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.2) Paroxysmal tachycardia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.2''', NULL, + '(427.2) Paroxysmal tachycardia, unspecified', '(427.2) Paroxysmal tachycardia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.5) Cardiac arrest\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.5) Cardiac arrest\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.5''', NULL, + '(427.5) Cardiac arrest', '(427.5) Cardiac arrest', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.9) Cardiac dysrhythmia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.9) Cardiac dysrhythmia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.9''', NULL, + '(427.9) Cardiac dysrhythmia, unspecified', '(427.9) Cardiac dysrhythmia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.3''', NULL, + 'Atrial fibrillation and flutter (427.3)', 'Atrial fibrillation and flutter (427.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\(427.31) Atrial fibrillation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\(427.31) Atrial fibrillation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.31''', NULL, + '(427.31) Atrial fibrillation', '(427.31) Atrial fibrillation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\(427.32) Atrial flutter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\(427.32) Atrial flutter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.32''', NULL, + '(427.32) Atrial flutter', '(427.32) Atrial flutter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.8''', NULL, + 'Other specified cardiac dysrhythmias (427.8)', 'Other specified cardiac dysrhythmias (427.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\(427.81) Sinoatrial node dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\(427.81) Sinoatrial node dysfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.81''', NULL, + '(427.81) Sinoatrial node dysfunction', '(427.81) Sinoatrial node dysfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\(427.89) Other specified cardiac dysrhythmias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\(427.89) Other specified cardiac dysrhythmias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.89''', NULL, + '(427.89) Other specified cardiac dysrhythmias', '(427.89) Other specified cardiac dysrhythmias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.6''', NULL, + 'Premature beats (427.6)', 'Premature beats (427.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.60) Premature beats, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.60) Premature beats, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.60''', NULL, + '(427.60) Premature beats, unspecified', '(427.60) Premature beats, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.61) Supraventricular premature beats\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.61) Supraventricular premature beats\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.61''', NULL, + '(427.61) Supraventricular premature beats', '(427.61) Supraventricular premature beats', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.69) Other premature beats\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.69) Other premature beats\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.69''', NULL, + '(427.69) Other premature beats', '(427.69) Other premature beats', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.4''', NULL, + 'Ventricular fibrillation and flutter (427.4)', 'Ventricular fibrillation and flutter (427.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\(427.41) Ventricular fibrillation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\(427.41) Ventricular fibrillation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.41''', NULL, + '(427.41) Ventricular fibrillation', '(427.41) Ventricular fibrillation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\(427.42) Ventricular flutter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\(427.42) Ventricular flutter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.42''', NULL, + '(427.42) Ventricular flutter', '(427.42) Ventricular flutter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425''', NULL, + 'Cardiomyopathy (425)', 'Cardiomyopathy (425)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.0) Endomyocardial fibrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.0) Endomyocardial fibrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.0''', NULL, + '(425.0) Endomyocardial fibrosis', '(425.0) Endomyocardial fibrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.2) Obscure cardiomyopathy of Africa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.2) Obscure cardiomyopathy of Africa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.2''', NULL, + '(425.2) Obscure cardiomyopathy of Africa', '(425.2) Obscure cardiomyopathy of Africa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.3) Endocardial fibroelastosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.3) Endocardial fibroelastosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.3''', NULL, + '(425.3) Endocardial fibroelastosis', '(425.3) Endocardial fibroelastosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.4) Other primary cardiomyopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.4) Other primary cardiomyopathies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.4''', NULL, + '(425.4) Other primary cardiomyopathies', '(425.4) Other primary cardiomyopathies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.5) Alcoholic cardiomyopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.5) Alcoholic cardiomyopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.5''', NULL, + '(425.5) Alcoholic cardiomyopathy', '(425.5) Alcoholic cardiomyopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.7) Nutritional and metabolic cardiomyopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.7) Nutritional and metabolic cardiomyopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.7''', NULL, + '(425.7) Nutritional and metabolic cardiomyopathy', '(425.7) Nutritional and metabolic cardiomyopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.8) Cardiomyopathy in other diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.8) Cardiomyopathy in other diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.8''', NULL, + '(425.8) Cardiomyopathy in other diseases classified elsewhere', '(425.8) Cardiomyopathy in other diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.9) Secondary cardiomyopathy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.9) Secondary cardiomyopathy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.9''', NULL, + '(425.9) Secondary cardiomyopathy, unspecified', '(425.9) Secondary cardiomyopathy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.1''', NULL, + 'Hypertrophic cardiomyopathy (425.1)', 'Hypertrophic cardiomyopathy (425.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\(425.11) Hypertrophic obstructive cardiomyopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\(425.11) Hypertrophic obstructive cardiomyopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.11''', NULL, + '(425.11) Hypertrophic obstructive cardiomyopathy', '(425.11) Hypertrophic obstructive cardiomyopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\(425.18) Other hypertrophic cardiomyopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\(425.18) Other hypertrophic cardiomyopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.18''', NULL, + '(425.18) Other hypertrophic cardiomyopathy', '(425.18) Other hypertrophic cardiomyopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426''', NULL, + 'Conduction disorders (426)', 'Conduction disorders (426)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.0) Atrioventricular block, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.0) Atrioventricular block, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.0''', NULL, + '(426.0) Atrioventricular block, complete', '(426.0) Atrioventricular block, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.2) Left bundle branch hemiblock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.2) Left bundle branch hemiblock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.2''', NULL, + '(426.2) Left bundle branch hemiblock', '(426.2) Left bundle branch hemiblock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.3) Other left bundle branch block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.3) Other left bundle branch block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.3''', NULL, + '(426.3) Other left bundle branch block', '(426.3) Other left bundle branch block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.4) Right bundle branch block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.4) Right bundle branch block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.4''', NULL, + '(426.4) Right bundle branch block', '(426.4) Right bundle branch block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.6) Other heart block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.6) Other heart block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.6''', NULL, + '(426.6) Other heart block', '(426.6) Other heart block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.7) Anomalous atrioventricular excitation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.7) Anomalous atrioventricular excitation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.7''', NULL, + '(426.7) Anomalous atrioventricular excitation', '(426.7) Anomalous atrioventricular excitation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.9) Conduction disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.9) Conduction disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.9''', NULL, + '(426.9) Conduction disorder, unspecified', '(426.9) Conduction disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.1''', NULL, + 'Atrioventricular block, other and unspecified (426.1)', 'Atrioventricular block, other and unspecified (426.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.10) Atrioventricular block, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.10) Atrioventricular block, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.10''', NULL, + '(426.10) Atrioventricular block, unspecified', '(426.10) Atrioventricular block, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.11) First degree atrioventricular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.11) First degree atrioventricular block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.11''', NULL, + '(426.11) First degree atrioventricular block', '(426.11) First degree atrioventricular block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.12) Mobitz (type) II atrioventricular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.12) Mobitz (type) II atrioventricular block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.12) Mobitz (type''', NULL, + '(426.12) Mobitz (type) II atrioventricular block', '(426.12) Mobitz (type) II atrioventricular block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.13) Other second degree atrioventricular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.13) Other second degree atrioventricular block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.13''', NULL, + '(426.13) Other second degree atrioventricular block', '(426.13) Other second degree atrioventricular block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.5''', NULL, + 'Bundle branch block, other and unspecified (426.5)', 'Bundle branch block, other and unspecified (426.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.50) Bundle branch block, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.50) Bundle branch block, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.50''', NULL, + '(426.50) Bundle branch block, unspecified', '(426.50) Bundle branch block, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.51) Right bundle branch block and left posterior fascicular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.51) Right bundle branch block and left posterior fascicular block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.51''', NULL, + '(426.51) Right bundle branch block and left posterior fascicular block', '(426.51) Right bundle branch block and left posterior fascicular block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.52) Right bundle branch block and left anterior fascicular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.52) Right bundle branch block and left anterior fascicular block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.52''', NULL, + '(426.52) Right bundle branch block and left anterior fascicular block', '(426.52) Right bundle branch block and left anterior fascicular block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.53) Other bilateral bundle branch block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.53) Other bilateral bundle branch block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.53''', NULL, + '(426.53) Other bilateral bundle branch block', '(426.53) Other bilateral bundle branch block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.54) Trifascicular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.54) Trifascicular block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.54''', NULL, + '(426.54) Trifascicular block', '(426.54) Trifascicular block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.8''', NULL, + 'Other specified conduction disorders (426.8)', 'Other specified conduction disorders (426.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.81) Lown-Ganong-Levine syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.81) Lown-Ganong-Levine syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.81''', NULL, + '(426.81) Lown-Ganong-Levine syndrome', '(426.81) Lown-Ganong-Levine syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.82) Long QT syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.82) Long QT syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.82''', NULL, + '(426.82) Long QT syndrome', '(426.82) Long QT syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.89) Other specified conduction disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.89) Other specified conduction disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.89''', NULL, + '(426.89) Other specified conduction disorders', '(426.89) Other specified conduction disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428''', NULL, + 'Heart failure (428)', 'Heart failure (428)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.0) Congestive heart failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.0) Congestive heart failure, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.0''', NULL, + '(428.0) Congestive heart failure, unspecified', '(428.0) Congestive heart failure, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.1) Left heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.1) Left heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.1''', NULL, + '(428.1) Left heart failure', '(428.1) Left heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.9) Heart failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.9) Heart failure, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.9''', NULL, + '(428.9) Heart failure, unspecified', '(428.9) Heart failure, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.4''', NULL, + 'Combined systolic and diastolic heart failure (428.4)', 'Combined systolic and diastolic heart failure (428.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.40) Combined systolic and diastolic heart failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.40) Combined systolic and diastolic heart failure, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.40''', NULL, + '(428.40) Combined systolic and diastolic heart failure, unspecified', '(428.40) Combined systolic and diastolic heart failure, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.41) Acute combined systolic and diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.41) Acute combined systolic and diastolic heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.41''', NULL, + '(428.41) Acute combined systolic and diastolic heart failure', '(428.41) Acute combined systolic and diastolic heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.42) Chronic combined systolic and diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.42) Chronic combined systolic and diastolic heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.42''', NULL, + '(428.42) Chronic combined systolic and diastolic heart failure', '(428.42) Chronic combined systolic and diastolic heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.43) Acute on chronic combined systolic and diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.43) Acute on chronic combined systolic and diastolic heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.43''', NULL, + '(428.43) Acute on chronic combined systolic and diastolic heart failure', '(428.43) Acute on chronic combined systolic and diastolic heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.3''', NULL, + 'Diastolic heart failure (428.3)', 'Diastolic heart failure (428.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.30) Diastolic heart failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.30) Diastolic heart failure, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.30''', NULL, + '(428.30) Diastolic heart failure, unspecified', '(428.30) Diastolic heart failure, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.31) Acute diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.31) Acute diastolic heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.31''', NULL, + '(428.31) Acute diastolic heart failure', '(428.31) Acute diastolic heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.32) Chronic diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.32) Chronic diastolic heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.32''', NULL, + '(428.32) Chronic diastolic heart failure', '(428.32) Chronic diastolic heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.33) Acute on chronic diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.33) Acute on chronic diastolic heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.33''', NULL, + '(428.33) Acute on chronic diastolic heart failure', '(428.33) Acute on chronic diastolic heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.2''', NULL, + 'Systolic heart failure (428.2)', 'Systolic heart failure (428.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.20) Systolic heart failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.20) Systolic heart failure, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.20''', NULL, + '(428.20) Systolic heart failure, unspecified', '(428.20) Systolic heart failure, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.21) Acute systolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.21) Acute systolic heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.21''', NULL, + '(428.21) Acute systolic heart failure', '(428.21) Acute systolic heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.22) Chronic systolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.22) Chronic systolic heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.22''', NULL, + '(428.22) Chronic systolic heart failure', '(428.22) Chronic systolic heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.23) Acute on chronic systolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.23) Acute on chronic systolic heart failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.23''', NULL, + '(428.23) Acute on chronic systolic heart failure', '(428.23) Acute on chronic systolic heart failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429''', NULL, + 'Ill-defined descriptions and complications of heart disease (429)', 'Ill-defined descriptions and complications of heart disease (429)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.0) Myocarditis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.0) Myocarditis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.0''', NULL, + '(429.0) Myocarditis, unspecified', '(429.0) Myocarditis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.1) Myocardial degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.1) Myocardial degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.1''', NULL, + '(429.1) Myocardial degeneration', '(429.1) Myocardial degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.2) Cardiovascular disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.2) Cardiovascular disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.2''', NULL, + '(429.2) Cardiovascular disease, unspecified', '(429.2) Cardiovascular disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.3) Cardiomegaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.3) Cardiomegaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.3''', NULL, + '(429.3) Cardiomegaly', '(429.3) Cardiomegaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.4) Functional disturbances following cardiac surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.4) Functional disturbances following cardiac surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.4''', NULL, + '(429.4) Functional disturbances following cardiac surgery', '(429.4) Functional disturbances following cardiac surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.5) Rupture of chordae tendineae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.5) Rupture of chordae tendineae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.5''', NULL, + '(429.5) Rupture of chordae tendineae', '(429.5) Rupture of chordae tendineae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.6) Rupture of papillary muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.6) Rupture of papillary muscle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.6''', NULL, + '(429.6) Rupture of papillary muscle', '(429.6) Rupture of papillary muscle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.9) Heart disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.9) Heart disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.9''', NULL, + '(429.9) Heart disease, unspecified', '(429.9) Heart disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.7''', NULL, + 'Certain sequelae of myocardial infarction, not elsewhere classified (429.7)', 'Certain sequelae of myocardial infarction, not elsewhere classified (429.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\(429.71) Acquired cardiac septal defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\(429.71) Acquired cardiac septal defect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.71''', NULL, + '(429.71) Acquired cardiac septal defect', '(429.71) Acquired cardiac septal defect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\(429.79) Certain sequelae of myocardial infarction, not elsewhere classified, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\(429.79) Certain sequelae of myocardial infarction, not elsewhere classified, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.79''', NULL, + '(429.79) Certain sequelae of myocardial infarction, not elsewhere classified, other', '(429.79) Certain sequelae of myocardial infarction, not elsewhere classified, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.8''', NULL, + 'Other ill-defined heart diseases (429.8)', 'Other ill-defined heart diseases (429.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.81) Other disorders of papillary muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.81) Other disorders of papillary muscle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.81''', NULL, + '(429.81) Other disorders of papillary muscle', '(429.81) Other disorders of papillary muscle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.82) Hyperkinetic heart disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.82) Hyperkinetic heart disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.82''', NULL, + '(429.82) Hyperkinetic heart disease', '(429.82) Hyperkinetic heart disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.83) Takotsubo syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.83) Takotsubo syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.83''', NULL, + '(429.83) Takotsubo syndrome', '(429.83) Takotsubo syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.89) Other ill-defined heart diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.89) Other ill-defined heart diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.89''', NULL, + '(429.89) Other ill-defined heart diseases', '(429.89) Other ill-defined heart diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424''', NULL, + 'Other diseases of endocardium (424)', 'Other diseases of endocardium (424)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.0) Mitral valve disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.0) Mitral valve disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.0''', NULL, + '(424.0) Mitral valve disorders', '(424.0) Mitral valve disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.1) Aortic valve disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.1) Aortic valve disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.1''', NULL, + '(424.1) Aortic valve disorders', '(424.1) Aortic valve disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.2) Tricuspid valve disorders, specified as nonrheumatic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.2) Tricuspid valve disorders, specified as nonrheumatic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.2''', NULL, + '(424.2) Tricuspid valve disorders, specified as nonrheumatic', '(424.2) Tricuspid valve disorders, specified as nonrheumatic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.3) Pulmonary valve disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.3) Pulmonary valve disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.3''', NULL, + '(424.3) Pulmonary valve disorders', '(424.3) Pulmonary valve disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.9''', NULL, + 'Endocarditis, valve unspecified (424.9)', 'Endocarditis, valve unspecified (424.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.90) Endocarditis, valve unspecified, unspecified cause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.90) Endocarditis, valve unspecified, unspecified cause\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.90''', NULL, + '(424.90) Endocarditis, valve unspecified, unspecified cause', '(424.90) Endocarditis, valve unspecified, unspecified cause', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.91) Endocarditis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.91) Endocarditis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.91''', NULL, + '(424.91) Endocarditis in diseases classified elsewhere', '(424.91) Endocarditis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.99) Other endocarditis, valve unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.99) Other endocarditis, valve unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.99''', NULL, + '(424.99) Other endocarditis, valve unspecified', '(424.99) Other endocarditis, valve unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423''', NULL, + 'Other diseases of pericardium (423)', 'Other diseases of pericardium (423)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.0) Hemopericardium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.0) Hemopericardium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.0''', NULL, + '(423.0) Hemopericardium', '(423.0) Hemopericardium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.1) Adhesive pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.1) Adhesive pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.1''', NULL, + '(423.1) Adhesive pericarditis', '(423.1) Adhesive pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.2) Constrictive pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.2) Constrictive pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.2''', NULL, + '(423.2) Constrictive pericarditis', '(423.2) Constrictive pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.3) Cardiac tamponade\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.3) Cardiac tamponade\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.3''', NULL, + '(423.3) Cardiac tamponade', '(423.3) Cardiac tamponade', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.8) Other specified diseases of pericardium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.8) Other specified diseases of pericardium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.8''', NULL, + '(423.8) Other specified diseases of pericardium', '(423.8) Other specified diseases of pericardium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.9) Unspecified disease of pericardium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.9) Unspecified disease of pericardium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.9''', NULL, + '(423.9) Unspecified disease of pericardium', '(423.9) Unspecified disease of pericardium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''520'' AND ''579.99''', NULL, + 'Diseases of the digestive system (520-579.99)', 'Diseases of the digestive system (520-579.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\(538) gastrointestinal mucositis (ulcerative)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\(538) gastrointestinal mucositis (ulcerative)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''ulcerative''', NULL, + '-538 gastrointestinal mucositis (ulcerative)', '-538 gastrointestinal mucositis (ulcerative)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''540'' AND ''543.99''', NULL, + 'Appendicitis (540-543.99)', 'Appendicitis (540-543.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\(541) Appendicitis, unqualified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\(541) Appendicitis, unqualified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''541''', NULL, + '(541) Appendicitis, unqualified', '(541) Appendicitis, unqualified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\(542) Other appendicitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\(542) Other appendicitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''542''', NULL, + '(542) Other appendicitis', '(542) Other appendicitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''540''', NULL, + 'Acute appendicitis (540)', 'Acute appendicitis (540)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.0) Acute appendicitis with generalized peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.0) Acute appendicitis with generalized peritonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''540.0''', NULL, + '(540.0) Acute appendicitis with generalized peritonitis', '(540.0) Acute appendicitis with generalized peritonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.1) Acute appendicitis with peritoneal abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.1) Acute appendicitis with peritoneal abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''540.1''', NULL, + '(540.1) Acute appendicitis with peritoneal abscess', '(540.1) Acute appendicitis with peritoneal abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.9) Acute appendicitis without mention of peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.9) Acute appendicitis without mention of peritonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''540.9''', NULL, + '(540.9) Acute appendicitis without mention of peritonitis', '(540.9) Acute appendicitis without mention of peritonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''543''', NULL, + 'Other diseases of appendix (543)', 'Other diseases of appendix (543)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\(543.0) Hyperplasia of appendix (lymphoid)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\(543.0) Hyperplasia of appendix (lymphoid)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''543.0) Hyperplasia of appendix (lymphoid''', NULL, + '(543.0) Hyperplasia of appendix (lymphoid)', '(543.0) Hyperplasia of appendix (lymphoid)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\(543.9) Other and unspecified diseases of appendix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\(543.9) Other and unspecified diseases of appendix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''543.9''', NULL, + '(543.9) Other and unspecified diseases of appendix', '(543.9) Other and unspecified diseases of appendix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''530'' AND ''539.99''', NULL, + 'Diseases of esophagus, stomach, and duodenum (530-539.99)', 'Diseases of esophagus, stomach, and duodenum (530-539.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''539''', NULL, + 'Complications of bariatric procedures (539)', 'Complications of bariatric procedures (539)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of gastric band procedure (539.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of gastric band procedure (539.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''539.0''', NULL, + 'Complications of gastric band procedure (539.0)', 'Complications of gastric band procedure (539.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of gastric band procedure (539.0)\(539.09) Other complications of gastric band procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of gastric band procedure (539.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of gastric band procedure (539.0)\(539.09) Other complications of gastric band procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''539.09''', NULL, + '(539.09) Other complications of gastric band procedure', '(539.09) Other complications of gastric band procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of other bariatric procedure (539.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of other bariatric procedure (539.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''539.8''', NULL, + 'Complications of other bariatric procedure (539.8)', 'Complications of other bariatric procedure (539.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of other bariatric procedure (539.8)\(539.89) Other complications of other bariatric procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of other bariatric procedure (539.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of other bariatric procedure (539.8)\(539.89) Other complications of other bariatric procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''539.89''', NULL, + '(539.89) Other complications of other bariatric procedure', '(539.89) Other complications of other bariatric procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530''', NULL, + 'Diseases of esophagus (530)', 'Diseases of esophagus (530)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.0) Achalasia and cardiospasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.0) Achalasia and cardiospasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.0''', NULL, + '(530.0) Achalasia and cardiospasm', '(530.0) Achalasia and cardiospasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.3) Stricture and stenosis of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.3) Stricture and stenosis of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.3''', NULL, + '(530.3) Stricture and stenosis of esophagus', '(530.3) Stricture and stenosis of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.4) Perforation of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.4) Perforation of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.4''', NULL, + '(530.4) Perforation of esophagus', '(530.4) Perforation of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.5) Dyskinesia of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.5) Dyskinesia of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.5''', NULL, + '(530.5) Dyskinesia of esophagus', '(530.5) Dyskinesia of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.6) Diverticulum of esophagus, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.6) Diverticulum of esophagus, acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.6''', NULL, + '(530.6) Diverticulum of esophagus, acquired', '(530.6) Diverticulum of esophagus, acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.7) Gastroesophageal laceration-hemorrhage syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.7) Gastroesophageal laceration-hemorrhage syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.7''', NULL, + '(530.7) Gastroesophageal laceration-hemorrhage syndrome', '(530.7) Gastroesophageal laceration-hemorrhage syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.9) Unspecified disorder of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.9) Unspecified disorder of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.9''', NULL, + '(530.9) Unspecified disorder of esophagus', '(530.9) Unspecified disorder of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.1''', NULL, + 'Esophagitis (530.1)', 'Esophagitis (530.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.10) Esophagitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.10) Esophagitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.10''', NULL, + '(530.10) Esophagitis, unspecified', '(530.10) Esophagitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.11) Reflux esophagitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.11) Reflux esophagitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.11''', NULL, + '(530.11) Reflux esophagitis', '(530.11) Reflux esophagitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.12) Acute esophagitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.12) Acute esophagitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.12''', NULL, + '(530.12) Acute esophagitis', '(530.12) Acute esophagitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.13) Eosinophilic esophagitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.13) Eosinophilic esophagitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.13''', NULL, + '(530.13) Eosinophilic esophagitis', '(530.13) Eosinophilic esophagitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.19) Other esophagitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.19) Other esophagitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.19''', NULL, + '(530.19) Other esophagitis', '(530.19) Other esophagitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.8''', NULL, + 'Other specified disorders of esophagus (530.8)', 'Other specified disorders of esophagus (530.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.81) Esophageal reflux\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.81) Esophageal reflux\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.81''', NULL, + '(530.81) Esophageal reflux', '(530.81) Esophageal reflux', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.82) Esophageal hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.82) Esophageal hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.82''', NULL, + '(530.82) Esophageal hemorrhage', '(530.82) Esophageal hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.83) Esophageal leukoplakia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.83) Esophageal leukoplakia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.83''', NULL, + '(530.83) Esophageal leukoplakia', '(530.83) Esophageal leukoplakia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.84) Tracheoesophageal fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.84) Tracheoesophageal fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.84''', NULL, + '(530.84) Tracheoesophageal fistula', '(530.84) Tracheoesophageal fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.85) Barrett''s esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.85) Barrett''s esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.85''', NULL, + '(530.85) Barrett''s esophagus', '(530.85) Barrett''s esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.86) Infection of esophagostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.86) Infection of esophagostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.86''', NULL, + '(530.86) Infection of esophagostomy', '(530.86) Infection of esophagostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.87) Mechanical complication of esophagostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.87) Mechanical complication of esophagostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.87''', NULL, + '(530.87) Mechanical complication of esophagostomy', '(530.87) Mechanical complication of esophagostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.89) Other specified disorders of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.89) Other specified disorders of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.89''', NULL, + '(530.89) Other specified disorders of esophagus', '(530.89) Other specified disorders of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.2''', NULL, + 'Ulcer of esophagus (530.2)', 'Ulcer of esophagus (530.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\(530.20) Ulcer of esophagus without bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\(530.20) Ulcer of esophagus without bleeding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.20''', NULL, + '(530.20) Ulcer of esophagus without bleeding', '(530.20) Ulcer of esophagus without bleeding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\(530.21) Ulcer of esophagus with bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\(530.21) Ulcer of esophagus with bleeding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.21''', NULL, + '(530.21) Ulcer of esophagus with bleeding', '(530.21) Ulcer of esophagus with bleeding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536''', NULL, + 'Disorders of function of stomach (536)', 'Disorders of function of stomach (536)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.0) Achlorhydria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.0) Achlorhydria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.0''', NULL, + '(536.0) Achlorhydria', '(536.0) Achlorhydria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.1) Acute dilatation of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.1) Acute dilatation of stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.1''', NULL, + '(536.1) Acute dilatation of stomach', '(536.1) Acute dilatation of stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.2) Persistent vomiting\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.2) Persistent vomiting\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.2''', NULL, + '(536.2) Persistent vomiting', '(536.2) Persistent vomiting', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.3) Gastroparesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.3) Gastroparesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.3''', NULL, + '(536.3) Gastroparesis', '(536.3) Gastroparesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.8) Dyspepsia and other specified disorders of function of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.8) Dyspepsia and other specified disorders of function of stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.8''', NULL, + '(536.8) Dyspepsia and other specified disorders of function of stomach', '(536.8) Dyspepsia and other specified disorders of function of stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.9) Unspecified functional disorder of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.9) Unspecified functional disorder of stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.9''', NULL, + '(536.9) Unspecified functional disorder of stomach', '(536.9) Unspecified functional disorder of stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.4''', NULL, + 'Gastrostomy complications (536.4)', 'Gastrostomy complications (536.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.40) Gastrostomy complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.40) Gastrostomy complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.40''', NULL, + '(536.40) Gastrostomy complication, unspecified', '(536.40) Gastrostomy complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.41) Infection of gastrostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.41) Infection of gastrostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.41''', NULL, + '(536.41) Infection of gastrostomy', '(536.41) Infection of gastrostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.42) Mechanical complication of gastrostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.42) Mechanical complication of gastrostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.42''', NULL, + '(536.42) Mechanical complication of gastrostomy', '(536.42) Mechanical complication of gastrostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.49) Other gastrostomy complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.49) Other gastrostomy complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.49''', NULL, + '(536.49) Other gastrostomy complications', '(536.49) Other gastrostomy complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532''', NULL, + 'Duodenal ulcer (532)', 'Duodenal ulcer (532)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.0''', NULL, + 'Acute duodenal ulcer with hemorrhage (532.0)', 'Acute duodenal ulcer with hemorrhage (532.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\(532.00) Acute duodenal ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\(532.00) Acute duodenal ulcer with hemorrhage, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.00''', NULL, + '(532.00) Acute duodenal ulcer with hemorrhage, without mention of obstruction', '(532.00) Acute duodenal ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\(532.01) Acute duodenal ulcer with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\(532.01) Acute duodenal ulcer with hemorrhage, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.01''', NULL, + '(532.01) Acute duodenal ulcer with hemorrhage, with obstruction', '(532.01) Acute duodenal ulcer with hemorrhage, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.2''', NULL, + 'Acute duodenal ulcer with hemorrhage and perforation (532.2)', 'Acute duodenal ulcer with hemorrhage and perforation (532.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\(532.20) Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\(532.20) Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.20''', NULL, + '(532.20) Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction', '(532.20) Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\(532.21) Acute duodenal ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\(532.21) Acute duodenal ulcer with hemorrhage and perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.21''', NULL, + '(532.21) Acute duodenal ulcer with hemorrhage and perforation, with obstruction', '(532.21) Acute duodenal ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.1''', NULL, + 'Acute duodenal ulcer with perforation (532.1)', 'Acute duodenal ulcer with perforation (532.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\(532.10) Acute duodenal ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\(532.10) Acute duodenal ulcer with perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.10''', NULL, + '(532.10) Acute duodenal ulcer with perforation, without mention of obstruction', '(532.10) Acute duodenal ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\(532.11) Acute duodenal ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\(532.11) Acute duodenal ulcer with perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.11''', NULL, + '(532.11) Acute duodenal ulcer with perforation, with obstruction', '(532.11) Acute duodenal ulcer with perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.3''', NULL, + 'Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)', 'Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\(532.30) Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\(532.30) Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.30''', NULL, + '(532.30) Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(532.30) Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\(532.31) Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\(532.31) Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.31''', NULL, + '(532.31) Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction', '(532.31) Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.7''', NULL, + 'Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)', 'Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\(532.70) Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\(532.70) Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.70''', NULL, + '(532.70) Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(532.70) Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\(532.71) Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\(532.71) Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.71''', NULL, + '(532.71) Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction', '(532.71) Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.4''', NULL, + 'Chronic or unspecified duodenal ulcer with hemorrhage (532.4)', 'Chronic or unspecified duodenal ulcer with hemorrhage (532.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\(532.40) Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\(532.40) Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.40''', NULL, + '(532.40) Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction', '(532.40) Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\(532.41) Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\(532.41) Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.41''', NULL, + '(532.41) Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction', '(532.41) Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.6''', NULL, + 'Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)', 'Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\(532.60) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\(532.60) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.60''', NULL, + '(532.60) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, without mention of obstruction', '(532.60) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\(532.61) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\(532.61) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.61''', NULL, + '(532.61) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction', '(532.61) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.5''', NULL, + 'Chronic or unspecified duodenal ulcer with perforation (532.5)', 'Chronic or unspecified duodenal ulcer with perforation (532.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\(532.50) Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\(532.50) Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.50''', NULL, + '(532.50) Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction', '(532.50) Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\(532.51) Chronic or unspecified duodenal ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\(532.51) Chronic or unspecified duodenal ulcer with perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.51''', NULL, + '(532.51) Chronic or unspecified duodenal ulcer with perforation, with obstruction', '(532.51) Chronic or unspecified duodenal ulcer with perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.9''', NULL, + 'Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)', 'Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\(532.90) Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\(532.90) Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.90''', NULL, + '(532.90) Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation, without mention of obstruction', '(532.90) Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\(532.91) Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\(532.91) Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.91''', NULL, + '(532.91) Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', '(532.91) Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531''', NULL, + 'Gastric ulcer (531)', 'Gastric ulcer (531)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.0''', NULL, + 'Acute gastric ulcer with hemorrhage (531.0)', 'Acute gastric ulcer with hemorrhage (531.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\(531.00) Acute gastric ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\(531.00) Acute gastric ulcer with hemorrhage, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.00''', NULL, + '(531.00) Acute gastric ulcer with hemorrhage, without mention of obstruction', '(531.00) Acute gastric ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\(531.01) Acute gastric ulcer with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\(531.01) Acute gastric ulcer with hemorrhage, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.01''', NULL, + '(531.01) Acute gastric ulcer with hemorrhage, with obstruction', '(531.01) Acute gastric ulcer with hemorrhage, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.2''', NULL, + 'Acute gastric ulcer with hemorrhage and perforation (531.2)', 'Acute gastric ulcer with hemorrhage and perforation (531.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\(531.20) Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\(531.20) Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.20''', NULL, + '(531.20) Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction', '(531.20) Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\(531.21) Acute gastric ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\(531.21) Acute gastric ulcer with hemorrhage and perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.21''', NULL, + '(531.21) Acute gastric ulcer with hemorrhage and perforation, with obstruction', '(531.21) Acute gastric ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.1''', NULL, + 'Acute gastric ulcer with perforation (531.1)', 'Acute gastric ulcer with perforation (531.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\(531.10) Acute gastric ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\(531.10) Acute gastric ulcer with perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.10''', NULL, + '(531.10) Acute gastric ulcer with perforation, without mention of obstruction', '(531.10) Acute gastric ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\(531.11) Acute gastric ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\(531.11) Acute gastric ulcer with perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.11''', NULL, + '(531.11) Acute gastric ulcer with perforation, with obstruction', '(531.11) Acute gastric ulcer with perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.3''', NULL, + 'Acute gastric ulcer without mention of hemorrhage or perforation (531.3)', 'Acute gastric ulcer without mention of hemorrhage or perforation (531.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\(531.30) Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\(531.30) Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.30''', NULL, + '(531.30) Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(531.30) Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\(531.31) Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\(531.31) Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.31''', NULL, + '(531.31) Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction', '(531.31) Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.7''', NULL, + 'Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)', 'Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\(531.70) Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\(531.70) Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.70''', NULL, + '(531.70) Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(531.70) Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\(531.71) Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\(531.71) Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.71''', NULL, + '(531.71) Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction', '(531.71) Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.4''', NULL, + 'Chronic or unspecified gastric ulcer with hemorrhage (531.4)', 'Chronic or unspecified gastric ulcer with hemorrhage (531.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\(531.40) Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\(531.40) Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.40''', NULL, + '(531.40) Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction', '(531.40) Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\(531.41) Chronic or unspecified gastric ulcer with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\(531.41) Chronic or unspecified gastric ulcer with hemorrhage, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.41''', NULL, + '(531.41) Chronic or unspecified gastric ulcer with hemorrhage, with obstruction', '(531.41) Chronic or unspecified gastric ulcer with hemorrhage, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.6''', NULL, + 'Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)', 'Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\(531.60) Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\(531.60) Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.60''', NULL, + '(531.60) Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction', '(531.60) Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\(531.61) Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\(531.61) Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.61''', NULL, + '(531.61) Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction', '(531.61) Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.5''', NULL, + 'Chronic or unspecified gastric ulcer with perforation (531.5)', 'Chronic or unspecified gastric ulcer with perforation (531.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\(531.50) Chronic or unspecified gastric ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\(531.50) Chronic or unspecified gastric ulcer with perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.50''', NULL, + '(531.50) Chronic or unspecified gastric ulcer with perforation, without mention of obstruction', '(531.50) Chronic or unspecified gastric ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\(531.51) Chronic or unspecified gastric ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\(531.51) Chronic or unspecified gastric ulcer with perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.51''', NULL, + '(531.51) Chronic or unspecified gastric ulcer with perforation, with obstruction', '(531.51) Chronic or unspecified gastric ulcer with perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.9''', NULL, + 'Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)', 'Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\(531.90) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\(531.90) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.90''', NULL, + '(531.90) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', '(531.90) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\(531.91) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\(531.91) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.91''', NULL, + '(531.91) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', '(531.91) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535''', NULL, + 'Gastritis and duodenitis (535)', 'Gastritis and duodenitis (535)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.0''', NULL, + 'Acute gastritis (535.0)', 'Acute gastritis (535.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\(535.00) Acute gastritis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\(535.00) Acute gastritis, without mention of hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.00''', NULL, + '(535.00) Acute gastritis, without mention of hemorrhage', '(535.00) Acute gastritis, without mention of hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\(535.01) Acute gastritis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\(535.01) Acute gastritis, with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.01''', NULL, + '(535.01) Acute gastritis, with hemorrhage', '(535.01) Acute gastritis, with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.3''', NULL, + 'Alcoholic gastritis (535.3)', 'Alcoholic gastritis (535.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\(535.30) Alcoholic gastritis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\(535.30) Alcoholic gastritis, without mention of hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.30''', NULL, + '(535.30) Alcoholic gastritis, without mention of hemorrhage', '(535.30) Alcoholic gastritis, without mention of hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\(535.31) Alcoholic gastritis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\(535.31) Alcoholic gastritis, with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.31''', NULL, + '(535.31) Alcoholic gastritis, with hemorrhage', '(535.31) Alcoholic gastritis, with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.1''', NULL, + 'Atrophic gastritis (535.1)', 'Atrophic gastritis (535.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\(535.10) Atrophic gastritis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\(535.10) Atrophic gastritis, without mention of hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.10''', NULL, + '(535.10) Atrophic gastritis, without mention of hemorrhage', '(535.10) Atrophic gastritis, without mention of hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\(535.11) Atrophic gastritis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\(535.11) Atrophic gastritis, with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.11''', NULL, + '(535.11) Atrophic gastritis, with hemorrhage', '(535.11) Atrophic gastritis, with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.6''', NULL, + 'Duodenitis (535.6)', 'Duodenitis (535.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\(535.60) Duodenitis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\(535.60) Duodenitis, without mention of hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.60''', NULL, + '(535.60) Duodenitis, without mention of hemorrhage', '(535.60) Duodenitis, without mention of hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\(535.61) Duodenitis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\(535.61) Duodenitis, with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.61''', NULL, + '(535.61) Duodenitis, with hemorrhage', '(535.61) Duodenitis, with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Eosinophilic gastritis (535.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Eosinophilic gastritis (535.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.7''', NULL, + 'Eosinophilic gastritis (535.7)', 'Eosinophilic gastritis (535.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Eosinophilic gastritis (535.7)\(535.70) Eosinophilic gastritis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Eosinophilic gastritis (535.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Eosinophilic gastritis (535.7)\(535.70) Eosinophilic gastritis, without mention of hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.70''', NULL, + '(535.70) Eosinophilic gastritis, without mention of hemorrhage', '(535.70) Eosinophilic gastritis, without mention of hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.2''', NULL, + 'Gastric mucosal hypertrophy (535.2)', 'Gastric mucosal hypertrophy (535.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\(535.20) Gastric mucosal hypertrophy, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\(535.20) Gastric mucosal hypertrophy, without mention of hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.20''', NULL, + '(535.20) Gastric mucosal hypertrophy, without mention of hemorrhage', '(535.20) Gastric mucosal hypertrophy, without mention of hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\(535.21) Gastric mucosal hypertrophy, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\(535.21) Gastric mucosal hypertrophy, with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.21''', NULL, + '(535.21) Gastric mucosal hypertrophy, with hemorrhage', '(535.21) Gastric mucosal hypertrophy, with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.4''', NULL, + 'Other specified gastritis (535.4)', 'Other specified gastritis (535.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\(535.40) Other specified gastritis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\(535.40) Other specified gastritis, without mention of hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.40''', NULL, + '(535.40) Other specified gastritis, without mention of hemorrhage', '(535.40) Other specified gastritis, without mention of hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\(535.41) Other specified gastritis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\(535.41) Other specified gastritis, with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.41''', NULL, + '(535.41) Other specified gastritis, with hemorrhage', '(535.41) Other specified gastritis, with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.5''', NULL, + 'Unspecified gastritis and gastroduodenitis (535.5)', 'Unspecified gastritis and gastroduodenitis (535.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\(535.50) Unspecified gastritis and gastroduodenitis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\(535.50) Unspecified gastritis and gastroduodenitis, without mention of hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.50''', NULL, + '(535.50) Unspecified gastritis and gastroduodenitis, without mention of hemorrhage', '(535.50) Unspecified gastritis and gastroduodenitis, without mention of hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\(535.51) Unspecified gastritis and gastroduodenitis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\(535.51) Unspecified gastritis and gastroduodenitis, with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.51''', NULL, + '(535.51) Unspecified gastritis and gastroduodenitis, with hemorrhage', '(535.51) Unspecified gastritis and gastroduodenitis, with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534''', NULL, + 'Gastrojejunal ulcer (534)', 'Gastrojejunal ulcer (534)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.0''', NULL, + 'Acute gastrojejunal ulcer with hemorrhage (534.0)', 'Acute gastrojejunal ulcer with hemorrhage (534.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\(534.00) Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\(534.00) Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.00''', NULL, + '(534.00) Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction', '(534.00) Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\(534.01) Acute gastrojejunal ulcer, with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\(534.01) Acute gastrojejunal ulcer, with hemorrhage, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.01''', NULL, + '(534.01) Acute gastrojejunal ulcer, with hemorrhage, with obstruction', '(534.01) Acute gastrojejunal ulcer, with hemorrhage, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.2''', NULL, + 'Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)', 'Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\(534.20) Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\(534.20) Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.20''', NULL, + '(534.20) Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction', '(534.20) Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\(534.21) Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\(534.21) Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.21''', NULL, + '(534.21) Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction', '(534.21) Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.1''', NULL, + 'Acute gastrojejunal ulcer with perforation (534.1)', 'Acute gastrojejunal ulcer with perforation (534.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\(534.10) Acute gastrojejunal ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\(534.10) Acute gastrojejunal ulcer with perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.10''', NULL, + '(534.10) Acute gastrojejunal ulcer with perforation, without mention of obstruction', '(534.10) Acute gastrojejunal ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\(534.11) Acute gastrojejunal ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\(534.11) Acute gastrojejunal ulcer with perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.11''', NULL, + '(534.11) Acute gastrojejunal ulcer with perforation, with obstruction', '(534.11) Acute gastrojejunal ulcer with perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.3''', NULL, + 'Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)', 'Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\(534.30) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\(534.30) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.30''', NULL, + '(534.30) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(534.30) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\(534.31) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\(534.31) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.31''', NULL, + '(534.31) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction', '(534.31) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.7''', NULL, + 'Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)', 'Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\(534.70) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\(534.70) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.70''', NULL, + '(534.70) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(534.70) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\(534.71) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\(534.71) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.71''', NULL, + '(534.71) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction', '(534.71) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.4''', NULL, + 'Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)', 'Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\(534.40) Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\(534.40) Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.40''', NULL, + '(534.40) Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction', '(534.40) Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\(534.41) Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\(534.41) Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.41''', NULL, + '(534.41) Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction', '(534.41) Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.6''', NULL, + 'Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)', 'Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\(534.60) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\(534.60) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.60''', NULL, + '(534.60) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction', '(534.60) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\(534.61) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\(534.61) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.61''', NULL, + '(534.61) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction', '(534.61) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.5''', NULL, + 'Chronic or unspecified gastrojejunal ulcer with perforation (534.5)', 'Chronic or unspecified gastrojejunal ulcer with perforation (534.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\(534.50) Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\(534.50) Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.50''', NULL, + '(534.50) Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction', '(534.50) Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\(534.51) Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\(534.51) Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.51''', NULL, + '(534.51) Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction', '(534.51) Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.9''', NULL, + 'Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)', 'Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\(534.90) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\(534.90) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.90''', NULL, + '(534.90) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', '(534.90) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\(534.91) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\(534.91) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.91''', NULL, + '(534.91) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', '(534.91) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537''', NULL, + 'Other disorders of stomach and duodenum (537)', 'Other disorders of stomach and duodenum (537)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.0) Acquired hypertrophic pyloric stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.0) Acquired hypertrophic pyloric stenosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.0''', NULL, + '(537.0) Acquired hypertrophic pyloric stenosis', '(537.0) Acquired hypertrophic pyloric stenosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.1) Gastric diverticulum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.1) Gastric diverticulum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.1''', NULL, + '(537.1) Gastric diverticulum', '(537.1) Gastric diverticulum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.2) Chronic duodenal ileus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.2) Chronic duodenal ileus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.2''', NULL, + '(537.2) Chronic duodenal ileus', '(537.2) Chronic duodenal ileus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.3) Other obstruction of duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.3) Other obstruction of duodenum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.3''', NULL, + '(537.3) Other obstruction of duodenum', '(537.3) Other obstruction of duodenum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.4) Fistula of stomach or duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.4) Fistula of stomach or duodenum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.4''', NULL, + '(537.4) Fistula of stomach or duodenum', '(537.4) Fistula of stomach or duodenum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.5) Gastroptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.5) Gastroptosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.5''', NULL, + '(537.5) Gastroptosis', '(537.5) Gastroptosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.6) Hourglass stricture or stenosis of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.6) Hourglass stricture or stenosis of stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.6''', NULL, + '(537.6) Hourglass stricture or stenosis of stomach', '(537.6) Hourglass stricture or stenosis of stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.9) Unspecified disorder of stomach and duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.9) Unspecified disorder of stomach and duodenum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.9''', NULL, + '(537.9) Unspecified disorder of stomach and duodenum', '(537.9) Unspecified disorder of stomach and duodenum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.8''', NULL, + 'Other specified disorders of stomach and duodenum (537.8)', 'Other specified disorders of stomach and duodenum (537.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.81) Pylorospasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.81) Pylorospasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.81''', NULL, + '(537.81) Pylorospasm', '(537.81) Pylorospasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.82) Angiodysplasia of stomach and duodenum without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.82) Angiodysplasia of stomach and duodenum without mention of hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.82''', NULL, + '(537.82) Angiodysplasia of stomach and duodenum without mention of hemorrhage', '(537.82) Angiodysplasia of stomach and duodenum without mention of hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.83) Angiodysplasia of stomach and duodenum with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.83) Angiodysplasia of stomach and duodenum with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.83''', NULL, + '(537.83) Angiodysplasia of stomach and duodenum with hemorrhage', '(537.83) Angiodysplasia of stomach and duodenum with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.84) Dieulafoy lesion (hemorrhagic) of stomach and duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.84) Dieulafoy lesion (hemorrhagic) of stomach and duodenum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.84) Dieulafoy lesion (hemorrhagic''', NULL, + '(537.84) Dieulafoy lesion (hemorrhagic) of stomach and duodenum', '(537.84) Dieulafoy lesion (hemorrhagic) of stomach and duodenum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.89) Other specified disorders of stomach and duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.89) Other specified disorders of stomach and duodenum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.89''', NULL, + '(537.89) Other specified disorders of stomach and duodenum', '(537.89) Other specified disorders of stomach and duodenum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533''', NULL, + 'Peptic ulcer, site unspecified (533)', 'Peptic ulcer, site unspecified (533)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.0''', NULL, + 'Acute peptic ulcer of unspecified site with hemorrhage (533.0)', 'Acute peptic ulcer of unspecified site with hemorrhage (533.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\(533.00) Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\(533.00) Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.00''', NULL, + '(533.00) Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction', '(533.00) Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\(533.01) Acute peptic ulcer of unspecified site with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\(533.01) Acute peptic ulcer of unspecified site with hemorrhage, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.01''', NULL, + '(533.01) Acute peptic ulcer of unspecified site with hemorrhage, with obstruction', '(533.01) Acute peptic ulcer of unspecified site with hemorrhage, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.2''', NULL, + 'Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)', 'Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\(533.20) Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\(533.20) Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.20''', NULL, + '(533.20) Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction', '(533.20) Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\(533.21) Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\(533.21) Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.21''', NULL, + '(533.21) Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction', '(533.21) Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.1''', NULL, + 'Acute peptic ulcer of unspecified site with perforation (533.1)', 'Acute peptic ulcer of unspecified site with perforation (533.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\(533.10) Acute peptic ulcer of unspecified site with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\(533.10) Acute peptic ulcer of unspecified site with perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.10''', NULL, + '(533.10) Acute peptic ulcer of unspecified site with perforation, without mention of obstruction', '(533.10) Acute peptic ulcer of unspecified site with perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\(533.11) Acute peptic ulcer of unspecified site with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\(533.11) Acute peptic ulcer of unspecified site with perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.11''', NULL, + '(533.11) Acute peptic ulcer of unspecified site with perforation, with obstruction', '(533.11) Acute peptic ulcer of unspecified site with perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.3''', NULL, + 'Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)', 'Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\(533.30) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\(533.30) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.30''', NULL, + '(533.30) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, without mention of obstruction', '(533.30) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\(533.31) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\(533.31) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.31''', NULL, + '(533.31) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction', '(533.31) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.4''', NULL, + 'Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)', 'Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\(533.40) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\(533.40) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.40''', NULL, + '(533.40) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction', '(533.40) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\(533.41) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\(533.41) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.41''', NULL, + '(533.41) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction', '(533.41) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.6''', NULL, + 'Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)', 'Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\(533.60) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\(533.60) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.60''', NULL, + '(533.60) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction', '(533.60) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\(533.61) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\(533.61) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.61''', NULL, + '(533.61) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction', '(533.61) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.5''', NULL, + 'Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)', 'Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\(533.50) Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\(533.50) Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.50''', NULL, + '(533.50) Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction', '(533.50) Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\(533.51) Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\(533.51) Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.51''', NULL, + '(533.51) Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction', '(533.51) Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.7''', NULL, + 'Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)', 'Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\(533.70) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\(533.70) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.70''', NULL, + '(533.70) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction', '(533.70) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\(533.71) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\(533.71) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.71''', NULL, + '(533.71) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, with obstruction', '(533.71) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.9''', NULL, + 'Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)', 'Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\(533.90) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\(533.90) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.90''', NULL, + '(533.90) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', '(533.90) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\(533.91) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\(533.91) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.91''', NULL, + '(533.91) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', '(533.91) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''520'' AND ''529.99''', NULL, + 'Diseases of oral cavity, salivary glands, and jaws (520-529.99)', 'Diseases of oral cavity, salivary glands, and jaws (520-529.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524''', NULL, + 'Dentofacial anomalies, including malocclusion (524)', 'Dentofacial anomalies, including malocclusion (524)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\(524.4) Malocclusion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\(524.4) Malocclusion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.4''', NULL, + '(524.4) Malocclusion, unspecified', '(524.4) Malocclusion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\(524.9) Unspecified dentofacial anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\(524.9) Unspecified dentofacial anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.9''', NULL, + '(524.9) Unspecified dentofacial anomalies', '(524.9) Unspecified dentofacial anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.2''', NULL, + 'Anomalies of dental arch relationship (524.2)', 'Anomalies of dental arch relationship (524.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.20) Unspecified anomaly of dental arch relationship\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.20) Unspecified anomaly of dental arch relationship\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.20''', NULL, + '(524.20) Unspecified anomaly of dental arch relationship', '(524.20) Unspecified anomaly of dental arch relationship', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.21) Malocclusion, Angle''s class I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.21) Malocclusion, Angle''s class I\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.21''', NULL, + '(524.21) Malocclusion, Angle''s class I', '(524.21) Malocclusion, Angle''s class I', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.22) Malocclusion, Angle''s class II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.22) Malocclusion, Angle''s class II\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.22''', NULL, + '(524.22) Malocclusion, Angle''s class II', '(524.22) Malocclusion, Angle''s class II', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.23) Malocclusion, Angle''s class III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.23) Malocclusion, Angle''s class III\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.23''', NULL, + '(524.23) Malocclusion, Angle''s class III', '(524.23) Malocclusion, Angle''s class III', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.24) Open anterior occlusal relationship\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.24) Open anterior occlusal relationship\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.24''', NULL, + '(524.24) Open anterior occlusal relationship', '(524.24) Open anterior occlusal relationship', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.25) Open posterior occlusal relationship\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.25) Open posterior occlusal relationship\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.25''', NULL, + '(524.25) Open posterior occlusal relationship', '(524.25) Open posterior occlusal relationship', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.26) Excessive horizontal overlap\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.26) Excessive horizontal overlap\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.26''', NULL, + '(524.26) Excessive horizontal overlap', '(524.26) Excessive horizontal overlap', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.27) Reverse articulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.27) Reverse articulation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.27''', NULL, + '(524.27) Reverse articulation', '(524.27) Reverse articulation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.28) Anomalies of interarch distance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.28) Anomalies of interarch distance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.28''', NULL, + '(524.28) Anomalies of interarch distance', '(524.28) Anomalies of interarch distance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.29) Other anomalies of dental arch relationship\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.29) Other anomalies of dental arch relationship\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.29''', NULL, + '(524.29) Other anomalies of dental arch relationship', '(524.29) Other anomalies of dental arch relationship', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.1''', NULL, + 'Anomalies of relationship of jaw to cranial base (524.1)', 'Anomalies of relationship of jaw to cranial base (524.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.10) Anomalies of relationship of jaw to cranial base, unspecified anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.10) Anomalies of relationship of jaw to cranial base, unspecified anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.10''', NULL, + '(524.10) Anomalies of relationship of jaw to cranial base, unspecified anomaly', '(524.10) Anomalies of relationship of jaw to cranial base, unspecified anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.11) Anomalies of relationship of jaw to cranial base, maxillary asymmetry\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.11) Anomalies of relationship of jaw to cranial base, maxillary asymmetry\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.11''', NULL, + '(524.11) Anomalies of relationship of jaw to cranial base, maxillary asymmetry', '(524.11) Anomalies of relationship of jaw to cranial base, maxillary asymmetry', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.12) Anomalies of relationship of jaw to cranial base, other jaw asymmetry\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.12) Anomalies of relationship of jaw to cranial base, other jaw asymmetry\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.12''', NULL, + '(524.12) Anomalies of relationship of jaw to cranial base, other jaw asymmetry', '(524.12) Anomalies of relationship of jaw to cranial base, other jaw asymmetry', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.19) Anomalies of relationship of jaw to cranial base, other specified anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.19) Anomalies of relationship of jaw to cranial base, other specified anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.19''', NULL, + '(524.19) Anomalies of relationship of jaw to cranial base, other specified anomaly', '(524.19) Anomalies of relationship of jaw to cranial base, other specified anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.3''', NULL, + 'Anomalies of tooth position of fully erupted teeth (524.3)', 'Anomalies of tooth position of fully erupted teeth (524.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.30) Unspecified anomaly of tooth position\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.30) Unspecified anomaly of tooth position\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.30''', NULL, + '(524.30) Unspecified anomaly of tooth position', '(524.30) Unspecified anomaly of tooth position', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.31) Crowding of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.31) Crowding of teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.31''', NULL, + '(524.31) Crowding of teeth', '(524.31) Crowding of teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.32) Excessive spacing of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.32) Excessive spacing of teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.32''', NULL, + '(524.32) Excessive spacing of teeth', '(524.32) Excessive spacing of teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.33) Horizontal displacement of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.33) Horizontal displacement of teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.33''', NULL, + '(524.33) Horizontal displacement of teeth', '(524.33) Horizontal displacement of teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.34) Vertical displacement of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.34) Vertical displacement of teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.34''', NULL, + '(524.34) Vertical displacement of teeth', '(524.34) Vertical displacement of teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.35) Rotation of tooth/teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.35) Rotation of tooth/teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.35''', NULL, + '(524.35) Rotation of tooth/teeth', '(524.35) Rotation of tooth/teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.36) Insufficient interocclusal distance of teeth (ridge)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.36) Insufficient interocclusal distance of teeth (ridge)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.36) Insufficient interocclusal distance of teeth (ridge''', NULL, + '(524.36) Insufficient interocclusal distance of teeth (ridge)', '(524.36) Insufficient interocclusal distance of teeth (ridge)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.37) Excessive interocclusal distance of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.37) Excessive interocclusal distance of teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.37''', NULL, + '(524.37) Excessive interocclusal distance of teeth', '(524.37) Excessive interocclusal distance of teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.39) Other anomalies of tooth position\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.39) Other anomalies of tooth position\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.39''', NULL, + '(524.39) Other anomalies of tooth position', '(524.39) Other anomalies of tooth position', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.7''', NULL, + 'Dental alveolar anomalies (524.7)', 'Dental alveolar anomalies (524.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.70) Dental alveolar anomalies, unspecified alveolar anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.70) Dental alveolar anomalies, unspecified alveolar anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.70''', NULL, + '(524.70) Dental alveolar anomalies, unspecified alveolar anomaly', '(524.70) Dental alveolar anomalies, unspecified alveolar anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.71) Alveolar maxillary hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.71) Alveolar maxillary hyperplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.71''', NULL, + '(524.71) Alveolar maxillary hyperplasia', '(524.71) Alveolar maxillary hyperplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.72) Alveolar mandibular hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.72) Alveolar mandibular hyperplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.72''', NULL, + '(524.72) Alveolar mandibular hyperplasia', '(524.72) Alveolar mandibular hyperplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.73) Alveolar maxillary hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.73) Alveolar maxillary hypoplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.73''', NULL, + '(524.73) Alveolar maxillary hypoplasia', '(524.73) Alveolar maxillary hypoplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.74) Alveolar mandibular hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.74) Alveolar mandibular hypoplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.74''', NULL, + '(524.74) Alveolar mandibular hypoplasia', '(524.74) Alveolar mandibular hypoplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.75) Vertical displacement of alveolus and teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.75) Vertical displacement of alveolus and teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.75''', NULL, + '(524.75) Vertical displacement of alveolus and teeth', '(524.75) Vertical displacement of alveolus and teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.76) Occlusal plane deviation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.76) Occlusal plane deviation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.76''', NULL, + '(524.76) Occlusal plane deviation', '(524.76) Occlusal plane deviation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.79) Other specified alveolar anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.79) Other specified alveolar anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.79''', NULL, + '(524.79) Other specified alveolar anomaly', '(524.79) Other specified alveolar anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.5''', NULL, + 'Dentofacial functional abnormalities (524.5)', 'Dentofacial functional abnormalities (524.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.50) Dentofacial functional abnormality, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.50) Dentofacial functional abnormality, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.50''', NULL, + '(524.50) Dentofacial functional abnormality, unspecified', '(524.50) Dentofacial functional abnormality, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.51) Abnormal jaw closure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.51) Abnormal jaw closure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.51''', NULL, + '(524.51) Abnormal jaw closure', '(524.51) Abnormal jaw closure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.52) Limited mandibular range of motion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.52) Limited mandibular range of motion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.52''', NULL, + '(524.52) Limited mandibular range of motion', '(524.52) Limited mandibular range of motion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.53) Deviation in opening and closing of the mandible\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.53) Deviation in opening and closing of the mandible\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.53''', NULL, + '(524.53) Deviation in opening and closing of the mandible', '(524.53) Deviation in opening and closing of the mandible', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.54) Insufficient anterior guidance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.54) Insufficient anterior guidance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.54''', NULL, + '(524.54) Insufficient anterior guidance', '(524.54) Insufficient anterior guidance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.55) Centric occlusion maximum intercuspation discrepancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.55) Centric occlusion maximum intercuspation discrepancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.55''', NULL, + '(524.55) Centric occlusion maximum intercuspation discrepancy', '(524.55) Centric occlusion maximum intercuspation discrepancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.56) Non-working side interference\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.56) Non-working side interference\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.56''', NULL, + '(524.56) Non-working side interference', '(524.56) Non-working side interference', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.57) Lack of posterior occlusal support\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.57) Lack of posterior occlusal support\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.57''', NULL, + '(524.57) Lack of posterior occlusal support', '(524.57) Lack of posterior occlusal support', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.59) Other dentofacial functional abnormalities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.59) Other dentofacial functional abnormalities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.59''', NULL, + '(524.59) Other dentofacial functional abnormalities', '(524.59) Other dentofacial functional abnormalities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.0''', NULL, + 'Major anomalies of jaw size (524.0)', 'Major anomalies of jaw size (524.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.00) Major anomalies of jaw size, unspecified anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.00) Major anomalies of jaw size, unspecified anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.00''', NULL, + '(524.00) Major anomalies of jaw size, unspecified anomaly', '(524.00) Major anomalies of jaw size, unspecified anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.01) Major anomalies of jaw size, maxillary hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.01) Major anomalies of jaw size, maxillary hyperplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.01''', NULL, + '(524.01) Major anomalies of jaw size, maxillary hyperplasia', '(524.01) Major anomalies of jaw size, maxillary hyperplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.02) Major anomalies of jaw size, mandibular hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.02) Major anomalies of jaw size, mandibular hyperplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.02''', NULL, + '(524.02) Major anomalies of jaw size, mandibular hyperplasia', '(524.02) Major anomalies of jaw size, mandibular hyperplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.03) Major anomalies of jaw size, maxillary hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.03) Major anomalies of jaw size, maxillary hypoplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.03''', NULL, + '(524.03) Major anomalies of jaw size, maxillary hypoplasia', '(524.03) Major anomalies of jaw size, maxillary hypoplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.04) Major anomalies of jaw size, mandibular hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.04) Major anomalies of jaw size, mandibular hypoplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.04''', NULL, + '(524.04) Major anomalies of jaw size, mandibular hypoplasia', '(524.04) Major anomalies of jaw size, mandibular hypoplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.05) Major anomalies of jaw size, macrogenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.05) Major anomalies of jaw size, macrogenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.05''', NULL, + '(524.05) Major anomalies of jaw size, macrogenia', '(524.05) Major anomalies of jaw size, macrogenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.06) Major anomalies of jaw size, microgenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.06) Major anomalies of jaw size, microgenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.06''', NULL, + '(524.06) Major anomalies of jaw size, microgenia', '(524.06) Major anomalies of jaw size, microgenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.07) Excessive tuberosity of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.07) Excessive tuberosity of jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.07''', NULL, + '(524.07) Excessive tuberosity of jaw', '(524.07) Excessive tuberosity of jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.09) Major anomalies of jaw size, other specified anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.09) Major anomalies of jaw size, other specified anomaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.09''', NULL, + '(524.09) Major anomalies of jaw size, other specified anomaly', '(524.09) Major anomalies of jaw size, other specified anomaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.8''', NULL, + 'Other specified dentofacial anomalies (524.8)', 'Other specified dentofacial anomalies (524.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.81) Anterior soft tissue impingement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.81) Anterior soft tissue impingement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.81''', NULL, + '(524.81) Anterior soft tissue impingement', '(524.81) Anterior soft tissue impingement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.82) Posterior soft tissue impingement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.82) Posterior soft tissue impingement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.82''', NULL, + '(524.82) Posterior soft tissue impingement', '(524.82) Posterior soft tissue impingement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.89) Other specified dentofacial anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.89) Other specified dentofacial anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.89''', NULL, + '(524.89) Other specified dentofacial anomalies', '(524.89) Other specified dentofacial anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.6''', NULL, + 'Temporomandibular joint disorders (524.6)', 'Temporomandibular joint disorders (524.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.60) Temporomandibular joint disorders, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.60) Temporomandibular joint disorders, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.60''', NULL, + '(524.60) Temporomandibular joint disorders, unspecified', '(524.60) Temporomandibular joint disorders, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous''', NULL, + '(524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)', '(524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.62) Temporomandibular joint disorders, arthralgia of temporomandibular joint\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.62) Temporomandibular joint disorders, arthralgia of temporomandibular joint\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.62''', NULL, + '(524.62) Temporomandibular joint disorders, arthralgia of temporomandibular joint', '(524.62) Temporomandibular joint disorders, arthralgia of temporomandibular joint', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non'' AND ''reducing''', NULL, + '(524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)', '(524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.64) Temporomandibular joint sounds on opening and/or closing the jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.64) Temporomandibular joint sounds on opening and/or closing the jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.64''', NULL, + '(524.64) Temporomandibular joint sounds on opening and/or closing the jaw', '(524.64) Temporomandibular joint sounds on opening and/or closing the jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.69) Other specified temporomandibular joint disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.69) Other specified temporomandibular joint disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.69''', NULL, + '(524.69) Other specified temporomandibular joint disorders', '(524.69) Other specified temporomandibular joint disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529''', NULL, + 'Diseases and other conditions of the tongue (529)', 'Diseases and other conditions of the tongue (529)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.0) Glossitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.0) Glossitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.0''', NULL, + '(529.0) Glossitis', '(529.0) Glossitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.1) Geographic tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.1) Geographic tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.1''', NULL, + '(529.1) Geographic tongue', '(529.1) Geographic tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.2) Median rhomboid glossitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.2) Median rhomboid glossitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.2''', NULL, + '(529.2) Median rhomboid glossitis', '(529.2) Median rhomboid glossitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.3) Hypertrophy of tongue papillae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.3) Hypertrophy of tongue papillae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.3''', NULL, + '(529.3) Hypertrophy of tongue papillae', '(529.3) Hypertrophy of tongue papillae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.4) Atrophy of tongue papillae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.4) Atrophy of tongue papillae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.4''', NULL, + '(529.4) Atrophy of tongue papillae', '(529.4) Atrophy of tongue papillae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.5) Plicated tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.5) Plicated tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.5''', NULL, + '(529.5) Plicated tongue', '(529.5) Plicated tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.6) Glossodynia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.6) Glossodynia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.6''', NULL, + '(529.6) Glossodynia', '(529.6) Glossodynia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.8) Other specified conditions of the tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.8) Other specified conditions of the tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.8''', NULL, + '(529.8) Other specified conditions of the tongue', '(529.8) Other specified conditions of the tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.9) Unspecified condition of the tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.9) Unspecified condition of the tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.9''', NULL, + '(529.9) Unspecified condition of the tongue', '(529.9) Unspecified condition of the tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521''', NULL, + 'Diseases of hard tissues of teeth (521)', 'Diseases of hard tissues of teeth (521)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.5) Hypercementosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.5) Hypercementosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.5''', NULL, + '(521.5) Hypercementosis', '(521.5) Hypercementosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.6) Ankylosis of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.6) Ankylosis of teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.6''', NULL, + '(521.6) Ankylosis of teeth', '(521.6) Ankylosis of teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.7) Intrinsic posteruptive color changes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.7) Intrinsic posteruptive color changes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.7''', NULL, + '(521.7) Intrinsic posteruptive color changes', '(521.7) Intrinsic posteruptive color changes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.9) Unspecified disease of hard tissues of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.9) Unspecified disease of hard tissues of teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.9''', NULL, + '(521.9) Unspecified disease of hard tissues of teeth', '(521.9) Unspecified disease of hard tissues of teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.2''', NULL, + 'Abrasion of teeth (521.2)', 'Abrasion of teeth (521.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.20) Abrasion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.20) Abrasion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.20''', NULL, + '(521.20) Abrasion, unspecified', '(521.20) Abrasion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.21) Abrasion, limited to enamel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.21) Abrasion, limited to enamel\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.21''', NULL, + '(521.21) Abrasion, limited to enamel', '(521.21) Abrasion, limited to enamel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.22) Abrasion, extending into dentine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.22) Abrasion, extending into dentine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.22''', NULL, + '(521.22) Abrasion, extending into dentine', '(521.22) Abrasion, extending into dentine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.23) Abrasion, extending into pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.23) Abrasion, extending into pulp\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.23''', NULL, + '(521.23) Abrasion, extending into pulp', '(521.23) Abrasion, extending into pulp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.24) Abrasion, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.24) Abrasion, localized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.24''', NULL, + '(521.24) Abrasion, localized', '(521.24) Abrasion, localized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.25) Abrasion, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.25) Abrasion, generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.25''', NULL, + '(521.25) Abrasion, generalized', '(521.25) Abrasion, generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.0''', NULL, + 'Dental caries (521.0)', 'Dental caries (521.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.00) Dental caries, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.00) Dental caries, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.00''', NULL, + '(521.00) Dental caries, unspecified', '(521.00) Dental caries, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.01) Dental caries limited to enamel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.01) Dental caries limited to enamel\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.01''', NULL, + '(521.01) Dental caries limited to enamel', '(521.01) Dental caries limited to enamel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.02) Dental caries extending into dentine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.02) Dental caries extending into dentine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.02''', NULL, + '(521.02) Dental caries extending into dentine', '(521.02) Dental caries extending into dentine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.03) Dental caries extending into pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.03) Dental caries extending into pulp\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.03''', NULL, + '(521.03) Dental caries extending into pulp', '(521.03) Dental caries extending into pulp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.04) Arrested dental caries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.04) Arrested dental caries\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.04''', NULL, + '(521.04) Arrested dental caries', '(521.04) Arrested dental caries', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.05) Odontoclasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.05) Odontoclasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.05''', NULL, + '(521.05) Odontoclasia', '(521.05) Odontoclasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.06) Dental caries pit and fissure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.06) Dental caries pit and fissure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.06''', NULL, + '(521.06) Dental caries pit and fissure', '(521.06) Dental caries pit and fissure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.07) Dental caries of smooth surface\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.07) Dental caries of smooth surface\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.07''', NULL, + '(521.07) Dental caries of smooth surface', '(521.07) Dental caries of smooth surface', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.08) Dental caries of root surface\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.08) Dental caries of root surface\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.08''', NULL, + '(521.08) Dental caries of root surface', '(521.08) Dental caries of root surface', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.09) Other dental caries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.09) Other dental caries\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.09''', NULL, + '(521.09) Other dental caries', '(521.09) Other dental caries', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.3''', NULL, + 'Erosion of teeth (521.3)', 'Erosion of teeth (521.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.30) Erosion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.30) Erosion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.30''', NULL, + '(521.30) Erosion, unspecified', '(521.30) Erosion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.31) Erosion, limited to enamel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.31) Erosion, limited to enamel\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.31''', NULL, + '(521.31) Erosion, limited to enamel', '(521.31) Erosion, limited to enamel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.32) Erosion, extending into dentine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.32) Erosion, extending into dentine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.32''', NULL, + '(521.32) Erosion, extending into dentine', '(521.32) Erosion, extending into dentine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.33) Erosion, extending into pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.33) Erosion, extending into pulp\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.33''', NULL, + '(521.33) Erosion, extending into pulp', '(521.33) Erosion, extending into pulp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.34) Erosion, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.34) Erosion, localized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.34''', NULL, + '(521.34) Erosion, localized', '(521.34) Erosion, localized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.35) Erosion, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.35) Erosion, generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.35''', NULL, + '(521.35) Erosion, generalized', '(521.35) Erosion, generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.1''', NULL, + 'Excessive dental attrition [approximal wear] [occlusal wear] (521.1)', 'Excessive dental attrition [approximal wear] [occlusal wear] (521.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.10) Excessive attrition, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.10) Excessive attrition, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.10''', NULL, + '(521.10) Excessive attrition, unspecified', '(521.10) Excessive attrition, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.11) Excessive attrition, limited to enamel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.11) Excessive attrition, limited to enamel\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.11''', NULL, + '(521.11) Excessive attrition, limited to enamel', '(521.11) Excessive attrition, limited to enamel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.12) Excessive attrition, extending into dentine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.12) Excessive attrition, extending into dentine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.12''', NULL, + '(521.12) Excessive attrition, extending into dentine', '(521.12) Excessive attrition, extending into dentine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.13) Excessive attrition, extending into pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.13) Excessive attrition, extending into pulp\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.13''', NULL, + '(521.13) Excessive attrition, extending into pulp', '(521.13) Excessive attrition, extending into pulp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.14) Excessive attrition, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.14) Excessive attrition, localized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.14''', NULL, + '(521.14) Excessive attrition, localized', '(521.14) Excessive attrition, localized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.15) Excessive attrition, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.15) Excessive attrition, generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.15''', NULL, + '(521.15) Excessive attrition, generalized', '(521.15) Excessive attrition, generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.8''', NULL, + 'Other specified diseases of hard tissues of teeth (521.8)', 'Other specified diseases of hard tissues of teeth (521.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\(521.81) Cracked tooth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\(521.81) Cracked tooth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.81''', NULL, + '(521.81) Cracked tooth', '(521.81) Cracked tooth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\(521.89) Other specific diseases of hard tissues of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\(521.89) Other specific diseases of hard tissues of teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.89''', NULL, + '(521.89) Other specific diseases of hard tissues of teeth', '(521.89) Other specific diseases of hard tissues of teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.4''', NULL, + 'Pathological tooth resorption (521.4)', 'Pathological tooth resorption (521.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.40) Pathological resorption, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.40) Pathological resorption, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.40''', NULL, + '(521.40) Pathological resorption, unspecified', '(521.40) Pathological resorption, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.41) Pathological resorption, internal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.41) Pathological resorption, internal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.41''', NULL, + '(521.41) Pathological resorption, internal', '(521.41) Pathological resorption, internal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.42) Pathological resorption, external\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.42) Pathological resorption, external\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.42''', NULL, + '(521.42) Pathological resorption, external', '(521.42) Pathological resorption, external', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.49) Other pathological resorption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.49) Other pathological resorption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.49''', NULL, + '(521.49) Other pathological resorption', '(521.49) Other pathological resorption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522''', NULL, + 'Diseases of pulp and periapical tissues (522)', 'Diseases of pulp and periapical tissues (522)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.0) Pulpitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.0) Pulpitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.0''', NULL, + '(522.0) Pulpitis', '(522.0) Pulpitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.1) Necrosis of the pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.1) Necrosis of the pulp\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.1''', NULL, + '(522.1) Necrosis of the pulp', '(522.1) Necrosis of the pulp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.2) Pulp degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.2) Pulp degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.2''', NULL, + '(522.2) Pulp degeneration', '(522.2) Pulp degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.3) Abnormal hard tissue formation in pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.3) Abnormal hard tissue formation in pulp\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.3''', NULL, + '(522.3) Abnormal hard tissue formation in pulp', '(522.3) Abnormal hard tissue formation in pulp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.4) Acute apical periodontitis of pulpal origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.4) Acute apical periodontitis of pulpal origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.4''', NULL, + '(522.4) Acute apical periodontitis of pulpal origin', '(522.4) Acute apical periodontitis of pulpal origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.5) Periapical abscess without sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.5) Periapical abscess without sinus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.5''', NULL, + '(522.5) Periapical abscess without sinus', '(522.5) Periapical abscess without sinus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.6) Chronic apical periodontitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.6) Chronic apical periodontitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.6''', NULL, + '(522.6) Chronic apical periodontitis', '(522.6) Chronic apical periodontitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.7) Periapical abscess with sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.7) Periapical abscess with sinus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.7''', NULL, + '(522.7) Periapical abscess with sinus', '(522.7) Periapical abscess with sinus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.8) Radicular cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.8) Radicular cyst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.8''', NULL, + '(522.8) Radicular cyst', '(522.8) Radicular cyst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.9) Other and unspecified diseases of pulp and periapical tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.9) Other and unspecified diseases of pulp and periapical tissues\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.9''', NULL, + '(522.9) Other and unspecified diseases of pulp and periapical tissues', '(522.9) Other and unspecified diseases of pulp and periapical tissues', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526''', NULL, + 'Diseases of the jaws (526)', 'Diseases of the jaws (526)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.0) Developmental odontogenic cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.0) Developmental odontogenic cysts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.0''', NULL, + '(526.0) Developmental odontogenic cysts', '(526.0) Developmental odontogenic cysts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.1) Fissural cysts of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.1) Fissural cysts of jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.1''', NULL, + '(526.1) Fissural cysts of jaw', '(526.1) Fissural cysts of jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.2) Other cysts of jaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.2) Other cysts of jaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.2''', NULL, + '(526.2) Other cysts of jaws', '(526.2) Other cysts of jaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.3) Central giant cell (reparative) granuloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.3) Central giant cell (reparative) granuloma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.3) Central giant cell (reparative''', NULL, + '(526.3) Central giant cell (reparative) granuloma', '(526.3) Central giant cell (reparative) granuloma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.4) Inflammatory conditions of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.4) Inflammatory conditions of jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.4''', NULL, + '(526.4) Inflammatory conditions of jaw', '(526.4) Inflammatory conditions of jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.5) Alveolitis of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.5) Alveolitis of jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.5''', NULL, + '(526.5) Alveolitis of jaw', '(526.5) Alveolitis of jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.9) Unspecified disease of the jaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.9) Unspecified disease of the jaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.9''', NULL, + '(526.9) Unspecified disease of the jaws', '(526.9) Unspecified disease of the jaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.8''', NULL, + 'Other specified diseases of the jaws (526.8)', 'Other specified diseases of the jaws (526.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\(526.81) Exostosis of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\(526.81) Exostosis of jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.81''', NULL, + '(526.81) Exostosis of jaw', '(526.81) Exostosis of jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\(526.89) Other specified diseases of the jaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\(526.89) Other specified diseases of the jaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.89''', NULL, + '(526.89) Other specified diseases of the jaws', '(526.89) Other specified diseases of the jaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.6''', NULL, + 'Periradicular pathology associated with previous endodontic treatment (526.6)', 'Periradicular pathology associated with previous endodontic treatment (526.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.61) Perforation of root canal space\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.61) Perforation of root canal space\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.61''', NULL, + '(526.61) Perforation of root canal space', '(526.61) Perforation of root canal space', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.62) Endodontic overfill\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.62) Endodontic overfill\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.62''', NULL, + '(526.62) Endodontic overfill', '(526.62) Endodontic overfill', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.63) Endodontic underfill\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.63) Endodontic underfill\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.63''', NULL, + '(526.63) Endodontic underfill', '(526.63) Endodontic underfill', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.69) Other periradicular pathology associated with previous endodontic treatment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.69) Other periradicular pathology associated with previous endodontic treatment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.69''', NULL, + '(526.69) Other periradicular pathology associated with previous endodontic treatment', '(526.69) Other periradicular pathology associated with previous endodontic treatment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528''', NULL, + 'Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)', 'Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.1) Cancrum oris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.1) Cancrum oris\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.1''', NULL, + '(528.1) Cancrum oris', '(528.1) Cancrum oris', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.2) Oral aphthae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.2) Oral aphthae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.2''', NULL, + '(528.2) Oral aphthae', '(528.2) Oral aphthae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.3) Cellulitis and abscess of oral soft tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.3) Cellulitis and abscess of oral soft tissues\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.3''', NULL, + '(528.3) Cellulitis and abscess of oral soft tissues', '(528.3) Cellulitis and abscess of oral soft tissues', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.4) Cysts of oral soft tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.4) Cysts of oral soft tissues\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.4''', NULL, + '(528.4) Cysts of oral soft tissues', '(528.4) Cysts of oral soft tissues', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.5) Diseases of lips\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.5) Diseases of lips\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.5''', NULL, + '(528.5) Diseases of lips', '(528.5) Diseases of lips', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.6) Leukoplakia of oral mucosa, including tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.6) Leukoplakia of oral mucosa, including tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.6''', NULL, + '(528.6) Leukoplakia of oral mucosa, including tongue', '(528.6) Leukoplakia of oral mucosa, including tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.8) Oral submucosal fibrosis, including of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.8) Oral submucosal fibrosis, including of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.8''', NULL, + '(528.8) Oral submucosal fibrosis, including of tongue', '(528.8) Oral submucosal fibrosis, including of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.9) Other and unspecified diseases of the oral soft tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.9) Other and unspecified diseases of the oral soft tissues\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.9''', NULL, + '(528.9) Other and unspecified diseases of the oral soft tissues', '(528.9) Other and unspecified diseases of the oral soft tissues', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.7''', NULL, + 'Other disturbances of oral epithelium, including tongue (528.7)', 'Other disturbances of oral epithelium, including tongue (528.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.71) Minimal keratinized residual ridge mucosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.71) Minimal keratinized residual ridge mucosa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.71''', NULL, + '(528.71) Minimal keratinized residual ridge mucosa', '(528.71) Minimal keratinized residual ridge mucosa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.72) Excessive keratinized residual ridge mucosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.72) Excessive keratinized residual ridge mucosa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.72''', NULL, + '(528.72) Excessive keratinized residual ridge mucosa', '(528.72) Excessive keratinized residual ridge mucosa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.79) Other disturbances of oral epithelium, including tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.79) Other disturbances of oral epithelium, including tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.79''', NULL, + '(528.79) Other disturbances of oral epithelium, including tongue', '(528.79) Other disturbances of oral epithelium, including tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''ulcerative) (528.0''', NULL, + 'Stomatitis and mucositis (ulcerative) (528.0)', 'Stomatitis and mucositis (ulcerative) (528.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.00) Stomatitis and mucositis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.00) Stomatitis and mucositis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.00''', NULL, + '(528.00) Stomatitis and mucositis, unspecified', '(528.00) Stomatitis and mucositis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.01) Mucositis (ulcerative) due to antineoplastic therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.01) Mucositis (ulcerative) due to antineoplastic therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.01) Mucositis (ulcerative''', NULL, + '(528.01) Mucositis (ulcerative) due to antineoplastic therapy', '(528.01) Mucositis (ulcerative) due to antineoplastic therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.02) Mucositis (ulcerative) due to other drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.02) Mucositis (ulcerative) due to other drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.02) Mucositis (ulcerative''', NULL, + '(528.02) Mucositis (ulcerative) due to other drugs', '(528.02) Mucositis (ulcerative) due to other drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.09) Other stomatitis and mucositis (ulcerative)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.09) Other stomatitis and mucositis (ulcerative)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.09) Other stomatitis and mucositis (ulcerative''', NULL, + '(528.09) Other stomatitis and mucositis (ulcerative)', '(528.09) Other stomatitis and mucositis (ulcerative)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527''', NULL, + 'Diseases of the salivary glands (527)', 'Diseases of the salivary glands (527)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.0) Atrophy of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.0) Atrophy of salivary gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.0''', NULL, + '(527.0) Atrophy of salivary gland', '(527.0) Atrophy of salivary gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.1) Hypertrophy of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.1) Hypertrophy of salivary gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.1''', NULL, + '(527.1) Hypertrophy of salivary gland', '(527.1) Hypertrophy of salivary gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.2) Sialoadenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.2) Sialoadenitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.2''', NULL, + '(527.2) Sialoadenitis', '(527.2) Sialoadenitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.3) Abscess of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.3) Abscess of salivary gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.3''', NULL, + '(527.3) Abscess of salivary gland', '(527.3) Abscess of salivary gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.4) Fistula of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.4) Fistula of salivary gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.4''', NULL, + '(527.4) Fistula of salivary gland', '(527.4) Fistula of salivary gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.5) Sialolithiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.5) Sialolithiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.5''', NULL, + '(527.5) Sialolithiasis', '(527.5) Sialolithiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.6) Mucocele of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.6) Mucocele of salivary gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.6''', NULL, + '(527.6) Mucocele of salivary gland', '(527.6) Mucocele of salivary gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.7) Disturbance of salivary secretion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.7) Disturbance of salivary secretion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.7''', NULL, + '(527.7) Disturbance of salivary secretion', '(527.7) Disturbance of salivary secretion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.8) Other specified diseases of the salivary glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.8) Other specified diseases of the salivary glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.8''', NULL, + '(527.8) Other specified diseases of the salivary glands', '(527.8) Other specified diseases of the salivary glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.9) Unspecified disease of the salivary glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.9) Unspecified disease of the salivary glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.9''', NULL, + '(527.9) Unspecified disease of the salivary glands', '(527.9) Unspecified disease of the salivary glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520''', NULL, + 'Disorders of tooth development and eruption (520)', 'Disorders of tooth development and eruption (520)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.0) Anodontia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.0) Anodontia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.0''', NULL, + '(520.0) Anodontia', '(520.0) Anodontia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.1) Supernumerary teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.1) Supernumerary teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.1''', NULL, + '(520.1) Supernumerary teeth', '(520.1) Supernumerary teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.2) Abnormalities of size and form of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.2) Abnormalities of size and form of teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.2''', NULL, + '(520.2) Abnormalities of size and form of teeth', '(520.2) Abnormalities of size and form of teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.3) Mottled teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.3) Mottled teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.3''', NULL, + '(520.3) Mottled teeth', '(520.3) Mottled teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.4) Disturbances of tooth formation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.4) Disturbances of tooth formation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.4''', NULL, + '(520.4) Disturbances of tooth formation', '(520.4) Disturbances of tooth formation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.5) Hereditary disturbances in tooth structure, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.5) Hereditary disturbances in tooth structure, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.5''', NULL, + '(520.5) Hereditary disturbances in tooth structure, not elsewhere classified', '(520.5) Hereditary disturbances in tooth structure, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.6) Disturbances in tooth eruption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.6) Disturbances in tooth eruption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.6''', NULL, + '(520.6) Disturbances in tooth eruption', '(520.6) Disturbances in tooth eruption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.7) Teething syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.7) Teething syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.7''', NULL, + '(520.7) Teething syndrome', '(520.7) Teething syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.8) Other specified disorders of tooth development and eruption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.8) Other specified disorders of tooth development and eruption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.8''', NULL, + '(520.8) Other specified disorders of tooth development and eruption', '(520.8) Other specified disorders of tooth development and eruption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.9) Unspecified disorder of tooth development and eruption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.9) Unspecified disorder of tooth development and eruption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.9''', NULL, + '(520.9) Unspecified disorder of tooth development and eruption', '(520.9) Unspecified disorder of tooth development and eruption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523''', NULL, + 'Gingival and periodontal diseases (523)', 'Gingival and periodontal diseases (523)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.5) Periodontosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.5) Periodontosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.5''', NULL, + '(523.5) Periodontosis', '(523.5) Periodontosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.6) Accretions on teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.6) Accretions on teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.6''', NULL, + '(523.6) Accretions on teeth', '(523.6) Accretions on teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.8) Other specified periodontal diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.8) Other specified periodontal diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.8''', NULL, + '(523.8) Other specified periodontal diseases', '(523.8) Other specified periodontal diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.9) Unspecified gingival and periodontal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.9) Unspecified gingival and periodontal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.9''', NULL, + '(523.9) Unspecified gingival and periodontal disease', '(523.9) Unspecified gingival and periodontal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.0''', NULL, + 'Acute gingivitis (523.0)', 'Acute gingivitis (523.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\(523.00) Acute gingivitis, plaque induced\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\(523.00) Acute gingivitis, plaque induced\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.00''', NULL, + '(523.00) Acute gingivitis, plaque induced', '(523.00) Acute gingivitis, plaque induced', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\(523.01) Acute gingivitis, non-plaque induced\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\(523.01) Acute gingivitis, non-plaque induced\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.01''', NULL, + '(523.01) Acute gingivitis, non-plaque induced', '(523.01) Acute gingivitis, non-plaque induced', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.3''', NULL, + 'Aggressive and acute periodontitis (523.3)', 'Aggressive and acute periodontitis (523.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.30) Aggressive periodontitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.30) Aggressive periodontitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.30''', NULL, + '(523.30) Aggressive periodontitis, unspecified', '(523.30) Aggressive periodontitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.31) Aggressive periodontitis, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.31) Aggressive periodontitis, localized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.31''', NULL, + '(523.31) Aggressive periodontitis, localized', '(523.31) Aggressive periodontitis, localized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.32) Aggressive periodontitis, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.32) Aggressive periodontitis, generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.32''', NULL, + '(523.32) Aggressive periodontitis, generalized', '(523.32) Aggressive periodontitis, generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.33) Acute periodontitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.33) Acute periodontitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.33''', NULL, + '(523.33) Acute periodontitis', '(523.33) Acute periodontitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.1''', NULL, + 'Chronic gingivitis (523.1)', 'Chronic gingivitis (523.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\(523.10) Chronic gingivitis, plaque induced\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\(523.10) Chronic gingivitis, plaque induced\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.10''', NULL, + '(523.10) Chronic gingivitis, plaque induced', '(523.10) Chronic gingivitis, plaque induced', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\(523.11) Chronic gingivitis, non-plaque induced\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\(523.11) Chronic gingivitis, non-plaque induced\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.11''', NULL, + '(523.11) Chronic gingivitis, non-plaque induced', '(523.11) Chronic gingivitis, non-plaque induced', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.4''', NULL, + 'Chronic periodontitis (523.4)', 'Chronic periodontitis (523.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.40) Chronic periodontitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.40) Chronic periodontitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.40''', NULL, + '(523.40) Chronic periodontitis, unspecified', '(523.40) Chronic periodontitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.41) Chronic periodontitis, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.41) Chronic periodontitis, localized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.41''', NULL, + '(523.41) Chronic periodontitis, localized', '(523.41) Chronic periodontitis, localized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.42) Chronic periodontitis, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.42) Chronic periodontitis, generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.42''', NULL, + '(523.42) Chronic periodontitis, generalized', '(523.42) Chronic periodontitis, generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.2''', NULL, + 'Gingival recession (523.2)', 'Gingival recession (523.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.20) Gingival recession, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.20) Gingival recession, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.20''', NULL, + '(523.20) Gingival recession, unspecified', '(523.20) Gingival recession, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.21) Gingival recession, minimal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.21) Gingival recession, minimal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.21''', NULL, + '(523.21) Gingival recession, minimal', '(523.21) Gingival recession, minimal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.22) Gingival recession, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.22) Gingival recession, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.22''', NULL, + '(523.22) Gingival recession, moderate', '(523.22) Gingival recession, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.23) Gingival recession, severe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.23) Gingival recession, severe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.23''', NULL, + '(523.23) Gingival recession, severe', '(523.23) Gingival recession, severe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.24) Gingival recession, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.24) Gingival recession, localized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.24''', NULL, + '(523.24) Gingival recession, localized', '(523.24) Gingival recession, localized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.25) Gingival recession, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.25) Gingival recession, generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.25''', NULL, + '(523.25) Gingival recession, generalized', '(523.25) Gingival recession, generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525''', NULL, + 'Other diseases and conditions of the teeth and supporting structures (525)', 'Other diseases and conditions of the teeth and supporting structures (525)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.0) Exfoliation of teeth due to systemic causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.0) Exfoliation of teeth due to systemic causes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.0''', NULL, + '(525.0) Exfoliation of teeth due to systemic causes', '(525.0) Exfoliation of teeth due to systemic causes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.3) Retained dental root\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.3) Retained dental root\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.3''', NULL, + '(525.3) Retained dental root', '(525.3) Retained dental root', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.8) Other specified disorders of the teeth and supporting structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.8) Other specified disorders of the teeth and supporting structures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.8''', NULL, + '(525.8) Other specified disorders of the teeth and supporting structures', '(525.8) Other specified disorders of the teeth and supporting structures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.9) Unspecified disorder of the teeth and supporting structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.9) Unspecified disorder of the teeth and supporting structures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.9''', NULL, + '(525.9) Unspecified disorder of the teeth and supporting structures', '(525.9) Unspecified disorder of the teeth and supporting structures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.2''', NULL, + 'Atrophy of edentulous alveolar ridge (525.2)', 'Atrophy of edentulous alveolar ridge (525.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.20) Unspecified atrophy of edentulous alveolar ridge\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.20) Unspecified atrophy of edentulous alveolar ridge\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.20''', NULL, + '(525.20) Unspecified atrophy of edentulous alveolar ridge', '(525.20) Unspecified atrophy of edentulous alveolar ridge', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.21) Minimal atrophy of the mandible\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.21) Minimal atrophy of the mandible\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.21''', NULL, + '(525.21) Minimal atrophy of the mandible', '(525.21) Minimal atrophy of the mandible', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.22) Moderate atrophy of the mandible\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.22) Moderate atrophy of the mandible\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.22''', NULL, + '(525.22) Moderate atrophy of the mandible', '(525.22) Moderate atrophy of the mandible', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.23) Severe atrophy of the mandible\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.23) Severe atrophy of the mandible\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.23''', NULL, + '(525.23) Severe atrophy of the mandible', '(525.23) Severe atrophy of the mandible', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.24) Minimal atrophy of the maxilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.24) Minimal atrophy of the maxilla\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.24''', NULL, + '(525.24) Minimal atrophy of the maxilla', '(525.24) Minimal atrophy of the maxilla', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.25) Moderate atrophy of the maxilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.25) Moderate atrophy of the maxilla\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.25''', NULL, + '(525.25) Moderate atrophy of the maxilla', '(525.25) Moderate atrophy of the maxilla', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.26) Severe atrophy of the maxilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.26) Severe atrophy of the maxilla\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.26''', NULL, + '(525.26) Severe atrophy of the maxilla', '(525.26) Severe atrophy of the maxilla', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.4''', NULL, + 'Complete edentulism (525.4)', 'Complete edentulism (525.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.40) Complete edentulism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.40) Complete edentulism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.40''', NULL, + '(525.40) Complete edentulism, unspecified', '(525.40) Complete edentulism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.41) Complete edentulism, class I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.41) Complete edentulism, class I\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.41''', NULL, + '(525.41) Complete edentulism, class I', '(525.41) Complete edentulism, class I', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.42) Complete edentulism, class II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.42) Complete edentulism, class II\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.42''', NULL, + '(525.42) Complete edentulism, class II', '(525.42) Complete edentulism, class II', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.43) Complete edentulism, class III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.43) Complete edentulism, class III\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.43''', NULL, + '(525.43) Complete edentulism, class III', '(525.43) Complete edentulism, class III', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.44) Complete edentulism, class IV\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.44) Complete edentulism, class IV\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.44''', NULL, + '(525.44) Complete edentulism, class IV', '(525.44) Complete edentulism, class IV', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.7''', NULL, + 'Endosseous dental implant failure (525.7)', 'Endosseous dental implant failure (525.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.71) Osseointegration failure of dental implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.71) Osseointegration failure of dental implant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.71''', NULL, + '(525.71) Osseointegration failure of dental implant', '(525.71) Osseointegration failure of dental implant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.72) Post-osseointegration biological failure of dental implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.72) Post-osseointegration biological failure of dental implant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.72''', NULL, + '(525.72) Post-osseointegration biological failure of dental implant', '(525.72) Post-osseointegration biological failure of dental implant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.73) Post-osseointegration mechanical failure of dental implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.73) Post-osseointegration mechanical failure of dental implant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.73''', NULL, + '(525.73) Post-osseointegration mechanical failure of dental implant', '(525.73) Post-osseointegration mechanical failure of dental implant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.79) Other endosseous dental implant failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.79) Other endosseous dental implant failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.79''', NULL, + '(525.79) Other endosseous dental implant failure', '(525.79) Other endosseous dental implant failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.1''', NULL, + 'Loss of teeth due to trauma, extraction, or periodontal disease (525.1)', 'Loss of teeth due to trauma, extraction, or periodontal disease (525.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.10) Acquired absence of teeth, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.10) Acquired absence of teeth, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.10''', NULL, + '(525.10) Acquired absence of teeth, unspecified', '(525.10) Acquired absence of teeth, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.11) Loss of teeth due to trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.11) Loss of teeth due to trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.11''', NULL, + '(525.11) Loss of teeth due to trauma', '(525.11) Loss of teeth due to trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.12) Loss of teeth due to periodontal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.12) Loss of teeth due to periodontal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.12''', NULL, + '(525.12) Loss of teeth due to periodontal disease', '(525.12) Loss of teeth due to periodontal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.13) Loss of teeth due to caries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.13) Loss of teeth due to caries\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.13''', NULL, + '(525.13) Loss of teeth due to caries', '(525.13) Loss of teeth due to caries', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.19) Other loss of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.19) Other loss of teeth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.19''', NULL, + '(525.19) Other loss of teeth', '(525.19) Other loss of teeth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.5''', NULL, + 'Partial edentulism (525.5)', 'Partial edentulism (525.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.50) Partial edentulism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.50) Partial edentulism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.50''', NULL, + '(525.50) Partial edentulism, unspecified', '(525.50) Partial edentulism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.51) Partial edentulism, class I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.51) Partial edentulism, class I\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.51''', NULL, + '(525.51) Partial edentulism, class I', '(525.51) Partial edentulism, class I', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.52) Partial edentulism, class II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.52) Partial edentulism, class II\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.52''', NULL, + '(525.52) Partial edentulism, class II', '(525.52) Partial edentulism, class II', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.53) Partial edentulism, class III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.53) Partial edentulism, class III\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.53''', NULL, + '(525.53) Partial edentulism, class III', '(525.53) Partial edentulism, class III', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.54) Partial edentulism, class IV\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.54) Partial edentulism, class IV\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.54''', NULL, + '(525.54) Partial edentulism, class IV', '(525.54) Partial edentulism, class IV', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.6''', NULL, + 'Unsatisfactory restoration of tooth (525.6)', 'Unsatisfactory restoration of tooth (525.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.60) Unspecified unsatisfactory restoration of tooth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.60) Unspecified unsatisfactory restoration of tooth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.60''', NULL, + '(525.60) Unspecified unsatisfactory restoration of tooth', '(525.60) Unspecified unsatisfactory restoration of tooth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.61) Open restoration margins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.61) Open restoration margins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.61''', NULL, + '(525.61) Open restoration margins', '(525.61) Open restoration margins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.62) Unrepairable overhanging of dental restorative materials\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.62) Unrepairable overhanging of dental restorative materials\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.62''', NULL, + '(525.62) Unrepairable overhanging of dental restorative materials', '(525.62) Unrepairable overhanging of dental restorative materials', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.63) Fractured dental restorative material without loss of material\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.63) Fractured dental restorative material without loss of material\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.63''', NULL, + '(525.63) Fractured dental restorative material without loss of material', '(525.63) Fractured dental restorative material without loss of material', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.64) Fractured dental restorative material with loss of material\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.64) Fractured dental restorative material with loss of material\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.64''', NULL, + '(525.64) Fractured dental restorative material with loss of material', '(525.64) Fractured dental restorative material with loss of material', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.65) Contour of existing restoration of tooth biologically incompatible with oral health\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.65) Contour of existing restoration of tooth biologically incompatible with oral health\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.65''', NULL, + '(525.65) Contour of existing restoration of tooth biologically incompatible with oral health', '(525.65) Contour of existing restoration of tooth biologically incompatible with oral health', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.66) Allergy to existing dental restorative material\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.66) Allergy to existing dental restorative material\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.66''', NULL, + '(525.66) Allergy to existing dental restorative material', '(525.66) Allergy to existing dental restorative material', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.67) Poor aesthetics of existing restoration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.67) Poor aesthetics of existing restoration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.67''', NULL, + '(525.67) Poor aesthetics of existing restoration', '(525.67) Poor aesthetics of existing restoration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.69) Other unsatisfactory restoration of existing tooth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.69) Other unsatisfactory restoration of existing tooth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.69''', NULL, + '(525.69) Other unsatisfactory restoration of existing tooth', '(525.69) Other unsatisfactory restoration of existing tooth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''550'' AND ''553.99''', NULL, + 'Hernia of abdominal cavity (550-553.99)', 'Hernia of abdominal cavity (550-553.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550''', NULL, + 'Inguinal hernia (550)', 'Inguinal hernia (550)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.0''', NULL, + 'Inguinal hernia, with gangrene (550.0)', 'Inguinal hernia, with gangrene (550.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent''', NULL, + '(550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent)', '(550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.01) Inguinal hernia, with gangrene, unilateral or unspecified, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.01) Inguinal hernia, with gangrene, unilateral or unspecified, recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.01''', NULL, + '(550.01) Inguinal hernia, with gangrene, unilateral or unspecified, recurrent', '(550.01) Inguinal hernia, with gangrene, unilateral or unspecified, recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent''', NULL, + '(550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent)', '(550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.03) Inguinal hernia, with gangrene, bilateral, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.03) Inguinal hernia, with gangrene, bilateral, recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.03''', NULL, + '(550.03) Inguinal hernia, with gangrene, bilateral, recurrent', '(550.03) Inguinal hernia, with gangrene, bilateral, recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.1''', NULL, + 'Inguinal hernia, with obstruction, without mention of gangrene (550.1)', 'Inguinal hernia, with obstruction, without mention of gangrene (550.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent''', NULL, + '(550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent)', '(550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.11) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.11) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.11''', NULL, + '(550.11) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent', '(550.11) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent''', NULL, + '(550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent)', '(550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.13) Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.13) Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.13''', NULL, + '(550.13) Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent', '(550.13) Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.9''', NULL, + 'Inguinal hernia, without mention of obstruction or gangrene (550.9)', 'Inguinal hernia, without mention of obstruction or gangrene (550.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent''', NULL, + '(550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent)', '(550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.91) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.91) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.91''', NULL, + '(550.91) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent', '(550.91) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent''', NULL, + '(550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)', '(550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.93) Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.93) Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.93''', NULL, + '(550.93) Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent', '(550.93) Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553''', NULL, + 'Other hernia of abdominal cavity without mention of obstruction or gangrene (553)', 'Other hernia of abdominal cavity without mention of obstruction or gangrene (553)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.1) Umbilical hernia without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.1) Umbilical hernia without mention of obstruction or gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.1''', NULL, + '(553.1) Umbilical hernia without mention of obstruction or gangrene', '(553.1) Umbilical hernia without mention of obstruction or gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.3) Diaphragmatic hernia without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.3) Diaphragmatic hernia without mention of obstruction or gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.3''', NULL, + '(553.3) Diaphragmatic hernia without mention of obstruction or gangrene', '(553.3) Diaphragmatic hernia without mention of obstruction or gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.8) Hernia of other specified sites without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.8) Hernia of other specified sites without mention of obstruction or gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.8''', NULL, + '(553.8) Hernia of other specified sites without mention of obstruction or gangrene', '(553.8) Hernia of other specified sites without mention of obstruction or gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.9) Hernia of unspecified site without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.9) Hernia of unspecified site without mention of obstruction or gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.9''', NULL, + '(553.9) Hernia of unspecified site without mention of obstruction or gangrene', '(553.9) Hernia of unspecified site without mention of obstruction or gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.0''', NULL, + 'Femoral hernia without mention of obstruction or gangrene (553.0)', 'Femoral hernia without mention of obstruction or gangrene (553.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent''', NULL, + '(553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent)', '(553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.01) Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.01) Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.01''', NULL, + '(553.01) Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent', '(553.01) Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent''', NULL, + '(553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)', '(553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.03) Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.03) Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.03''', NULL, + '(553.03) Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent', '(553.03) Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.2''', NULL, + 'Ventral hernia without mention of obstruction or gangrene (553.2)', 'Ventral hernia without mention of obstruction or gangrene (553.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.20) Ventral, unspecified, hernia without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.20) Ventral, unspecified, hernia without mention of obstruction or gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.20''', NULL, + '(553.20) Ventral, unspecified, hernia without mention of obstruction or gangrene', '(553.20) Ventral, unspecified, hernia without mention of obstruction or gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.21) Incisional hernia without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.21) Incisional hernia without mention of obstruction or gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.21''', NULL, + '(553.21) Incisional hernia without mention of obstruction or gangrene', '(553.21) Incisional hernia without mention of obstruction or gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.29) Other ventral hernia without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.29) Other ventral hernia without mention of obstruction or gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.29''', NULL, + '(553.29) Other ventral hernia without mention of obstruction or gangrene', '(553.29) Other ventral hernia without mention of obstruction or gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551''', NULL, + 'Other hernia of abdominal cavity, with gangrene (551)', 'Other hernia of abdominal cavity, with gangrene (551)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.1) Umbilical hernia with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.1) Umbilical hernia with gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.1''', NULL, + '(551.1) Umbilical hernia with gangrene', '(551.1) Umbilical hernia with gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.3) Diaphragmatic hernia with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.3) Diaphragmatic hernia with gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.3''', NULL, + '(551.3) Diaphragmatic hernia with gangrene', '(551.3) Diaphragmatic hernia with gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.8) Hernia of other specified sites, with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.8) Hernia of other specified sites, with gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.8''', NULL, + '(551.8) Hernia of other specified sites, with gangrene', '(551.8) Hernia of other specified sites, with gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.9) Hernia of unspecified site, with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.9) Hernia of unspecified site, with gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.9''', NULL, + '(551.9) Hernia of unspecified site, with gangrene', '(551.9) Hernia of unspecified site, with gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.0''', NULL, + 'Femoral hernia with gangrene (551.0)', 'Femoral hernia with gangrene (551.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent''', NULL, + '(551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)', '(551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.01) Femoral hernia with gangrene, unilateral or unspecified, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.01) Femoral hernia with gangrene, unilateral or unspecified, recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.01''', NULL, + '(551.01) Femoral hernia with gangrene, unilateral or unspecified, recurrent', '(551.01) Femoral hernia with gangrene, unilateral or unspecified, recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent''', NULL, + '(551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent)', '(551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.03) Femoral hernia with gangrene, bilateral, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.03) Femoral hernia with gangrene, bilateral, recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.03''', NULL, + '(551.03) Femoral hernia with gangrene, bilateral, recurrent', '(551.03) Femoral hernia with gangrene, bilateral, recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.2''', NULL, + 'Ventral hernia with gangrene (551.2)', 'Ventral hernia with gangrene (551.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.20) Ventral hernia, unspecified, with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.20) Ventral hernia, unspecified, with gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.20''', NULL, + '(551.20) Ventral hernia, unspecified, with gangrene', '(551.20) Ventral hernia, unspecified, with gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.21) Incisional ventral hernia, with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.21) Incisional ventral hernia, with gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.21''', NULL, + '(551.21) Incisional ventral hernia, with gangrene', '(551.21) Incisional ventral hernia, with gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.29) Other ventral hernia with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.29) Other ventral hernia with gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.29''', NULL, + '(551.29) Other ventral hernia with gangrene', '(551.29) Other ventral hernia with gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552''', NULL, + 'Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)', 'Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.1) Umbilical hernia with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.1) Umbilical hernia with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.1''', NULL, + '(552.1) Umbilical hernia with obstruction', '(552.1) Umbilical hernia with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.3) Diaphragmatic hernia with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.3) Diaphragmatic hernia with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.3''', NULL, + '(552.3) Diaphragmatic hernia with obstruction', '(552.3) Diaphragmatic hernia with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.8) Hernia of other specified sites, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.8) Hernia of other specified sites, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.8''', NULL, + '(552.8) Hernia of other specified sites, with obstruction', '(552.8) Hernia of other specified sites, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.9) Hernia of unspecified site, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.9) Hernia of unspecified site, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.9''', NULL, + '(552.9) Hernia of unspecified site, with obstruction', '(552.9) Hernia of unspecified site, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.0''', NULL, + 'Femoral hernia with obstruction (552.0)', 'Femoral hernia with obstruction (552.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent''', NULL, + '(552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)', '(552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.01) Femoral hernia with obstruction, unilateral or unspecified, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.01) Femoral hernia with obstruction, unilateral or unspecified, recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.01''', NULL, + '(552.01) Femoral hernia with obstruction, unilateral or unspecified, recurrent', '(552.01) Femoral hernia with obstruction, unilateral or unspecified, recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent''', NULL, + '(552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent)', '(552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.03) Femoral hernia with obstruction, bilateral, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.03) Femoral hernia with obstruction, bilateral, recurrent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.03''', NULL, + '(552.03) Femoral hernia with obstruction, bilateral, recurrent', '(552.03) Femoral hernia with obstruction, bilateral, recurrent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.2''', NULL, + 'Ventral hernia with obstruction (552.2)', 'Ventral hernia with obstruction (552.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.20) Ventral, unspecified, hernia with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.20) Ventral, unspecified, hernia with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.20''', NULL, + '(552.20) Ventral, unspecified, hernia with obstruction', '(552.20) Ventral, unspecified, hernia with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.21) Incisional ventral hernia with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.21) Incisional ventral hernia with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.21''', NULL, + '(552.21) Incisional ventral hernia with obstruction', '(552.21) Incisional ventral hernia with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.29) Other ventral hernia with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.29) Other ventral hernia with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.29''', NULL, + '(552.29) Other ventral hernia with obstruction', '(552.29) Other ventral hernia with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''555'' AND ''558.99''', NULL, + 'Noninfectious enteritis and colitis (555-558.99)', 'Noninfectious enteritis and colitis (555-558.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558''', NULL, + 'Other and unspecified noninfectious gastroenteritis and colitis (558)', 'Other and unspecified noninfectious gastroenteritis and colitis (558)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.1) Gastroenteritis and colitis due to radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.1) Gastroenteritis and colitis due to radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.1''', NULL, + '(558.1) Gastroenteritis and colitis due to radiation', '(558.1) Gastroenteritis and colitis due to radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.2) Toxic gastroenteritis and colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.2) Toxic gastroenteritis and colitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.2''', NULL, + '(558.2) Toxic gastroenteritis and colitis', '(558.2) Toxic gastroenteritis and colitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.3) Allergic gastroenteritis and colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.3) Allergic gastroenteritis and colitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.3''', NULL, + '(558.3) Allergic gastroenteritis and colitis', '(558.3) Allergic gastroenteritis and colitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.9) Other and unspecified noninfectious gastroenteritis and colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.9) Other and unspecified noninfectious gastroenteritis and colitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.9''', NULL, + '(558.9) Other and unspecified noninfectious gastroenteritis and colitis', '(558.9) Other and unspecified noninfectious gastroenteritis and colitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.4''', NULL, + 'Eosinophilic gastroenteritis and colitis (558.4)', 'Eosinophilic gastroenteritis and colitis (558.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\(558.41) Eosinophilic gastroenteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\(558.41) Eosinophilic gastroenteritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.41''', NULL, + '(558.41) Eosinophilic gastroenteritis', '(558.41) Eosinophilic gastroenteritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\(558.42) Eosinophilic colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\(558.42) Eosinophilic colitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.42''', NULL, + '(558.42) Eosinophilic colitis', '(558.42) Eosinophilic colitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''555''', NULL, + 'Regional enteritis (555)', 'Regional enteritis (555)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.0) Regional enteritis of small intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.0) Regional enteritis of small intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''555.0''', NULL, + '(555.0) Regional enteritis of small intestine', '(555.0) Regional enteritis of small intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.1) Regional enteritis of large intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.1) Regional enteritis of large intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''555.1''', NULL, + '(555.1) Regional enteritis of large intestine', '(555.1) Regional enteritis of large intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.2) Regional enteritis of small intestine with large intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.2) Regional enteritis of small intestine with large intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''555.2''', NULL, + '(555.2) Regional enteritis of small intestine with large intestine', '(555.2) Regional enteritis of small intestine with large intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.9) Regional enteritis of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.9) Regional enteritis of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''555.9''', NULL, + '(555.9) Regional enteritis of unspecified site', '(555.9) Regional enteritis of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556''', NULL, + 'Ulcerative colitis (556)', 'Ulcerative colitis (556)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.0) Ulcerative (chronic) enterocolitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.0) Ulcerative (chronic) enterocolitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.0) Ulcerative (chronic''', NULL, + '(556.0) Ulcerative (chronic) enterocolitis', '(556.0) Ulcerative (chronic) enterocolitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.1) Ulcerative (chronic) ileocolitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.1) Ulcerative (chronic) ileocolitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.1) Ulcerative (chronic''', NULL, + '(556.1) Ulcerative (chronic) ileocolitis', '(556.1) Ulcerative (chronic) ileocolitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.2) Ulcerative (chronic) proctitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.2) Ulcerative (chronic) proctitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.2) Ulcerative (chronic''', NULL, + '(556.2) Ulcerative (chronic) proctitis', '(556.2) Ulcerative (chronic) proctitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.3) Ulcerative (chronic) proctosigmoiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.3) Ulcerative (chronic) proctosigmoiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.3) Ulcerative (chronic''', NULL, + '(556.3) Ulcerative (chronic) proctosigmoiditis', '(556.3) Ulcerative (chronic) proctosigmoiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.4) Pseudopolyposis of colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.4) Pseudopolyposis of colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.4''', NULL, + '(556.4) Pseudopolyposis of colon', '(556.4) Pseudopolyposis of colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.5) Left-sided ulcerative (chronic) colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.5) Left-sided ulcerative (chronic) colitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''556.5) Left'' AND ''sided ulcerative (chronic''', NULL, + '(556.5) Left-sided ulcerative (chronic) colitis', '(556.5) Left-sided ulcerative (chronic) colitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.6) Universal ulcerative (chronic) colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.6) Universal ulcerative (chronic) colitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.6) Universal ulcerative (chronic''', NULL, + '(556.6) Universal ulcerative (chronic) colitis', '(556.6) Universal ulcerative (chronic) colitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.8) Other ulcerative colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.8) Other ulcerative colitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.8''', NULL, + '(556.8) Other ulcerative colitis', '(556.8) Other ulcerative colitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.9) Ulcerative colitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.9) Ulcerative colitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.9''', NULL, + '(556.9) Ulcerative colitis, unspecified', '(556.9) Ulcerative colitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''557''', NULL, + 'Vascular insufficiency of intestine (557)', 'Vascular insufficiency of intestine (557)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.0) Acute vascular insufficiency of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.0) Acute vascular insufficiency of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''557.0''', NULL, + '(557.0) Acute vascular insufficiency of intestine', '(557.0) Acute vascular insufficiency of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.1) Chronic vascular insufficiency of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.1) Chronic vascular insufficiency of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''557.1''', NULL, + '(557.1) Chronic vascular insufficiency of intestine', '(557.1) Chronic vascular insufficiency of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.9) Unspecified vascular insufficiency of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.9) Unspecified vascular insufficiency of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''557.9''', NULL, + '(557.9) Unspecified vascular insufficiency of intestine', '(557.9) Unspecified vascular insufficiency of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''570'' AND ''579.99''', NULL, + 'Other diseases of digestive system (570-579.99)', 'Other diseases of digestive system (570-579.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\(570) Acute and subacute necrosis of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\(570) Acute and subacute necrosis of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''570''', NULL, + '(570) Acute and subacute necrosis of liver', '(570) Acute and subacute necrosis of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574''', NULL, + 'Cholelithiasis (574)', 'Cholelithiasis (574)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.3''', NULL, + 'Calculus of bile duct with acute cholecystitis (574.3)', 'Calculus of bile duct with acute cholecystitis (574.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\(574.30) Calculus of bile duct with acute cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\(574.30) Calculus of bile duct with acute cholecystitis, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.30''', NULL, + '(574.30) Calculus of bile duct with acute cholecystitis, without mention of obstruction', '(574.30) Calculus of bile duct with acute cholecystitis, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\(574.31) Calculus of bile duct with acute cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\(574.31) Calculus of bile duct with acute cholecystitis, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.31''', NULL, + '(574.31) Calculus of bile duct with acute cholecystitis, with obstruction', '(574.31) Calculus of bile duct with acute cholecystitis, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.4''', NULL, + 'Calculus of bile duct with other cholecystitis (574.4)', 'Calculus of bile duct with other cholecystitis (574.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\(574.40) Calculus of bile duct with other cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\(574.40) Calculus of bile duct with other cholecystitis, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.40''', NULL, + '(574.40) Calculus of bile duct with other cholecystitis, without mention of obstruction', '(574.40) Calculus of bile duct with other cholecystitis, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\(574.41) Calculus of bile duct with other cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\(574.41) Calculus of bile duct with other cholecystitis, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.41''', NULL, + '(574.41) Calculus of bile duct with other cholecystitis, with obstruction', '(574.41) Calculus of bile duct with other cholecystitis, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.5''', NULL, + 'Calculus of bile duct without mention of cholecystitis (574.5)', 'Calculus of bile duct without mention of cholecystitis (574.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\(574.50) Calculus of bile duct without mention of cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\(574.50) Calculus of bile duct without mention of cholecystitis, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.50''', NULL, + '(574.50) Calculus of bile duct without mention of cholecystitis, without mention of obstruction', '(574.50) Calculus of bile duct without mention of cholecystitis, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\(574.51) Calculus of bile duct without mention of cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\(574.51) Calculus of bile duct without mention of cholecystitis, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.51''', NULL, + '(574.51) Calculus of bile duct without mention of cholecystitis, with obstruction', '(574.51) Calculus of bile duct without mention of cholecystitis, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.8''', NULL, + 'Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)', 'Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\(574.80) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\(574.80) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.80''', NULL, + '(574.80) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, without mention of obstruction', '(574.80) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\(574.81) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\(574.81) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.81''', NULL, + '(574.81) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction', '(574.81) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.6''', NULL, + 'Calculus of gallbladder and bile duct with acute cholecystitis (574.6)', 'Calculus of gallbladder and bile duct with acute cholecystitis (574.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\(574.60) Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\(574.60) Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.60''', NULL, + '(574.60) Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction', '(574.60) Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\(574.61) Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\(574.61) Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.61''', NULL, + '(574.61) Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction', '(574.61) Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.7''', NULL, + 'Calculus of gallbladder and bile duct with other cholecystitis (574.7)', 'Calculus of gallbladder and bile duct with other cholecystitis (574.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\(574.70) Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\(574.70) Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.70''', NULL, + '(574.70) Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction', '(574.70) Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\(574.71) Calculus of gallbladder and bile duct with other cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\(574.71) Calculus of gallbladder and bile duct with other cholecystitis, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.71''', NULL, + '(574.71) Calculus of gallbladder and bile duct with other cholecystitis, with obstruction', '(574.71) Calculus of gallbladder and bile duct with other cholecystitis, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.9''', NULL, + 'Calculus of gallbladder and bile duct without cholecystitis (574.9)', 'Calculus of gallbladder and bile duct without cholecystitis (574.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\(574.90) Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\(574.90) Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.90''', NULL, + '(574.90) Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction', '(574.90) Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\(574.91) Calculus of gallbladder and bile duct without cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\(574.91) Calculus of gallbladder and bile duct without cholecystitis, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.91''', NULL, + '(574.91) Calculus of gallbladder and bile duct without cholecystitis, with obstruction', '(574.91) Calculus of gallbladder and bile duct without cholecystitis, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.0''', NULL, + 'Calculus of gallbladder with acute cholecystitis (574.0)', 'Calculus of gallbladder with acute cholecystitis (574.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\(574.00) Calculus of gallbladder with acute cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\(574.00) Calculus of gallbladder with acute cholecystitis, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.00''', NULL, + '(574.00) Calculus of gallbladder with acute cholecystitis, without mention of obstruction', '(574.00) Calculus of gallbladder with acute cholecystitis, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\(574.01) Calculus of gallbladder with acute cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\(574.01) Calculus of gallbladder with acute cholecystitis, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.01''', NULL, + '(574.01) Calculus of gallbladder with acute cholecystitis, with obstruction', '(574.01) Calculus of gallbladder with acute cholecystitis, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.1''', NULL, + 'Calculus of gallbladder with other cholecystitis (574.1)', 'Calculus of gallbladder with other cholecystitis (574.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\(574.10) Calculus of gallbladder with other cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\(574.10) Calculus of gallbladder with other cholecystitis, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.10''', NULL, + '(574.10) Calculus of gallbladder with other cholecystitis, without mention of obstruction', '(574.10) Calculus of gallbladder with other cholecystitis, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\(574.11) Calculus of gallbladder with other cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\(574.11) Calculus of gallbladder with other cholecystitis, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.11''', NULL, + '(574.11) Calculus of gallbladder with other cholecystitis, with obstruction', '(574.11) Calculus of gallbladder with other cholecystitis, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.2''', NULL, + 'Calculus of gallbladder without mention of cholecystitis (574.2)', 'Calculus of gallbladder without mention of cholecystitis (574.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\(574.20) Calculus of gallbladder without mention of cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\(574.20) Calculus of gallbladder without mention of cholecystitis, without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.20''', NULL, + '(574.20) Calculus of gallbladder without mention of cholecystitis, without mention of obstruction', '(574.20) Calculus of gallbladder without mention of cholecystitis, without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\(574.21) Calculus of gallbladder without mention of cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\(574.21) Calculus of gallbladder without mention of cholecystitis, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.21''', NULL, + '(574.21) Calculus of gallbladder without mention of cholecystitis, with obstruction', '(574.21) Calculus of gallbladder without mention of cholecystitis, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571''', NULL, + 'Chronic liver disease and cirrhosis (571)', 'Chronic liver disease and cirrhosis (571)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.0) Alcoholic fatty liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.0) Alcoholic fatty liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.0''', NULL, + '(571.0) Alcoholic fatty liver', '(571.0) Alcoholic fatty liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.1) Acute alcoholic hepatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.1) Acute alcoholic hepatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.1''', NULL, + '(571.1) Acute alcoholic hepatitis', '(571.1) Acute alcoholic hepatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.2) Alcoholic cirrhosis of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.2) Alcoholic cirrhosis of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.2''', NULL, + '(571.2) Alcoholic cirrhosis of liver', '(571.2) Alcoholic cirrhosis of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.3) Alcoholic liver damage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.3) Alcoholic liver damage, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.3''', NULL, + '(571.3) Alcoholic liver damage, unspecified', '(571.3) Alcoholic liver damage, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.5) Cirrhosis of liver without mention of alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.5) Cirrhosis of liver without mention of alcohol\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.5''', NULL, + '(571.5) Cirrhosis of liver without mention of alcohol', '(571.5) Cirrhosis of liver without mention of alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.6) Biliary cirrhosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.6) Biliary cirrhosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.6''', NULL, + '(571.6) Biliary cirrhosis', '(571.6) Biliary cirrhosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.8) Other chronic nonalcoholic liver disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.8) Other chronic nonalcoholic liver disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.8''', NULL, + '(571.8) Other chronic nonalcoholic liver disease', '(571.8) Other chronic nonalcoholic liver disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.9) Unspecified chronic liver disease without mention of alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.9) Unspecified chronic liver disease without mention of alcohol\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.9''', NULL, + '(571.9) Unspecified chronic liver disease without mention of alcohol', '(571.9) Unspecified chronic liver disease without mention of alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.4''', NULL, + 'Chronic hepatitis (571.4)', 'Chronic hepatitis (571.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.40) Chronic hepatitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.40) Chronic hepatitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.40''', NULL, + '(571.40) Chronic hepatitis, unspecified', '(571.40) Chronic hepatitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.41) Chronic persistent hepatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.41) Chronic persistent hepatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.41''', NULL, + '(571.41) Chronic persistent hepatitis', '(571.41) Chronic persistent hepatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.42) Autoimmune hepatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.42) Autoimmune hepatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.42''', NULL, + '(571.42) Autoimmune hepatitis', '(571.42) Autoimmune hepatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.49) Other chronic hepatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.49) Other chronic hepatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.49''', NULL, + '(571.49) Other chronic hepatitis', '(571.49) Other chronic hepatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577''', NULL, + 'Diseases of pancreas (577)', 'Diseases of pancreas (577)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.0) Acute pancreatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.0) Acute pancreatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577.0''', NULL, + '(577.0) Acute pancreatitis', '(577.0) Acute pancreatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.1) Chronic pancreatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.1) Chronic pancreatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577.1''', NULL, + '(577.1) Chronic pancreatitis', '(577.1) Chronic pancreatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.2) Cyst and pseudocyst of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.2) Cyst and pseudocyst of pancreas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577.2''', NULL, + '(577.2) Cyst and pseudocyst of pancreas', '(577.2) Cyst and pseudocyst of pancreas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.8) Other specified diseases of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.8) Other specified diseases of pancreas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577.8''', NULL, + '(577.8) Other specified diseases of pancreas', '(577.8) Other specified diseases of pancreas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.9) Unspecified disease of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.9) Unspecified disease of pancreas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577.9''', NULL, + '(577.9) Unspecified disease of pancreas', '(577.9) Unspecified disease of pancreas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''578''', NULL, + 'Gastrointestinal hemorrhage (578)', 'Gastrointestinal hemorrhage (578)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.0) Hematemesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.0) Hematemesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''578.0''', NULL, + '(578.0) Hematemesis', '(578.0) Hematemesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.1) Blood in stool\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.1) Blood in stool\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''578.1''', NULL, + '(578.1) Blood in stool', '(578.1) Blood in stool', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.9) Hemorrhage of gastrointestinal tract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.9) Hemorrhage of gastrointestinal tract, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''578.9''', NULL, + '(578.9) Hemorrhage of gastrointestinal tract, unspecified', '(578.9) Hemorrhage of gastrointestinal tract, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579''', NULL, + 'Intestinal malabsorption (579)', 'Intestinal malabsorption (579)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.0) Celiac disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.0) Celiac disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.0''', NULL, + '(579.0) Celiac disease', '(579.0) Celiac disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.1) Tropical sprue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.1) Tropical sprue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.1''', NULL, + '(579.1) Tropical sprue', '(579.1) Tropical sprue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.2) Blind loop syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.2) Blind loop syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.2''', NULL, + '(579.2) Blind loop syndrome', '(579.2) Blind loop syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.3) Other and unspecified postsurgical nonabsorption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.3) Other and unspecified postsurgical nonabsorption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.3''', NULL, + '(579.3) Other and unspecified postsurgical nonabsorption', '(579.3) Other and unspecified postsurgical nonabsorption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.4) Pancreatic steatorrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.4) Pancreatic steatorrhea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.4''', NULL, + '(579.4) Pancreatic steatorrhea', '(579.4) Pancreatic steatorrhea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.8) Other specified intestinal malabsorption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.8) Other specified intestinal malabsorption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.8''', NULL, + '(579.8) Other specified intestinal malabsorption', '(579.8) Other specified intestinal malabsorption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.9) Unspecified intestinal malabsorption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.9) Unspecified intestinal malabsorption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.9''', NULL, + '(579.9) Unspecified intestinal malabsorption', '(579.9) Unspecified intestinal malabsorption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572''', NULL, + 'Liver abscess and sequelae of chronic liver disease (572)', 'Liver abscess and sequelae of chronic liver disease (572)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.0) Abscess of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.0) Abscess of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.0''', NULL, + '(572.0) Abscess of liver', '(572.0) Abscess of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.1) Portal pyemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.1) Portal pyemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.1''', NULL, + '(572.1) Portal pyemia', '(572.1) Portal pyemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.2) Hepatic encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.2) Hepatic encephalopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.2''', NULL, + '(572.2) Hepatic encephalopathy', '(572.2) Hepatic encephalopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.3) Portal hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.3) Portal hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.3''', NULL, + '(572.3) Portal hypertension', '(572.3) Portal hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.4) Hepatorenal syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.4) Hepatorenal syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.4''', NULL, + '(572.4) Hepatorenal syndrome', '(572.4) Hepatorenal syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.8) Other sequelae of chronic liver disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.8) Other sequelae of chronic liver disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.8''', NULL, + '(572.8) Other sequelae of chronic liver disease', '(572.8) Other sequelae of chronic liver disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576''', NULL, + 'Other disorders of biliary tract (576)', 'Other disorders of biliary tract (576)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.0) Postcholecystectomy syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.0) Postcholecystectomy syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.0''', NULL, + '(576.0) Postcholecystectomy syndrome', '(576.0) Postcholecystectomy syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.1) Cholangitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.1) Cholangitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.1''', NULL, + '(576.1) Cholangitis', '(576.1) Cholangitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.2) Obstruction of bile duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.2) Obstruction of bile duct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.2''', NULL, + '(576.2) Obstruction of bile duct', '(576.2) Obstruction of bile duct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.3) Perforation of bile duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.3) Perforation of bile duct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.3''', NULL, + '(576.3) Perforation of bile duct', '(576.3) Perforation of bile duct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.4) Fistula of bile duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.4) Fistula of bile duct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.4''', NULL, + '(576.4) Fistula of bile duct', '(576.4) Fistula of bile duct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.5) Spasm of sphincter of Oddi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.5) Spasm of sphincter of Oddi\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.5''', NULL, + '(576.5) Spasm of sphincter of Oddi', '(576.5) Spasm of sphincter of Oddi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.8) Other specified disorders of biliary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.8) Other specified disorders of biliary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.8''', NULL, + '(576.8) Other specified disorders of biliary tract', '(576.8) Other specified disorders of biliary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.9) Unspecified disorder of biliary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.9) Unspecified disorder of biliary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.9''', NULL, + '(576.9) Unspecified disorder of biliary tract', '(576.9) Unspecified disorder of biliary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575''', NULL, + 'Other disorders of gallbladder (575)', 'Other disorders of gallbladder (575)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.0) Acute cholecystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.0) Acute cholecystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.0''', NULL, + '(575.0) Acute cholecystitis', '(575.0) Acute cholecystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.2) Obstruction of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.2) Obstruction of gallbladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.2''', NULL, + '(575.2) Obstruction of gallbladder', '(575.2) Obstruction of gallbladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.3) Hydrops of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.3) Hydrops of gallbladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.3''', NULL, + '(575.3) Hydrops of gallbladder', '(575.3) Hydrops of gallbladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.4) Perforation of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.4) Perforation of gallbladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.4''', NULL, + '(575.4) Perforation of gallbladder', '(575.4) Perforation of gallbladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.5) Fistula of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.5) Fistula of gallbladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.5''', NULL, + '(575.5) Fistula of gallbladder', '(575.5) Fistula of gallbladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.6) Cholesterolosis of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.6) Cholesterolosis of gallbladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.6''', NULL, + '(575.6) Cholesterolosis of gallbladder', '(575.6) Cholesterolosis of gallbladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.8) Other specified disorders of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.8) Other specified disorders of gallbladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.8''', NULL, + '(575.8) Other specified disorders of gallbladder', '(575.8) Other specified disorders of gallbladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.9) Unspecified disorder of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.9) Unspecified disorder of gallbladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.9''', NULL, + '(575.9) Unspecified disorder of gallbladder', '(575.9) Unspecified disorder of gallbladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.1''', NULL, + 'Other cholecystitis (575.1)', 'Other cholecystitis (575.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.10) Cholecystitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.10) Cholecystitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.10''', NULL, + '(575.10) Cholecystitis, unspecified', '(575.10) Cholecystitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.11) Chronic cholecystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.11) Chronic cholecystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.11''', NULL, + '(575.11) Chronic cholecystitis', '(575.11) Chronic cholecystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.12) Acute and chronic cholecystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.12) Acute and chronic cholecystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.12''', NULL, + '(575.12) Acute and chronic cholecystitis', '(575.12) Acute and chronic cholecystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573''', NULL, + 'Other disorders of liver (573)', 'Other disorders of liver (573)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.0) Chronic passive congestion of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.0) Chronic passive congestion of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.0''', NULL, + '(573.0) Chronic passive congestion of liver', '(573.0) Chronic passive congestion of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.1) Hepatitis in viral diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.1) Hepatitis in viral diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.1''', NULL, + '(573.1) Hepatitis in viral diseases classified elsewhere', '(573.1) Hepatitis in viral diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.2) Hepatitis in other infectious diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.2) Hepatitis in other infectious diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.2''', NULL, + '(573.2) Hepatitis in other infectious diseases classified elsewhere', '(573.2) Hepatitis in other infectious diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.3) Hepatitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.3) Hepatitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.3''', NULL, + '(573.3) Hepatitis, unspecified', '(573.3) Hepatitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.4) Hepatic infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.4) Hepatic infarction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.4''', NULL, + '(573.4) Hepatic infarction', '(573.4) Hepatic infarction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.8) Other specified disorders of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.8) Other specified disorders of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.8''', NULL, + '(573.8) Other specified disorders of liver', '(573.8) Other specified disorders of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.9) Unspecified disorder of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.9) Unspecified disorder of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.9''', NULL, + '(573.9) Unspecified disorder of liver', '(573.9) Unspecified disorder of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''560'' AND ''569.99''', NULL, + 'Other diseases of intestines and peritoneum (560-569.99)', 'Other diseases of intestines and peritoneum (560-569.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\(566) Abscess of anal and rectal regions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\(566) Abscess of anal and rectal regions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''566''', NULL, + '(566) Abscess of anal and rectal regions', '(566) Abscess of anal and rectal regions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''565''', NULL, + 'Anal fissure and fistula (565)', 'Anal fissure and fistula (565)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\(565.0) Anal fissure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\(565.0) Anal fissure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''565.0''', NULL, + '(565.0) Anal fissure', '(565.0) Anal fissure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\(565.1) Anal fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\(565.1) Anal fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''565.1''', NULL, + '(565.1) Anal fistula', '(565.1) Anal fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562''', NULL, + 'Diverticula of intestine (562)', 'Diverticula of intestine (562)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.1''', NULL, + 'Diverticula of colon (562.1)', 'Diverticula of colon (562.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.10) Diverticulosis of colon (without mention of hemorrhage)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.10) Diverticulosis of colon (without mention of hemorrhage)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.10) Diverticulosis of colon (without mention of hemorrhage''', NULL, + '(562.10) Diverticulosis of colon (without mention of hemorrhage)', '(562.10) Diverticulosis of colon (without mention of hemorrhage)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.11) Diverticulitis of colon (without mention of hemorrhage)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.11) Diverticulitis of colon (without mention of hemorrhage)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.11) Diverticulitis of colon (without mention of hemorrhage''', NULL, + '(562.11) Diverticulitis of colon (without mention of hemorrhage)', '(562.11) Diverticulitis of colon (without mention of hemorrhage)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.12) Diverticulosis of colon with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.12) Diverticulosis of colon with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.12''', NULL, + '(562.12) Diverticulosis of colon with hemorrhage', '(562.12) Diverticulosis of colon with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.13) Diverticulitis of colon with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.13) Diverticulitis of colon with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.13''', NULL, + '(562.13) Diverticulitis of colon with hemorrhage', '(562.13) Diverticulitis of colon with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.0''', NULL, + 'Diverticula of small intestine (562.0)', 'Diverticula of small intestine (562.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.00) Diverticulosis of small intestine (without mention of hemorrhage)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.00) Diverticulosis of small intestine (without mention of hemorrhage)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.00) Diverticulosis of small intestine (without mention of hemorrhage''', NULL, + '(562.00) Diverticulosis of small intestine (without mention of hemorrhage)', '(562.00) Diverticulosis of small intestine (without mention of hemorrhage)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.01) Diverticulitis of small intestine (without mention of hemorrhage)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.01) Diverticulitis of small intestine (without mention of hemorrhage)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.01) Diverticulitis of small intestine (without mention of hemorrhage''', NULL, + '(562.01) Diverticulitis of small intestine (without mention of hemorrhage)', '(562.01) Diverticulitis of small intestine (without mention of hemorrhage)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.02) Diverticulosis of small intestine with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.02) Diverticulosis of small intestine with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.02''', NULL, + '(562.02) Diverticulosis of small intestine with hemorrhage', '(562.02) Diverticulosis of small intestine with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.03) Diverticulitis of small intestine with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.03) Diverticulitis of small intestine with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.03''', NULL, + '(562.03) Diverticulitis of small intestine with hemorrhage', '(562.03) Diverticulitis of small intestine with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564''', NULL, + 'Functional digestive disorders, not elsewhere classified (564)', 'Functional digestive disorders, not elsewhere classified (564)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.1) Irritable bowel syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.1) Irritable bowel syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.1''', NULL, + '(564.1) Irritable bowel syndrome', '(564.1) Irritable bowel syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.2) Postgastric surgery syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.2) Postgastric surgery syndromes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.2''', NULL, + '(564.2) Postgastric surgery syndromes', '(564.2) Postgastric surgery syndromes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.3) Vomiting following gastrointestinal surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.3) Vomiting following gastrointestinal surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.3''', NULL, + '(564.3) Vomiting following gastrointestinal surgery', '(564.3) Vomiting following gastrointestinal surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.4) Other postoperative functional disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.4) Other postoperative functional disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.4''', NULL, + '(564.4) Other postoperative functional disorders', '(564.4) Other postoperative functional disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.5) Functional diarrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.5) Functional diarrhea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.5''', NULL, + '(564.5) Functional diarrhea', '(564.5) Functional diarrhea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.6) Anal spasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.6) Anal spasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.6''', NULL, + '(564.6) Anal spasm', '(564.6) Anal spasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.7) Megacolon, other than Hirschsprung''s\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.7) Megacolon, other than Hirschsprung''s\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.7''', NULL, + '(564.7) Megacolon, other than Hirschsprung''s', '(564.7) Megacolon, other than Hirschsprung''s', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.9) Unspecified functional disorder of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.9) Unspecified functional disorder of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.9''', NULL, + '(564.9) Unspecified functional disorder of intestine', '(564.9) Unspecified functional disorder of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.0''', NULL, + 'Constipation (564.0)', 'Constipation (564.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.00) Constipation, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.00) Constipation, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.00''', NULL, + '(564.00) Constipation, unspecified', '(564.00) Constipation, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.01) Slow transit constipation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.01) Slow transit constipation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.01''', NULL, + '(564.01) Slow transit constipation', '(564.01) Slow transit constipation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.02) Outlet dysfunction constipation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.02) Outlet dysfunction constipation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.02''', NULL, + '(564.02) Outlet dysfunction constipation', '(564.02) Outlet dysfunction constipation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.09) Other constipation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.09) Other constipation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.09''', NULL, + '(564.09) Other constipation', '(564.09) Other constipation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.8''', NULL, + 'Other specified functional disorders of intestine (564.8)', 'Other specified functional disorders of intestine (564.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\(564.81) Neurogenic bowel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\(564.81) Neurogenic bowel\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.81''', NULL, + '(564.81) Neurogenic bowel', '(564.81) Neurogenic bowel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\(564.89) Other functional disorders of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\(564.89) Other functional disorders of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.89''', NULL, + '(564.89) Other functional disorders of intestine', '(564.89) Other functional disorders of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560''', NULL, + 'Intestinal obstruction without mention of hernia (560)', 'Intestinal obstruction without mention of hernia (560)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.0) Intussusception\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.0) Intussusception\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.0''', NULL, + '(560.0) Intussusception', '(560.0) Intussusception', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.1) Paralytic ileus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.1) Paralytic ileus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.1''', NULL, + '(560.1) Paralytic ileus', '(560.1) Paralytic ileus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.2) Volvulus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.2) Volvulus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.2''', NULL, + '(560.2) Volvulus', '(560.2) Volvulus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.9) Unspecified intestinal obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.9) Unspecified intestinal obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.9''', NULL, + '(560.9) Unspecified intestinal obstruction', '(560.9) Unspecified intestinal obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.3''', NULL, + 'Impaction of intestine (560.3)', 'Impaction of intestine (560.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.30) Impaction of intestine, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.30) Impaction of intestine, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.30''', NULL, + '(560.30) Impaction of intestine, unspecified', '(560.30) Impaction of intestine, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.31) Gallstone ileus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.31) Gallstone ileus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.31''', NULL, + '(560.31) Gallstone ileus', '(560.31) Gallstone ileus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.32) Fecal impaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.32) Fecal impaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.32''', NULL, + '(560.32) Fecal impaction', '(560.32) Fecal impaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.39) Other impaction of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.39) Other impaction of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.39''', NULL, + '(560.39) Other impaction of intestine', '(560.39) Other impaction of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.8''', NULL, + 'Other specified intestinal obstruction (560.8)', 'Other specified intestinal obstruction (560.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\(560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\(560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection''', NULL, + '(560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection)', '(560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\(560.89) Other specified intestinal obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\(560.89) Other specified intestinal obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.89''', NULL, + '(560.89) Other specified intestinal obstruction', '(560.89) Other specified intestinal obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569''', NULL, + 'Other disorders of intestine (569)', 'Other disorders of intestine (569)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.0) Anal and rectal polyp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.0) Anal and rectal polyp\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.0''', NULL, + '(569.0) Anal and rectal polyp', '(569.0) Anal and rectal polyp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.1) Rectal prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.1) Rectal prolapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.1''', NULL, + '(569.1) Rectal prolapse', '(569.1) Rectal prolapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.2) Stenosis of rectum and anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.2) Stenosis of rectum and anus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.2''', NULL, + '(569.2) Stenosis of rectum and anus', '(569.2) Stenosis of rectum and anus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.3) Hemorrhage of rectum and anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.3) Hemorrhage of rectum and anus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.3''', NULL, + '(569.3) Hemorrhage of rectum and anus', '(569.3) Hemorrhage of rectum and anus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.5) Abscess of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.5) Abscess of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.5''', NULL, + '(569.5) Abscess of intestine', '(569.5) Abscess of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.9) Unspecified disorder of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.9) Unspecified disorder of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.9''', NULL, + '(569.9) Unspecified disorder of intestine', '(569.9) Unspecified disorder of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.6''', NULL, + 'Colostomy and enterostomy complications (569.6)', 'Colostomy and enterostomy complications (569.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.60) Colostomy and enterostomy complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.60) Colostomy and enterostomy complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.60''', NULL, + '(569.60) Colostomy and enterostomy complication, unspecified', '(569.60) Colostomy and enterostomy complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.61) Infection of colostomy or enterostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.61) Infection of colostomy or enterostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.61''', NULL, + '(569.61) Infection of colostomy or enterostomy', '(569.61) Infection of colostomy or enterostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.62) Mechanical complication of colostomy and enterostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.62) Mechanical complication of colostomy and enterostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.62''', NULL, + '(569.62) Mechanical complication of colostomy and enterostomy', '(569.62) Mechanical complication of colostomy and enterostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.69) Other colostomy and enterostomy complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.69) Other colostomy and enterostomy complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.69''', NULL, + '(569.69) Other colostomy and enterostomy complication', '(569.69) Other colostomy and enterostomy complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.7''', NULL, + 'Complications of intestinal pouch (569.7)', 'Complications of intestinal pouch (569.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\(569.71) Pouchitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\(569.71) Pouchitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.71''', NULL, + '(569.71) Pouchitis', '(569.71) Pouchitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\(569.79) Other complications of intestinal pouch\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\(569.79) Other complications of intestinal pouch\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.79''', NULL, + '(569.79) Other complications of intestinal pouch', '(569.79) Other complications of intestinal pouch', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.8''', NULL, + 'Other specified disorders of intestine (569.8)', 'Other specified disorders of intestine (569.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.81) Fistula of intestine, excluding rectum and anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.81) Fistula of intestine, excluding rectum and anus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.81''', NULL, + '(569.81) Fistula of intestine, excluding rectum and anus', '(569.81) Fistula of intestine, excluding rectum and anus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.82) Ulceration of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.82) Ulceration of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.82''', NULL, + '(569.82) Ulceration of intestine', '(569.82) Ulceration of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.83) Perforation of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.83) Perforation of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.83''', NULL, + '(569.83) Perforation of intestine', '(569.83) Perforation of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.84) Angiodysplasia of intestine (without mention of hemorrhage)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.84) Angiodysplasia of intestine (without mention of hemorrhage)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.84) Angiodysplasia of intestine (without mention of hemorrhage''', NULL, + '(569.84) Angiodysplasia of intestine (without mention of hemorrhage)', '(569.84) Angiodysplasia of intestine (without mention of hemorrhage)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.85) Angiodysplasia of intestine with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.85) Angiodysplasia of intestine with hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.85''', NULL, + '(569.85) Angiodysplasia of intestine with hemorrhage', '(569.85) Angiodysplasia of intestine with hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.86) Dieulafoy lesion (hemorrhagic) of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.86) Dieulafoy lesion (hemorrhagic) of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.86) Dieulafoy lesion (hemorrhagic''', NULL, + '(569.86) Dieulafoy lesion (hemorrhagic) of intestine', '(569.86) Dieulafoy lesion (hemorrhagic) of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.89) Other specified disorders of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.89) Other specified disorders of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.89''', NULL, + '(569.89) Other specified disorders of intestine', '(569.89) Other specified disorders of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.4''', NULL, + 'Other specified disorders of rectum and anus (569.4)', 'Other specified disorders of rectum and anus (569.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.41) Ulcer of anus and rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.41) Ulcer of anus and rectum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.41''', NULL, + '(569.41) Ulcer of anus and rectum', '(569.41) Ulcer of anus and rectum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.42) Anal or rectal pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.42) Anal or rectal pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.42''', NULL, + '(569.42) Anal or rectal pain', '(569.42) Anal or rectal pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.43) Anal sphincter tear (healed) (old)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.43) Anal sphincter tear (healed) (old)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.43) Anal sphincter tear (healed) (old''', NULL, + '(569.43) Anal sphincter tear (healed) (old)', '(569.43) Anal sphincter tear (healed) (old)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.44) Dysplasia of anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.44) Dysplasia of anus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.44''', NULL, + '(569.44) Dysplasia of anus', '(569.44) Dysplasia of anus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.49) Other specified disorders of rectum and anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.49) Other specified disorders of rectum and anus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.49''', NULL, + '(569.49) Other specified disorders of rectum and anus', '(569.49) Other specified disorders of rectum and anus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568''', NULL, + 'Other disorders of peritoneum (568)', 'Other disorders of peritoneum (568)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\(568.0) Peritoneal adhesions (postoperative) (postinfection)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\(568.0) Peritoneal adhesions (postoperative) (postinfection)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.0) Peritoneal adhesions (postoperative) (postinfection''', NULL, + '(568.0) Peritoneal adhesions (postoperative) (postinfection)', '(568.0) Peritoneal adhesions (postoperative) (postinfection)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\(568.9) Unspecified disorder of peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\(568.9) Unspecified disorder of peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.9''', NULL, + '(568.9) Unspecified disorder of peritoneum', '(568.9) Unspecified disorder of peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.8''', NULL, + 'Other specified disorders of peritoneum (568.8)', 'Other specified disorders of peritoneum (568.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.81) Hemoperitoneum (nontraumatic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.81) Hemoperitoneum (nontraumatic)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.81) Hemoperitoneum (nontraumatic''', NULL, + '(568.81) Hemoperitoneum (nontraumatic)', '(568.81) Hemoperitoneum (nontraumatic)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.82) Peritoneal effusion (chronic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.82) Peritoneal effusion (chronic)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.82) Peritoneal effusion (chronic''', NULL, + '(568.82) Peritoneal effusion (chronic)', '(568.82) Peritoneal effusion (chronic)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.89) Other specified disorders of peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.89) Other specified disorders of peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.89''', NULL, + '(568.89) Other specified disorders of peritoneum', '(568.89) Other specified disorders of peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567''', NULL, + 'Peritonitis and retroperitoneal infections (567)', 'Peritonitis and retroperitoneal infections (567)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.0) Peritonitis in infectious diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.0) Peritonitis in infectious diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.0''', NULL, + '(567.0) Peritonitis in infectious diseases classified elsewhere', '(567.0) Peritonitis in infectious diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.1) Pneumococcal peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.1) Pneumococcal peritonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.1''', NULL, + '(567.1) Pneumococcal peritonitis', '(567.1) Pneumococcal peritonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.9) Unspecified peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.9) Unspecified peritonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.9''', NULL, + '(567.9) Unspecified peritonitis', '(567.9) Unspecified peritonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.8''', NULL, + 'Other specified peritonitis (567.8)', 'Other specified peritonitis (567.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.81) Choleperitonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.81) Choleperitonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.81''', NULL, + '(567.81) Choleperitonitis', '(567.81) Choleperitonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.82) Sclerosing mesenteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.82) Sclerosing mesenteritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.82''', NULL, + '(567.82) Sclerosing mesenteritis', '(567.82) Sclerosing mesenteritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.89) Other specified peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.89) Other specified peritonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.89''', NULL, + '(567.89) Other specified peritonitis', '(567.89) Other specified peritonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.2''', NULL, + 'Other suppurative peritonitis (567.2)', 'Other suppurative peritonitis (567.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.21) Peritonitis (acute) generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.21) Peritonitis (acute) generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.21) Peritonitis (acute''', NULL, + '(567.21) Peritonitis (acute) generalized', '(567.21) Peritonitis (acute) generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.22) Peritoneal abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.22) Peritoneal abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.22''', NULL, + '(567.22) Peritoneal abscess', '(567.22) Peritoneal abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.23) Spontaneous bacterial peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.23) Spontaneous bacterial peritonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.23''', NULL, + '(567.23) Spontaneous bacterial peritonitis', '(567.23) Spontaneous bacterial peritonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.29) Other suppurative peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.29) Other suppurative peritonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.29''', NULL, + '(567.29) Other suppurative peritonitis', '(567.29) Other suppurative peritonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.3''', NULL, + 'Retroperitoneal infections (567.3)', 'Retroperitoneal infections (567.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.31) Psoas muscle abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.31) Psoas muscle abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.31''', NULL, + '(567.31) Psoas muscle abscess', '(567.31) Psoas muscle abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.38) Other retroperitoneal abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.38) Other retroperitoneal abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.38''', NULL, + '(567.38) Other retroperitoneal abscess', '(567.38) Other retroperitoneal abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.39) Other retroperitoneal infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.39) Other retroperitoneal infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.39''', NULL, + '(567.39) Other retroperitoneal infections', '(567.39) Other retroperitoneal infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''580'' AND ''629.99''', NULL, + 'Diseases of the genitourinary system (580-629.99)', 'Diseases of the genitourinary system (580-629.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''600'' AND ''608.99''', NULL, + 'Diseases of male genital organs (600-608.99)', 'Diseases of male genital organs (600-608.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\(605) Redundant prepuce and phimosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\(605) Redundant prepuce and phimosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''605''', NULL, + '(605) Redundant prepuce and phimosis', '(605) Redundant prepuce and phimosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607''', NULL, + 'Disorders of penis (607)', 'Disorders of penis (607)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.0) Leukoplakia of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.0) Leukoplakia of penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.0''', NULL, + '(607.0) Leukoplakia of penis', '(607.0) Leukoplakia of penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.1) Balanoposthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.1) Balanoposthitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.1''', NULL, + '(607.1) Balanoposthitis', '(607.1) Balanoposthitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.2) Other inflammatory disorders of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.2) Other inflammatory disorders of penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.2''', NULL, + '(607.2) Other inflammatory disorders of penis', '(607.2) Other inflammatory disorders of penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.3) Priapism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.3) Priapism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.3''', NULL, + '(607.3) Priapism', '(607.3) Priapism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.9) Unspecified disorder of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.9) Unspecified disorder of penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.9''', NULL, + '(607.9) Unspecified disorder of penis', '(607.9) Unspecified disorder of penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.8''', NULL, + 'Other specified disorders of penis (607.8)', 'Other specified disorders of penis (607.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.81) Balanitis xerotica obliterans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.81) Balanitis xerotica obliterans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.81''', NULL, + '(607.81) Balanitis xerotica obliterans', '(607.81) Balanitis xerotica obliterans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.82) Vascular disorders of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.82) Vascular disorders of penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.82''', NULL, + '(607.82) Vascular disorders of penis', '(607.82) Vascular disorders of penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.83) Edema of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.83) Edema of penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.83''', NULL, + '(607.83) Edema of penis', '(607.83) Edema of penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.84) Impotence of organic origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.84) Impotence of organic origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.84''', NULL, + '(607.84) Impotence of organic origin', '(607.84) Impotence of organic origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.85) Peyronie''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.85) Peyronie''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.85''', NULL, + '(607.85) Peyronie''s disease', '(607.85) Peyronie''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.89) Other specified disorders of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.89) Other specified disorders of penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.89''', NULL, + '(607.89) Other specified disorders of penis', '(607.89) Other specified disorders of penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''603''', NULL, + 'Hydrocele (603)', 'Hydrocele (603)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.0) Encysted hydrocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.0) Encysted hydrocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''603.0''', NULL, + '(603.0) Encysted hydrocele', '(603.0) Encysted hydrocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.1) Infected hydrocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.1) Infected hydrocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''603.1''', NULL, + '(603.1) Infected hydrocele', '(603.1) Infected hydrocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.8) Other specified types of hydrocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.8) Other specified types of hydrocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''603.8''', NULL, + '(603.8) Other specified types of hydrocele', '(603.8) Other specified types of hydrocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.9) Hydrocele, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.9) Hydrocele, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''603.9''', NULL, + '(603.9) Hydrocele, unspecified', '(603.9) Hydrocele, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600''', NULL, + 'Hyperplasia of prostate (600)', 'Hyperplasia of prostate (600)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\(600.3) Cyst of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\(600.3) Cyst of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.3''', NULL, + '(600.3) Cyst of prostate', '(600.3) Cyst of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.2''', NULL, + 'Benign localized hyperplasia of prostate (600.2)', 'Benign localized hyperplasia of prostate (600.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\(600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\(600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS''', NULL, + '(600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS)', '(600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\(600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\(600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS''', NULL, + '(600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)', '(600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.9''', NULL, + 'Hyperplasia of prostate, unspecified (600.9)', 'Hyperplasia of prostate, unspecified (600.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\(600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\(600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS''', NULL, + '(600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS)', '(600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\(600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\(600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS''', NULL, + '(600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS)', '(600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''benign) of prostate (600.0''', NULL, + 'Hypertrophy (benign) of prostate (600.0)', 'Hypertrophy (benign) of prostate (600.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\(600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\(600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS''', NULL, + '(600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)', '(600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\(600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\(600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS''', NULL, + '(600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)', '(600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.1''', NULL, + 'Nodular prostate (600.1)', 'Nodular prostate (600.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\(600.10) Nodular prostate without urinary obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\(600.10) Nodular prostate without urinary obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.10''', NULL, + '(600.10) Nodular prostate without urinary obstruction', '(600.10) Nodular prostate without urinary obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\(600.11) Nodular prostate with urinary obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\(600.11) Nodular prostate with urinary obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.11''', NULL, + '(600.11) Nodular prostate with urinary obstruction', '(600.11) Nodular prostate with urinary obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''606''', NULL, + 'Infertility, male (606)', 'Infertility, male (606)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.0) Azoospermia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.0) Azoospermia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''606.0''', NULL, + '(606.0) Azoospermia', '(606.0) Azoospermia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.1) Oligospermia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.1) Oligospermia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''606.1''', NULL, + '(606.1) Oligospermia', '(606.1) Oligospermia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.8) Infertility due to extratesticular causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.8) Infertility due to extratesticular causes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''606.8''', NULL, + '(606.8) Infertility due to extratesticular causes', '(606.8) Infertility due to extratesticular causes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.9) Male infertility, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.9) Male infertility, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''606.9''', NULL, + '(606.9) Male infertility, unspecified', '(606.9) Male infertility, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601''', NULL, + 'Inflammatory diseases of prostate (601)', 'Inflammatory diseases of prostate (601)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.0) Acute prostatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.0) Acute prostatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.0''', NULL, + '(601.0) Acute prostatitis', '(601.0) Acute prostatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.1) Chronic prostatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.1) Chronic prostatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.1''', NULL, + '(601.1) Chronic prostatitis', '(601.1) Chronic prostatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.2) Abscess of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.2) Abscess of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.2''', NULL, + '(601.2) Abscess of prostate', '(601.2) Abscess of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.3) Prostatocystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.3) Prostatocystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.3''', NULL, + '(601.3) Prostatocystitis', '(601.3) Prostatocystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.4) Prostatitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.4) Prostatitis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.4''', NULL, + '(601.4) Prostatitis in diseases classified elsewhere', '(601.4) Prostatitis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.8) Other specified inflammatory diseases of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.8) Other specified inflammatory diseases of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.8''', NULL, + '(601.8) Other specified inflammatory diseases of prostate', '(601.8) Other specified inflammatory diseases of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.9) Prostatitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.9) Prostatitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.9''', NULL, + '(601.9) Prostatitis, unspecified', '(601.9) Prostatitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604''', NULL, + 'Orchitis and epididymitis (604)', 'Orchitis and epididymitis (604)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\(604.0) Orchitis, epididymitis, and epididymo-orchitis, with abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\(604.0) Orchitis, epididymitis, and epididymo-orchitis, with abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604.0''', NULL, + '(604.0) Orchitis, epididymitis, and epididymo-orchitis, with abscess', '(604.0) Orchitis, epididymitis, and epididymo-orchitis, with abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604.9''', NULL, + 'Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)', 'Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.90) Orchitis and epididymitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.90) Orchitis and epididymitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604.90''', NULL, + '(604.90) Orchitis and epididymitis, unspecified', '(604.90) Orchitis and epididymitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.91) Orchitis and epididymitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.91) Orchitis and epididymitis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604.91''', NULL, + '(604.91) Orchitis and epididymitis in diseases classified elsewhere', '(604.91) Orchitis and epididymitis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.99) Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.99) Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604.99''', NULL, + '(604.99) Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess', '(604.99) Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608''', NULL, + 'Other disorders of male genital organs (608)', 'Other disorders of male genital organs (608)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.0) Seminal vesiculitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.0) Seminal vesiculitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.0''', NULL, + '(608.0) Seminal vesiculitis', '(608.0) Seminal vesiculitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.1) Spermatocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.1) Spermatocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.1''', NULL, + '(608.1) Spermatocele', '(608.1) Spermatocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.3) Atrophy of testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.3) Atrophy of testis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.3''', NULL, + '(608.3) Atrophy of testis', '(608.3) Atrophy of testis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.4) Other inflammatory disorders of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.4) Other inflammatory disorders of male genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.4''', NULL, + '(608.4) Other inflammatory disorders of male genital organs', '(608.4) Other inflammatory disorders of male genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.9) Unspecified disorder of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.9) Unspecified disorder of male genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.9''', NULL, + '(608.9) Unspecified disorder of male genital organs', '(608.9) Unspecified disorder of male genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.8''', NULL, + 'Other specified disorders of male genital organs (608.8)', 'Other specified disorders of male genital organs (608.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.81) Disorders of male genital organs in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.81) Disorders of male genital organs in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.81''', NULL, + '(608.81) Disorders of male genital organs in diseases classified elsewhere', '(608.81) Disorders of male genital organs in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.82) Hematospermia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.82) Hematospermia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.82''', NULL, + '(608.82) Hematospermia', '(608.82) Hematospermia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.83) Vascular disorders of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.83) Vascular disorders of male genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.83''', NULL, + '(608.83) Vascular disorders of male genital organs', '(608.83) Vascular disorders of male genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.84) Chylocele of tunica vaginalis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.84) Chylocele of tunica vaginalis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.84''', NULL, + '(608.84) Chylocele of tunica vaginalis', '(608.84) Chylocele of tunica vaginalis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.85) Stricture of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.85) Stricture of male genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.85''', NULL, + '(608.85) Stricture of male genital organs', '(608.85) Stricture of male genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.86) Edema of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.86) Edema of male genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.86''', NULL, + '(608.86) Edema of male genital organs', '(608.86) Edema of male genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.87) Retrograde ejaculation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.87) Retrograde ejaculation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.87''', NULL, + '(608.87) Retrograde ejaculation', '(608.87) Retrograde ejaculation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.89) Other specified disorders of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.89) Other specified disorders of male genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.89''', NULL, + '(608.89) Other specified disorders of male genital organs', '(608.89) Other specified disorders of male genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.2''', NULL, + 'Torsion of testis (608.2)', 'Torsion of testis (608.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.20) Torsion of testis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.20) Torsion of testis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.20''', NULL, + '(608.20) Torsion of testis, unspecified', '(608.20) Torsion of testis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.21) Extravaginal torsion of spermatic cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.21) Extravaginal torsion of spermatic cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.21''', NULL, + '(608.21) Extravaginal torsion of spermatic cord', '(608.21) Extravaginal torsion of spermatic cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.22) Intravaginal torsion of spermatic cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.22) Intravaginal torsion of spermatic cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.22''', NULL, + '(608.22) Intravaginal torsion of spermatic cord', '(608.22) Intravaginal torsion of spermatic cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.23) Torsion of appendix testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.23) Torsion of appendix testis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.23''', NULL, + '(608.23) Torsion of appendix testis', '(608.23) Torsion of appendix testis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.24) Torsion of appendix epididymis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.24) Torsion of appendix epididymis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.24''', NULL, + '(608.24) Torsion of appendix epididymis', '(608.24) Torsion of appendix epididymis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602''', NULL, + 'Other disorders of prostate (602)', 'Other disorders of prostate (602)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.0) Calculus of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.0) Calculus of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.0''', NULL, + '(602.0) Calculus of prostate', '(602.0) Calculus of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.1) Congestion or hemorrhage of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.1) Congestion or hemorrhage of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.1''', NULL, + '(602.1) Congestion or hemorrhage of prostate', '(602.1) Congestion or hemorrhage of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.2) Atrophy of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.2) Atrophy of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.2''', NULL, + '(602.2) Atrophy of prostate', '(602.2) Atrophy of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.3) Dysplasia of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.3) Dysplasia of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.3''', NULL, + '(602.3) Dysplasia of prostate', '(602.3) Dysplasia of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.8) Other specified disorders of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.8) Other specified disorders of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.8''', NULL, + '(602.8) Other specified disorders of prostate', '(602.8) Other specified disorders of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.9) Unspecified disorder of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.9) Unspecified disorder of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.9''', NULL, + '(602.9) Unspecified disorder of prostate', '(602.9) Unspecified disorder of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''610'' AND ''612.99''', NULL, + 'Disorders of breast (610-612.99)', 'Disorders of breast (610-612.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610''', NULL, + 'Benign mammary dysplasias (610)', 'Benign mammary dysplasias (610)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.0) Solitary cyst of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.0) Solitary cyst of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.0''', NULL, + '(610.0) Solitary cyst of breast', '(610.0) Solitary cyst of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.1) Diffuse cystic mastopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.1) Diffuse cystic mastopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.1''', NULL, + '(610.1) Diffuse cystic mastopathy', '(610.1) Diffuse cystic mastopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.2) Fibroadenosis of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.2) Fibroadenosis of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.2''', NULL, + '(610.2) Fibroadenosis of breast', '(610.2) Fibroadenosis of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.3) Fibrosclerosis of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.3) Fibrosclerosis of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.3''', NULL, + '(610.3) Fibrosclerosis of breast', '(610.3) Fibrosclerosis of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.4) Mammary duct ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.4) Mammary duct ectasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.4''', NULL, + '(610.4) Mammary duct ectasia', '(610.4) Mammary duct ectasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.8) Other specified benign mammary dysplasias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.8) Other specified benign mammary dysplasias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.8''', NULL, + '(610.8) Other specified benign mammary dysplasias', '(610.8) Other specified benign mammary dysplasias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.9) Benign mammary dysplasia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.9) Benign mammary dysplasia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.9''', NULL, + '(610.9) Benign mammary dysplasia, unspecified', '(610.9) Benign mammary dysplasia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''612''', NULL, + 'Deformity and disproportion of reconstructed breast (612)', 'Deformity and disproportion of reconstructed breast (612)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\(612.0) Deformity of reconstructed breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\(612.0) Deformity of reconstructed breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''612.0''', NULL, + '(612.0) Deformity of reconstructed breast', '(612.0) Deformity of reconstructed breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\(612.1) Disproportion of reconstructed breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\(612.1) Disproportion of reconstructed breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''612.1''', NULL, + '(612.1) Disproportion of reconstructed breast', '(612.1) Disproportion of reconstructed breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611''', NULL, + 'Other disorders of breast (611)', 'Other disorders of breast (611)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.0) Inflammatory disease of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.0) Inflammatory disease of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.0''', NULL, + '(611.0) Inflammatory disease of breast', '(611.0) Inflammatory disease of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.1) Hypertrophy of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.1) Hypertrophy of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.1''', NULL, + '(611.1) Hypertrophy of breast', '(611.1) Hypertrophy of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.2) Fissure of nipple\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.2) Fissure of nipple\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.2''', NULL, + '(611.2) Fissure of nipple', '(611.2) Fissure of nipple', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.3) Fat necrosis of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.3) Fat necrosis of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.3''', NULL, + '(611.3) Fat necrosis of breast', '(611.3) Fat necrosis of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.4) Atrophy of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.4) Atrophy of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.4''', NULL, + '(611.4) Atrophy of breast', '(611.4) Atrophy of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.5) Galactocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.5) Galactocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.5''', NULL, + '(611.5) Galactocele', '(611.5) Galactocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.6) Galactorrhea not associated with childbirth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.6) Galactorrhea not associated with childbirth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.6''', NULL, + '(611.6) Galactorrhea not associated with childbirth', '(611.6) Galactorrhea not associated with childbirth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.9) Unspecified breast disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.9) Unspecified breast disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.9''', NULL, + '(611.9) Unspecified breast disorder', '(611.9) Unspecified breast disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.8''', NULL, + 'Other specified disorders of breast (611.8)', 'Other specified disorders of breast (611.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.81) Ptosis of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.81) Ptosis of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.81''', NULL, + '(611.81) Ptosis of breast', '(611.81) Ptosis of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.82) Hypoplasia of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.82) Hypoplasia of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.82''', NULL, + '(611.82) Hypoplasia of breast', '(611.82) Hypoplasia of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.83) Capsular contracture of breast implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.83) Capsular contracture of breast implant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.83''', NULL, + '(611.83) Capsular contracture of breast implant', '(611.83) Capsular contracture of breast implant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.89) Other specified disorders of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.89) Other specified disorders of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.89''', NULL, + '(611.89) Other specified disorders of breast', '(611.89) Other specified disorders of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.7''', NULL, + 'Signs and symptoms in breast (611.7)', 'Signs and symptoms in breast (611.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.71) Mastodynia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.71) Mastodynia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.71''', NULL, + '(611.71) Mastodynia', '(611.71) Mastodynia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.72) Lump or mass in breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.72) Lump or mass in breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.72''', NULL, + '(611.72) Lump or mass in breast', '(611.72) Lump or mass in breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.79) Other signs and symptoms in breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.79) Other signs and symptoms in breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.79''', NULL, + '(611.79) Other signs and symptoms in breast', '(611.79) Other signs and symptoms in breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''614'' AND ''616.99''', NULL, + 'Inflammatory disease of female pelvic organs (614-616.99)', 'Inflammatory disease of female pelvic organs (614-616.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616''', NULL, + 'Inflammatory disease of cervix, vagina, and vulva (616)', 'Inflammatory disease of cervix, vagina, and vulva (616)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.0) Cervicitis and endocervicitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.0) Cervicitis and endocervicitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.0''', NULL, + '(616.0) Cervicitis and endocervicitis', '(616.0) Cervicitis and endocervicitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.2) Cyst of Bartholin''s gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.2) Cyst of Bartholin''s gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.2''', NULL, + '(616.2) Cyst of Bartholin''s gland', '(616.2) Cyst of Bartholin''s gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.3) Abscess of Bartholin''s gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.3) Abscess of Bartholin''s gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.3''', NULL, + '(616.3) Abscess of Bartholin''s gland', '(616.3) Abscess of Bartholin''s gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.4) Other abscess of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.4) Other abscess of vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.4''', NULL, + '(616.4) Other abscess of vulva', '(616.4) Other abscess of vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.9) Unspecified inflammatory disease of cervix, vagina, and vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.9) Unspecified inflammatory disease of cervix, vagina, and vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.9''', NULL, + '(616.9) Unspecified inflammatory disease of cervix, vagina, and vulva', '(616.9) Unspecified inflammatory disease of cervix, vagina, and vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.8''', NULL, + 'Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)', 'Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\(616.81) Mucositis (ulcerative) of cervix, vagina, and vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\(616.81) Mucositis (ulcerative) of cervix, vagina, and vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.81) Mucositis (ulcerative''', NULL, + '(616.81) Mucositis (ulcerative) of cervix, vagina, and vulva', '(616.81) Mucositis (ulcerative) of cervix, vagina, and vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\(616.89) Other inflammatory disease of cervix, vagina and vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\(616.89) Other inflammatory disease of cervix, vagina and vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.89''', NULL, + '(616.89) Other inflammatory disease of cervix, vagina and vulva', '(616.89) Other inflammatory disease of cervix, vagina and vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.5''', NULL, + 'Ulceration of vulva (616.5)', 'Ulceration of vulva (616.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\(616.50) Ulceration of vulva, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\(616.50) Ulceration of vulva, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.50''', NULL, + '(616.50) Ulceration of vulva, unspecified', '(616.50) Ulceration of vulva, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\(616.51) Ulceration of vulva in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\(616.51) Ulceration of vulva in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.51''', NULL, + '(616.51) Ulceration of vulva in diseases classified elsewhere', '(616.51) Ulceration of vulva in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.1''', NULL, + 'Vaginitis and vulvovaginitis (616.1)', 'Vaginitis and vulvovaginitis (616.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\(616.10) Vaginitis and vulvovaginitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\(616.10) Vaginitis and vulvovaginitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.10''', NULL, + '(616.10) Vaginitis and vulvovaginitis, unspecified', '(616.10) Vaginitis and vulvovaginitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\(616.11) Vaginitis and vulvovaginitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\(616.11) Vaginitis and vulvovaginitis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.11''', NULL, + '(616.11) Vaginitis and vulvovaginitis in diseases classified elsewhere', '(616.11) Vaginitis and vulvovaginitis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614''', NULL, + 'Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)', 'Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.0) Acute salpingitis and oophoritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.0) Acute salpingitis and oophoritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.0''', NULL, + '(614.0) Acute salpingitis and oophoritis', '(614.0) Acute salpingitis and oophoritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.1) Chronic salpingitis and oophoritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.1) Chronic salpingitis and oophoritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.1''', NULL, + '(614.1) Chronic salpingitis and oophoritis', '(614.1) Chronic salpingitis and oophoritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.2) Salpingitis and oophoritis not specified as acute, subacute, or chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.2) Salpingitis and oophoritis not specified as acute, subacute, or chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.2''', NULL, + '(614.2) Salpingitis and oophoritis not specified as acute, subacute, or chronic', '(614.2) Salpingitis and oophoritis not specified as acute, subacute, or chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.3) Acute parametritis and pelvic cellulitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.3) Acute parametritis and pelvic cellulitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.3''', NULL, + '(614.3) Acute parametritis and pelvic cellulitis', '(614.3) Acute parametritis and pelvic cellulitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.4) Chronic or unspecified parametritis and pelvic cellulitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.4) Chronic or unspecified parametritis and pelvic cellulitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.4''', NULL, + '(614.4) Chronic or unspecified parametritis and pelvic cellulitis', '(614.4) Chronic or unspecified parametritis and pelvic cellulitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.5) Acute or unspecified pelvic peritonitis, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.5) Acute or unspecified pelvic peritonitis, female\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.5''', NULL, + '(614.5) Acute or unspecified pelvic peritonitis, female', '(614.5) Acute or unspecified pelvic peritonitis, female', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection''', NULL, + '(614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection)', '(614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.7) Other chronic pelvic peritonitis, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.7) Other chronic pelvic peritonitis, female\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.7''', NULL, + '(614.7) Other chronic pelvic peritonitis, female', '(614.7) Other chronic pelvic peritonitis, female', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.8) Other specified inflammatory disease of female pelvic organs and tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.8) Other specified inflammatory disease of female pelvic organs and tissues\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.8''', NULL, + '(614.8) Other specified inflammatory disease of female pelvic organs and tissues', '(614.8) Other specified inflammatory disease of female pelvic organs and tissues', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.9) Unspecified inflammatory disease of female pelvic organs and tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.9) Unspecified inflammatory disease of female pelvic organs and tissues\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.9''', NULL, + '(614.9) Unspecified inflammatory disease of female pelvic organs and tissues', '(614.9) Unspecified inflammatory disease of female pelvic organs and tissues', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''615''', NULL, + 'Inflammatory diseases of uterus, except cervix (615)', 'Inflammatory diseases of uterus, except cervix (615)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.0) Acute inflammatory diseases of uterus, except cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.0) Acute inflammatory diseases of uterus, except cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''615.0''', NULL, + '(615.0) Acute inflammatory diseases of uterus, except cervix', '(615.0) Acute inflammatory diseases of uterus, except cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.1) Chronic inflammatory diseases of uterus, except cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.1) Chronic inflammatory diseases of uterus, except cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''615.1''', NULL, + '(615.1) Chronic inflammatory diseases of uterus, except cervix', '(615.1) Chronic inflammatory diseases of uterus, except cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.9) Unspecified inflammatory disease of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.9) Unspecified inflammatory disease of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''615.9''', NULL, + '(615.9) Unspecified inflammatory disease of uterus', '(615.9) Unspecified inflammatory disease of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''580'' AND ''589.99''', NULL, + 'Nephritis, nephrotic syndrome, and nephrosis (580-589.99)', 'Nephritis, nephrotic syndrome, and nephrosis (580-589.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\(586) Renal failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\(586) Renal failure, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''586''', NULL, + '(586) Renal failure, unspecified', '(586) Renal failure, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\(587) Renal sclerosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\(587) Renal sclerosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''587''', NULL, + '(587) Renal sclerosis, unspecified', '(587) Renal sclerosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580''', NULL, + 'Acute glomerulonephritis (580)', 'Acute glomerulonephritis (580)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.0) Acute glomerulonephritis with lesion of proliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.0) Acute glomerulonephritis with lesion of proliferative glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.0''', NULL, + '(580.0) Acute glomerulonephritis with lesion of proliferative glomerulonephritis', '(580.0) Acute glomerulonephritis with lesion of proliferative glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.4) Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.4) Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.4''', NULL, + '(580.4) Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis', '(580.4) Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.9) Acute glomerulonephritis with unspecified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.9) Acute glomerulonephritis with unspecified pathological lesion in kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.9''', NULL, + '(580.9) Acute glomerulonephritis with unspecified pathological lesion in kidney', '(580.9) Acute glomerulonephritis with unspecified pathological lesion in kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.8''', NULL, + 'Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)', 'Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\(580.81) Acute glomerulonephritis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\(580.81) Acute glomerulonephritis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.81''', NULL, + '(580.81) Acute glomerulonephritis in diseases classified elsewhere', '(580.81) Acute glomerulonephritis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\(580.89) Acute glomerulonephritis with other specified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\(580.89) Acute glomerulonephritis with other specified pathological lesion in kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.89''', NULL, + '(580.89) Acute glomerulonephritis with other specified pathological lesion in kidney', '(580.89) Acute glomerulonephritis with other specified pathological lesion in kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584''', NULL, + 'Acute kidney failure (584)', 'Acute kidney failure (584)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.5) Acute kidney failure with lesion of tubular necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.5) Acute kidney failure with lesion of tubular necrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584.5''', NULL, + '(584.5) Acute kidney failure with lesion of tubular necrosis', '(584.5) Acute kidney failure with lesion of tubular necrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.6) Acute kidney failure with lesion of renal cortical necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.6) Acute kidney failure with lesion of renal cortical necrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584.6''', NULL, + '(584.6) Acute kidney failure with lesion of renal cortical necrosis', '(584.6) Acute kidney failure with lesion of renal cortical necrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.7) Acute kidney failure with lesion of renal medullary [papillary] necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.7) Acute kidney failure with lesion of renal medullary [papillary] necrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584.7''', NULL, + '(584.7) Acute kidney failure with lesion of renal medullary [papillary] necrosis', '(584.7) Acute kidney failure with lesion of renal medullary [papillary] necrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.8) Acute kidney failure with other specified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.8) Acute kidney failure with other specified pathological lesion in kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584.8''', NULL, + '(584.8) Acute kidney failure with other specified pathological lesion in kidney', '(584.8) Acute kidney failure with other specified pathological lesion in kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.9) Acute kidney failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.9) Acute kidney failure, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584.9''', NULL, + '(584.9) Acute kidney failure, unspecified', '(584.9) Acute kidney failure, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582''', NULL, + 'Chronic glomerulonephritis (582)', 'Chronic glomerulonephritis (582)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.0) Chronic glomerulonephritis with lesion of proliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.0) Chronic glomerulonephritis with lesion of proliferative glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.0''', NULL, + '(582.0) Chronic glomerulonephritis with lesion of proliferative glomerulonephritis', '(582.0) Chronic glomerulonephritis with lesion of proliferative glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.1) Chronic glomerulonephritis with lesion of membranous glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.1) Chronic glomerulonephritis with lesion of membranous glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.1''', NULL, + '(582.1) Chronic glomerulonephritis with lesion of membranous glomerulonephritis', '(582.1) Chronic glomerulonephritis with lesion of membranous glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.2) Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.2) Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.2''', NULL, + '(582.2) Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis', '(582.2) Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.4) Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.4) Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.4''', NULL, + '(582.4) Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis', '(582.4) Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.9) Chronic glomerulonephritis with unspecified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.9) Chronic glomerulonephritis with unspecified pathological lesion in kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.9''', NULL, + '(582.9) Chronic glomerulonephritis with unspecified pathological lesion in kidney', '(582.9) Chronic glomerulonephritis with unspecified pathological lesion in kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.8''', NULL, + 'Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)', 'Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\(582.81) Chronic glomerulonephritis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\(582.81) Chronic glomerulonephritis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.81''', NULL, + '(582.81) Chronic glomerulonephritis in diseases classified elsewhere', '(582.81) Chronic glomerulonephritis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\(582.89) Chronic glomerulonephritis with other specified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\(582.89) Chronic glomerulonephritis with other specified pathological lesion in kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.89''', NULL, + '(582.89) Chronic glomerulonephritis with other specified pathological lesion in kidney', '(582.89) Chronic glomerulonephritis with other specified pathological lesion in kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''CKD) (585''', NULL, + 'Chronic kidney disease (CKD) (585)', 'Chronic kidney disease (CKD) (585)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.1) Chronic kidney disease, Stage I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.1) Chronic kidney disease, Stage I\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.1''', NULL, + '(585.1) Chronic kidney disease, Stage I', '(585.1) Chronic kidney disease, Stage I', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.2) Chronic kidney disease, Stage II (mild)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.2) Chronic kidney disease, Stage II (mild)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.2) Chronic kidney disease, Stage II (mild''', NULL, + '(585.2) Chronic kidney disease, Stage II (mild)', '(585.2) Chronic kidney disease, Stage II (mild)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.3) Chronic kidney disease, Stage III (moderate)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.3) Chronic kidney disease, Stage III (moderate)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.3) Chronic kidney disease, Stage III (moderate''', NULL, + '(585.3) Chronic kidney disease, Stage III (moderate)', '(585.3) Chronic kidney disease, Stage III (moderate)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.4) Chronic kidney disease, Stage IV (severe)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.4) Chronic kidney disease, Stage IV (severe)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.4) Chronic kidney disease, Stage IV (severe''', NULL, + '(585.4) Chronic kidney disease, Stage IV (severe)', '(585.4) Chronic kidney disease, Stage IV (severe)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.5) Chronic kidney disease, Stage V\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.5) Chronic kidney disease, Stage V\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.5''', NULL, + '(585.5) Chronic kidney disease, Stage V', '(585.5) Chronic kidney disease, Stage V', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.6) End stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.6) End stage renal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.6''', NULL, + '(585.6) End stage renal disease', '(585.6) End stage renal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.9) Chronic kidney disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.9) Chronic kidney disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.9''', NULL, + '(585.9) Chronic kidney disease, unspecified', '(585.9) Chronic kidney disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588''', NULL, + 'Disorders resulting from impaired renal function (588)', 'Disorders resulting from impaired renal function (588)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.0) Renal osteodystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.0) Renal osteodystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.0''', NULL, + '(588.0) Renal osteodystrophy', '(588.0) Renal osteodystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.1) Nephrogenic diabetes insipidus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.1) Nephrogenic diabetes insipidus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.1''', NULL, + '(588.1) Nephrogenic diabetes insipidus', '(588.1) Nephrogenic diabetes insipidus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.9) Unspecified disorder resulting from impaired renal function\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.9) Unspecified disorder resulting from impaired renal function\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.9''', NULL, + '(588.9) Unspecified disorder resulting from impaired renal function', '(588.9) Unspecified disorder resulting from impaired renal function', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.8''', NULL, + 'Other specified disorders resulting from impaired renal function (588.8)', 'Other specified disorders resulting from impaired renal function (588.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\(588.81) Secondary hyperparathyroidism (of renal origin)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\(588.81) Secondary hyperparathyroidism (of renal origin)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.81) Secondary hyperparathyroidism (of renal origin''', NULL, + '(588.81) Secondary hyperparathyroidism (of renal origin)', '(588.81) Secondary hyperparathyroidism (of renal origin)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\(588.89) Other specified disorders resulting from impaired renal function\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\(588.89) Other specified disorders resulting from impaired renal function\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.89''', NULL, + '(588.89) Other specified disorders resulting from impaired renal function', '(588.89) Other specified disorders resulting from impaired renal function', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583''', NULL, + 'Nephritis and nephropathy, not specified as acute or chronic (583)', 'Nephritis and nephropathy, not specified as acute or chronic (583)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.0) Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.0) Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.0''', NULL, + '(583.0) Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis', '(583.0) Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.1) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.1) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.1''', NULL, + '(583.1) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis', '(583.1) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.2) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.2) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.2''', NULL, + '(583.2) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis', '(583.2) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.4) Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.4) Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.4''', NULL, + '(583.4) Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis', '(583.4) Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.6) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.6) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.6''', NULL, + '(583.6) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis', '(583.6) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.7) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.7) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.7''', NULL, + '(583.7) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis', '(583.7) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.9) Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.9) Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.9''', NULL, + '(583.9) Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney', '(583.9) Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.8''', NULL, + 'Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)', 'Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\(583.81) Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\(583.81) Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.81''', NULL, + '(583.81) Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere', '(583.81) Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\(583.89) Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\(583.89) Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.89''', NULL, + '(583.89) Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney', '(583.89) Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581''', NULL, + 'Nephrotic syndrome (581)', 'Nephrotic syndrome (581)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.0) Nephrotic syndrome with lesion of proliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.0) Nephrotic syndrome with lesion of proliferative glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.0''', NULL, + '(581.0) Nephrotic syndrome with lesion of proliferative glomerulonephritis', '(581.0) Nephrotic syndrome with lesion of proliferative glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.1) Nephrotic syndrome with lesion of membranous glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.1) Nephrotic syndrome with lesion of membranous glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.1''', NULL, + '(581.1) Nephrotic syndrome with lesion of membranous glomerulonephritis', '(581.1) Nephrotic syndrome with lesion of membranous glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.2) Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.2) Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.2''', NULL, + '(581.2) Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis', '(581.2) Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.3) Nephrotic syndrome with lesion of minimal change glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.3) Nephrotic syndrome with lesion of minimal change glomerulonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.3''', NULL, + '(581.3) Nephrotic syndrome with lesion of minimal change glomerulonephritis', '(581.3) Nephrotic syndrome with lesion of minimal change glomerulonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.9) Nephrotic syndrome with unspecified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.9) Nephrotic syndrome with unspecified pathological lesion in kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.9''', NULL, + '(581.9) Nephrotic syndrome with unspecified pathological lesion in kidney', '(581.9) Nephrotic syndrome with unspecified pathological lesion in kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.8''', NULL, + 'Nephrotic syndrome with other specified pathological lesion in kidney (581.8)', 'Nephrotic syndrome with other specified pathological lesion in kidney (581.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\(581.81) Nephrotic syndrome in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\(581.81) Nephrotic syndrome in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.81''', NULL, + '(581.81) Nephrotic syndrome in diseases classified elsewhere', '(581.81) Nephrotic syndrome in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\(581.89) Nephrotic syndrome with other specified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\(581.89) Nephrotic syndrome with other specified pathological lesion in kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.89''', NULL, + '(581.89) Nephrotic syndrome with other specified pathological lesion in kidney', '(581.89) Nephrotic syndrome with other specified pathological lesion in kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''589''', NULL, + 'Small kidney of unknown cause (589)', 'Small kidney of unknown cause (589)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.0) Unilateral small kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.0) Unilateral small kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''589.0''', NULL, + '(589.0) Unilateral small kidney', '(589.0) Unilateral small kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.1) Bilateral small kidneys\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.1) Bilateral small kidneys\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''589.1''', NULL, + '(589.1) Bilateral small kidneys', '(589.1) Bilateral small kidneys', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.9) Small kidney, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.9) Small kidney, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''589.9''', NULL, + '(589.9) Small kidney, unspecified', '(589.9) Small kidney, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''590'' AND ''599.99''', NULL, + 'Other diseases of urinary system (590-599.99)', 'Other diseases of urinary system (590-599.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\(591) Hydronephrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\(591) Hydronephrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''591''', NULL, + '(591) Hydronephrosis', '(591) Hydronephrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''592''', NULL, + 'Calculus of kidney and ureter (592)', 'Calculus of kidney and ureter (592)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.0) Calculus of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.0) Calculus of kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''592.0''', NULL, + '(592.0) Calculus of kidney', '(592.0) Calculus of kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.1) Calculus of ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.1) Calculus of ureter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''592.1''', NULL, + '(592.1) Calculus of ureter', '(592.1) Calculus of ureter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.9) Urinary calculus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.9) Urinary calculus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''592.9''', NULL, + '(592.9) Urinary calculus, unspecified', '(592.9) Urinary calculus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594''', NULL, + 'Calculus of lower urinary tract (594)', 'Calculus of lower urinary tract (594)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.0) Calculus in diverticulum of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.0) Calculus in diverticulum of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594.0''', NULL, + '(594.0) Calculus in diverticulum of bladder', '(594.0) Calculus in diverticulum of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.1) Other calculus in bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.1) Other calculus in bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594.1''', NULL, + '(594.1) Other calculus in bladder', '(594.1) Other calculus in bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.2) Calculus in urethra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.2) Calculus in urethra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594.2''', NULL, + '(594.2) Calculus in urethra', '(594.2) Calculus in urethra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.8) Other lower urinary tract calculus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.8) Other lower urinary tract calculus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594.8''', NULL, + '(594.8) Other lower urinary tract calculus', '(594.8) Other lower urinary tract calculus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.9) Calculus of lower urinary tract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.9) Calculus of lower urinary tract, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594.9''', NULL, + '(594.9) Calculus of lower urinary tract, unspecified', '(594.9) Calculus of lower urinary tract, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595''', NULL, + 'Cystitis (595)', 'Cystitis (595)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.0) Acute cystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.0) Acute cystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.0''', NULL, + '(595.0) Acute cystitis', '(595.0) Acute cystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.1) Chronic interstitial cystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.1) Chronic interstitial cystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.1''', NULL, + '(595.1) Chronic interstitial cystitis', '(595.1) Chronic interstitial cystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.2) Other chronic cystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.2) Other chronic cystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.2''', NULL, + '(595.2) Other chronic cystitis', '(595.2) Other chronic cystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.3) Trigonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.3) Trigonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.3''', NULL, + '(595.3) Trigonitis', '(595.3) Trigonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.4) Cystitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.4) Cystitis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.4''', NULL, + '(595.4) Cystitis in diseases classified elsewhere', '(595.4) Cystitis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.9) Cystitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.9) Cystitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.9''', NULL, + '(595.9) Cystitis, unspecified', '(595.9) Cystitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.8''', NULL, + 'Other specified types of cystitis (595.8)', 'Other specified types of cystitis (595.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.81) Cystitis cystica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.81) Cystitis cystica\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.81''', NULL, + '(595.81) Cystitis cystica', '(595.81) Cystitis cystica', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.82) Irradiation cystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.82) Irradiation cystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.82''', NULL, + '(595.82) Irradiation cystitis', '(595.82) Irradiation cystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.89) Other specified types of cystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.89) Other specified types of cystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.89''', NULL, + '(595.89) Other specified types of cystitis', '(595.89) Other specified types of cystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590''', NULL, + 'Infections of kidney (590)', 'Infections of kidney (590)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.2) Renal and perinephric abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.2) Renal and perinephric abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.2''', NULL, + '(590.2) Renal and perinephric abscess', '(590.2) Renal and perinephric abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.3) Pyeloureteritis cystica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.3) Pyeloureteritis cystica\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.3''', NULL, + '(590.3) Pyeloureteritis cystica', '(590.3) Pyeloureteritis cystica', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.9) Infection of kidney, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.9) Infection of kidney, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.9''', NULL, + '(590.9) Infection of kidney, unspecified', '(590.9) Infection of kidney, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.1''', NULL, + 'Acute pyelonephritis (590.1)', 'Acute pyelonephritis (590.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\(590.10) Acute pyelonephritis without lesion of renal medullary necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\(590.10) Acute pyelonephritis without lesion of renal medullary necrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.10''', NULL, + '(590.10) Acute pyelonephritis without lesion of renal medullary necrosis', '(590.10) Acute pyelonephritis without lesion of renal medullary necrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\(590.11) Acute pyelonephritis with lesion of renal medullary necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\(590.11) Acute pyelonephritis with lesion of renal medullary necrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.11''', NULL, + '(590.11) Acute pyelonephritis with lesion of renal medullary necrosis', '(590.11) Acute pyelonephritis with lesion of renal medullary necrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.0''', NULL, + 'Chronic pyelonephritis (590.0)', 'Chronic pyelonephritis (590.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\(590.00) Chronic pyelonephritis without lesion of renal medullary necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\(590.00) Chronic pyelonephritis without lesion of renal medullary necrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.00''', NULL, + '(590.00) Chronic pyelonephritis without lesion of renal medullary necrosis', '(590.00) Chronic pyelonephritis without lesion of renal medullary necrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\(590.01) Chronic pyelonephritis with lesion of renal medullary necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\(590.01) Chronic pyelonephritis with lesion of renal medullary necrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.01''', NULL, + '(590.01) Chronic pyelonephritis with lesion of renal medullary necrosis', '(590.01) Chronic pyelonephritis with lesion of renal medullary necrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.8''', NULL, + 'Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)', 'Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\(590.80) Pyelonephritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\(590.80) Pyelonephritis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.80''', NULL, + '(590.80) Pyelonephritis, unspecified', '(590.80) Pyelonephritis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\(590.81) Pyelitis or pyelonephritis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\(590.81) Pyelitis or pyelonephritis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.81''', NULL, + '(590.81) Pyelitis or pyelonephritis in diseases classified elsewhere', '(590.81) Pyelitis or pyelonephritis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596''', NULL, + 'Other disorders of bladder (596)', 'Other disorders of bladder (596)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.0) Bladder neck obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.0) Bladder neck obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.0''', NULL, + '(596.0) Bladder neck obstruction', '(596.0) Bladder neck obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.1) Intestinovesical fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.1) Intestinovesical fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.1''', NULL, + '(596.1) Intestinovesical fistula', '(596.1) Intestinovesical fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.2) Vesical fistula, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.2) Vesical fistula, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.2''', NULL, + '(596.2) Vesical fistula, not elsewhere classified', '(596.2) Vesical fistula, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.3) Diverticulum of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.3) Diverticulum of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.3''', NULL, + '(596.3) Diverticulum of bladder', '(596.3) Diverticulum of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.4) Atony of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.4) Atony of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.4''', NULL, + '(596.4) Atony of bladder', '(596.4) Atony of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.6) Rupture of bladder, nontraumatic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.6) Rupture of bladder, nontraumatic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.6''', NULL, + '(596.6) Rupture of bladder, nontraumatic', '(596.6) Rupture of bladder, nontraumatic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.7) Hemorrhage into bladder wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.7) Hemorrhage into bladder wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.7''', NULL, + '(596.7) Hemorrhage into bladder wall', '(596.7) Hemorrhage into bladder wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.9) Unspecified disorder of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.9) Unspecified disorder of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.9''', NULL, + '(596.9) Unspecified disorder of bladder', '(596.9) Unspecified disorder of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.5''', NULL, + 'Other functional disorders of bladder (596.5)', 'Other functional disorders of bladder (596.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.51) Hypertonicity of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.51) Hypertonicity of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.51''', NULL, + '(596.51) Hypertonicity of bladder', '(596.51) Hypertonicity of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.52) Low bladder compliance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.52) Low bladder compliance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.52''', NULL, + '(596.52) Low bladder compliance', '(596.52) Low bladder compliance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.53) Paralysis of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.53) Paralysis of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.53''', NULL, + '(596.53) Paralysis of bladder', '(596.53) Paralysis of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.54) Neurogenic bladder NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.54) Neurogenic bladder NOS\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.54''', NULL, + '(596.54) Neurogenic bladder NOS', '(596.54) Neurogenic bladder NOS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.55) Detrusor sphincter dyssynergia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.55) Detrusor sphincter dyssynergia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.55''', NULL, + '(596.55) Detrusor sphincter dyssynergia', '(596.55) Detrusor sphincter dyssynergia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.59) Other functional disorder of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.59) Other functional disorder of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.59''', NULL, + '(596.59) Other functional disorder of bladder', '(596.59) Other functional disorder of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.8''', NULL, + 'Other specified disorders of bladder (596.8)', 'Other specified disorders of bladder (596.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.81) Infection of cystostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.81) Infection of cystostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.81''', NULL, + '(596.81) Infection of cystostomy', '(596.81) Infection of cystostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.82) Mechanical complication of cystostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.82) Mechanical complication of cystostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.82''', NULL, + '(596.82) Mechanical complication of cystostomy', '(596.82) Mechanical complication of cystostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.83) Other complication of cystostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.83) Other complication of cystostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.83''', NULL, + '(596.83) Other complication of cystostomy', '(596.83) Other complication of cystostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.89) Other specified disorders of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.89) Other specified disorders of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.89''', NULL, + '(596.89) Other specified disorders of bladder', '(596.89) Other specified disorders of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593''', NULL, + 'Other disorders of kidney and ureter (593)', 'Other disorders of kidney and ureter (593)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.0) Nephroptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.0) Nephroptosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.0''', NULL, + '(593.0) Nephroptosis', '(593.0) Nephroptosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.1) Hypertrophy of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.1) Hypertrophy of kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.1''', NULL, + '(593.1) Hypertrophy of kidney', '(593.1) Hypertrophy of kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.2) Cyst of kidney, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.2) Cyst of kidney, acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.2''', NULL, + '(593.2) Cyst of kidney, acquired', '(593.2) Cyst of kidney, acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.3) Stricture or kinking of ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.3) Stricture or kinking of ureter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.3''', NULL, + '(593.3) Stricture or kinking of ureter', '(593.3) Stricture or kinking of ureter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.4) Other ureteric obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.4) Other ureteric obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.4''', NULL, + '(593.4) Other ureteric obstruction', '(593.4) Other ureteric obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.5) Hydroureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.5) Hydroureter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.5''', NULL, + '(593.5) Hydroureter', '(593.5) Hydroureter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.6) Postural proteinuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.6) Postural proteinuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.6''', NULL, + '(593.6) Postural proteinuria', '(593.6) Postural proteinuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.9) Unspecified disorder of kidney and ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.9) Unspecified disorder of kidney and ureter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.9''', NULL, + '(593.9) Unspecified disorder of kidney and ureter', '(593.9) Unspecified disorder of kidney and ureter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.8''', NULL, + 'Other specified disorders of kidney and ureter (593.8)', 'Other specified disorders of kidney and ureter (593.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.81) Vascular disorders of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.81) Vascular disorders of kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.81''', NULL, + '(593.81) Vascular disorders of kidney', '(593.81) Vascular disorders of kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.82) Ureteral fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.82) Ureteral fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.82''', NULL, + '(593.82) Ureteral fistula', '(593.82) Ureteral fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.89) Other specified disorders of kidney and ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.89) Other specified disorders of kidney and ureter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.89''', NULL, + '(593.89) Other specified disorders of kidney and ureter', '(593.89) Other specified disorders of kidney and ureter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.7''', NULL, + 'Vesicoureteral reflux (593.7)', 'Vesicoureteral reflux (593.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.70) Vesicoureteral reflux unspecified or without reflux nephropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.70) Vesicoureteral reflux unspecified or without reflux nephropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.70''', NULL, + '(593.70) Vesicoureteral reflux unspecified or without reflux nephropathy', '(593.70) Vesicoureteral reflux unspecified or without reflux nephropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.71) Vesicoureteral reflux with reflux nephropathy, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.71) Vesicoureteral reflux with reflux nephropathy, unilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.71''', NULL, + '(593.71) Vesicoureteral reflux with reflux nephropathy, unilateral', '(593.71) Vesicoureteral reflux with reflux nephropathy, unilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.72) Vesicoureteral reflux with reflux nephropathy, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.72) Vesicoureteral reflux with reflux nephropathy, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.72''', NULL, + '(593.72) Vesicoureteral reflux with reflux nephropathy, bilateral', '(593.72) Vesicoureteral reflux with reflux nephropathy, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.73) Other vesicoureteral reflux with reflux nephropathy NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.73) Other vesicoureteral reflux with reflux nephropathy NOS\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.73''', NULL, + '(593.73) Other vesicoureteral reflux with reflux nephropathy NOS', '(593.73) Other vesicoureteral reflux with reflux nephropathy NOS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599''', NULL, + 'Other disorders of urethra and urinary tract (599)', 'Other disorders of urethra and urinary tract (599)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.0) Urinary tract infection, site not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.0) Urinary tract infection, site not specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.0''', NULL, + '(599.0) Urinary tract infection, site not specified', '(599.0) Urinary tract infection, site not specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.1) Urethral fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.1) Urethral fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.1''', NULL, + '(599.1) Urethral fistula', '(599.1) Urethral fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.2) Urethral diverticulum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.2) Urethral diverticulum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.2''', NULL, + '(599.2) Urethral diverticulum', '(599.2) Urethral diverticulum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.3) Urethral caruncle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.3) Urethral caruncle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.3''', NULL, + '(599.3) Urethral caruncle', '(599.3) Urethral caruncle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.4) Urethral false passage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.4) Urethral false passage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.4''', NULL, + '(599.4) Urethral false passage', '(599.4) Urethral false passage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.5) Prolapsed urethral mucosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.5) Prolapsed urethral mucosa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.5''', NULL, + '(599.5) Prolapsed urethral mucosa', '(599.5) Prolapsed urethral mucosa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.9) Unspecified disorder of urethra and urinary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.9) Unspecified disorder of urethra and urinary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.9''', NULL, + '(599.9) Unspecified disorder of urethra and urinary tract', '(599.9) Unspecified disorder of urethra and urinary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.7''', NULL, + 'Hematuria (599.7)', 'Hematuria (599.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.70) Hematuria, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.70) Hematuria, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.70''', NULL, + '(599.70) Hematuria, unspecified', '(599.70) Hematuria, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.71) Gross hematuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.71) Gross hematuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.71''', NULL, + '(599.71) Gross hematuria', '(599.71) Gross hematuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.72) Microscopic hematuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.72) Microscopic hematuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.72''', NULL, + '(599.72) Microscopic hematuria', '(599.72) Microscopic hematuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.8''', NULL, + 'Other specified disorders of urethra and urinary tract (599.8)', 'Other specified disorders of urethra and urinary tract (599.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.81) Urethral hypermobility\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.81) Urethral hypermobility\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.81''', NULL, + '(599.81) Urethral hypermobility', '(599.81) Urethral hypermobility', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.82) Intrinsic (urethral) sphincter deficiency [ISD]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.82) Intrinsic (urethral) sphincter deficiency [ISD]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.82) Intrinsic (urethral''', NULL, + '(599.82) Intrinsic (urethral) sphincter deficiency [ISD]', '(599.82) Intrinsic (urethral) sphincter deficiency [ISD]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.83) Urethral instability\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.83) Urethral instability\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.83''', NULL, + '(599.83) Urethral instability', '(599.83) Urethral instability', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.84) Other specified disorders of urethra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.84) Other specified disorders of urethra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.84''', NULL, + '(599.84) Other specified disorders of urethra', '(599.84) Other specified disorders of urethra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.89) Other specified disorders of urinary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.89) Other specified disorders of urinary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.89''', NULL, + '(599.89) Other specified disorders of urinary tract', '(599.89) Other specified disorders of urinary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.6''', NULL, + 'Urinary obstruction (599.6)', 'Urinary obstruction (599.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\(599.60) Urinary obstruction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\(599.60) Urinary obstruction, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.60''', NULL, + '(599.60) Urinary obstruction, unspecified', '(599.60) Urinary obstruction, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\(599.69) Urinary obstruction, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\(599.69) Urinary obstruction, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.69''', NULL, + '(599.69) Urinary obstruction, not elsewhere classified', '(599.69) Urinary obstruction, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598''', NULL, + 'Urethral stricture (598)', 'Urethral stricture (598)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.1) Traumatic urethral stricture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.1) Traumatic urethral stricture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.1''', NULL, + '(598.1) Traumatic urethral stricture', '(598.1) Traumatic urethral stricture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.2) Postoperative urethral stricture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.2) Postoperative urethral stricture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.2''', NULL, + '(598.2) Postoperative urethral stricture', '(598.2) Postoperative urethral stricture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.8) Other specified causes of urethral stricture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.8) Other specified causes of urethral stricture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.8''', NULL, + '(598.8) Other specified causes of urethral stricture', '(598.8) Other specified causes of urethral stricture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.9) Urethral stricture, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.9) Urethral stricture, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.9''', NULL, + '(598.9) Urethral stricture, unspecified', '(598.9) Urethral stricture, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.0''', NULL, + 'Urethral stricture due to infection (598.0)', 'Urethral stricture due to infection (598.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\(598.00) Urethral stricture due to unspecified infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\(598.00) Urethral stricture due to unspecified infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.00''', NULL, + '(598.00) Urethral stricture due to unspecified infection', '(598.00) Urethral stricture due to unspecified infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\(598.01) Urethral stricture due to infective diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\(598.01) Urethral stricture due to infective diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.01''', NULL, + '(598.01) Urethral stricture due to infective diseases classified elsewhere', '(598.01) Urethral stricture due to infective diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597''', NULL, + 'Urethritis, not sexually transmitted, and urethral syndrome (597)', 'Urethritis, not sexually transmitted, and urethral syndrome (597)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\(597.0) Urethral abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\(597.0) Urethral abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597.0''', NULL, + '(597.0) Urethral abscess', '(597.0) Urethral abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597.8''', NULL, + 'Other urethritis (597.8)', 'Other urethritis (597.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.80) Urethritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.80) Urethritis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597.80''', NULL, + '(597.80) Urethritis, unspecified', '(597.80) Urethritis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.81) Urethral syndrome NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.81) Urethral syndrome NOS\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597.81''', NULL, + '(597.81) Urethral syndrome NOS', '(597.81) Urethral syndrome NOS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.89) Other urethritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.89) Other urethritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597.89''', NULL, + '(597.89) Other urethritis', '(597.89) Other urethritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''617'' AND ''629.99''', NULL, + 'Other disorders of female genital tract (617-629.99)', 'Other disorders of female genital tract (617-629.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626''', NULL, + 'Disorders of menstruation and other abnormal bleeding from female genital tract (626)', 'Disorders of menstruation and other abnormal bleeding from female genital tract (626)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.0) Absence of menstruation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.0) Absence of menstruation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.0''', NULL, + '(626.0) Absence of menstruation', '(626.0) Absence of menstruation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.1) Scanty or infrequent menstruation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.1) Scanty or infrequent menstruation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.1''', NULL, + '(626.1) Scanty or infrequent menstruation', '(626.1) Scanty or infrequent menstruation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.2) Excessive or frequent menstruation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.2) Excessive or frequent menstruation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.2''', NULL, + '(626.2) Excessive or frequent menstruation', '(626.2) Excessive or frequent menstruation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.3) Puberty bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.3) Puberty bleeding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.3''', NULL, + '(626.3) Puberty bleeding', '(626.3) Puberty bleeding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.4) Irregular menstrual cycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.4) Irregular menstrual cycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.4''', NULL, + '(626.4) Irregular menstrual cycle', '(626.4) Irregular menstrual cycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.5) Ovulation bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.5) Ovulation bleeding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.5''', NULL, + '(626.5) Ovulation bleeding', '(626.5) Ovulation bleeding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.6) Metrorrhagia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.6) Metrorrhagia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.6''', NULL, + '(626.6) Metrorrhagia', '(626.6) Metrorrhagia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.7) Postcoital bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.7) Postcoital bleeding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.7''', NULL, + '(626.7) Postcoital bleeding', '(626.7) Postcoital bleeding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.8) Other disorders of menstruation and other abnormal bleeding from female genital tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.8) Other disorders of menstruation and other abnormal bleeding from female genital tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.8''', NULL, + '(626.8) Other disorders of menstruation and other abnormal bleeding from female genital tract', '(626.8) Other disorders of menstruation and other abnormal bleeding from female genital tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.9) Unspecified disorders of menstruation and other abnormal bleeding from female genital tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.9) Unspecified disorders of menstruation and other abnormal bleeding from female genital tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.9''', NULL, + '(626.9) Unspecified disorders of menstruation and other abnormal bleeding from female genital tract', '(626.9) Unspecified disorders of menstruation and other abnormal bleeding from female genital tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621''', NULL, + 'Disorders of uterus, not elsewhere classified (621)', 'Disorders of uterus, not elsewhere classified (621)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.0) Polyp of corpus uteri\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.0) Polyp of corpus uteri\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.0''', NULL, + '(621.0) Polyp of corpus uteri', '(621.0) Polyp of corpus uteri', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.1) Chronic subinvolution of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.1) Chronic subinvolution of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.1''', NULL, + '(621.1) Chronic subinvolution of uterus', '(621.1) Chronic subinvolution of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.2) Hypertrophy of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.2) Hypertrophy of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.2''', NULL, + '(621.2) Hypertrophy of uterus', '(621.2) Hypertrophy of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.4) Hematometra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.4) Hematometra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.4''', NULL, + '(621.4) Hematometra', '(621.4) Hematometra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.5) Intrauterine synechiae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.5) Intrauterine synechiae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.5''', NULL, + '(621.5) Intrauterine synechiae', '(621.5) Intrauterine synechiae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.6) Malposition of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.6) Malposition of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.6''', NULL, + '(621.6) Malposition of uterus', '(621.6) Malposition of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.7) Chronic inversion of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.7) Chronic inversion of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.7''', NULL, + '(621.7) Chronic inversion of uterus', '(621.7) Chronic inversion of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.8) Other specified disorders of uterus, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.8) Other specified disorders of uterus, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.8''', NULL, + '(621.8) Other specified disorders of uterus, not elsewhere classified', '(621.8) Other specified disorders of uterus, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.9) Unspecified disorder of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.9) Unspecified disorder of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.9''', NULL, + '(621.9) Unspecified disorder of uterus', '(621.9) Unspecified disorder of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.3''', NULL, + 'Endometrial hyperplasia (621.3)', 'Endometrial hyperplasia (621.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.30) Endometrial hyperplasia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.30) Endometrial hyperplasia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.30''', NULL, + '(621.30) Endometrial hyperplasia, unspecified', '(621.30) Endometrial hyperplasia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.31) Simple endometrial hyperplasia without atypia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.31) Simple endometrial hyperplasia without atypia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.31''', NULL, + '(621.31) Simple endometrial hyperplasia without atypia', '(621.31) Simple endometrial hyperplasia without atypia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.32) Complex endometrial hyperplasia without atypia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.32) Complex endometrial hyperplasia without atypia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.32''', NULL, + '(621.32) Complex endometrial hyperplasia without atypia', '(621.32) Complex endometrial hyperplasia without atypia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.33) Endometrial hyperplasia with atypia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.33) Endometrial hyperplasia with atypia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.33''', NULL, + '(621.33) Endometrial hyperplasia with atypia', '(621.33) Endometrial hyperplasia with atypia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.34) Benign endometrial hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.34) Benign endometrial hyperplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.34''', NULL, + '(621.34) Benign endometrial hyperplasia', '(621.34) Benign endometrial hyperplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.35) Endometrial intraepithelial neoplasia [EIN]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.35) Endometrial intraepithelial neoplasia [EIN]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.35''', NULL, + '(621.35) Endometrial intraepithelial neoplasia [EIN]', '(621.35) Endometrial intraepithelial neoplasia [EIN]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617''', NULL, + 'Endometriosis (617)', 'Endometriosis (617)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.0) Endometriosis of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.0) Endometriosis of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.0''', NULL, + '(617.0) Endometriosis of uterus', '(617.0) Endometriosis of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.1) Endometriosis of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.1) Endometriosis of ovary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.1''', NULL, + '(617.1) Endometriosis of ovary', '(617.1) Endometriosis of ovary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.2) Endometriosis of fallopian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.2) Endometriosis of fallopian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.2''', NULL, + '(617.2) Endometriosis of fallopian tube', '(617.2) Endometriosis of fallopian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.3) Endometriosis of pelvic peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.3) Endometriosis of pelvic peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.3''', NULL, + '(617.3) Endometriosis of pelvic peritoneum', '(617.3) Endometriosis of pelvic peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.4) Endometriosis of rectovaginal septum and vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.4) Endometriosis of rectovaginal septum and vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.4''', NULL, + '(617.4) Endometriosis of rectovaginal septum and vagina', '(617.4) Endometriosis of rectovaginal septum and vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.5) Endometriosis of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.5) Endometriosis of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.5''', NULL, + '(617.5) Endometriosis of intestine', '(617.5) Endometriosis of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.6) Endometriosis in scar of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.6) Endometriosis in scar of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.6''', NULL, + '(617.6) Endometriosis in scar of skin', '(617.6) Endometriosis in scar of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.8) Endometriosis of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.8) Endometriosis of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.8''', NULL, + '(617.8) Endometriosis of other specified sites', '(617.8) Endometriosis of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.9) Endometriosis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.9) Endometriosis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.9''', NULL, + '(617.9) Endometriosis, site unspecified', '(617.9) Endometriosis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619''', NULL, + 'Fistula involving female genital tract (619)', 'Fistula involving female genital tract (619)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.0) Urinary-genital tract fistula, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.0) Urinary-genital tract fistula, female\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619.0''', NULL, + '(619.0) Urinary-genital tract fistula, female', '(619.0) Urinary-genital tract fistula, female', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.1) Digestive-genital tract fistula, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.1) Digestive-genital tract fistula, female\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619.1''', NULL, + '(619.1) Digestive-genital tract fistula, female', '(619.1) Digestive-genital tract fistula, female', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.2) Genital tract-skin fistula, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.2) Genital tract-skin fistula, female\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619.2''', NULL, + '(619.2) Genital tract-skin fistula, female', '(619.2) Genital tract-skin fistula, female', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.8) Other specified fistulas involving female genital tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.8) Other specified fistulas involving female genital tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619.8''', NULL, + '(619.8) Other specified fistulas involving female genital tract', '(619.8) Other specified fistulas involving female genital tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.9) Unspecified fistula involving female genital tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.9) Unspecified fistula involving female genital tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619.9''', NULL, + '(619.9) Unspecified fistula involving female genital tract', '(619.9) Unspecified fistula involving female genital tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618''', NULL, + 'Genital prolapse (618)', 'Genital prolapse (618)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.1) Uterine prolapse without mention of vaginal wall prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.1) Uterine prolapse without mention of vaginal wall prolapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.1''', NULL, + '(618.1) Uterine prolapse without mention of vaginal wall prolapse', '(618.1) Uterine prolapse without mention of vaginal wall prolapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.2) Uterovaginal prolapse, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.2) Uterovaginal prolapse, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.2''', NULL, + '(618.2) Uterovaginal prolapse, incomplete', '(618.2) Uterovaginal prolapse, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.3) Uterovaginal prolapse, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.3) Uterovaginal prolapse, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.3''', NULL, + '(618.3) Uterovaginal prolapse, complete', '(618.3) Uterovaginal prolapse, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.4) Uterovaginal prolapse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.4) Uterovaginal prolapse, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.4''', NULL, + '(618.4) Uterovaginal prolapse, unspecified', '(618.4) Uterovaginal prolapse, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.5) Prolapse of vaginal vault after hysterectomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.5) Prolapse of vaginal vault after hysterectomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.5''', NULL, + '(618.5) Prolapse of vaginal vault after hysterectomy', '(618.5) Prolapse of vaginal vault after hysterectomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.6) Vaginal enterocele, congenital or acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.6) Vaginal enterocele, congenital or acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.6''', NULL, + '(618.6) Vaginal enterocele, congenital or acquired', '(618.6) Vaginal enterocele, congenital or acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.7) Old laceration of muscles of pelvic floor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.7) Old laceration of muscles of pelvic floor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.7''', NULL, + '(618.7) Old laceration of muscles of pelvic floor', '(618.7) Old laceration of muscles of pelvic floor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.9) Unspecified genital prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.9) Unspecified genital prolapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.9''', NULL, + '(618.9) Unspecified genital prolapse', '(618.9) Unspecified genital prolapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.8''', NULL, + 'Other specified genital prolapse (618.8)', 'Other specified genital prolapse (618.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.81) Incompetence or weakening of pubocervical tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.81) Incompetence or weakening of pubocervical tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.81''', NULL, + '(618.81) Incompetence or weakening of pubocervical tissue', '(618.81) Incompetence or weakening of pubocervical tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.82) Incompetence or weakening of rectovaginal tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.82) Incompetence or weakening of rectovaginal tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.82''', NULL, + '(618.82) Incompetence or weakening of rectovaginal tissue', '(618.82) Incompetence or weakening of rectovaginal tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.83) Pelvic muscle wasting\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.83) Pelvic muscle wasting\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.83''', NULL, + '(618.83) Pelvic muscle wasting', '(618.83) Pelvic muscle wasting', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.84) Cervical stump prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.84) Cervical stump prolapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.84''', NULL, + '(618.84) Cervical stump prolapse', '(618.84) Cervical stump prolapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.89) Other specified genital prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.89) Other specified genital prolapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.89''', NULL, + '(618.89) Other specified genital prolapse', '(618.89) Other specified genital prolapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.0''', NULL, + 'Prolapse of vaginal walls without mention of uterine prolapse (618.0)', 'Prolapse of vaginal walls without mention of uterine prolapse (618.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.00) Unspecified prolapse of vaginal walls\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.00) Unspecified prolapse of vaginal walls\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.00''', NULL, + '(618.00) Unspecified prolapse of vaginal walls', '(618.00) Unspecified prolapse of vaginal walls', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.01) Cystocele, midline\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.01) Cystocele, midline\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.01''', NULL, + '(618.01) Cystocele, midline', '(618.01) Cystocele, midline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.02) Cystocele, lateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.02) Cystocele, lateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.02''', NULL, + '(618.02) Cystocele, lateral', '(618.02) Cystocele, lateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.03) Urethrocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.03) Urethrocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.03''', NULL, + '(618.03) Urethrocele', '(618.03) Urethrocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.04) Rectocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.04) Rectocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.04''', NULL, + '(618.04) Rectocele', '(618.04) Rectocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.05) Perineocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.05) Perineocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.05''', NULL, + '(618.05) Perineocele', '(618.05) Perineocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.09) Other prolapse of vaginal walls without mention of uterine prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.09) Other prolapse of vaginal walls without mention of uterine prolapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.09''', NULL, + '(618.09) Other prolapse of vaginal walls without mention of uterine prolapse', '(618.09) Other prolapse of vaginal walls without mention of uterine prolapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628''', NULL, + 'Infertility, female (628)', 'Infertility, female (628)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.0) Infertility, female, associated with anovulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.0) Infertility, female, associated with anovulation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.0''', NULL, + '(628.0) Infertility, female, associated with anovulation', '(628.0) Infertility, female, associated with anovulation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.1) Infertility, female, of pituitary-hypothalamic origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.1) Infertility, female, of pituitary-hypothalamic origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.1''', NULL, + '(628.1) Infertility, female, of pituitary-hypothalamic origin', '(628.1) Infertility, female, of pituitary-hypothalamic origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.2) Infertility, female, of tubal origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.2) Infertility, female, of tubal origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.2''', NULL, + '(628.2) Infertility, female, of tubal origin', '(628.2) Infertility, female, of tubal origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.3) Infertility, female, of uterine origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.3) Infertility, female, of uterine origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.3''', NULL, + '(628.3) Infertility, female, of uterine origin', '(628.3) Infertility, female, of uterine origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.4) Infertility, female, of cervical or vaginal origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.4) Infertility, female, of cervical or vaginal origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.4''', NULL, + '(628.4) Infertility, female, of cervical or vaginal origin', '(628.4) Infertility, female, of cervical or vaginal origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.8) Infertility, female, of other specified origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.8) Infertility, female, of other specified origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.8''', NULL, + '(628.8) Infertility, female, of other specified origin', '(628.8) Infertility, female, of other specified origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.9) Infertility, female, of unspecified origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.9) Infertility, female, of unspecified origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.9''', NULL, + '(628.9) Infertility, female, of unspecified origin', '(628.9) Infertility, female, of unspecified origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627''', NULL, + 'Menopausal and postmenopausal disorders (627)', 'Menopausal and postmenopausal disorders (627)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.0) Premenopausal menorrhagia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.0) Premenopausal menorrhagia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.0''', NULL, + '(627.0) Premenopausal menorrhagia', '(627.0) Premenopausal menorrhagia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.1) Postmenopausal bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.1) Postmenopausal bleeding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.1''', NULL, + '(627.1) Postmenopausal bleeding', '(627.1) Postmenopausal bleeding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.2) Symptomatic menopausal or female climacteric states\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.2) Symptomatic menopausal or female climacteric states\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.2''', NULL, + '(627.2) Symptomatic menopausal or female climacteric states', '(627.2) Symptomatic menopausal or female climacteric states', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.3) Postmenopausal atrophic vaginitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.3) Postmenopausal atrophic vaginitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.3''', NULL, + '(627.3) Postmenopausal atrophic vaginitis', '(627.3) Postmenopausal atrophic vaginitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.4) Symptomatic states associated with artificial menopause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.4) Symptomatic states associated with artificial menopause\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.4''', NULL, + '(627.4) Symptomatic states associated with artificial menopause', '(627.4) Symptomatic states associated with artificial menopause', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.8) Other specified menopausal and postmenopausal disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.8) Other specified menopausal and postmenopausal disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.8''', NULL, + '(627.8) Other specified menopausal and postmenopausal disorders', '(627.8) Other specified menopausal and postmenopausal disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.9) Unspecified menopausal and postmenopausal disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.9) Unspecified menopausal and postmenopausal disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.9''', NULL, + '(627.9) Unspecified menopausal and postmenopausal disorder', '(627.9) Unspecified menopausal and postmenopausal disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622''', NULL, + 'Noninflammatory disorders of cervix (622)', 'Noninflammatory disorders of cervix (622)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.0) Erosion and ectropion of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.0) Erosion and ectropion of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.0''', NULL, + '(622.0) Erosion and ectropion of cervix', '(622.0) Erosion and ectropion of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.2) Leukoplakia of cervix (uteri)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.2) Leukoplakia of cervix (uteri)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.2) Leukoplakia of cervix (uteri''', NULL, + '(622.2) Leukoplakia of cervix (uteri)', '(622.2) Leukoplakia of cervix (uteri)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.3) Old laceration of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.3) Old laceration of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.3''', NULL, + '(622.3) Old laceration of cervix', '(622.3) Old laceration of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.4) Stricture and stenosis of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.4) Stricture and stenosis of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.4''', NULL, + '(622.4) Stricture and stenosis of cervix', '(622.4) Stricture and stenosis of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.5) Incompetence of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.5) Incompetence of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.5''', NULL, + '(622.5) Incompetence of cervix', '(622.5) Incompetence of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.6) Hypertrophic elongation of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.6) Hypertrophic elongation of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.6''', NULL, + '(622.6) Hypertrophic elongation of cervix', '(622.6) Hypertrophic elongation of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.7) Mucous polyp of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.7) Mucous polyp of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.7''', NULL, + '(622.7) Mucous polyp of cervix', '(622.7) Mucous polyp of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.8) Other specified noninflammatory disorders of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.8) Other specified noninflammatory disorders of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.8''', NULL, + '(622.8) Other specified noninflammatory disorders of cervix', '(622.8) Other specified noninflammatory disorders of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.9) Unspecified noninflammatory disorder of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.9) Unspecified noninflammatory disorder of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.9''', NULL, + '(622.9) Unspecified noninflammatory disorder of cervix', '(622.9) Unspecified noninflammatory disorder of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''uteri) (622.1''', NULL, + 'Dysplasia of cervix (uteri) (622.1)', 'Dysplasia of cervix (uteri) (622.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.10) Dysplasia of cervix, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.10) Dysplasia of cervix, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.10''', NULL, + '(622.10) Dysplasia of cervix, unspecified', '(622.10) Dysplasia of cervix, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.11) Mild dysplasia of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.11) Mild dysplasia of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.11''', NULL, + '(622.11) Mild dysplasia of cervix', '(622.11) Mild dysplasia of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.12) Moderate dysplasia of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.12) Moderate dysplasia of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.12''', NULL, + '(622.12) Moderate dysplasia of cervix', '(622.12) Moderate dysplasia of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620''', NULL, + 'Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)', 'Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.0) Follicular cyst of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.0) Follicular cyst of ovary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.0''', NULL, + '(620.0) Follicular cyst of ovary', '(620.0) Follicular cyst of ovary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.1) Corpus luteum cyst or hematoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.1) Corpus luteum cyst or hematoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.1''', NULL, + '(620.1) Corpus luteum cyst or hematoma', '(620.1) Corpus luteum cyst or hematoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.2) Other and unspecified ovarian cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.2) Other and unspecified ovarian cyst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.2''', NULL, + '(620.2) Other and unspecified ovarian cyst', '(620.2) Other and unspecified ovarian cyst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.3) Acquired atrophy of ovary and fallopian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.3) Acquired atrophy of ovary and fallopian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.3''', NULL, + '(620.3) Acquired atrophy of ovary and fallopian tube', '(620.3) Acquired atrophy of ovary and fallopian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.4) Prolapse or hernia of ovary and fallopian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.4) Prolapse or hernia of ovary and fallopian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.4''', NULL, + '(620.4) Prolapse or hernia of ovary and fallopian tube', '(620.4) Prolapse or hernia of ovary and fallopian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.5) Torsion of ovary, ovarian pedicle, or fallopian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.5) Torsion of ovary, ovarian pedicle, or fallopian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.5''', NULL, + '(620.5) Torsion of ovary, ovarian pedicle, or fallopian tube', '(620.5) Torsion of ovary, ovarian pedicle, or fallopian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.6) Broad ligament laceration syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.6) Broad ligament laceration syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.6''', NULL, + '(620.6) Broad ligament laceration syndrome', '(620.6) Broad ligament laceration syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.7) Hematoma of broad ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.7) Hematoma of broad ligament\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.7''', NULL, + '(620.7) Hematoma of broad ligament', '(620.7) Hematoma of broad ligament', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.8) Other noninflammatory disorders of ovary, fallopian tube, and broad ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.8) Other noninflammatory disorders of ovary, fallopian tube, and broad ligament\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.8''', NULL, + '(620.8) Other noninflammatory disorders of ovary, fallopian tube, and broad ligament', '(620.8) Other noninflammatory disorders of ovary, fallopian tube, and broad ligament', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.9) Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.9) Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.9''', NULL, + '(620.9) Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament', '(620.9) Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623''', NULL, + 'Noninflammatory disorders of vagina (623)', 'Noninflammatory disorders of vagina (623)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.0) Dysplasia of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.0) Dysplasia of vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.0''', NULL, + '(623.0) Dysplasia of vagina', '(623.0) Dysplasia of vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.1) Leukoplakia of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.1) Leukoplakia of vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.1''', NULL, + '(623.1) Leukoplakia of vagina', '(623.1) Leukoplakia of vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.2) Stricture or atresia of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.2) Stricture or atresia of vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.2''', NULL, + '(623.2) Stricture or atresia of vagina', '(623.2) Stricture or atresia of vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.3) Tight hymenal ring\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.3) Tight hymenal ring\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.3''', NULL, + '(623.3) Tight hymenal ring', '(623.3) Tight hymenal ring', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.4) Old vaginal laceration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.4) Old vaginal laceration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.4''', NULL, + '(623.4) Old vaginal laceration', '(623.4) Old vaginal laceration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.5) Leukorrhea, not specified as infective\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.5) Leukorrhea, not specified as infective\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.5''', NULL, + '(623.5) Leukorrhea, not specified as infective', '(623.5) Leukorrhea, not specified as infective', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.6) Vaginal hematoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.6) Vaginal hematoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.6''', NULL, + '(623.6) Vaginal hematoma', '(623.6) Vaginal hematoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.7) Polyp of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.7) Polyp of vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.7''', NULL, + '(623.7) Polyp of vagina', '(623.7) Polyp of vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.8) Other specified noninflammatory disorders of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.8) Other specified noninflammatory disorders of vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.8''', NULL, + '(623.8) Other specified noninflammatory disorders of vagina', '(623.8) Other specified noninflammatory disorders of vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.9) Unspecified noninflammatory disorder of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.9) Unspecified noninflammatory disorder of vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.9''', NULL, + '(623.9) Unspecified noninflammatory disorder of vagina', '(623.9) Unspecified noninflammatory disorder of vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624''', NULL, + 'Noninflammatory disorders of vulva and perineum (624)', 'Noninflammatory disorders of vulva and perineum (624)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.1) Atrophy of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.1) Atrophy of vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.1''', NULL, + '(624.1) Atrophy of vulva', '(624.1) Atrophy of vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.2) Hypertrophy of clitoris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.2) Hypertrophy of clitoris\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.2''', NULL, + '(624.2) Hypertrophy of clitoris', '(624.2) Hypertrophy of clitoris', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.3) Hypertrophy of labia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.3) Hypertrophy of labia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.3''', NULL, + '(624.3) Hypertrophy of labia', '(624.3) Hypertrophy of labia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.4) Old laceration or scarring of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.4) Old laceration or scarring of vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.4''', NULL, + '(624.4) Old laceration or scarring of vulva', '(624.4) Old laceration or scarring of vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.5) Hematoma of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.5) Hematoma of vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.5''', NULL, + '(624.5) Hematoma of vulva', '(624.5) Hematoma of vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.6) Polyp of labia and vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.6) Polyp of labia and vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.6''', NULL, + '(624.6) Polyp of labia and vulva', '(624.6) Polyp of labia and vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.8) Other specified noninflammatory disorders of vulva and perineum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.8) Other specified noninflammatory disorders of vulva and perineum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.8''', NULL, + '(624.8) Other specified noninflammatory disorders of vulva and perineum', '(624.8) Other specified noninflammatory disorders of vulva and perineum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.9) Unspecified noninflammatory disorder of vulva and perineum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.9) Unspecified noninflammatory disorder of vulva and perineum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.9''', NULL, + '(624.9) Unspecified noninflammatory disorder of vulva and perineum', '(624.9) Unspecified noninflammatory disorder of vulva and perineum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.0''', NULL, + 'Dystrophy of vulva (624.0)', 'Dystrophy of vulva (624.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.01) Vulvar intraepithelial neoplasia I [VIN I]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.01) Vulvar intraepithelial neoplasia I [VIN I]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.01''', NULL, + '(624.01) Vulvar intraepithelial neoplasia I [VIN I]', '(624.01) Vulvar intraepithelial neoplasia I [VIN I]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.02) Vulvar intraepithelial neoplasia II [VIN II]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.02) Vulvar intraepithelial neoplasia II [VIN II]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.02''', NULL, + '(624.02) Vulvar intraepithelial neoplasia II [VIN II]', '(624.02) Vulvar intraepithelial neoplasia II [VIN II]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.09) Other dystrophy of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.09) Other dystrophy of vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.09''', NULL, + '(624.09) Other dystrophy of vulva', '(624.09) Other dystrophy of vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629''', NULL, + 'Other disorders of female genital organs (629)', 'Other disorders of female genital organs (629)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.0) Hematocele, female, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.0) Hematocele, female, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.0''', NULL, + '(629.0) Hematocele, female, not elsewhere classified', '(629.0) Hematocele, female, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.1) Hydrocele, canal of nuck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.1) Hydrocele, canal of nuck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.1''', NULL, + '(629.1) Hydrocele, canal of nuck', '(629.1) Hydrocele, canal of nuck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.9) Unspecified disorder of female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.9) Unspecified disorder of female genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.9''', NULL, + '(629.9) Unspecified disorder of female genital organs', '(629.9) Unspecified disorder of female genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.3''', NULL, + 'Complication of implanted vaginal mesh and other prosthetic materials (629.3)', 'Complication of implanted vaginal mesh and other prosthetic materials (629.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\(629.31) Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\(629.31) Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.31''', NULL, + '(629.31) Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue', '(629.31) Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\(629.32) Exposure of implanted vaginal mesh and other prosthetic materials into vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\(629.32) Exposure of implanted vaginal mesh and other prosthetic materials into vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.32''', NULL, + '(629.32) Exposure of implanted vaginal mesh and other prosthetic materials into vagina', '(629.32) Exposure of implanted vaginal mesh and other prosthetic materials into vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.2''', NULL, + 'Female genital mutilation status (629.2)', 'Female genital mutilation status (629.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.20) Female genital mutilation status, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.20) Female genital mutilation status, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.20''', NULL, + '(629.20) Female genital mutilation status, unspecified', '(629.20) Female genital mutilation status, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.21) Female genital mutilation Type I status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.21) Female genital mutilation Type I status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.21''', NULL, + '(629.21) Female genital mutilation Type I status', '(629.21) Female genital mutilation Type I status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.22) Female genital mutilation Type II status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.22) Female genital mutilation Type II status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.22''', NULL, + '(629.22) Female genital mutilation Type II status', '(629.22) Female genital mutilation Type II status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.23) Female genital mutilation Type III status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.23) Female genital mutilation Type III status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.23''', NULL, + '(629.23) Female genital mutilation Type III status', '(629.23) Female genital mutilation Type III status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.29) Other female genital mutilation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.29) Other female genital mutilation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.29''', NULL, + '(629.29) Other female genital mutilation status', '(629.29) Other female genital mutilation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.8''', NULL, + 'Other specified disorders of female genital organs (629.8)', 'Other specified disorders of female genital organs (629.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\(629.81) Recurrent pregnancy loss without current pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\(629.81) Recurrent pregnancy loss without current pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.81''', NULL, + '(629.81) Recurrent pregnancy loss without current pregnancy', '(629.81) Recurrent pregnancy loss without current pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\(629.89) Other specified disorders of female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\(629.89) Other specified disorders of female genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.89''', NULL, + '(629.89) Other specified disorders of female genital organs', '(629.89) Other specified disorders of female genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625''', NULL, + 'Pain and other symptoms associated with female genital organs (625)', 'Pain and other symptoms associated with female genital organs (625)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.0) Dyspareunia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.0) Dyspareunia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.0''', NULL, + '(625.0) Dyspareunia', '(625.0) Dyspareunia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.1) Vaginismus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.1) Vaginismus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.1''', NULL, + '(625.1) Vaginismus', '(625.1) Vaginismus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.2) Mittelschmerz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.2) Mittelschmerz\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.2''', NULL, + '(625.2) Mittelschmerz', '(625.2) Mittelschmerz', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.3) Dysmenorrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.3) Dysmenorrhea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.3''', NULL, + '(625.3) Dysmenorrhea', '(625.3) Dysmenorrhea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.4) Premenstrual tension syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.4) Premenstrual tension syndromes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.4''', NULL, + '(625.4) Premenstrual tension syndromes', '(625.4) Premenstrual tension syndromes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.5) Pelvic congestion syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.5) Pelvic congestion syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.5''', NULL, + '(625.5) Pelvic congestion syndrome', '(625.5) Pelvic congestion syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.6) Stress incontinence, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.6) Stress incontinence, female\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.6''', NULL, + '(625.6) Stress incontinence, female', '(625.6) Stress incontinence, female', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.8) Other specified symptoms associated with female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.8) Other specified symptoms associated with female genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.8''', NULL, + '(625.8) Other specified symptoms associated with female genital organs', '(625.8) Other specified symptoms associated with female genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.9) Unspecified symptom associated with female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.9) Unspecified symptom associated with female genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.9''', NULL, + '(625.9) Unspecified symptom associated with female genital organs', '(625.9) Unspecified symptom associated with female genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.7''', NULL, + 'Vulvodynia (625.7)', 'Vulvodynia (625.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.70) Vulvodynia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.70) Vulvodynia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.70''', NULL, + '(625.70) Vulvodynia, unspecified', '(625.70) Vulvodynia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.71) Vulvar vestibulitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.71) Vulvar vestibulitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.71''', NULL, + '(625.71) Vulvar vestibulitis', '(625.71) Vulvar vestibulitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.79) Other vulvodynia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.79) Other vulvodynia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.79''', NULL, + '(625.79) Other vulvodynia', '(625.79) Other vulvodynia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''710'' AND ''739.99''', NULL, + 'Diseases of the musculoskeletal system and connective tissue (710-739.99)', 'Diseases of the musculoskeletal system and connective tissue (710-739.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''710'' AND ''719.99''', NULL, + 'Arthropathies and related disorders (710-719.99)', 'Arthropathies and related disorders (710-719.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711''', NULL, + 'Arthropathy associated with infections (711)', 'Arthropathy associated with infections (711)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.7''', NULL, + 'Arthropathy associated with helminthiasis (711.7)', 'Arthropathy associated with helminthiasis (711.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.70) Arthropathy associated with helminthiasis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.70) Arthropathy associated with helminthiasis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.70''', NULL, + '(711.70) Arthropathy associated with helminthiasis, site unspecified', '(711.70) Arthropathy associated with helminthiasis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.71) Arthropathy associated with helminthiasis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.71) Arthropathy associated with helminthiasis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.71''', NULL, + '(711.71) Arthropathy associated with helminthiasis, shoulder region', '(711.71) Arthropathy associated with helminthiasis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.72) Arthropathy associated with helminthiasis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.72) Arthropathy associated with helminthiasis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.72''', NULL, + '(711.72) Arthropathy associated with helminthiasis, upper arm', '(711.72) Arthropathy associated with helminthiasis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.73) Arthropathy associated with helminthiasis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.73) Arthropathy associated with helminthiasis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.73''', NULL, + '(711.73) Arthropathy associated with helminthiasis, forearm', '(711.73) Arthropathy associated with helminthiasis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.74) Arthropathy associated with helminthiasis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.74) Arthropathy associated with helminthiasis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.74''', NULL, + '(711.74) Arthropathy associated with helminthiasis, hand', '(711.74) Arthropathy associated with helminthiasis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.75) Arthropathy associated with helminthiasis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.75) Arthropathy associated with helminthiasis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.75''', NULL, + '(711.75) Arthropathy associated with helminthiasis, pelvic region and thigh', '(711.75) Arthropathy associated with helminthiasis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.76) Arthropathy associated with helminthiasis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.76) Arthropathy associated with helminthiasis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.76''', NULL, + '(711.76) Arthropathy associated with helminthiasis, lower leg', '(711.76) Arthropathy associated with helminthiasis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.77) Arthropathy associated with helminthiasis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.77) Arthropathy associated with helminthiasis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.77''', NULL, + '(711.77) Arthropathy associated with helminthiasis, ankle and foot', '(711.77) Arthropathy associated with helminthiasis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.78) Arthropathy associated with helminthiasis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.78) Arthropathy associated with helminthiasis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.78''', NULL, + '(711.78) Arthropathy associated with helminthiasis, other specified sites', '(711.78) Arthropathy associated with helminthiasis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.79) Arthropathy associated with helminthiasis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.79) Arthropathy associated with helminthiasis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.79''', NULL, + '(711.79) Arthropathy associated with helminthiasis, multiple sites', '(711.79) Arthropathy associated with helminthiasis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.6''', NULL, + 'Arthropathy associated with mycoses (711.6)', 'Arthropathy associated with mycoses (711.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.60) Arthropathy associated with mycoses, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.60) Arthropathy associated with mycoses, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.60''', NULL, + '(711.60) Arthropathy associated with mycoses, site unspecified', '(711.60) Arthropathy associated with mycoses, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.61) Arthropathy associated with mycoses, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.61) Arthropathy associated with mycoses, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.61''', NULL, + '(711.61) Arthropathy associated with mycoses, shoulder region', '(711.61) Arthropathy associated with mycoses, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.62) Arthropathy associated with mycoses, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.62) Arthropathy associated with mycoses, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.62''', NULL, + '(711.62) Arthropathy associated with mycoses, upper arm', '(711.62) Arthropathy associated with mycoses, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.63) Arthropathy associated with mycoses, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.63) Arthropathy associated with mycoses, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.63''', NULL, + '(711.63) Arthropathy associated with mycoses, forearm', '(711.63) Arthropathy associated with mycoses, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.64) Arthropathy associated with mycoses, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.64) Arthropathy associated with mycoses, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.64''', NULL, + '(711.64) Arthropathy associated with mycoses, hand', '(711.64) Arthropathy associated with mycoses, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.65) Arthropathy associated with mycoses, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.65) Arthropathy associated with mycoses, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.65''', NULL, + '(711.65) Arthropathy associated with mycoses, pelvic region and thigh', '(711.65) Arthropathy associated with mycoses, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.66) Arthropathy associated with mycoses, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.66) Arthropathy associated with mycoses, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.66''', NULL, + '(711.66) Arthropathy associated with mycoses, lower leg', '(711.66) Arthropathy associated with mycoses, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.67) Arthropathy associated with mycoses, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.67) Arthropathy associated with mycoses, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.67''', NULL, + '(711.67) Arthropathy associated with mycoses, ankle and foot', '(711.67) Arthropathy associated with mycoses, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.68) Arthropathy associated with mycoses, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.68) Arthropathy associated with mycoses, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.68''', NULL, + '(711.68) Arthropathy associated with mycoses, other specified sites', '(711.68) Arthropathy associated with mycoses, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.69) Arthropathy associated with mycoses, involving multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.69) Arthropathy associated with mycoses, involving multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.69''', NULL, + '(711.69) Arthropathy associated with mycoses, involving multiple sites', '(711.69) Arthropathy associated with mycoses, involving multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.4''', NULL, + 'Arthropathy associated with other bacterial diseases (711.4)', 'Arthropathy associated with other bacterial diseases (711.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.40) Arthropathy associated with other bacterial diseases, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.40) Arthropathy associated with other bacterial diseases, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.40''', NULL, + '(711.40) Arthropathy associated with other bacterial diseases, site unspecified', '(711.40) Arthropathy associated with other bacterial diseases, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.41) Arthropathy associated with other bacterial diseases, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.41) Arthropathy associated with other bacterial diseases, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.41''', NULL, + '(711.41) Arthropathy associated with other bacterial diseases, shoulder region', '(711.41) Arthropathy associated with other bacterial diseases, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.42) Arthropathy associated with other bacterial diseases, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.42) Arthropathy associated with other bacterial diseases, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.42''', NULL, + '(711.42) Arthropathy associated with other bacterial diseases, upper arm', '(711.42) Arthropathy associated with other bacterial diseases, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.43) Arthropathy associated with other bacterial diseases, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.43) Arthropathy associated with other bacterial diseases, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.43''', NULL, + '(711.43) Arthropathy associated with other bacterial diseases, forearm', '(711.43) Arthropathy associated with other bacterial diseases, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.44) Arthropathy associated with other bacterial diseases, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.44) Arthropathy associated with other bacterial diseases, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.44''', NULL, + '(711.44) Arthropathy associated with other bacterial diseases, hand', '(711.44) Arthropathy associated with other bacterial diseases, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.45) Arthropathy associated with other bacterial diseases, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.45) Arthropathy associated with other bacterial diseases, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.45''', NULL, + '(711.45) Arthropathy associated with other bacterial diseases, pelvic region and thigh', '(711.45) Arthropathy associated with other bacterial diseases, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.46) Arthropathy associated with other bacterial diseases, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.46) Arthropathy associated with other bacterial diseases, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.46''', NULL, + '(711.46) Arthropathy associated with other bacterial diseases, lower leg', '(711.46) Arthropathy associated with other bacterial diseases, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.47) Arthropathy associated with other bacterial diseases, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.47) Arthropathy associated with other bacterial diseases, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.47''', NULL, + '(711.47) Arthropathy associated with other bacterial diseases, ankle and foot', '(711.47) Arthropathy associated with other bacterial diseases, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.48) Arthropathy associated with other bacterial diseases, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.48) Arthropathy associated with other bacterial diseases, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.48''', NULL, + '(711.48) Arthropathy associated with other bacterial diseases, other specified sites', '(711.48) Arthropathy associated with other bacterial diseases, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.49) Arthropathy associated with other bacterial diseases, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.49) Arthropathy associated with other bacterial diseases, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.49''', NULL, + '(711.49) Arthropathy associated with other bacterial diseases, multiple sites', '(711.49) Arthropathy associated with other bacterial diseases, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.8''', NULL, + 'Arthropathy associated with other infectious and parasitic diseases (711.8)', 'Arthropathy associated with other infectious and parasitic diseases (711.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.80) Arthropathy associated with other infectious and parasitic diseases, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.80) Arthropathy associated with other infectious and parasitic diseases, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.80''', NULL, + '(711.80) Arthropathy associated with other infectious and parasitic diseases, site unspecified', '(711.80) Arthropathy associated with other infectious and parasitic diseases, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.81) Arthropathy associated with other infectious and parasitic diseases, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.81) Arthropathy associated with other infectious and parasitic diseases, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.81''', NULL, + '(711.81) Arthropathy associated with other infectious and parasitic diseases, shoulder region', '(711.81) Arthropathy associated with other infectious and parasitic diseases, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.82) Arthropathy associated with other infectious and parasitic diseases, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.82) Arthropathy associated with other infectious and parasitic diseases, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.82''', NULL, + '(711.82) Arthropathy associated with other infectious and parasitic diseases, upper arm', '(711.82) Arthropathy associated with other infectious and parasitic diseases, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.83) Arthropathy associated with other infectious and parasitic diseases, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.83) Arthropathy associated with other infectious and parasitic diseases, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.83''', NULL, + '(711.83) Arthropathy associated with other infectious and parasitic diseases, forearm', '(711.83) Arthropathy associated with other infectious and parasitic diseases, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.84) Arthropathy associated with other infectious and parasitic diseases, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.84) Arthropathy associated with other infectious and parasitic diseases, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.84''', NULL, + '(711.84) Arthropathy associated with other infectious and parasitic diseases, hand', '(711.84) Arthropathy associated with other infectious and parasitic diseases, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.85) Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.85) Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.85''', NULL, + '(711.85) Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh', '(711.85) Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.86) Arthropathy associated with other infectious and parasitic diseases, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.86) Arthropathy associated with other infectious and parasitic diseases, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.86''', NULL, + '(711.86) Arthropathy associated with other infectious and parasitic diseases, lower leg', '(711.86) Arthropathy associated with other infectious and parasitic diseases, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.87) Arthropathy associated with other infectious and parasitic diseases, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.87) Arthropathy associated with other infectious and parasitic diseases, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.87''', NULL, + '(711.87) Arthropathy associated with other infectious and parasitic diseases, ankle and foot', '(711.87) Arthropathy associated with other infectious and parasitic diseases, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.88) Arthropathy associated with other infectious and parasitic diseases, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.88) Arthropathy associated with other infectious and parasitic diseases, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.88''', NULL, + '(711.88) Arthropathy associated with other infectious and parasitic diseases, other specified sites', '(711.88) Arthropathy associated with other infectious and parasitic diseases, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.89) Arthropathy associated with other infectious and parasitic diseases, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.89) Arthropathy associated with other infectious and parasitic diseases, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.89''', NULL, + '(711.89) Arthropathy associated with other infectious and parasitic diseases, multiple sites', '(711.89) Arthropathy associated with other infectious and parasitic diseases, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.5''', NULL, + 'Arthropathy associated with other viral diseases (711.5)', 'Arthropathy associated with other viral diseases (711.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.50) Arthropathy associated with other viral diseases, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.50) Arthropathy associated with other viral diseases, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.50''', NULL, + '(711.50) Arthropathy associated with other viral diseases, site unspecified', '(711.50) Arthropathy associated with other viral diseases, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.51) Arthropathy associated with other viral diseases, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.51) Arthropathy associated with other viral diseases, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.51''', NULL, + '(711.51) Arthropathy associated with other viral diseases, shoulder region', '(711.51) Arthropathy associated with other viral diseases, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.52) Arthropathy associated with other viral diseases, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.52) Arthropathy associated with other viral diseases, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.52''', NULL, + '(711.52) Arthropathy associated with other viral diseases, upper arm', '(711.52) Arthropathy associated with other viral diseases, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.53) Arthropathy associated with other viral diseases, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.53) Arthropathy associated with other viral diseases, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.53''', NULL, + '(711.53) Arthropathy associated with other viral diseases, forearm', '(711.53) Arthropathy associated with other viral diseases, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.54) Arthropathy associated with other viral diseases, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.54) Arthropathy associated with other viral diseases, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.54''', NULL, + '(711.54) Arthropathy associated with other viral diseases, hand', '(711.54) Arthropathy associated with other viral diseases, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.55) Arthropathy associated with other viral diseases, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.55) Arthropathy associated with other viral diseases, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.55''', NULL, + '(711.55) Arthropathy associated with other viral diseases, pelvic region and thigh', '(711.55) Arthropathy associated with other viral diseases, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.56) Arthropathy associated with other viral diseases, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.56) Arthropathy associated with other viral diseases, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.56''', NULL, + '(711.56) Arthropathy associated with other viral diseases, lower leg', '(711.56) Arthropathy associated with other viral diseases, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.57) Arthropathy associated with other viral diseases, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.57) Arthropathy associated with other viral diseases, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.57''', NULL, + '(711.57) Arthropathy associated with other viral diseases, ankle and foot', '(711.57) Arthropathy associated with other viral diseases, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.58) Arthropathy associated with other viral diseases, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.58) Arthropathy associated with other viral diseases, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.58''', NULL, + '(711.58) Arthropathy associated with other viral diseases, other specified sites', '(711.58) Arthropathy associated with other viral diseases, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.59) Arthropathy associated with other viral diseases, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.59) Arthropathy associated with other viral diseases, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.59''', NULL, + '(711.59) Arthropathy associated with other viral diseases, multiple sites', '(711.59) Arthropathy associated with other viral diseases, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.1''', NULL, + 'Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)', 'Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.10) Arthropathy associated with Reiter''s disease and nonspecific urethritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.10) Arthropathy associated with Reiter''s disease and nonspecific urethritis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.10''', NULL, + '(711.10) Arthropathy associated with Reiter''s disease and nonspecific urethritis, site unspecified', '(711.10) Arthropathy associated with Reiter''s disease and nonspecific urethritis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.11) Arthropathy associated with Reiter''s disease and nonspecific urethritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.11) Arthropathy associated with Reiter''s disease and nonspecific urethritis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.11''', NULL, + '(711.11) Arthropathy associated with Reiter''s disease and nonspecific urethritis, shoulder region', '(711.11) Arthropathy associated with Reiter''s disease and nonspecific urethritis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.12) Arthropathy associated with Reiter''s disease and nonspecific urethritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.12) Arthropathy associated with Reiter''s disease and nonspecific urethritis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.12''', NULL, + '(711.12) Arthropathy associated with Reiter''s disease and nonspecific urethritis, upper arm', '(711.12) Arthropathy associated with Reiter''s disease and nonspecific urethritis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.13) Arthropathy associated with Reiter''s disease and nonspecific urethritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.13) Arthropathy associated with Reiter''s disease and nonspecific urethritis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.13''', NULL, + '(711.13) Arthropathy associated with Reiter''s disease and nonspecific urethritis, forearm', '(711.13) Arthropathy associated with Reiter''s disease and nonspecific urethritis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.14) Arthropathy associated with Reiter''s disease and nonspecific urethritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.14) Arthropathy associated with Reiter''s disease and nonspecific urethritis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.14''', NULL, + '(711.14) Arthropathy associated with Reiter''s disease and nonspecific urethritis, hand', '(711.14) Arthropathy associated with Reiter''s disease and nonspecific urethritis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.15) Arthropathy associated with Reiter''s disease and nonspecific urethritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.15) Arthropathy associated with Reiter''s disease and nonspecific urethritis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.15''', NULL, + '(711.15) Arthropathy associated with Reiter''s disease and nonspecific urethritis, pelvic region and thigh', '(711.15) Arthropathy associated with Reiter''s disease and nonspecific urethritis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.16) Arthropathy associated with Reiter''s disease and nonspecific urethritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.16) Arthropathy associated with Reiter''s disease and nonspecific urethritis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.16''', NULL, + '(711.16) Arthropathy associated with Reiter''s disease and nonspecific urethritis, lower leg', '(711.16) Arthropathy associated with Reiter''s disease and nonspecific urethritis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.17) Arthropathy associated with Reiter''s disease and nonspecific urethritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.17) Arthropathy associated with Reiter''s disease and nonspecific urethritis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.17''', NULL, + '(711.17) Arthropathy associated with Reiter''s disease and nonspecific urethritis, ankle and foot', '(711.17) Arthropathy associated with Reiter''s disease and nonspecific urethritis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.18) Arthropathy associated with Reiter''s disease and nonspecific urethritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.18) Arthropathy associated with Reiter''s disease and nonspecific urethritis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.18''', NULL, + '(711.18) Arthropathy associated with Reiter''s disease and nonspecific urethritis, other specified sites', '(711.18) Arthropathy associated with Reiter''s disease and nonspecific urethritis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.19) Arthropathy associated with Reiter''s disease and nonspecific urethritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.19) Arthropathy associated with Reiter''s disease and nonspecific urethritis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.19''', NULL, + '(711.19) Arthropathy associated with Reiter''s disease and nonspecific urethritis, multiple sites', '(711.19) Arthropathy associated with Reiter''s disease and nonspecific urethritis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.2''', NULL, + 'Arthropathy in Behcet''s syndrome (711.2)', 'Arthropathy in Behcet''s syndrome (711.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.20) Arthropathy in Behcet''s syndrome, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.20) Arthropathy in Behcet''s syndrome, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.20''', NULL, + '(711.20) Arthropathy in Behcet''s syndrome, site unspecified', '(711.20) Arthropathy in Behcet''s syndrome, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.21) Arthropathy in Behcet''s syndrome, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.21) Arthropathy in Behcet''s syndrome, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.21''', NULL, + '(711.21) Arthropathy in Behcet''s syndrome, shoulder region', '(711.21) Arthropathy in Behcet''s syndrome, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.22) Arthropathy in Behcet''s syndrome, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.22) Arthropathy in Behcet''s syndrome, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.22''', NULL, + '(711.22) Arthropathy in Behcet''s syndrome, upper arm', '(711.22) Arthropathy in Behcet''s syndrome, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.23) Arthropathy in Behcet''s syndrome, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.23) Arthropathy in Behcet''s syndrome, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.23''', NULL, + '(711.23) Arthropathy in Behcet''s syndrome, forearm', '(711.23) Arthropathy in Behcet''s syndrome, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.24) Arthropathy in Behcet''s syndrome, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.24) Arthropathy in Behcet''s syndrome, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.24''', NULL, + '(711.24) Arthropathy in Behcet''s syndrome, hand', '(711.24) Arthropathy in Behcet''s syndrome, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.25) Arthropathy in Behcet''s syndrome, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.25) Arthropathy in Behcet''s syndrome, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.25''', NULL, + '(711.25) Arthropathy in Behcet''s syndrome, pelvic region and thigh', '(711.25) Arthropathy in Behcet''s syndrome, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.26) Arthropathy in Behcet''s syndrome, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.26) Arthropathy in Behcet''s syndrome, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.26''', NULL, + '(711.26) Arthropathy in Behcet''s syndrome, lower leg', '(711.26) Arthropathy in Behcet''s syndrome, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.27) Arthropathy in Behcet''s syndrome, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.27) Arthropathy in Behcet''s syndrome, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.27''', NULL, + '(711.27) Arthropathy in Behcet''s syndrome, ankle and foot', '(711.27) Arthropathy in Behcet''s syndrome, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.28) Arthropathy in Behcet''s syndrome, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.28) Arthropathy in Behcet''s syndrome, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.28''', NULL, + '(711.28) Arthropathy in Behcet''s syndrome, other specified sites', '(711.28) Arthropathy in Behcet''s syndrome, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.29) Arthropathy in Behcet''s syndrome, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.29) Arthropathy in Behcet''s syndrome, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.29''', NULL, + '(711.29) Arthropathy in Behcet''s syndrome, multiple sites', '(711.29) Arthropathy in Behcet''s syndrome, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.3''', NULL, + 'Postdysenteric arthropathy (711.3)', 'Postdysenteric arthropathy (711.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.30) Postdysenteric arthropathy, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.30) Postdysenteric arthropathy, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.30''', NULL, + '(711.30) Postdysenteric arthropathy, site unspecified', '(711.30) Postdysenteric arthropathy, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.31) Postdysenteric arthropathy, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.31) Postdysenteric arthropathy, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.31''', NULL, + '(711.31) Postdysenteric arthropathy, shoulder region', '(711.31) Postdysenteric arthropathy, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.32) Postdysenteric arthropathy, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.32) Postdysenteric arthropathy, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.32''', NULL, + '(711.32) Postdysenteric arthropathy, upper arm', '(711.32) Postdysenteric arthropathy, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.33) Postdysenteric arthropathy, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.33) Postdysenteric arthropathy, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.33''', NULL, + '(711.33) Postdysenteric arthropathy, forearm', '(711.33) Postdysenteric arthropathy, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.34) Postdysenteric arthropathy, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.34) Postdysenteric arthropathy, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.34''', NULL, + '(711.34) Postdysenteric arthropathy, hand', '(711.34) Postdysenteric arthropathy, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.35) Postdysenteric arthropathy, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.35) Postdysenteric arthropathy, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.35''', NULL, + '(711.35) Postdysenteric arthropathy, pelvic region and thigh', '(711.35) Postdysenteric arthropathy, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.36) Postdysenteric arthropathy, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.36) Postdysenteric arthropathy, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.36''', NULL, + '(711.36) Postdysenteric arthropathy, lower leg', '(711.36) Postdysenteric arthropathy, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.37) Postdysenteric arthropathy, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.37) Postdysenteric arthropathy, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.37''', NULL, + '(711.37) Postdysenteric arthropathy, ankle and foot', '(711.37) Postdysenteric arthropathy, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.38) Postdysenteric arthropathy, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.38) Postdysenteric arthropathy, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.38''', NULL, + '(711.38) Postdysenteric arthropathy, other specified sites', '(711.38) Postdysenteric arthropathy, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.39) Postdysenteric arthropathy, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.39) Postdysenteric arthropathy, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.39''', NULL, + '(711.39) Postdysenteric arthropathy, multiple sites', '(711.39) Postdysenteric arthropathy, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.0''', NULL, + 'Pyogenic arthritis (711.0)', 'Pyogenic arthritis (711.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.00) Pyogenic arthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.00) Pyogenic arthritis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.00''', NULL, + '(711.00) Pyogenic arthritis, site unspecified', '(711.00) Pyogenic arthritis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.01) Pyogenic arthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.01) Pyogenic arthritis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.01''', NULL, + '(711.01) Pyogenic arthritis, shoulder region', '(711.01) Pyogenic arthritis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.02) Pyogenic arthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.02) Pyogenic arthritis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.02''', NULL, + '(711.02) Pyogenic arthritis, upper arm', '(711.02) Pyogenic arthritis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.03) Pyogenic arthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.03) Pyogenic arthritis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.03''', NULL, + '(711.03) Pyogenic arthritis, forearm', '(711.03) Pyogenic arthritis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.04) Pyogenic arthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.04) Pyogenic arthritis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.04''', NULL, + '(711.04) Pyogenic arthritis, hand', '(711.04) Pyogenic arthritis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.05) Pyogenic arthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.05) Pyogenic arthritis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.05''', NULL, + '(711.05) Pyogenic arthritis, pelvic region and thigh', '(711.05) Pyogenic arthritis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.06) Pyogenic arthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.06) Pyogenic arthritis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.06''', NULL, + '(711.06) Pyogenic arthritis, lower leg', '(711.06) Pyogenic arthritis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.07) Pyogenic arthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.07) Pyogenic arthritis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.07''', NULL, + '(711.07) Pyogenic arthritis, ankle and foot', '(711.07) Pyogenic arthritis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.08) Pyogenic arthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.08) Pyogenic arthritis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.08''', NULL, + '(711.08) Pyogenic arthritis, other specified sites', '(711.08) Pyogenic arthritis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.09) Pyogenic arthritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.09) Pyogenic arthritis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.09''', NULL, + '(711.09) Pyogenic arthritis, multiple sites', '(711.09) Pyogenic arthritis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.9''', NULL, + 'Unspecified infective arthritis (711.9)', 'Unspecified infective arthritis (711.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.90) Unspecified infective arthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.90) Unspecified infective arthritis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.90''', NULL, + '(711.90) Unspecified infective arthritis, site unspecified', '(711.90) Unspecified infective arthritis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.91) Unspecified infective arthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.91) Unspecified infective arthritis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.91''', NULL, + '(711.91) Unspecified infective arthritis, shoulder region', '(711.91) Unspecified infective arthritis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.92) Unspecified infective arthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.92) Unspecified infective arthritis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.92''', NULL, + '(711.92) Unspecified infective arthritis, upper arm', '(711.92) Unspecified infective arthritis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.93) Unspecified infective arthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.93) Unspecified infective arthritis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.93''', NULL, + '(711.93) Unspecified infective arthritis, forearm', '(711.93) Unspecified infective arthritis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.94) Unspecified infective arthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.94) Unspecified infective arthritis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.94''', NULL, + '(711.94) Unspecified infective arthritis, hand', '(711.94) Unspecified infective arthritis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.95) Unspecified infective arthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.95) Unspecified infective arthritis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.95''', NULL, + '(711.95) Unspecified infective arthritis, pelvic region and thigh', '(711.95) Unspecified infective arthritis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.96) Unspecified infective arthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.96) Unspecified infective arthritis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.96''', NULL, + '(711.96) Unspecified infective arthritis, lower leg', '(711.96) Unspecified infective arthritis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.97) Unspecified infective arthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.97) Unspecified infective arthritis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.97''', NULL, + '(711.97) Unspecified infective arthritis, ankle and foot', '(711.97) Unspecified infective arthritis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.98) Unspecified infective arthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.98) Unspecified infective arthritis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.98''', NULL, + '(711.98) Unspecified infective arthritis, other specified sites', '(711.98) Unspecified infective arthritis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.99) Unspecified infective arthritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.99) Unspecified infective arthritis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.99''', NULL, + '(711.99) Unspecified infective arthritis, multiple sites', '(711.99) Unspecified infective arthritis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713''', NULL, + 'Arthropathy associated with other disorders classified elsewhere (713)', 'Arthropathy associated with other disorders classified elsewhere (713)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.0) Arthropathy associated with other endocrine and metabolic disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.0) Arthropathy associated with other endocrine and metabolic disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.0''', NULL, + '(713.0) Arthropathy associated with other endocrine and metabolic disorders', '(713.0) Arthropathy associated with other endocrine and metabolic disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.1) Arthropathy associated with gastrointestinal conditions other than infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.1) Arthropathy associated with gastrointestinal conditions other than infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.1''', NULL, + '(713.1) Arthropathy associated with gastrointestinal conditions other than infections', '(713.1) Arthropathy associated with gastrointestinal conditions other than infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.2) Arthropathy associated with hematological disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.2) Arthropathy associated with hematological disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.2''', NULL, + '(713.2) Arthropathy associated with hematological disorders', '(713.2) Arthropathy associated with hematological disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.3) Arthropathy associated with dermatological disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.3) Arthropathy associated with dermatological disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.3''', NULL, + '(713.3) Arthropathy associated with dermatological disorders', '(713.3) Arthropathy associated with dermatological disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.4) Arthropathy associated with respiratory disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.4) Arthropathy associated with respiratory disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.4''', NULL, + '(713.4) Arthropathy associated with respiratory disorders', '(713.4) Arthropathy associated with respiratory disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.5) Arthropathy associated with neurological disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.5) Arthropathy associated with neurological disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.5''', NULL, + '(713.5) Arthropathy associated with neurological disorders', '(713.5) Arthropathy associated with neurological disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.6) Arthropathy associated with hypersensitivity reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.6) Arthropathy associated with hypersensitivity reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.6''', NULL, + '(713.6) Arthropathy associated with hypersensitivity reaction', '(713.6) Arthropathy associated with hypersensitivity reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.7) Other general diseases with articular involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.7) Other general diseases with articular involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.7''', NULL, + '(713.7) Other general diseases with articular involvement', '(713.7) Other general diseases with articular involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.8) Arthropathy associated with other conditions classifiable elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.8) Arthropathy associated with other conditions classifiable elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.8''', NULL, + '(713.8) Arthropathy associated with other conditions classifiable elsewhere', '(713.8) Arthropathy associated with other conditions classifiable elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712''', NULL, + 'Crystal arthropathies (712)', 'Crystal arthropathies (712)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.1''', NULL, + 'Chondrocalcinosis due to dicalcium phosphate crystals (712.1)', 'Chondrocalcinosis due to dicalcium phosphate crystals (712.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.10) Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.10) Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.10''', NULL, + '(712.10) Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified', '(712.10) Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.11) Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.11) Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.11''', NULL, + '(712.11) Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region', '(712.11) Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.12) Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.12) Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.12''', NULL, + '(712.12) Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm', '(712.12) Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.13) Chondrocalcinosis, due to dicalcium phosphate crystals, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.13) Chondrocalcinosis, due to dicalcium phosphate crystals, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.13''', NULL, + '(712.13) Chondrocalcinosis, due to dicalcium phosphate crystals, forearm', '(712.13) Chondrocalcinosis, due to dicalcium phosphate crystals, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.14) Chondrocalcinosis, due to dicalcium phosphate crystals, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.14) Chondrocalcinosis, due to dicalcium phosphate crystals, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.14''', NULL, + '(712.14) Chondrocalcinosis, due to dicalcium phosphate crystals, hand', '(712.14) Chondrocalcinosis, due to dicalcium phosphate crystals, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.15) Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.15) Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.15''', NULL, + '(712.15) Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh', '(712.15) Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.16) Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.16) Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.16''', NULL, + '(712.16) Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg', '(712.16) Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.17) Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.17) Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.17''', NULL, + '(712.17) Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot', '(712.17) Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.18) Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.18) Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.18''', NULL, + '(712.18) Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites', '(712.18) Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.19) Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.19) Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.19''', NULL, + '(712.19) Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites', '(712.19) Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.2''', NULL, + 'Chondrocalcinosis due to pyrophosphate crystals (712.2)', 'Chondrocalcinosis due to pyrophosphate crystals (712.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.20) Chondrocalcinosis, due to pyrophosphate crystals, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.20) Chondrocalcinosis, due to pyrophosphate crystals, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.20''', NULL, + '(712.20) Chondrocalcinosis, due to pyrophosphate crystals, site unspecified', '(712.20) Chondrocalcinosis, due to pyrophosphate crystals, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.21) Chondrocalcinosis, due to pyrophosphate crystals, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.21) Chondrocalcinosis, due to pyrophosphate crystals, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.21''', NULL, + '(712.21) Chondrocalcinosis, due to pyrophosphate crystals, shoulder region', '(712.21) Chondrocalcinosis, due to pyrophosphate crystals, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.22) Chondrocalcinosis, due to pyrophosphate crystals, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.22) Chondrocalcinosis, due to pyrophosphate crystals, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.22''', NULL, + '(712.22) Chondrocalcinosis, due to pyrophosphate crystals, upper arm', '(712.22) Chondrocalcinosis, due to pyrophosphate crystals, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.23) Chondrocalcinosis, due to pyrophosphate crystals, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.23) Chondrocalcinosis, due to pyrophosphate crystals, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.23''', NULL, + '(712.23) Chondrocalcinosis, due to pyrophosphate crystals, forearm', '(712.23) Chondrocalcinosis, due to pyrophosphate crystals, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.24) Chondrocalcinosis, due to pyrophosphate crystals, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.24) Chondrocalcinosis, due to pyrophosphate crystals, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.24''', NULL, + '(712.24) Chondrocalcinosis, due to pyrophosphate crystals, hand', '(712.24) Chondrocalcinosis, due to pyrophosphate crystals, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.25) Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.25) Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.25''', NULL, + '(712.25) Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh', '(712.25) Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.26) Chondrocalcinosis, due to pyrophosphate crystals, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.26) Chondrocalcinosis, due to pyrophosphate crystals, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.26''', NULL, + '(712.26) Chondrocalcinosis, due to pyrophosphate crystals, lower leg', '(712.26) Chondrocalcinosis, due to pyrophosphate crystals, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.27) Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.27) Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.27''', NULL, + '(712.27) Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot', '(712.27) Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.28) Chondrocalcinosis, due to pyrophosphate crystals, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.28) Chondrocalcinosis, due to pyrophosphate crystals, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.28''', NULL, + '(712.28) Chondrocalcinosis, due to pyrophosphate crystals, other specified sites', '(712.28) Chondrocalcinosis, due to pyrophosphate crystals, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.29) Chondrocalcinosis, due to pyrophosphate crystals, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.29) Chondrocalcinosis, due to pyrophosphate crystals, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.29''', NULL, + '(712.29) Chondrocalcinosis, due to pyrophosphate crystals, multiple sites', '(712.29) Chondrocalcinosis, due to pyrophosphate crystals, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.3''', NULL, + 'Chondrocalcinosis, cause unspecified (712.3)', 'Chondrocalcinosis, cause unspecified (712.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.30) Chondrocalcinosis, unspecified, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.30) Chondrocalcinosis, unspecified, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.30''', NULL, + '(712.30) Chondrocalcinosis, unspecified, site unspecified', '(712.30) Chondrocalcinosis, unspecified, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.31) Chondrocalcinosis, unspecified, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.31) Chondrocalcinosis, unspecified, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.31''', NULL, + '(712.31) Chondrocalcinosis, unspecified, shoulder region', '(712.31) Chondrocalcinosis, unspecified, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.32) Chondrocalcinosis, unspecified, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.32) Chondrocalcinosis, unspecified, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.32''', NULL, + '(712.32) Chondrocalcinosis, unspecified, upper arm', '(712.32) Chondrocalcinosis, unspecified, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.33) Chondrocalcinosis, unspecified, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.33) Chondrocalcinosis, unspecified, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.33''', NULL, + '(712.33) Chondrocalcinosis, unspecified, forearm', '(712.33) Chondrocalcinosis, unspecified, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.34) Chondrocalcinosis, unspecified, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.34) Chondrocalcinosis, unspecified, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.34''', NULL, + '(712.34) Chondrocalcinosis, unspecified, hand', '(712.34) Chondrocalcinosis, unspecified, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.35) Chondrocalcinosis, unspecified, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.35) Chondrocalcinosis, unspecified, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.35''', NULL, + '(712.35) Chondrocalcinosis, unspecified, pelvic region and thigh', '(712.35) Chondrocalcinosis, unspecified, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.36) Chondrocalcinosis, unspecified, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.36) Chondrocalcinosis, unspecified, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.36''', NULL, + '(712.36) Chondrocalcinosis, unspecified, lower leg', '(712.36) Chondrocalcinosis, unspecified, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.37) Chondrocalcinosis, unspecified, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.37) Chondrocalcinosis, unspecified, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.37''', NULL, + '(712.37) Chondrocalcinosis, unspecified, ankle and foot', '(712.37) Chondrocalcinosis, unspecified, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.38) Chondrocalcinosis, unspecified, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.38) Chondrocalcinosis, unspecified, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.38''', NULL, + '(712.38) Chondrocalcinosis, unspecified, other specified sites', '(712.38) Chondrocalcinosis, unspecified, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.39) Chondrocalcinosis, unspecified, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.39) Chondrocalcinosis, unspecified, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.39''', NULL, + '(712.39) Chondrocalcinosis, unspecified, multiple sites', '(712.39) Chondrocalcinosis, unspecified, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.8''', NULL, + 'Other specified crystal arthropathies (712.8)', 'Other specified crystal arthropathies (712.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.80) Other specified crystal arthropathies, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.80) Other specified crystal arthropathies, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.80''', NULL, + '(712.80) Other specified crystal arthropathies, site unspecified', '(712.80) Other specified crystal arthropathies, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.81) Other specified crystal arthropathies, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.81) Other specified crystal arthropathies, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.81''', NULL, + '(712.81) Other specified crystal arthropathies, shoulder region', '(712.81) Other specified crystal arthropathies, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.82) Other specified crystal arthropathies, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.82) Other specified crystal arthropathies, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.82''', NULL, + '(712.82) Other specified crystal arthropathies, upper arm', '(712.82) Other specified crystal arthropathies, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.83) Other specified crystal arthropathies, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.83) Other specified crystal arthropathies, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.83''', NULL, + '(712.83) Other specified crystal arthropathies, forearm', '(712.83) Other specified crystal arthropathies, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.84) Other specified crystal arthropathies, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.84) Other specified crystal arthropathies, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.84''', NULL, + '(712.84) Other specified crystal arthropathies, hand', '(712.84) Other specified crystal arthropathies, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.85) Other specified crystal arthropathies, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.85) Other specified crystal arthropathies, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.85''', NULL, + '(712.85) Other specified crystal arthropathies, pelvic region and thigh', '(712.85) Other specified crystal arthropathies, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.86) Other specified crystal arthropathies, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.86) Other specified crystal arthropathies, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.86''', NULL, + '(712.86) Other specified crystal arthropathies, lower leg', '(712.86) Other specified crystal arthropathies, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.87) Other specified crystal arthropathies, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.87) Other specified crystal arthropathies, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.87''', NULL, + '(712.87) Other specified crystal arthropathies, ankle and foot', '(712.87) Other specified crystal arthropathies, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.88) Other specified crystal arthropathies, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.88) Other specified crystal arthropathies, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.88''', NULL, + '(712.88) Other specified crystal arthropathies, other specified sites', '(712.88) Other specified crystal arthropathies, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.89) Other specified crystal arthropathies, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.89) Other specified crystal arthropathies, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.89''', NULL, + '(712.89) Other specified crystal arthropathies, multiple sites', '(712.89) Other specified crystal arthropathies, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.9''', NULL, + 'Unspecified crystal arthropathy (712.9)', 'Unspecified crystal arthropathy (712.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.90) Unspecified crystal arthropathy, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.90) Unspecified crystal arthropathy, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.90''', NULL, + '(712.90) Unspecified crystal arthropathy, site unspecified', '(712.90) Unspecified crystal arthropathy, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.91) Unspecified crystal arthropathy, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.91) Unspecified crystal arthropathy, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.91''', NULL, + '(712.91) Unspecified crystal arthropathy, shoulder region', '(712.91) Unspecified crystal arthropathy, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.92) Unspecified crystal arthropathy, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.92) Unspecified crystal arthropathy, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.92''', NULL, + '(712.92) Unspecified crystal arthropathy, upper arm', '(712.92) Unspecified crystal arthropathy, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.93) Unspecified crystal arthropathy, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.93) Unspecified crystal arthropathy, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.93''', NULL, + '(712.93) Unspecified crystal arthropathy, forearm', '(712.93) Unspecified crystal arthropathy, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.94) Unspecified crystal arthropathy, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.94) Unspecified crystal arthropathy, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.94''', NULL, + '(712.94) Unspecified crystal arthropathy, hand', '(712.94) Unspecified crystal arthropathy, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.95) Unspecified crystal arthropathy, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.95) Unspecified crystal arthropathy, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.95''', NULL, + '(712.95) Unspecified crystal arthropathy, pelvic region and thigh', '(712.95) Unspecified crystal arthropathy, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.96) Unspecified crystal arthropathy, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.96) Unspecified crystal arthropathy, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.96''', NULL, + '(712.96) Unspecified crystal arthropathy, lower leg', '(712.96) Unspecified crystal arthropathy, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.97) Unspecified crystal arthropathy, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.97) Unspecified crystal arthropathy, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.97''', NULL, + '(712.97) Unspecified crystal arthropathy, ankle and foot', '(712.97) Unspecified crystal arthropathy, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.98) Unspecified crystal arthropathy, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.98) Unspecified crystal arthropathy, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.98''', NULL, + '(712.98) Unspecified crystal arthropathy, other specified sites', '(712.98) Unspecified crystal arthropathy, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.99) Unspecified crystal arthropathy, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.99) Unspecified crystal arthropathy, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.99''', NULL, + '(712.99) Unspecified crystal arthropathy, multiple sites', '(712.99) Unspecified crystal arthropathy, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710''', NULL, + 'Diffuse diseases of connective tissue (710)', 'Diffuse diseases of connective tissue (710)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.0) Systemic lupus erythematosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.0) Systemic lupus erythematosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.0''', NULL, + '(710.0) Systemic lupus erythematosus', '(710.0) Systemic lupus erythematosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.1) Systemic sclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.1) Systemic sclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.1''', NULL, + '(710.1) Systemic sclerosis', '(710.1) Systemic sclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.2) Sicca syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.2) Sicca syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.2''', NULL, + '(710.2) Sicca syndrome', '(710.2) Sicca syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.3) Dermatomyositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.3) Dermatomyositis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.3''', NULL, + '(710.3) Dermatomyositis', '(710.3) Dermatomyositis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.4) Polymyositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.4) Polymyositis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.4''', NULL, + '(710.4) Polymyositis', '(710.4) Polymyositis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.5) Eosinophilia myalgia syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.5) Eosinophilia myalgia syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.5''', NULL, + '(710.5) Eosinophilia myalgia syndrome', '(710.5) Eosinophilia myalgia syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.8) Other specified diffuse diseases of connective tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.8) Other specified diffuse diseases of connective tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.8''', NULL, + '(710.8) Other specified diffuse diseases of connective tissue', '(710.8) Other specified diffuse diseases of connective tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.9) Unspecified diffuse connective tissue disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.9) Unspecified diffuse connective tissue disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.9''', NULL, + '(710.9) Unspecified diffuse connective tissue disease', '(710.9) Unspecified diffuse connective tissue disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717''', NULL, + 'Internal derangement of knee (717)', 'Internal derangement of knee (717)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.0) Old bucket handle tear of medial meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.0) Old bucket handle tear of medial meniscus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.0''', NULL, + '(717.0) Old bucket handle tear of medial meniscus', '(717.0) Old bucket handle tear of medial meniscus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.1) Derangement of anterior horn of medial meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.1) Derangement of anterior horn of medial meniscus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.1''', NULL, + '(717.1) Derangement of anterior horn of medial meniscus', '(717.1) Derangement of anterior horn of medial meniscus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.2) Derangement of posterior horn of medial meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.2) Derangement of posterior horn of medial meniscus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.2''', NULL, + '(717.2) Derangement of posterior horn of medial meniscus', '(717.2) Derangement of posterior horn of medial meniscus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.3) Other and unspecified derangement of medial meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.3) Other and unspecified derangement of medial meniscus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.3''', NULL, + '(717.3) Other and unspecified derangement of medial meniscus', '(717.3) Other and unspecified derangement of medial meniscus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.5) Derangement of meniscus, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.5) Derangement of meniscus, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.5''', NULL, + '(717.5) Derangement of meniscus, not elsewhere classified', '(717.5) Derangement of meniscus, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.6) Loose body in knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.6) Loose body in knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.6''', NULL, + '(717.6) Loose body in knee', '(717.6) Loose body in knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.7) Chondromalacia of patella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.7) Chondromalacia of patella\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.7''', NULL, + '(717.7) Chondromalacia of patella', '(717.7) Chondromalacia of patella', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.9) Unspecified internal derangement of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.9) Unspecified internal derangement of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.9''', NULL, + '(717.9) Unspecified internal derangement of knee', '(717.9) Unspecified internal derangement of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.4''', NULL, + 'Derangement of lateral meniscus (717.4)', 'Derangement of lateral meniscus (717.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.40) Derangement of lateral meniscus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.40) Derangement of lateral meniscus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.40''', NULL, + '(717.40) Derangement of lateral meniscus, unspecified', '(717.40) Derangement of lateral meniscus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.41) Bucket handle tear of lateral meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.41) Bucket handle tear of lateral meniscus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.41''', NULL, + '(717.41) Bucket handle tear of lateral meniscus', '(717.41) Bucket handle tear of lateral meniscus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.42) Derangement of anterior horn of lateral meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.42) Derangement of anterior horn of lateral meniscus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.42''', NULL, + '(717.42) Derangement of anterior horn of lateral meniscus', '(717.42) Derangement of anterior horn of lateral meniscus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.43) Derangement of posterior horn of lateral meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.43) Derangement of posterior horn of lateral meniscus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.43''', NULL, + '(717.43) Derangement of posterior horn of lateral meniscus', '(717.43) Derangement of posterior horn of lateral meniscus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.49) Other derangement of lateral meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.49) Other derangement of lateral meniscus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.49''', NULL, + '(717.49) Other derangement of lateral meniscus', '(717.49) Other derangement of lateral meniscus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.8''', NULL, + 'Other internal derangement of knee (717.8)', 'Other internal derangement of knee (717.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.81) Old disruption of lateral collateral ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.81) Old disruption of lateral collateral ligament\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.81''', NULL, + '(717.81) Old disruption of lateral collateral ligament', '(717.81) Old disruption of lateral collateral ligament', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.82) Old disruption of medial collateral ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.82) Old disruption of medial collateral ligament\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.82''', NULL, + '(717.82) Old disruption of medial collateral ligament', '(717.82) Old disruption of medial collateral ligament', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.83) Old disruption of anterior cruciate ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.83) Old disruption of anterior cruciate ligament\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.83''', NULL, + '(717.83) Old disruption of anterior cruciate ligament', '(717.83) Old disruption of anterior cruciate ligament', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.84) Old disruption of posterior cruciate ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.84) Old disruption of posterior cruciate ligament\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.84''', NULL, + '(717.84) Old disruption of posterior cruciate ligament', '(717.84) Old disruption of posterior cruciate ligament', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.85) Old disruption of other ligaments of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.85) Old disruption of other ligaments of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.85''', NULL, + '(717.85) Old disruption of other ligaments of knee', '(717.85) Old disruption of other ligaments of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.89) Other internal derangement of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.89) Other internal derangement of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.89''', NULL, + '(717.89) Other internal derangement of knee', '(717.89) Other internal derangement of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715''', NULL, + 'Osteoarthrosis and allied disorders (715)', 'Osteoarthrosis and allied disorders (715)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.8''', NULL, + 'Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)', 'Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\(715.80) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\(715.80) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.80''', NULL, + '(715.80) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified', '(715.80) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\(715.89) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\(715.89) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.89''', NULL, + '(715.89) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, multiple sites', '(715.89) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.0''', NULL, + 'Osteoarthrosis, generalized (715.0)', 'Osteoarthrosis, generalized (715.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.00) Osteoarthrosis, generalized, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.00) Osteoarthrosis, generalized, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.00''', NULL, + '(715.00) Osteoarthrosis, generalized, site unspecified', '(715.00) Osteoarthrosis, generalized, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.04) Osteoarthrosis, generalized, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.04) Osteoarthrosis, generalized, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.04''', NULL, + '(715.04) Osteoarthrosis, generalized, hand', '(715.04) Osteoarthrosis, generalized, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.09) Osteoarthrosis, generalized, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.09) Osteoarthrosis, generalized, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.09''', NULL, + '(715.09) Osteoarthrosis, generalized, multiple sites', '(715.09) Osteoarthrosis, generalized, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.3''', NULL, + 'Osteoarthrosis, localized, not specified whether primary or secondary (715.3)', 'Osteoarthrosis, localized, not specified whether primary or secondary (715.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.30) Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.30) Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.30''', NULL, + '(715.30) Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified', '(715.30) Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.31) Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.31) Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.31''', NULL, + '(715.31) Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region', '(715.31) Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.32) Osteoarthrosis, localized, not specified whether primary or secondary, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.32) Osteoarthrosis, localized, not specified whether primary or secondary, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.32''', NULL, + '(715.32) Osteoarthrosis, localized, not specified whether primary or secondary, upper arm', '(715.32) Osteoarthrosis, localized, not specified whether primary or secondary, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.33) Osteoarthrosis, localized, not specified whether primary or secondary, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.33) Osteoarthrosis, localized, not specified whether primary or secondary, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.33''', NULL, + '(715.33) Osteoarthrosis, localized, not specified whether primary or secondary, forearm', '(715.33) Osteoarthrosis, localized, not specified whether primary or secondary, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.34) Osteoarthrosis, localized, not specified whether primary or secondary, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.34) Osteoarthrosis, localized, not specified whether primary or secondary, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.34''', NULL, + '(715.34) Osteoarthrosis, localized, not specified whether primary or secondary, hand', '(715.34) Osteoarthrosis, localized, not specified whether primary or secondary, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.35) Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.35) Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.35''', NULL, + '(715.35) Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh', '(715.35) Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.36) Osteoarthrosis, localized, not specified whether primary or secondary, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.36) Osteoarthrosis, localized, not specified whether primary or secondary, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.36''', NULL, + '(715.36) Osteoarthrosis, localized, not specified whether primary or secondary, lower leg', '(715.36) Osteoarthrosis, localized, not specified whether primary or secondary, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.37) Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.37) Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.37''', NULL, + '(715.37) Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot', '(715.37) Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.38) Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.38) Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.38''', NULL, + '(715.38) Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites', '(715.38) Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.1''', NULL, + 'Osteoarthrosis, localized, primary (715.1)', 'Osteoarthrosis, localized, primary (715.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.10) Osteoarthrosis, localized, primary, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.10) Osteoarthrosis, localized, primary, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.10''', NULL, + '(715.10) Osteoarthrosis, localized, primary, site unspecified', '(715.10) Osteoarthrosis, localized, primary, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.11) Osteoarthrosis, localized, primary, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.11) Osteoarthrosis, localized, primary, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.11''', NULL, + '(715.11) Osteoarthrosis, localized, primary, shoulder region', '(715.11) Osteoarthrosis, localized, primary, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.12) Osteoarthrosis, localized, primary, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.12) Osteoarthrosis, localized, primary, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.12''', NULL, + '(715.12) Osteoarthrosis, localized, primary, upper arm', '(715.12) Osteoarthrosis, localized, primary, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.13) Osteoarthrosis, localized, primary, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.13) Osteoarthrosis, localized, primary, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.13''', NULL, + '(715.13) Osteoarthrosis, localized, primary, forearm', '(715.13) Osteoarthrosis, localized, primary, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.14) Osteoarthrosis, localized, primary, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.14) Osteoarthrosis, localized, primary, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.14''', NULL, + '(715.14) Osteoarthrosis, localized, primary, hand', '(715.14) Osteoarthrosis, localized, primary, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.15) Osteoarthrosis, localized, primary, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.15) Osteoarthrosis, localized, primary, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.15''', NULL, + '(715.15) Osteoarthrosis, localized, primary, pelvic region and thigh', '(715.15) Osteoarthrosis, localized, primary, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.16) Osteoarthrosis, localized, primary, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.16) Osteoarthrosis, localized, primary, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.16''', NULL, + '(715.16) Osteoarthrosis, localized, primary, lower leg', '(715.16) Osteoarthrosis, localized, primary, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.17) Osteoarthrosis, localized, primary, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.17) Osteoarthrosis, localized, primary, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.17''', NULL, + '(715.17) Osteoarthrosis, localized, primary, ankle and foot', '(715.17) Osteoarthrosis, localized, primary, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.18) Osteoarthrosis, localized, primary, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.18) Osteoarthrosis, localized, primary, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.18''', NULL, + '(715.18) Osteoarthrosis, localized, primary, other specified sites', '(715.18) Osteoarthrosis, localized, primary, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.2''', NULL, + 'Osteoarthrosis, localized, secondary (715.2)', 'Osteoarthrosis, localized, secondary (715.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.20) Osteoarthrosis, localized, secondary, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.20) Osteoarthrosis, localized, secondary, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.20''', NULL, + '(715.20) Osteoarthrosis, localized, secondary, site unspecified', '(715.20) Osteoarthrosis, localized, secondary, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.21) Osteoarthrosis, localized, secondary, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.21) Osteoarthrosis, localized, secondary, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.21''', NULL, + '(715.21) Osteoarthrosis, localized, secondary, shoulder region', '(715.21) Osteoarthrosis, localized, secondary, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.22) Osteoarthrosis, localized, secondary, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.22) Osteoarthrosis, localized, secondary, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.22''', NULL, + '(715.22) Osteoarthrosis, localized, secondary, upper arm', '(715.22) Osteoarthrosis, localized, secondary, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.23) Osteoarthrosis, localized, secondary, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.23) Osteoarthrosis, localized, secondary, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.23''', NULL, + '(715.23) Osteoarthrosis, localized, secondary, forearm', '(715.23) Osteoarthrosis, localized, secondary, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.24) Osteoarthrosis, localized, secondary, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.24) Osteoarthrosis, localized, secondary, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.24''', NULL, + '(715.24) Osteoarthrosis, localized, secondary, hand', '(715.24) Osteoarthrosis, localized, secondary, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.25) Osteoarthrosis, localized, secondary, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.25) Osteoarthrosis, localized, secondary, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.25''', NULL, + '(715.25) Osteoarthrosis, localized, secondary, pelvic region and thigh', '(715.25) Osteoarthrosis, localized, secondary, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.26) Osteoarthrosis, localized, secondary, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.26) Osteoarthrosis, localized, secondary, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.26''', NULL, + '(715.26) Osteoarthrosis, localized, secondary, lower leg', '(715.26) Osteoarthrosis, localized, secondary, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.27) Osteoarthrosis, localized, secondary, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.27) Osteoarthrosis, localized, secondary, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.27''', NULL, + '(715.27) Osteoarthrosis, localized, secondary, ankle and foot', '(715.27) Osteoarthrosis, localized, secondary, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.28) Osteoarthrosis, localized, secondary, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.28) Osteoarthrosis, localized, secondary, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.28''', NULL, + '(715.28) Osteoarthrosis, localized, secondary, other specified sites', '(715.28) Osteoarthrosis, localized, secondary, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.9''', NULL, + 'Osteoarthrosis, unspecified whether generalized or localized (715.9)', 'Osteoarthrosis, unspecified whether generalized or localized (715.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.90) Osteoarthrosis, unspecified whether generalized or localized, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.90) Osteoarthrosis, unspecified whether generalized or localized, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.90''', NULL, + '(715.90) Osteoarthrosis, unspecified whether generalized or localized, site unspecified', '(715.90) Osteoarthrosis, unspecified whether generalized or localized, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.91) Osteoarthrosis, unspecified whether generalized or localized, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.91) Osteoarthrosis, unspecified whether generalized or localized, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.91''', NULL, + '(715.91) Osteoarthrosis, unspecified whether generalized or localized, shoulder region', '(715.91) Osteoarthrosis, unspecified whether generalized or localized, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.92) Osteoarthrosis, unspecified whether generalized or localized, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.92) Osteoarthrosis, unspecified whether generalized or localized, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.92''', NULL, + '(715.92) Osteoarthrosis, unspecified whether generalized or localized, upper arm', '(715.92) Osteoarthrosis, unspecified whether generalized or localized, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.93) Osteoarthrosis, unspecified whether generalized or localized, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.93) Osteoarthrosis, unspecified whether generalized or localized, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.93''', NULL, + '(715.93) Osteoarthrosis, unspecified whether generalized or localized, forearm', '(715.93) Osteoarthrosis, unspecified whether generalized or localized, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.94) Osteoarthrosis, unspecified whether generalized or localized, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.94) Osteoarthrosis, unspecified whether generalized or localized, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.94''', NULL, + '(715.94) Osteoarthrosis, unspecified whether generalized or localized, hand', '(715.94) Osteoarthrosis, unspecified whether generalized or localized, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.95) Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.95) Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.95''', NULL, + '(715.95) Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh', '(715.95) Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.96) Osteoarthrosis, unspecified whether generalized or localized, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.96) Osteoarthrosis, unspecified whether generalized or localized, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.96''', NULL, + '(715.96) Osteoarthrosis, unspecified whether generalized or localized, lower leg', '(715.96) Osteoarthrosis, unspecified whether generalized or localized, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.97) Osteoarthrosis, unspecified whether generalized or localized, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.97) Osteoarthrosis, unspecified whether generalized or localized, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.97''', NULL, + '(715.97) Osteoarthrosis, unspecified whether generalized or localized, ankle and foot', '(715.97) Osteoarthrosis, unspecified whether generalized or localized, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.98) Osteoarthrosis, unspecified whether generalized or localized, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.98) Osteoarthrosis, unspecified whether generalized or localized, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.98''', NULL, + '(715.98) Osteoarthrosis, unspecified whether generalized or localized, other specified sites', '(715.98) Osteoarthrosis, unspecified whether generalized or localized, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716''', NULL, + 'Other and unspecified arthropathies (716)', 'Other and unspecified arthropathies (716)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.2''', NULL, + 'Allergic arthritis (716.2)', 'Allergic arthritis (716.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.20) Allergic arthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.20) Allergic arthritis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.20''', NULL, + '(716.20) Allergic arthritis, site unspecified', '(716.20) Allergic arthritis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.21) Allergic arthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.21) Allergic arthritis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.21''', NULL, + '(716.21) Allergic arthritis, shoulder region', '(716.21) Allergic arthritis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.22) Allergic arthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.22) Allergic arthritis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.22''', NULL, + '(716.22) Allergic arthritis, upper arm', '(716.22) Allergic arthritis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.23) Allergic arthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.23) Allergic arthritis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.23''', NULL, + '(716.23) Allergic arthritis, forearm', '(716.23) Allergic arthritis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.24) Allergic arthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.24) Allergic arthritis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.24''', NULL, + '(716.24) Allergic arthritis, hand', '(716.24) Allergic arthritis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.25) Allergic arthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.25) Allergic arthritis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.25''', NULL, + '(716.25) Allergic arthritis, pelvic region and thigh', '(716.25) Allergic arthritis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.26) Allergic arthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.26) Allergic arthritis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.26''', NULL, + '(716.26) Allergic arthritis, lower leg', '(716.26) Allergic arthritis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.27) Allergic arthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.27) Allergic arthritis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.27''', NULL, + '(716.27) Allergic arthritis, ankle and foot', '(716.27) Allergic arthritis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.28) Allergic arthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.28) Allergic arthritis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.28''', NULL, + '(716.28) Allergic arthritis, other specified sites', '(716.28) Allergic arthritis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.29) Allergic arthritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.29) Allergic arthritis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.29''', NULL, + '(716.29) Allergic arthritis, multiple sites', '(716.29) Allergic arthritis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.9''', NULL, + 'Arthropathy, unspecified (716.9)', 'Arthropathy, unspecified (716.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.90) Arthropathy, unspecified, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.90) Arthropathy, unspecified, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.90''', NULL, + '(716.90) Arthropathy, unspecified, site unspecified', '(716.90) Arthropathy, unspecified, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.91) Arthropathy, unspecified, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.91) Arthropathy, unspecified, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.91''', NULL, + '(716.91) Arthropathy, unspecified, shoulder region', '(716.91) Arthropathy, unspecified, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.92) Arthropathy, unspecified, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.92) Arthropathy, unspecified, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.92''', NULL, + '(716.92) Arthropathy, unspecified, upper arm', '(716.92) Arthropathy, unspecified, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.93) Arthropathy, unspecified, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.93) Arthropathy, unspecified, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.93''', NULL, + '(716.93) Arthropathy, unspecified, forearm', '(716.93) Arthropathy, unspecified, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.94) Arthropathy, unspecified, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.94) Arthropathy, unspecified, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.94''', NULL, + '(716.94) Arthropathy, unspecified, hand', '(716.94) Arthropathy, unspecified, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.95) Arthropathy, unspecified, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.95) Arthropathy, unspecified, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.95''', NULL, + '(716.95) Arthropathy, unspecified, pelvic region and thigh', '(716.95) Arthropathy, unspecified, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.96) Arthropathy, unspecified, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.96) Arthropathy, unspecified, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.96''', NULL, + '(716.96) Arthropathy, unspecified, lower leg', '(716.96) Arthropathy, unspecified, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.97) Arthropathy, unspecified, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.97) Arthropathy, unspecified, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.97''', NULL, + '(716.97) Arthropathy, unspecified, ankle and foot', '(716.97) Arthropathy, unspecified, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.98) Arthropathy, unspecified, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.98) Arthropathy, unspecified, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.98''', NULL, + '(716.98) Arthropathy, unspecified, other specified sites', '(716.98) Arthropathy, unspecified, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.99) Arthropathy, unspecified, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.99) Arthropathy, unspecified, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.99''', NULL, + '(716.99) Arthropathy, unspecified, multiple sites', '(716.99) Arthropathy, unspecified, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.3''', NULL, + 'Climacteric arthritis (716.3)', 'Climacteric arthritis (716.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.30) Climacteric arthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.30) Climacteric arthritis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.30''', NULL, + '(716.30) Climacteric arthritis, site unspecified', '(716.30) Climacteric arthritis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.31) Climacteric arthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.31) Climacteric arthritis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.31''', NULL, + '(716.31) Climacteric arthritis, shoulder region', '(716.31) Climacteric arthritis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.32) Climacteric arthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.32) Climacteric arthritis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.32''', NULL, + '(716.32) Climacteric arthritis, upper arm', '(716.32) Climacteric arthritis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.33) Climacteric arthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.33) Climacteric arthritis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.33''', NULL, + '(716.33) Climacteric arthritis, forearm', '(716.33) Climacteric arthritis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.34) Climacteric arthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.34) Climacteric arthritis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.34''', NULL, + '(716.34) Climacteric arthritis, hand', '(716.34) Climacteric arthritis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.35) Climacteric arthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.35) Climacteric arthritis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.35''', NULL, + '(716.35) Climacteric arthritis, pelvic region and thigh', '(716.35) Climacteric arthritis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.36) Climacteric arthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.36) Climacteric arthritis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.36''', NULL, + '(716.36) Climacteric arthritis, lower leg', '(716.36) Climacteric arthritis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.37) Climacteric arthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.37) Climacteric arthritis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.37''', NULL, + '(716.37) Climacteric arthritis, ankle and foot', '(716.37) Climacteric arthritis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.38) Climacteric arthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.38) Climacteric arthritis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.38''', NULL, + '(716.38) Climacteric arthritis, other specified sites', '(716.38) Climacteric arthritis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.39) Climacteric arthritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.39) Climacteric arthritis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.39''', NULL, + '(716.39) Climacteric arthritis, multiple sites', '(716.39) Climacteric arthritis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.0''', NULL, + 'Kaschin-Beck disease (716.0)', 'Kaschin-Beck disease (716.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.00) Kaschin-Beck disease, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.00) Kaschin-Beck disease, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.00''', NULL, + '(716.00) Kaschin-Beck disease, site unspecified', '(716.00) Kaschin-Beck disease, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.01) Kaschin-Beck disease, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.01) Kaschin-Beck disease, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.01''', NULL, + '(716.01) Kaschin-Beck disease, shoulder region', '(716.01) Kaschin-Beck disease, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.02) Kaschin-Beck disease, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.02) Kaschin-Beck disease, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.02''', NULL, + '(716.02) Kaschin-Beck disease, upper arm', '(716.02) Kaschin-Beck disease, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.03) Kaschin-Beck disease, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.03) Kaschin-Beck disease, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.03''', NULL, + '(716.03) Kaschin-Beck disease, forearm', '(716.03) Kaschin-Beck disease, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.04) Kaschin-Beck disease, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.04) Kaschin-Beck disease, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.04''', NULL, + '(716.04) Kaschin-Beck disease, hand', '(716.04) Kaschin-Beck disease, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.05) Kaschin-Beck disease, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.05) Kaschin-Beck disease, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.05''', NULL, + '(716.05) Kaschin-Beck disease, pelvic region and thigh', '(716.05) Kaschin-Beck disease, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.06) Kaschin-Beck disease, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.06) Kaschin-Beck disease, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.06''', NULL, + '(716.06) Kaschin-Beck disease, lower leg', '(716.06) Kaschin-Beck disease, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.07) Kaschin-Beck disease, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.07) Kaschin-Beck disease, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.07''', NULL, + '(716.07) Kaschin-Beck disease, ankle and foot', '(716.07) Kaschin-Beck disease, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.08) Kaschin-Beck disease, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.08) Kaschin-Beck disease, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.08''', NULL, + '(716.08) Kaschin-Beck disease, other specified sites', '(716.08) Kaschin-Beck disease, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.09) Kaschin-Beck disease, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.09) Kaschin-Beck disease, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.09''', NULL, + '(716.09) Kaschin-Beck disease, multiple sites', '(716.09) Kaschin-Beck disease, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.8''', NULL, + 'Other specified arthropathy (716.8)', 'Other specified arthropathy (716.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.80) Other specified arthropathy, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.80) Other specified arthropathy, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.80''', NULL, + '(716.80) Other specified arthropathy, site unspecified', '(716.80) Other specified arthropathy, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.81) Other specified arthropathy, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.81) Other specified arthropathy, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.81''', NULL, + '(716.81) Other specified arthropathy, shoulder region', '(716.81) Other specified arthropathy, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.82) Other specified arthropathy, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.82) Other specified arthropathy, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.82''', NULL, + '(716.82) Other specified arthropathy, upper arm', '(716.82) Other specified arthropathy, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.83) Other specified arthropathy, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.83) Other specified arthropathy, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.83''', NULL, + '(716.83) Other specified arthropathy, forearm', '(716.83) Other specified arthropathy, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.84) Other specified arthropathy, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.84) Other specified arthropathy, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.84''', NULL, + '(716.84) Other specified arthropathy, hand', '(716.84) Other specified arthropathy, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.85) Other specified arthropathy, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.85) Other specified arthropathy, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.85''', NULL, + '(716.85) Other specified arthropathy, pelvic region and thigh', '(716.85) Other specified arthropathy, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.86) Other specified arthropathy, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.86) Other specified arthropathy, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.86''', NULL, + '(716.86) Other specified arthropathy, lower leg', '(716.86) Other specified arthropathy, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.87) Other specified arthropathy, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.87) Other specified arthropathy, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.87''', NULL, + '(716.87) Other specified arthropathy, ankle and foot', '(716.87) Other specified arthropathy, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.88) Other specified arthropathy, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.88) Other specified arthropathy, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.88''', NULL, + '(716.88) Other specified arthropathy, other specified sites', '(716.88) Other specified arthropathy, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.89) Other specified arthropathy, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.89) Other specified arthropathy, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.89''', NULL, + '(716.89) Other specified arthropathy, multiple sites', '(716.89) Other specified arthropathy, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.4''', NULL, + 'Transient arthropathy (716.4)', 'Transient arthropathy (716.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.40) Transient arthropathy, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.40) Transient arthropathy, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.40''', NULL, + '(716.40) Transient arthropathy, site unspecified', '(716.40) Transient arthropathy, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.41) Transient arthropathy, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.41) Transient arthropathy, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.41''', NULL, + '(716.41) Transient arthropathy, shoulder region', '(716.41) Transient arthropathy, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.42) Transient arthropathy, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.42) Transient arthropathy, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.42''', NULL, + '(716.42) Transient arthropathy, upper arm', '(716.42) Transient arthropathy, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.43) Transient arthropathy, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.43) Transient arthropathy, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.43''', NULL, + '(716.43) Transient arthropathy, forearm', '(716.43) Transient arthropathy, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.44) Transient arthropathy, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.44) Transient arthropathy, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.44''', NULL, + '(716.44) Transient arthropathy, hand', '(716.44) Transient arthropathy, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.45) Transient arthropathy, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.45) Transient arthropathy, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.45''', NULL, + '(716.45) Transient arthropathy, pelvic region and thigh', '(716.45) Transient arthropathy, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.46) Transient arthropathy, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.46) Transient arthropathy, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.46''', NULL, + '(716.46) Transient arthropathy, lower leg', '(716.46) Transient arthropathy, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.47) Transient arthropathy, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.47) Transient arthropathy, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.47''', NULL, + '(716.47) Transient arthropathy, ankle and foot', '(716.47) Transient arthropathy, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.48) Transient arthropathy, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.48) Transient arthropathy, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.48''', NULL, + '(716.48) Transient arthropathy, other specified sites', '(716.48) Transient arthropathy, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.49) Transient arthropathy, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.49) Transient arthropathy, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.49''', NULL, + '(716.49) Transient arthropathy, multiple sites', '(716.49) Transient arthropathy, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.1''', NULL, + 'Traumatic arthropathy (716.1)', 'Traumatic arthropathy (716.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.10) Traumatic arthropathy, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.10) Traumatic arthropathy, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.10''', NULL, + '(716.10) Traumatic arthropathy, site unspecified', '(716.10) Traumatic arthropathy, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.11) Traumatic arthropathy, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.11) Traumatic arthropathy, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.11''', NULL, + '(716.11) Traumatic arthropathy, shoulder region', '(716.11) Traumatic arthropathy, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.12) Traumatic arthropathy, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.12) Traumatic arthropathy, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.12''', NULL, + '(716.12) Traumatic arthropathy, upper arm', '(716.12) Traumatic arthropathy, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.13) Traumatic arthropathy, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.13) Traumatic arthropathy, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.13''', NULL, + '(716.13) Traumatic arthropathy, forearm', '(716.13) Traumatic arthropathy, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.14) Traumatic arthropathy, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.14) Traumatic arthropathy, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.14''', NULL, + '(716.14) Traumatic arthropathy, hand', '(716.14) Traumatic arthropathy, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.15) Traumatic arthropathy, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.15) Traumatic arthropathy, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.15''', NULL, + '(716.15) Traumatic arthropathy, pelvic region and thigh', '(716.15) Traumatic arthropathy, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.16) Traumatic arthropathy, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.16) Traumatic arthropathy, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.16''', NULL, + '(716.16) Traumatic arthropathy, lower leg', '(716.16) Traumatic arthropathy, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.17) Traumatic arthropathy, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.17) Traumatic arthropathy, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.17''', NULL, + '(716.17) Traumatic arthropathy, ankle and foot', '(716.17) Traumatic arthropathy, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.18) Traumatic arthropathy, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.18) Traumatic arthropathy, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.18''', NULL, + '(716.18) Traumatic arthropathy, other specified sites', '(716.18) Traumatic arthropathy, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.19) Traumatic arthropathy, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.19) Traumatic arthropathy, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.19''', NULL, + '(716.19) Traumatic arthropathy, multiple sites', '(716.19) Traumatic arthropathy, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.6''', NULL, + 'Unspecified monoarthritis (716.6)', 'Unspecified monoarthritis (716.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.60) Unspecified monoarthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.60) Unspecified monoarthritis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.60''', NULL, + '(716.60) Unspecified monoarthritis, site unspecified', '(716.60) Unspecified monoarthritis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.61) Unspecified monoarthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.61) Unspecified monoarthritis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.61''', NULL, + '(716.61) Unspecified monoarthritis, shoulder region', '(716.61) Unspecified monoarthritis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.62) Unspecified monoarthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.62) Unspecified monoarthritis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.62''', NULL, + '(716.62) Unspecified monoarthritis, upper arm', '(716.62) Unspecified monoarthritis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.63) Unspecified monoarthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.63) Unspecified monoarthritis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.63''', NULL, + '(716.63) Unspecified monoarthritis, forearm', '(716.63) Unspecified monoarthritis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.64) Unspecified monoarthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.64) Unspecified monoarthritis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.64''', NULL, + '(716.64) Unspecified monoarthritis, hand', '(716.64) Unspecified monoarthritis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.65) Unspecified monoarthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.65) Unspecified monoarthritis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.65''', NULL, + '(716.65) Unspecified monoarthritis, pelvic region and thigh', '(716.65) Unspecified monoarthritis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.66) Unspecified monoarthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.66) Unspecified monoarthritis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.66''', NULL, + '(716.66) Unspecified monoarthritis, lower leg', '(716.66) Unspecified monoarthritis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.67) Unspecified monoarthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.67) Unspecified monoarthritis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.67''', NULL, + '(716.67) Unspecified monoarthritis, ankle and foot', '(716.67) Unspecified monoarthritis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.68) Unspecified monoarthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.68) Unspecified monoarthritis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.68''', NULL, + '(716.68) Unspecified monoarthritis, other specified sites', '(716.68) Unspecified monoarthritis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.5''', NULL, + 'Unspecified polyarthropathy or polyarthritis (716.5)', 'Unspecified polyarthropathy or polyarthritis (716.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.50) Unspecified polyarthropathy or polyarthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.50) Unspecified polyarthropathy or polyarthritis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.50''', NULL, + '(716.50) Unspecified polyarthropathy or polyarthritis, site unspecified', '(716.50) Unspecified polyarthropathy or polyarthritis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.51) Unspecified polyarthropathy or polyarthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.51) Unspecified polyarthropathy or polyarthritis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.51''', NULL, + '(716.51) Unspecified polyarthropathy or polyarthritis, shoulder region', '(716.51) Unspecified polyarthropathy or polyarthritis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.52) Unspecified polyarthropathy or polyarthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.52) Unspecified polyarthropathy or polyarthritis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.52''', NULL, + '(716.52) Unspecified polyarthropathy or polyarthritis, upper arm', '(716.52) Unspecified polyarthropathy or polyarthritis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.53) Unspecified polyarthropathy or polyarthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.53) Unspecified polyarthropathy or polyarthritis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.53''', NULL, + '(716.53) Unspecified polyarthropathy or polyarthritis, forearm', '(716.53) Unspecified polyarthropathy or polyarthritis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.54) Unspecified polyarthropathy or polyarthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.54) Unspecified polyarthropathy or polyarthritis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.54''', NULL, + '(716.54) Unspecified polyarthropathy or polyarthritis, hand', '(716.54) Unspecified polyarthropathy or polyarthritis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.55) Unspecified polyarthropathy or polyarthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.55) Unspecified polyarthropathy or polyarthritis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.55''', NULL, + '(716.55) Unspecified polyarthropathy or polyarthritis, pelvic region and thigh', '(716.55) Unspecified polyarthropathy or polyarthritis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.56) Unspecified polyarthropathy or polyarthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.56) Unspecified polyarthropathy or polyarthritis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.56''', NULL, + '(716.56) Unspecified polyarthropathy or polyarthritis, lower leg', '(716.56) Unspecified polyarthropathy or polyarthritis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.57) Unspecified polyarthropathy or polyarthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.57) Unspecified polyarthropathy or polyarthritis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.57''', NULL, + '(716.57) Unspecified polyarthropathy or polyarthritis, ankle and foot', '(716.57) Unspecified polyarthropathy or polyarthritis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.58) Unspecified polyarthropathy or polyarthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.58) Unspecified polyarthropathy or polyarthritis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.58''', NULL, + '(716.58) Unspecified polyarthropathy or polyarthritis, other specified sites', '(716.58) Unspecified polyarthropathy or polyarthritis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.59) Unspecified polyarthropathy or polyarthritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.59) Unspecified polyarthropathy or polyarthritis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.59''', NULL, + '(716.59) Unspecified polyarthropathy or polyarthritis, multiple sites', '(716.59) Unspecified polyarthropathy or polyarthritis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719''', NULL, + 'Other and unspecified disorders of joint (719)', 'Other and unspecified disorders of joint (719)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\(719.7) Difficulty in walking\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\(719.7) Difficulty in walking\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.7''', NULL, + '(719.7) Difficulty in walking', '(719.7) Difficulty in walking', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.0''', NULL, + 'Effusion of joint (719.0)', 'Effusion of joint (719.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.00) Effusion of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.00) Effusion of joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.00''', NULL, + '(719.00) Effusion of joint, site unspecified', '(719.00) Effusion of joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.01) Effusion of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.01) Effusion of joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.01''', NULL, + '(719.01) Effusion of joint, shoulder region', '(719.01) Effusion of joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.02) Effusion of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.02) Effusion of joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.02''', NULL, + '(719.02) Effusion of joint, upper arm', '(719.02) Effusion of joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.03) Effusion of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.03) Effusion of joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.03''', NULL, + '(719.03) Effusion of joint, forearm', '(719.03) Effusion of joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.04) Effusion of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.04) Effusion of joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.04''', NULL, + '(719.04) Effusion of joint, hand', '(719.04) Effusion of joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.05) Effusion of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.05) Effusion of joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.05''', NULL, + '(719.05) Effusion of joint, pelvic region and thigh', '(719.05) Effusion of joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.06) Effusion of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.06) Effusion of joint, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.06''', NULL, + '(719.06) Effusion of joint, lower leg', '(719.06) Effusion of joint, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.07) Effusion of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.07) Effusion of joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.07''', NULL, + '(719.07) Effusion of joint, ankle and foot', '(719.07) Effusion of joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.08) Effusion of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.08) Effusion of joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.08''', NULL, + '(719.08) Effusion of joint, other specified sites', '(719.08) Effusion of joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.09) Effusion of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.09) Effusion of joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.09''', NULL, + '(719.09) Effusion of joint, multiple sites', '(719.09) Effusion of joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.1''', NULL, + 'Hemarthrosis (719.1)', 'Hemarthrosis (719.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.10) Hemarthrosis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.10) Hemarthrosis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.10''', NULL, + '(719.10) Hemarthrosis, site unspecified', '(719.10) Hemarthrosis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.11) Hemarthrosis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.11) Hemarthrosis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.11''', NULL, + '(719.11) Hemarthrosis, shoulder region', '(719.11) Hemarthrosis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.12) Hemarthrosis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.12) Hemarthrosis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.12''', NULL, + '(719.12) Hemarthrosis, upper arm', '(719.12) Hemarthrosis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.13) Hemarthrosis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.13) Hemarthrosis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.13''', NULL, + '(719.13) Hemarthrosis, forearm', '(719.13) Hemarthrosis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.14) Hemarthrosis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.14) Hemarthrosis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.14''', NULL, + '(719.14) Hemarthrosis, hand', '(719.14) Hemarthrosis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.15) Hemarthrosis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.15) Hemarthrosis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.15''', NULL, + '(719.15) Hemarthrosis, pelvic region and thigh', '(719.15) Hemarthrosis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.16) Hemarthrosis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.16) Hemarthrosis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.16''', NULL, + '(719.16) Hemarthrosis, lower leg', '(719.16) Hemarthrosis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.17) Hemarthrosis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.17) Hemarthrosis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.17''', NULL, + '(719.17) Hemarthrosis, ankle and foot', '(719.17) Hemarthrosis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.18) Hemarthrosis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.18) Hemarthrosis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.18''', NULL, + '(719.18) Hemarthrosis, other specified sites', '(719.18) Hemarthrosis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.19) Hemarthrosis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.19) Hemarthrosis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.19''', NULL, + '(719.19) Hemarthrosis, multiple sites', '(719.19) Hemarthrosis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.8''', NULL, + 'Other specified disorders of joint (719.8)', 'Other specified disorders of joint (719.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.80) Other specified disorders of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.80) Other specified disorders of joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.80''', NULL, + '(719.80) Other specified disorders of joint, site unspecified', '(719.80) Other specified disorders of joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.81) Other specified disorders of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.81) Other specified disorders of joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.81''', NULL, + '(719.81) Other specified disorders of joint, shoulder region', '(719.81) Other specified disorders of joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.82) Other specified disorders of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.82) Other specified disorders of joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.82''', NULL, + '(719.82) Other specified disorders of joint, upper arm', '(719.82) Other specified disorders of joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.83) Other specified disorders of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.83) Other specified disorders of joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.83''', NULL, + '(719.83) Other specified disorders of joint, forearm', '(719.83) Other specified disorders of joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.84) Other specified disorders of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.84) Other specified disorders of joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.84''', NULL, + '(719.84) Other specified disorders of joint, hand', '(719.84) Other specified disorders of joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.85) Other specified disorders of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.85) Other specified disorders of joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.85''', NULL, + '(719.85) Other specified disorders of joint, pelvic region and thigh', '(719.85) Other specified disorders of joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.86) Other specified disorders of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.86) Other specified disorders of joint, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.86''', NULL, + '(719.86) Other specified disorders of joint, lower leg', '(719.86) Other specified disorders of joint, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.87) Other specified disorders of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.87) Other specified disorders of joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.87''', NULL, + '(719.87) Other specified disorders of joint, ankle and foot', '(719.87) Other specified disorders of joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.88) Other specified disorders of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.88) Other specified disorders of joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.88''', NULL, + '(719.88) Other specified disorders of joint, other specified sites', '(719.88) Other specified disorders of joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.89) Other specified disorders of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.89) Other specified disorders of joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.89''', NULL, + '(719.89) Other specified disorders of joint, multiple sites', '(719.89) Other specified disorders of joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.6''', NULL, + 'Other symptoms referable to joint (719.6)', 'Other symptoms referable to joint (719.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.60) Other symptoms referable to joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.60) Other symptoms referable to joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.60''', NULL, + '(719.60) Other symptoms referable to joint, site unspecified', '(719.60) Other symptoms referable to joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.61) Other symptoms referable to joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.61) Other symptoms referable to joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.61''', NULL, + '(719.61) Other symptoms referable to joint, shoulder region', '(719.61) Other symptoms referable to joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.62) Other symptoms referable to joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.62) Other symptoms referable to joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.62''', NULL, + '(719.62) Other symptoms referable to joint, upper arm', '(719.62) Other symptoms referable to joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.63) Other symptoms referable to joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.63) Other symptoms referable to joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.63''', NULL, + '(719.63) Other symptoms referable to joint, forearm', '(719.63) Other symptoms referable to joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.64) Other symptoms referable to joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.64) Other symptoms referable to joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.64''', NULL, + '(719.64) Other symptoms referable to joint, hand', '(719.64) Other symptoms referable to joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.65) Other symptoms referable to joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.65) Other symptoms referable to joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.65''', NULL, + '(719.65) Other symptoms referable to joint, pelvic region and thigh', '(719.65) Other symptoms referable to joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.66) Other symptoms referable to joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.66) Other symptoms referable to joint, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.66''', NULL, + '(719.66) Other symptoms referable to joint, lower leg', '(719.66) Other symptoms referable to joint, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.67) Other symptoms referable to joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.67) Other symptoms referable to joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.67''', NULL, + '(719.67) Other symptoms referable to joint, ankle and foot', '(719.67) Other symptoms referable to joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.68) Other symptoms referable to joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.68) Other symptoms referable to joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.68''', NULL, + '(719.68) Other symptoms referable to joint, other specified sites', '(719.68) Other symptoms referable to joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.69) Other symptoms referable to joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.69) Other symptoms referable to joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.69''', NULL, + '(719.69) Other symptoms referable to joint, multiple sites', '(719.69) Other symptoms referable to joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.4''', NULL, + 'Pain in joint (719.4)', 'Pain in joint (719.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.40) Pain in joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.40) Pain in joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.40''', NULL, + '(719.40) Pain in joint, site unspecified', '(719.40) Pain in joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.41) Pain in joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.41) Pain in joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.41''', NULL, + '(719.41) Pain in joint, shoulder region', '(719.41) Pain in joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.42) Pain in joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.42) Pain in joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.42''', NULL, + '(719.42) Pain in joint, upper arm', '(719.42) Pain in joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.43) Pain in joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.43) Pain in joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.43''', NULL, + '(719.43) Pain in joint, forearm', '(719.43) Pain in joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.44) Pain in joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.44) Pain in joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.44''', NULL, + '(719.44) Pain in joint, hand', '(719.44) Pain in joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.45) Pain in joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.45) Pain in joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.45''', NULL, + '(719.45) Pain in joint, pelvic region and thigh', '(719.45) Pain in joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.46) Pain in joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.46) Pain in joint, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.46''', NULL, + '(719.46) Pain in joint, lower leg', '(719.46) Pain in joint, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.47) Pain in joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.47) Pain in joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.47''', NULL, + '(719.47) Pain in joint, ankle and foot', '(719.47) Pain in joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.48) Pain in joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.48) Pain in joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.48''', NULL, + '(719.48) Pain in joint, other specified sites', '(719.48) Pain in joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.49) Pain in joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.49) Pain in joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.49''', NULL, + '(719.49) Pain in joint, multiple sites', '(719.49) Pain in joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.3''', NULL, + 'Palindromic rheumatism (719.3)', 'Palindromic rheumatism (719.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.30) Palindromic rheumatism, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.30) Palindromic rheumatism, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.30''', NULL, + '(719.30) Palindromic rheumatism, site unspecified', '(719.30) Palindromic rheumatism, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.31) Palindromic rheumatism, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.31) Palindromic rheumatism, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.31''', NULL, + '(719.31) Palindromic rheumatism, shoulder region', '(719.31) Palindromic rheumatism, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.32) Palindromic rheumatism, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.32) Palindromic rheumatism, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.32''', NULL, + '(719.32) Palindromic rheumatism, upper arm', '(719.32) Palindromic rheumatism, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.33) Palindromic rheumatism, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.33) Palindromic rheumatism, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.33''', NULL, + '(719.33) Palindromic rheumatism, forearm', '(719.33) Palindromic rheumatism, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.34) Palindromic rheumatism, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.34) Palindromic rheumatism, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.34''', NULL, + '(719.34) Palindromic rheumatism, hand', '(719.34) Palindromic rheumatism, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.35) Palindromic rheumatism, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.35) Palindromic rheumatism, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.35''', NULL, + '(719.35) Palindromic rheumatism, pelvic region and thigh', '(719.35) Palindromic rheumatism, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.36) Palindromic rheumatism, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.36) Palindromic rheumatism, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.36''', NULL, + '(719.36) Palindromic rheumatism, lower leg', '(719.36) Palindromic rheumatism, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.37) Palindromic rheumatism, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.37) Palindromic rheumatism, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.37''', NULL, + '(719.37) Palindromic rheumatism, ankle and foot', '(719.37) Palindromic rheumatism, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.38) Palindromic rheumatism, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.38) Palindromic rheumatism, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.38''', NULL, + '(719.38) Palindromic rheumatism, other specified sites', '(719.38) Palindromic rheumatism, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.39) Palindromic rheumatism, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.39) Palindromic rheumatism, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.39''', NULL, + '(719.39) Palindromic rheumatism, multiple sites', '(719.39) Palindromic rheumatism, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.5''', NULL, + 'Stiffness of joint, not elsewhere classified (719.5)', 'Stiffness of joint, not elsewhere classified (719.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.50) Stiffness of joint, not elsewhere classified, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.50) Stiffness of joint, not elsewhere classified, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.50''', NULL, + '(719.50) Stiffness of joint, not elsewhere classified, site unspecified', '(719.50) Stiffness of joint, not elsewhere classified, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.51) Stiffness of joint, not elsewhere classified, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.51) Stiffness of joint, not elsewhere classified, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.51''', NULL, + '(719.51) Stiffness of joint, not elsewhere classified, shoulder region', '(719.51) Stiffness of joint, not elsewhere classified, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.52) Stiffness of joint, not elsewhere classified, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.52) Stiffness of joint, not elsewhere classified, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.52''', NULL, + '(719.52) Stiffness of joint, not elsewhere classified, upper arm', '(719.52) Stiffness of joint, not elsewhere classified, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.53) Stiffness of joint, not elsewhere classified, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.53) Stiffness of joint, not elsewhere classified, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.53''', NULL, + '(719.53) Stiffness of joint, not elsewhere classified, forearm', '(719.53) Stiffness of joint, not elsewhere classified, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.54) Stiffness of joint, not elsewhere classified, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.54) Stiffness of joint, not elsewhere classified, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.54''', NULL, + '(719.54) Stiffness of joint, not elsewhere classified, hand', '(719.54) Stiffness of joint, not elsewhere classified, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.55) Stiffness of joint, not elsewhere classified, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.55) Stiffness of joint, not elsewhere classified, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.55''', NULL, + '(719.55) Stiffness of joint, not elsewhere classified, pelvic region and thigh', '(719.55) Stiffness of joint, not elsewhere classified, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.56) Stiffness of joint, not elsewhere classified, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.56) Stiffness of joint, not elsewhere classified, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.56''', NULL, + '(719.56) Stiffness of joint, not elsewhere classified, lower leg', '(719.56) Stiffness of joint, not elsewhere classified, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.57) Stiffness of joint, not elsewhere classified, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.57) Stiffness of joint, not elsewhere classified, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.57''', NULL, + '(719.57) Stiffness of joint, not elsewhere classified, ankle and foot', '(719.57) Stiffness of joint, not elsewhere classified, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.58) Stiffness of joint, not elsewhere classified, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.58) Stiffness of joint, not elsewhere classified, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.58''', NULL, + '(719.58) Stiffness of joint, not elsewhere classified, other specified sites', '(719.58) Stiffness of joint, not elsewhere classified, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.59) Stiffness of joint, not elsewhere classified, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.59) Stiffness of joint, not elsewhere classified, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.59''', NULL, + '(719.59) Stiffness of joint, not elsewhere classified, multiple sites', '(719.59) Stiffness of joint, not elsewhere classified, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.9''', NULL, + 'Unspecified disorder of joint (719.9)', 'Unspecified disorder of joint (719.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.90) Unspecified disorder of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.90) Unspecified disorder of joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.90''', NULL, + '(719.90) Unspecified disorder of joint, site unspecified', '(719.90) Unspecified disorder of joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.91) Unspecified disorder of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.91) Unspecified disorder of joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.91''', NULL, + '(719.91) Unspecified disorder of joint, shoulder region', '(719.91) Unspecified disorder of joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.92) Unspecified disorder of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.92) Unspecified disorder of joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.92''', NULL, + '(719.92) Unspecified disorder of joint, upper arm', '(719.92) Unspecified disorder of joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.93) Unspecified disorder of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.93) Unspecified disorder of joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.93''', NULL, + '(719.93) Unspecified disorder of joint, forearm', '(719.93) Unspecified disorder of joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.94) Unspecified disorder of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.94) Unspecified disorder of joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.94''', NULL, + '(719.94) Unspecified disorder of joint, hand', '(719.94) Unspecified disorder of joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.95) Unspecified disorder of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.95) Unspecified disorder of joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.95''', NULL, + '(719.95) Unspecified disorder of joint, pelvic region and thigh', '(719.95) Unspecified disorder of joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.96) Unspecified disorder of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.96) Unspecified disorder of joint, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.96''', NULL, + '(719.96) Unspecified disorder of joint, lower leg', '(719.96) Unspecified disorder of joint, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.97) Unspecified disorder of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.97) Unspecified disorder of joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.97''', NULL, + '(719.97) Unspecified disorder of joint, ankle and foot', '(719.97) Unspecified disorder of joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.98) Unspecified disorder of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.98) Unspecified disorder of joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.98''', NULL, + '(719.98) Unspecified disorder of joint, other specified sites', '(719.98) Unspecified disorder of joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.99) Unspecified disorder of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.99) Unspecified disorder of joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.99''', NULL, + '(719.99) Unspecified disorder of joint, multiple sites', '(719.99) Unspecified disorder of joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.2''', NULL, + 'Villonodular synovitis (719.2)', 'Villonodular synovitis (719.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.20) Villonodular synovitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.20) Villonodular synovitis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.20''', NULL, + '(719.20) Villonodular synovitis, site unspecified', '(719.20) Villonodular synovitis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.21) Villonodular synovitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.21) Villonodular synovitis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.21''', NULL, + '(719.21) Villonodular synovitis, shoulder region', '(719.21) Villonodular synovitis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.22) Villonodular synovitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.22) Villonodular synovitis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.22''', NULL, + '(719.22) Villonodular synovitis, upper arm', '(719.22) Villonodular synovitis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.23) Villonodular synovitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.23) Villonodular synovitis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.23''', NULL, + '(719.23) Villonodular synovitis, forearm', '(719.23) Villonodular synovitis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.24) Villonodular synovitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.24) Villonodular synovitis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.24''', NULL, + '(719.24) Villonodular synovitis, hand', '(719.24) Villonodular synovitis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.25) Villonodular synovitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.25) Villonodular synovitis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.25''', NULL, + '(719.25) Villonodular synovitis, pelvic region and thigh', '(719.25) Villonodular synovitis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.26) Villonodular synovitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.26) Villonodular synovitis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.26''', NULL, + '(719.26) Villonodular synovitis, lower leg', '(719.26) Villonodular synovitis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.27) Villonodular synovitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.27) Villonodular synovitis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.27''', NULL, + '(719.27) Villonodular synovitis, ankle and foot', '(719.27) Villonodular synovitis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.28) Villonodular synovitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.28) Villonodular synovitis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.28''', NULL, + '(719.28) Villonodular synovitis, other specified sites', '(719.28) Villonodular synovitis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.29) Villonodular synovitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.29) Villonodular synovitis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.29''', NULL, + '(719.29) Villonodular synovitis, multiple sites', '(719.29) Villonodular synovitis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718''', NULL, + 'Other derangement of joint (718)', 'Other derangement of joint (718)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.5''', NULL, + 'Ankylosis of joint (718.5)', 'Ankylosis of joint (718.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.50) Ankylosis of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.50) Ankylosis of joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.50''', NULL, + '(718.50) Ankylosis of joint, site unspecified', '(718.50) Ankylosis of joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.51) Ankylosis of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.51) Ankylosis of joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.51''', NULL, + '(718.51) Ankylosis of joint, shoulder region', '(718.51) Ankylosis of joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.52) Ankylosis of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.52) Ankylosis of joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.52''', NULL, + '(718.52) Ankylosis of joint, upper arm', '(718.52) Ankylosis of joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.53) Ankylosis of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.53) Ankylosis of joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.53''', NULL, + '(718.53) Ankylosis of joint, forearm', '(718.53) Ankylosis of joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.54) Ankylosis of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.54) Ankylosis of joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.54''', NULL, + '(718.54) Ankylosis of joint, hand', '(718.54) Ankylosis of joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.55) Ankylosis of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.55) Ankylosis of joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.55''', NULL, + '(718.55) Ankylosis of joint, pelvic region and thigh', '(718.55) Ankylosis of joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.56) Ankylosis of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.56) Ankylosis of joint, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.56''', NULL, + '(718.56) Ankylosis of joint, lower leg', '(718.56) Ankylosis of joint, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.57) Ankylosis of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.57) Ankylosis of joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.57''', NULL, + '(718.57) Ankylosis of joint, ankle and foot', '(718.57) Ankylosis of joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.58) Ankylosis of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.58) Ankylosis of joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.58''', NULL, + '(718.58) Ankylosis of joint, other specified sites', '(718.58) Ankylosis of joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.59) Ankylosis of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.59) Ankylosis of joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.59''', NULL, + '(718.59) Ankylosis of joint, multiple sites', '(718.59) Ankylosis of joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.0''', NULL, + 'Articular cartilage disorder (718.0)', 'Articular cartilage disorder (718.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.00) Articular cartilage disorder, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.00) Articular cartilage disorder, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.00''', NULL, + '(718.00) Articular cartilage disorder, site unspecified', '(718.00) Articular cartilage disorder, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.01) Articular cartilage disorder, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.01) Articular cartilage disorder, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.01''', NULL, + '(718.01) Articular cartilage disorder, shoulder region', '(718.01) Articular cartilage disorder, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.02) Articular cartilage disorder, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.02) Articular cartilage disorder, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.02''', NULL, + '(718.02) Articular cartilage disorder, upper arm', '(718.02) Articular cartilage disorder, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.03) Articular cartilage disorder, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.03) Articular cartilage disorder, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.03''', NULL, + '(718.03) Articular cartilage disorder, forearm', '(718.03) Articular cartilage disorder, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.04) Articular cartilage disorder, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.04) Articular cartilage disorder, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.04''', NULL, + '(718.04) Articular cartilage disorder, hand', '(718.04) Articular cartilage disorder, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.05) Articular cartilage disorder, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.05) Articular cartilage disorder, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.05''', NULL, + '(718.05) Articular cartilage disorder, pelvic region and thigh', '(718.05) Articular cartilage disorder, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.07) Articular cartilage disorder, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.07) Articular cartilage disorder, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.07''', NULL, + '(718.07) Articular cartilage disorder, ankle and foot', '(718.07) Articular cartilage disorder, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.08) Articular cartilage disorder, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.08) Articular cartilage disorder, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.08''', NULL, + '(718.08) Articular cartilage disorder, other specified sites', '(718.08) Articular cartilage disorder, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.09) Articular cartilage disorder, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.09) Articular cartilage disorder, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.09''', NULL, + '(718.09) Articular cartilage disorder, multiple sites', '(718.09) Articular cartilage disorder, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.4''', NULL, + 'Contracture of joint (718.4)', 'Contracture of joint (718.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.40) Contracture of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.40) Contracture of joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.40''', NULL, + '(718.40) Contracture of joint, site unspecified', '(718.40) Contracture of joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.41) Contracture of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.41) Contracture of joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.41''', NULL, + '(718.41) Contracture of joint, shoulder region', '(718.41) Contracture of joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.42) Contracture of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.42) Contracture of joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.42''', NULL, + '(718.42) Contracture of joint, upper arm', '(718.42) Contracture of joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.43) Contracture of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.43) Contracture of joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.43''', NULL, + '(718.43) Contracture of joint, forearm', '(718.43) Contracture of joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.44) Contracture of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.44) Contracture of joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.44''', NULL, + '(718.44) Contracture of joint, hand', '(718.44) Contracture of joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.45) Contracture of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.45) Contracture of joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.45''', NULL, + '(718.45) Contracture of joint, pelvic region and thigh', '(718.45) Contracture of joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.46) Contracture of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.46) Contracture of joint, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.46''', NULL, + '(718.46) Contracture of joint, lower leg', '(718.46) Contracture of joint, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.47) Contracture of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.47) Contracture of joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.47''', NULL, + '(718.47) Contracture of joint, ankle and foot', '(718.47) Contracture of joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.48) Contracture of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.48) Contracture of joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.48''', NULL, + '(718.48) Contracture of joint, other specified sites', '(718.48) Contracture of joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.49) Contracture of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.49) Contracture of joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.49''', NULL, + '(718.49) Contracture of joint, multiple sites', '(718.49) Contracture of joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.7''', NULL, + 'Developmental dislocation of joint (718.7)', 'Developmental dislocation of joint (718.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.70) Developmental dislocation of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.70) Developmental dislocation of joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.70''', NULL, + '(718.70) Developmental dislocation of joint, site unspecified', '(718.70) Developmental dislocation of joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.71) Developmental dislocation of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.71) Developmental dislocation of joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.71''', NULL, + '(718.71) Developmental dislocation of joint, shoulder region', '(718.71) Developmental dislocation of joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.72) Developmental dislocation of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.72) Developmental dislocation of joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.72''', NULL, + '(718.72) Developmental dislocation of joint, upper arm', '(718.72) Developmental dislocation of joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.73) Developmental dislocation of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.73) Developmental dislocation of joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.73''', NULL, + '(718.73) Developmental dislocation of joint, forearm', '(718.73) Developmental dislocation of joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.74) Developmental dislocation of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.74) Developmental dislocation of joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.74''', NULL, + '(718.74) Developmental dislocation of joint, hand', '(718.74) Developmental dislocation of joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.75) Developmental dislocation of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.75) Developmental dislocation of joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.75''', NULL, + '(718.75) Developmental dislocation of joint, pelvic region and thigh', '(718.75) Developmental dislocation of joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.76) Developmental dislocation of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.76) Developmental dislocation of joint, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.76''', NULL, + '(718.76) Developmental dislocation of joint, lower leg', '(718.76) Developmental dislocation of joint, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.77) Developmental dislocation of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.77) Developmental dislocation of joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.77''', NULL, + '(718.77) Developmental dislocation of joint, ankle and foot', '(718.77) Developmental dislocation of joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.78) Developmental dislocation of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.78) Developmental dislocation of joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.78''', NULL, + '(718.78) Developmental dislocation of joint, other specified sites', '(718.78) Developmental dislocation of joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.79) Developmental dislocation of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.79) Developmental dislocation of joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.79''', NULL, + '(718.79) Developmental dislocation of joint, multiple sites', '(718.79) Developmental dislocation of joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.1''', NULL, + 'Loose body in joint (718.1)', 'Loose body in joint (718.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.10) Loose body in joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.10) Loose body in joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.10''', NULL, + '(718.10) Loose body in joint, site unspecified', '(718.10) Loose body in joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.11) Loose body in joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.11) Loose body in joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.11''', NULL, + '(718.11) Loose body in joint, shoulder region', '(718.11) Loose body in joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.12) Loose body in joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.12) Loose body in joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.12''', NULL, + '(718.12) Loose body in joint, upper arm', '(718.12) Loose body in joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.13) Loose body in joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.13) Loose body in joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.13''', NULL, + '(718.13) Loose body in joint, forearm', '(718.13) Loose body in joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.14) Loose body in joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.14) Loose body in joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.14''', NULL, + '(718.14) Loose body in joint, hand', '(718.14) Loose body in joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.15) Loose body in joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.15) Loose body in joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.15''', NULL, + '(718.15) Loose body in joint, pelvic region and thigh', '(718.15) Loose body in joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.17) Loose body in joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.17) Loose body in joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.17''', NULL, + '(718.17) Loose body in joint, ankle and foot', '(718.17) Loose body in joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.18) Loose body in joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.18) Loose body in joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.18''', NULL, + '(718.18) Loose body in joint, other specified sites', '(718.18) Loose body in joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.19) Loose body in joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.19) Loose body in joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.19''', NULL, + '(718.19) Loose body in joint, multiple sites', '(718.19) Loose body in joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.8''', NULL, + 'Other joint derangement, not elsewhere classified (718.8)', 'Other joint derangement, not elsewhere classified (718.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.80) Other joint derangement, not elsewhere classified, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.80) Other joint derangement, not elsewhere classified, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.80''', NULL, + '(718.80) Other joint derangement, not elsewhere classified, site unspecified', '(718.80) Other joint derangement, not elsewhere classified, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.81) Other joint derangement, not elsewhere classified, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.81) Other joint derangement, not elsewhere classified, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.81''', NULL, + '(718.81) Other joint derangement, not elsewhere classified, shoulder region', '(718.81) Other joint derangement, not elsewhere classified, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.82) Other joint derangement, not elsewhere classified, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.82) Other joint derangement, not elsewhere classified, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.82''', NULL, + '(718.82) Other joint derangement, not elsewhere classified, upper arm', '(718.82) Other joint derangement, not elsewhere classified, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.83) Other joint derangement, not elsewhere classified, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.83) Other joint derangement, not elsewhere classified, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.83''', NULL, + '(718.83) Other joint derangement, not elsewhere classified, forearm', '(718.83) Other joint derangement, not elsewhere classified, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.84) Other joint derangement, not elsewhere classified, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.84) Other joint derangement, not elsewhere classified, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.84''', NULL, + '(718.84) Other joint derangement, not elsewhere classified, hand', '(718.84) Other joint derangement, not elsewhere classified, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.85) Other joint derangement, not elsewhere classified, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.85) Other joint derangement, not elsewhere classified, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.85''', NULL, + '(718.85) Other joint derangement, not elsewhere classified, pelvic region and thigh', '(718.85) Other joint derangement, not elsewhere classified, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.86) Other joint derangement, not elsewhere classified, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.86) Other joint derangement, not elsewhere classified, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.86''', NULL, + '(718.86) Other joint derangement, not elsewhere classified, lower leg', '(718.86) Other joint derangement, not elsewhere classified, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.87) Other joint derangement, not elsewhere classified, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.87) Other joint derangement, not elsewhere classified, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.87''', NULL, + '(718.87) Other joint derangement, not elsewhere classified, ankle and foot', '(718.87) Other joint derangement, not elsewhere classified, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.88) Other joint derangement, not elsewhere classified, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.88) Other joint derangement, not elsewhere classified, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.88''', NULL, + '(718.88) Other joint derangement, not elsewhere classified, other specified sites', '(718.88) Other joint derangement, not elsewhere classified, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.89) Other joint derangement, not elsewhere classified, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.89) Other joint derangement, not elsewhere classified, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.89''', NULL, + '(718.89) Other joint derangement, not elsewhere classified, multiple sites', '(718.89) Other joint derangement, not elsewhere classified, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.2''', NULL, + 'Pathological dislocation (718.2)', 'Pathological dislocation (718.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.20) Pathological dislocation of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.20) Pathological dislocation of joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.20''', NULL, + '(718.20) Pathological dislocation of joint, site unspecified', '(718.20) Pathological dislocation of joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.21) Pathological dislocation of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.21) Pathological dislocation of joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.21''', NULL, + '(718.21) Pathological dislocation of joint, shoulder region', '(718.21) Pathological dislocation of joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.22) Pathological dislocation of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.22) Pathological dislocation of joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.22''', NULL, + '(718.22) Pathological dislocation of joint, upper arm', '(718.22) Pathological dislocation of joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.23) Pathological dislocation of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.23) Pathological dislocation of joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.23''', NULL, + '(718.23) Pathological dislocation of joint, forearm', '(718.23) Pathological dislocation of joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.24) Pathological dislocation of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.24) Pathological dislocation of joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.24''', NULL, + '(718.24) Pathological dislocation of joint, hand', '(718.24) Pathological dislocation of joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.25) Pathological dislocation of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.25) Pathological dislocation of joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.25''', NULL, + '(718.25) Pathological dislocation of joint, pelvic region and thigh', '(718.25) Pathological dislocation of joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.26) Pathological dislocation of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.26) Pathological dislocation of joint, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.26''', NULL, + '(718.26) Pathological dislocation of joint, lower leg', '(718.26) Pathological dislocation of joint, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.27) Pathological dislocation of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.27) Pathological dislocation of joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.27''', NULL, + '(718.27) Pathological dislocation of joint, ankle and foot', '(718.27) Pathological dislocation of joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.28) Pathological dislocation of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.28) Pathological dislocation of joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.28''', NULL, + '(718.28) Pathological dislocation of joint, other specified sites', '(718.28) Pathological dislocation of joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.29) Pathological dislocation of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.29) Pathological dislocation of joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.29''', NULL, + '(718.29) Pathological dislocation of joint, multiple sites', '(718.29) Pathological dislocation of joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.3''', NULL, + 'Recurrent dislocation of joint (718.3)', 'Recurrent dislocation of joint (718.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.30) Recurrent dislocation of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.30) Recurrent dislocation of joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.30''', NULL, + '(718.30) Recurrent dislocation of joint, site unspecified', '(718.30) Recurrent dislocation of joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.31) Recurrent dislocation of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.31) Recurrent dislocation of joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.31''', NULL, + '(718.31) Recurrent dislocation of joint, shoulder region', '(718.31) Recurrent dislocation of joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.32) Recurrent dislocation of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.32) Recurrent dislocation of joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.32''', NULL, + '(718.32) Recurrent dislocation of joint, upper arm', '(718.32) Recurrent dislocation of joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.33) Recurrent dislocation of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.33) Recurrent dislocation of joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.33''', NULL, + '(718.33) Recurrent dislocation of joint, forearm', '(718.33) Recurrent dislocation of joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.34) Recurrent dislocation of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.34) Recurrent dislocation of joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.34''', NULL, + '(718.34) Recurrent dislocation of joint, hand', '(718.34) Recurrent dislocation of joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.35) Recurrent dislocation of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.35) Recurrent dislocation of joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.35''', NULL, + '(718.35) Recurrent dislocation of joint, pelvic region and thigh', '(718.35) Recurrent dislocation of joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.36) Recurrent dislocation of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.36) Recurrent dislocation of joint, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.36''', NULL, + '(718.36) Recurrent dislocation of joint, lower leg', '(718.36) Recurrent dislocation of joint, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.37) Recurrent dislocation of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.37) Recurrent dislocation of joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.37''', NULL, + '(718.37) Recurrent dislocation of joint, ankle and foot', '(718.37) Recurrent dislocation of joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.38) Recurrent dislocation of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.38) Recurrent dislocation of joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.38''', NULL, + '(718.38) Recurrent dislocation of joint, other specified sites', '(718.38) Recurrent dislocation of joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.39) Recurrent dislocation of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.39) Recurrent dislocation of joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.39''', NULL, + '(718.39) Recurrent dislocation of joint, multiple sites', '(718.39) Recurrent dislocation of joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.9''', NULL, + 'Unspecified derangement of joint (718.9)', 'Unspecified derangement of joint (718.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.90) Unspecified derangement of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.90) Unspecified derangement of joint, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.90''', NULL, + '(718.90) Unspecified derangement of joint, site unspecified', '(718.90) Unspecified derangement of joint, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.91) Unspecified derangement of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.91) Unspecified derangement of joint, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.91''', NULL, + '(718.91) Unspecified derangement of joint, shoulder region', '(718.91) Unspecified derangement of joint, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.92) Unspecified derangement of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.92) Unspecified derangement of joint, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.92''', NULL, + '(718.92) Unspecified derangement of joint, upper arm', '(718.92) Unspecified derangement of joint, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.93) Unspecified derangement of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.93) Unspecified derangement of joint, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.93''', NULL, + '(718.93) Unspecified derangement of joint, forearm', '(718.93) Unspecified derangement of joint, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.94) Unspecified derangement of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.94) Unspecified derangement of joint, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.94''', NULL, + '(718.94) Unspecified derangement of joint, hand', '(718.94) Unspecified derangement of joint, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.95) Unspecified derangement of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.95) Unspecified derangement of joint, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.95''', NULL, + '(718.95) Unspecified derangement of joint, pelvic region and thigh', '(718.95) Unspecified derangement of joint, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.97) Unspecified derangement of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.97) Unspecified derangement of joint, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.97''', NULL, + '(718.97) Unspecified derangement of joint, ankle and foot', '(718.97) Unspecified derangement of joint, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.98) Unspecified derangement of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.98) Unspecified derangement of joint, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.98''', NULL, + '(718.98) Unspecified derangement of joint, other specified sites', '(718.98) Unspecified derangement of joint, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.99) Unspecified derangement of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.99) Unspecified derangement of joint, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.99''', NULL, + '(718.99) Unspecified derangement of joint, multiple sites', '(718.99) Unspecified derangement of joint, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified intrapelvic protrusion of acetabulum (718.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified intrapelvic protrusion of acetabulum (718.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.6''', NULL, + 'Unspecified intrapelvic protrusion of acetabulum (718.6)', 'Unspecified intrapelvic protrusion of acetabulum (718.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified intrapelvic protrusion of acetabulum (718.6)\(718.65) Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified intrapelvic protrusion of acetabulum (718.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified intrapelvic protrusion of acetabulum (718.6)\(718.65) Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.65''', NULL, + '(718.65) Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh', '(718.65) Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714''', NULL, + 'Rheumatoid arthritis and other inflammatory polyarthropathies (714)', 'Rheumatoid arthritis and other inflammatory polyarthropathies (714)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.0) Rheumatoid arthritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.0) Rheumatoid arthritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.0''', NULL, + '(714.0) Rheumatoid arthritis', '(714.0) Rheumatoid arthritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.1) Felty''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.1) Felty''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.1''', NULL, + '(714.1) Felty''s syndrome', '(714.1) Felty''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.2) Other rheumatoid arthritis with visceral or systemic involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.2) Other rheumatoid arthritis with visceral or systemic involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.2''', NULL, + '(714.2) Other rheumatoid arthritis with visceral or systemic involvement', '(714.2) Other rheumatoid arthritis with visceral or systemic involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.4) Chronic postrheumatic arthropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.4) Chronic postrheumatic arthropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.4''', NULL, + '(714.4) Chronic postrheumatic arthropathy', '(714.4) Chronic postrheumatic arthropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.9) Unspecified inflammatory polyarthropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.9) Unspecified inflammatory polyarthropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.9''', NULL, + '(714.9) Unspecified inflammatory polyarthropathy', '(714.9) Unspecified inflammatory polyarthropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.3''', NULL, + 'Juvenile chronic polyarthritis (714.3)', 'Juvenile chronic polyarthritis (714.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.30) Polyarticular juvenile rheumatoid arthritis, chronic or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.30) Polyarticular juvenile rheumatoid arthritis, chronic or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.30''', NULL, + '(714.30) Polyarticular juvenile rheumatoid arthritis, chronic or unspecified', '(714.30) Polyarticular juvenile rheumatoid arthritis, chronic or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.31) Polyarticular juvenile rheumatoid arthritis, acute\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.31) Polyarticular juvenile rheumatoid arthritis, acute\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.31''', NULL, + '(714.31) Polyarticular juvenile rheumatoid arthritis, acute', '(714.31) Polyarticular juvenile rheumatoid arthritis, acute', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.32) Pauciarticular juvenile rheumatoid arthritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.32) Pauciarticular juvenile rheumatoid arthritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.32''', NULL, + '(714.32) Pauciarticular juvenile rheumatoid arthritis', '(714.32) Pauciarticular juvenile rheumatoid arthritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.33) Monoarticular juvenile rheumatoid arthritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.33) Monoarticular juvenile rheumatoid arthritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.33''', NULL, + '(714.33) Monoarticular juvenile rheumatoid arthritis', '(714.33) Monoarticular juvenile rheumatoid arthritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.8''', NULL, + 'Other specified inflammatory polyarthropathies (714.8)', 'Other specified inflammatory polyarthropathies (714.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\(714.81) Rheumatoid lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\(714.81) Rheumatoid lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.81''', NULL, + '(714.81) Rheumatoid lung', '(714.81) Rheumatoid lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\(714.89) Other specified inflammatory polyarthropathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\(714.89) Other specified inflammatory polyarthropathies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.89''', NULL, + '(714.89) Other specified inflammatory polyarthropathies', '(714.89) Other specified inflammatory polyarthropathies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''720'' AND ''724.99''', NULL, + 'Dorsopathies (720-724.99)', 'Dorsopathies (720-724.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720''', NULL, + 'Ankylosing spondylitis and other inflammatory spondylopathies (720)', 'Ankylosing spondylitis and other inflammatory spondylopathies (720)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.0) Ankylosing spondylitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.0) Ankylosing spondylitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.0''', NULL, + '(720.0) Ankylosing spondylitis', '(720.0) Ankylosing spondylitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.1) Spinal enthesopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.1) Spinal enthesopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.1''', NULL, + '(720.1) Spinal enthesopathy', '(720.1) Spinal enthesopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.2) Sacroiliitis, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.2) Sacroiliitis, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.2''', NULL, + '(720.2) Sacroiliitis, not elsewhere classified', '(720.2) Sacroiliitis, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.9) Unspecified inflammatory spondylopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.9) Unspecified inflammatory spondylopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.9''', NULL, + '(720.9) Unspecified inflammatory spondylopathy', '(720.9) Unspecified inflammatory spondylopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.8''', NULL, + 'Other inflammatory spondylopathies (720.8)', 'Other inflammatory spondylopathies (720.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\(720.81) Inflammatory spondylopathies in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\(720.81) Inflammatory spondylopathies in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.81''', NULL, + '(720.81) Inflammatory spondylopathies in diseases classified elsewhere', '(720.81) Inflammatory spondylopathies in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\(720.89) Other inflammatory spondylopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\(720.89) Other inflammatory spondylopathies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.89''', NULL, + '(720.89) Other inflammatory spondylopathies', '(720.89) Other inflammatory spondylopathies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722''', NULL, + 'Intervertebral disc disorders (722)', 'Intervertebral disc disorders (722)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.0) Displacement of cervical intervertebral disc without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.0) Displacement of cervical intervertebral disc without myelopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.0''', NULL, + '(722.0) Displacement of cervical intervertebral disc without myelopathy', '(722.0) Displacement of cervical intervertebral disc without myelopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.2) Displacement of intervertebral disc, site unspecified, without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.2) Displacement of intervertebral disc, site unspecified, without myelopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.2''', NULL, + '(722.2) Displacement of intervertebral disc, site unspecified, without myelopathy', '(722.2) Displacement of intervertebral disc, site unspecified, without myelopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.4) Degeneration of cervical intervertebral disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.4) Degeneration of cervical intervertebral disc\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.4''', NULL, + '(722.4) Degeneration of cervical intervertebral disc', '(722.4) Degeneration of cervical intervertebral disc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.6) Degeneration of intervertebral disc, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.6) Degeneration of intervertebral disc, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.6''', NULL, + '(722.6) Degeneration of intervertebral disc, site unspecified', '(722.6) Degeneration of intervertebral disc, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.5''', NULL, + 'Degeneration of thoracic or lumbar intervertebral disc (722.5)', 'Degeneration of thoracic or lumbar intervertebral disc (722.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\(722.51) Degeneration of thoracic or thoracolumbar intervertebral disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\(722.51) Degeneration of thoracic or thoracolumbar intervertebral disc\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.51''', NULL, + '(722.51) Degeneration of thoracic or thoracolumbar intervertebral disc', '(722.51) Degeneration of thoracic or thoracolumbar intervertebral disc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\(722.52) Degeneration of lumbar or lumbosacral intervertebral disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\(722.52) Degeneration of lumbar or lumbosacral intervertebral disc\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.52''', NULL, + '(722.52) Degeneration of lumbar or lumbosacral intervertebral disc', '(722.52) Degeneration of lumbar or lumbosacral intervertebral disc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.1''', NULL, + 'Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)', 'Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\(722.10) Displacement of lumbar intervertebral disc without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\(722.10) Displacement of lumbar intervertebral disc without myelopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.10''', NULL, + '(722.10) Displacement of lumbar intervertebral disc without myelopathy', '(722.10) Displacement of lumbar intervertebral disc without myelopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\(722.11) Displacement of thoracic intervertebral disc without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\(722.11) Displacement of thoracic intervertebral disc without myelopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.11''', NULL, + '(722.11) Displacement of thoracic intervertebral disc without myelopathy', '(722.11) Displacement of thoracic intervertebral disc without myelopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.7''', NULL, + 'Intervertebral disc disorder with myelopathy (722.7)', 'Intervertebral disc disorder with myelopathy (722.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.70) Intervertebral disc disorder with myelopathy, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.70) Intervertebral disc disorder with myelopathy, unspecified region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.70''', NULL, + '(722.70) Intervertebral disc disorder with myelopathy, unspecified region', '(722.70) Intervertebral disc disorder with myelopathy, unspecified region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.71) Intervertebral disc disorder with myelopathy, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.71) Intervertebral disc disorder with myelopathy, cervical region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.71''', NULL, + '(722.71) Intervertebral disc disorder with myelopathy, cervical region', '(722.71) Intervertebral disc disorder with myelopathy, cervical region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.72) Intervertebral disc disorder with myelopathy, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.72) Intervertebral disc disorder with myelopathy, thoracic region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.72''', NULL, + '(722.72) Intervertebral disc disorder with myelopathy, thoracic region', '(722.72) Intervertebral disc disorder with myelopathy, thoracic region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.73) Intervertebral disc disorder with myelopathy, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.73) Intervertebral disc disorder with myelopathy, lumbar region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.73''', NULL, + '(722.73) Intervertebral disc disorder with myelopathy, lumbar region', '(722.73) Intervertebral disc disorder with myelopathy, lumbar region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.9''', NULL, + 'Other and unspecified disc disorder (722.9)', 'Other and unspecified disc disorder (722.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.90) Other and unspecified disc disorder, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.90) Other and unspecified disc disorder, unspecified region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.90''', NULL, + '(722.90) Other and unspecified disc disorder, unspecified region', '(722.90) Other and unspecified disc disorder, unspecified region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.91) Other and unspecified disc disorder, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.91) Other and unspecified disc disorder, cervical region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.91''', NULL, + '(722.91) Other and unspecified disc disorder, cervical region', '(722.91) Other and unspecified disc disorder, cervical region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.92) Other and unspecified disc disorder, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.92) Other and unspecified disc disorder, thoracic region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.92''', NULL, + '(722.92) Other and unspecified disc disorder, thoracic region', '(722.92) Other and unspecified disc disorder, thoracic region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.93) Other and unspecified disc disorder, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.93) Other and unspecified disc disorder, lumbar region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.93''', NULL, + '(722.93) Other and unspecified disc disorder, lumbar region', '(722.93) Other and unspecified disc disorder, lumbar region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.8''', NULL, + 'Postlaminectomy syndrome (722.8)', 'Postlaminectomy syndrome (722.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.80) Postlaminectomy syndrome, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.80) Postlaminectomy syndrome, unspecified region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.80''', NULL, + '(722.80) Postlaminectomy syndrome, unspecified region', '(722.80) Postlaminectomy syndrome, unspecified region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.81) Postlaminectomy syndrome, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.81) Postlaminectomy syndrome, cervical region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.81''', NULL, + '(722.81) Postlaminectomy syndrome, cervical region', '(722.81) Postlaminectomy syndrome, cervical region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.82) Postlaminectomy syndrome, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.82) Postlaminectomy syndrome, thoracic region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.82''', NULL, + '(722.82) Postlaminectomy syndrome, thoracic region', '(722.82) Postlaminectomy syndrome, thoracic region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.83) Postlaminectomy syndrome, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.83) Postlaminectomy syndrome, lumbar region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.83''', NULL, + '(722.83) Postlaminectomy syndrome, lumbar region', '(722.83) Postlaminectomy syndrome, lumbar region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.3''', NULL, + 'Schmorl''s nodes (722.3)', 'Schmorl''s nodes (722.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.30) Schmorl''s nodes, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.30) Schmorl''s nodes, unspecified region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.30''', NULL, + '(722.30) Schmorl''s nodes, unspecified region', '(722.30) Schmorl''s nodes, unspecified region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.31) Schmorl''s nodes, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.31) Schmorl''s nodes, thoracic region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.31''', NULL, + '(722.31) Schmorl''s nodes, thoracic region', '(722.31) Schmorl''s nodes, thoracic region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.32) Schmorl''s nodes, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.32) Schmorl''s nodes, lumbar region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.32''', NULL, + '(722.32) Schmorl''s nodes, lumbar region', '(722.32) Schmorl''s nodes, lumbar region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.39) Schmorl''s nodes, other region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.39) Schmorl''s nodes, other region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.39''', NULL, + '(722.39) Schmorl''s nodes, other region', '(722.39) Schmorl''s nodes, other region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724''', NULL, + 'Other and unspecified disorders of back (724)', 'Other and unspecified disorders of back (724)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.1) Pain in thoracic spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.1) Pain in thoracic spine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.1''', NULL, + '(724.1) Pain in thoracic spine', '(724.1) Pain in thoracic spine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.2) Lumbago\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.2) Lumbago\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.2''', NULL, + '(724.2) Lumbago', '(724.2) Lumbago', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.3) Sciatica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.3) Sciatica\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.3''', NULL, + '(724.3) Sciatica', '(724.3) Sciatica', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.4) Thoracic or lumbosacral neuritis or radiculitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.4) Thoracic or lumbosacral neuritis or radiculitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.4''', NULL, + '(724.4) Thoracic or lumbosacral neuritis or radiculitis, unspecified', '(724.4) Thoracic or lumbosacral neuritis or radiculitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.5) Backache, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.5) Backache, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.5''', NULL, + '(724.5) Backache, unspecified', '(724.5) Backache, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.6) Disorders of sacrum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.6) Disorders of sacrum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.6''', NULL, + '(724.6) Disorders of sacrum', '(724.6) Disorders of sacrum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.8) Other symptoms referable to back\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.8) Other symptoms referable to back\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.8''', NULL, + '(724.8) Other symptoms referable to back', '(724.8) Other symptoms referable to back', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.9) Other unspecified back disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.9) Other unspecified back disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.9''', NULL, + '(724.9) Other unspecified back disorders', '(724.9) Other unspecified back disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.7''', NULL, + 'Disorders of coccyx (724.7)', 'Disorders of coccyx (724.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.70) Unspecified disorder of coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.70) Unspecified disorder of coccyx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.70''', NULL, + '(724.70) Unspecified disorder of coccyx', '(724.70) Unspecified disorder of coccyx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.71) Hypermobility of coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.71) Hypermobility of coccyx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.71''', NULL, + '(724.71) Hypermobility of coccyx', '(724.71) Hypermobility of coccyx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.79) Other disorders of coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.79) Other disorders of coccyx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.79''', NULL, + '(724.79) Other disorders of coccyx', '(724.79) Other disorders of coccyx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.0''', NULL, + 'Spinal stenosis, other than cervical (724.0)', 'Spinal stenosis, other than cervical (724.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.00) Spinal stenosis, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.00) Spinal stenosis, unspecified region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.00''', NULL, + '(724.00) Spinal stenosis, unspecified region', '(724.00) Spinal stenosis, unspecified region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.01) Spinal stenosis, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.01) Spinal stenosis, thoracic region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.01''', NULL, + '(724.01) Spinal stenosis, thoracic region', '(724.01) Spinal stenosis, thoracic region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.02) Spinal stenosis, lumbar region, without neurogenic claudication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.02) Spinal stenosis, lumbar region, without neurogenic claudication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.02''', NULL, + '(724.02) Spinal stenosis, lumbar region, without neurogenic claudication', '(724.02) Spinal stenosis, lumbar region, without neurogenic claudication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.03) Spinal stenosis, lumbar region, with neurogenic claudication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.03) Spinal stenosis, lumbar region, with neurogenic claudication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.03''', NULL, + '(724.03) Spinal stenosis, lumbar region, with neurogenic claudication', '(724.03) Spinal stenosis, lumbar region, with neurogenic claudication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.09) Spinal stenosis, other region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.09) Spinal stenosis, other region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.09''', NULL, + '(724.09) Spinal stenosis, other region', '(724.09) Spinal stenosis, other region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723''', NULL, + 'Other disorders of cervical region (723)', 'Other disorders of cervical region (723)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.0) Spinal stenosis in cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.0) Spinal stenosis in cervical region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.0''', NULL, + '(723.0) Spinal stenosis in cervical region', '(723.0) Spinal stenosis in cervical region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.1) Cervicalgia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.1) Cervicalgia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.1''', NULL, + '(723.1) Cervicalgia', '(723.1) Cervicalgia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.2) Cervicocranial syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.2) Cervicocranial syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.2''', NULL, + '(723.2) Cervicocranial syndrome', '(723.2) Cervicocranial syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.3) Cervicobrachial syndrome (diffuse)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.3) Cervicobrachial syndrome (diffuse)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.3) Cervicobrachial syndrome (diffuse''', NULL, + '(723.3) Cervicobrachial syndrome (diffuse)', '(723.3) Cervicobrachial syndrome (diffuse)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.4) Brachial neuritis or radiculitis NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.4) Brachial neuritis or radiculitis NOS\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.4''', NULL, + '(723.4) Brachial neuritis or radiculitis NOS', '(723.4) Brachial neuritis or radiculitis NOS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.5) Torticollis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.5) Torticollis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.5''', NULL, + '(723.5) Torticollis, unspecified', '(723.5) Torticollis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.6) Panniculitis specified as affecting neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.6) Panniculitis specified as affecting neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.6''', NULL, + '(723.6) Panniculitis specified as affecting neck', '(723.6) Panniculitis specified as affecting neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.7) Ossification of posterior longitudinal ligament in cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.7) Ossification of posterior longitudinal ligament in cervical region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.7''', NULL, + '(723.7) Ossification of posterior longitudinal ligament in cervical region', '(723.7) Ossification of posterior longitudinal ligament in cervical region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.8) Other syndromes affecting cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.8) Other syndromes affecting cervical region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.8''', NULL, + '(723.8) Other syndromes affecting cervical region', '(723.8) Other syndromes affecting cervical region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.9) Unspecified musculoskeletal disorders and symptoms referable to neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.9) Unspecified musculoskeletal disorders and symptoms referable to neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.9''', NULL, + '(723.9) Unspecified musculoskeletal disorders and symptoms referable to neck', '(723.9) Unspecified musculoskeletal disorders and symptoms referable to neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721''', NULL, + 'Spondylosis and allied disorders (721)', 'Spondylosis and allied disorders (721)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.0) Cervical spondylosis without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.0) Cervical spondylosis without myelopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.0''', NULL, + '(721.0) Cervical spondylosis without myelopathy', '(721.0) Cervical spondylosis without myelopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.1) Cervical spondylosis with myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.1) Cervical spondylosis with myelopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.1''', NULL, + '(721.1) Cervical spondylosis with myelopathy', '(721.1) Cervical spondylosis with myelopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.2) Thoracic spondylosis without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.2) Thoracic spondylosis without myelopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.2''', NULL, + '(721.2) Thoracic spondylosis without myelopathy', '(721.2) Thoracic spondylosis without myelopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.3) Lumbosacral spondylosis without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.3) Lumbosacral spondylosis without myelopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.3''', NULL, + '(721.3) Lumbosacral spondylosis without myelopathy', '(721.3) Lumbosacral spondylosis without myelopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.5) Kissing spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.5) Kissing spine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.5''', NULL, + '(721.5) Kissing spine', '(721.5) Kissing spine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.6) Ankylosing vertebral hyperostosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.6) Ankylosing vertebral hyperostosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.6''', NULL, + '(721.6) Ankylosing vertebral hyperostosis', '(721.6) Ankylosing vertebral hyperostosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.7) Traumatic spondylopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.7) Traumatic spondylopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.7''', NULL, + '(721.7) Traumatic spondylopathy', '(721.7) Traumatic spondylopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.8) Other allied disorders of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.8) Other allied disorders of spine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.8''', NULL, + '(721.8) Other allied disorders of spine', '(721.8) Other allied disorders of spine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.9''', NULL, + 'Spondylosis of unspecified site (721.9)', 'Spondylosis of unspecified site (721.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\(721.90) Spondylosis of unspecified site, without mention of myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\(721.90) Spondylosis of unspecified site, without mention of myelopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.90''', NULL, + '(721.90) Spondylosis of unspecified site, without mention of myelopathy', '(721.90) Spondylosis of unspecified site, without mention of myelopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\(721.91) Spondylosis of unspecified site, with myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\(721.91) Spondylosis of unspecified site, with myelopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.91''', NULL, + '(721.91) Spondylosis of unspecified site, with myelopathy', '(721.91) Spondylosis of unspecified site, with myelopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.4''', NULL, + 'Thoracic or lumbar spondylosis with myelopathy (721.4)', 'Thoracic or lumbar spondylosis with myelopathy (721.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\(721.41) Spondylosis with myelopathy, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\(721.41) Spondylosis with myelopathy, thoracic region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.41''', NULL, + '(721.41) Spondylosis with myelopathy, thoracic region', '(721.41) Spondylosis with myelopathy, thoracic region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\(721.42) Spondylosis with myelopathy, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\(721.42) Spondylosis with myelopathy, lumbar region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.42''', NULL, + '(721.42) Spondylosis with myelopathy, lumbar region', '(721.42) Spondylosis with myelopathy, lumbar region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''730'' AND ''739.99''', NULL, + 'Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)', 'Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\(734) Flat foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\(734) Flat foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''734''', NULL, + '(734) Flat foot', '(734) Flat foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735''', NULL, + 'Acquired deformities of toe (735)', 'Acquired deformities of toe (735)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.0) Hallux valgus (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.0) Hallux valgus (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.0) Hallux valgus (acquired''', NULL, + '(735.0) Hallux valgus (acquired)', '(735.0) Hallux valgus (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.1) Hallux varus (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.1) Hallux varus (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.1) Hallux varus (acquired''', NULL, + '(735.1) Hallux varus (acquired)', '(735.1) Hallux varus (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.2) Hallux rigidus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.2) Hallux rigidus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.2''', NULL, + '(735.2) Hallux rigidus', '(735.2) Hallux rigidus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.3) Hallux malleus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.3) Hallux malleus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.3''', NULL, + '(735.3) Hallux malleus', '(735.3) Hallux malleus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.4) Other hammer toe (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.4) Other hammer toe (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.4) Other hammer toe (acquired''', NULL, + '(735.4) Other hammer toe (acquired)', '(735.4) Other hammer toe (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.5) Claw toe (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.5) Claw toe (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.5) Claw toe (acquired''', NULL, + '(735.5) Claw toe (acquired)', '(735.5) Claw toe (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.8) Other acquired deformities of toe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.8) Other acquired deformities of toe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.8''', NULL, + '(735.8) Other acquired deformities of toe', '(735.8) Other acquired deformities of toe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.9) Unspecified acquired deformity of toe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.9) Unspecified acquired deformity of toe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.9''', NULL, + '(735.9) Unspecified acquired deformity of toe', '(735.9) Unspecified acquired deformity of toe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737''', NULL, + 'Curvature of spine (737)', 'Curvature of spine (737)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.0) Adolescent postural kyphosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.0) Adolescent postural kyphosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.0''', NULL, + '(737.0) Adolescent postural kyphosis', '(737.0) Adolescent postural kyphosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.8) Other curvatures of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.8) Other curvatures of spine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.8''', NULL, + '(737.8) Other curvatures of spine', '(737.8) Other curvatures of spine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.9) Unspecified curvature of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.9) Unspecified curvature of spine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.9''', NULL, + '(737.9) Unspecified curvature of spine', '(737.9) Unspecified curvature of spine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.4''', NULL, + 'Curvature of spine associated with other conditions (737.4)', 'Curvature of spine associated with other conditions (737.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.40) Curvature of spine, unspecified, associated with other conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.40) Curvature of spine, unspecified, associated with other conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.40''', NULL, + '(737.40) Curvature of spine, unspecified, associated with other conditions', '(737.40) Curvature of spine, unspecified, associated with other conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.41) Kyphosis associated with other conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.41) Kyphosis associated with other conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.41''', NULL, + '(737.41) Kyphosis associated with other conditions', '(737.41) Kyphosis associated with other conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.42) Lordosis associated with other conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.42) Lordosis associated with other conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.42''', NULL, + '(737.42) Lordosis associated with other conditions', '(737.42) Lordosis associated with other conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.43) Scoliosis associated with other conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.43) Scoliosis associated with other conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.43''', NULL, + '(737.43) Scoliosis associated with other conditions', '(737.43) Scoliosis associated with other conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.3''', NULL, + 'Kyphoscoliosis and scoliosis (737.3)', 'Kyphoscoliosis and scoliosis (737.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.30) Scoliosis [and kyphoscoliosis], idiopathic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.30) Scoliosis [and kyphoscoliosis], idiopathic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.30''', NULL, + '(737.30) Scoliosis [and kyphoscoliosis], idiopathic', '(737.30) Scoliosis [and kyphoscoliosis], idiopathic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.31) Resolving infantile idiopathic scoliosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.31) Resolving infantile idiopathic scoliosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.31''', NULL, + '(737.31) Resolving infantile idiopathic scoliosis', '(737.31) Resolving infantile idiopathic scoliosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.32) Progressive infantile idiopathic scoliosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.32) Progressive infantile idiopathic scoliosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.32''', NULL, + '(737.32) Progressive infantile idiopathic scoliosis', '(737.32) Progressive infantile idiopathic scoliosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.33) Scoliosis due to radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.33) Scoliosis due to radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.33''', NULL, + '(737.33) Scoliosis due to radiation', '(737.33) Scoliosis due to radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.34) Thoracogenic scoliosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.34) Thoracogenic scoliosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.34''', NULL, + '(737.34) Thoracogenic scoliosis', '(737.34) Thoracogenic scoliosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.39) Other kyphoscoliosis and scoliosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.39) Other kyphoscoliosis and scoliosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.39''', NULL, + '(737.39) Other kyphoscoliosis and scoliosis', '(737.39) Other kyphoscoliosis and scoliosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''acquired) (737.1''', NULL, + 'Kyphosis (acquired) (737.1)', 'Kyphosis (acquired) (737.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.10) Kyphosis (acquired) (postural)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.10) Kyphosis (acquired) (postural)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.10) Kyphosis (acquired) (postural''', NULL, + '(737.10) Kyphosis (acquired) (postural)', '(737.10) Kyphosis (acquired) (postural)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.11) Kyphosis due to radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.11) Kyphosis due to radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.11''', NULL, + '(737.11) Kyphosis due to radiation', '(737.11) Kyphosis due to radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.12) Kyphosis, postlaminectomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.12) Kyphosis, postlaminectomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.12''', NULL, + '(737.12) Kyphosis, postlaminectomy', '(737.12) Kyphosis, postlaminectomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.19) Other kyphosis (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.19) Other kyphosis (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.19) Other kyphosis (acquired''', NULL, + '(737.19) Other kyphosis (acquired)', '(737.19) Other kyphosis (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''acquired) (737.2''', NULL, + 'Lordosis (acquired) (737.2)', 'Lordosis (acquired) (737.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.20) Lordosis (acquired) (postural)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.20) Lordosis (acquired) (postural)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.20) Lordosis (acquired) (postural''', NULL, + '(737.20) Lordosis (acquired) (postural)', '(737.20) Lordosis (acquired) (postural)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.21) Lordosis, postlaminectomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.21) Lordosis, postlaminectomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.21''', NULL, + '(737.21) Lordosis, postlaminectomy', '(737.21) Lordosis, postlaminectomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.22) Other postsurgical lordosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.22) Other postsurgical lordosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.22''', NULL, + '(737.22) Other postsurgical lordosis', '(737.22) Other postsurgical lordosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.29) Other lordosis (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.29) Other lordosis (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.29) Other lordosis (acquired''', NULL, + '(737.29) Other lordosis (acquired)', '(737.29) Other lordosis (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739''', NULL, + 'Nonallopathic lesions, not elsewhere classified (739)', 'Nonallopathic lesions, not elsewhere classified (739)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.0) Nonallopathic lesions, head region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.0) Nonallopathic lesions, head region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.0''', NULL, + '(739.0) Nonallopathic lesions, head region', '(739.0) Nonallopathic lesions, head region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.1) Nonallopathic lesions, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.1) Nonallopathic lesions, cervical region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.1''', NULL, + '(739.1) Nonallopathic lesions, cervical region', '(739.1) Nonallopathic lesions, cervical region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.2) Nonallopathic lesions, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.2) Nonallopathic lesions, thoracic region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.2''', NULL, + '(739.2) Nonallopathic lesions, thoracic region', '(739.2) Nonallopathic lesions, thoracic region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.3) Nonallopathic lesions, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.3) Nonallopathic lesions, lumbar region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.3''', NULL, + '(739.3) Nonallopathic lesions, lumbar region', '(739.3) Nonallopathic lesions, lumbar region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.4) Nonallopathic lesions, sacral region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.4) Nonallopathic lesions, sacral region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.4''', NULL, + '(739.4) Nonallopathic lesions, sacral region', '(739.4) Nonallopathic lesions, sacral region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.5) Nonallopathic lesions, pelvic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.5) Nonallopathic lesions, pelvic region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.5''', NULL, + '(739.5) Nonallopathic lesions, pelvic region', '(739.5) Nonallopathic lesions, pelvic region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.6) Nonallopathic lesions, lower extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.6) Nonallopathic lesions, lower extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.6''', NULL, + '(739.6) Nonallopathic lesions, lower extremities', '(739.6) Nonallopathic lesions, lower extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.7) Nonallopathic lesions, upper extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.7) Nonallopathic lesions, upper extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.7''', NULL, + '(739.7) Nonallopathic lesions, upper extremities', '(739.7) Nonallopathic lesions, upper extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.8) Nonallopathic lesions, rib cage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.8) Nonallopathic lesions, rib cage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.8''', NULL, + '(739.8) Nonallopathic lesions, rib cage', '(739.8) Nonallopathic lesions, rib cage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.9) Nonallopathic lesions, abdomen and other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.9) Nonallopathic lesions, abdomen and other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.9''', NULL, + '(739.9) Nonallopathic lesions, abdomen and other sites', '(739.9) Nonallopathic lesions, abdomen and other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731''', NULL, + 'Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)', 'Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.0) Osteitis deformans without mention of bone tumor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.0) Osteitis deformans without mention of bone tumor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731.0''', NULL, + '(731.0) Osteitis deformans without mention of bone tumor', '(731.0) Osteitis deformans without mention of bone tumor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.1) Osteitis deformans in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.1) Osteitis deformans in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731.1''', NULL, + '(731.1) Osteitis deformans in diseases classified elsewhere', '(731.1) Osteitis deformans in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.2) Hypertrophic pulmonary osteoarthropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.2) Hypertrophic pulmonary osteoarthropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731.2''', NULL, + '(731.2) Hypertrophic pulmonary osteoarthropathy', '(731.2) Hypertrophic pulmonary osteoarthropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.3) Major osseous defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.3) Major osseous defects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731.3''', NULL, + '(731.3) Major osseous defects', '(731.3) Major osseous defects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.8) Other bone involvement in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.8) Other bone involvement in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731.8''', NULL, + '(731.8) Other bone involvement in diseases classified elsewhere', '(731.8) Other bone involvement in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732''', NULL, + 'Osteochondropathies (732)', 'Osteochondropathies (732)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.0) Juvenile osteochondrosis of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.0) Juvenile osteochondrosis of spine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.0''', NULL, + '(732.0) Juvenile osteochondrosis of spine', '(732.0) Juvenile osteochondrosis of spine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.1) Juvenile osteochondrosis of hip and pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.1) Juvenile osteochondrosis of hip and pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.1''', NULL, + '(732.1) Juvenile osteochondrosis of hip and pelvis', '(732.1) Juvenile osteochondrosis of hip and pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.2) Nontraumatic slipped upper femoral epiphysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.2) Nontraumatic slipped upper femoral epiphysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.2''', NULL, + '(732.2) Nontraumatic slipped upper femoral epiphysis', '(732.2) Nontraumatic slipped upper femoral epiphysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.3) Juvenile osteochondrosis of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.3) Juvenile osteochondrosis of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.3''', NULL, + '(732.3) Juvenile osteochondrosis of upper extremity', '(732.3) Juvenile osteochondrosis of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.4) Juvenile osteochondrosis of lower extremity, excluding foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.4) Juvenile osteochondrosis of lower extremity, excluding foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.4''', NULL, + '(732.4) Juvenile osteochondrosis of lower extremity, excluding foot', '(732.4) Juvenile osteochondrosis of lower extremity, excluding foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.5) Juvenile osteochondrosis of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.5) Juvenile osteochondrosis of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.5''', NULL, + '(732.5) Juvenile osteochondrosis of foot', '(732.5) Juvenile osteochondrosis of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.6) Other juvenile osteochondrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.6) Other juvenile osteochondrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.6''', NULL, + '(732.6) Other juvenile osteochondrosis', '(732.6) Other juvenile osteochondrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.7) Osteochondritis dissecans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.7) Osteochondritis dissecans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.7''', NULL, + '(732.7) Osteochondritis dissecans', '(732.7) Osteochondritis dissecans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.8) Other specified forms of osteochondropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.8) Other specified forms of osteochondropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.8''', NULL, + '(732.8) Other specified forms of osteochondropathy', '(732.8) Other specified forms of osteochondropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.9) Unspecified osteochondropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.9) Unspecified osteochondropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.9''', NULL, + '(732.9) Unspecified osteochondropathy', '(732.9) Unspecified osteochondropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730''', NULL, + 'Osteomyelitis, periostitis, and other infections involving bone (730)', 'Osteomyelitis, periostitis, and other infections involving bone (730)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.0''', NULL, + 'Acute osteomyelitis (730.0)', 'Acute osteomyelitis (730.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.00) Acute osteomyelitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.00) Acute osteomyelitis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.00''', NULL, + '(730.00) Acute osteomyelitis, site unspecified', '(730.00) Acute osteomyelitis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.01) Acute osteomyelitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.01) Acute osteomyelitis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.01''', NULL, + '(730.01) Acute osteomyelitis, shoulder region', '(730.01) Acute osteomyelitis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.02) Acute osteomyelitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.02) Acute osteomyelitis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.02''', NULL, + '(730.02) Acute osteomyelitis, upper arm', '(730.02) Acute osteomyelitis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.03) Acute osteomyelitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.03) Acute osteomyelitis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.03''', NULL, + '(730.03) Acute osteomyelitis, forearm', '(730.03) Acute osteomyelitis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.04) Acute osteomyelitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.04) Acute osteomyelitis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.04''', NULL, + '(730.04) Acute osteomyelitis, hand', '(730.04) Acute osteomyelitis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.05) Acute osteomyelitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.05) Acute osteomyelitis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.05''', NULL, + '(730.05) Acute osteomyelitis, pelvic region and thigh', '(730.05) Acute osteomyelitis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.06) Acute osteomyelitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.06) Acute osteomyelitis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.06''', NULL, + '(730.06) Acute osteomyelitis, lower leg', '(730.06) Acute osteomyelitis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.07) Acute osteomyelitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.07) Acute osteomyelitis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.07''', NULL, + '(730.07) Acute osteomyelitis, ankle and foot', '(730.07) Acute osteomyelitis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.08) Acute osteomyelitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.08) Acute osteomyelitis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.08''', NULL, + '(730.08) Acute osteomyelitis, other specified sites', '(730.08) Acute osteomyelitis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.09) Acute osteomyelitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.09) Acute osteomyelitis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.09''', NULL, + '(730.09) Acute osteomyelitis, multiple sites', '(730.09) Acute osteomyelitis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.1''', NULL, + 'Chronic osteomyelitis (730.1)', 'Chronic osteomyelitis (730.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.10) Chronic osteomyelitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.10) Chronic osteomyelitis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.10''', NULL, + '(730.10) Chronic osteomyelitis, site unspecified', '(730.10) Chronic osteomyelitis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.11) Chronic osteomyelitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.11) Chronic osteomyelitis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.11''', NULL, + '(730.11) Chronic osteomyelitis, shoulder region', '(730.11) Chronic osteomyelitis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.12) Chronic osteomyelitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.12) Chronic osteomyelitis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.12''', NULL, + '(730.12) Chronic osteomyelitis, upper arm', '(730.12) Chronic osteomyelitis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.13) Chronic osteomyelitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.13) Chronic osteomyelitis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.13''', NULL, + '(730.13) Chronic osteomyelitis, forearm', '(730.13) Chronic osteomyelitis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.14) Chronic osteomyelitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.14) Chronic osteomyelitis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.14''', NULL, + '(730.14) Chronic osteomyelitis, hand', '(730.14) Chronic osteomyelitis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.15) Chronic osteomyelitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.15) Chronic osteomyelitis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.15''', NULL, + '(730.15) Chronic osteomyelitis, pelvic region and thigh', '(730.15) Chronic osteomyelitis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.16) Chronic osteomyelitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.16) Chronic osteomyelitis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.16''', NULL, + '(730.16) Chronic osteomyelitis, lower leg', '(730.16) Chronic osteomyelitis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.17) Chronic osteomyelitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.17) Chronic osteomyelitis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.17''', NULL, + '(730.17) Chronic osteomyelitis, ankle and foot', '(730.17) Chronic osteomyelitis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.18) Chronic osteomyelitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.18) Chronic osteomyelitis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.18''', NULL, + '(730.18) Chronic osteomyelitis, other specified sites', '(730.18) Chronic osteomyelitis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.19) Chronic osteomyelitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.19) Chronic osteomyelitis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.19''', NULL, + '(730.19) Chronic osteomyelitis, multiple sites', '(730.19) Chronic osteomyelitis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.7''', NULL, + 'Osteopathy resulting from poliomyelitis (730.7)', 'Osteopathy resulting from poliomyelitis (730.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.70) Osteopathy resulting from poliomyelitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.70) Osteopathy resulting from poliomyelitis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.70''', NULL, + '(730.70) Osteopathy resulting from poliomyelitis, site unspecified', '(730.70) Osteopathy resulting from poliomyelitis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.71) Osteopathy resulting from poliomyelitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.71) Osteopathy resulting from poliomyelitis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.71''', NULL, + '(730.71) Osteopathy resulting from poliomyelitis, shoulder region', '(730.71) Osteopathy resulting from poliomyelitis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.72) Osteopathy resulting from poliomyelitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.72) Osteopathy resulting from poliomyelitis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.72''', NULL, + '(730.72) Osteopathy resulting from poliomyelitis, upper arm', '(730.72) Osteopathy resulting from poliomyelitis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.73) Osteopathy resulting from poliomyelitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.73) Osteopathy resulting from poliomyelitis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.73''', NULL, + '(730.73) Osteopathy resulting from poliomyelitis, forearm', '(730.73) Osteopathy resulting from poliomyelitis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.74) Osteopathy resulting from poliomyelitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.74) Osteopathy resulting from poliomyelitis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.74''', NULL, + '(730.74) Osteopathy resulting from poliomyelitis, hand', '(730.74) Osteopathy resulting from poliomyelitis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.75) Osteopathy resulting from poliomyelitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.75) Osteopathy resulting from poliomyelitis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.75''', NULL, + '(730.75) Osteopathy resulting from poliomyelitis, pelvic region and thigh', '(730.75) Osteopathy resulting from poliomyelitis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.76) Osteopathy resulting from poliomyelitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.76) Osteopathy resulting from poliomyelitis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.76''', NULL, + '(730.76) Osteopathy resulting from poliomyelitis, lower leg', '(730.76) Osteopathy resulting from poliomyelitis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.77) Osteopathy resulting from poliomyelitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.77) Osteopathy resulting from poliomyelitis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.77''', NULL, + '(730.77) Osteopathy resulting from poliomyelitis, ankle and foot', '(730.77) Osteopathy resulting from poliomyelitis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.78) Osteopathy resulting from poliomyelitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.78) Osteopathy resulting from poliomyelitis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.78''', NULL, + '(730.78) Osteopathy resulting from poliomyelitis, other specified sites', '(730.78) Osteopathy resulting from poliomyelitis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.79) Osteopathy resulting from poliomyelitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.79) Osteopathy resulting from poliomyelitis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.79''', NULL, + '(730.79) Osteopathy resulting from poliomyelitis, multiple sites', '(730.79) Osteopathy resulting from poliomyelitis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.8''', NULL, + 'Other infections involving bone in disease classified elsewhere (730.8)', 'Other infections involving bone in disease classified elsewhere (730.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.80) Other infections involving bone in diseases classified elsewhere, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.80) Other infections involving bone in diseases classified elsewhere, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.80''', NULL, + '(730.80) Other infections involving bone in diseases classified elsewhere, site unspecified', '(730.80) Other infections involving bone in diseases classified elsewhere, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.81) Other infections involving bone in diseases classified elsewhere, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.81) Other infections involving bone in diseases classified elsewhere, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.81''', NULL, + '(730.81) Other infections involving bone in diseases classified elsewhere, shoulder region', '(730.81) Other infections involving bone in diseases classified elsewhere, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.82) Other infections involving bone in diseases classified elsewhere, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.82) Other infections involving bone in diseases classified elsewhere, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.82''', NULL, + '(730.82) Other infections involving bone in diseases classified elsewhere, upper arm', '(730.82) Other infections involving bone in diseases classified elsewhere, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.83) Other infections involving bone in diseases classified elsewhere, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.83) Other infections involving bone in diseases classified elsewhere, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.83''', NULL, + '(730.83) Other infections involving bone in diseases classified elsewhere, forearm', '(730.83) Other infections involving bone in diseases classified elsewhere, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.84) Other infections involving bone in diseases classified elsewhere, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.84) Other infections involving bone in diseases classified elsewhere, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.84''', NULL, + '(730.84) Other infections involving bone in diseases classified elsewhere, hand', '(730.84) Other infections involving bone in diseases classified elsewhere, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.85) Other infections involving bone in diseases classified elsewhere, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.85) Other infections involving bone in diseases classified elsewhere, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.85''', NULL, + '(730.85) Other infections involving bone in diseases classified elsewhere, pelvic region and thigh', '(730.85) Other infections involving bone in diseases classified elsewhere, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.86) Other infections involving bone in diseases classified elsewhere, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.86) Other infections involving bone in diseases classified elsewhere, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.86''', NULL, + '(730.86) Other infections involving bone in diseases classified elsewhere, lower leg', '(730.86) Other infections involving bone in diseases classified elsewhere, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.87) Other infections involving bone in diseases classified elsewhere, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.87) Other infections involving bone in diseases classified elsewhere, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.87''', NULL, + '(730.87) Other infections involving bone in diseases classified elsewhere, ankle and foot', '(730.87) Other infections involving bone in diseases classified elsewhere, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.88) Other infections involving bone in diseases classified elsewhere, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.88) Other infections involving bone in diseases classified elsewhere, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.88''', NULL, + '(730.88) Other infections involving bone in diseases classified elsewhere, other specified sites', '(730.88) Other infections involving bone in diseases classified elsewhere, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.89) Other infections involving bone in diseases classified elsewhere, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.89) Other infections involving bone in diseases classified elsewhere, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.89''', NULL, + '(730.89) Other infections involving bone in diseases classified elsewhere, multiple sites', '(730.89) Other infections involving bone in diseases classified elsewhere, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.3''', NULL, + 'Periostitis without mention of osteomyelitis (730.3)', 'Periostitis without mention of osteomyelitis (730.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.30) Periostitis, without mention of osteomyelitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.30) Periostitis, without mention of osteomyelitis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.30''', NULL, + '(730.30) Periostitis, without mention of osteomyelitis, site unspecified', '(730.30) Periostitis, without mention of osteomyelitis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.31) Periostitis, without mention of osteomyelitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.31) Periostitis, without mention of osteomyelitis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.31''', NULL, + '(730.31) Periostitis, without mention of osteomyelitis, shoulder region', '(730.31) Periostitis, without mention of osteomyelitis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.32) Periostitis, without mention of osteomyelitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.32) Periostitis, without mention of osteomyelitis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.32''', NULL, + '(730.32) Periostitis, without mention of osteomyelitis, upper arm', '(730.32) Periostitis, without mention of osteomyelitis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.33) Periostitis, without mention of osteomyelitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.33) Periostitis, without mention of osteomyelitis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.33''', NULL, + '(730.33) Periostitis, without mention of osteomyelitis, forearm', '(730.33) Periostitis, without mention of osteomyelitis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.34) Periostitis, without mention of osteomyelitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.34) Periostitis, without mention of osteomyelitis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.34''', NULL, + '(730.34) Periostitis, without mention of osteomyelitis, hand', '(730.34) Periostitis, without mention of osteomyelitis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.35) Periostitis, without mention of osteomyelitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.35) Periostitis, without mention of osteomyelitis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.35''', NULL, + '(730.35) Periostitis, without mention of osteomyelitis, pelvic region and thigh', '(730.35) Periostitis, without mention of osteomyelitis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.36) Periostitis, without mention of osteomyelitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.36) Periostitis, without mention of osteomyelitis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.36''', NULL, + '(730.36) Periostitis, without mention of osteomyelitis, lower leg', '(730.36) Periostitis, without mention of osteomyelitis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.37) Periostitis, without mention of osteomyelitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.37) Periostitis, without mention of osteomyelitis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.37''', NULL, + '(730.37) Periostitis, without mention of osteomyelitis, ankle and foot', '(730.37) Periostitis, without mention of osteomyelitis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.38) Periostitis, without mention of osteomyelitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.38) Periostitis, without mention of osteomyelitis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.38''', NULL, + '(730.38) Periostitis, without mention of osteomyelitis, other specified sites', '(730.38) Periostitis, without mention of osteomyelitis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.39) Periostitis, without mention of osteomyelitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.39) Periostitis, without mention of osteomyelitis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.39''', NULL, + '(730.39) Periostitis, without mention of osteomyelitis, multiple sites', '(730.39) Periostitis, without mention of osteomyelitis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.9''', NULL, + 'Unspecified infection of bone (730.9)', 'Unspecified infection of bone (730.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.90) Unspecified infection of bone, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.90) Unspecified infection of bone, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.90''', NULL, + '(730.90) Unspecified infection of bone, site unspecified', '(730.90) Unspecified infection of bone, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.91) Unspecified infection of bone, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.91) Unspecified infection of bone, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.91''', NULL, + '(730.91) Unspecified infection of bone, shoulder region', '(730.91) Unspecified infection of bone, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.92) Unspecified infection of bone, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.92) Unspecified infection of bone, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.92''', NULL, + '(730.92) Unspecified infection of bone, upper arm', '(730.92) Unspecified infection of bone, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.93) Unspecified infection of bone, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.93) Unspecified infection of bone, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.93''', NULL, + '(730.93) Unspecified infection of bone, forearm', '(730.93) Unspecified infection of bone, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.94) Unspecified infection of bone, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.94) Unspecified infection of bone, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.94''', NULL, + '(730.94) Unspecified infection of bone, hand', '(730.94) Unspecified infection of bone, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.95) Unspecified infection of bone, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.95) Unspecified infection of bone, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.95''', NULL, + '(730.95) Unspecified infection of bone, pelvic region and thigh', '(730.95) Unspecified infection of bone, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.96) Unspecified infection of bone, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.96) Unspecified infection of bone, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.96''', NULL, + '(730.96) Unspecified infection of bone, lower leg', '(730.96) Unspecified infection of bone, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.97) Unspecified infection of bone, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.97) Unspecified infection of bone, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.97''', NULL, + '(730.97) Unspecified infection of bone, ankle and foot', '(730.97) Unspecified infection of bone, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.98) Unspecified infection of bone, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.98) Unspecified infection of bone, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.98''', NULL, + '(730.98) Unspecified infection of bone, other specified sites', '(730.98) Unspecified infection of bone, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.99) Unspecified infection of bone, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.99) Unspecified infection of bone, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.99''', NULL, + '(730.99) Unspecified infection of bone, multiple sites', '(730.99) Unspecified infection of bone, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.2''', NULL, + 'Unspecified osteomyelitis (730.2)', 'Unspecified osteomyelitis (730.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.20) Unspecified osteomyelitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.20) Unspecified osteomyelitis, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.20''', NULL, + '(730.20) Unspecified osteomyelitis, site unspecified', '(730.20) Unspecified osteomyelitis, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.21) Unspecified osteomyelitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.21) Unspecified osteomyelitis, shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.21''', NULL, + '(730.21) Unspecified osteomyelitis, shoulder region', '(730.21) Unspecified osteomyelitis, shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.22) Unspecified osteomyelitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.22) Unspecified osteomyelitis, upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.22''', NULL, + '(730.22) Unspecified osteomyelitis, upper arm', '(730.22) Unspecified osteomyelitis, upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.23) Unspecified osteomyelitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.23) Unspecified osteomyelitis, forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.23''', NULL, + '(730.23) Unspecified osteomyelitis, forearm', '(730.23) Unspecified osteomyelitis, forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.24) Unspecified osteomyelitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.24) Unspecified osteomyelitis, hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.24''', NULL, + '(730.24) Unspecified osteomyelitis, hand', '(730.24) Unspecified osteomyelitis, hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.25) Unspecified osteomyelitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.25) Unspecified osteomyelitis, pelvic region and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.25''', NULL, + '(730.25) Unspecified osteomyelitis, pelvic region and thigh', '(730.25) Unspecified osteomyelitis, pelvic region and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.26) Unspecified osteomyelitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.26) Unspecified osteomyelitis, lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.26''', NULL, + '(730.26) Unspecified osteomyelitis, lower leg', '(730.26) Unspecified osteomyelitis, lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.27) Unspecified osteomyelitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.27) Unspecified osteomyelitis, ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.27''', NULL, + '(730.27) Unspecified osteomyelitis, ankle and foot', '(730.27) Unspecified osteomyelitis, ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.28) Unspecified osteomyelitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.28) Unspecified osteomyelitis, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.28''', NULL, + '(730.28) Unspecified osteomyelitis, other specified sites', '(730.28) Unspecified osteomyelitis, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.29) Unspecified osteomyelitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.29) Unspecified osteomyelitis, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.29''', NULL, + '(730.29) Unspecified osteomyelitis, multiple sites', '(730.29) Unspecified osteomyelitis, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736''', NULL, + 'Other acquired deformities of limbs (736)', 'Other acquired deformities of limbs (736)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.1) Mallet finger\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.1) Mallet finger\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.1''', NULL, + '(736.1) Mallet finger', '(736.1) Mallet finger', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.5) Genu recurvatum (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.5) Genu recurvatum (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.5) Genu recurvatum (acquired''', NULL, + '(736.5) Genu recurvatum (acquired)', '(736.5) Genu recurvatum (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.6) Other acquired deformities of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.6) Other acquired deformities of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.6''', NULL, + '(736.6) Other acquired deformities of knee', '(736.6) Other acquired deformities of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.9) Acquired deformity of limb, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.9) Acquired deformity of limb, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.9''', NULL, + '(736.9) Acquired deformity of limb, site unspecified', '(736.9) Acquired deformity of limb, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.0''', NULL, + 'Acquired deformities of forearm, excluding fingers (736.0)', 'Acquired deformities of forearm, excluding fingers (736.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.00) Unspecified deformity of forearm, excluding fingers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.00) Unspecified deformity of forearm, excluding fingers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.00''', NULL, + '(736.00) Unspecified deformity of forearm, excluding fingers', '(736.00) Unspecified deformity of forearm, excluding fingers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.01) Cubitus valgus (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.01) Cubitus valgus (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.01) Cubitus valgus (acquired''', NULL, + '(736.01) Cubitus valgus (acquired)', '(736.01) Cubitus valgus (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.02) Cubitus varus (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.02) Cubitus varus (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.02) Cubitus varus (acquired''', NULL, + '(736.02) Cubitus varus (acquired)', '(736.02) Cubitus varus (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.03) Valgus deformity of wrist (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.03) Valgus deformity of wrist (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.03) Valgus deformity of wrist (acquired''', NULL, + '(736.03) Valgus deformity of wrist (acquired)', '(736.03) Valgus deformity of wrist (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.04) Varus deformity of wrist (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.04) Varus deformity of wrist (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.04) Varus deformity of wrist (acquired''', NULL, + '(736.04) Varus deformity of wrist (acquired)', '(736.04) Varus deformity of wrist (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.05) Wrist drop (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.05) Wrist drop (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.05) Wrist drop (acquired''', NULL, + '(736.05) Wrist drop (acquired)', '(736.05) Wrist drop (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.06) Claw hand (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.06) Claw hand (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.06) Claw hand (acquired''', NULL, + '(736.06) Claw hand (acquired)', '(736.06) Claw hand (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.07) Club hand, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.07) Club hand, acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.07''', NULL, + '(736.07) Club hand, acquired', '(736.07) Club hand, acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.09) Other acquired deformities of forearm, excluding fingers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.09) Other acquired deformities of forearm, excluding fingers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.09''', NULL, + '(736.09) Other acquired deformities of forearm, excluding fingers', '(736.09) Other acquired deformities of forearm, excluding fingers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.3''', NULL, + 'Acquired deformities of hip (736.3)', 'Acquired deformities of hip (736.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.30) Unspecified acquired deformity of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.30) Unspecified acquired deformity of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.30''', NULL, + '(736.30) Unspecified acquired deformity of hip', '(736.30) Unspecified acquired deformity of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.31) Coxa valga (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.31) Coxa valga (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.31) Coxa valga (acquired''', NULL, + '(736.31) Coxa valga (acquired)', '(736.31) Coxa valga (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.32) Coxa vara (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.32) Coxa vara (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.32) Coxa vara (acquired''', NULL, + '(736.32) Coxa vara (acquired)', '(736.32) Coxa vara (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.39) Other acquired deformities of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.39) Other acquired deformities of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.39''', NULL, + '(736.39) Other acquired deformities of hip', '(736.39) Other acquired deformities of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.8''', NULL, + 'Acquired deformities of other parts of limbs (736.8)', 'Acquired deformities of other parts of limbs (736.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\(736.81) Unequal leg length (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\(736.81) Unequal leg length (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.81) Unequal leg length (acquired''', NULL, + '(736.81) Unequal leg length (acquired)', '(736.81) Unequal leg length (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\(736.89) Other acquired deformity of other parts of limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\(736.89) Other acquired deformity of other parts of limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.89''', NULL, + '(736.89) Other acquired deformity of other parts of limb', '(736.89) Other acquired deformity of other parts of limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''acquired) (736.4''', NULL, + 'Genu valgum or varum (acquired) (736.4)', 'Genu valgum or varum (acquired) (736.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\(736.41) Genu valgum (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\(736.41) Genu valgum (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.41) Genu valgum (acquired''', NULL, + '(736.41) Genu valgum (acquired)', '(736.41) Genu valgum (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\(736.42) Genu varum (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\(736.42) Genu varum (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.42) Genu varum (acquired''', NULL, + '(736.42) Genu varum (acquired)', '(736.42) Genu varum (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.7''', NULL, + 'Other acquired deformities of ankle and foot (736.7)', 'Other acquired deformities of ankle and foot (736.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.70) Unspecified deformity of ankle and foot, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.70) Unspecified deformity of ankle and foot, acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.70''', NULL, + '(736.70) Unspecified deformity of ankle and foot, acquired', '(736.70) Unspecified deformity of ankle and foot, acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.71) Acquired equinovarus deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.71) Acquired equinovarus deformity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.71''', NULL, + '(736.71) Acquired equinovarus deformity', '(736.71) Acquired equinovarus deformity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.72) Equinus deformity of foot, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.72) Equinus deformity of foot, acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.72''', NULL, + '(736.72) Equinus deformity of foot, acquired', '(736.72) Equinus deformity of foot, acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.73) Cavus deformity of foot, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.73) Cavus deformity of foot, acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.73''', NULL, + '(736.73) Cavus deformity of foot, acquired', '(736.73) Cavus deformity of foot, acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.74) Claw foot, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.74) Claw foot, acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.74''', NULL, + '(736.74) Claw foot, acquired', '(736.74) Claw foot, acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.75) Cavovarus deformity of foot, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.75) Cavovarus deformity of foot, acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.75''', NULL, + '(736.75) Cavovarus deformity of foot, acquired', '(736.75) Cavovarus deformity of foot, acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.76) Other acquired calcaneus deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.76) Other acquired calcaneus deformity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.76''', NULL, + '(736.76) Other acquired calcaneus deformity', '(736.76) Other acquired calcaneus deformity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.79) Other acquired deformities of ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.79) Other acquired deformities of ankle and foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.79''', NULL, + '(736.79) Other acquired deformities of ankle and foot', '(736.79) Other acquired deformities of ankle and foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.2''', NULL, + 'Other acquired deformities of finger (736.2)', 'Other acquired deformities of finger (736.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.20) Unspecified deformity of finger\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.20) Unspecified deformity of finger\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.20''', NULL, + '(736.20) Unspecified deformity of finger', '(736.20) Unspecified deformity of finger', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.21) Boutonniere deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.21) Boutonniere deformity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.21''', NULL, + '(736.21) Boutonniere deformity', '(736.21) Boutonniere deformity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.22) Swan-neck deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.22) Swan-neck deformity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.22''', NULL, + '(736.22) Swan-neck deformity', '(736.22) Swan-neck deformity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.29) Other acquired deformities of finger\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.29) Other acquired deformities of finger\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.29''', NULL, + '(736.29) Other acquired deformities of finger', '(736.29) Other acquired deformities of finger', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738''', NULL, + 'Other acquired musculoskeletal deformity (738)', 'Other acquired musculoskeletal deformity (738)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.0) Acquired deformity of nose\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.0) Acquired deformity of nose\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.0''', NULL, + '(738.0) Acquired deformity of nose', '(738.0) Acquired deformity of nose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.2) Acquired deformity of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.2) Acquired deformity of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.2''', NULL, + '(738.2) Acquired deformity of neck', '(738.2) Acquired deformity of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.3) Acquired deformity of chest and rib\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.3) Acquired deformity of chest and rib\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.3''', NULL, + '(738.3) Acquired deformity of chest and rib', '(738.3) Acquired deformity of chest and rib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.4) Acquired spondylolisthesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.4) Acquired spondylolisthesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.4''', NULL, + '(738.4) Acquired spondylolisthesis', '(738.4) Acquired spondylolisthesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.5) Other acquired deformity of back or spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.5) Other acquired deformity of back or spine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.5''', NULL, + '(738.5) Other acquired deformity of back or spine', '(738.5) Other acquired deformity of back or spine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.6) Acquired deformity of pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.6) Acquired deformity of pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.6''', NULL, + '(738.6) Acquired deformity of pelvis', '(738.6) Acquired deformity of pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.7) Cauliflower ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.7) Cauliflower ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.7''', NULL, + '(738.7) Cauliflower ear', '(738.7) Cauliflower ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.8) Acquired deformity of other specified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.8) Acquired deformity of other specified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.8''', NULL, + '(738.8) Acquired deformity of other specified site', '(738.8) Acquired deformity of other specified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.9) Acquired deformity of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.9) Acquired deformity of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.9''', NULL, + '(738.9) Acquired deformity of unspecified site', '(738.9) Acquired deformity of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.1''', NULL, + 'Other acquired deformity of head (738.1)', 'Other acquired deformity of head (738.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.10) Unspecified acquired deformity of head\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.10) Unspecified acquired deformity of head\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.10''', NULL, + '(738.10) Unspecified acquired deformity of head', '(738.10) Unspecified acquired deformity of head', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.11) Zygomatic hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.11) Zygomatic hyperplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.11''', NULL, + '(738.11) Zygomatic hyperplasia', '(738.11) Zygomatic hyperplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.12) Zygomatic hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.12) Zygomatic hypoplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.12''', NULL, + '(738.12) Zygomatic hypoplasia', '(738.12) Zygomatic hypoplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.19) Other specified acquired deformity of head\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.19) Other specified acquired deformity of head\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.19''', NULL, + '(738.19) Other specified acquired deformity of head', '(738.19) Other specified acquired deformity of head', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733''', NULL, + 'Other disorders of bone and cartilage (733)', 'Other disorders of bone and cartilage (733)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.3) Hyperostosis of skull\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.3) Hyperostosis of skull\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.3''', NULL, + '(733.3) Hyperostosis of skull', '(733.3) Hyperostosis of skull', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.5) Osteitis condensans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.5) Osteitis condensans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.5''', NULL, + '(733.5) Osteitis condensans', '(733.5) Osteitis condensans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.6) Tietze''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.6) Tietze''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.6''', NULL, + '(733.6) Tietze''s disease', '(733.6) Tietze''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.7) Algoneurodystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.7) Algoneurodystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.7''', NULL, + '(733.7) Algoneurodystrophy', '(733.7) Algoneurodystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.4''', NULL, + 'Aseptic necrosis of bone (733.4)', 'Aseptic necrosis of bone (733.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.40) Aseptic necrosis of bone, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.40) Aseptic necrosis of bone, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.40''', NULL, + '(733.40) Aseptic necrosis of bone, site unspecified', '(733.40) Aseptic necrosis of bone, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.41) Aseptic necrosis of head of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.41) Aseptic necrosis of head of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.41''', NULL, + '(733.41) Aseptic necrosis of head of humerus', '(733.41) Aseptic necrosis of head of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.42) Aseptic necrosis of head and neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.42) Aseptic necrosis of head and neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.42''', NULL, + '(733.42) Aseptic necrosis of head and neck of femur', '(733.42) Aseptic necrosis of head and neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.43) Aseptic necrosis of medial femoral condyle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.43) Aseptic necrosis of medial femoral condyle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.43''', NULL, + '(733.43) Aseptic necrosis of medial femoral condyle', '(733.43) Aseptic necrosis of medial femoral condyle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.44) Aseptic necrosis of talus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.44) Aseptic necrosis of talus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.44''', NULL, + '(733.44) Aseptic necrosis of talus', '(733.44) Aseptic necrosis of talus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.45) Aseptic necrosis of bone, jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.45) Aseptic necrosis of bone, jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.45''', NULL, + '(733.45) Aseptic necrosis of bone, jaw', '(733.45) Aseptic necrosis of bone, jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.49) Aseptic necrosis of bone, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.49) Aseptic necrosis of bone, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.49''', NULL, + '(733.49) Aseptic necrosis of bone, other', '(733.49) Aseptic necrosis of bone, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.2''', NULL, + 'Cyst of bone (733.2)', 'Cyst of bone (733.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.20) Cyst of bone (localized), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.20) Cyst of bone (localized), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.20) Cyst of bone (localized''', NULL, + '(733.20) Cyst of bone (localized), unspecified', '(733.20) Cyst of bone (localized), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.21) Solitary bone cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.21) Solitary bone cyst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.21''', NULL, + '(733.21) Solitary bone cyst', '(733.21) Solitary bone cyst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.22) Aneurysmal bone cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.22) Aneurysmal bone cyst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.22''', NULL, + '(733.22) Aneurysmal bone cyst', '(733.22) Aneurysmal bone cyst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.29) Other bone cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.29) Other bone cyst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.29''', NULL, + '(733.29) Other bone cyst', '(733.29) Other bone cyst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.8''', NULL, + 'Malunion and nonunion of fracture (733.8)', 'Malunion and nonunion of fracture (733.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\(733.81) Malunion of fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\(733.81) Malunion of fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.81''', NULL, + '(733.81) Malunion of fracture', '(733.81) Malunion of fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\(733.82) Nonunion of fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\(733.82) Nonunion of fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.82''', NULL, + '(733.82) Nonunion of fracture', '(733.82) Nonunion of fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.0''', NULL, + 'Osteoporosis (733.0)', 'Osteoporosis (733.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.00) Osteoporosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.00) Osteoporosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.00''', NULL, + '(733.00) Osteoporosis, unspecified', '(733.00) Osteoporosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.01) Senile osteoporosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.01) Senile osteoporosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.01''', NULL, + '(733.01) Senile osteoporosis', '(733.01) Senile osteoporosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.02) Idiopathic osteoporosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.02) Idiopathic osteoporosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.02''', NULL, + '(733.02) Idiopathic osteoporosis', '(733.02) Idiopathic osteoporosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.03) Disuse osteoporosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.03) Disuse osteoporosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.03''', NULL, + '(733.03) Disuse osteoporosis', '(733.03) Disuse osteoporosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.09) Other osteoporosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.09) Other osteoporosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.09''', NULL, + '(733.09) Other osteoporosis', '(733.09) Other osteoporosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.9''', NULL, + 'Other and unspecified disorders of bone and cartilage (733.9)', 'Other and unspecified disorders of bone and cartilage (733.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.90) Disorder of bone and cartilage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.90) Disorder of bone and cartilage, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.90''', NULL, + '(733.90) Disorder of bone and cartilage, unspecified', '(733.90) Disorder of bone and cartilage, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.91) Arrest of bone development or growth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.91) Arrest of bone development or growth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.91''', NULL, + '(733.91) Arrest of bone development or growth', '(733.91) Arrest of bone development or growth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.92) Chondromalacia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.92) Chondromalacia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.92''', NULL, + '(733.92) Chondromalacia', '(733.92) Chondromalacia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.93) Stress fracture of tibia or fibula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.93) Stress fracture of tibia or fibula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.93''', NULL, + '(733.93) Stress fracture of tibia or fibula', '(733.93) Stress fracture of tibia or fibula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.94) Stress fracture of the metatarsals\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.94) Stress fracture of the metatarsals\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.94''', NULL, + '(733.94) Stress fracture of the metatarsals', '(733.94) Stress fracture of the metatarsals', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.95) Stress fracture of other bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.95) Stress fracture of other bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.95''', NULL, + '(733.95) Stress fracture of other bone', '(733.95) Stress fracture of other bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.96) Stress fracture of femoral neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.96) Stress fracture of femoral neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.96''', NULL, + '(733.96) Stress fracture of femoral neck', '(733.96) Stress fracture of femoral neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.97) Stress fracture of shaft of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.97) Stress fracture of shaft of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.97''', NULL, + '(733.97) Stress fracture of shaft of femur', '(733.97) Stress fracture of shaft of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.98) Stress fracture of pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.98) Stress fracture of pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.98''', NULL, + '(733.98) Stress fracture of pelvis', '(733.98) Stress fracture of pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.99) Other disorders of bone and cartilage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.99) Other disorders of bone and cartilage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.99''', NULL, + '(733.99) Other disorders of bone and cartilage', '(733.99) Other disorders of bone and cartilage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.1''', NULL, + 'Pathologic fracture (733.1)', 'Pathologic fracture (733.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.10) Pathologic fracture, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.10) Pathologic fracture, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.10''', NULL, + '(733.10) Pathologic fracture, unspecified site', '(733.10) Pathologic fracture, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.11) Pathologic fracture of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.11) Pathologic fracture of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.11''', NULL, + '(733.11) Pathologic fracture of humerus', '(733.11) Pathologic fracture of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.12) Pathologic fracture of distal radius and ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.12) Pathologic fracture of distal radius and ulna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.12''', NULL, + '(733.12) Pathologic fracture of distal radius and ulna', '(733.12) Pathologic fracture of distal radius and ulna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.13) Pathologic fracture of vertebrae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.13) Pathologic fracture of vertebrae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.13''', NULL, + '(733.13) Pathologic fracture of vertebrae', '(733.13) Pathologic fracture of vertebrae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.14) Pathologic fracture of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.14) Pathologic fracture of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.14''', NULL, + '(733.14) Pathologic fracture of neck of femur', '(733.14) Pathologic fracture of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.15) Pathologic fracture of other specified part of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.15) Pathologic fracture of other specified part of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.15''', NULL, + '(733.15) Pathologic fracture of other specified part of femur', '(733.15) Pathologic fracture of other specified part of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.16) Pathologic fracture of tibia or fibula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.16) Pathologic fracture of tibia or fibula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.16''', NULL, + '(733.16) Pathologic fracture of tibia or fibula', '(733.16) Pathologic fracture of tibia or fibula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.19) Pathologic fracture of other specified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.19) Pathologic fracture of other specified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.19''', NULL, + '(733.19) Pathologic fracture of other specified site', '(733.19) Pathologic fracture of other specified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''725'' AND ''729.99''', NULL, + 'Rheumatism, excluding the back (725-729.99)', 'Rheumatism, excluding the back (725-729.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\(725) Polymyalgia rheumatica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\(725) Polymyalgia rheumatica\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''725''', NULL, + '(725) Polymyalgia rheumatica', '(725) Polymyalgia rheumatica', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728''', NULL, + 'Disorders of muscle, ligament, and fascia (728)', 'Disorders of muscle, ligament, and fascia (728)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.0) Infective myositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.0) Infective myositis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.0''', NULL, + '(728.0) Infective myositis', '(728.0) Infective myositis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.2) Muscular wasting and disuse atrophy, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.2) Muscular wasting and disuse atrophy, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.2''', NULL, + '(728.2) Muscular wasting and disuse atrophy, not elsewhere classified', '(728.2) Muscular wasting and disuse atrophy, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.3) Other specific muscle disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.3) Other specific muscle disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.3''', NULL, + '(728.3) Other specific muscle disorders', '(728.3) Other specific muscle disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.4) Laxity of ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.4) Laxity of ligament\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.4''', NULL, + '(728.4) Laxity of ligament', '(728.4) Laxity of ligament', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.5) Hypermobility syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.5) Hypermobility syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.5''', NULL, + '(728.5) Hypermobility syndrome', '(728.5) Hypermobility syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.6) Contracture of palmar fascia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.6) Contracture of palmar fascia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.6''', NULL, + '(728.6) Contracture of palmar fascia', '(728.6) Contracture of palmar fascia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.9) Unspecified disorder of muscle, ligament, and fascia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.9) Unspecified disorder of muscle, ligament, and fascia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.9''', NULL, + '(728.9) Unspecified disorder of muscle, ligament, and fascia', '(728.9) Unspecified disorder of muscle, ligament, and fascia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.1''', NULL, + 'Muscular calcification and ossification (728.1)', 'Muscular calcification and ossification (728.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.10) Calcification and ossification, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.10) Calcification and ossification, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.10''', NULL, + '(728.10) Calcification and ossification, unspecified', '(728.10) Calcification and ossification, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.11) Progressive myositis ossificans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.11) Progressive myositis ossificans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.11''', NULL, + '(728.11) Progressive myositis ossificans', '(728.11) Progressive myositis ossificans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.12) Traumatic myositis ossificans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.12) Traumatic myositis ossificans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.12''', NULL, + '(728.12) Traumatic myositis ossificans', '(728.12) Traumatic myositis ossificans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.13) Postoperative heterotopic calcification\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.13) Postoperative heterotopic calcification\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.13''', NULL, + '(728.13) Postoperative heterotopic calcification', '(728.13) Postoperative heterotopic calcification', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.19) Other muscular calcification and ossification\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.19) Other muscular calcification and ossification\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.19''', NULL, + '(728.19) Other muscular calcification and ossification', '(728.19) Other muscular calcification and ossification', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.8''', NULL, + 'Other disorders of muscle, ligament, and fascia (728.8)', 'Other disorders of muscle, ligament, and fascia (728.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.81) Interstitial myositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.81) Interstitial myositis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.81''', NULL, + '(728.81) Interstitial myositis', '(728.81) Interstitial myositis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.82) Foreign body granuloma of muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.82) Foreign body granuloma of muscle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.82''', NULL, + '(728.82) Foreign body granuloma of muscle', '(728.82) Foreign body granuloma of muscle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.83) Rupture of muscle, nontraumatic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.83) Rupture of muscle, nontraumatic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.83''', NULL, + '(728.83) Rupture of muscle, nontraumatic', '(728.83) Rupture of muscle, nontraumatic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.84) Diastasis of muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.84) Diastasis of muscle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.84''', NULL, + '(728.84) Diastasis of muscle', '(728.84) Diastasis of muscle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.85) Spasm of muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.85) Spasm of muscle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.85''', NULL, + '(728.85) Spasm of muscle', '(728.85) Spasm of muscle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.86) Necrotizing fasciitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.86) Necrotizing fasciitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.86''', NULL, + '(728.86) Necrotizing fasciitis', '(728.86) Necrotizing fasciitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.87) Muscle weakness (generalized)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.87) Muscle weakness (generalized)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.87) Muscle weakness (generalized''', NULL, + '(728.87) Muscle weakness (generalized)', '(728.87) Muscle weakness (generalized)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.88) Rhabdomyolysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.88) Rhabdomyolysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.88''', NULL, + '(728.88) Rhabdomyolysis', '(728.88) Rhabdomyolysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.89) Other disorders of muscle, ligament, and fascia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.89) Other disorders of muscle, ligament, and fascia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.89''', NULL, + '(728.89) Other disorders of muscle, ligament, and fascia', '(728.89) Other disorders of muscle, ligament, and fascia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.7''', NULL, + 'Other fibromatoses of muscle, ligament, and fascia (728.7)', 'Other fibromatoses of muscle, ligament, and fascia (728.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\(728.71) Plantar fascial fibromatosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\(728.71) Plantar fascial fibromatosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.71''', NULL, + '(728.71) Plantar fascial fibromatosis', '(728.71) Plantar fascial fibromatosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\(728.79) Other fibromatoses of muscle, ligament, and fascia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\(728.79) Other fibromatoses of muscle, ligament, and fascia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.79''', NULL, + '(728.79) Other fibromatoses of muscle, ligament, and fascia', '(728.79) Other fibromatoses of muscle, ligament, and fascia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729''', NULL, + 'Other disorders of soft tissues (729)', 'Other disorders of soft tissues (729)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.0) Rheumatism, unspecified and fibrositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.0) Rheumatism, unspecified and fibrositis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.0''', NULL, + '(729.0) Rheumatism, unspecified and fibrositis', '(729.0) Rheumatism, unspecified and fibrositis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.1) Myalgia and myositis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.1) Myalgia and myositis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.1''', NULL, + '(729.1) Myalgia and myositis, unspecified', '(729.1) Myalgia and myositis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.2) Neuralgia, neuritis, and radiculitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.2) Neuralgia, neuritis, and radiculitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.2''', NULL, + '(729.2) Neuralgia, neuritis, and radiculitis, unspecified', '(729.2) Neuralgia, neuritis, and radiculitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.4) Fasciitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.4) Fasciitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.4''', NULL, + '(729.4) Fasciitis, unspecified', '(729.4) Fasciitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.5) Pain in limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.5) Pain in limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.5''', NULL, + '(729.5) Pain in limb', '(729.5) Pain in limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.6) Residual foreign body in soft tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.6) Residual foreign body in soft tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.6''', NULL, + '(729.6) Residual foreign body in soft tissue', '(729.6) Residual foreign body in soft tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.7''', NULL, + 'Nontraumatic compartment syndrome (729.7)', 'Nontraumatic compartment syndrome (729.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.71) Nontraumatic compartment syndrome of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.71) Nontraumatic compartment syndrome of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.71''', NULL, + '(729.71) Nontraumatic compartment syndrome of upper extremity', '(729.71) Nontraumatic compartment syndrome of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.72) Nontraumatic compartment syndrome of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.72) Nontraumatic compartment syndrome of lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.72''', NULL, + '(729.72) Nontraumatic compartment syndrome of lower extremity', '(729.72) Nontraumatic compartment syndrome of lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.73) Nontraumatic compartment syndrome of abdomen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.73) Nontraumatic compartment syndrome of abdomen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.73''', NULL, + '(729.73) Nontraumatic compartment syndrome of abdomen', '(729.73) Nontraumatic compartment syndrome of abdomen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.79) Nontraumatic compartment syndrome of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.79) Nontraumatic compartment syndrome of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.79''', NULL, + '(729.79) Nontraumatic compartment syndrome of other sites', '(729.79) Nontraumatic compartment syndrome of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.9''', NULL, + 'Other and unspecified disorders of soft tissue (729.9)', 'Other and unspecified disorders of soft tissue (729.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.90) Disorders of soft tissue, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.90) Disorders of soft tissue, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.90''', NULL, + '(729.90) Disorders of soft tissue, unspecified', '(729.90) Disorders of soft tissue, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.91) Post-traumatic seroma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.91) Post-traumatic seroma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.91''', NULL, + '(729.91) Post-traumatic seroma', '(729.91) Post-traumatic seroma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.92) Nontraumatic hematoma of soft tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.92) Nontraumatic hematoma of soft tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.92''', NULL, + '(729.92) Nontraumatic hematoma of soft tissue', '(729.92) Nontraumatic hematoma of soft tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.99) Other disorders of soft tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.99) Other disorders of soft tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.99''', NULL, + '(729.99) Other disorders of soft tissue', '(729.99) Other disorders of soft tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.8''', NULL, + 'Other musculoskeletal symptoms referable to limbs (729.8)', 'Other musculoskeletal symptoms referable to limbs (729.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.81) Swelling of limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.81) Swelling of limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.81''', NULL, + '(729.81) Swelling of limb', '(729.81) Swelling of limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.82) Cramp of limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.82) Cramp of limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.82''', NULL, + '(729.82) Cramp of limb', '(729.82) Cramp of limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.89) Other musculoskeletal symptoms referable to limbs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.89) Other musculoskeletal symptoms referable to limbs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.89''', NULL, + '(729.89) Other musculoskeletal symptoms referable to limbs', '(729.89) Other musculoskeletal symptoms referable to limbs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.3''', NULL, + 'Panniculitis, unspecified (729.3)', 'Panniculitis, unspecified (729.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.30) Panniculitis, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.30) Panniculitis, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.30''', NULL, + '(729.30) Panniculitis, unspecified site', '(729.30) Panniculitis, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.31) Hypertrophy of fat pad, knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.31) Hypertrophy of fat pad, knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.31''', NULL, + '(729.31) Hypertrophy of fat pad, knee', '(729.31) Hypertrophy of fat pad, knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.39) Panniculitis, other site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.39) Panniculitis, other site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.39''', NULL, + '(729.39) Panniculitis, other site', '(729.39) Panniculitis, other site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727''', NULL, + 'Other disorders of synovium, tendon, and bursa (727)', 'Other disorders of synovium, tendon, and bursa (727)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.1) Bunion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.1) Bunion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.1''', NULL, + '(727.1) Bunion', '(727.1) Bunion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.2) Specific bursitides often of occupational origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.2) Specific bursitides often of occupational origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.2''', NULL, + '(727.2) Specific bursitides often of occupational origin', '(727.2) Specific bursitides often of occupational origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.3) Other bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.3) Other bursitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.3''', NULL, + '(727.3) Other bursitis', '(727.3) Other bursitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.9) Unspecified disorder of synovium, tendon, and bursa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.9) Unspecified disorder of synovium, tendon, and bursa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.9''', NULL, + '(727.9) Unspecified disorder of synovium, tendon, and bursa', '(727.9) Unspecified disorder of synovium, tendon, and bursa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.4''', NULL, + 'Ganglion and cyst of synovium, tendon, and bursa (727.4)', 'Ganglion and cyst of synovium, tendon, and bursa (727.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.40) Synovial cyst, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.40) Synovial cyst, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.40''', NULL, + '(727.40) Synovial cyst, unspecified', '(727.40) Synovial cyst, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.41) Ganglion of joint\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.41) Ganglion of joint\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.41''', NULL, + '(727.41) Ganglion of joint', '(727.41) Ganglion of joint', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.42) Ganglion of tendon sheath\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.42) Ganglion of tendon sheath\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.42''', NULL, + '(727.42) Ganglion of tendon sheath', '(727.42) Ganglion of tendon sheath', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.43) Ganglion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.43) Ganglion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.43''', NULL, + '(727.43) Ganglion, unspecified', '(727.43) Ganglion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.49) Other ganglion and cyst of synovium, tendon, and bursa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.49) Other ganglion and cyst of synovium, tendon, and bursa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.49''', NULL, + '(727.49) Other ganglion and cyst of synovium, tendon, and bursa', '(727.49) Other ganglion and cyst of synovium, tendon, and bursa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.8''', NULL, + 'Other disorders of synovium, tendon, and bursa (727.8)', 'Other disorders of synovium, tendon, and bursa (727.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.81) Contracture of tendon (sheath)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.81) Contracture of tendon (sheath)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.81) Contracture of tendon (sheath''', NULL, + '(727.81) Contracture of tendon (sheath)', '(727.81) Contracture of tendon (sheath)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.82) Calcium deposits in tendon and bursa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.82) Calcium deposits in tendon and bursa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.82''', NULL, + '(727.82) Calcium deposits in tendon and bursa', '(727.82) Calcium deposits in tendon and bursa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.83) Plica syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.83) Plica syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.83''', NULL, + '(727.83) Plica syndrome', '(727.83) Plica syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.89) Other disorders of synovium, tendon, and bursa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.89) Other disorders of synovium, tendon, and bursa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.89''', NULL, + '(727.89) Other disorders of synovium, tendon, and bursa', '(727.89) Other disorders of synovium, tendon, and bursa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.5''', NULL, + 'Rupture of synovium (727.5)', 'Rupture of synovium (727.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.50) Rupture of synovium, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.50) Rupture of synovium, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.50''', NULL, + '(727.50) Rupture of synovium, unspecified', '(727.50) Rupture of synovium, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.51) Synovial cyst of popliteal space\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.51) Synovial cyst of popliteal space\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.51''', NULL, + '(727.51) Synovial cyst of popliteal space', '(727.51) Synovial cyst of popliteal space', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.59) Other rupture of synovium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.59) Other rupture of synovium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.59''', NULL, + '(727.59) Other rupture of synovium', '(727.59) Other rupture of synovium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.6''', NULL, + 'Rupture of tendon, nontraumatic (727.6)', 'Rupture of tendon, nontraumatic (727.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.60) Nontraumatic rupture of unspecified tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.60) Nontraumatic rupture of unspecified tendon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.60''', NULL, + '(727.60) Nontraumatic rupture of unspecified tendon', '(727.60) Nontraumatic rupture of unspecified tendon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.61) Complete rupture of rotator cuff\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.61) Complete rupture of rotator cuff\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.61''', NULL, + '(727.61) Complete rupture of rotator cuff', '(727.61) Complete rupture of rotator cuff', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.62) Nontraumatic rupture of tendons of biceps (long head)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.62) Nontraumatic rupture of tendons of biceps (long head)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.62) Nontraumatic rupture of tendons of biceps (long head''', NULL, + '(727.62) Nontraumatic rupture of tendons of biceps (long head)', '(727.62) Nontraumatic rupture of tendons of biceps (long head)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.63) Nontraumatic rupture of extensor tendons of hand and wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.63) Nontraumatic rupture of extensor tendons of hand and wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.63''', NULL, + '(727.63) Nontraumatic rupture of extensor tendons of hand and wrist', '(727.63) Nontraumatic rupture of extensor tendons of hand and wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.64) Nontraumatic rupture of flexor tendons of hand and wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.64) Nontraumatic rupture of flexor tendons of hand and wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.64''', NULL, + '(727.64) Nontraumatic rupture of flexor tendons of hand and wrist', '(727.64) Nontraumatic rupture of flexor tendons of hand and wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.65) Nontraumatic rupture of quadriceps tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.65) Nontraumatic rupture of quadriceps tendon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.65''', NULL, + '(727.65) Nontraumatic rupture of quadriceps tendon', '(727.65) Nontraumatic rupture of quadriceps tendon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.66) Nontraumatic rupture of patellar tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.66) Nontraumatic rupture of patellar tendon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.66''', NULL, + '(727.66) Nontraumatic rupture of patellar tendon', '(727.66) Nontraumatic rupture of patellar tendon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.67) Nontraumatic rupture of achilles tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.67) Nontraumatic rupture of achilles tendon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.67''', NULL, + '(727.67) Nontraumatic rupture of achilles tendon', '(727.67) Nontraumatic rupture of achilles tendon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.68) Nontraumatic rupture of other tendons of foot and ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.68) Nontraumatic rupture of other tendons of foot and ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.68''', NULL, + '(727.68) Nontraumatic rupture of other tendons of foot and ankle', '(727.68) Nontraumatic rupture of other tendons of foot and ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.69) Nontraumatic rupture of other tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.69) Nontraumatic rupture of other tendon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.69''', NULL, + '(727.69) Nontraumatic rupture of other tendon', '(727.69) Nontraumatic rupture of other tendon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.0''', NULL, + 'Synovitis and tenosynovitis (727.0)', 'Synovitis and tenosynovitis (727.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.00) Synovitis and tenosynovitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.00) Synovitis and tenosynovitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.00''', NULL, + '(727.00) Synovitis and tenosynovitis, unspecified', '(727.00) Synovitis and tenosynovitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.01) Synovitis and tenosynovitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.01) Synovitis and tenosynovitis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.01''', NULL, + '(727.01) Synovitis and tenosynovitis in diseases classified elsewhere', '(727.01) Synovitis and tenosynovitis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.02) Giant cell tumor of tendon sheath\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.02) Giant cell tumor of tendon sheath\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.02''', NULL, + '(727.02) Giant cell tumor of tendon sheath', '(727.02) Giant cell tumor of tendon sheath', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.03) Trigger finger (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.03) Trigger finger (acquired)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.03) Trigger finger (acquired''', NULL, + '(727.03) Trigger finger (acquired)', '(727.03) Trigger finger (acquired)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.04) Radial styloid tenosynovitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.04) Radial styloid tenosynovitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.04''', NULL, + '(727.04) Radial styloid tenosynovitis', '(727.04) Radial styloid tenosynovitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.05) Other tenosynovitis of hand and wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.05) Other tenosynovitis of hand and wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.05''', NULL, + '(727.05) Other tenosynovitis of hand and wrist', '(727.05) Other tenosynovitis of hand and wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.06) Tenosynovitis of foot and ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.06) Tenosynovitis of foot and ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.06''', NULL, + '(727.06) Tenosynovitis of foot and ankle', '(727.06) Tenosynovitis of foot and ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.09) Other synovitis and tenosynovitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.09) Other synovitis and tenosynovitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.09''', NULL, + '(727.09) Other synovitis and tenosynovitis', '(727.09) Other synovitis and tenosynovitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726''', NULL, + 'Peripheral enthesopathies and allied syndromes (726)', 'Peripheral enthesopathies and allied syndromes (726)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.0) Adhesive capsulitis of shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.0) Adhesive capsulitis of shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.0''', NULL, + '(726.0) Adhesive capsulitis of shoulder', '(726.0) Adhesive capsulitis of shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.2) Other affections of shoulder region, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.2) Other affections of shoulder region, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.2''', NULL, + '(726.2) Other affections of shoulder region, not elsewhere classified', '(726.2) Other affections of shoulder region, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.4) Enthesopathy of wrist and carpus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.4) Enthesopathy of wrist and carpus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.4''', NULL, + '(726.4) Enthesopathy of wrist and carpus', '(726.4) Enthesopathy of wrist and carpus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.5) Enthesopathy of hip region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.5) Enthesopathy of hip region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.5''', NULL, + '(726.5) Enthesopathy of hip region', '(726.5) Enthesopathy of hip region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.8) Other peripheral enthesopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.8) Other peripheral enthesopathies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.8''', NULL, + '(726.8) Other peripheral enthesopathies', '(726.8) Other peripheral enthesopathies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.7''', NULL, + 'Enthesopathy of ankle and tarsus (726.7)', 'Enthesopathy of ankle and tarsus (726.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.70) Enthesopathy of ankle and tarsus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.70) Enthesopathy of ankle and tarsus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.70''', NULL, + '(726.70) Enthesopathy of ankle and tarsus, unspecified', '(726.70) Enthesopathy of ankle and tarsus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.71) Achilles bursitis or tendinitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.71) Achilles bursitis or tendinitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.71''', NULL, + '(726.71) Achilles bursitis or tendinitis', '(726.71) Achilles bursitis or tendinitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.72) Tibialis tendinitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.72) Tibialis tendinitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.72''', NULL, + '(726.72) Tibialis tendinitis', '(726.72) Tibialis tendinitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.73) Calcaneal spur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.73) Calcaneal spur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.73''', NULL, + '(726.73) Calcaneal spur', '(726.73) Calcaneal spur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.79) Other enthesopathy of ankle and tarsus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.79) Other enthesopathy of ankle and tarsus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.79''', NULL, + '(726.79) Other enthesopathy of ankle and tarsus', '(726.79) Other enthesopathy of ankle and tarsus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.3''', NULL, + 'Enthesopathy of elbow region (726.3)', 'Enthesopathy of elbow region (726.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.30) Enthesopathy of elbow, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.30) Enthesopathy of elbow, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.30''', NULL, + '(726.30) Enthesopathy of elbow, unspecified', '(726.30) Enthesopathy of elbow, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.31) Medial epicondylitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.31) Medial epicondylitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.31''', NULL, + '(726.31) Medial epicondylitis', '(726.31) Medial epicondylitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.32) Lateral epicondylitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.32) Lateral epicondylitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.32''', NULL, + '(726.32) Lateral epicondylitis', '(726.32) Lateral epicondylitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.33) Olecranon bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.33) Olecranon bursitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.33''', NULL, + '(726.33) Olecranon bursitis', '(726.33) Olecranon bursitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.39) Other enthesopathy of elbow region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.39) Other enthesopathy of elbow region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.39''', NULL, + '(726.39) Other enthesopathy of elbow region', '(726.39) Other enthesopathy of elbow region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.6''', NULL, + 'Enthesopathy of knee (726.6)', 'Enthesopathy of knee (726.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.60) Enthesopathy of knee, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.60) Enthesopathy of knee, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.60''', NULL, + '(726.60) Enthesopathy of knee, unspecified', '(726.60) Enthesopathy of knee, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.61) Pes anserinus tendinitis or bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.61) Pes anserinus tendinitis or bursitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.61''', NULL, + '(726.61) Pes anserinus tendinitis or bursitis', '(726.61) Pes anserinus tendinitis or bursitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.62) Tibial collateral ligament bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.62) Tibial collateral ligament bursitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.62''', NULL, + '(726.62) Tibial collateral ligament bursitis', '(726.62) Tibial collateral ligament bursitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.63) Fibular collateral ligament bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.63) Fibular collateral ligament bursitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.63''', NULL, + '(726.63) Fibular collateral ligament bursitis', '(726.63) Fibular collateral ligament bursitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.64) Patellar tendinitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.64) Patellar tendinitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.64''', NULL, + '(726.64) Patellar tendinitis', '(726.64) Patellar tendinitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.65) Prepatellar bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.65) Prepatellar bursitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.65''', NULL, + '(726.65) Prepatellar bursitis', '(726.65) Prepatellar bursitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.69) Other enthesopathy of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.69) Other enthesopathy of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.69''', NULL, + '(726.69) Other enthesopathy of knee', '(726.69) Other enthesopathy of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.1''', NULL, + 'Rotator cuff syndrome of shoulder and allied disorders (726.1)', 'Rotator cuff syndrome of shoulder and allied disorders (726.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.10) Disorders of bursae and tendons in shoulder region, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.10) Disorders of bursae and tendons in shoulder region, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.10''', NULL, + '(726.10) Disorders of bursae and tendons in shoulder region, unspecified', '(726.10) Disorders of bursae and tendons in shoulder region, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.11) Calcifying tendinitis of shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.11) Calcifying tendinitis of shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.11''', NULL, + '(726.11) Calcifying tendinitis of shoulder', '(726.11) Calcifying tendinitis of shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.12) Bicipital tenosynovitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.12) Bicipital tenosynovitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.12''', NULL, + '(726.12) Bicipital tenosynovitis', '(726.12) Bicipital tenosynovitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.13) Partial tear of rotator cuff\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.13) Partial tear of rotator cuff\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.13''', NULL, + '(726.13) Partial tear of rotator cuff', '(726.13) Partial tear of rotator cuff', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.19) Other specified disorders of bursae and tendons in shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.19) Other specified disorders of bursae and tendons in shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.19''', NULL, + '(726.19) Other specified disorders of bursae and tendons in shoulder region', '(726.19) Other specified disorders of bursae and tendons in shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.9''', NULL, + 'Unspecified enthesopathy (726.9)', 'Unspecified enthesopathy (726.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\(726.90) Enthesopathy of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\(726.90) Enthesopathy of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.90''', NULL, + '(726.90) Enthesopathy of unspecified site', '(726.90) Enthesopathy of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\(726.91) Exostosis of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\(726.91) Exostosis of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.91''', NULL, + '(726.91) Exostosis of unspecified site', '(726.91) Exostosis of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''320'' AND ''389.99''', NULL, + 'Diseases of the nervous system and sense organs (320-389.99)', 'Diseases of the nervous system and sense organs (320-389.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''380'' AND ''389.99''', NULL, + 'Diseases of the ear and mastoid process (380-389.99)', 'Diseases of the ear and mastoid process (380-389.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380''', NULL, + 'Disorders of external ear (380)', 'Disorders of external ear (380)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\(380.4) Impacted cerumen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\(380.4) Impacted cerumen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.4''', NULL, + '(380.4) Impacted cerumen', '(380.4) Impacted cerumen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\(380.9) Unspecified disorder of external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\(380.9) Unspecified disorder of external ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.9''', NULL, + '(380.9) Unspecified disorder of external ear', '(380.9) Unspecified disorder of external ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.5''', NULL, + 'Acquired stenosis of external ear canal (380.5)', 'Acquired stenosis of external ear canal (380.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.50) Acquired stenosis of external ear canal, unspecified as to cause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.50) Acquired stenosis of external ear canal, unspecified as to cause\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.50''', NULL, + '(380.50) Acquired stenosis of external ear canal, unspecified as to cause', '(380.50) Acquired stenosis of external ear canal, unspecified as to cause', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.51) Acquired stenosis of external ear canal secondary to trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.51) Acquired stenosis of external ear canal secondary to trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.51''', NULL, + '(380.51) Acquired stenosis of external ear canal secondary to trauma', '(380.51) Acquired stenosis of external ear canal secondary to trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.52) Acquired stenosis of external ear canal secondary to surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.52) Acquired stenosis of external ear canal secondary to surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.52''', NULL, + '(380.52) Acquired stenosis of external ear canal secondary to surgery', '(380.52) Acquired stenosis of external ear canal secondary to surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.53) Acquired stenosis of external ear canal secondary to inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.53) Acquired stenosis of external ear canal secondary to inflammation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.53''', NULL, + '(380.53) Acquired stenosis of external ear canal secondary to inflammation', '(380.53) Acquired stenosis of external ear canal secondary to inflammation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.1''', NULL, + 'Infective otitis externa (380.1)', 'Infective otitis externa (380.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.10) Infective otitis externa, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.10) Infective otitis externa, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.10''', NULL, + '(380.10) Infective otitis externa, unspecified', '(380.10) Infective otitis externa, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.11) Acute infection of pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.11) Acute infection of pinna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.11''', NULL, + '(380.11) Acute infection of pinna', '(380.11) Acute infection of pinna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.12) Acute swimmers'' ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.12) Acute swimmers'' ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.12''', NULL, + '(380.12) Acute swimmers'' ear', '(380.12) Acute swimmers'' ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.13) Other acute infections of external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.13) Other acute infections of external ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.13''', NULL, + '(380.13) Other acute infections of external ear', '(380.13) Other acute infections of external ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.14) Malignant otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.14) Malignant otitis externa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.14''', NULL, + '(380.14) Malignant otitis externa', '(380.14) Malignant otitis externa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.15) Chronic mycotic otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.15) Chronic mycotic otitis externa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.15''', NULL, + '(380.15) Chronic mycotic otitis externa', '(380.15) Chronic mycotic otitis externa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.16) Other chronic infective otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.16) Other chronic infective otitis externa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.16''', NULL, + '(380.16) Other chronic infective otitis externa', '(380.16) Other chronic infective otitis externa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.3''', NULL, + 'Noninfectious disorders of pinna (380.3)', 'Noninfectious disorders of pinna (380.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.30) Disorder of pinna, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.30) Disorder of pinna, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.30''', NULL, + '(380.30) Disorder of pinna, unspecified', '(380.30) Disorder of pinna, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.31) Hematoma of auricle or pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.31) Hematoma of auricle or pinna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.31''', NULL, + '(380.31) Hematoma of auricle or pinna', '(380.31) Hematoma of auricle or pinna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.32) Acquired deformities of auricle or pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.32) Acquired deformities of auricle or pinna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.32''', NULL, + '(380.32) Acquired deformities of auricle or pinna', '(380.32) Acquired deformities of auricle or pinna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.39) Other noninfectious disorders of pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.39) Other noninfectious disorders of pinna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.39''', NULL, + '(380.39) Other noninfectious disorders of pinna', '(380.39) Other noninfectious disorders of pinna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.8''', NULL, + 'Other disorders of external ear (380.8)', 'Other disorders of external ear (380.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\(380.81) Exostosis of external ear canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\(380.81) Exostosis of external ear canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.81''', NULL, + '(380.81) Exostosis of external ear canal', '(380.81) Exostosis of external ear canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\(380.89) Other disorders of external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\(380.89) Other disorders of external ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.89''', NULL, + '(380.89) Other disorders of external ear', '(380.89) Other disorders of external ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.2''', NULL, + 'Other otitis externa (380.2)', 'Other otitis externa (380.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.21) Cholesteatoma of external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.21) Cholesteatoma of external ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.21''', NULL, + '(380.21) Cholesteatoma of external ear', '(380.21) Cholesteatoma of external ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.22) Other acute otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.22) Other acute otitis externa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.22''', NULL, + '(380.22) Other acute otitis externa', '(380.22) Other acute otitis externa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.23) Other chronic otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.23) Other chronic otitis externa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.23''', NULL, + '(380.23) Other chronic otitis externa', '(380.23) Other chronic otitis externa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.0''', NULL, + 'Perichondritis and chondritis of pinna (380.0)', 'Perichondritis and chondritis of pinna (380.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.00) Perichondritis of pinna, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.00) Perichondritis of pinna, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.00''', NULL, + '(380.00) Perichondritis of pinna, unspecified', '(380.00) Perichondritis of pinna, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.01) Acute perichondritis of pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.01) Acute perichondritis of pinna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.01''', NULL, + '(380.01) Acute perichondritis of pinna', '(380.01) Acute perichondritis of pinna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.02) Chronic perichondritis of pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.02) Chronic perichondritis of pinna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.02''', NULL, + '(380.02) Chronic perichondritis of pinna', '(380.02) Chronic perichondritis of pinna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.03) Chondritis of pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.03) Chondritis of pinna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.03''', NULL, + '(380.03) Chondritis of pinna', '(380.03) Chondritis of pinna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389''', NULL, + 'Hearing loss (389)', 'Hearing loss (389)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.7) Deaf, nonspeaking, not elsewhere classifiable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.7) Deaf, nonspeaking, not elsewhere classifiable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.7''', NULL, + '(389.7) Deaf, nonspeaking, not elsewhere classifiable', '(389.7) Deaf, nonspeaking, not elsewhere classifiable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.8) Other specified forms of hearing loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.8) Other specified forms of hearing loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.8''', NULL, + '(389.8) Other specified forms of hearing loss', '(389.8) Other specified forms of hearing loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.9) Unspecified hearing loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.9) Unspecified hearing loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.9''', NULL, + '(389.9) Unspecified hearing loss', '(389.9) Unspecified hearing loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.0''', NULL, + 'Conductive hearing loss (389.0)', 'Conductive hearing loss (389.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.00) Conductive hearing loss, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.00) Conductive hearing loss, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.00''', NULL, + '(389.00) Conductive hearing loss, unspecified', '(389.00) Conductive hearing loss, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.01) Conductive hearing loss, external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.01) Conductive hearing loss, external ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.01''', NULL, + '(389.01) Conductive hearing loss, external ear', '(389.01) Conductive hearing loss, external ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.02) Conductive hearing loss, tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.02) Conductive hearing loss, tympanic membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.02''', NULL, + '(389.02) Conductive hearing loss, tympanic membrane', '(389.02) Conductive hearing loss, tympanic membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.03) Conductive hearing loss, middle ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.03) Conductive hearing loss, middle ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.03''', NULL, + '(389.03) Conductive hearing loss, middle ear', '(389.03) Conductive hearing loss, middle ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.04) Conductive hearing loss, inner ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.04) Conductive hearing loss, inner ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.04''', NULL, + '(389.04) Conductive hearing loss, inner ear', '(389.04) Conductive hearing loss, inner ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.05) Conductive hearing loss, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.05) Conductive hearing loss, unilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.05''', NULL, + '(389.05) Conductive hearing loss, unilateral', '(389.05) Conductive hearing loss, unilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.06) Conductive hearing loss, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.06) Conductive hearing loss, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.06''', NULL, + '(389.06) Conductive hearing loss, bilateral', '(389.06) Conductive hearing loss, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.08) Conductive hearing loss of combined types\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.08) Conductive hearing loss of combined types\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.08''', NULL, + '(389.08) Conductive hearing loss of combined types', '(389.08) Conductive hearing loss of combined types', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.2''', NULL, + 'Mixed conductive and sensorineural hearing loss (389.2)', 'Mixed conductive and sensorineural hearing loss (389.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.20) Mixed hearing loss, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.20) Mixed hearing loss, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.20''', NULL, + '(389.20) Mixed hearing loss, unspecified', '(389.20) Mixed hearing loss, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.21) Mixed hearing loss, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.21) Mixed hearing loss, unilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.21''', NULL, + '(389.21) Mixed hearing loss, unilateral', '(389.21) Mixed hearing loss, unilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.22) Mixed hearing loss, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.22) Mixed hearing loss, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.22''', NULL, + '(389.22) Mixed hearing loss, bilateral', '(389.22) Mixed hearing loss, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.1''', NULL, + 'Sensorineural hearing loss (389.1)', 'Sensorineural hearing loss (389.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.10) Sensorineural hearing loss, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.10) Sensorineural hearing loss, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.10''', NULL, + '(389.10) Sensorineural hearing loss, unspecified', '(389.10) Sensorineural hearing loss, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.11) Sensory hearing loss, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.11) Sensory hearing loss, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.11''', NULL, + '(389.11) Sensory hearing loss, bilateral', '(389.11) Sensory hearing loss, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.12) Neural hearing loss, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.12) Neural hearing loss, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.12''', NULL, + '(389.12) Neural hearing loss, bilateral', '(389.12) Neural hearing loss, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.13) Neural hearing loss, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.13) Neural hearing loss, unilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.13''', NULL, + '(389.13) Neural hearing loss, unilateral', '(389.13) Neural hearing loss, unilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.14) Central hearing loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.14) Central hearing loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.14''', NULL, + '(389.14) Central hearing loss', '(389.14) Central hearing loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.15) Sensorineural hearing loss, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.15) Sensorineural hearing loss, unilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.15''', NULL, + '(389.15) Sensorineural hearing loss, unilateral', '(389.15) Sensorineural hearing loss, unilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.16) Sensorineural hearing loss, asymmetrical\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.16) Sensorineural hearing loss, asymmetrical\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.16''', NULL, + '(389.16) Sensorineural hearing loss, asymmetrical', '(389.16) Sensorineural hearing loss, asymmetrical', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.17) Sensory hearing loss, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.17) Sensory hearing loss, unilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.17''', NULL, + '(389.17) Sensory hearing loss, unilateral', '(389.17) Sensory hearing loss, unilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.18) Sensorineural hearing loss, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.18) Sensorineural hearing loss, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.18''', NULL, + '(389.18) Sensorineural hearing loss, bilateral', '(389.18) Sensorineural hearing loss, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383''', NULL, + 'Mastoiditis and related conditions (383)', 'Mastoiditis and related conditions (383)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\(383.1) Chronic mastoiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\(383.1) Chronic mastoiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.1''', NULL, + '(383.1) Chronic mastoiditis', '(383.1) Chronic mastoiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\(383.9) Unspecified mastoiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\(383.9) Unspecified mastoiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.9''', NULL, + '(383.9) Unspecified mastoiditis', '(383.9) Unspecified mastoiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.0''', NULL, + 'Acute mastoiditis (383.0)', 'Acute mastoiditis (383.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.00) Acute mastoiditis without complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.00) Acute mastoiditis without complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.00''', NULL, + '(383.00) Acute mastoiditis without complications', '(383.00) Acute mastoiditis without complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.01) Subperiosteal abscess of mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.01) Subperiosteal abscess of mastoid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.01''', NULL, + '(383.01) Subperiosteal abscess of mastoid', '(383.01) Subperiosteal abscess of mastoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.02) Acute mastoiditis with other complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.02) Acute mastoiditis with other complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.02''', NULL, + '(383.02) Acute mastoiditis with other complications', '(383.02) Acute mastoiditis with other complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.3''', NULL, + 'Complications following mastoidectomy (383.3)', 'Complications following mastoidectomy (383.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.30) Postmastoidectomy complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.30) Postmastoidectomy complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.30''', NULL, + '(383.30) Postmastoidectomy complication, unspecified', '(383.30) Postmastoidectomy complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.31) Mucosal cyst of postmastoidectomy cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.31) Mucosal cyst of postmastoidectomy cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.31''', NULL, + '(383.31) Mucosal cyst of postmastoidectomy cavity', '(383.31) Mucosal cyst of postmastoidectomy cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.32) Recurrent cholesteatoma of postmastoidectomy cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.32) Recurrent cholesteatoma of postmastoidectomy cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.32''', NULL, + '(383.32) Recurrent cholesteatoma of postmastoidectomy cavity', '(383.32) Recurrent cholesteatoma of postmastoidectomy cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.33) Granulations of postmastoidectomy cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.33) Granulations of postmastoidectomy cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.33''', NULL, + '(383.33) Granulations of postmastoidectomy cavity', '(383.33) Granulations of postmastoidectomy cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.8''', NULL, + 'Other disorders of mastoid (383.8)', 'Other disorders of mastoid (383.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\(383.81) Postauricular fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\(383.81) Postauricular fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.81''', NULL, + '(383.81) Postauricular fistula', '(383.81) Postauricular fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\(383.89) Other disorders of mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\(383.89) Other disorders of mastoid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.89''', NULL, + '(383.89) Other disorders of mastoid', '(383.89) Other disorders of mastoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.2''', NULL, + 'Petrositis (383.2)', 'Petrositis (383.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.20) Petrositis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.20) Petrositis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.20''', NULL, + '(383.20) Petrositis, unspecified', '(383.20) Petrositis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.21) Acute petrositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.21) Acute petrositis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.21''', NULL, + '(383.21) Acute petrositis', '(383.21) Acute petrositis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.22) Chronic petrositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.22) Chronic petrositis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.22''', NULL, + '(383.22) Chronic petrositis', '(383.22) Chronic petrositis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381''', NULL, + 'Nonsuppurative otitis media and Eustachian tube disorders (381)', 'Nonsuppurative otitis media and Eustachian tube disorders (381)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.3) Other and unspecified chronic nonsuppurative otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.3) Other and unspecified chronic nonsuppurative otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.3''', NULL, + '(381.3) Other and unspecified chronic nonsuppurative otitis media', '(381.3) Other and unspecified chronic nonsuppurative otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.4) Nonsuppurative otitis media, not specified as acute or chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.4) Nonsuppurative otitis media, not specified as acute or chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.4''', NULL, + '(381.4) Nonsuppurative otitis media, not specified as acute or chronic', '(381.4) Nonsuppurative otitis media, not specified as acute or chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.7) Patulous Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.7) Patulous Eustachian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.7''', NULL, + '(381.7) Patulous Eustachian tube', '(381.7) Patulous Eustachian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.9) Unspecified Eustachian tube disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.9) Unspecified Eustachian tube disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.9''', NULL, + '(381.9) Unspecified Eustachian tube disorder', '(381.9) Unspecified Eustachian tube disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.0''', NULL, + 'Acute nonsuppurative otitis media (381.0)', 'Acute nonsuppurative otitis media (381.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.00) Acute nonsuppurative otitis media, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.00) Acute nonsuppurative otitis media, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.00''', NULL, + '(381.00) Acute nonsuppurative otitis media, unspecified', '(381.00) Acute nonsuppurative otitis media, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.01) Acute serous otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.01) Acute serous otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.01''', NULL, + '(381.01) Acute serous otitis media', '(381.01) Acute serous otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.02) Acute mucoid otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.02) Acute mucoid otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.02''', NULL, + '(381.02) Acute mucoid otitis media', '(381.02) Acute mucoid otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.03) Acute sanguinous otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.03) Acute sanguinous otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.03''', NULL, + '(381.03) Acute sanguinous otitis media', '(381.03) Acute sanguinous otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.04) Acute allergic serous otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.04) Acute allergic serous otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.04''', NULL, + '(381.04) Acute allergic serous otitis media', '(381.04) Acute allergic serous otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.05) Acute allergic mucoid otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.05) Acute allergic mucoid otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.05''', NULL, + '(381.05) Acute allergic mucoid otitis media', '(381.05) Acute allergic mucoid otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.06) Acute allergic sanguinous otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.06) Acute allergic sanguinous otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.06''', NULL, + '(381.06) Acute allergic sanguinous otitis media', '(381.06) Acute allergic sanguinous otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.2''', NULL, + 'Chronic mucoid otitis media (381.2)', 'Chronic mucoid otitis media (381.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\(381.20) Chronic mucoid otitis media, simple or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\(381.20) Chronic mucoid otitis media, simple or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.20''', NULL, + '(381.20) Chronic mucoid otitis media, simple or unspecified', '(381.20) Chronic mucoid otitis media, simple or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\(381.29) Other chronic mucoid otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\(381.29) Other chronic mucoid otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.29''', NULL, + '(381.29) Other chronic mucoid otitis media', '(381.29) Other chronic mucoid otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.1''', NULL, + 'Chronic serous otitis media (381.1)', 'Chronic serous otitis media (381.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\(381.10) Chronic serous otitis media, simple or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\(381.10) Chronic serous otitis media, simple or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.10''', NULL, + '(381.10) Chronic serous otitis media, simple or unspecified', '(381.10) Chronic serous otitis media, simple or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\(381.19) Other chronic serous otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\(381.19) Other chronic serous otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.19''', NULL, + '(381.19) Other chronic serous otitis media', '(381.19) Other chronic serous otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.5''', NULL, + 'Eustachian salpingitis (381.5)', 'Eustachian salpingitis (381.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.50) Eustachian salpingitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.50) Eustachian salpingitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.50''', NULL, + '(381.50) Eustachian salpingitis, unspecified', '(381.50) Eustachian salpingitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.51) Acute Eustachian salpingitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.51) Acute Eustachian salpingitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.51''', NULL, + '(381.51) Acute Eustachian salpingitis', '(381.51) Acute Eustachian salpingitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.52) Chronic Eustachian salpingitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.52) Chronic Eustachian salpingitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.52''', NULL, + '(381.52) Chronic Eustachian salpingitis', '(381.52) Chronic Eustachian salpingitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.6''', NULL, + 'Obstruction of Eustachian tube (381.6)', 'Obstruction of Eustachian tube (381.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.60) Obstruction of Eustachian tube, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.60) Obstruction of Eustachian tube, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.60''', NULL, + '(381.60) Obstruction of Eustachian tube, unspecified', '(381.60) Obstruction of Eustachian tube, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.61) Osseous obstruction of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.61) Osseous obstruction of Eustachian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.61''', NULL, + '(381.61) Osseous obstruction of Eustachian tube', '(381.61) Osseous obstruction of Eustachian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.62) Intrinsic cartilagenous obstruction of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.62) Intrinsic cartilagenous obstruction of Eustachian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.62''', NULL, + '(381.62) Intrinsic cartilagenous obstruction of Eustachian tube', '(381.62) Intrinsic cartilagenous obstruction of Eustachian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.63) Extrinsic cartilagenous obstruction of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.63) Extrinsic cartilagenous obstruction of Eustachian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.63''', NULL, + '(381.63) Extrinsic cartilagenous obstruction of Eustachian tube', '(381.63) Extrinsic cartilagenous obstruction of Eustachian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.8''', NULL, + 'Other disorders of Eustachian tube (381.8)', 'Other disorders of Eustachian tube (381.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\(381.81) Dysfunction of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\(381.81) Dysfunction of Eustachian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.81''', NULL, + '(381.81) Dysfunction of Eustachian tube', '(381.81) Dysfunction of Eustachian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\(381.89) Other disorders of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\(381.89) Other disorders of Eustachian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.89''', NULL, + '(381.89) Other disorders of Eustachian tube', '(381.89) Other disorders of Eustachian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388''', NULL, + 'Other disorders of ear (388)', 'Other disorders of ear (388)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.2) Sudden hearing loss, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.2) Sudden hearing loss, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.2''', NULL, + '(388.2) Sudden hearing loss, unspecified', '(388.2) Sudden hearing loss, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.5) Disorders of acoustic nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.5) Disorders of acoustic nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.5''', NULL, + '(388.5) Disorders of acoustic nerve', '(388.5) Disorders of acoustic nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.8) Other disorders of ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.8) Other disorders of ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.8''', NULL, + '(388.8) Other disorders of ear', '(388.8) Other disorders of ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.9) Unspecified disorder of ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.9) Unspecified disorder of ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.9''', NULL, + '(388.9) Unspecified disorder of ear', '(388.9) Unspecified disorder of ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.0''', NULL, + 'Degenerative and vascular disorders of ear (388.0)', 'Degenerative and vascular disorders of ear (388.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.00) Degenerative and vascular disorders, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.00) Degenerative and vascular disorders, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.00''', NULL, + '(388.00) Degenerative and vascular disorders, unspecified', '(388.00) Degenerative and vascular disorders, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.01) Presbyacusis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.01) Presbyacusis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.01''', NULL, + '(388.01) Presbyacusis', '(388.01) Presbyacusis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.02) Transient ischemic deafness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.02) Transient ischemic deafness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.02''', NULL, + '(388.02) Transient ischemic deafness', '(388.02) Transient ischemic deafness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.1''', NULL, + 'Noise effects on inner ear (388.1)', 'Noise effects on inner ear (388.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.10) Noise effects on inner ear, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.10) Noise effects on inner ear, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.10''', NULL, + '(388.10) Noise effects on inner ear, unspecified', '(388.10) Noise effects on inner ear, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.11) Acoustic trauma (explosive) to ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.11) Acoustic trauma (explosive) to ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.11) Acoustic trauma (explosive''', NULL, + '(388.11) Acoustic trauma (explosive) to ear', '(388.11) Acoustic trauma (explosive) to ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.12) Noise-induced hearing loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.12) Noise-induced hearing loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.12''', NULL, + '(388.12) Noise-induced hearing loss', '(388.12) Noise-induced hearing loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.7''', NULL, + 'Otalgia (388.7)', 'Otalgia (388.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.70) Otalgia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.70) Otalgia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.70''', NULL, + '(388.70) Otalgia, unspecified', '(388.70) Otalgia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.71) Otogenic pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.71) Otogenic pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.71''', NULL, + '(388.71) Otogenic pain', '(388.71) Otogenic pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.72) Referred otogenic pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.72) Referred otogenic pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.72''', NULL, + '(388.72) Referred otogenic pain', '(388.72) Referred otogenic pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.4''', NULL, + 'Other abnormal auditory perception (388.4)', 'Other abnormal auditory perception (388.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.40) Abnormal auditory perception, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.40) Abnormal auditory perception, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.40''', NULL, + '(388.40) Abnormal auditory perception, unspecified', '(388.40) Abnormal auditory perception, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.41) Diplacusis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.41) Diplacusis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.41''', NULL, + '(388.41) Diplacusis', '(388.41) Diplacusis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.42) Hyperacusis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.42) Hyperacusis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.42''', NULL, + '(388.42) Hyperacusis', '(388.42) Hyperacusis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.43) Impairment of auditory discrimination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.43) Impairment of auditory discrimination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.43''', NULL, + '(388.43) Impairment of auditory discrimination', '(388.43) Impairment of auditory discrimination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.44) Auditory recruitment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.44) Auditory recruitment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.44''', NULL, + '(388.44) Auditory recruitment', '(388.44) Auditory recruitment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.45) Acquired auditory processing disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.45) Acquired auditory processing disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.45''', NULL, + '(388.45) Acquired auditory processing disorder', '(388.45) Acquired auditory processing disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.6''', NULL, + 'Otorrhea (388.6)', 'Otorrhea (388.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.60) Otorrhea, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.60) Otorrhea, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.60''', NULL, + '(388.60) Otorrhea, unspecified', '(388.60) Otorrhea, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.61) Cerebrospinal fluid otorrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.61) Cerebrospinal fluid otorrhea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.61''', NULL, + '(388.61) Cerebrospinal fluid otorrhea', '(388.61) Cerebrospinal fluid otorrhea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.69) Other otorrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.69) Other otorrhea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.69''', NULL, + '(388.69) Other otorrhea', '(388.69) Other otorrhea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.3''', NULL, + 'Tinnitus (388.3)', 'Tinnitus (388.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.30) Tinnitus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.30) Tinnitus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.30''', NULL, + '(388.30) Tinnitus, unspecified', '(388.30) Tinnitus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.31) Subjective tinnitus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.31) Subjective tinnitus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.31''', NULL, + '(388.31) Subjective tinnitus', '(388.31) Subjective tinnitus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.32) Objective tinnitus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.32) Objective tinnitus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.32''', NULL, + '(388.32) Objective tinnitus', '(388.32) Objective tinnitus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385''', NULL, + 'Other disorders of middle ear and mastoid (385)', 'Other disorders of middle ear and mastoid (385)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\(385.9) Unspecified disorder of middle ear and mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\(385.9) Unspecified disorder of middle ear and mastoid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.9''', NULL, + '(385.9) Unspecified disorder of middle ear and mastoid', '(385.9) Unspecified disorder of middle ear and mastoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.1''', NULL, + 'Adhesive middle ear disease (385.1)', 'Adhesive middle ear disease (385.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.10) Adhesive middle ear disease, unspecified as to involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.10) Adhesive middle ear disease, unspecified as to involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.10''', NULL, + '(385.10) Adhesive middle ear disease, unspecified as to involvement', '(385.10) Adhesive middle ear disease, unspecified as to involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.11) Adhesions of drum head to incus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.11) Adhesions of drum head to incus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.11''', NULL, + '(385.11) Adhesions of drum head to incus', '(385.11) Adhesions of drum head to incus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.12) Adhesions of drum head to stapes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.12) Adhesions of drum head to stapes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.12''', NULL, + '(385.12) Adhesions of drum head to stapes', '(385.12) Adhesions of drum head to stapes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.13) Adhesions of drum head to promontorium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.13) Adhesions of drum head to promontorium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.13''', NULL, + '(385.13) Adhesions of drum head to promontorium', '(385.13) Adhesions of drum head to promontorium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.19) Other middle ear adhesions and combinations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.19) Other middle ear adhesions and combinations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.19''', NULL, + '(385.19) Other middle ear adhesions and combinations', '(385.19) Other middle ear adhesions and combinations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.3''', NULL, + 'Cholesteatoma of middle ear and mastoid (385.3)', 'Cholesteatoma of middle ear and mastoid (385.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.30) Cholesteatoma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.30) Cholesteatoma, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.30''', NULL, + '(385.30) Cholesteatoma, unspecified', '(385.30) Cholesteatoma, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.31) Cholesteatoma of attic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.31) Cholesteatoma of attic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.31''', NULL, + '(385.31) Cholesteatoma of attic', '(385.31) Cholesteatoma of attic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.32) Cholesteatoma of middle ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.32) Cholesteatoma of middle ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.32''', NULL, + '(385.32) Cholesteatoma of middle ear', '(385.32) Cholesteatoma of middle ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.33) Cholesteatoma of middle ear and mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.33) Cholesteatoma of middle ear and mastoid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.33''', NULL, + '(385.33) Cholesteatoma of middle ear and mastoid', '(385.33) Cholesteatoma of middle ear and mastoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.35) Diffuse cholesteatosis of middle ear and mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.35) Diffuse cholesteatosis of middle ear and mastoid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.35''', NULL, + '(385.35) Diffuse cholesteatosis of middle ear and mastoid', '(385.35) Diffuse cholesteatosis of middle ear and mastoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.2''', NULL, + 'Other acquired abnormality of ear ossicles (385.2)', 'Other acquired abnormality of ear ossicles (385.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.21) Impaired mobility of malleus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.21) Impaired mobility of malleus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.21''', NULL, + '(385.21) Impaired mobility of malleus', '(385.21) Impaired mobility of malleus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.22) Impaired mobility of other ear ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.22) Impaired mobility of other ear ossicles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.22''', NULL, + '(385.22) Impaired mobility of other ear ossicles', '(385.22) Impaired mobility of other ear ossicles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.23) Discontinuity or dislocation of ear ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.23) Discontinuity or dislocation of ear ossicles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.23''', NULL, + '(385.23) Discontinuity or dislocation of ear ossicles', '(385.23) Discontinuity or dislocation of ear ossicles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.24) Partial loss or necrosis of ear ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.24) Partial loss or necrosis of ear ossicles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.24''', NULL, + '(385.24) Partial loss or necrosis of ear ossicles', '(385.24) Partial loss or necrosis of ear ossicles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.8''', NULL, + 'Other disorders of middle ear and mastoid (385.8)', 'Other disorders of middle ear and mastoid (385.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.82) Cholesterin granuloma of middle ear and mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.82) Cholesterin granuloma of middle ear and mastoid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.82''', NULL, + '(385.82) Cholesterin granuloma of middle ear and mastoid', '(385.82) Cholesterin granuloma of middle ear and mastoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.83) Retained foreign body of middle ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.83) Retained foreign body of middle ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.83''', NULL, + '(385.83) Retained foreign body of middle ear', '(385.83) Retained foreign body of middle ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.89) Other disorders of middle ear and mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.89) Other disorders of middle ear and mastoid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.89''', NULL, + '(385.89) Other disorders of middle ear and mastoid', '(385.89) Other disorders of middle ear and mastoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.0''', NULL, + 'Tympanosclerosis (385.0)', 'Tympanosclerosis (385.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.00) Tympanosclerosis, unspecified as to involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.00) Tympanosclerosis, unspecified as to involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.00''', NULL, + '(385.00) Tympanosclerosis, unspecified as to involvement', '(385.00) Tympanosclerosis, unspecified as to involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.01) Tympanosclerosis involving tympanic membrane only\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.01) Tympanosclerosis involving tympanic membrane only\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.01''', NULL, + '(385.01) Tympanosclerosis involving tympanic membrane only', '(385.01) Tympanosclerosis involving tympanic membrane only', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.02) Tympanosclerosis involving tympanic membrane and ear ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.02) Tympanosclerosis involving tympanic membrane and ear ossicles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.02''', NULL, + '(385.02) Tympanosclerosis involving tympanic membrane and ear ossicles', '(385.02) Tympanosclerosis involving tympanic membrane and ear ossicles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.03) Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.03) Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.03''', NULL, + '(385.03) Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear', '(385.03) Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.09) Tympanosclerosis involving other combination of structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.09) Tympanosclerosis involving other combination of structures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.09''', NULL, + '(385.09) Tympanosclerosis involving other combination of structures', '(385.09) Tympanosclerosis involving other combination of structures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384''', NULL, + 'Other disorders of tympanic membrane (384)', 'Other disorders of tympanic membrane (384)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\(384.1) Chronic myringitis without mention of otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\(384.1) Chronic myringitis without mention of otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.1''', NULL, + '(384.1) Chronic myringitis without mention of otitis media', '(384.1) Chronic myringitis without mention of otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\(384.9) Unspecified disorder of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\(384.9) Unspecified disorder of tympanic membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.9''', NULL, + '(384.9) Unspecified disorder of tympanic membrane', '(384.9) Unspecified disorder of tympanic membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.0''', NULL, + 'Acute myringitis without mention of otitis media (384.0)', 'Acute myringitis without mention of otitis media (384.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.00) Acute myringitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.00) Acute myringitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.00''', NULL, + '(384.00) Acute myringitis, unspecified', '(384.00) Acute myringitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.01) Bullous myringitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.01) Bullous myringitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.01''', NULL, + '(384.01) Bullous myringitis', '(384.01) Bullous myringitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.09) Other acute myringitis without mention of otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.09) Other acute myringitis without mention of otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.09''', NULL, + '(384.09) Other acute myringitis without mention of otitis media', '(384.09) Other acute myringitis without mention of otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.8''', NULL, + 'Other specified disorders of tympanic membrane (384.8)', 'Other specified disorders of tympanic membrane (384.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\(384.81) Atrophic flaccid tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\(384.81) Atrophic flaccid tympanic membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.81''', NULL, + '(384.81) Atrophic flaccid tympanic membrane', '(384.81) Atrophic flaccid tympanic membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\(384.82) Atrophic nonflaccid tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\(384.82) Atrophic nonflaccid tympanic membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.82''', NULL, + '(384.82) Atrophic nonflaccid tympanic membrane', '(384.82) Atrophic nonflaccid tympanic membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.2''', NULL, + 'Perforation of tympanic membrane (384.2)', 'Perforation of tympanic membrane (384.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.20) Perforation of tympanic membrane, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.20) Perforation of tympanic membrane, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.20''', NULL, + '(384.20) Perforation of tympanic membrane, unspecified', '(384.20) Perforation of tympanic membrane, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.21) Central perforation of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.21) Central perforation of tympanic membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.21''', NULL, + '(384.21) Central perforation of tympanic membrane', '(384.21) Central perforation of tympanic membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.22) Attic perforation of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.22) Attic perforation of tympanic membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.22''', NULL, + '(384.22) Attic perforation of tympanic membrane', '(384.22) Attic perforation of tympanic membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.23) Other marginal perforation of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.23) Other marginal perforation of tympanic membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.23''', NULL, + '(384.23) Other marginal perforation of tympanic membrane', '(384.23) Other marginal perforation of tympanic membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.24) Multiple perforations of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.24) Multiple perforations of tympanic membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.24''', NULL, + '(384.24) Multiple perforations of tympanic membrane', '(384.24) Multiple perforations of tympanic membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.25) Total perforation of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.25) Total perforation of tympanic membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.25''', NULL, + '(384.25) Total perforation of tympanic membrane', '(384.25) Total perforation of tympanic membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387''', NULL, + 'Otosclerosis (387)', 'Otosclerosis (387)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.0) Otosclerosis involving oval window, nonobliterative\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.0) Otosclerosis involving oval window, nonobliterative\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387.0''', NULL, + '(387.0) Otosclerosis involving oval window, nonobliterative', '(387.0) Otosclerosis involving oval window, nonobliterative', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.1) Otosclerosis involving oval window, obliterative\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.1) Otosclerosis involving oval window, obliterative\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387.1''', NULL, + '(387.1) Otosclerosis involving oval window, obliterative', '(387.1) Otosclerosis involving oval window, obliterative', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.2) Cochlear otosclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.2) Cochlear otosclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387.2''', NULL, + '(387.2) Cochlear otosclerosis', '(387.2) Cochlear otosclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.8) Other otosclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.8) Other otosclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387.8''', NULL, + '(387.8) Other otosclerosis', '(387.8) Other otosclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.9) Otosclerosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.9) Otosclerosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387.9''', NULL, + '(387.9) Otosclerosis, unspecified', '(387.9) Otosclerosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382''', NULL, + 'Suppurative and unspecified otitis media (382)', 'Suppurative and unspecified otitis media (382)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.1) Chronic tubotympanic suppurative otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.1) Chronic tubotympanic suppurative otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.1''', NULL, + '(382.1) Chronic tubotympanic suppurative otitis media', '(382.1) Chronic tubotympanic suppurative otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.2) Chronic atticoantral suppurative otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.2) Chronic atticoantral suppurative otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.2''', NULL, + '(382.2) Chronic atticoantral suppurative otitis media', '(382.2) Chronic atticoantral suppurative otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.3) Unspecified chronic suppurative otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.3) Unspecified chronic suppurative otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.3''', NULL, + '(382.3) Unspecified chronic suppurative otitis media', '(382.3) Unspecified chronic suppurative otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.4) Unspecified suppurative otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.4) Unspecified suppurative otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.4''', NULL, + '(382.4) Unspecified suppurative otitis media', '(382.4) Unspecified suppurative otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.9) Unspecified otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.9) Unspecified otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.9''', NULL, + '(382.9) Unspecified otitis media', '(382.9) Unspecified otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.0''', NULL, + 'Acute suppurative otitis media (382.0)', 'Acute suppurative otitis media (382.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.00) Acute suppurative otitis media without spontaneous rupture of eardrum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.00) Acute suppurative otitis media without spontaneous rupture of eardrum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.00''', NULL, + '(382.00) Acute suppurative otitis media without spontaneous rupture of eardrum', '(382.00) Acute suppurative otitis media without spontaneous rupture of eardrum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.01) Acute suppurative otitis media with spontaneous rupture of eardrum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.01) Acute suppurative otitis media with spontaneous rupture of eardrum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.01''', NULL, + '(382.01) Acute suppurative otitis media with spontaneous rupture of eardrum', '(382.01) Acute suppurative otitis media with spontaneous rupture of eardrum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.02) Acute suppurative otitis media in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.02) Acute suppurative otitis media in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.02''', NULL, + '(382.02) Acute suppurative otitis media in diseases classified elsewhere', '(382.02) Acute suppurative otitis media in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386''', NULL, + 'Vertiginous syndromes and other disorders of vestibular system (386)', 'Vertiginous syndromes and other disorders of vestibular system (386)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.2) Vertigo of central origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.2) Vertigo of central origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.2''', NULL, + '(386.2) Vertigo of central origin', '(386.2) Vertigo of central origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.8) Other disorders of labyrinth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.8) Other disorders of labyrinth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.8''', NULL, + '(386.8) Other disorders of labyrinth', '(386.8) Other disorders of labyrinth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.9) Unspecified vertiginous syndromes and labyrinthine disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.9) Unspecified vertiginous syndromes and labyrinthine disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.9''', NULL, + '(386.9) Unspecified vertiginous syndromes and labyrinthine disorders', '(386.9) Unspecified vertiginous syndromes and labyrinthine disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.5''', NULL, + 'Labyrinthine dysfunction (386.5)', 'Labyrinthine dysfunction (386.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.50) Labyrinthine dysfunction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.50) Labyrinthine dysfunction, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.50''', NULL, + '(386.50) Labyrinthine dysfunction, unspecified', '(386.50) Labyrinthine dysfunction, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.51) Hyperactive labyrinth, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.51) Hyperactive labyrinth, unilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.51''', NULL, + '(386.51) Hyperactive labyrinth, unilateral', '(386.51) Hyperactive labyrinth, unilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.52) Hyperactive labyrinth, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.52) Hyperactive labyrinth, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.52''', NULL, + '(386.52) Hyperactive labyrinth, bilateral', '(386.52) Hyperactive labyrinth, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.53) Hypoactive labyrinth, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.53) Hypoactive labyrinth, unilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.53''', NULL, + '(386.53) Hypoactive labyrinth, unilateral', '(386.53) Hypoactive labyrinth, unilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.54) Hypoactive labyrinth, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.54) Hypoactive labyrinth, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.54''', NULL, + '(386.54) Hypoactive labyrinth, bilateral', '(386.54) Hypoactive labyrinth, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.55) Loss of labyrinthine reactivity, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.55) Loss of labyrinthine reactivity, unilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.55''', NULL, + '(386.55) Loss of labyrinthine reactivity, unilateral', '(386.55) Loss of labyrinthine reactivity, unilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.56) Loss of labyrinthine reactivity, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.56) Loss of labyrinthine reactivity, bilateral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.56''', NULL, + '(386.56) Loss of labyrinthine reactivity, bilateral', '(386.56) Loss of labyrinthine reactivity, bilateral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.58) Other forms and combinations of labyrinthine dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.58) Other forms and combinations of labyrinthine dysfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.58''', NULL, + '(386.58) Other forms and combinations of labyrinthine dysfunction', '(386.58) Other forms and combinations of labyrinthine dysfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.4''', NULL, + 'Labyrinthine fistula (386.4)', 'Labyrinthine fistula (386.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.40) Labyrinthine fistula, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.40) Labyrinthine fistula, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.40''', NULL, + '(386.40) Labyrinthine fistula, unspecified', '(386.40) Labyrinthine fistula, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.41) Round window fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.41) Round window fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.41''', NULL, + '(386.41) Round window fistula', '(386.41) Round window fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.42) Oval window fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.42) Oval window fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.42''', NULL, + '(386.42) Oval window fistula', '(386.42) Oval window fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.43) Semicircular canal fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.43) Semicircular canal fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.43''', NULL, + '(386.43) Semicircular canal fistula', '(386.43) Semicircular canal fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.48) Labyrinthine fistula of combined sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.48) Labyrinthine fistula of combined sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.48''', NULL, + '(386.48) Labyrinthine fistula of combined sites', '(386.48) Labyrinthine fistula of combined sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.3''', NULL, + 'Labyrinthitis (386.3)', 'Labyrinthitis (386.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.30) Labyrinthitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.30) Labyrinthitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.30''', NULL, + '(386.30) Labyrinthitis, unspecified', '(386.30) Labyrinthitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.31) Serous labyrinthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.31) Serous labyrinthitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.31''', NULL, + '(386.31) Serous labyrinthitis', '(386.31) Serous labyrinthitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.32) Circumscribed labyrinthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.32) Circumscribed labyrinthitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.32''', NULL, + '(386.32) Circumscribed labyrinthitis', '(386.32) Circumscribed labyrinthitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.33) Suppurative labyrinthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.33) Suppurative labyrinthitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.33''', NULL, + '(386.33) Suppurative labyrinthitis', '(386.33) Suppurative labyrinthitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.34) Toxic labyrinthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.34) Toxic labyrinthitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.34''', NULL, + '(386.34) Toxic labyrinthitis', '(386.34) Toxic labyrinthitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.35) Viral labyrinthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.35) Viral labyrinthitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.35''', NULL, + '(386.35) Viral labyrinthitis', '(386.35) Viral labyrinthitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.0''', NULL, + 'Meniere''s disease (386.0)', 'Meniere''s disease (386.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.00) Meniere''s disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.00) Meniere''s disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.00''', NULL, + '(386.00) Meniere''s disease, unspecified', '(386.00) Meniere''s disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.01) Active Meniere''s disease, cochleovestibular\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.01) Active Meniere''s disease, cochleovestibular\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.01''', NULL, + '(386.01) Active Meniere''s disease, cochleovestibular', '(386.01) Active Meniere''s disease, cochleovestibular', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.02) Active Meniere''s disease, cochlear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.02) Active Meniere''s disease, cochlear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.02''', NULL, + '(386.02) Active Meniere''s disease, cochlear', '(386.02) Active Meniere''s disease, cochlear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.03) Active Meniere''s disease, vestibular\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.03) Active Meniere''s disease, vestibular\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.03''', NULL, + '(386.03) Active Meniere''s disease, vestibular', '(386.03) Active Meniere''s disease, vestibular', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.04) Inactive Meniere''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.04) Inactive Meniere''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.04''', NULL, + '(386.04) Inactive Meniere''s disease', '(386.04) Inactive Meniere''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.1''', NULL, + 'Other and unspecified peripheral vertigo (386.1)', 'Other and unspecified peripheral vertigo (386.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.10) Peripheral vertigo, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.10) Peripheral vertigo, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.10''', NULL, + '(386.10) Peripheral vertigo, unspecified', '(386.10) Peripheral vertigo, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.11) Benign paroxysmal positional vertigo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.11) Benign paroxysmal positional vertigo\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.11''', NULL, + '(386.11) Benign paroxysmal positional vertigo', '(386.11) Benign paroxysmal positional vertigo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.12) Vestibular neuronitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.12) Vestibular neuronitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.12''', NULL, + '(386.12) Vestibular neuronitis', '(386.12) Vestibular neuronitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.19) Other peripheral vertigo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.19) Other peripheral vertigo\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.19''', NULL, + '(386.19) Other peripheral vertigo', '(386.19) Other peripheral vertigo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''360'' AND ''379.99''', NULL, + 'Disorders of the eye and adnexa (360-379.99)', 'Disorders of the eye and adnexa (360-379.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369''', NULL, + 'Blindness and low vision (369)', 'Blindness and low vision (369)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.3) Unqualified visual loss, both eyes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.3) Unqualified visual loss, both eyes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.3''', NULL, + '(369.3) Unqualified visual loss, both eyes', '(369.3) Unqualified visual loss, both eyes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.4) Legal blindness, as defined in U.S.A.\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.4) Legal blindness, as defined in U.S.A.\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.4''', NULL, + '(369.4) Legal blindness, as defined in U.S.A.', '(369.4) Legal blindness, as defined in U.S.A.', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.8) Unqualified visual loss, one eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.8) Unqualified visual loss, one eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.8''', NULL, + '(369.8) Unqualified visual loss, one eye', '(369.8) Unqualified visual loss, one eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.9) Unspecified visual loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.9) Unspecified visual loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.9''', NULL, + '(369.9) Unspecified visual loss', '(369.9) Unspecified visual loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.1''', NULL, + 'Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)', 'Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.10) Moderate or severe impairment, better eye, impairment level not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.10) Moderate or severe impairment, better eye, impairment level not further specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.10''', NULL, + '(369.10) Moderate or severe impairment, better eye, impairment level not further specified', '(369.10) Moderate or severe impairment, better eye, impairment level not further specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.11) Better eye: severe vision impairment; lesser eye: blind, not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.11) Better eye: severe vision impairment; lesser eye: blind, not further specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.11''', NULL, + '(369.11) Better eye: severe vision impairment; lesser eye: blind, not further specified', '(369.11) Better eye: severe vision impairment; lesser eye: blind, not further specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.12) Better eye: severe vision impairment; lesser eye: total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.12) Better eye: severe vision impairment; lesser eye: total vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.12''', NULL, + '(369.12) Better eye: severe vision impairment; lesser eye: total vision impairment', '(369.12) Better eye: severe vision impairment; lesser eye: total vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.13) Better eye: severe vision impairment; lesser eye: near-total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.13) Better eye: severe vision impairment; lesser eye: near-total vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.13''', NULL, + '(369.13) Better eye: severe vision impairment; lesser eye: near-total vision impairment', '(369.13) Better eye: severe vision impairment; lesser eye: near-total vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.14) Better eye: severe vision impairment; lesser eye: profound vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.14) Better eye: severe vision impairment; lesser eye: profound vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.14''', NULL, + '(369.14) Better eye: severe vision impairment; lesser eye: profound vision impairment', '(369.14) Better eye: severe vision impairment; lesser eye: profound vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.15) Better eye: moderate vision impairment; lesser eye: blind, not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.15) Better eye: moderate vision impairment; lesser eye: blind, not further specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.15''', NULL, + '(369.15) Better eye: moderate vision impairment; lesser eye: blind, not further specified', '(369.15) Better eye: moderate vision impairment; lesser eye: blind, not further specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.16) Better eye: moderate vision impairment; lesser eye: total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.16) Better eye: moderate vision impairment; lesser eye: total vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.16''', NULL, + '(369.16) Better eye: moderate vision impairment; lesser eye: total vision impairment', '(369.16) Better eye: moderate vision impairment; lesser eye: total vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.17) Better eye: moderate vision impairment; lesser eye: near-total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.17) Better eye: moderate vision impairment; lesser eye: near-total vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.17''', NULL, + '(369.17) Better eye: moderate vision impairment; lesser eye: near-total vision impairment', '(369.17) Better eye: moderate vision impairment; lesser eye: near-total vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.18) Better eye: moderate vision impairment; lesser eye: profound vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.18) Better eye: moderate vision impairment; lesser eye: profound vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.18''', NULL, + '(369.18) Better eye: moderate vision impairment; lesser eye: profound vision impairment', '(369.18) Better eye: moderate vision impairment; lesser eye: profound vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.2''', NULL, + 'Moderate or severe vision impairment, both eyes (369.2)', 'Moderate or severe vision impairment, both eyes (369.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.20) Moderate or severe impairment, both eyes, impairment level not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.20) Moderate or severe impairment, both eyes, impairment level not further specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.20''', NULL, + '(369.20) Moderate or severe impairment, both eyes, impairment level not further specified', '(369.20) Moderate or severe impairment, both eyes, impairment level not further specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.21) Better eye: severe vision impairment; lesser eye; impairment not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.21) Better eye: severe vision impairment; lesser eye; impairment not further specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.21''', NULL, + '(369.21) Better eye: severe vision impairment; lesser eye; impairment not further specified', '(369.21) Better eye: severe vision impairment; lesser eye; impairment not further specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.22) Better eye: severe vision impairment; lesser eye: severe vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.22) Better eye: severe vision impairment; lesser eye: severe vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.22''', NULL, + '(369.22) Better eye: severe vision impairment; lesser eye: severe vision impairment', '(369.22) Better eye: severe vision impairment; lesser eye: severe vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.23) Better eye: moderate vision impairment; lesser eye: impairment not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.23) Better eye: moderate vision impairment; lesser eye: impairment not further specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.23''', NULL, + '(369.23) Better eye: moderate vision impairment; lesser eye: impairment not further specified', '(369.23) Better eye: moderate vision impairment; lesser eye: impairment not further specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.24) Better eye: moderate vision impairment; lesser eye: severe vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.24) Better eye: moderate vision impairment; lesser eye: severe vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.24''', NULL, + '(369.24) Better eye: moderate vision impairment; lesser eye: severe vision impairment', '(369.24) Better eye: moderate vision impairment; lesser eye: severe vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.25) Better eye: moderate vision impairment; lesser eye: moderate vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.25) Better eye: moderate vision impairment; lesser eye: moderate vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.25''', NULL, + '(369.25) Better eye: moderate vision impairment; lesser eye: moderate vision impairment', '(369.25) Better eye: moderate vision impairment; lesser eye: moderate vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.7''', NULL, + 'Moderate or severe vision impairment, one eye (369.7)', 'Moderate or severe vision impairment, one eye (369.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.70) Moderate or severe impairment, one eye, impairment level not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.70) Moderate or severe impairment, one eye, impairment level not further specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.70''', NULL, + '(369.70) Moderate or severe impairment, one eye, impairment level not further specified', '(369.70) Moderate or severe impairment, one eye, impairment level not further specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.71) One eye: severe vision impairment; other eye: vision not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.71) One eye: severe vision impairment; other eye: vision not specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.71''', NULL, + '(369.71) One eye: severe vision impairment; other eye: vision not specified', '(369.71) One eye: severe vision impairment; other eye: vision not specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.72) One eye: severe vision impairment; other eye: near-normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.72) One eye: severe vision impairment; other eye: near-normal vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.72''', NULL, + '(369.72) One eye: severe vision impairment; other eye: near-normal vision', '(369.72) One eye: severe vision impairment; other eye: near-normal vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.73) One eye: severe vision impairment; other eye: normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.73) One eye: severe vision impairment; other eye: normal vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.73''', NULL, + '(369.73) One eye: severe vision impairment; other eye: normal vision', '(369.73) One eye: severe vision impairment; other eye: normal vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.74) One eye: moderate vision impairment; other eye: vision not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.74) One eye: moderate vision impairment; other eye: vision not specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.74''', NULL, + '(369.74) One eye: moderate vision impairment; other eye: vision not specified', '(369.74) One eye: moderate vision impairment; other eye: vision not specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.75) One eye: moderate vision impairment; other eye: near-normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.75) One eye: moderate vision impairment; other eye: near-normal vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.75''', NULL, + '(369.75) One eye: moderate vision impairment; other eye: near-normal vision', '(369.75) One eye: moderate vision impairment; other eye: near-normal vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.76) One eye: moderate vision impairment; other eye: normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.76) One eye: moderate vision impairment; other eye: normal vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.76''', NULL, + '(369.76) One eye: moderate vision impairment; other eye: normal vision', '(369.76) One eye: moderate vision impairment; other eye: normal vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.0''', NULL, + 'Profound vision impairment, both eyes (369.0)', 'Profound vision impairment, both eyes (369.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.00) Profound impairment, both eyes, impairment level not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.00) Profound impairment, both eyes, impairment level not further specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.00''', NULL, + '(369.00) Profound impairment, both eyes, impairment level not further specified', '(369.00) Profound impairment, both eyes, impairment level not further specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.01) Better eye: total vision impairment; lesser eye: total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.01) Better eye: total vision impairment; lesser eye: total vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.01''', NULL, + '(369.01) Better eye: total vision impairment; lesser eye: total vision impairment', '(369.01) Better eye: total vision impairment; lesser eye: total vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.02) Better eye: near-total vision impairment; lesser eye: not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.02) Better eye: near-total vision impairment; lesser eye: not further specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.02''', NULL, + '(369.02) Better eye: near-total vision impairment; lesser eye: not further specified', '(369.02) Better eye: near-total vision impairment; lesser eye: not further specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.03) Better eye: near-total vision impairment; lesser eye: total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.03) Better eye: near-total vision impairment; lesser eye: total vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.03''', NULL, + '(369.03) Better eye: near-total vision impairment; lesser eye: total vision impairment', '(369.03) Better eye: near-total vision impairment; lesser eye: total vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.04) Better eye: near-total vision impairment; lesser eye: near-total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.04) Better eye: near-total vision impairment; lesser eye: near-total vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.04''', NULL, + '(369.04) Better eye: near-total vision impairment; lesser eye: near-total vision impairment', '(369.04) Better eye: near-total vision impairment; lesser eye: near-total vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.05) Better eye: profound vision impairment; lesser eye: not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.05) Better eye: profound vision impairment; lesser eye: not further specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.05''', NULL, + '(369.05) Better eye: profound vision impairment; lesser eye: not further specified', '(369.05) Better eye: profound vision impairment; lesser eye: not further specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.06) Better eye: profound vision impairment; lesser eye: total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.06) Better eye: profound vision impairment; lesser eye: total vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.06''', NULL, + '(369.06) Better eye: profound vision impairment; lesser eye: total vision impairment', '(369.06) Better eye: profound vision impairment; lesser eye: total vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.07) Better eye: profound vision impairment; lesser eye: near-total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.07) Better eye: profound vision impairment; lesser eye: near-total vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.07''', NULL, + '(369.07) Better eye: profound vision impairment; lesser eye: near-total vision impairment', '(369.07) Better eye: profound vision impairment; lesser eye: near-total vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.08) Better eye: profound vision impairment; lesser eye: profound vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.08) Better eye: profound vision impairment; lesser eye: profound vision impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.08''', NULL, + '(369.08) Better eye: profound vision impairment; lesser eye: profound vision impairment', '(369.08) Better eye: profound vision impairment; lesser eye: profound vision impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.6''', NULL, + 'Profound vision impairment, one eye (369.6)', 'Profound vision impairment, one eye (369.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.60) Profound impairment, one eye, impairment level not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.60) Profound impairment, one eye, impairment level not further specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.60''', NULL, + '(369.60) Profound impairment, one eye, impairment level not further specified', '(369.60) Profound impairment, one eye, impairment level not further specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.61) One eye: total vision impairment; other eye: not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.61) One eye: total vision impairment; other eye: not specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.61''', NULL, + '(369.61) One eye: total vision impairment; other eye: not specified', '(369.61) One eye: total vision impairment; other eye: not specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.62) One eye: total vision impairment; other eye: near-normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.62) One eye: total vision impairment; other eye: near-normal vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.62''', NULL, + '(369.62) One eye: total vision impairment; other eye: near-normal vision', '(369.62) One eye: total vision impairment; other eye: near-normal vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.63) One eye: total vision impairment; other eye: normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.63) One eye: total vision impairment; other eye: normal vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.63''', NULL, + '(369.63) One eye: total vision impairment; other eye: normal vision', '(369.63) One eye: total vision impairment; other eye: normal vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.64) One eye: near-total vision impairment; other eye: vision not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.64) One eye: near-total vision impairment; other eye: vision not specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.64''', NULL, + '(369.64) One eye: near-total vision impairment; other eye: vision not specified', '(369.64) One eye: near-total vision impairment; other eye: vision not specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.65) One eye: near-total vision impairment; other eye: near-normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.65) One eye: near-total vision impairment; other eye: near-normal vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.65''', NULL, + '(369.65) One eye: near-total vision impairment; other eye: near-normal vision', '(369.65) One eye: near-total vision impairment; other eye: near-normal vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.66) One eye: near-total vision impairment; other eye: normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.66) One eye: near-total vision impairment; other eye: normal vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.66''', NULL, + '(369.66) One eye: near-total vision impairment; other eye: normal vision', '(369.66) One eye: near-total vision impairment; other eye: normal vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.67) One eye: profound vision impairment; other eye: vision not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.67) One eye: profound vision impairment; other eye: vision not specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.67''', NULL, + '(369.67) One eye: profound vision impairment; other eye: vision not specified', '(369.67) One eye: profound vision impairment; other eye: vision not specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.68) One eye: profound vision impairment; other eye: near-normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.68) One eye: profound vision impairment; other eye: near-normal vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.68''', NULL, + '(369.68) One eye: profound vision impairment; other eye: near-normal vision', '(369.68) One eye: profound vision impairment; other eye: near-normal vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.69) One eye: profound vision impairment; other eye: normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.69) One eye: profound vision impairment; other eye: normal vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.69''', NULL, + '(369.69) One eye: profound vision impairment; other eye: normal vision', '(369.69) One eye: profound vision impairment; other eye: normal vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366''', NULL, + 'Cataract (366)', 'Cataract (366)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\(366.8) Other cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\(366.8) Other cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.8''', NULL, + '(366.8) Other cataract', '(366.8) Other cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\(366.9) Unspecified cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\(366.9) Unspecified cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.9''', NULL, + '(366.9) Unspecified cataract', '(366.9) Unspecified cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.5''', NULL, + 'After-cataract (366.5)', 'After-cataract (366.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.50) After-cataract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.50) After-cataract, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.50''', NULL, + '(366.50) After-cataract, unspecified', '(366.50) After-cataract, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.51) Soemmering''s ring\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.51) Soemmering''s ring\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.51''', NULL, + '(366.51) Soemmering''s ring', '(366.51) Soemmering''s ring', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.52) Other after-cataract, not obscuring vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.52) Other after-cataract, not obscuring vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.52''', NULL, + '(366.52) Other after-cataract, not obscuring vision', '(366.52) Other after-cataract, not obscuring vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.53) After-cataract, obscuring vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.53) After-cataract, obscuring vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.53''', NULL, + '(366.53) After-cataract, obscuring vision', '(366.53) After-cataract, obscuring vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.4''', NULL, + 'Cataract associated with other disorders (366.4)', 'Cataract associated with other disorders (366.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.41) Diabetic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.41) Diabetic cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.41''', NULL, + '(366.41) Diabetic cataract', '(366.41) Diabetic cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.42) Tetanic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.42) Tetanic cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.42''', NULL, + '(366.42) Tetanic cataract', '(366.42) Tetanic cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.43) Myotonic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.43) Myotonic cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.43''', NULL, + '(366.43) Myotonic cataract', '(366.43) Myotonic cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.44) Cataract associated with other syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.44) Cataract associated with other syndromes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.44''', NULL, + '(366.44) Cataract associated with other syndromes', '(366.44) Cataract associated with other syndromes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.45) Toxic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.45) Toxic cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.45''', NULL, + '(366.45) Toxic cataract', '(366.45) Toxic cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.46) Cataract associated with radiation and other physical influences\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.46) Cataract associated with radiation and other physical influences\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.46''', NULL, + '(366.46) Cataract associated with radiation and other physical influences', '(366.46) Cataract associated with radiation and other physical influences', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.3''', NULL, + 'Cataract secondary to ocular disorders (366.3)', 'Cataract secondary to ocular disorders (366.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.30) Cataracta complicata, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.30) Cataracta complicata, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.30''', NULL, + '(366.30) Cataracta complicata, unspecified', '(366.30) Cataracta complicata, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.31) Glaucomatous flecks (subcapsular)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.31) Glaucomatous flecks (subcapsular)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.31) Glaucomatous flecks (subcapsular''', NULL, + '(366.31) Glaucomatous flecks (subcapsular)', '(366.31) Glaucomatous flecks (subcapsular)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.32) Cataract in inflammatory ocular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.32) Cataract in inflammatory ocular disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.32''', NULL, + '(366.32) Cataract in inflammatory ocular disorders', '(366.32) Cataract in inflammatory ocular disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.33) Cataract with neovascularization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.33) Cataract with neovascularization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.33''', NULL, + '(366.33) Cataract with neovascularization', '(366.33) Cataract with neovascularization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.34) Cataract in degenerative ocular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.34) Cataract in degenerative ocular disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.34''', NULL, + '(366.34) Cataract in degenerative ocular disorders', '(366.34) Cataract in degenerative ocular disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.0''', NULL, + 'Infantile, juvenile, and presenile cataract (366.0)', 'Infantile, juvenile, and presenile cataract (366.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.00) Nonsenile cataract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.00) Nonsenile cataract, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.00''', NULL, + '(366.00) Nonsenile cataract, unspecified', '(366.00) Nonsenile cataract, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.01) Anterior subcapsular polar cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.01) Anterior subcapsular polar cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.01''', NULL, + '(366.01) Anterior subcapsular polar cataract', '(366.01) Anterior subcapsular polar cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.02) Posterior subcapsular polar cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.02) Posterior subcapsular polar cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.02''', NULL, + '(366.02) Posterior subcapsular polar cataract', '(366.02) Posterior subcapsular polar cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.03) Cortical, lamellar, or zonular cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.03) Cortical, lamellar, or zonular cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.03''', NULL, + '(366.03) Cortical, lamellar, or zonular cataract', '(366.03) Cortical, lamellar, or zonular cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.04) Nuclear cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.04) Nuclear cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.04''', NULL, + '(366.04) Nuclear cataract', '(366.04) Nuclear cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.09) Other and combined forms of nonsenile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.09) Other and combined forms of nonsenile cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.09''', NULL, + '(366.09) Other and combined forms of nonsenile cataract', '(366.09) Other and combined forms of nonsenile cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.1''', NULL, + 'Senile cataract (366.1)', 'Senile cataract (366.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.10) Senile cataract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.10) Senile cataract, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.10''', NULL, + '(366.10) Senile cataract, unspecified', '(366.10) Senile cataract, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.11) Pseudoexfoliation of lens capsule\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.11) Pseudoexfoliation of lens capsule\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.11''', NULL, + '(366.11) Pseudoexfoliation of lens capsule', '(366.11) Pseudoexfoliation of lens capsule', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.12) Incipient senile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.12) Incipient senile cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.12''', NULL, + '(366.12) Incipient senile cataract', '(366.12) Incipient senile cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.13) Anterior subcapsular polar senile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.13) Anterior subcapsular polar senile cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.13''', NULL, + '(366.13) Anterior subcapsular polar senile cataract', '(366.13) Anterior subcapsular polar senile cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.14) Posterior subcapsular polar senile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.14) Posterior subcapsular polar senile cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.14''', NULL, + '(366.14) Posterior subcapsular polar senile cataract', '(366.14) Posterior subcapsular polar senile cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.15) Cortical senile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.15) Cortical senile cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.15''', NULL, + '(366.15) Cortical senile cataract', '(366.15) Cortical senile cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.16) Senile nuclear sclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.16) Senile nuclear sclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.16''', NULL, + '(366.16) Senile nuclear sclerosis', '(366.16) Senile nuclear sclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.17) Total or mature cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.17) Total or mature cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.17''', NULL, + '(366.17) Total or mature cataract', '(366.17) Total or mature cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.18) Hypermature cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.18) Hypermature cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.18''', NULL, + '(366.18) Hypermature cataract', '(366.18) Hypermature cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.19) Other and combined forms of senile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.19) Other and combined forms of senile cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.19''', NULL, + '(366.19) Other and combined forms of senile cataract', '(366.19) Other and combined forms of senile cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.2''', NULL, + 'Traumatic cataract (366.2)', 'Traumatic cataract (366.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.20) Traumatic cataract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.20) Traumatic cataract, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.20''', NULL, + '(366.20) Traumatic cataract, unspecified', '(366.20) Traumatic cataract, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.21) Localized traumatic opacities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.21) Localized traumatic opacities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.21''', NULL, + '(366.21) Localized traumatic opacities', '(366.21) Localized traumatic opacities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.22) Total traumatic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.22) Total traumatic cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.22''', NULL, + '(366.22) Total traumatic cataract', '(366.22) Total traumatic cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.23) Partially resolved traumatic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.23) Partially resolved traumatic cataract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.23''', NULL, + '(366.23) Partially resolved traumatic cataract', '(366.23) Partially resolved traumatic cataract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363''', NULL, + 'Chorioretinal inflammations, scars, and other disorders of choroid (363)', 'Chorioretinal inflammations, scars, and other disorders of choroid (363)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\(363.8) Other disorders of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\(363.8) Other disorders of choroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.8''', NULL, + '(363.8) Other disorders of choroid', '(363.8) Other disorders of choroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\(363.9) Unspecified disorder of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\(363.9) Unspecified disorder of choroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.9''', NULL, + '(363.9) Unspecified disorder of choroid', '(363.9) Unspecified disorder of choroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.3''', NULL, + 'Chorioretinal scars (363.3)', 'Chorioretinal scars (363.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.30) Chorioretinal scar, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.30) Chorioretinal scar, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.30''', NULL, + '(363.30) Chorioretinal scar, unspecified', '(363.30) Chorioretinal scar, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.31) Solar retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.31) Solar retinopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.31''', NULL, + '(363.31) Solar retinopathy', '(363.31) Solar retinopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.32) Other macular scars\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.32) Other macular scars\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.32''', NULL, + '(363.32) Other macular scars', '(363.32) Other macular scars', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.33) Other scars of posterior pole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.33) Other scars of posterior pole\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.33''', NULL, + '(363.33) Other scars of posterior pole', '(363.33) Other scars of posterior pole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.34) Peripheral scars\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.34) Peripheral scars\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.34''', NULL, + '(363.34) Peripheral scars', '(363.34) Peripheral scars', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.35) Disseminated scars\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.35) Disseminated scars\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.35''', NULL, + '(363.35) Disseminated scars', '(363.35) Disseminated scars', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.4''', NULL, + 'Choroidal degenerations (363.4)', 'Choroidal degenerations (363.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.40) Choroidal degeneration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.40) Choroidal degeneration, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.40''', NULL, + '(363.40) Choroidal degeneration, unspecified', '(363.40) Choroidal degeneration, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.41) Senile atrophy of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.41) Senile atrophy of choroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.41''', NULL, + '(363.41) Senile atrophy of choroid', '(363.41) Senile atrophy of choroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.42) Diffuse secondary atrophy of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.42) Diffuse secondary atrophy of choroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.42''', NULL, + '(363.42) Diffuse secondary atrophy of choroid', '(363.42) Diffuse secondary atrophy of choroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.43) Angioid streaks of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.43) Angioid streaks of choroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.43''', NULL, + '(363.43) Angioid streaks of choroid', '(363.43) Angioid streaks of choroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.7''', NULL, + 'Choroidal detachment (363.7)', 'Choroidal detachment (363.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.70) Choroidal detachment, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.70) Choroidal detachment, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.70''', NULL, + '(363.70) Choroidal detachment, unspecified', '(363.70) Choroidal detachment, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.71) Serous choroidal detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.71) Serous choroidal detachment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.71''', NULL, + '(363.71) Serous choroidal detachment', '(363.71) Serous choroidal detachment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.72) Hemorrhagic choroidal detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.72) Hemorrhagic choroidal detachment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.72''', NULL, + '(363.72) Hemorrhagic choroidal detachment', '(363.72) Hemorrhagic choroidal detachment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.6''', NULL, + 'Choroidal hemorrhage and rupture (363.6)', 'Choroidal hemorrhage and rupture (363.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.61) Choroidal hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.61) Choroidal hemorrhage, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.61''', NULL, + '(363.61) Choroidal hemorrhage, unspecified', '(363.61) Choroidal hemorrhage, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.62) Expulsive choroidal hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.62) Expulsive choroidal hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.62''', NULL, + '(363.62) Expulsive choroidal hemorrhage', '(363.62) Expulsive choroidal hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.63) Choroidal rupture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.63) Choroidal rupture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.63''', NULL, + '(363.63) Choroidal rupture', '(363.63) Choroidal rupture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.1''', NULL, + 'Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)', 'Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.10) Disseminated chorioretinitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.10) Disseminated chorioretinitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.10''', NULL, + '(363.10) Disseminated chorioretinitis, unspecified', '(363.10) Disseminated chorioretinitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.11) Disseminated choroiditis and chorioretinitis, posterior pole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.11) Disseminated choroiditis and chorioretinitis, posterior pole\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.11''', NULL, + '(363.11) Disseminated choroiditis and chorioretinitis, posterior pole', '(363.11) Disseminated choroiditis and chorioretinitis, posterior pole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.12) Disseminated choroiditis and chorioretinitis, peripheral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.12) Disseminated choroiditis and chorioretinitis, peripheral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.12''', NULL, + '(363.12) Disseminated choroiditis and chorioretinitis, peripheral', '(363.12) Disseminated choroiditis and chorioretinitis, peripheral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.13) Disseminated choroiditis and chorioretinitis, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.13) Disseminated choroiditis and chorioretinitis, generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.13''', NULL, + '(363.13) Disseminated choroiditis and chorioretinitis, generalized', '(363.13) Disseminated choroiditis and chorioretinitis, generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.14) Disseminated retinitis and retinochoroiditis, metastatic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.14) Disseminated retinitis and retinochoroiditis, metastatic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.14''', NULL, + '(363.14) Disseminated retinitis and retinochoroiditis, metastatic', '(363.14) Disseminated retinitis and retinochoroiditis, metastatic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.15) Disseminated retinitis and retinochoroiditis, pigment epitheliopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.15) Disseminated retinitis and retinochoroiditis, pigment epitheliopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.15''', NULL, + '(363.15) Disseminated retinitis and retinochoroiditis, pigment epitheliopathy', '(363.15) Disseminated retinitis and retinochoroiditis, pigment epitheliopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.0''', NULL, + 'Focal chorioretinitis and focal retinochoroiditis (363.0)', 'Focal chorioretinitis and focal retinochoroiditis (363.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.00) Focal chorioretinitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.00) Focal chorioretinitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.00''', NULL, + '(363.00) Focal chorioretinitis, unspecified', '(363.00) Focal chorioretinitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.01) Focal choroiditis and chorioretinitis, juxtapapillary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.01) Focal choroiditis and chorioretinitis, juxtapapillary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.01''', NULL, + '(363.01) Focal choroiditis and chorioretinitis, juxtapapillary', '(363.01) Focal choroiditis and chorioretinitis, juxtapapillary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.03) Focal choroiditis and chorioretinitis of other posterior pole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.03) Focal choroiditis and chorioretinitis of other posterior pole\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.03''', NULL, + '(363.03) Focal choroiditis and chorioretinitis of other posterior pole', '(363.03) Focal choroiditis and chorioretinitis of other posterior pole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.04) Focal choroiditis and chorioretinitis, peripheral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.04) Focal choroiditis and chorioretinitis, peripheral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.04''', NULL, + '(363.04) Focal choroiditis and chorioretinitis, peripheral', '(363.04) Focal choroiditis and chorioretinitis, peripheral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.05) Focal retinitis and retinochoroiditis, juxtapapillary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.05) Focal retinitis and retinochoroiditis, juxtapapillary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.05''', NULL, + '(363.05) Focal retinitis and retinochoroiditis, juxtapapillary', '(363.05) Focal retinitis and retinochoroiditis, juxtapapillary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.06) Focal retinitis and retinochoroiditis, macular or paramacular\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.06) Focal retinitis and retinochoroiditis, macular or paramacular\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.06''', NULL, + '(363.06) Focal retinitis and retinochoroiditis, macular or paramacular', '(363.06) Focal retinitis and retinochoroiditis, macular or paramacular', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.07) Focal retinitis and retinochoroiditis of other posterior pole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.07) Focal retinitis and retinochoroiditis of other posterior pole\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.07''', NULL, + '(363.07) Focal retinitis and retinochoroiditis of other posterior pole', '(363.07) Focal retinitis and retinochoroiditis of other posterior pole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.08) Focal retinitis and retinochoroiditis, peripheral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.08) Focal retinitis and retinochoroiditis, peripheral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.08''', NULL, + '(363.08) Focal retinitis and retinochoroiditis, peripheral', '(363.08) Focal retinitis and retinochoroiditis, peripheral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.5''', NULL, + 'Hereditary choroidal dystrophies (363.5)', 'Hereditary choroidal dystrophies (363.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.50) Hereditary choroidal dystrophy or atrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.50) Hereditary choroidal dystrophy or atrophy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.50''', NULL, + '(363.50) Hereditary choroidal dystrophy or atrophy, unspecified', '(363.50) Hereditary choroidal dystrophy or atrophy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.51) Circumpapillary dystrophy of choroid, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.51) Circumpapillary dystrophy of choroid, partial\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.51''', NULL, + '(363.51) Circumpapillary dystrophy of choroid, partial', '(363.51) Circumpapillary dystrophy of choroid, partial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.52) Circumpapillary dystrophy of choroid, total\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.52) Circumpapillary dystrophy of choroid, total\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.52''', NULL, + '(363.52) Circumpapillary dystrophy of choroid, total', '(363.52) Circumpapillary dystrophy of choroid, total', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.53) Central dystrophy of choroid, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.53) Central dystrophy of choroid, partial\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.53''', NULL, + '(363.53) Central dystrophy of choroid, partial', '(363.53) Central dystrophy of choroid, partial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.54) Central choroidal atrophy, total\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.54) Central choroidal atrophy, total\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.54''', NULL, + '(363.54) Central choroidal atrophy, total', '(363.54) Central choroidal atrophy, total', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.55) Choroideremia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.55) Choroideremia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.55''', NULL, + '(363.55) Choroideremia', '(363.55) Choroideremia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.56) Other diffuse or generalized dystrophy of choroid, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.56) Other diffuse or generalized dystrophy of choroid, partial\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.56''', NULL, + '(363.56) Other diffuse or generalized dystrophy of choroid, partial', '(363.56) Other diffuse or generalized dystrophy of choroid, partial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.57) Other diffuse or generalized dystrophy of choroid, total\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.57) Other diffuse or generalized dystrophy of choroid, total\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.57''', NULL, + '(363.57) Other diffuse or generalized dystrophy of choroid, total', '(363.57) Other diffuse or generalized dystrophy of choroid, total', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.2''', NULL, + 'Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)', 'Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.20) Chorioretinitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.20) Chorioretinitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.20''', NULL, + '(363.20) Chorioretinitis, unspecified', '(363.20) Chorioretinitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.21) Pars planitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.21) Pars planitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.21''', NULL, + '(363.21) Pars planitis', '(363.21) Pars planitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.22) Harada''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.22) Harada''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.22''', NULL, + '(363.22) Harada''s disease', '(363.22) Harada''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371''', NULL, + 'Corneal opacity and other disorders of cornea (371)', 'Corneal opacity and other disorders of cornea (371)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\(371.9) Unspecified corneal disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\(371.9) Unspecified corneal disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.9''', NULL, + '(371.9) Unspecified corneal disorder', '(371.9) Unspecified corneal disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.3''', NULL, + 'Changes of corneal membranes (371.3)', 'Changes of corneal membranes (371.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.30) Corneal membrane change, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.30) Corneal membrane change, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.30''', NULL, + '(371.30) Corneal membrane change, unspecified', '(371.30) Corneal membrane change, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.31) Folds and rupture of bowman''s membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.31) Folds and rupture of bowman''s membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.31''', NULL, + '(371.31) Folds and rupture of bowman''s membrane', '(371.31) Folds and rupture of bowman''s membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.32) Folds in descemet''s membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.32) Folds in descemet''s membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.32''', NULL, + '(371.32) Folds in descemet''s membrane', '(371.32) Folds in descemet''s membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.33) Rupture in descemet''s membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.33) Rupture in descemet''s membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.33''', NULL, + '(371.33) Rupture in descemet''s membrane', '(371.33) Rupture in descemet''s membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.4''', NULL, + 'Corneal degenerations (371.4)', 'Corneal degenerations (371.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.40) Corneal degeneration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.40) Corneal degeneration, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.40''', NULL, + '(371.40) Corneal degeneration, unspecified', '(371.40) Corneal degeneration, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.41) Senile corneal changes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.41) Senile corneal changes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.41''', NULL, + '(371.41) Senile corneal changes', '(371.41) Senile corneal changes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.42) Recurrent erosion of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.42) Recurrent erosion of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.42''', NULL, + '(371.42) Recurrent erosion of cornea', '(371.42) Recurrent erosion of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.43) Band-shaped keratopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.43) Band-shaped keratopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.43''', NULL, + '(371.43) Band-shaped keratopathy', '(371.43) Band-shaped keratopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.44) Other calcerous degenerations of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.44) Other calcerous degenerations of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.44''', NULL, + '(371.44) Other calcerous degenerations of cornea', '(371.44) Other calcerous degenerations of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.45) Keratomalacia NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.45) Keratomalacia NOS\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.45''', NULL, + '(371.45) Keratomalacia NOS', '(371.45) Keratomalacia NOS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.46) Nodular degeneration of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.46) Nodular degeneration of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.46''', NULL, + '(371.46) Nodular degeneration of cornea', '(371.46) Nodular degeneration of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.48) Peripheral degenerations of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.48) Peripheral degenerations of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.48''', NULL, + '(371.48) Peripheral degenerations of cornea', '(371.48) Peripheral degenerations of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.49) Other corneal degenerations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.49) Other corneal degenerations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.49''', NULL, + '(371.49) Other corneal degenerations', '(371.49) Other corneal degenerations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.2''', NULL, + 'Corneal edema (371.2)', 'Corneal edema (371.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.20) Corneal edema, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.20) Corneal edema, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.20''', NULL, + '(371.20) Corneal edema, unspecified', '(371.20) Corneal edema, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.21) Idiopathic corneal edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.21) Idiopathic corneal edema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.21''', NULL, + '(371.21) Idiopathic corneal edema', '(371.21) Idiopathic corneal edema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.22) Secondary corneal edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.22) Secondary corneal edema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.22''', NULL, + '(371.22) Secondary corneal edema', '(371.22) Secondary corneal edema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.23) Bullous keratopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.23) Bullous keratopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.23''', NULL, + '(371.23) Bullous keratopathy', '(371.23) Bullous keratopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.24) Corneal edema due to wearing of contact lenses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.24) Corneal edema due to wearing of contact lenses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.24''', NULL, + '(371.24) Corneal edema due to wearing of contact lenses', '(371.24) Corneal edema due to wearing of contact lenses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.1''', NULL, + 'Corneal pigmentations and deposits (371.1)', 'Corneal pigmentations and deposits (371.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.10) Corneal deposit, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.10) Corneal deposit, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.10''', NULL, + '(371.10) Corneal deposit, unspecified', '(371.10) Corneal deposit, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.11) Anterior corneal pigmentations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.11) Anterior corneal pigmentations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.11''', NULL, + '(371.11) Anterior corneal pigmentations', '(371.11) Anterior corneal pigmentations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.12) Stromal corneal pigmentations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.12) Stromal corneal pigmentations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.12''', NULL, + '(371.12) Stromal corneal pigmentations', '(371.12) Stromal corneal pigmentations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.13) Posterior corneal pigmentations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.13) Posterior corneal pigmentations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.13''', NULL, + '(371.13) Posterior corneal pigmentations', '(371.13) Posterior corneal pigmentations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.14) Kayser-Fleischer ring\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.14) Kayser-Fleischer ring\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.14''', NULL, + '(371.14) Kayser-Fleischer ring', '(371.14) Kayser-Fleischer ring', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.15) Other corneal deposits associated with metabolic disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.15) Other corneal deposits associated with metabolic disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.15''', NULL, + '(371.15) Other corneal deposits associated with metabolic disorders', '(371.15) Other corneal deposits associated with metabolic disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.16) Argentous corneal deposits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.16) Argentous corneal deposits\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.16''', NULL, + '(371.16) Argentous corneal deposits', '(371.16) Argentous corneal deposits', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.0''', NULL, + 'Corneal scars and opacities (371.0)', 'Corneal scars and opacities (371.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.00) Corneal opacity, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.00) Corneal opacity, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.00''', NULL, + '(371.00) Corneal opacity, unspecified', '(371.00) Corneal opacity, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.01) Minor opacity of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.01) Minor opacity of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.01''', NULL, + '(371.01) Minor opacity of cornea', '(371.01) Minor opacity of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.02) Peripheral opacity of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.02) Peripheral opacity of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.02''', NULL, + '(371.02) Peripheral opacity of cornea', '(371.02) Peripheral opacity of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.03) Central opacity of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.03) Central opacity of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.03''', NULL, + '(371.03) Central opacity of cornea', '(371.03) Central opacity of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.04) Adherent leucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.04) Adherent leucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.04''', NULL, + '(371.04) Adherent leucoma', '(371.04) Adherent leucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.05) Phthisical cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.05) Phthisical cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.05''', NULL, + '(371.05) Phthisical cornea', '(371.05) Phthisical cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.5''', NULL, + 'Hereditary corneal dystrophies (371.5)', 'Hereditary corneal dystrophies (371.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.50) Hereditary corneal dystrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.50) Hereditary corneal dystrophy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.50''', NULL, + '(371.50) Hereditary corneal dystrophy, unspecified', '(371.50) Hereditary corneal dystrophy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.51) Juvenile epithelial corneal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.51) Juvenile epithelial corneal dystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.51''', NULL, + '(371.51) Juvenile epithelial corneal dystrophy', '(371.51) Juvenile epithelial corneal dystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.52) Other anterior corneal dystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.52) Other anterior corneal dystrophies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.52''', NULL, + '(371.52) Other anterior corneal dystrophies', '(371.52) Other anterior corneal dystrophies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.53) Granular corneal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.53) Granular corneal dystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.53''', NULL, + '(371.53) Granular corneal dystrophy', '(371.53) Granular corneal dystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.54) Lattice corneal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.54) Lattice corneal dystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.54''', NULL, + '(371.54) Lattice corneal dystrophy', '(371.54) Lattice corneal dystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.55) Macular corneal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.55) Macular corneal dystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.55''', NULL, + '(371.55) Macular corneal dystrophy', '(371.55) Macular corneal dystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.56) Other stromal corneal dystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.56) Other stromal corneal dystrophies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.56''', NULL, + '(371.56) Other stromal corneal dystrophies', '(371.56) Other stromal corneal dystrophies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.57) Endothelial corneal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.57) Endothelial corneal dystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.57''', NULL, + '(371.57) Endothelial corneal dystrophy', '(371.57) Endothelial corneal dystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.58) Other posterior corneal dystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.58) Other posterior corneal dystrophies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.58''', NULL, + '(371.58) Other posterior corneal dystrophies', '(371.58) Other posterior corneal dystrophies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.6''', NULL, + 'Keratoconus (371.6)', 'Keratoconus (371.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.60) Keratoconus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.60) Keratoconus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.60''', NULL, + '(371.60) Keratoconus, unspecified', '(371.60) Keratoconus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.61) Keratoconus, stable condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.61) Keratoconus, stable condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.61''', NULL, + '(371.61) Keratoconus, stable condition', '(371.61) Keratoconus, stable condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.62) Keratoconus, acute hydrops\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.62) Keratoconus, acute hydrops\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.62''', NULL, + '(371.62) Keratoconus, acute hydrops', '(371.62) Keratoconus, acute hydrops', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.7''', NULL, + 'Other corneal deformities (371.7)', 'Other corneal deformities (371.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.70) Corneal deformity, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.70) Corneal deformity, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.70''', NULL, + '(371.70) Corneal deformity, unspecified', '(371.70) Corneal deformity, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.71) Corneal ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.71) Corneal ectasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.71''', NULL, + '(371.71) Corneal ectasia', '(371.71) Corneal ectasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.72) Descemetocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.72) Descemetocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.72''', NULL, + '(371.72) Descemetocele', '(371.72) Descemetocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.73) Corneal staphyloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.73) Corneal staphyloma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.73''', NULL, + '(371.73) Corneal staphyloma', '(371.73) Corneal staphyloma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.8''', NULL, + 'Other corneal disorders (371.8)', 'Other corneal disorders (371.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.81) Corneal anesthesia and hypoesthesia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.81) Corneal anesthesia and hypoesthesia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.81''', NULL, + '(371.81) Corneal anesthesia and hypoesthesia', '(371.81) Corneal anesthesia and hypoesthesia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.82) Corneal disorder due to contact lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.82) Corneal disorder due to contact lens\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.82''', NULL, + '(371.82) Corneal disorder due to contact lens', '(371.82) Corneal disorder due to contact lens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.89) Other corneal disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.89) Other corneal disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.89''', NULL, + '(371.89) Other corneal disorders', '(371.89) Other corneal disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372''', NULL, + 'Disorders of conjunctiva (372)', 'Disorders of conjunctiva (372)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\(372.9) Unspecified disorder of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\(372.9) Unspecified disorder of conjunctiva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.9''', NULL, + '(372.9) Unspecified disorder of conjunctiva', '(372.9) Unspecified disorder of conjunctiva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.0''', NULL, + 'Acute conjunctivitis (372.0)', 'Acute conjunctivitis (372.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.00) Acute conjunctivitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.00) Acute conjunctivitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.00''', NULL, + '(372.00) Acute conjunctivitis, unspecified', '(372.00) Acute conjunctivitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.01) Serous conjunctivitis, except viral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.01) Serous conjunctivitis, except viral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.01''', NULL, + '(372.01) Serous conjunctivitis, except viral', '(372.01) Serous conjunctivitis, except viral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.02) Acute follicular conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.02) Acute follicular conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.02''', NULL, + '(372.02) Acute follicular conjunctivitis', '(372.02) Acute follicular conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.03) Other mucopurulent conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.03) Other mucopurulent conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.03''', NULL, + '(372.03) Other mucopurulent conjunctivitis', '(372.03) Other mucopurulent conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.04) Pseudomembranous conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.04) Pseudomembranous conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.04''', NULL, + '(372.04) Pseudomembranous conjunctivitis', '(372.04) Pseudomembranous conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.05) Acute atopic conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.05) Acute atopic conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.05''', NULL, + '(372.05) Acute atopic conjunctivitis', '(372.05) Acute atopic conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.06) Acute chemical conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.06) Acute chemical conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.06''', NULL, + '(372.06) Acute chemical conjunctivitis', '(372.06) Acute chemical conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.2''', NULL, + 'Blepharoconjunctivitis (372.2)', 'Blepharoconjunctivitis (372.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.20) Blepharoconjunctivitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.20) Blepharoconjunctivitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.20''', NULL, + '(372.20) Blepharoconjunctivitis, unspecified', '(372.20) Blepharoconjunctivitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.21) Angular blepharoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.21) Angular blepharoconjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.21''', NULL, + '(372.21) Angular blepharoconjunctivitis', '(372.21) Angular blepharoconjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.22) Contact blepharoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.22) Contact blepharoconjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.22''', NULL, + '(372.22) Contact blepharoconjunctivitis', '(372.22) Contact blepharoconjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.1''', NULL, + 'Chronic conjunctivitis (372.1)', 'Chronic conjunctivitis (372.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.10) Chronic conjunctivitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.10) Chronic conjunctivitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.10''', NULL, + '(372.10) Chronic conjunctivitis, unspecified', '(372.10) Chronic conjunctivitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.11) Simple chronic conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.11) Simple chronic conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.11''', NULL, + '(372.11) Simple chronic conjunctivitis', '(372.11) Simple chronic conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.12) Chronic follicular conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.12) Chronic follicular conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.12''', NULL, + '(372.12) Chronic follicular conjunctivitis', '(372.12) Chronic follicular conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.13) Vernal conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.13) Vernal conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.13''', NULL, + '(372.13) Vernal conjunctivitis', '(372.13) Vernal conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.14) Other chronic allergic conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.14) Other chronic allergic conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.14''', NULL, + '(372.14) Other chronic allergic conjunctivitis', '(372.14) Other chronic allergic conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.15) Parasitic conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.15) Parasitic conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.15''', NULL, + '(372.15) Parasitic conjunctivitis', '(372.15) Parasitic conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.5''', NULL, + 'Conjunctival degenerations and deposits (372.5)', 'Conjunctival degenerations and deposits (372.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.50) Conjunctival degeneration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.50) Conjunctival degeneration, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.50''', NULL, + '(372.50) Conjunctival degeneration, unspecified', '(372.50) Conjunctival degeneration, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.51) Pinguecula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.51) Pinguecula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.51''', NULL, + '(372.51) Pinguecula', '(372.51) Pinguecula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.52) Pseudopterygium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.52) Pseudopterygium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.52''', NULL, + '(372.52) Pseudopterygium', '(372.52) Pseudopterygium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.53) Conjunctival xerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.53) Conjunctival xerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.53''', NULL, + '(372.53) Conjunctival xerosis', '(372.53) Conjunctival xerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.54) Conjunctival concretions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.54) Conjunctival concretions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.54''', NULL, + '(372.54) Conjunctival concretions', '(372.54) Conjunctival concretions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.55) Conjunctival pigmentations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.55) Conjunctival pigmentations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.55''', NULL, + '(372.55) Conjunctival pigmentations', '(372.55) Conjunctival pigmentations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.56) Conjunctival deposits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.56) Conjunctival deposits\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.56''', NULL, + '(372.56) Conjunctival deposits', '(372.56) Conjunctival deposits', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.6''', NULL, + 'Conjunctival scars (372.6)', 'Conjunctival scars (372.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.61) Granuloma of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.61) Granuloma of conjunctiva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.61''', NULL, + '(372.61) Granuloma of conjunctiva', '(372.61) Granuloma of conjunctiva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.62) Localized adhesions and strands of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.62) Localized adhesions and strands of conjunctiva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.62''', NULL, + '(372.62) Localized adhesions and strands of conjunctiva', '(372.62) Localized adhesions and strands of conjunctiva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.63) Symblepharon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.63) Symblepharon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.63''', NULL, + '(372.63) Symblepharon', '(372.63) Symblepharon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.64) Scarring of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.64) Scarring of conjunctiva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.64''', NULL, + '(372.64) Scarring of conjunctiva', '(372.64) Scarring of conjunctiva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.7''', NULL, + 'Conjunctival vascular disorders and cysts (372.7)', 'Conjunctival vascular disorders and cysts (372.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.71) Hyperemia of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.71) Hyperemia of conjunctiva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.71''', NULL, + '(372.71) Hyperemia of conjunctiva', '(372.71) Hyperemia of conjunctiva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.72) Conjunctival hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.72) Conjunctival hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.72''', NULL, + '(372.72) Conjunctival hemorrhage', '(372.72) Conjunctival hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.73) Conjunctival edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.73) Conjunctival edema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.73''', NULL, + '(372.73) Conjunctival edema', '(372.73) Conjunctival edema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.74) Vascular abnormalities of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.74) Vascular abnormalities of conjunctiva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.74''', NULL, + '(372.74) Vascular abnormalities of conjunctiva', '(372.74) Vascular abnormalities of conjunctiva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.75) Conjunctival cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.75) Conjunctival cysts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.75''', NULL, + '(372.75) Conjunctival cysts', '(372.75) Conjunctival cysts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.3''', NULL, + 'Other and unspecified conjunctivitis (372.3)', 'Other and unspecified conjunctivitis (372.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.30) Conjunctivitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.30) Conjunctivitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.30''', NULL, + '(372.30) Conjunctivitis, unspecified', '(372.30) Conjunctivitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.31) Rosacea conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.31) Rosacea conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.31''', NULL, + '(372.31) Rosacea conjunctivitis', '(372.31) Rosacea conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.33) Conjunctivitis in mucocutaneous disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.33) Conjunctivitis in mucocutaneous disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.33''', NULL, + '(372.33) Conjunctivitis in mucocutaneous disease', '(372.33) Conjunctivitis in mucocutaneous disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.39) Other conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.39) Other conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.39''', NULL, + '(372.39) Other conjunctivitis', '(372.39) Other conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.8''', NULL, + 'Other disorders of conjunctiva (372.8)', 'Other disorders of conjunctiva (372.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\(372.81) Conjunctivochalasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\(372.81) Conjunctivochalasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.81''', NULL, + '(372.81) Conjunctivochalasis', '(372.81) Conjunctivochalasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\(372.89) Other disorders of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\(372.89) Other disorders of conjunctiva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.89''', NULL, + '(372.89) Other disorders of conjunctiva', '(372.89) Other disorders of conjunctiva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.4''', NULL, + 'Pterygium (372.4)', 'Pterygium (372.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.40) Pterygium, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.40) Pterygium, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.40''', NULL, + '(372.40) Pterygium, unspecified', '(372.40) Pterygium, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.41) Peripheral pterygium, stationary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.41) Peripheral pterygium, stationary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.41''', NULL, + '(372.41) Peripheral pterygium, stationary', '(372.41) Peripheral pterygium, stationary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.42) Peripheral pterygium, progressive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.42) Peripheral pterygium, progressive\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.42''', NULL, + '(372.42) Peripheral pterygium, progressive', '(372.42) Peripheral pterygium, progressive', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.43) Central pterygium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.43) Central pterygium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.43''', NULL, + '(372.43) Central pterygium', '(372.43) Central pterygium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.44) Double pterygium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.44) Double pterygium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.44''', NULL, + '(372.44) Double pterygium', '(372.44) Double pterygium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.45) Recurrent pterygium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.45) Recurrent pterygium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.45''', NULL, + '(372.45) Recurrent pterygium', '(372.45) Recurrent pterygium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364''', NULL, + 'Disorders of iris and ciliary body (364)', 'Disorders of iris and ciliary body (364)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\(364.3) Unspecified iridocyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\(364.3) Unspecified iridocyclitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.3''', NULL, + '(364.3) Unspecified iridocyclitis', '(364.3) Unspecified iridocyclitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\(364.9) Unspecified disorder of iris and ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\(364.9) Unspecified disorder of iris and ciliary body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.9''', NULL, + '(364.9) Unspecified disorder of iris and ciliary body', '(364.9) Unspecified disorder of iris and ciliary body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.0''', NULL, + 'Acute and subacute iridocyclitis (364.0)', 'Acute and subacute iridocyclitis (364.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.00) Acute and subacute iridocyclitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.00) Acute and subacute iridocyclitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.00''', NULL, + '(364.00) Acute and subacute iridocyclitis, unspecified', '(364.00) Acute and subacute iridocyclitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.01) Primary iridocyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.01) Primary iridocyclitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.01''', NULL, + '(364.01) Primary iridocyclitis', '(364.01) Primary iridocyclitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.02) Recurrent iridocyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.02) Recurrent iridocyclitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.02''', NULL, + '(364.02) Recurrent iridocyclitis', '(364.02) Recurrent iridocyclitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.03) Secondary iridocyclitis, infectious\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.03) Secondary iridocyclitis, infectious\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.03''', NULL, + '(364.03) Secondary iridocyclitis, infectious', '(364.03) Secondary iridocyclitis, infectious', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.04) Secondary iridocyclitis, noninfectious\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.04) Secondary iridocyclitis, noninfectious\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.04''', NULL, + '(364.04) Secondary iridocyclitis, noninfectious', '(364.04) Secondary iridocyclitis, noninfectious', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.05) Hypopyon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.05) Hypopyon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.05''', NULL, + '(364.05) Hypopyon', '(364.05) Hypopyon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.7''', NULL, + 'Adhesions and disruptions of iris and ciliary body (364.7)', 'Adhesions and disruptions of iris and ciliary body (364.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.70) Adhesions of iris, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.70) Adhesions of iris, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.70''', NULL, + '(364.70) Adhesions of iris, unspecified', '(364.70) Adhesions of iris, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.71) Posterior synechiae of iris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.71) Posterior synechiae of iris\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.71''', NULL, + '(364.71) Posterior synechiae of iris', '(364.71) Posterior synechiae of iris', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.72) Anterior synechiae of iris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.72) Anterior synechiae of iris\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.72''', NULL, + '(364.72) Anterior synechiae of iris', '(364.72) Anterior synechiae of iris', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.73) Goniosynechiae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.73) Goniosynechiae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.73''', NULL, + '(364.73) Goniosynechiae', '(364.73) Goniosynechiae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.74) Adhesions and disruptions of pupillary membranes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.74) Adhesions and disruptions of pupillary membranes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.74''', NULL, + '(364.74) Adhesions and disruptions of pupillary membranes', '(364.74) Adhesions and disruptions of pupillary membranes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.75) Pupillary abnormalities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.75) Pupillary abnormalities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.75''', NULL, + '(364.75) Pupillary abnormalities', '(364.75) Pupillary abnormalities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.76) Iridodialysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.76) Iridodialysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.76''', NULL, + '(364.76) Iridodialysis', '(364.76) Iridodialysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.77) Recession of chamber angle of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.77) Recession of chamber angle of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.77''', NULL, + '(364.77) Recession of chamber angle of eye', '(364.77) Recession of chamber angle of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.2''', NULL, + 'Certain types of iridocyclitis (364.2)', 'Certain types of iridocyclitis (364.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.21) Fuchs'' heterochromic cyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.21) Fuchs'' heterochromic cyclitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.21''', NULL, + '(364.21) Fuchs'' heterochromic cyclitis', '(364.21) Fuchs'' heterochromic cyclitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.22) Glaucomatocyclitic crises\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.22) Glaucomatocyclitic crises\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.22''', NULL, + '(364.22) Glaucomatocyclitic crises', '(364.22) Glaucomatocyclitic crises', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.23) Lens-induced iridocyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.23) Lens-induced iridocyclitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.23''', NULL, + '(364.23) Lens-induced iridocyclitis', '(364.23) Lens-induced iridocyclitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.24) Vogt-koyanagi syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.24) Vogt-koyanagi syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.24''', NULL, + '(364.24) Vogt-koyanagi syndrome', '(364.24) Vogt-koyanagi syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.1''', NULL, + 'Chronic iridocyclitis (364.1)', 'Chronic iridocyclitis (364.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\(364.10) Chronic iridocyclitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\(364.10) Chronic iridocyclitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.10''', NULL, + '(364.10) Chronic iridocyclitis, unspecified', '(364.10) Chronic iridocyclitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\(364.11) Chronic iridocyclitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\(364.11) Chronic iridocyclitis in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.11''', NULL, + '(364.11) Chronic iridocyclitis in diseases classified elsewhere', '(364.11) Chronic iridocyclitis in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.6''', NULL, + 'Cysts of iris, ciliary body, and anterior chamber (364.6)', 'Cysts of iris, ciliary body, and anterior chamber (364.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.60) Idiopathic cysts of iris, ciliary body, and anterior chamber\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.60) Idiopathic cysts of iris, ciliary body, and anterior chamber\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.60''', NULL, + '(364.60) Idiopathic cysts of iris, ciliary body, and anterior chamber', '(364.60) Idiopathic cysts of iris, ciliary body, and anterior chamber', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.61) Implantation cysts of iris, ciliary body, and anterior chamber\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.61) Implantation cysts of iris, ciliary body, and anterior chamber\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.61''', NULL, + '(364.61) Implantation cysts of iris, ciliary body, and anterior chamber', '(364.61) Implantation cysts of iris, ciliary body, and anterior chamber', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.62) Exudative cysts of iris or anterior chamber\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.62) Exudative cysts of iris or anterior chamber\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.62''', NULL, + '(364.62) Exudative cysts of iris or anterior chamber', '(364.62) Exudative cysts of iris or anterior chamber', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.63) Primary cyst of pars plana\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.63) Primary cyst of pars plana\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.63''', NULL, + '(364.63) Primary cyst of pars plana', '(364.63) Primary cyst of pars plana', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.64) Exudative cyst of pars plana\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.64) Exudative cyst of pars plana\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.64''', NULL, + '(364.64) Exudative cyst of pars plana', '(364.64) Exudative cyst of pars plana', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.5''', NULL, + 'Degenerations of iris and ciliary body (364.5)', 'Degenerations of iris and ciliary body (364.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.51) Essential or progressive iris atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.51) Essential or progressive iris atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.51''', NULL, + '(364.51) Essential or progressive iris atrophy', '(364.51) Essential or progressive iris atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.52) Iridoschisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.52) Iridoschisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.52''', NULL, + '(364.52) Iridoschisis', '(364.52) Iridoschisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.53) Pigmentary iris degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.53) Pigmentary iris degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.53''', NULL, + '(364.53) Pigmentary iris degeneration', '(364.53) Pigmentary iris degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.54) Degeneration of pupillary margin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.54) Degeneration of pupillary margin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.54''', NULL, + '(364.54) Degeneration of pupillary margin', '(364.54) Degeneration of pupillary margin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.55) Miotic cysts of pupillary margin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.55) Miotic cysts of pupillary margin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.55''', NULL, + '(364.55) Miotic cysts of pupillary margin', '(364.55) Miotic cysts of pupillary margin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.56) Degenerative changes of chamber angle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.56) Degenerative changes of chamber angle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.56''', NULL, + '(364.56) Degenerative changes of chamber angle', '(364.56) Degenerative changes of chamber angle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.57) Degenerative changes of ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.57) Degenerative changes of ciliary body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.57''', NULL, + '(364.57) Degenerative changes of ciliary body', '(364.57) Degenerative changes of ciliary body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.59) Other iris atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.59) Other iris atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.59''', NULL, + '(364.59) Other iris atrophy', '(364.59) Other iris atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.8''', NULL, + 'Other disorders of iris and ciliary body (364.8)', 'Other disorders of iris and ciliary body (364.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\(364.81) Floppy iris syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\(364.81) Floppy iris syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.81''', NULL, + '(364.81) Floppy iris syndrome', '(364.81) Floppy iris syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\(364.89) Other disorders of iris and ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\(364.89) Other disorders of iris and ciliary body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.89''', NULL, + '(364.89) Other disorders of iris and ciliary body', '(364.89) Other disorders of iris and ciliary body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.4''', NULL, + 'Vascular disorders of iris and ciliary body (364.4)', 'Vascular disorders of iris and ciliary body (364.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\(364.41) Hyphema of iris and ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\(364.41) Hyphema of iris and ciliary body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.41''', NULL, + '(364.41) Hyphema of iris and ciliary body', '(364.41) Hyphema of iris and ciliary body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\(364.42) Rubeosis iridis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\(364.42) Rubeosis iridis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.42''', NULL, + '(364.42) Rubeosis iridis', '(364.42) Rubeosis iridis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375''', NULL, + 'Disorders of lacrimal system (375)', 'Disorders of lacrimal system (375)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\(375.9) Unspecified disorder of lacrimal system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\(375.9) Unspecified disorder of lacrimal system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.9''', NULL, + '(375.9) Unspecified disorder of lacrimal system', '(375.9) Unspecified disorder of lacrimal system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.3''', NULL, + 'Acute and unspecified inflammation of lacrimal passages (375.3)', 'Acute and unspecified inflammation of lacrimal passages (375.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.30) Dacryocystitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.30) Dacryocystitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.30''', NULL, + '(375.30) Dacryocystitis, unspecified', '(375.30) Dacryocystitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.31) Acute canaliculitis, lacrimal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.31) Acute canaliculitis, lacrimal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.31''', NULL, + '(375.31) Acute canaliculitis, lacrimal', '(375.31) Acute canaliculitis, lacrimal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.32) Acute dacryocystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.32) Acute dacryocystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.32''', NULL, + '(375.32) Acute dacryocystitis', '(375.32) Acute dacryocystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.33) Phlegmonous dacryocystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.33) Phlegmonous dacryocystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.33''', NULL, + '(375.33) Phlegmonous dacryocystitis', '(375.33) Phlegmonous dacryocystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.4''', NULL, + 'Chronic inflammation of lacrimal passages (375.4)', 'Chronic inflammation of lacrimal passages (375.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.41) Chronic canaliculitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.41) Chronic canaliculitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.41''', NULL, + '(375.41) Chronic canaliculitis', '(375.41) Chronic canaliculitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.42) Chronic dacryocystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.42) Chronic dacryocystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.42''', NULL, + '(375.42) Chronic dacryocystitis', '(375.42) Chronic dacryocystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.43) Lacrimal mucocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.43) Lacrimal mucocele\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.43''', NULL, + '(375.43) Lacrimal mucocele', '(375.43) Lacrimal mucocele', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.0''', NULL, + 'Dacryoadenitis (375.0)', 'Dacryoadenitis (375.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.00) Dacryoadenitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.00) Dacryoadenitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.00''', NULL, + '(375.00) Dacryoadenitis, unspecified', '(375.00) Dacryoadenitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.01) Acute dacryoadenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.01) Acute dacryoadenitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.01''', NULL, + '(375.01) Acute dacryoadenitis', '(375.01) Acute dacryoadenitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.02) Chronic dacryoadenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.02) Chronic dacryoadenitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.02''', NULL, + '(375.02) Chronic dacryoadenitis', '(375.02) Chronic dacryoadenitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.03) Chronic enlargement of lacrimal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.03) Chronic enlargement of lacrimal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.03''', NULL, + '(375.03) Chronic enlargement of lacrimal gland', '(375.03) Chronic enlargement of lacrimal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.2''', NULL, + 'Epiphora (375.2)', 'Epiphora (375.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.20) Epiphora, unspecified as to cause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.20) Epiphora, unspecified as to cause\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.20''', NULL, + '(375.20) Epiphora, unspecified as to cause', '(375.20) Epiphora, unspecified as to cause', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.21) Epiphora due to excess lacrimation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.21) Epiphora due to excess lacrimation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.21''', NULL, + '(375.21) Epiphora due to excess lacrimation', '(375.21) Epiphora due to excess lacrimation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.22) Epiphora due to insufficient drainage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.22) Epiphora due to insufficient drainage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.22''', NULL, + '(375.22) Epiphora due to insufficient drainage', '(375.22) Epiphora due to insufficient drainage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.6''', NULL, + 'Other changes of lacrimal passages (375.6)', 'Other changes of lacrimal passages (375.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\(375.61) Lacrimal fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\(375.61) Lacrimal fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.61''', NULL, + '(375.61) Lacrimal fistula', '(375.61) Lacrimal fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\(375.69) Other changes of lacrimal passages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\(375.69) Other changes of lacrimal passages\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.69''', NULL, + '(375.69) Other changes of lacrimal passages', '(375.69) Other changes of lacrimal passages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.1''', NULL, + 'Other disorders of lacrimal gland (375.1)', 'Other disorders of lacrimal gland (375.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.11) Dacryops\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.11) Dacryops\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.11''', NULL, + '(375.11) Dacryops', '(375.11) Dacryops', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.12) Other lacrimal cysts and cystic degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.12) Other lacrimal cysts and cystic degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.12''', NULL, + '(375.12) Other lacrimal cysts and cystic degeneration', '(375.12) Other lacrimal cysts and cystic degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.13) Primary lacrimal atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.13) Primary lacrimal atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.13''', NULL, + '(375.13) Primary lacrimal atrophy', '(375.13) Primary lacrimal atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.14) Secondary lacrimal atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.14) Secondary lacrimal atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.14''', NULL, + '(375.14) Secondary lacrimal atrophy', '(375.14) Secondary lacrimal atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.15) Tear film insufficiency, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.15) Tear film insufficiency, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.15''', NULL, + '(375.15) Tear film insufficiency, unspecified', '(375.15) Tear film insufficiency, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.16) Dislocation of lacrimal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.16) Dislocation of lacrimal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.16''', NULL, + '(375.16) Dislocation of lacrimal gland', '(375.16) Dislocation of lacrimal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.8''', NULL, + 'Other disorders of lacrimal system (375.8)', 'Other disorders of lacrimal system (375.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\(375.81) Granuloma of lacrimal passages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\(375.81) Granuloma of lacrimal passages\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.81''', NULL, + '(375.81) Granuloma of lacrimal passages', '(375.81) Granuloma of lacrimal passages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\(375.89) Other disorders of lacrimal system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\(375.89) Other disorders of lacrimal system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.89''', NULL, + '(375.89) Other disorders of lacrimal system', '(375.89) Other disorders of lacrimal system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.5''', NULL, + 'Stenosis and insufficiency of lacrimal passages (375.5)', 'Stenosis and insufficiency of lacrimal passages (375.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.51) Eversion of lacrimal punctum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.51) Eversion of lacrimal punctum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.51''', NULL, + '(375.51) Eversion of lacrimal punctum', '(375.51) Eversion of lacrimal punctum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.52) Stenosis of lacrimal punctum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.52) Stenosis of lacrimal punctum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.52''', NULL, + '(375.52) Stenosis of lacrimal punctum', '(375.52) Stenosis of lacrimal punctum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.53) Stenosis of lacrimal canaliculi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.53) Stenosis of lacrimal canaliculi\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.53''', NULL, + '(375.53) Stenosis of lacrimal canaliculi', '(375.53) Stenosis of lacrimal canaliculi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.54) Stenosis of lacrimal sac\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.54) Stenosis of lacrimal sac\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.54''', NULL, + '(375.54) Stenosis of lacrimal sac', '(375.54) Stenosis of lacrimal sac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.55) Obstruction of nasolacrimal duct, neonatal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.55) Obstruction of nasolacrimal duct, neonatal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.55''', NULL, + '(375.55) Obstruction of nasolacrimal duct, neonatal', '(375.55) Obstruction of nasolacrimal duct, neonatal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.56) Stenosis of nasolacrimal duct, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.56) Stenosis of nasolacrimal duct, acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.56''', NULL, + '(375.56) Stenosis of nasolacrimal duct, acquired', '(375.56) Stenosis of nasolacrimal duct, acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.57) Dacryolith\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.57) Dacryolith\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.57''', NULL, + '(375.57) Dacryolith', '(375.57) Dacryolith', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377''', NULL, + 'Disorders of optic nerve and visual pathways (377)', 'Disorders of optic nerve and visual pathways (377)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\(377.9) Unspecified disorder of optic nerve and visual pathways\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\(377.9) Unspecified disorder of optic nerve and visual pathways\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.9''', NULL, + '(377.9) Unspecified disorder of optic nerve and visual pathways', '(377.9) Unspecified disorder of optic nerve and visual pathways', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.5''', NULL, + 'Disorders of optic chiasm (377.5)', 'Disorders of optic chiasm (377.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.51) Disorders of optic chiasm associated with pituitary neoplasms and disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.51) Disorders of optic chiasm associated with pituitary neoplasms and disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.51''', NULL, + '(377.51) Disorders of optic chiasm associated with pituitary neoplasms and disorders', '(377.51) Disorders of optic chiasm associated with pituitary neoplasms and disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.52) Disorders of optic chiasm associated with other neoplasms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.52) Disorders of optic chiasm associated with other neoplasms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.52''', NULL, + '(377.52) Disorders of optic chiasm associated with other neoplasms', '(377.52) Disorders of optic chiasm associated with other neoplasms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.53) Disorders of optic chiasm associated with vascular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.53) Disorders of optic chiasm associated with vascular disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.53''', NULL, + '(377.53) Disorders of optic chiasm associated with vascular disorders', '(377.53) Disorders of optic chiasm associated with vascular disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.54) Disorders of optic chiasm associated with inflammatory disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.54) Disorders of optic chiasm associated with inflammatory disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.54''', NULL, + '(377.54) Disorders of optic chiasm associated with inflammatory disorders', '(377.54) Disorders of optic chiasm associated with inflammatory disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.6''', NULL, + 'Disorders of other visual pathways (377.6)', 'Disorders of other visual pathways (377.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.61) Disorders of other visual pathways associated with neoplasms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.61) Disorders of other visual pathways associated with neoplasms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.61''', NULL, + '(377.61) Disorders of other visual pathways associated with neoplasms', '(377.61) Disorders of other visual pathways associated with neoplasms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.62) Disorders of other visual pathways associated with vascular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.62) Disorders of other visual pathways associated with vascular disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.62''', NULL, + '(377.62) Disorders of other visual pathways associated with vascular disorders', '(377.62) Disorders of other visual pathways associated with vascular disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.63) Disorders of other visual pathways associated with inflammatory disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.63) Disorders of other visual pathways associated with inflammatory disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.63''', NULL, + '(377.63) Disorders of other visual pathways associated with inflammatory disorders', '(377.63) Disorders of other visual pathways associated with inflammatory disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.7''', NULL, + 'Disorders of visual cortex (377.7)', 'Disorders of visual cortex (377.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.71) Disorders of visual cortex associated with neoplasms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.71) Disorders of visual cortex associated with neoplasms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.71''', NULL, + '(377.71) Disorders of visual cortex associated with neoplasms', '(377.71) Disorders of visual cortex associated with neoplasms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.72) Disorders of visual cortex associated with vascular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.72) Disorders of visual cortex associated with vascular disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.72''', NULL, + '(377.72) Disorders of visual cortex associated with vascular disorders', '(377.72) Disorders of visual cortex associated with vascular disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.73) Disorders of visual cortex associated with inflammatory disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.73) Disorders of visual cortex associated with inflammatory disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.73''', NULL, + '(377.73) Disorders of visual cortex associated with inflammatory disorders', '(377.73) Disorders of visual cortex associated with inflammatory disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.75) Cortical blindness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.75) Cortical blindness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.75''', NULL, + '(377.75) Cortical blindness', '(377.75) Cortical blindness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.1''', NULL, + 'Optic atrophy (377.1)', 'Optic atrophy (377.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.10) Optic atrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.10) Optic atrophy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.10''', NULL, + '(377.10) Optic atrophy, unspecified', '(377.10) Optic atrophy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.11) Primary optic atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.11) Primary optic atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.11''', NULL, + '(377.11) Primary optic atrophy', '(377.11) Primary optic atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.12) Postinflammatory optic atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.12) Postinflammatory optic atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.12''', NULL, + '(377.12) Postinflammatory optic atrophy', '(377.12) Postinflammatory optic atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.13) Optic atrophy associated with retinal dystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.13) Optic atrophy associated with retinal dystrophies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.13''', NULL, + '(377.13) Optic atrophy associated with retinal dystrophies', '(377.13) Optic atrophy associated with retinal dystrophies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.14) Glaucomatous atrophy [cupping] of optic disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.14) Glaucomatous atrophy [cupping] of optic disc\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.14''', NULL, + '(377.14) Glaucomatous atrophy [cupping] of optic disc', '(377.14) Glaucomatous atrophy [cupping] of optic disc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.15) Partial optic atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.15) Partial optic atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.15''', NULL, + '(377.15) Partial optic atrophy', '(377.15) Partial optic atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.16) Hereditary optic atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.16) Hereditary optic atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.16''', NULL, + '(377.16) Hereditary optic atrophy', '(377.16) Hereditary optic atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.3''', NULL, + 'Optic neuritis (377.3)', 'Optic neuritis (377.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.30) Optic neuritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.30) Optic neuritis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.30''', NULL, + '(377.30) Optic neuritis, unspecified', '(377.30) Optic neuritis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.31) Optic papillitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.31) Optic papillitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.31''', NULL, + '(377.31) Optic papillitis', '(377.31) Optic papillitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.32) Retrobulbar neuritis (acute)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.32) Retrobulbar neuritis (acute)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.32) Retrobulbar neuritis (acute''', NULL, + '(377.32) Retrobulbar neuritis (acute)', '(377.32) Retrobulbar neuritis (acute)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.33) Nutritional optic neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.33) Nutritional optic neuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.33''', NULL, + '(377.33) Nutritional optic neuropathy', '(377.33) Nutritional optic neuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.34) Toxic optic neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.34) Toxic optic neuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.34''', NULL, + '(377.34) Toxic optic neuropathy', '(377.34) Toxic optic neuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.39) Other optic neuritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.39) Other optic neuritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.39''', NULL, + '(377.39) Other optic neuritis', '(377.39) Other optic neuritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.2''', NULL, + 'Other disorders of optic disc (377.2)', 'Other disorders of optic disc (377.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.21) Drusen of optic disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.21) Drusen of optic disc\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.21''', NULL, + '(377.21) Drusen of optic disc', '(377.21) Drusen of optic disc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.22) Crater-like holes of optic disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.22) Crater-like holes of optic disc\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.22''', NULL, + '(377.22) Crater-like holes of optic disc', '(377.22) Crater-like holes of optic disc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.23) Coloboma of optic disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.23) Coloboma of optic disc\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.23''', NULL, + '(377.23) Coloboma of optic disc', '(377.23) Coloboma of optic disc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.24) Pseudopapilledema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.24) Pseudopapilledema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.24''', NULL, + '(377.24) Pseudopapilledema', '(377.24) Pseudopapilledema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.4''', NULL, + 'Other disorders of optic nerve (377.4)', 'Other disorders of optic nerve (377.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.41) Ischemic optic neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.41) Ischemic optic neuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.41''', NULL, + '(377.41) Ischemic optic neuropathy', '(377.41) Ischemic optic neuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.42) Hemorrhage in optic nerve sheaths\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.42) Hemorrhage in optic nerve sheaths\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.42''', NULL, + '(377.42) Hemorrhage in optic nerve sheaths', '(377.42) Hemorrhage in optic nerve sheaths', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.43) Optic nerve hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.43) Optic nerve hypoplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.43''', NULL, + '(377.43) Optic nerve hypoplasia', '(377.43) Optic nerve hypoplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.49) Other disorders of optic nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.49) Other disorders of optic nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.49''', NULL, + '(377.49) Other disorders of optic nerve', '(377.49) Other disorders of optic nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.0''', NULL, + 'Papilledema (377.0)', 'Papilledema (377.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.00) Papilledema, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.00) Papilledema, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.00''', NULL, + '(377.00) Papilledema, unspecified', '(377.00) Papilledema, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.01) Papilledema associated with increased intracranial pressure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.01) Papilledema associated with increased intracranial pressure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.01''', NULL, + '(377.01) Papilledema associated with increased intracranial pressure', '(377.01) Papilledema associated with increased intracranial pressure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.02) Papilledema associated with decreased ocular pressure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.02) Papilledema associated with decreased ocular pressure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.02''', NULL, + '(377.02) Papilledema associated with decreased ocular pressure', '(377.02) Papilledema associated with decreased ocular pressure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.03) Papilledema associated with retinal disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.03) Papilledema associated with retinal disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.03''', NULL, + '(377.03) Papilledema associated with retinal disorder', '(377.03) Papilledema associated with retinal disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.04) Foster-Kennedy syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.04) Foster-Kennedy syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.04''', NULL, + '(377.04) Foster-Kennedy syndrome', '(377.04) Foster-Kennedy syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367''', NULL, + 'Disorders of refraction and accommodation (367)', 'Disorders of refraction and accommodation (367)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.0) Hypermetropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.0) Hypermetropia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.0''', NULL, + '(367.0) Hypermetropia', '(367.0) Hypermetropia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.1) Myopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.1) Myopia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.1''', NULL, + '(367.1) Myopia', '(367.1) Myopia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.4) Presbyopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.4) Presbyopia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.4''', NULL, + '(367.4) Presbyopia', '(367.4) Presbyopia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.9) Unspecified disorder of refraction and accommodation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.9) Unspecified disorder of refraction and accommodation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.9''', NULL, + '(367.9) Unspecified disorder of refraction and accommodation', '(367.9) Unspecified disorder of refraction and accommodation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.3''', NULL, + 'Anisometropia and aniseikonia (367.3)', 'Anisometropia and aniseikonia (367.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\(367.31) Anisometropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\(367.31) Anisometropia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.31''', NULL, + '(367.31) Anisometropia', '(367.31) Anisometropia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\(367.32) Aniseikonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\(367.32) Aniseikonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.32''', NULL, + '(367.32) Aniseikonia', '(367.32) Aniseikonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.2''', NULL, + 'Astigmatism (367.2)', 'Astigmatism (367.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.20) Astigmatism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.20) Astigmatism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.20''', NULL, + '(367.20) Astigmatism, unspecified', '(367.20) Astigmatism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.21) Regular astigmatism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.21) Regular astigmatism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.21''', NULL, + '(367.21) Regular astigmatism', '(367.21) Regular astigmatism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.22) Irregular astigmatism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.22) Irregular astigmatism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.22''', NULL, + '(367.22) Irregular astigmatism', '(367.22) Irregular astigmatism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.5''', NULL, + 'Disorders of accommodation (367.5)', 'Disorders of accommodation (367.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.51) Paresis of accommodation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.51) Paresis of accommodation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.51''', NULL, + '(367.51) Paresis of accommodation', '(367.51) Paresis of accommodation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.52) Total or complete internal ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.52) Total or complete internal ophthalmoplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.52''', NULL, + '(367.52) Total or complete internal ophthalmoplegia', '(367.52) Total or complete internal ophthalmoplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.53) Spasm of accommodation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.53) Spasm of accommodation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.53''', NULL, + '(367.53) Spasm of accommodation', '(367.53) Spasm of accommodation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.8''', NULL, + 'Other disorders of refraction and accommodation (367.8)', 'Other disorders of refraction and accommodation (367.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\(367.81) Transient refractive change\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\(367.81) Transient refractive change\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.81''', NULL, + '(367.81) Transient refractive change', '(367.81) Transient refractive change', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\(367.89) Other disorders of refraction and accommodation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\(367.89) Other disorders of refraction and accommodation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.89''', NULL, + '(367.89) Other disorders of refraction and accommodation', '(367.89) Other disorders of refraction and accommodation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360''', NULL, + 'Disorders of the globe (360)', 'Disorders of the globe (360)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\(360.9) Unspecified disorder of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\(360.9) Unspecified disorder of globe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.9''', NULL, + '(360.9) Unspecified disorder of globe', '(360.9) Unspecified disorder of globe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.4''', NULL, + 'Degenerated conditions of globe (360.4)', 'Degenerated conditions of globe (360.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.40) Degenerated globe or eye, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.40) Degenerated globe or eye, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.40''', NULL, + '(360.40) Degenerated globe or eye, unspecified', '(360.40) Degenerated globe or eye, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.41) Blind hypotensive eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.41) Blind hypotensive eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.41''', NULL, + '(360.41) Blind hypotensive eye', '(360.41) Blind hypotensive eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.42) Blind hypertensive eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.42) Blind hypertensive eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.42''', NULL, + '(360.42) Blind hypertensive eye', '(360.42) Blind hypertensive eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.43) Hemophthalmos, except current injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.43) Hemophthalmos, except current injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.43''', NULL, + '(360.43) Hemophthalmos, except current injury', '(360.43) Hemophthalmos, except current injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.44) Leucocoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.44) Leucocoria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.44''', NULL, + '(360.44) Leucocoria', '(360.44) Leucocoria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.2''', NULL, + 'Degenerative disorders of globe (360.2)', 'Degenerative disorders of globe (360.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.20) Degenerative disorder of globe, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.20) Degenerative disorder of globe, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.20''', NULL, + '(360.20) Degenerative disorder of globe, unspecified', '(360.20) Degenerative disorder of globe, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.21) Progressive high (degenerative) myopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.21) Progressive high (degenerative) myopia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.21) Progressive high (degenerative''', NULL, + '(360.21) Progressive high (degenerative) myopia', '(360.21) Progressive high (degenerative) myopia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.23) Siderosis of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.23) Siderosis of globe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.23''', NULL, + '(360.23) Siderosis of globe', '(360.23) Siderosis of globe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.24) Other metallosis of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.24) Other metallosis of globe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.24''', NULL, + '(360.24) Other metallosis of globe', '(360.24) Other metallosis of globe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.29) Other degenerative disorders of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.29) Other degenerative disorders of globe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.29''', NULL, + '(360.29) Other degenerative disorders of globe', '(360.29) Other degenerative disorders of globe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.3''', NULL, + 'Hypotony of eye (360.3)', 'Hypotony of eye (360.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.30) Hypotony of eye, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.30) Hypotony of eye, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.30''', NULL, + '(360.30) Hypotony of eye, unspecified', '(360.30) Hypotony of eye, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.31) Primary hypotony of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.31) Primary hypotony of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.31''', NULL, + '(360.31) Primary hypotony of eye', '(360.31) Primary hypotony of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.32) Ocular fistula causing hypotony\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.32) Ocular fistula causing hypotony\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.32''', NULL, + '(360.32) Ocular fistula causing hypotony', '(360.32) Ocular fistula causing hypotony', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.33) Hypotony associated with other ocular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.33) Hypotony associated with other ocular disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.33''', NULL, + '(360.33) Hypotony associated with other ocular disorders', '(360.33) Hypotony associated with other ocular disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.34) Flat anterior chamber of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.34) Flat anterior chamber of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.34''', NULL, + '(360.34) Flat anterior chamber of eye', '(360.34) Flat anterior chamber of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.8''', NULL, + 'Other disorders of globe (360.8)', 'Other disorders of globe (360.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\(360.81) Luxation of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\(360.81) Luxation of globe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.81''', NULL, + '(360.81) Luxation of globe', '(360.81) Luxation of globe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\(360.89) Other disorders of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\(360.89) Other disorders of globe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.89''', NULL, + '(360.89) Other disorders of globe', '(360.89) Other disorders of globe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.1''', NULL, + 'Other endophthalmitis (360.1)', 'Other endophthalmitis (360.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.11) Sympathetic uveitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.11) Sympathetic uveitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.11''', NULL, + '(360.11) Sympathetic uveitis', '(360.11) Sympathetic uveitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.12) Panuveitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.12) Panuveitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.12''', NULL, + '(360.12) Panuveitis', '(360.12) Panuveitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.13) Parasitic endophthalmitis NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.13) Parasitic endophthalmitis NOS\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.13''', NULL, + '(360.13) Parasitic endophthalmitis NOS', '(360.13) Parasitic endophthalmitis NOS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.14) Ophthalmia nodosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.14) Ophthalmia nodosa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.14''', NULL, + '(360.14) Ophthalmia nodosa', '(360.14) Ophthalmia nodosa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.19) Other endophthalmitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.19) Other endophthalmitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.19''', NULL, + '(360.19) Other endophthalmitis', '(360.19) Other endophthalmitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.0''', NULL, + 'Purulent endophthalmitis (360.0)', 'Purulent endophthalmitis (360.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.00) Purulent endophthalmitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.00) Purulent endophthalmitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.00''', NULL, + '(360.00) Purulent endophthalmitis, unspecified', '(360.00) Purulent endophthalmitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.01) Acute endophthalmitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.01) Acute endophthalmitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.01''', NULL, + '(360.01) Acute endophthalmitis', '(360.01) Acute endophthalmitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.02) Panophthalmitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.02) Panophthalmitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.02''', NULL, + '(360.02) Panophthalmitis', '(360.02) Panophthalmitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.03) Chronic endophthalmitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.03) Chronic endophthalmitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.03''', NULL, + '(360.03) Chronic endophthalmitis', '(360.03) Chronic endophthalmitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.04) Vitreous abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.04) Vitreous abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.04''', NULL, + '(360.04) Vitreous abscess', '(360.04) Vitreous abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''old) intraocular foreign body, magnetic (360.5''', NULL, + 'Retained (old) intraocular foreign body, magnetic (360.5)', 'Retained (old) intraocular foreign body, magnetic (360.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.50) Foreign body, magnetic, intraocular, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.50) Foreign body, magnetic, intraocular, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.50''', NULL, + '(360.50) Foreign body, magnetic, intraocular, unspecified', '(360.50) Foreign body, magnetic, intraocular, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.51) Foreign body, magnetic, in anterior chamber of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.51) Foreign body, magnetic, in anterior chamber of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.51''', NULL, + '(360.51) Foreign body, magnetic, in anterior chamber of eye', '(360.51) Foreign body, magnetic, in anterior chamber of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.52) Foreign body, magnetic, in iris or ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.52) Foreign body, magnetic, in iris or ciliary body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.52''', NULL, + '(360.52) Foreign body, magnetic, in iris or ciliary body', '(360.52) Foreign body, magnetic, in iris or ciliary body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.53) Foreign body, magnetic, in lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.53) Foreign body, magnetic, in lens\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.53''', NULL, + '(360.53) Foreign body, magnetic, in lens', '(360.53) Foreign body, magnetic, in lens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.54) Foreign body, magnetic, in vitreous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.54) Foreign body, magnetic, in vitreous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.54''', NULL, + '(360.54) Foreign body, magnetic, in vitreous', '(360.54) Foreign body, magnetic, in vitreous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.55) Foreign body, magnetic, in posterior wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.55) Foreign body, magnetic, in posterior wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.55''', NULL, + '(360.55) Foreign body, magnetic, in posterior wall', '(360.55) Foreign body, magnetic, in posterior wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.59) Intraocular foreign body, magnetic, in other or multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.59) Intraocular foreign body, magnetic, in other or multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.59''', NULL, + '(360.59) Intraocular foreign body, magnetic, in other or multiple sites', '(360.59) Intraocular foreign body, magnetic, in other or multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''old) intraocular foreign body, nonmagnetic (360.6''', NULL, + 'Retained (old) intraocular foreign body, nonmagnetic (360.6)', 'Retained (old) intraocular foreign body, nonmagnetic (360.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.60) Foreign body, intraocular, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.60) Foreign body, intraocular, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.60''', NULL, + '(360.60) Foreign body, intraocular, unspecified', '(360.60) Foreign body, intraocular, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.61) Foreign body in anterior chamber\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.61) Foreign body in anterior chamber\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.61''', NULL, + '(360.61) Foreign body in anterior chamber', '(360.61) Foreign body in anterior chamber', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.62) Foreign body in iris or ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.62) Foreign body in iris or ciliary body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.62''', NULL, + '(360.62) Foreign body in iris or ciliary body', '(360.62) Foreign body in iris or ciliary body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.63) Foreign body in lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.63) Foreign body in lens\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.63''', NULL, + '(360.63) Foreign body in lens', '(360.63) Foreign body in lens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.64) Foreign body in vitreous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.64) Foreign body in vitreous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.64''', NULL, + '(360.64) Foreign body in vitreous', '(360.64) Foreign body in vitreous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.65) Foreign body in posterior wall of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.65) Foreign body in posterior wall of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.65''', NULL, + '(360.65) Foreign body in posterior wall of eye', '(360.65) Foreign body in posterior wall of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.69) Intraocular foreign body in other or multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.69) Intraocular foreign body in other or multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.69''', NULL, + '(360.69) Intraocular foreign body in other or multiple sites', '(360.69) Intraocular foreign body in other or multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376''', NULL, + 'Disorders of the orbit (376)', 'Disorders of the orbit (376)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\(376.6) Retained (old) foreign body following penetrating wound of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\(376.6) Retained (old) foreign body following penetrating wound of orbit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.6) Retained (old''', NULL, + '(376.6) Retained (old) foreign body following penetrating wound of orbit', '(376.6) Retained (old) foreign body following penetrating wound of orbit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\(376.9) Unspecified disorder of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\(376.9) Unspecified disorder of orbit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.9''', NULL, + '(376.9) Unspecified disorder of orbit', '(376.9) Unspecified disorder of orbit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.0''', NULL, + 'Acute inflammation of orbit (376.0)', 'Acute inflammation of orbit (376.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.00) Acute inflammation of orbit, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.00) Acute inflammation of orbit, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.00''', NULL, + '(376.00) Acute inflammation of orbit, unspecified', '(376.00) Acute inflammation of orbit, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.01) Orbital cellulitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.01) Orbital cellulitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.01''', NULL, + '(376.01) Orbital cellulitis', '(376.01) Orbital cellulitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.02) Orbital periostitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.02) Orbital periostitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.02''', NULL, + '(376.02) Orbital periostitis', '(376.02) Orbital periostitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.03) Orbital osteomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.03) Orbital osteomyelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.03''', NULL, + '(376.03) Orbital osteomyelitis', '(376.03) Orbital osteomyelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.04) Orbital tenonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.04) Orbital tenonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.04''', NULL, + '(376.04) Orbital tenonitis', '(376.04) Orbital tenonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.1''', NULL, + 'Chronic inflammatory disorders of orbit (376.1)', 'Chronic inflammatory disorders of orbit (376.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.10) Chronic inflammation of orbit, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.10) Chronic inflammation of orbit, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.10''', NULL, + '(376.10) Chronic inflammation of orbit, unspecified', '(376.10) Chronic inflammation of orbit, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.11) Orbital granuloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.11) Orbital granuloma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.11''', NULL, + '(376.11) Orbital granuloma', '(376.11) Orbital granuloma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.12) Orbital myositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.12) Orbital myositis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.12''', NULL, + '(376.12) Orbital myositis', '(376.12) Orbital myositis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.13) Parasitic infestation of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.13) Parasitic infestation of orbit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.13''', NULL, + '(376.13) Parasitic infestation of orbit', '(376.13) Parasitic infestation of orbit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.4''', NULL, + 'Deformity of orbit (376.4)', 'Deformity of orbit (376.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.40) Deformity of orbit, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.40) Deformity of orbit, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.40''', NULL, + '(376.40) Deformity of orbit, unspecified', '(376.40) Deformity of orbit, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.41) Hypertelorism of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.41) Hypertelorism of orbit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.41''', NULL, + '(376.41) Hypertelorism of orbit', '(376.41) Hypertelorism of orbit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.42) Exostosis of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.42) Exostosis of orbit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.42''', NULL, + '(376.42) Exostosis of orbit', '(376.42) Exostosis of orbit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.43) Local deformities of orbit due to bone disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.43) Local deformities of orbit due to bone disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.43''', NULL, + '(376.43) Local deformities of orbit due to bone disease', '(376.43) Local deformities of orbit due to bone disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.44) Orbital deformities associated with craniofacial deformities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.44) Orbital deformities associated with craniofacial deformities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.44''', NULL, + '(376.44) Orbital deformities associated with craniofacial deformities', '(376.44) Orbital deformities associated with craniofacial deformities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.45) Atrophy of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.45) Atrophy of orbit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.45''', NULL, + '(376.45) Atrophy of orbit', '(376.45) Atrophy of orbit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.46) Enlargement of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.46) Enlargement of orbit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.46''', NULL, + '(376.46) Enlargement of orbit', '(376.46) Enlargement of orbit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.47) Deformity of orbit due to trauma or surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.47) Deformity of orbit due to trauma or surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.47''', NULL, + '(376.47) Deformity of orbit due to trauma or surgery', '(376.47) Deformity of orbit due to trauma or surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.2''', NULL, + 'Endocrine exophthalmos (376.2)', 'Endocrine exophthalmos (376.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\(376.21) Thyrotoxic exophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\(376.21) Thyrotoxic exophthalmos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.21''', NULL, + '(376.21) Thyrotoxic exophthalmos', '(376.21) Thyrotoxic exophthalmos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\(376.22) Exophthalmic ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\(376.22) Exophthalmic ophthalmoplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.22''', NULL, + '(376.22) Exophthalmic ophthalmoplegia', '(376.22) Exophthalmic ophthalmoplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.5''', NULL, + 'Enophthalmos (376.5)', 'Enophthalmos (376.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.50) Enophthalmos, unspecified as to cause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.50) Enophthalmos, unspecified as to cause\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.50''', NULL, + '(376.50) Enophthalmos, unspecified as to cause', '(376.50) Enophthalmos, unspecified as to cause', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.51) Enophthalmos due to atrophy of orbital tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.51) Enophthalmos due to atrophy of orbital tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.51''', NULL, + '(376.51) Enophthalmos due to atrophy of orbital tissue', '(376.51) Enophthalmos due to atrophy of orbital tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.52) Enophthalmos due to trauma or surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.52) Enophthalmos due to trauma or surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.52''', NULL, + '(376.52) Enophthalmos due to trauma or surgery', '(376.52) Enophthalmos due to trauma or surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.3''', NULL, + 'Other exophthalmic conditions (376.3)', 'Other exophthalmic conditions (376.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.30) Exophthalmos, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.30) Exophthalmos, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.30''', NULL, + '(376.30) Exophthalmos, unspecified', '(376.30) Exophthalmos, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.31) Constant exophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.31) Constant exophthalmos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.31''', NULL, + '(376.31) Constant exophthalmos', '(376.31) Constant exophthalmos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.32) Orbital hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.32) Orbital hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.32''', NULL, + '(376.32) Orbital hemorrhage', '(376.32) Orbital hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.33) Orbital edema or congestion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.33) Orbital edema or congestion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.33''', NULL, + '(376.33) Orbital edema or congestion', '(376.33) Orbital edema or congestion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.34) Intermittent exophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.34) Intermittent exophthalmos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.34''', NULL, + '(376.34) Intermittent exophthalmos', '(376.34) Intermittent exophthalmos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.35) Pulsating exophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.35) Pulsating exophthalmos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.35''', NULL, + '(376.35) Pulsating exophthalmos', '(376.35) Pulsating exophthalmos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.36) Lateral displacement of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.36) Lateral displacement of globe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.36''', NULL, + '(376.36) Lateral displacement of globe', '(376.36) Lateral displacement of globe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.8''', NULL, + 'Other orbital disorders (376.8)', 'Other orbital disorders (376.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.81) Orbital cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.81) Orbital cysts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.81''', NULL, + '(376.81) Orbital cysts', '(376.81) Orbital cysts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.82) Myopathy of extraocular muscles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.82) Myopathy of extraocular muscles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.82''', NULL, + '(376.82) Myopathy of extraocular muscles', '(376.82) Myopathy of extraocular muscles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.89) Other orbital disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.89) Other orbital disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.89''', NULL, + '(376.89) Other orbital disorders', '(376.89) Other orbital disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365''', NULL, + 'Glaucoma (365)', 'Glaucoma (365)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\(365.9) Unspecified glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\(365.9) Unspecified glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.9''', NULL, + '(365.9) Unspecified glaucoma', '(365.9) Unspecified glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.0''', NULL, + 'Borderline glaucoma [glaucoma suspect] (365.0)', 'Borderline glaucoma [glaucoma suspect] (365.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.00) Preglaucoma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.00) Preglaucoma, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.00''', NULL, + '(365.00) Preglaucoma, unspecified', '(365.00) Preglaucoma, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.01) Open angle with borderline findings, low risk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.01) Open angle with borderline findings, low risk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.01''', NULL, + '(365.01) Open angle with borderline findings, low risk', '(365.01) Open angle with borderline findings, low risk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.02) Anatomical narrow angle borderline glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.02) Anatomical narrow angle borderline glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.02''', NULL, + '(365.02) Anatomical narrow angle borderline glaucoma', '(365.02) Anatomical narrow angle borderline glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.03) Steroid responders borderline glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.03) Steroid responders borderline glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.03''', NULL, + '(365.03) Steroid responders borderline glaucoma', '(365.03) Steroid responders borderline glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.04) Ocular hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.04) Ocular hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.04''', NULL, + '(365.04) Ocular hypertension', '(365.04) Ocular hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.3''', NULL, + 'Corticosteroid-induced glaucoma (365.3)', 'Corticosteroid-induced glaucoma (365.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\(365.31) Corticosteroid-induced glaucoma, glaucomatous stage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\(365.31) Corticosteroid-induced glaucoma, glaucomatous stage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.31''', NULL, + '(365.31) Corticosteroid-induced glaucoma, glaucomatous stage', '(365.31) Corticosteroid-induced glaucoma, glaucomatous stage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\(365.32) Corticosteroid-induced glaucoma, residual stage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\(365.32) Corticosteroid-induced glaucoma, residual stage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.32''', NULL, + '(365.32) Corticosteroid-induced glaucoma, residual stage', '(365.32) Corticosteroid-induced glaucoma, residual stage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.4''', NULL, + 'Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)', 'Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.41) Glaucoma associated with chamber angle anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.41) Glaucoma associated with chamber angle anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.41''', NULL, + '(365.41) Glaucoma associated with chamber angle anomalies', '(365.41) Glaucoma associated with chamber angle anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.42) Glaucoma associated with anomalies of iris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.42) Glaucoma associated with anomalies of iris\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.42''', NULL, + '(365.42) Glaucoma associated with anomalies of iris', '(365.42) Glaucoma associated with anomalies of iris', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.43) Glaucoma associated with other anterior segment anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.43) Glaucoma associated with other anterior segment anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.43''', NULL, + '(365.43) Glaucoma associated with other anterior segment anomalies', '(365.43) Glaucoma associated with other anterior segment anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.44) Glaucoma associated with systemic syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.44) Glaucoma associated with systemic syndromes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.44''', NULL, + '(365.44) Glaucoma associated with systemic syndromes', '(365.44) Glaucoma associated with systemic syndromes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.5''', NULL, + 'Glaucoma associated with disorders of the lens (365.5)', 'Glaucoma associated with disorders of the lens (365.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.51) Phacolytic glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.51) Phacolytic glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.51''', NULL, + '(365.51) Phacolytic glaucoma', '(365.51) Phacolytic glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.52) Pseudoexfoliation glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.52) Pseudoexfoliation glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.52''', NULL, + '(365.52) Pseudoexfoliation glaucoma', '(365.52) Pseudoexfoliation glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.59) Glaucoma associated with other lens disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.59) Glaucoma associated with other lens disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.59''', NULL, + '(365.59) Glaucoma associated with other lens disorders', '(365.59) Glaucoma associated with other lens disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.6''', NULL, + 'Glaucoma associated with other ocular disorders (365.6)', 'Glaucoma associated with other ocular disorders (365.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.60) Glaucoma associated with unspecified ocular disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.60) Glaucoma associated with unspecified ocular disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.60''', NULL, + '(365.60) Glaucoma associated with unspecified ocular disorder', '(365.60) Glaucoma associated with unspecified ocular disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.61) Glaucoma associated with pupillary block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.61) Glaucoma associated with pupillary block\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.61''', NULL, + '(365.61) Glaucoma associated with pupillary block', '(365.61) Glaucoma associated with pupillary block', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.62) Glaucoma associated with ocular inflammations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.62) Glaucoma associated with ocular inflammations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.62''', NULL, + '(365.62) Glaucoma associated with ocular inflammations', '(365.62) Glaucoma associated with ocular inflammations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.63) Glaucoma associated with vascular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.63) Glaucoma associated with vascular disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.63''', NULL, + '(365.63) Glaucoma associated with vascular disorders', '(365.63) Glaucoma associated with vascular disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.64) Glaucoma associated with tumors or cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.64) Glaucoma associated with tumors or cysts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.64''', NULL, + '(365.64) Glaucoma associated with tumors or cysts', '(365.64) Glaucoma associated with tumors or cysts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.65) Glaucoma associated with ocular trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.65) Glaucoma associated with ocular trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.65''', NULL, + '(365.65) Glaucoma associated with ocular trauma', '(365.65) Glaucoma associated with ocular trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma stage (365.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma stage (365.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.7''', NULL, + 'Glaucoma stage (365.7)', 'Glaucoma stage (365.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma stage (365.7)\(365.70) Glaucoma stage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma stage (365.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma stage (365.7)\(365.70) Glaucoma stage, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.70''', NULL, + '(365.70) Glaucoma stage, unspecified', '(365.70) Glaucoma stage, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.1''', NULL, + 'Open-angle glaucoma (365.1)', 'Open-angle glaucoma (365.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.10) Open-angle glaucoma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.10) Open-angle glaucoma, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.10''', NULL, + '(365.10) Open-angle glaucoma, unspecified', '(365.10) Open-angle glaucoma, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.11) Primary open angle glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.11) Primary open angle glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.11''', NULL, + '(365.11) Primary open angle glaucoma', '(365.11) Primary open angle glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.12) Low tension open-angle glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.12) Low tension open-angle glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.12''', NULL, + '(365.12) Low tension open-angle glaucoma', '(365.12) Low tension open-angle glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.13) Pigmentary open-angle glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.13) Pigmentary open-angle glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.13''', NULL, + '(365.13) Pigmentary open-angle glaucoma', '(365.13) Pigmentary open-angle glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.14) Glaucoma of childhood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.14) Glaucoma of childhood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.14''', NULL, + '(365.14) Glaucoma of childhood', '(365.14) Glaucoma of childhood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.15) Residual stage of open angle glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.15) Residual stage of open angle glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.15''', NULL, + '(365.15) Residual stage of open angle glaucoma', '(365.15) Residual stage of open angle glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.8''', NULL, + 'Other specified forms of glaucoma (365.8)', 'Other specified forms of glaucoma (365.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.81) Hypersecretion glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.81) Hypersecretion glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.81''', NULL, + '(365.81) Hypersecretion glaucoma', '(365.81) Hypersecretion glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.82) Glaucoma with increased episcleral venous pressure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.82) Glaucoma with increased episcleral venous pressure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.82''', NULL, + '(365.82) Glaucoma with increased episcleral venous pressure', '(365.82) Glaucoma with increased episcleral venous pressure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.83) Aqueous misdirection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.83) Aqueous misdirection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.83''', NULL, + '(365.83) Aqueous misdirection', '(365.83) Aqueous misdirection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.89) Other specified glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.89) Other specified glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.89''', NULL, + '(365.89) Other specified glaucoma', '(365.89) Other specified glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.2''', NULL, + 'Primary angle-closure glaucoma (365.2)', 'Primary angle-closure glaucoma (365.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.20) Primary angle-closure glaucoma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.20) Primary angle-closure glaucoma, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.20''', NULL, + '(365.20) Primary angle-closure glaucoma, unspecified', '(365.20) Primary angle-closure glaucoma, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.21) Intermittent angle-closure glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.21) Intermittent angle-closure glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.21''', NULL, + '(365.21) Intermittent angle-closure glaucoma', '(365.21) Intermittent angle-closure glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.22) Acute angle-closure glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.22) Acute angle-closure glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.22''', NULL, + '(365.22) Acute angle-closure glaucoma', '(365.22) Acute angle-closure glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.23) Chronic angle-closure glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.23) Chronic angle-closure glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.23''', NULL, + '(365.23) Chronic angle-closure glaucoma', '(365.23) Chronic angle-closure glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.24) Residual stage of angle-closure glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.24) Residual stage of angle-closure glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.24''', NULL, + '(365.24) Residual stage of angle-closure glaucoma', '(365.24) Residual stage of angle-closure glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373''', NULL, + 'Inflammation of eyelids (373)', 'Inflammation of eyelids (373)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.2) Chalazion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.2) Chalazion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.2''', NULL, + '(373.2) Chalazion', '(373.2) Chalazion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.4) Infective dermatitis of eyelid of types resulting in deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.4) Infective dermatitis of eyelid of types resulting in deformity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.4''', NULL, + '(373.4) Infective dermatitis of eyelid of types resulting in deformity', '(373.4) Infective dermatitis of eyelid of types resulting in deformity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.5) Other infective dermatitis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.5) Other infective dermatitis of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.5''', NULL, + '(373.5) Other infective dermatitis of eyelid', '(373.5) Other infective dermatitis of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.6) Parasitic infestation of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.6) Parasitic infestation of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.6''', NULL, + '(373.6) Parasitic infestation of eyelid', '(373.6) Parasitic infestation of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.8) Other inflammations of eyelids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.8) Other inflammations of eyelids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.8''', NULL, + '(373.8) Other inflammations of eyelids', '(373.8) Other inflammations of eyelids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.9) Unspecified inflammation of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.9) Unspecified inflammation of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.9''', NULL, + '(373.9) Unspecified inflammation of eyelid', '(373.9) Unspecified inflammation of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.0''', NULL, + 'Blepharitis (373.0)', 'Blepharitis (373.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.00) Blepharitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.00) Blepharitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.00''', NULL, + '(373.00) Blepharitis, unspecified', '(373.00) Blepharitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.01) Ulcerative blepharitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.01) Ulcerative blepharitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.01''', NULL, + '(373.01) Ulcerative blepharitis', '(373.01) Ulcerative blepharitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.02) Squamous blepharitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.02) Squamous blepharitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.02''', NULL, + '(373.02) Squamous blepharitis', '(373.02) Squamous blepharitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.1''', NULL, + 'Hordeolum and other deep inflammation of eyelid (373.1)', 'Hordeolum and other deep inflammation of eyelid (373.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.11) Hordeolum externum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.11) Hordeolum externum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.11''', NULL, + '(373.11) Hordeolum externum', '(373.11) Hordeolum externum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.12) Hordeolum internum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.12) Hordeolum internum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.12''', NULL, + '(373.12) Hordeolum internum', '(373.12) Hordeolum internum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.13) Abscess of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.13) Abscess of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.13''', NULL, + '(373.13) Abscess of eyelid', '(373.13) Abscess of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.3''', NULL, + 'Noninfectious dermatoses of eyelid (373.3)', 'Noninfectious dermatoses of eyelid (373.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.31) Eczematous dermatitis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.31) Eczematous dermatitis of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.31''', NULL, + '(373.31) Eczematous dermatitis of eyelid', '(373.31) Eczematous dermatitis of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.32) Contact and allergic dermatitis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.32) Contact and allergic dermatitis of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.32''', NULL, + '(373.32) Contact and allergic dermatitis of eyelid', '(373.32) Contact and allergic dermatitis of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.33) Xeroderma of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.33) Xeroderma of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.33''', NULL, + '(373.33) Xeroderma of eyelid', '(373.33) Xeroderma of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.34) Discoid lupus erythematosus of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.34) Discoid lupus erythematosus of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.34''', NULL, + '(373.34) Discoid lupus erythematosus of eyelid', '(373.34) Discoid lupus erythematosus of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370''', NULL, + 'Keratitis (370)', 'Keratitis (370)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\(370.8) Other forms of keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\(370.8) Other forms of keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.8''', NULL, + '(370.8) Other forms of keratitis', '(370.8) Other forms of keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\(370.9) Unspecified keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\(370.9) Unspecified keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.9''', NULL, + '(370.9) Unspecified keratitis', '(370.9) Unspecified keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.3''', NULL, + 'Certain types of keratoconjunctivitis (370.3)', 'Certain types of keratoconjunctivitis (370.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.31) Phlyctenular keratoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.31) Phlyctenular keratoconjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.31''', NULL, + '(370.31) Phlyctenular keratoconjunctivitis', '(370.31) Phlyctenular keratoconjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.32) Limbar and corneal involvement in vernal conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.32) Limbar and corneal involvement in vernal conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.32''', NULL, + '(370.32) Limbar and corneal involvement in vernal conjunctivitis', '(370.32) Limbar and corneal involvement in vernal conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.33) Keratoconjunctivitis sicca, not specified as Sjogren''s\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.33) Keratoconjunctivitis sicca, not specified as Sjogren''s\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.33''', NULL, + '(370.33) Keratoconjunctivitis sicca, not specified as Sjogren''s', '(370.33) Keratoconjunctivitis sicca, not specified as Sjogren''s', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.34) Exposure keratoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.34) Exposure keratoconjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.34''', NULL, + '(370.34) Exposure keratoconjunctivitis', '(370.34) Exposure keratoconjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.35) Neurotrophic keratoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.35) Neurotrophic keratoconjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.35''', NULL, + '(370.35) Neurotrophic keratoconjunctivitis', '(370.35) Neurotrophic keratoconjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.6''', NULL, + 'Corneal neovascularization (370.6)', 'Corneal neovascularization (370.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.60) Corneal neovascularization, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.60) Corneal neovascularization, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.60''', NULL, + '(370.60) Corneal neovascularization, unspecified', '(370.60) Corneal neovascularization, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.61) Localized vascularization of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.61) Localized vascularization of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.61''', NULL, + '(370.61) Localized vascularization of cornea', '(370.61) Localized vascularization of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.62) Pannus (corneal)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.62) Pannus (corneal)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.62) Pannus (corneal''', NULL, + '(370.62) Pannus (corneal)', '(370.62) Pannus (corneal)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.63) Deep vascularization of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.63) Deep vascularization of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.63''', NULL, + '(370.63) Deep vascularization of cornea', '(370.63) Deep vascularization of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.64) Ghost vessels (corneal)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.64) Ghost vessels (corneal)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.64) Ghost vessels (corneal''', NULL, + '(370.64) Ghost vessels (corneal)', '(370.64) Ghost vessels (corneal)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.0''', NULL, + 'Corneal ulcer (370.0)', 'Corneal ulcer (370.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.00) Corneal ulcer, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.00) Corneal ulcer, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.00''', NULL, + '(370.00) Corneal ulcer, unspecified', '(370.00) Corneal ulcer, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.01) Marginal corneal ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.01) Marginal corneal ulcer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.01''', NULL, + '(370.01) Marginal corneal ulcer', '(370.01) Marginal corneal ulcer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.02) Ring corneal ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.02) Ring corneal ulcer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.02''', NULL, + '(370.02) Ring corneal ulcer', '(370.02) Ring corneal ulcer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.03) Central corneal ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.03) Central corneal ulcer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.03''', NULL, + '(370.03) Central corneal ulcer', '(370.03) Central corneal ulcer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.04) Hypopyon ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.04) Hypopyon ulcer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.04''', NULL, + '(370.04) Hypopyon ulcer', '(370.04) Hypopyon ulcer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.05) Mycotic corneal ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.05) Mycotic corneal ulcer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.05''', NULL, + '(370.05) Mycotic corneal ulcer', '(370.05) Mycotic corneal ulcer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.06) Perforated corneal ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.06) Perforated corneal ulcer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.06''', NULL, + '(370.06) Perforated corneal ulcer', '(370.06) Perforated corneal ulcer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.07) Mooren''s ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.07) Mooren''s ulcer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.07''', NULL, + '(370.07) Mooren''s ulcer', '(370.07) Mooren''s ulcer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.5''', NULL, + 'Interstitial and deep keratitis (370.5)', 'Interstitial and deep keratitis (370.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.50) Interstitial keratitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.50) Interstitial keratitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.50''', NULL, + '(370.50) Interstitial keratitis, unspecified', '(370.50) Interstitial keratitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.52) Diffuse interstitial keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.52) Diffuse interstitial keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.52''', NULL, + '(370.52) Diffuse interstitial keratitis', '(370.52) Diffuse interstitial keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.54) Sclerosing keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.54) Sclerosing keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.54''', NULL, + '(370.54) Sclerosing keratitis', '(370.54) Sclerosing keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.55) Corneal abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.55) Corneal abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.55''', NULL, + '(370.55) Corneal abscess', '(370.55) Corneal abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.59) Other interstitial and deep keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.59) Other interstitial and deep keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.59''', NULL, + '(370.59) Other interstitial and deep keratitis', '(370.59) Other interstitial and deep keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.4''', NULL, + 'Other and unspecified keratoconjunctivitis (370.4)', 'Other and unspecified keratoconjunctivitis (370.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.40) Keratoconjunctivitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.40) Keratoconjunctivitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.40''', NULL, + '(370.40) Keratoconjunctivitis, unspecified', '(370.40) Keratoconjunctivitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.44) Keratitis or keratoconjunctivitis in exanthema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.44) Keratitis or keratoconjunctivitis in exanthema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.44''', NULL, + '(370.44) Keratitis or keratoconjunctivitis in exanthema', '(370.44) Keratitis or keratoconjunctivitis in exanthema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.49) Other keratoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.49) Other keratoconjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.49''', NULL, + '(370.49) Other keratoconjunctivitis', '(370.49) Other keratoconjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.2''', NULL, + 'Superficial keratitis without conjunctivitis (370.2)', 'Superficial keratitis without conjunctivitis (370.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.20) Superficial keratitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.20) Superficial keratitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.20''', NULL, + '(370.20) Superficial keratitis, unspecified', '(370.20) Superficial keratitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.21) Punctate keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.21) Punctate keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.21''', NULL, + '(370.21) Punctate keratitis', '(370.21) Punctate keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.22) Macular keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.22) Macular keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.22''', NULL, + '(370.22) Macular keratitis', '(370.22) Macular keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.23) Filamentary keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.23) Filamentary keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.23''', NULL, + '(370.23) Filamentary keratitis', '(370.23) Filamentary keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.24) Photokeratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.24) Photokeratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.24''', NULL, + '(370.24) Photokeratitis', '(370.24) Photokeratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379''', NULL, + 'Other disorders of eye (379)', 'Other disorders of eye (379)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\(379.8) Other specified disorders of eye and adnexa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\(379.8) Other specified disorders of eye and adnexa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.8''', NULL, + '(379.8) Other specified disorders of eye and adnexa', '(379.8) Other specified disorders of eye and adnexa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.4''', NULL, + 'Anomalies of pupillary function (379.4)', 'Anomalies of pupillary function (379.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.40) Abnormal pupillary function, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.40) Abnormal pupillary function, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.40''', NULL, + '(379.40) Abnormal pupillary function, unspecified', '(379.40) Abnormal pupillary function, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.41) Anisocoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.41) Anisocoria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.41''', NULL, + '(379.41) Anisocoria', '(379.41) Anisocoria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.42) Miosis (persistent), not due to miotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.42) Miosis (persistent), not due to miotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.42) Miosis (persistent''', NULL, + '(379.42) Miosis (persistent), not due to miotics', '(379.42) Miosis (persistent), not due to miotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.43) Mydriasis (persistent), not due to mydriatics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.43) Mydriasis (persistent), not due to mydriatics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.43) Mydriasis (persistent''', NULL, + '(379.43) Mydriasis (persistent), not due to mydriatics', '(379.43) Mydriasis (persistent), not due to mydriatics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.45) Argyll Robertson pupil, atypical\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.45) Argyll Robertson pupil, atypical\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.45''', NULL, + '(379.45) Argyll Robertson pupil, atypical', '(379.45) Argyll Robertson pupil, atypical', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.46) Tonic pupillary reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.46) Tonic pupillary reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.46''', NULL, + '(379.46) Tonic pupillary reaction', '(379.46) Tonic pupillary reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.49) Other anomalies of pupillary function\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.49) Other anomalies of pupillary function\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.49''', NULL, + '(379.49) Other anomalies of pupillary function', '(379.49) Other anomalies of pupillary function', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.3''', NULL, + 'Aphakia and other disorders of lens (379.3)', 'Aphakia and other disorders of lens (379.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.31) Aphakia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.31) Aphakia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.31''', NULL, + '(379.31) Aphakia', '(379.31) Aphakia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.32) Subluxation of lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.32) Subluxation of lens\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.32''', NULL, + '(379.32) Subluxation of lens', '(379.32) Subluxation of lens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.33) Anterior dislocation of lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.33) Anterior dislocation of lens\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.33''', NULL, + '(379.33) Anterior dislocation of lens', '(379.33) Anterior dislocation of lens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.34) Posterior dislocation of lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.34) Posterior dislocation of lens\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.34''', NULL, + '(379.34) Posterior dislocation of lens', '(379.34) Posterior dislocation of lens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.39) Other disorders of lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.39) Other disorders of lens\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.39''', NULL, + '(379.39) Other disorders of lens', '(379.39) Other disorders of lens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.2''', NULL, + 'Disorders of vitreous body (379.2)', 'Disorders of vitreous body (379.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.21) Vitreous degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.21) Vitreous degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.21''', NULL, + '(379.21) Vitreous degeneration', '(379.21) Vitreous degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.22) Crystalline deposits in vitreous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.22) Crystalline deposits in vitreous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.22''', NULL, + '(379.22) Crystalline deposits in vitreous', '(379.22) Crystalline deposits in vitreous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.23) Vitreous hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.23) Vitreous hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.23''', NULL, + '(379.23) Vitreous hemorrhage', '(379.23) Vitreous hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.24) Other vitreous opacities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.24) Other vitreous opacities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.24''', NULL, + '(379.24) Other vitreous opacities', '(379.24) Other vitreous opacities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.25) Vitreous membranes and strands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.25) Vitreous membranes and strands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.25''', NULL, + '(379.25) Vitreous membranes and strands', '(379.25) Vitreous membranes and strands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.26) Vitreous prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.26) Vitreous prolapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.26''', NULL, + '(379.26) Vitreous prolapse', '(379.26) Vitreous prolapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.29) Other disorders of vitreous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.29) Other disorders of vitreous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.29''', NULL, + '(379.29) Other disorders of vitreous', '(379.29) Other disorders of vitreous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''infection) of postprocedural bleb (379.6''', NULL, + 'Inflammation (infection) of postprocedural bleb (379.6)', 'Inflammation (infection) of postprocedural bleb (379.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.60) Inflammation (infection) of postprocedural bleb, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.60) Inflammation (infection) of postprocedural bleb, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.60) Inflammation (infection''', NULL, + '(379.60) Inflammation (infection) of postprocedural bleb, unspecified', '(379.60) Inflammation (infection) of postprocedural bleb, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.61) Inflammation (infection) of postprocedural bleb, stage 1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.61) Inflammation (infection) of postprocedural bleb, stage 1\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.61) Inflammation (infection''', NULL, + '(379.61) Inflammation (infection) of postprocedural bleb, stage 1', '(379.61) Inflammation (infection) of postprocedural bleb, stage 1', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.62) Inflammation (infection) of postprocedural bleb, stage 2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.62) Inflammation (infection) of postprocedural bleb, stage 2\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.62) Inflammation (infection''', NULL, + '(379.62) Inflammation (infection) of postprocedural bleb, stage 2', '(379.62) Inflammation (infection) of postprocedural bleb, stage 2', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.63) Inflammation (infection) of postprocedural bleb, stage 3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.63) Inflammation (infection) of postprocedural bleb, stage 3\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.63) Inflammation (infection''', NULL, + '(379.63) Inflammation (infection) of postprocedural bleb, stage 3', '(379.63) Inflammation (infection) of postprocedural bleb, stage 3', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.5''', NULL, + 'Nystagmus and other irregular eye movements (379.5)', 'Nystagmus and other irregular eye movements (379.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.50) Nystagmus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.50) Nystagmus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.50''', NULL, + '(379.50) Nystagmus, unspecified', '(379.50) Nystagmus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.51) Congenital nystagmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.51) Congenital nystagmus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.51''', NULL, + '(379.51) Congenital nystagmus', '(379.51) Congenital nystagmus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.52) Latent nystagmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.52) Latent nystagmus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.52''', NULL, + '(379.52) Latent nystagmus', '(379.52) Latent nystagmus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.53) Visual deprivation nystagmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.53) Visual deprivation nystagmus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.53''', NULL, + '(379.53) Visual deprivation nystagmus', '(379.53) Visual deprivation nystagmus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.54) Nystagmus associated with disorders of the vestibular system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.54) Nystagmus associated with disorders of the vestibular system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.54''', NULL, + '(379.54) Nystagmus associated with disorders of the vestibular system', '(379.54) Nystagmus associated with disorders of the vestibular system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.55) Dissociated nystagmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.55) Dissociated nystagmus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.55''', NULL, + '(379.55) Dissociated nystagmus', '(379.55) Dissociated nystagmus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.56) Other forms of nystagmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.56) Other forms of nystagmus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.56''', NULL, + '(379.56) Other forms of nystagmus', '(379.56) Other forms of nystagmus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.57) Deficiencies of saccadic eye movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.57) Deficiencies of saccadic eye movements\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.57''', NULL, + '(379.57) Deficiencies of saccadic eye movements', '(379.57) Deficiencies of saccadic eye movements', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.58) Deficiencies of smooth pursuit movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.58) Deficiencies of smooth pursuit movements\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.58''', NULL, + '(379.58) Deficiencies of smooth pursuit movements', '(379.58) Deficiencies of smooth pursuit movements', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.59) Other irregularities of eye movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.59) Other irregularities of eye movements\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.59''', NULL, + '(379.59) Other irregularities of eye movements', '(379.59) Other irregularities of eye movements', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.1''', NULL, + 'Other disorders of sclera (379.1)', 'Other disorders of sclera (379.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.11) Scleral ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.11) Scleral ectasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.11''', NULL, + '(379.11) Scleral ectasia', '(379.11) Scleral ectasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.12) Staphyloma posticum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.12) Staphyloma posticum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.12''', NULL, + '(379.12) Staphyloma posticum', '(379.12) Staphyloma posticum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.13) Equatorial staphyloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.13) Equatorial staphyloma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.13''', NULL, + '(379.13) Equatorial staphyloma', '(379.13) Equatorial staphyloma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.14) Anterior staphyloma, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.14) Anterior staphyloma, localized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.14''', NULL, + '(379.14) Anterior staphyloma, localized', '(379.14) Anterior staphyloma, localized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.15) Ring staphyloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.15) Ring staphyloma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.15''', NULL, + '(379.15) Ring staphyloma', '(379.15) Ring staphyloma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.16) Other degenerative disorders of sclera\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.16) Other degenerative disorders of sclera\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.16''', NULL, + '(379.16) Other degenerative disorders of sclera', '(379.16) Other degenerative disorders of sclera', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.19) Other disorders of sclera\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.19) Other disorders of sclera\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.19''', NULL, + '(379.19) Other disorders of sclera', '(379.19) Other disorders of sclera', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.0''', NULL, + 'Scleritis and episcleritis (379.0)', 'Scleritis and episcleritis (379.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.00) Scleritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.00) Scleritis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.00''', NULL, + '(379.00) Scleritis, unspecified', '(379.00) Scleritis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.01) Episcleritis periodica fugax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.01) Episcleritis periodica fugax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.01''', NULL, + '(379.01) Episcleritis periodica fugax', '(379.01) Episcleritis periodica fugax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.02) Nodular episcleritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.02) Nodular episcleritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.02''', NULL, + '(379.02) Nodular episcleritis', '(379.02) Nodular episcleritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.03) Anterior scleritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.03) Anterior scleritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.03''', NULL, + '(379.03) Anterior scleritis', '(379.03) Anterior scleritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.04) Scleromalacia perforans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.04) Scleromalacia perforans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.04''', NULL, + '(379.04) Scleromalacia perforans', '(379.04) Scleromalacia perforans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.05) Scleritis with corneal involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.05) Scleritis with corneal involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.05''', NULL, + '(379.05) Scleritis with corneal involvement', '(379.05) Scleritis with corneal involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.06) Brawny scleritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.06) Brawny scleritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.06''', NULL, + '(379.06) Brawny scleritis', '(379.06) Brawny scleritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.07) Posterior scleritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.07) Posterior scleritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.07''', NULL, + '(379.07) Posterior scleritis', '(379.07) Posterior scleritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.09) Other scleritis and episcleritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.09) Other scleritis and episcleritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.09''', NULL, + '(379.09) Other scleritis and episcleritis', '(379.09) Other scleritis and episcleritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.9''', NULL, + 'Unspecified disorder of eye and adnexa (379.9)', 'Unspecified disorder of eye and adnexa (379.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.90) Disorder of eye, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.90) Disorder of eye, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.90''', NULL, + '(379.90) Disorder of eye, unspecified', '(379.90) Disorder of eye, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.91) Pain in or around eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.91) Pain in or around eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.91''', NULL, + '(379.91) Pain in or around eye', '(379.91) Pain in or around eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.92) Swelling or mass of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.92) Swelling or mass of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.92''', NULL, + '(379.92) Swelling or mass of eye', '(379.92) Swelling or mass of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.93) Redness or discharge of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.93) Redness or discharge of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.93''', NULL, + '(379.93) Redness or discharge of eye', '(379.93) Redness or discharge of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.99) Other ill-defined disorders of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.99) Other ill-defined disorders of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.99''', NULL, + '(379.99) Other ill-defined disorders of eye', '(379.99) Other ill-defined disorders of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374''', NULL, + 'Other disorders of eyelids (374)', 'Other disorders of eyelids (374)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\(374.9) Unspecified disorder of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\(374.9) Unspecified disorder of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.9''', NULL, + '(374.9) Unspecified disorder of eyelid', '(374.9) Unspecified disorder of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.5''', NULL, + 'Degenerative disorders of eyelid and periocular area (374.5)', 'Degenerative disorders of eyelid and periocular area (374.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.50) Degenerative disorder of eyelid, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.50) Degenerative disorder of eyelid, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.50''', NULL, + '(374.50) Degenerative disorder of eyelid, unspecified', '(374.50) Degenerative disorder of eyelid, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.51) Xanthelasma of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.51) Xanthelasma of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.51''', NULL, + '(374.51) Xanthelasma of eyelid', '(374.51) Xanthelasma of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.52) Hyperpigmentation of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.52) Hyperpigmentation of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.52''', NULL, + '(374.52) Hyperpigmentation of eyelid', '(374.52) Hyperpigmentation of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.53) Hypopigmentation of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.53) Hypopigmentation of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.53''', NULL, + '(374.53) Hypopigmentation of eyelid', '(374.53) Hypopigmentation of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.54) Hypertrichosis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.54) Hypertrichosis of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.54''', NULL, + '(374.54) Hypertrichosis of eyelid', '(374.54) Hypertrichosis of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.55) Hypotrichosis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.55) Hypotrichosis of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.55''', NULL, + '(374.55) Hypotrichosis of eyelid', '(374.55) Hypotrichosis of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.56) Other degenerative disorders of skin affecting eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.56) Other degenerative disorders of skin affecting eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.56''', NULL, + '(374.56) Other degenerative disorders of skin affecting eyelid', '(374.56) Other degenerative disorders of skin affecting eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.1''', NULL, + 'Ectropion (374.1)', 'Ectropion (374.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.10) Ectropion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.10) Ectropion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.10''', NULL, + '(374.10) Ectropion, unspecified', '(374.10) Ectropion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.11) Senile ectropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.11) Senile ectropion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.11''', NULL, + '(374.11) Senile ectropion', '(374.11) Senile ectropion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.12) Mechanical ectropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.12) Mechanical ectropion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.12''', NULL, + '(374.12) Mechanical ectropion', '(374.12) Mechanical ectropion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.13) Spastic ectropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.13) Spastic ectropion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.13''', NULL, + '(374.13) Spastic ectropion', '(374.13) Spastic ectropion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.14) Cicatricial ectropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.14) Cicatricial ectropion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.14''', NULL, + '(374.14) Cicatricial ectropion', '(374.14) Cicatricial ectropion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.0''', NULL, + 'Entropion and trichiasis of eyelid (374.0)', 'Entropion and trichiasis of eyelid (374.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.00) Entropion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.00) Entropion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.00''', NULL, + '(374.00) Entropion, unspecified', '(374.00) Entropion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.01) Senile entropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.01) Senile entropion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.01''', NULL, + '(374.01) Senile entropion', '(374.01) Senile entropion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.02) Mechanical entropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.02) Mechanical entropion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.02''', NULL, + '(374.02) Mechanical entropion', '(374.02) Mechanical entropion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.03) Spastic entropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.03) Spastic entropion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.03''', NULL, + '(374.03) Spastic entropion', '(374.03) Spastic entropion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.04) Cicatricial entropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.04) Cicatricial entropion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.04''', NULL, + '(374.04) Cicatricial entropion', '(374.04) Cicatricial entropion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.05) Trichiasis of eyelid without entropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.05) Trichiasis of eyelid without entropion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.05''', NULL, + '(374.05) Trichiasis of eyelid without entropion', '(374.05) Trichiasis of eyelid without entropion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.2''', NULL, + 'Lagophthalmos (374.2)', 'Lagophthalmos (374.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.20) Lagophthalmos, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.20) Lagophthalmos, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.20''', NULL, + '(374.20) Lagophthalmos, unspecified', '(374.20) Lagophthalmos, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.21) Paralytic lagophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.21) Paralytic lagophthalmos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.21''', NULL, + '(374.21) Paralytic lagophthalmos', '(374.21) Paralytic lagophthalmos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.22) Mechanical lagophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.22) Mechanical lagophthalmos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.22''', NULL, + '(374.22) Mechanical lagophthalmos', '(374.22) Mechanical lagophthalmos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.23) Cicatricial lagophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.23) Cicatricial lagophthalmos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.23''', NULL, + '(374.23) Cicatricial lagophthalmos', '(374.23) Cicatricial lagophthalmos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.4''', NULL, + 'Other disorders affecting eyelid function (374.4)', 'Other disorders affecting eyelid function (374.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.41) Lid retraction or lag\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.41) Lid retraction or lag\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.41''', NULL, + '(374.41) Lid retraction or lag', '(374.41) Lid retraction or lag', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.43) Abnormal innervation syndrome of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.43) Abnormal innervation syndrome of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.43''', NULL, + '(374.43) Abnormal innervation syndrome of eyelid', '(374.43) Abnormal innervation syndrome of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.44) Sensory disorders of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.44) Sensory disorders of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.44''', NULL, + '(374.44) Sensory disorders of eyelid', '(374.44) Sensory disorders of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.45) Other sensorimotor disorders of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.45) Other sensorimotor disorders of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.45''', NULL, + '(374.45) Other sensorimotor disorders of eyelid', '(374.45) Other sensorimotor disorders of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.46) Blepharophimosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.46) Blepharophimosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.46''', NULL, + '(374.46) Blepharophimosis', '(374.46) Blepharophimosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.8''', NULL, + 'Other disorders of eyelid (374.8)', 'Other disorders of eyelid (374.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.81) Hemorrhage of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.81) Hemorrhage of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.81''', NULL, + '(374.81) Hemorrhage of eyelid', '(374.81) Hemorrhage of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.82) Edema of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.82) Edema of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.82''', NULL, + '(374.82) Edema of eyelid', '(374.82) Edema of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.83) Elephantiasis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.83) Elephantiasis of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.83''', NULL, + '(374.83) Elephantiasis of eyelid', '(374.83) Elephantiasis of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.84) Cysts of eyelids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.84) Cysts of eyelids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.84''', NULL, + '(374.84) Cysts of eyelids', '(374.84) Cysts of eyelids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.85) Vascular anomalies of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.85) Vascular anomalies of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.85''', NULL, + '(374.85) Vascular anomalies of eyelid', '(374.85) Vascular anomalies of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.86) Retained foreign body of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.86) Retained foreign body of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.86''', NULL, + '(374.86) Retained foreign body of eyelid', '(374.86) Retained foreign body of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.87) Dermatochalasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.87) Dermatochalasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.87''', NULL, + '(374.87) Dermatochalasis', '(374.87) Dermatochalasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.89) Other disorders of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.89) Other disorders of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.89''', NULL, + '(374.89) Other disorders of eyelid', '(374.89) Other disorders of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.3''', NULL, + 'Ptosis of eyelid (374.3)', 'Ptosis of eyelid (374.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.30) Ptosis of eyelid, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.30) Ptosis of eyelid, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.30''', NULL, + '(374.30) Ptosis of eyelid, unspecified', '(374.30) Ptosis of eyelid, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.31) Paralytic ptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.31) Paralytic ptosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.31''', NULL, + '(374.31) Paralytic ptosis', '(374.31) Paralytic ptosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.32) Myogenic ptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.32) Myogenic ptosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.32''', NULL, + '(374.32) Myogenic ptosis', '(374.32) Myogenic ptosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.33) Mechanical ptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.33) Mechanical ptosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.33''', NULL, + '(374.33) Mechanical ptosis', '(374.33) Mechanical ptosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.34) Blepharochalasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.34) Blepharochalasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.34''', NULL, + '(374.34) Blepharochalasis', '(374.34) Blepharochalasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362''', NULL, + 'Other retinal disorders (362)', 'Other retinal disorders (362)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\(362.9) Unspecified retinal disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\(362.9) Unspecified retinal disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.9''', NULL, + '(362.9) Unspecified retinal disorder', '(362.9) Unspecified retinal disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.5''', NULL, + 'Degeneration of macula and posterior pole of retina (362.5)', 'Degeneration of macula and posterior pole of retina (362.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.50) Macular degeneration (senile), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.50) Macular degeneration (senile), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.50) Macular degeneration (senile''', NULL, + '(362.50) Macular degeneration (senile), unspecified', '(362.50) Macular degeneration (senile), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.51) Nonexudative senile macular degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.51) Nonexudative senile macular degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.51''', NULL, + '(362.51) Nonexudative senile macular degeneration', '(362.51) Nonexudative senile macular degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.52) Exudative senile macular degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.52) Exudative senile macular degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.52''', NULL, + '(362.52) Exudative senile macular degeneration', '(362.52) Exudative senile macular degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.53) Cystoid macular degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.53) Cystoid macular degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.53''', NULL, + '(362.53) Cystoid macular degeneration', '(362.53) Cystoid macular degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.54) Macular cyst, hole, or pseudohole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.54) Macular cyst, hole, or pseudohole\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.54''', NULL, + '(362.54) Macular cyst, hole, or pseudohole', '(362.54) Macular cyst, hole, or pseudohole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.55) Toxic maculopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.55) Toxic maculopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.55''', NULL, + '(362.55) Toxic maculopathy', '(362.55) Toxic maculopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.56) Macular puckering\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.56) Macular puckering\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.56''', NULL, + '(362.56) Macular puckering', '(362.56) Macular puckering', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.57) Drusen (degenerative)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.57) Drusen (degenerative)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.57) Drusen (degenerative''', NULL, + '(362.57) Drusen (degenerative)', '(362.57) Drusen (degenerative)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.0''', NULL, + 'Diabetic retinopathy (362.0)', 'Diabetic retinopathy (362.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.01) Background diabetic retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.01) Background diabetic retinopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.01''', NULL, + '(362.01) Background diabetic retinopathy', '(362.01) Background diabetic retinopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.02) Proliferative diabetic retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.02) Proliferative diabetic retinopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.02''', NULL, + '(362.02) Proliferative diabetic retinopathy', '(362.02) Proliferative diabetic retinopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.03) Nonproliferative diabetic retinopathy NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.03) Nonproliferative diabetic retinopathy NOS\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.03''', NULL, + '(362.03) Nonproliferative diabetic retinopathy NOS', '(362.03) Nonproliferative diabetic retinopathy NOS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.04) Mild nonproliferative diabetic retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.04) Mild nonproliferative diabetic retinopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.04''', NULL, + '(362.04) Mild nonproliferative diabetic retinopathy', '(362.04) Mild nonproliferative diabetic retinopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.05) Moderate nonproliferative diabetic retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.05) Moderate nonproliferative diabetic retinopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.05''', NULL, + '(362.05) Moderate nonproliferative diabetic retinopathy', '(362.05) Moderate nonproliferative diabetic retinopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.06) Severe nonproliferative diabetic retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.06) Severe nonproliferative diabetic retinopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.06''', NULL, + '(362.06) Severe nonproliferative diabetic retinopathy', '(362.06) Severe nonproliferative diabetic retinopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.07) Diabetic macular edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.07) Diabetic macular edema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.07''', NULL, + '(362.07) Diabetic macular edema', '(362.07) Diabetic macular edema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.7''', NULL, + 'Hereditary retinal dystrophies (362.7)', 'Hereditary retinal dystrophies (362.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.70) Hereditary retinal dystrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.70) Hereditary retinal dystrophy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.70''', NULL, + '(362.70) Hereditary retinal dystrophy, unspecified', '(362.70) Hereditary retinal dystrophy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.71) Retinal dystrophy in systemic or cerebroretinal lipidoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.71) Retinal dystrophy in systemic or cerebroretinal lipidoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.71''', NULL, + '(362.71) Retinal dystrophy in systemic or cerebroretinal lipidoses', '(362.71) Retinal dystrophy in systemic or cerebroretinal lipidoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.72) Retinal dystrophy in other systemic disorders and syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.72) Retinal dystrophy in other systemic disorders and syndromes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.72''', NULL, + '(362.72) Retinal dystrophy in other systemic disorders and syndromes', '(362.72) Retinal dystrophy in other systemic disorders and syndromes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.73) Vitreoretinal dystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.73) Vitreoretinal dystrophies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.73''', NULL, + '(362.73) Vitreoretinal dystrophies', '(362.73) Vitreoretinal dystrophies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.74) Pigmentary retinal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.74) Pigmentary retinal dystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.74''', NULL, + '(362.74) Pigmentary retinal dystrophy', '(362.74) Pigmentary retinal dystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.75) Other dystrophies primarily involving the sensory retina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.75) Other dystrophies primarily involving the sensory retina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.75''', NULL, + '(362.75) Other dystrophies primarily involving the sensory retina', '(362.75) Other dystrophies primarily involving the sensory retina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.76) Dystrophies primarily involving the retinal pigment epithelium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.76) Dystrophies primarily involving the retinal pigment epithelium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.76''', NULL, + '(362.76) Dystrophies primarily involving the retinal pigment epithelium', '(362.76) Dystrophies primarily involving the retinal pigment epithelium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.77) Dystrophies primarily involving Bruch''s membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.77) Dystrophies primarily involving Bruch''s membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.77''', NULL, + '(362.77) Dystrophies primarily involving Bruch''s membrane', '(362.77) Dystrophies primarily involving Bruch''s membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.1''', NULL, + 'Other background retinopathy and retinal vascular changes (362.1)', 'Other background retinopathy and retinal vascular changes (362.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.10) Background retinopathy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.10) Background retinopathy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.10''', NULL, + '(362.10) Background retinopathy, unspecified', '(362.10) Background retinopathy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.11) Hypertensive retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.11) Hypertensive retinopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.11''', NULL, + '(362.11) Hypertensive retinopathy', '(362.11) Hypertensive retinopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.12) Exudative retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.12) Exudative retinopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.12''', NULL, + '(362.12) Exudative retinopathy', '(362.12) Exudative retinopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.13) Changes in vascular appearance of retina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.13) Changes in vascular appearance of retina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.13''', NULL, + '(362.13) Changes in vascular appearance of retina', '(362.13) Changes in vascular appearance of retina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.14) Retinal microaneurysms NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.14) Retinal microaneurysms NOS\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.14''', NULL, + '(362.14) Retinal microaneurysms NOS', '(362.14) Retinal microaneurysms NOS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.15) Retinal telangiectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.15) Retinal telangiectasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.15''', NULL, + '(362.15) Retinal telangiectasia', '(362.15) Retinal telangiectasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.16) Retinal neovascularization NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.16) Retinal neovascularization NOS\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.16''', NULL, + '(362.16) Retinal neovascularization NOS', '(362.16) Retinal neovascularization NOS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.17) Other intraretinal microvascular abnormalities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.17) Other intraretinal microvascular abnormalities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.17''', NULL, + '(362.17) Other intraretinal microvascular abnormalities', '(362.17) Other intraretinal microvascular abnormalities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.18) Retinal vasculitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.18) Retinal vasculitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.18''', NULL, + '(362.18) Retinal vasculitis', '(362.18) Retinal vasculitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.2''', NULL, + 'Other proliferative retinopathy (362.2)', 'Other proliferative retinopathy (362.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.21) Retrolental fibroplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.21) Retrolental fibroplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.21''', NULL, + '(362.21) Retrolental fibroplasia', '(362.21) Retrolental fibroplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.22) Retinopathy of prematurity, stage 0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.22) Retinopathy of prematurity, stage 0\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.22''', NULL, + '(362.22) Retinopathy of prematurity, stage 0', '(362.22) Retinopathy of prematurity, stage 0', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.23) Retinopathy of prematurity, stage 1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.23) Retinopathy of prematurity, stage 1\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.23''', NULL, + '(362.23) Retinopathy of prematurity, stage 1', '(362.23) Retinopathy of prematurity, stage 1', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.24) Retinopathy of prematurity, stage 2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.24) Retinopathy of prematurity, stage 2\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.24''', NULL, + '(362.24) Retinopathy of prematurity, stage 2', '(362.24) Retinopathy of prematurity, stage 2', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.25) Retinopathy of prematurity, stage 3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.25) Retinopathy of prematurity, stage 3\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.25''', NULL, + '(362.25) Retinopathy of prematurity, stage 3', '(362.25) Retinopathy of prematurity, stage 3', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.26) Retinopathy of prematurity, stage 4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.26) Retinopathy of prematurity, stage 4\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.26''', NULL, + '(362.26) Retinopathy of prematurity, stage 4', '(362.26) Retinopathy of prematurity, stage 4', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.29) Other nondiabetic proliferative retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.29) Other nondiabetic proliferative retinopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.29''', NULL, + '(362.29) Other nondiabetic proliferative retinopathy', '(362.29) Other nondiabetic proliferative retinopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.8''', NULL, + 'Other retinal disorders (362.8)', 'Other retinal disorders (362.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.81) Retinal hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.81) Retinal hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.81''', NULL, + '(362.81) Retinal hemorrhage', '(362.81) Retinal hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.82) Retinal exudates and deposits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.82) Retinal exudates and deposits\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.82''', NULL, + '(362.82) Retinal exudates and deposits', '(362.82) Retinal exudates and deposits', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.83) Retinal edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.83) Retinal edema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.83''', NULL, + '(362.83) Retinal edema', '(362.83) Retinal edema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.84) Retinal ischemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.84) Retinal ischemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.84''', NULL, + '(362.84) Retinal ischemia', '(362.84) Retinal ischemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.85) Retinal nerve fiber bundle defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.85) Retinal nerve fiber bundle defects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.85''', NULL, + '(362.85) Retinal nerve fiber bundle defects', '(362.85) Retinal nerve fiber bundle defects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.89) Other retinal disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.89) Other retinal disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.89''', NULL, + '(362.89) Other retinal disorders', '(362.89) Other retinal disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.6''', NULL, + 'Peripheral retinal degenerations (362.6)', 'Peripheral retinal degenerations (362.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.60) Peripheral retinal degeneration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.60) Peripheral retinal degeneration, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.60''', NULL, + '(362.60) Peripheral retinal degeneration, unspecified', '(362.60) Peripheral retinal degeneration, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.61) Paving stone degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.61) Paving stone degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.61''', NULL, + '(362.61) Paving stone degeneration', '(362.61) Paving stone degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.62) Microcystoid degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.62) Microcystoid degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.62''', NULL, + '(362.62) Microcystoid degeneration', '(362.62) Microcystoid degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.63) Lattice degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.63) Lattice degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.63''', NULL, + '(362.63) Lattice degeneration', '(362.63) Lattice degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.64) Senile reticular degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.64) Senile reticular degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.64''', NULL, + '(362.64) Senile reticular degeneration', '(362.64) Senile reticular degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.65) Secondary pigmentary degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.65) Secondary pigmentary degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.65''', NULL, + '(362.65) Secondary pigmentary degeneration', '(362.65) Secondary pigmentary degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.66) Secondary vitreoretinal degenerations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.66) Secondary vitreoretinal degenerations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.66''', NULL, + '(362.66) Secondary vitreoretinal degenerations', '(362.66) Secondary vitreoretinal degenerations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.3''', NULL, + 'Retinal vascular occlusion (362.3)', 'Retinal vascular occlusion (362.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.30) Retinal vascular occlusion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.30) Retinal vascular occlusion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.30''', NULL, + '(362.30) Retinal vascular occlusion, unspecified', '(362.30) Retinal vascular occlusion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.31) Central retinal artery occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.31) Central retinal artery occlusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.31''', NULL, + '(362.31) Central retinal artery occlusion', '(362.31) Central retinal artery occlusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.32) Retinal arterial branch occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.32) Retinal arterial branch occlusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.32''', NULL, + '(362.32) Retinal arterial branch occlusion', '(362.32) Retinal arterial branch occlusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.33) Partial retinal arterial occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.33) Partial retinal arterial occlusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.33''', NULL, + '(362.33) Partial retinal arterial occlusion', '(362.33) Partial retinal arterial occlusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.34) Transient retinal arterial occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.34) Transient retinal arterial occlusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.34''', NULL, + '(362.34) Transient retinal arterial occlusion', '(362.34) Transient retinal arterial occlusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.35) Central retinal vein occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.35) Central retinal vein occlusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.35''', NULL, + '(362.35) Central retinal vein occlusion', '(362.35) Central retinal vein occlusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.36) Venous tributary (branch) occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.36) Venous tributary (branch) occlusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.36) Venous tributary (branch''', NULL, + '(362.36) Venous tributary (branch) occlusion', '(362.36) Venous tributary (branch) occlusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.37) Venous engorgement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.37) Venous engorgement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.37''', NULL, + '(362.37) Venous engorgement', '(362.37) Venous engorgement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.4''', NULL, + 'Separation of retinal layers (362.4)', 'Separation of retinal layers (362.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.40) Retinal layer separation, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.40) Retinal layer separation, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.40''', NULL, + '(362.40) Retinal layer separation, unspecified', '(362.40) Retinal layer separation, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.41) Central serous retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.41) Central serous retinopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.41''', NULL, + '(362.41) Central serous retinopathy', '(362.41) Central serous retinopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.42) Serous detachment of retinal pigment epithelium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.42) Serous detachment of retinal pigment epithelium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.42''', NULL, + '(362.42) Serous detachment of retinal pigment epithelium', '(362.42) Serous detachment of retinal pigment epithelium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.43) Hemorrhagic detachment of retinal pigment epithelium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.43) Hemorrhagic detachment of retinal pigment epithelium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.43''', NULL, + '(362.43) Hemorrhagic detachment of retinal pigment epithelium', '(362.43) Hemorrhagic detachment of retinal pigment epithelium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361''', NULL, + 'Retinal detachments and defects (361)', 'Retinal detachments and defects (361)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\(361.2) Serous retinal detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\(361.2) Serous retinal detachment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.2''', NULL, + '(361.2) Serous retinal detachment', '(361.2) Serous retinal detachment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\(361.9) Unspecified retinal detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\(361.9) Unspecified retinal detachment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.9''', NULL, + '(361.9) Unspecified retinal detachment', '(361.9) Unspecified retinal detachment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.8''', NULL, + 'Other forms of retinal detachment (361.8)', 'Other forms of retinal detachment (361.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\(361.81) Traction detachment of retina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\(361.81) Traction detachment of retina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.81''', NULL, + '(361.81) Traction detachment of retina', '(361.81) Traction detachment of retina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\(361.89) Other forms of retinal detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\(361.89) Other forms of retinal detachment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.89''', NULL, + '(361.89) Other forms of retinal detachment', '(361.89) Other forms of retinal detachment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.3''', NULL, + 'Retinal defects without detachment (361.3)', 'Retinal defects without detachment (361.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.30) Retinal defect, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.30) Retinal defect, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.30''', NULL, + '(361.30) Retinal defect, unspecified', '(361.30) Retinal defect, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.31) Round hole of retina without detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.31) Round hole of retina without detachment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.31''', NULL, + '(361.31) Round hole of retina without detachment', '(361.31) Round hole of retina without detachment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.32) Horseshoe tear of retina without detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.32) Horseshoe tear of retina without detachment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.32''', NULL, + '(361.32) Horseshoe tear of retina without detachment', '(361.32) Horseshoe tear of retina without detachment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.33) Multiple defects of retina without detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.33) Multiple defects of retina without detachment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.33''', NULL, + '(361.33) Multiple defects of retina without detachment', '(361.33) Multiple defects of retina without detachment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.0''', NULL, + 'Retinal detachment with retinal defect (361.0)', 'Retinal detachment with retinal defect (361.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.00) Retinal detachment with retinal defect, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.00) Retinal detachment with retinal defect, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.00''', NULL, + '(361.00) Retinal detachment with retinal defect, unspecified', '(361.00) Retinal detachment with retinal defect, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.01) Recent retinal detachment, partial, with single defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.01) Recent retinal detachment, partial, with single defect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.01''', NULL, + '(361.01) Recent retinal detachment, partial, with single defect', '(361.01) Recent retinal detachment, partial, with single defect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.02) Recent retinal detachment, partial, with multiple defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.02) Recent retinal detachment, partial, with multiple defects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.02''', NULL, + '(361.02) Recent retinal detachment, partial, with multiple defects', '(361.02) Recent retinal detachment, partial, with multiple defects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.03) Recent retinal detachment, partial, with giant tear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.03) Recent retinal detachment, partial, with giant tear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.03''', NULL, + '(361.03) Recent retinal detachment, partial, with giant tear', '(361.03) Recent retinal detachment, partial, with giant tear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.04) Recent retinal detachment, partial, with retinal dialysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.04) Recent retinal detachment, partial, with retinal dialysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.04''', NULL, + '(361.04) Recent retinal detachment, partial, with retinal dialysis', '(361.04) Recent retinal detachment, partial, with retinal dialysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.05) Recent retinal detachment, total or subtotal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.05) Recent retinal detachment, total or subtotal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.05''', NULL, + '(361.05) Recent retinal detachment, total or subtotal', '(361.05) Recent retinal detachment, total or subtotal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.06) Old retinal detachment, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.06) Old retinal detachment, partial\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.06''', NULL, + '(361.06) Old retinal detachment, partial', '(361.06) Old retinal detachment, partial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.07) Old retinal detachment, total or subtotal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.07) Old retinal detachment, total or subtotal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.07''', NULL, + '(361.07) Old retinal detachment, total or subtotal', '(361.07) Old retinal detachment, total or subtotal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.1''', NULL, + 'Retinoschisis and retinal cysts (361.1)', 'Retinoschisis and retinal cysts (361.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.10) Retinoschisis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.10) Retinoschisis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.10''', NULL, + '(361.10) Retinoschisis, unspecified', '(361.10) Retinoschisis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.11) Flat retinoschisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.11) Flat retinoschisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.11''', NULL, + '(361.11) Flat retinoschisis', '(361.11) Flat retinoschisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.12) Bullous retinoschisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.12) Bullous retinoschisis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.12''', NULL, + '(361.12) Bullous retinoschisis', '(361.12) Bullous retinoschisis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.13) Primary retinal cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.13) Primary retinal cysts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.13''', NULL, + '(361.13) Primary retinal cysts', '(361.13) Primary retinal cysts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.14) Secondary retinal cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.14) Secondary retinal cysts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.14''', NULL, + '(361.14) Secondary retinal cysts', '(361.14) Secondary retinal cysts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.19) Other retinoschisis and retinal cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.19) Other retinoschisis and retinal cysts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.19''', NULL, + '(361.19) Other retinoschisis and retinal cysts', '(361.19) Other retinoschisis and retinal cysts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378''', NULL, + 'Strabismus and other disorders of binocular eye movements (378)', 'Strabismus and other disorders of binocular eye movements (378)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\(378.9) Unspecified disorder of eye movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\(378.9) Unspecified disorder of eye movements\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.9''', NULL, + '(378.9) Unspecified disorder of eye movements', '(378.9) Unspecified disorder of eye movements', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.0''', NULL, + 'Esotropia (378.0)', 'Esotropia (378.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.00) Esotropia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.00) Esotropia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.00''', NULL, + '(378.00) Esotropia, unspecified', '(378.00) Esotropia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.01) Monocular esotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.01) Monocular esotropia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.01''', NULL, + '(378.01) Monocular esotropia', '(378.01) Monocular esotropia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.02) Monocular esotropia with A pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.02) Monocular esotropia with A pattern\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.02''', NULL, + '(378.02) Monocular esotropia with A pattern', '(378.02) Monocular esotropia with A pattern', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.03) Monocular esotropia with V pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.03) Monocular esotropia with V pattern\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.03''', NULL, + '(378.03) Monocular esotropia with V pattern', '(378.03) Monocular esotropia with V pattern', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.04) Monocular esotropia with other noncomitancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.04) Monocular esotropia with other noncomitancies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.04''', NULL, + '(378.04) Monocular esotropia with other noncomitancies', '(378.04) Monocular esotropia with other noncomitancies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.05) Alternating esotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.05) Alternating esotropia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.05''', NULL, + '(378.05) Alternating esotropia', '(378.05) Alternating esotropia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.06) Alternating esotropia with A pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.06) Alternating esotropia with A pattern\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.06''', NULL, + '(378.06) Alternating esotropia with A pattern', '(378.06) Alternating esotropia with A pattern', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.07) Alternating esotropia with V pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.07) Alternating esotropia with V pattern\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.07''', NULL, + '(378.07) Alternating esotropia with V pattern', '(378.07) Alternating esotropia with V pattern', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.08) Alternating esotropia with other noncomitancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.08) Alternating esotropia with other noncomitancies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.08''', NULL, + '(378.08) Alternating esotropia with other noncomitancies', '(378.08) Alternating esotropia with other noncomitancies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.1''', NULL, + 'Exotropia (378.1)', 'Exotropia (378.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.10) Exotropia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.10) Exotropia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.10''', NULL, + '(378.10) Exotropia, unspecified', '(378.10) Exotropia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.11) Monocular exotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.11) Monocular exotropia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.11''', NULL, + '(378.11) Monocular exotropia', '(378.11) Monocular exotropia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.12) Monocular exotropia with A pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.12) Monocular exotropia with A pattern\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.12''', NULL, + '(378.12) Monocular exotropia with A pattern', '(378.12) Monocular exotropia with A pattern', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.13) Monocular exotropia with V pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.13) Monocular exotropia with V pattern\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.13''', NULL, + '(378.13) Monocular exotropia with V pattern', '(378.13) Monocular exotropia with V pattern', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.14) Monocular exotropia with other noncomitancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.14) Monocular exotropia with other noncomitancies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.14''', NULL, + '(378.14) Monocular exotropia with other noncomitancies', '(378.14) Monocular exotropia with other noncomitancies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.15) Alternating exotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.15) Alternating exotropia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.15''', NULL, + '(378.15) Alternating exotropia', '(378.15) Alternating exotropia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.16) Alternating exotropia with A pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.16) Alternating exotropia with A pattern\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.16''', NULL, + '(378.16) Alternating exotropia with A pattern', '(378.16) Alternating exotropia with A pattern', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.17) Alternating exotropia with V pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.17) Alternating exotropia with V pattern\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.17''', NULL, + '(378.17) Alternating exotropia with V pattern', '(378.17) Alternating exotropia with V pattern', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.18) Alternating exotropia with other noncomitancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.18) Alternating exotropia with other noncomitancies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.18''', NULL, + '(378.18) Alternating exotropia with other noncomitancies', '(378.18) Alternating exotropia with other noncomitancies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.4''', NULL, + 'Heterophoria (378.4)', 'Heterophoria (378.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.40) Heterophoria, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.40) Heterophoria, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.40''', NULL, + '(378.40) Heterophoria, unspecified', '(378.40) Heterophoria, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.41) Esophoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.41) Esophoria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.41''', NULL, + '(378.41) Esophoria', '(378.41) Esophoria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.42) Exophoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.42) Exophoria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.42''', NULL, + '(378.42) Exophoria', '(378.42) Exophoria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.43) Vertical heterophoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.43) Vertical heterophoria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.43''', NULL, + '(378.43) Vertical heterophoria', '(378.43) Vertical heterophoria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.44) Cyclophoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.44) Cyclophoria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.44''', NULL, + '(378.44) Cyclophoria', '(378.44) Cyclophoria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.45) Alternating hyperphoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.45) Alternating hyperphoria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.45''', NULL, + '(378.45) Alternating hyperphoria', '(378.45) Alternating hyperphoria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.2''', NULL, + 'Intermittent heterotropia (378.2)', 'Intermittent heterotropia (378.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.20) Intermittent heterotropia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.20) Intermittent heterotropia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.20''', NULL, + '(378.20) Intermittent heterotropia, unspecified', '(378.20) Intermittent heterotropia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.21) Intermittent esotropia, monocular\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.21) Intermittent esotropia, monocular\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.21''', NULL, + '(378.21) Intermittent esotropia, monocular', '(378.21) Intermittent esotropia, monocular', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.22) Intermittent esotropia, alternating\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.22) Intermittent esotropia, alternating\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.22''', NULL, + '(378.22) Intermittent esotropia, alternating', '(378.22) Intermittent esotropia, alternating', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.23) Intermittent exotropia, monocular\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.23) Intermittent exotropia, monocular\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.23''', NULL, + '(378.23) Intermittent exotropia, monocular', '(378.23) Intermittent exotropia, monocular', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.24) Intermittent exotropia, alternating\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.24) Intermittent exotropia, alternating\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.24''', NULL, + '(378.24) Intermittent exotropia, alternating', '(378.24) Intermittent exotropia, alternating', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.6''', NULL, + 'Mechanical strabismus (378.6)', 'Mechanical strabismus (378.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.60) Mechanical strabismus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.60) Mechanical strabismus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.60''', NULL, + '(378.60) Mechanical strabismus, unspecified', '(378.60) Mechanical strabismus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.61) Brown''s (tendon) sheath syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.61) Brown''s (tendon) sheath syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.61) Brown''s (tendon''', NULL, + '(378.61) Brown''s (tendon) sheath syndrome', '(378.61) Brown''s (tendon) sheath syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.62) Mechanical strabismus from other musculofascial disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.62) Mechanical strabismus from other musculofascial disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.62''', NULL, + '(378.62) Mechanical strabismus from other musculofascial disorders', '(378.62) Mechanical strabismus from other musculofascial disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.63) Limited duction associated with other conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.63) Limited duction associated with other conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.63''', NULL, + '(378.63) Limited duction associated with other conditions', '(378.63) Limited duction associated with other conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.3''', NULL, + 'Other and unspecified heterotropia (378.3)', 'Other and unspecified heterotropia (378.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.30) Heterotropia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.30) Heterotropia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.30''', NULL, + '(378.30) Heterotropia, unspecified', '(378.30) Heterotropia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.31) Hypertropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.31) Hypertropia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.31''', NULL, + '(378.31) Hypertropia', '(378.31) Hypertropia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.32) Hypotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.32) Hypotropia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.32''', NULL, + '(378.32) Hypotropia', '(378.32) Hypotropia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.33) Cyclotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.33) Cyclotropia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.33''', NULL, + '(378.33) Cyclotropia', '(378.33) Cyclotropia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.34) Monofixation syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.34) Monofixation syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.34''', NULL, + '(378.34) Monofixation syndrome', '(378.34) Monofixation syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.35) Accommodative component in esotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.35) Accommodative component in esotropia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.35''', NULL, + '(378.35) Accommodative component in esotropia', '(378.35) Accommodative component in esotropia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.8''', NULL, + 'Other disorders of binocular eye movements (378.8)', 'Other disorders of binocular eye movements (378.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.81) Palsy of conjugate gaze\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.81) Palsy of conjugate gaze\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.81''', NULL, + '(378.81) Palsy of conjugate gaze', '(378.81) Palsy of conjugate gaze', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.82) Spasm of conjugate gaze\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.82) Spasm of conjugate gaze\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.82''', NULL, + '(378.82) Spasm of conjugate gaze', '(378.82) Spasm of conjugate gaze', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.83) Convergence insufficiency or palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.83) Convergence insufficiency or palsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.83''', NULL, + '(378.83) Convergence insufficiency or palsy', '(378.83) Convergence insufficiency or palsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.84) Convergence excess or spasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.84) Convergence excess or spasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.84''', NULL, + '(378.84) Convergence excess or spasm', '(378.84) Convergence excess or spasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.85) Anomalies of divergence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.85) Anomalies of divergence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.85''', NULL, + '(378.85) Anomalies of divergence', '(378.85) Anomalies of divergence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.86) Internuclear ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.86) Internuclear ophthalmoplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.86''', NULL, + '(378.86) Internuclear ophthalmoplegia', '(378.86) Internuclear ophthalmoplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.87) Other dissociated deviation of eye movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.87) Other dissociated deviation of eye movements\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.87''', NULL, + '(378.87) Other dissociated deviation of eye movements', '(378.87) Other dissociated deviation of eye movements', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.7''', NULL, + 'Other specified strabismus (378.7)', 'Other specified strabismus (378.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.71) Duane''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.71) Duane''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.71''', NULL, + '(378.71) Duane''s syndrome', '(378.71) Duane''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.72) Progressive external ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.72) Progressive external ophthalmoplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.72''', NULL, + '(378.72) Progressive external ophthalmoplegia', '(378.72) Progressive external ophthalmoplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.73) Strabismus in other neuromuscular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.73) Strabismus in other neuromuscular disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.73''', NULL, + '(378.73) Strabismus in other neuromuscular disorders', '(378.73) Strabismus in other neuromuscular disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.5''', NULL, + 'Paralytic strabismus (378.5)', 'Paralytic strabismus (378.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.50) Paralytic strabismus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.50) Paralytic strabismus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.50''', NULL, + '(378.50) Paralytic strabismus, unspecified', '(378.50) Paralytic strabismus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.51) Third or oculomotor nerve palsy, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.51) Third or oculomotor nerve palsy, partial\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.51''', NULL, + '(378.51) Third or oculomotor nerve palsy, partial', '(378.51) Third or oculomotor nerve palsy, partial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.52) Third or oculomotor nerve palsy, total\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.52) Third or oculomotor nerve palsy, total\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.52''', NULL, + '(378.52) Third or oculomotor nerve palsy, total', '(378.52) Third or oculomotor nerve palsy, total', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.53) Fourth or trochlear nerve palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.53) Fourth or trochlear nerve palsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.53''', NULL, + '(378.53) Fourth or trochlear nerve palsy', '(378.53) Fourth or trochlear nerve palsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.54) Sixth or abducens nerve palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.54) Sixth or abducens nerve palsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.54''', NULL, + '(378.54) Sixth or abducens nerve palsy', '(378.54) Sixth or abducens nerve palsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.55) External ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.55) External ophthalmoplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.55''', NULL, + '(378.55) External ophthalmoplegia', '(378.55) External ophthalmoplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.56) Total ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.56) Total ophthalmoplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.56''', NULL, + '(378.56) Total ophthalmoplegia', '(378.56) Total ophthalmoplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368''', NULL, + 'Visual disturbances (368)', 'Visual disturbances (368)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.2) Diplopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.2) Diplopia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.2''', NULL, + '(368.2) Diplopia', '(368.2) Diplopia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.8) Other specified visual disturbances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.8) Other specified visual disturbances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.8''', NULL, + '(368.8) Other specified visual disturbances', '(368.8) Other specified visual disturbances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.9) Unspecified visual disturbance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.9) Unspecified visual disturbance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.9''', NULL, + '(368.9) Unspecified visual disturbance', '(368.9) Unspecified visual disturbance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.0''', NULL, + 'Amblyopia ex anopsia (368.0)', 'Amblyopia ex anopsia (368.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.00) Amblyopia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.00) Amblyopia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.00''', NULL, + '(368.00) Amblyopia, unspecified', '(368.00) Amblyopia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.01) Strabismic amblyopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.01) Strabismic amblyopia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.01''', NULL, + '(368.01) Strabismic amblyopia', '(368.01) Strabismic amblyopia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.02) Deprivation amblyopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.02) Deprivation amblyopia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.02''', NULL, + '(368.02) Deprivation amblyopia', '(368.02) Deprivation amblyopia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.03) Refractive amblyopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.03) Refractive amblyopia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.03''', NULL, + '(368.03) Refractive amblyopia', '(368.03) Refractive amblyopia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.5''', NULL, + 'Color vision deficiencies (368.5)', 'Color vision deficiencies (368.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.51) Protan defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.51) Protan defect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.51''', NULL, + '(368.51) Protan defect', '(368.51) Protan defect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.52) Deutan defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.52) Deutan defect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.52''', NULL, + '(368.52) Deutan defect', '(368.52) Deutan defect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.53) Tritan defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.53) Tritan defect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.53''', NULL, + '(368.53) Tritan defect', '(368.53) Tritan defect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.54) Achromatopsia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.54) Achromatopsia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.54''', NULL, + '(368.54) Achromatopsia', '(368.54) Achromatopsia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.55) Acquired color vision deficiencies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.55) Acquired color vision deficiencies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.55''', NULL, + '(368.55) Acquired color vision deficiencies', '(368.55) Acquired color vision deficiencies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.59) Other color vision deficiencies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.59) Other color vision deficiencies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.59''', NULL, + '(368.59) Other color vision deficiencies', '(368.59) Other color vision deficiencies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.6''', NULL, + 'Night blindness (368.6)', 'Night blindness (368.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.60) Night blindness, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.60) Night blindness, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.60''', NULL, + '(368.60) Night blindness, unspecified', '(368.60) Night blindness, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.61) Congenital night blindness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.61) Congenital night blindness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.61''', NULL, + '(368.61) Congenital night blindness', '(368.61) Congenital night blindness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.62) Acquired night blindness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.62) Acquired night blindness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.62''', NULL, + '(368.62) Acquired night blindness', '(368.62) Acquired night blindness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.63) Abnormal dark adaptation curve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.63) Abnormal dark adaptation curve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.63''', NULL, + '(368.63) Abnormal dark adaptation curve', '(368.63) Abnormal dark adaptation curve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.69) Other night blindness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.69) Other night blindness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.69''', NULL, + '(368.69) Other night blindness', '(368.69) Other night blindness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.3''', NULL, + 'Other disorders of binocular vision (368.3)', 'Other disorders of binocular vision (368.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.30) Binocular vision disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.30) Binocular vision disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.30''', NULL, + '(368.30) Binocular vision disorder, unspecified', '(368.30) Binocular vision disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.31) Suppression of binocular vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.31) Suppression of binocular vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.31''', NULL, + '(368.31) Suppression of binocular vision', '(368.31) Suppression of binocular vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.32) Simultaneous visual perception without fusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.32) Simultaneous visual perception without fusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.32''', NULL, + '(368.32) Simultaneous visual perception without fusion', '(368.32) Simultaneous visual perception without fusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.33) Fusion with defective stereopsis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.33) Fusion with defective stereopsis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.33''', NULL, + '(368.33) Fusion with defective stereopsis', '(368.33) Fusion with defective stereopsis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.34) Abnormal retinal correspondence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.34) Abnormal retinal correspondence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.34''', NULL, + '(368.34) Abnormal retinal correspondence', '(368.34) Abnormal retinal correspondence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.1''', NULL, + 'Subjective visual disturbances (368.1)', 'Subjective visual disturbances (368.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.10) Subjective visual disturbance, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.10) Subjective visual disturbance, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.10''', NULL, + '(368.10) Subjective visual disturbance, unspecified', '(368.10) Subjective visual disturbance, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.11) Sudden visual loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.11) Sudden visual loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.11''', NULL, + '(368.11) Sudden visual loss', '(368.11) Sudden visual loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.12) Transient visual loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.12) Transient visual loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.12''', NULL, + '(368.12) Transient visual loss', '(368.12) Transient visual loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.13) Visual discomfort\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.13) Visual discomfort\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.13''', NULL, + '(368.13) Visual discomfort', '(368.13) Visual discomfort', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.14) Visual distortions of shape and size\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.14) Visual distortions of shape and size\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.14''', NULL, + '(368.14) Visual distortions of shape and size', '(368.14) Visual distortions of shape and size', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.15) Other visual distortions and entoptic phenomena\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.15) Other visual distortions and entoptic phenomena\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.15''', NULL, + '(368.15) Other visual distortions and entoptic phenomena', '(368.15) Other visual distortions and entoptic phenomena', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.16) Psychophysical visual disturbances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.16) Psychophysical visual disturbances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.16''', NULL, + '(368.16) Psychophysical visual disturbances', '(368.16) Psychophysical visual disturbances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.4''', NULL, + 'Visual field defects (368.4)', 'Visual field defects (368.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.40) Visual field defect, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.40) Visual field defect, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.40''', NULL, + '(368.40) Visual field defect, unspecified', '(368.40) Visual field defect, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.41) Scotoma involving central area\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.41) Scotoma involving central area\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.41''', NULL, + '(368.41) Scotoma involving central area', '(368.41) Scotoma involving central area', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.42) Scotoma of blind spot area\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.42) Scotoma of blind spot area\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.42''', NULL, + '(368.42) Scotoma of blind spot area', '(368.42) Scotoma of blind spot area', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.43) Sector or arcuate visual field defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.43) Sector or arcuate visual field defects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.43''', NULL, + '(368.43) Sector or arcuate visual field defects', '(368.43) Sector or arcuate visual field defects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.44) Other localized visual field defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.44) Other localized visual field defect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.44''', NULL, + '(368.44) Other localized visual field defect', '(368.44) Other localized visual field defect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.45) Generalized visual field contraction or constriction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.45) Generalized visual field contraction or constriction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.45''', NULL, + '(368.45) Generalized visual field contraction or constriction', '(368.45) Generalized visual field contraction or constriction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.46) Homonymous bilateral field defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.46) Homonymous bilateral field defects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.46''', NULL, + '(368.46) Homonymous bilateral field defects', '(368.46) Homonymous bilateral field defects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.47) Heteronymous bilateral field defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.47) Heteronymous bilateral field defects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.47''', NULL, + '(368.47) Heteronymous bilateral field defects', '(368.47) Heteronymous bilateral field defects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''350'' AND ''359.99''', NULL, + 'Disorders of the peripheral nervous system (350-359.99)', 'Disorders of the peripheral nervous system (350-359.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352''', NULL, + 'Disorders of other cranial nerves (352)', 'Disorders of other cranial nerves (352)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.0) Disorders of olfactory (1st) nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.0) Disorders of olfactory (1st) nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.0) Disorders of olfactory (1st''', NULL, + '(352.0) Disorders of olfactory (1st) nerve', '(352.0) Disorders of olfactory (1st) nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.1) Glossopharyngeal neuralgia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.1) Glossopharyngeal neuralgia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.1''', NULL, + '(352.1) Glossopharyngeal neuralgia', '(352.1) Glossopharyngeal neuralgia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.2) Other disorders of glossopharyngeal [9th] nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.2) Other disorders of glossopharyngeal [9th] nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.2''', NULL, + '(352.2) Other disorders of glossopharyngeal [9th] nerve', '(352.2) Other disorders of glossopharyngeal [9th] nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.3) Disorders of pneumogastric [10th] nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.3) Disorders of pneumogastric [10th] nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.3''', NULL, + '(352.3) Disorders of pneumogastric [10th] nerve', '(352.3) Disorders of pneumogastric [10th] nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.4) Disorders of accessory [11th] nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.4) Disorders of accessory [11th] nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.4''', NULL, + '(352.4) Disorders of accessory [11th] nerve', '(352.4) Disorders of accessory [11th] nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.5) Disorders of hypoglossal [12th] nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.5) Disorders of hypoglossal [12th] nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.5''', NULL, + '(352.5) Disorders of hypoglossal [12th] nerve', '(352.5) Disorders of hypoglossal [12th] nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.6) Multiple cranial nerve palsies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.6) Multiple cranial nerve palsies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.6''', NULL, + '(352.6) Multiple cranial nerve palsies', '(352.6) Multiple cranial nerve palsies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.9) Unspecified disorder of cranial nerves\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.9) Unspecified disorder of cranial nerves\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.9''', NULL, + '(352.9) Unspecified disorder of cranial nerves', '(352.9) Unspecified disorder of cranial nerves', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''351''', NULL, + 'Facial nerve disorders (351)', 'Facial nerve disorders (351)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.0) Bell''s palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.0) Bell''s palsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''351.0''', NULL, + '(351.0) Bell''s palsy', '(351.0) Bell''s palsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.1) Geniculate ganglionitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.1) Geniculate ganglionitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''351.1''', NULL, + '(351.1) Geniculate ganglionitis', '(351.1) Geniculate ganglionitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.8) Other facial nerve disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.8) Other facial nerve disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''351.8''', NULL, + '(351.8) Other facial nerve disorders', '(351.8) Other facial nerve disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.9) Facial nerve disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.9) Facial nerve disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''351.9''', NULL, + '(351.9) Facial nerve disorder, unspecified', '(351.9) Facial nerve disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356''', NULL, + 'Hereditary and idiopathic peripheral neuropathy (356)', 'Hereditary and idiopathic peripheral neuropathy (356)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.0) Hereditary peripheral neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.0) Hereditary peripheral neuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.0''', NULL, + '(356.0) Hereditary peripheral neuropathy', '(356.0) Hereditary peripheral neuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.1) Peroneal muscular atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.1) Peroneal muscular atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.1''', NULL, + '(356.1) Peroneal muscular atrophy', '(356.1) Peroneal muscular atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.2) Hereditary sensory neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.2) Hereditary sensory neuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.2''', NULL, + '(356.2) Hereditary sensory neuropathy', '(356.2) Hereditary sensory neuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.3) Refsum''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.3) Refsum''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.3''', NULL, + '(356.3) Refsum''s disease', '(356.3) Refsum''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.4) Idiopathic progressive polyneuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.4) Idiopathic progressive polyneuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.4''', NULL, + '(356.4) Idiopathic progressive polyneuropathy', '(356.4) Idiopathic progressive polyneuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.8) Other specified idiopathic peripheral neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.8) Other specified idiopathic peripheral neuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.8''', NULL, + '(356.8) Other specified idiopathic peripheral neuropathy', '(356.8) Other specified idiopathic peripheral neuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.9) Unspecified hereditary and idiopathic peripheral neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.9) Unspecified hereditary and idiopathic peripheral neuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.9''', NULL, + '(356.9) Unspecified hereditary and idiopathic peripheral neuropathy', '(356.9) Unspecified hereditary and idiopathic peripheral neuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357''', NULL, + 'Inflammatory and toxic neuropathy (357)', 'Inflammatory and toxic neuropathy (357)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.0) Acute infective polyneuritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.0) Acute infective polyneuritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.0''', NULL, + '(357.0) Acute infective polyneuritis', '(357.0) Acute infective polyneuritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.1) Polyneuropathy in collagen vascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.1) Polyneuropathy in collagen vascular disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.1''', NULL, + '(357.1) Polyneuropathy in collagen vascular disease', '(357.1) Polyneuropathy in collagen vascular disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.2) Polyneuropathy in diabetes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.2) Polyneuropathy in diabetes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.2''', NULL, + '(357.2) Polyneuropathy in diabetes', '(357.2) Polyneuropathy in diabetes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.3) Polyneuropathy in malignant disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.3) Polyneuropathy in malignant disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.3''', NULL, + '(357.3) Polyneuropathy in malignant disease', '(357.3) Polyneuropathy in malignant disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.4) Polyneuropathy in other diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.4) Polyneuropathy in other diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.4''', NULL, + '(357.4) Polyneuropathy in other diseases classified elsewhere', '(357.4) Polyneuropathy in other diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.5) Alcoholic polyneuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.5) Alcoholic polyneuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.5''', NULL, + '(357.5) Alcoholic polyneuropathy', '(357.5) Alcoholic polyneuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.6) Polyneuropathy due to drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.6) Polyneuropathy due to drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.6''', NULL, + '(357.6) Polyneuropathy due to drugs', '(357.6) Polyneuropathy due to drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.7) Polyneuropathy due to other toxic agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.7) Polyneuropathy due to other toxic agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.7''', NULL, + '(357.7) Polyneuropathy due to other toxic agents', '(357.7) Polyneuropathy due to other toxic agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.9) Unspecified inflammatory and toxic neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.9) Unspecified inflammatory and toxic neuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.9''', NULL, + '(357.9) Unspecified inflammatory and toxic neuropathy', '(357.9) Unspecified inflammatory and toxic neuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.8''', NULL, + 'Other inflammatory and toxic neuropathies (357.8)', 'Other inflammatory and toxic neuropathies (357.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.81) Chronic inflammatory demyelinating polyneuritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.81) Chronic inflammatory demyelinating polyneuritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.81''', NULL, + '(357.81) Chronic inflammatory demyelinating polyneuritis', '(357.81) Chronic inflammatory demyelinating polyneuritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.82) Critical illness polyneuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.82) Critical illness polyneuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.82''', NULL, + '(357.82) Critical illness polyneuropathy', '(357.82) Critical illness polyneuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.89) Other inflammatory and toxic neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.89) Other inflammatory and toxic neuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.89''', NULL, + '(357.89) Other inflammatory and toxic neuropathy', '(357.89) Other inflammatory and toxic neuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355''', NULL, + 'Mononeuritis of lower limb (355)', 'Mononeuritis of lower limb (355)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.0) Lesion of sciatic nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.0) Lesion of sciatic nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.0''', NULL, + '(355.0) Lesion of sciatic nerve', '(355.0) Lesion of sciatic nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.1) Meralgia paresthetica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.1) Meralgia paresthetica\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.1''', NULL, + '(355.1) Meralgia paresthetica', '(355.1) Meralgia paresthetica', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.2) Other lesion of femoral nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.2) Other lesion of femoral nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.2''', NULL, + '(355.2) Other lesion of femoral nerve', '(355.2) Other lesion of femoral nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.3) Lesion of lateral popliteal nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.3) Lesion of lateral popliteal nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.3''', NULL, + '(355.3) Lesion of lateral popliteal nerve', '(355.3) Lesion of lateral popliteal nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.4) Lesion of medial popliteal nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.4) Lesion of medial popliteal nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.4''', NULL, + '(355.4) Lesion of medial popliteal nerve', '(355.4) Lesion of medial popliteal nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.5) Tarsal tunnel syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.5) Tarsal tunnel syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.5''', NULL, + '(355.5) Tarsal tunnel syndrome', '(355.5) Tarsal tunnel syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.6) Lesion of plantar nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.6) Lesion of plantar nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.6''', NULL, + '(355.6) Lesion of plantar nerve', '(355.6) Lesion of plantar nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.8) Mononeuritis of lower limb, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.8) Mononeuritis of lower limb, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.8''', NULL, + '(355.8) Mononeuritis of lower limb, unspecified', '(355.8) Mononeuritis of lower limb, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.9) Mononeuritis of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.9) Mononeuritis of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.9''', NULL, + '(355.9) Mononeuritis of unspecified site', '(355.9) Mononeuritis of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\Other mononeuritis of lower limb (355.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\Other mononeuritis of lower limb (355.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.7''', NULL, + 'Other mononeuritis of lower limb (355.7)', 'Other mononeuritis of lower limb (355.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\Other mononeuritis of lower limb (355.7)\(355.71) Causalgia of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\Other mononeuritis of lower limb (355.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\Other mononeuritis of lower limb (355.7)\(355.71) Causalgia of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.71''', NULL, + '(355.71) Causalgia of lower limb', '(355.71) Causalgia of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\Other mononeuritis of lower limb (355.7)\(355.79) Other mononeuritis of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\Other mononeuritis of lower limb (355.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\Other mononeuritis of lower limb (355.7)\(355.79) Other mononeuritis of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.79''', NULL, + '(355.79) Other mononeuritis of lower limb', '(355.79) Other mononeuritis of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''354''', NULL, + 'Mononeuritis of upper limb and mononeuritis multiplex (354)', 'Mononeuritis of upper limb and mononeuritis multiplex (354)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.0) Carpal tunnel syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.0) Carpal tunnel syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''354.0''', NULL, + '(354.0) Carpal tunnel syndrome', '(354.0) Carpal tunnel syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.1) Other lesion of median nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.1) Other lesion of median nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''354.1''', NULL, + '(354.1) Other lesion of median nerve', '(354.1) Other lesion of median nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.2) Lesion of ulnar nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.2) Lesion of ulnar nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''354.2''', NULL, + '(354.2) Lesion of ulnar nerve', '(354.2) Lesion of ulnar nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.3) Lesion of radial nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.3) Lesion of radial nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''354.3''', NULL, + '(354.3) Lesion of radial nerve', '(354.3) Lesion of radial nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.4) Causalgia of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.4) Causalgia of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''354.4''', NULL, + '(354.4) Causalgia of upper limb', '(354.4) Causalgia of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.5) Mononeuritis multiplex\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.5) Mononeuritis multiplex\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''354.5''', NULL, + '(354.5) Mononeuritis multiplex', '(354.5) Mononeuritis multiplex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.8) Other mononeuritis of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.8) Other mononeuritis of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''354.8''', NULL, + '(354.8) Other mononeuritis of upper limb', '(354.8) Other mononeuritis of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.9) Mononeuritis of upper limb, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of upper limb and mononeuritis multiplex (354)\(354.9) Mononeuritis of upper limb, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''354.9''', NULL, + '(354.9) Mononeuritis of upper limb, unspecified', '(354.9) Mononeuritis of upper limb, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359''', NULL, + 'Muscular dystrophies and other myopathies (359)', 'Muscular dystrophies and other myopathies (359)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.0) Congenital hereditary muscular dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.0) Congenital hereditary muscular dystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.0''', NULL, + '(359.0) Congenital hereditary muscular dystrophy', '(359.0) Congenital hereditary muscular dystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.1) Hereditary progressive muscular dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.1) Hereditary progressive muscular dystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.1''', NULL, + '(359.1) Hereditary progressive muscular dystrophy', '(359.1) Hereditary progressive muscular dystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.3) Periodic paralysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.3) Periodic paralysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.3''', NULL, + '(359.3) Periodic paralysis', '(359.3) Periodic paralysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.4) Toxic myopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.4) Toxic myopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.4''', NULL, + '(359.4) Toxic myopathy', '(359.4) Toxic myopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.5) Myopathy in endocrine diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.5) Myopathy in endocrine diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.5''', NULL, + '(359.5) Myopathy in endocrine diseases classified elsewhere', '(359.5) Myopathy in endocrine diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.6) Symptomatic inflammatory myopathy in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.6) Symptomatic inflammatory myopathy in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.6''', NULL, + '(359.6) Symptomatic inflammatory myopathy in diseases classified elsewhere', '(359.6) Symptomatic inflammatory myopathy in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.9) Myopathy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\(359.9) Myopathy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.9''', NULL, + '(359.9) Myopathy, unspecified', '(359.9) Myopathy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Inflammatory and immune myopathies, NEC (359.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Inflammatory and immune myopathies, NEC (359.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.7''', NULL, + 'Inflammatory and immune myopathies, NEC (359.7)', 'Inflammatory and immune myopathies, NEC (359.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Inflammatory and immune myopathies, NEC (359.7)\(359.71) Inclusion body myositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Inflammatory and immune myopathies, NEC (359.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Inflammatory and immune myopathies, NEC (359.7)\(359.71) Inclusion body myositis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.71''', NULL, + '(359.71) Inclusion body myositis', '(359.71) Inclusion body myositis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Inflammatory and immune myopathies, NEC (359.7)\(359.79) Other inflammatory and immune myopathies, NEC\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Inflammatory and immune myopathies, NEC (359.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Inflammatory and immune myopathies, NEC (359.7)\(359.79) Other inflammatory and immune myopathies, NEC\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.79''', NULL, + '(359.79) Other inflammatory and immune myopathies, NEC', '(359.79) Other inflammatory and immune myopathies, NEC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.2''', NULL, + 'Myotonic disorders (359.2)', 'Myotonic disorders (359.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\(359.21) Myotonic muscular dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\(359.21) Myotonic muscular dystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.21''', NULL, + '(359.21) Myotonic muscular dystrophy', '(359.21) Myotonic muscular dystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\(359.22) Myotonia congenita\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\(359.22) Myotonia congenita\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.22''', NULL, + '(359.22) Myotonia congenita', '(359.22) Myotonia congenita', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\(359.23) Myotonic chondrodystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\(359.23) Myotonic chondrodystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.23''', NULL, + '(359.23) Myotonic chondrodystrophy', '(359.23) Myotonic chondrodystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\(359.24) Drug- induced myotonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\(359.24) Drug- induced myotonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.24''', NULL, + '(359.24) Drug- induced myotonia', '(359.24) Drug- induced myotonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\(359.29) Other specified myotonic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Myotonic disorders (359.2)\(359.29) Other specified myotonic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.29''', NULL, + '(359.29) Other specified myotonic disorder', '(359.29) Other specified myotonic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Other myopathies (359.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Other myopathies (359.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.8''', NULL, + 'Other myopathies (359.8)', 'Other myopathies (359.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Other myopathies (359.8)\(359.81) Critical illness myopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Other myopathies (359.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Other myopathies (359.8)\(359.81) Critical illness myopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.81''', NULL, + '(359.81) Critical illness myopathy', '(359.81) Critical illness myopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Other myopathies (359.8)\(359.89) Other myopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Other myopathies (359.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Muscular dystrophies and other myopathies (359)\Other myopathies (359.8)\(359.89) Other myopathies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''359.89''', NULL, + '(359.89) Other myopathies', '(359.89) Other myopathies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''358''', NULL, + 'Myoneural disorders (358)', 'Myoneural disorders (358)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\(358.1) Myasthenic syndromes in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\(358.1) Myasthenic syndromes in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''358.1''', NULL, + '(358.1) Myasthenic syndromes in diseases classified elsewhere', '(358.1) Myasthenic syndromes in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\(358.2) Toxic myoneural disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\(358.2) Toxic myoneural disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''358.2''', NULL, + '(358.2) Toxic myoneural disorders', '(358.2) Toxic myoneural disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\(358.8) Other specified myoneural disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\(358.8) Other specified myoneural disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''358.8''', NULL, + '(358.8) Other specified myoneural disorders', '(358.8) Other specified myoneural disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\(358.9) Myoneural disorders, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\(358.9) Myoneural disorders, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''358.9''', NULL, + '(358.9) Myoneural disorders, unspecified', '(358.9) Myoneural disorders, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\Myasthenia gravis (358.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\Myasthenia gravis (358.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''358.0''', NULL, + 'Myasthenia gravis (358.0)', 'Myasthenia gravis (358.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\Myasthenia gravis (358.0)\(358.00) Myasthenia gravis without (acute) exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\Myasthenia gravis (358.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\Myasthenia gravis (358.0)\(358.00) Myasthenia gravis without (acute) exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''358.00) Myasthenia gravis without (acute''', NULL, + '(358.00) Myasthenia gravis without (acute) exacerbation', '(358.00) Myasthenia gravis without (acute) exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\Myasthenia gravis (358.0)\(358.01) Myasthenia gravis with (acute) exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\Myasthenia gravis (358.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Myoneural disorders (358)\Myasthenia gravis (358.0)\(358.01) Myasthenia gravis with (acute) exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''358.01) Myasthenia gravis with (acute''', NULL, + '(358.01) Myasthenia gravis with (acute) exacerbation', '(358.01) Myasthenia gravis with (acute) exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''353''', NULL, + 'Nerve root and plexus disorders (353)', 'Nerve root and plexus disorders (353)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.0) Brachial plexus lesions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.0) Brachial plexus lesions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''353.0''', NULL, + '(353.0) Brachial plexus lesions', '(353.0) Brachial plexus lesions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.1) Lumbosacral plexus lesions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.1) Lumbosacral plexus lesions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''353.1''', NULL, + '(353.1) Lumbosacral plexus lesions', '(353.1) Lumbosacral plexus lesions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.2) Cervical root lesions, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.2) Cervical root lesions, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''353.2''', NULL, + '(353.2) Cervical root lesions, not elsewhere classified', '(353.2) Cervical root lesions, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.3) Thoracic root lesions, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.3) Thoracic root lesions, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''353.3''', NULL, + '(353.3) Thoracic root lesions, not elsewhere classified', '(353.3) Thoracic root lesions, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.4) Lumbosacral root lesions, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.4) Lumbosacral root lesions, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''353.4''', NULL, + '(353.4) Lumbosacral root lesions, not elsewhere classified', '(353.4) Lumbosacral root lesions, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.5) Neuralgic amyotrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.5) Neuralgic amyotrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''353.5''', NULL, + '(353.5) Neuralgic amyotrophy', '(353.5) Neuralgic amyotrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.6) Phantom limb (syndrome)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.6) Phantom limb (syndrome)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''353.6) Phantom limb (syndrome''', NULL, + '(353.6) Phantom limb (syndrome)', '(353.6) Phantom limb (syndrome)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.8) Other nerve root and plexus disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.8) Other nerve root and plexus disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''353.8''', NULL, + '(353.8) Other nerve root and plexus disorders', '(353.8) Other nerve root and plexus disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.9) Unspecified nerve root and plexus disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Nerve root and plexus disorders (353)\(353.9) Unspecified nerve root and plexus disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''353.9''', NULL, + '(353.9) Unspecified nerve root and plexus disorder', '(353.9) Unspecified nerve root and plexus disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''350''', NULL, + 'Trigeminal nerve disorders (350)', 'Trigeminal nerve disorders (350)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\(350.1) Trigeminal neuralgia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\(350.1) Trigeminal neuralgia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''350.1''', NULL, + '(350.1) Trigeminal neuralgia', '(350.1) Trigeminal neuralgia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\(350.2) Atypical face pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\(350.2) Atypical face pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''350.2''', NULL, + '(350.2) Atypical face pain', '(350.2) Atypical face pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\(350.8) Other specified trigeminal nerve disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\(350.8) Other specified trigeminal nerve disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''350.8''', NULL, + '(350.8) Other specified trigeminal nerve disorders', '(350.8) Other specified trigeminal nerve disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\(350.9) Trigeminal nerve disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Trigeminal nerve disorders (350)\(350.9) Trigeminal nerve disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''350.9''', NULL, + '(350.9) Trigeminal nerve disorder, unspecified', '(350.9) Trigeminal nerve disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''330'' AND ''337.99''', NULL, + 'Hereditary and degenerative diseases of the central nervous system (330-337.99)', 'Hereditary and degenerative diseases of the central nervous system (330-337.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335''', NULL, + 'Anterior horn cell disease (335)', 'Anterior horn cell disease (335)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\(335.0) Werdnig-Hoffmann disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\(335.0) Werdnig-Hoffmann disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.0''', NULL, + '(335.0) Werdnig-Hoffmann disease', '(335.0) Werdnig-Hoffmann disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\(335.8) Other anterior horn cell diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\(335.8) Other anterior horn cell diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.8''', NULL, + '(335.8) Other anterior horn cell diseases', '(335.8) Other anterior horn cell diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\(335.9) Anterior horn cell disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\(335.9) Anterior horn cell disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.9''', NULL, + '(335.9) Anterior horn cell disease, unspecified', '(335.9) Anterior horn cell disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.2''', NULL, + 'Motor neuron disease (335.2)', 'Motor neuron disease (335.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.20) Amyotrophic lateral sclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.20) Amyotrophic lateral sclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.20''', NULL, + '(335.20) Amyotrophic lateral sclerosis', '(335.20) Amyotrophic lateral sclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.21) Progressive muscular atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.21) Progressive muscular atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.21''', NULL, + '(335.21) Progressive muscular atrophy', '(335.21) Progressive muscular atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.22) Progressive bulbar palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.22) Progressive bulbar palsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.22''', NULL, + '(335.22) Progressive bulbar palsy', '(335.22) Progressive bulbar palsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.23) Pseudobulbar palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.23) Pseudobulbar palsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.23''', NULL, + '(335.23) Pseudobulbar palsy', '(335.23) Pseudobulbar palsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.24) Primary lateral sclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.24) Primary lateral sclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.24''', NULL, + '(335.24) Primary lateral sclerosis', '(335.24) Primary lateral sclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.29) Other motor neuron disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Motor neuron disease (335.2)\(335.29) Other motor neuron disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.29''', NULL, + '(335.29) Other motor neuron disease', '(335.29) Other motor neuron disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Spinal muscular atrophy (335.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Spinal muscular atrophy (335.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.1''', NULL, + 'Spinal muscular atrophy (335.1)', 'Spinal muscular atrophy (335.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Spinal muscular atrophy (335.1)\(335.10) Spinal muscular atrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Spinal muscular atrophy (335.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Spinal muscular atrophy (335.1)\(335.10) Spinal muscular atrophy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.10''', NULL, + '(335.10) Spinal muscular atrophy, unspecified', '(335.10) Spinal muscular atrophy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Spinal muscular atrophy (335.1)\(335.11) Kugelberg-Welander disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Spinal muscular atrophy (335.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Spinal muscular atrophy (335.1)\(335.11) Kugelberg-Welander disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.11''', NULL, + '(335.11) Kugelberg-Welander disease', '(335.11) Kugelberg-Welander disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Spinal muscular atrophy (335.1)\(335.19) Other spinal muscular atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Spinal muscular atrophy (335.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Anterior horn cell disease (335)\Spinal muscular atrophy (335.1)\(335.19) Other spinal muscular atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''335.19''', NULL, + '(335.19) Other spinal muscular atrophy', '(335.19) Other spinal muscular atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''330''', NULL, + 'Cerebral degenerations usually manifest in childhood (330)', 'Cerebral degenerations usually manifest in childhood (330)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.0) Leukodystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.0) Leukodystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''330.0''', NULL, + '(330.0) Leukodystrophy', '(330.0) Leukodystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.1) Cerebral lipidoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.1) Cerebral lipidoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''330.1''', NULL, + '(330.1) Cerebral lipidoses', '(330.1) Cerebral lipidoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.2) Cerebral degeneration in generalized lipidoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.2) Cerebral degeneration in generalized lipidoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''330.2''', NULL, + '(330.2) Cerebral degeneration in generalized lipidoses', '(330.2) Cerebral degeneration in generalized lipidoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.3) Cerebral degeneration of childhood in other diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.3) Cerebral degeneration of childhood in other diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''330.3''', NULL, + '(330.3) Cerebral degeneration of childhood in other diseases classified elsewhere', '(330.3) Cerebral degeneration of childhood in other diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.8) Other specified cerebral degenerations in childhood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.8) Other specified cerebral degenerations in childhood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''330.8''', NULL, + '(330.8) Other specified cerebral degenerations in childhood', '(330.8) Other specified cerebral degenerations in childhood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.9) Unspecified cerebral degeneration in childhood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Cerebral degenerations usually manifest in childhood (330)\(330.9) Unspecified cerebral degeneration in childhood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''330.9''', NULL, + '(330.9) Unspecified cerebral degeneration in childhood', '(330.9) Unspecified cerebral degeneration in childhood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337''', NULL, + 'Disorders of the autonomic nervous system (337)', 'Disorders of the autonomic nervous system (337)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\(337.1) Peripheral autonomic neuropathy in disorders classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\(337.1) Peripheral autonomic neuropathy in disorders classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.1''', NULL, + '(337.1) Peripheral autonomic neuropathy in disorders classified elsewhere', '(337.1) Peripheral autonomic neuropathy in disorders classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\(337.3) Autonomic dysreflexia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\(337.3) Autonomic dysreflexia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.3''', NULL, + '(337.3) Autonomic dysreflexia', '(337.3) Autonomic dysreflexia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\(337.9) Unspecified disorder of autonomic nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\(337.9) Unspecified disorder of autonomic nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.9''', NULL, + '(337.9) Unspecified disorder of autonomic nervous system', '(337.9) Unspecified disorder of autonomic nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Idiopathic peripheral autonomic neuropathy (337.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Idiopathic peripheral autonomic neuropathy (337.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.0''', NULL, + 'Idiopathic peripheral autonomic neuropathy (337.0)', 'Idiopathic peripheral autonomic neuropathy (337.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Idiopathic peripheral autonomic neuropathy (337.0)\(337.00) Idiopathic peripheral autonomic neuropathy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Idiopathic peripheral autonomic neuropathy (337.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Idiopathic peripheral autonomic neuropathy (337.0)\(337.00) Idiopathic peripheral autonomic neuropathy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.00''', NULL, + '(337.00) Idiopathic peripheral autonomic neuropathy, unspecified', '(337.00) Idiopathic peripheral autonomic neuropathy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Idiopathic peripheral autonomic neuropathy (337.0)\(337.01) Carotid sinus syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Idiopathic peripheral autonomic neuropathy (337.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Idiopathic peripheral autonomic neuropathy (337.0)\(337.01) Carotid sinus syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.01''', NULL, + '(337.01) Carotid sinus syndrome', '(337.01) Carotid sinus syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Idiopathic peripheral autonomic neuropathy (337.0)\(337.09) Other idiopathic peripheral autonomic neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Idiopathic peripheral autonomic neuropathy (337.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Idiopathic peripheral autonomic neuropathy (337.0)\(337.09) Other idiopathic peripheral autonomic neuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.09''', NULL, + '(337.09) Other idiopathic peripheral autonomic neuropathy', '(337.09) Other idiopathic peripheral autonomic neuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.2''', NULL, + 'Reflex sympathetic dystrophy (337.2)', 'Reflex sympathetic dystrophy (337.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\(337.20) Reflex sympathetic dystrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\(337.20) Reflex sympathetic dystrophy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.20''', NULL, + '(337.20) Reflex sympathetic dystrophy, unspecified', '(337.20) Reflex sympathetic dystrophy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\(337.21) Reflex sympathetic dystrophy of the upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\(337.21) Reflex sympathetic dystrophy of the upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.21''', NULL, + '(337.21) Reflex sympathetic dystrophy of the upper limb', '(337.21) Reflex sympathetic dystrophy of the upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\(337.22) Reflex sympathetic dystrophy of the lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\(337.22) Reflex sympathetic dystrophy of the lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.22''', NULL, + '(337.22) Reflex sympathetic dystrophy of the lower limb', '(337.22) Reflex sympathetic dystrophy of the lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\(337.29) Reflex sympathetic dystrophy of other specified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Disorders of the autonomic nervous system (337)\Reflex sympathetic dystrophy (337.2)\(337.29) Reflex sympathetic dystrophy of other specified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''337.29''', NULL, + '(337.29) Reflex sympathetic dystrophy of other specified site', '(337.29) Reflex sympathetic dystrophy of other specified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331''', NULL, + 'Other cerebral degenerations (331)', 'Other cerebral degenerations (331)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.0) Alzheimer''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.0) Alzheimer''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.0''', NULL, + '(331.0) Alzheimer''s disease', '(331.0) Alzheimer''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.2) Senile degeneration of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.2) Senile degeneration of brain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.2''', NULL, + '(331.2) Senile degeneration of brain', '(331.2) Senile degeneration of brain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.3) Communicating hydrocephalus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.3) Communicating hydrocephalus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.3''', NULL, + '(331.3) Communicating hydrocephalus', '(331.3) Communicating hydrocephalus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.4) Obstructive hydrocephalus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.4) Obstructive hydrocephalus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.4''', NULL, + '(331.4) Obstructive hydrocephalus', '(331.4) Obstructive hydrocephalus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.5) Idiopathic normal pressure hydrocephalus (INPH)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.5) Idiopathic normal pressure hydrocephalus (INPH)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.5) Idiopathic normal pressure hydrocephalus (INPH''', NULL, + '(331.5) Idiopathic normal pressure hydrocephalus (INPH)', '(331.5) Idiopathic normal pressure hydrocephalus (INPH)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.7) Cerebral degeneration in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.7) Cerebral degeneration in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.7''', NULL, + '(331.7) Cerebral degeneration in diseases classified elsewhere', '(331.7) Cerebral degeneration in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.9) Cerebral degeneration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\(331.9) Cerebral degeneration, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.9''', NULL, + '(331.9) Cerebral degeneration, unspecified', '(331.9) Cerebral degeneration, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Frontotemporal dementia (331.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Frontotemporal dementia (331.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.1''', NULL, + 'Frontotemporal dementia (331.1)', 'Frontotemporal dementia (331.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Frontotemporal dementia (331.1)\(331.11) Pick''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Frontotemporal dementia (331.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Frontotemporal dementia (331.1)\(331.11) Pick''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.11''', NULL, + '(331.11) Pick''s disease', '(331.11) Pick''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Frontotemporal dementia (331.1)\(331.19) Other frontotemporal dementia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Frontotemporal dementia (331.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Frontotemporal dementia (331.1)\(331.19) Other frontotemporal dementia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.19''', NULL, + '(331.19) Other frontotemporal dementia', '(331.19) Other frontotemporal dementia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.8''', NULL, + 'Other cerebral degeneration (331.8)', 'Other cerebral degeneration (331.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\(331.81) Reye''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\(331.81) Reye''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.81''', NULL, + '(331.81) Reye''s syndrome', '(331.81) Reye''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\(331.82) Dementia with lewy bodies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\(331.82) Dementia with lewy bodies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.82''', NULL, + '(331.82) Dementia with lewy bodies', '(331.82) Dementia with lewy bodies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\(331.83) Mild cognitive impairment, so stated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\(331.83) Mild cognitive impairment, so stated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.83''', NULL, + '(331.83) Mild cognitive impairment, so stated', '(331.83) Mild cognitive impairment, so stated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\(331.89) Other cerebral degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other cerebral degenerations (331)\Other cerebral degeneration (331.8)\(331.89) Other cerebral degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''331.89''', NULL, + '(331.89) Other cerebral degeneration', '(331.89) Other cerebral degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''336''', NULL, + 'Other diseases of spinal cord (336)', 'Other diseases of spinal cord (336)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.0) Syringomyelia and syringobulbia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.0) Syringomyelia and syringobulbia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''336.0''', NULL, + '(336.0) Syringomyelia and syringobulbia', '(336.0) Syringomyelia and syringobulbia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.1) Vascular myelopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.1) Vascular myelopathies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''336.1''', NULL, + '(336.1) Vascular myelopathies', '(336.1) Vascular myelopathies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.2) Subacute combined degeneration of spinal cord in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.2) Subacute combined degeneration of spinal cord in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''336.2''', NULL, + '(336.2) Subacute combined degeneration of spinal cord in diseases classified elsewhere', '(336.2) Subacute combined degeneration of spinal cord in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.3) Myelopathy in other diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.3) Myelopathy in other diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''336.3''', NULL, + '(336.3) Myelopathy in other diseases classified elsewhere', '(336.3) Myelopathy in other diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.8) Other myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.8) Other myelopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''336.8''', NULL, + '(336.8) Other myelopathy', '(336.8) Other myelopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.9) Unspecified disease of spinal cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other diseases of spinal cord (336)\(336.9) Unspecified disease of spinal cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''336.9''', NULL, + '(336.9) Unspecified disease of spinal cord', '(336.9) Unspecified disease of spinal cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333''', NULL, + 'Other extrapyramidal disease and abnormal movement disorders (333)', 'Other extrapyramidal disease and abnormal movement disorders (333)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.0) Other degenerative diseases of the basal ganglia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.0) Other degenerative diseases of the basal ganglia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.0''', NULL, + '(333.0) Other degenerative diseases of the basal ganglia', '(333.0) Other degenerative diseases of the basal ganglia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.1) Essential and other specified forms of tremor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.1) Essential and other specified forms of tremor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.1''', NULL, + '(333.1) Essential and other specified forms of tremor', '(333.1) Essential and other specified forms of tremor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.2) Myoclonus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.2) Myoclonus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.2''', NULL, + '(333.2) Myoclonus', '(333.2) Myoclonus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.3) Tics of organic origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.3) Tics of organic origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.3''', NULL, + '(333.3) Tics of organic origin', '(333.3) Tics of organic origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.4) Huntington''s chorea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.4) Huntington''s chorea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.4''', NULL, + '(333.4) Huntington''s chorea', '(333.4) Huntington''s chorea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.5) Other choreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.5) Other choreas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.5''', NULL, + '(333.5) Other choreas', '(333.5) Other choreas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.6) Genetic torsion dystonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\(333.6) Genetic torsion dystonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.6''', NULL, + '(333.6) Genetic torsion dystonia', '(333.6) Genetic torsion dystonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Acquired torsion dystonia (333.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Acquired torsion dystonia (333.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.7''', NULL, + 'Acquired torsion dystonia (333.7)', 'Acquired torsion dystonia (333.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Acquired torsion dystonia (333.7)\(333.71) Athetoid cerebral palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Acquired torsion dystonia (333.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Acquired torsion dystonia (333.7)\(333.71) Athetoid cerebral palsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.71''', NULL, + '(333.71) Athetoid cerebral palsy', '(333.71) Athetoid cerebral palsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Acquired torsion dystonia (333.7)\(333.72) Acute dystonia due to drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Acquired torsion dystonia (333.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Acquired torsion dystonia (333.7)\(333.72) Acute dystonia due to drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.72''', NULL, + '(333.72) Acute dystonia due to drugs', '(333.72) Acute dystonia due to drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Acquired torsion dystonia (333.7)\(333.79) Other acquired torsion dystonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Acquired torsion dystonia (333.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Acquired torsion dystonia (333.7)\(333.79) Other acquired torsion dystonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.79''', NULL, + '(333.79) Other acquired torsion dystonia', '(333.79) Other acquired torsion dystonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.8''', NULL, + 'Fragments of torsion dystonia (333.8)', 'Fragments of torsion dystonia (333.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.81) Blepharospasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.81) Blepharospasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.81''', NULL, + '(333.81) Blepharospasm', '(333.81) Blepharospasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.82) Orofacial dyskinesia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.82) Orofacial dyskinesia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.82''', NULL, + '(333.82) Orofacial dyskinesia', '(333.82) Orofacial dyskinesia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.83) Spasmodic torticollis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.83) Spasmodic torticollis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.83''', NULL, + '(333.83) Spasmodic torticollis', '(333.83) Spasmodic torticollis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.84) Organic writers'' cramp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.84) Organic writers'' cramp\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.84''', NULL, + '(333.84) Organic writers'' cramp', '(333.84) Organic writers'' cramp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.85) Subacute dyskinesia due to drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.85) Subacute dyskinesia due to drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.85''', NULL, + '(333.85) Subacute dyskinesia due to drugs', '(333.85) Subacute dyskinesia due to drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.89) Other fragments of torsion dystonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Fragments of torsion dystonia (333.8)\(333.89) Other fragments of torsion dystonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.89''', NULL, + '(333.89) Other fragments of torsion dystonia', '(333.89) Other fragments of torsion dystonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.9''', NULL, + 'Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)', 'Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.90) Unspecified extrapyramidal disease and abnormal movement disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.90) Unspecified extrapyramidal disease and abnormal movement disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.90''', NULL, + '(333.90) Unspecified extrapyramidal disease and abnormal movement disorder', '(333.90) Unspecified extrapyramidal disease and abnormal movement disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.91) Stiff-man syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.91) Stiff-man syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.91''', NULL, + '(333.91) Stiff-man syndrome', '(333.91) Stiff-man syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.92) Neuroleptic malignant syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.92) Neuroleptic malignant syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.92''', NULL, + '(333.92) Neuroleptic malignant syndrome', '(333.92) Neuroleptic malignant syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.93) Benign shuddering attacks\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.93) Benign shuddering attacks\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.93''', NULL, + '(333.93) Benign shuddering attacks', '(333.93) Benign shuddering attacks', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.94) Restless legs syndrome (RLS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.94) Restless legs syndrome (RLS)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.94) Restless legs syndrome (RLS''', NULL, + '(333.94) Restless legs syndrome (RLS)', '(333.94) Restless legs syndrome (RLS)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.99) Other extrapyramidal diseases and abnormal movement disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Other extrapyramidal disease and abnormal movement disorders (333)\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\(333.99) Other extrapyramidal diseases and abnormal movement disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''333.99''', NULL, + '(333.99) Other extrapyramidal diseases and abnormal movement disorders', '(333.99) Other extrapyramidal diseases and abnormal movement disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Parkinson''s disease (332)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Parkinson''s disease (332)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''332''', NULL, + 'Parkinson''s disease (332)', 'Parkinson''s disease (332)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Parkinson''s disease (332)\(332.0) Paralysis agitans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Parkinson''s disease (332)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Parkinson''s disease (332)\(332.0) Paralysis agitans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''332.0''', NULL, + '(332.0) Paralysis agitans', '(332.0) Paralysis agitans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Parkinson''s disease (332)\(332.1) Secondary parkinsonism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Parkinson''s disease (332)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Parkinson''s disease (332)\(332.1) Secondary parkinsonism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''332.1''', NULL, + '(332.1) Secondary parkinsonism', '(332.1) Secondary parkinsonism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''334''', NULL, + 'Spinocerebellar disease (334)', 'Spinocerebellar disease (334)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.0) Friedreich''s ataxia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.0) Friedreich''s ataxia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''334.0''', NULL, + '(334.0) Friedreich''s ataxia', '(334.0) Friedreich''s ataxia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.1) Hereditary spastic paraplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.1) Hereditary spastic paraplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''334.1''', NULL, + '(334.1) Hereditary spastic paraplegia', '(334.1) Hereditary spastic paraplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.2) Primary cerebellar degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.2) Primary cerebellar degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''334.2''', NULL, + '(334.2) Primary cerebellar degeneration', '(334.2) Primary cerebellar degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.3) Other cerebellar ataxia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.3) Other cerebellar ataxia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''334.3''', NULL, + '(334.3) Other cerebellar ataxia', '(334.3) Other cerebellar ataxia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.4) Cerebellar ataxia in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.4) Cerebellar ataxia in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''334.4''', NULL, + '(334.4) Cerebellar ataxia in diseases classified elsewhere', '(334.4) Cerebellar ataxia in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.8) Other spinocerebellar diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.8) Other spinocerebellar diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''334.8''', NULL, + '(334.8) Other spinocerebellar diseases', '(334.8) Other spinocerebellar diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.9) Spinocerebellar disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Hereditary and degenerative diseases of the central nervous system (330-337.99)\Spinocerebellar disease (334)\(334.9) Spinocerebellar disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''334.9''', NULL, + '(334.9) Spinocerebellar disease, unspecified', '(334.9) Spinocerebellar disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''320'' AND ''326.99''', NULL, + 'Inflammatory diseases of the central nervous system (320-326.99)', 'Inflammatory diseases of the central nervous system (320-326.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\(325) Phlebitis and thrombophlebitis of intracranial venous sinuses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\(325) Phlebitis and thrombophlebitis of intracranial venous sinuses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''325''', NULL, + '(325) Phlebitis and thrombophlebitis of intracranial venous sinuses', '(325) Phlebitis and thrombophlebitis of intracranial venous sinuses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\(326) Late effects of intracranial abscess or pyogenic infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\(326) Late effects of intracranial abscess or pyogenic infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''326''', NULL, + '(326) Late effects of intracranial abscess or pyogenic infection', '(326) Late effects of intracranial abscess or pyogenic infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''320''', NULL, + 'Bacterial meningitis (320)', 'Bacterial meningitis (320)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.0) Hemophilus meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.0) Hemophilus meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''320.0''', NULL, + '(320.0) Hemophilus meningitis', '(320.0) Hemophilus meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.1) Pneumococcal meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.1) Pneumococcal meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''320.1''', NULL, + '(320.1) Pneumococcal meningitis', '(320.1) Pneumococcal meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.2) Streptococcal meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.2) Streptococcal meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''320.2''', NULL, + '(320.2) Streptococcal meningitis', '(320.2) Streptococcal meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.3) Staphylococcal meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.3) Staphylococcal meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''320.3''', NULL, + '(320.3) Staphylococcal meningitis', '(320.3) Staphylococcal meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.7) Meningitis in other bacterial diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.7) Meningitis in other bacterial diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''320.7''', NULL, + '(320.7) Meningitis in other bacterial diseases classified elsewhere', '(320.7) Meningitis in other bacterial diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.9) Meningitis due to unspecified bacterium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\(320.9) Meningitis due to unspecified bacterium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''320.9''', NULL, + '(320.9) Meningitis due to unspecified bacterium', '(320.9) Meningitis due to unspecified bacterium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\Meningitis due to other specified bacteria (320.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\Meningitis due to other specified bacteria (320.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''320.8''', NULL, + 'Meningitis due to other specified bacteria (320.8)', 'Meningitis due to other specified bacteria (320.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\Meningitis due to other specified bacteria (320.8)\(320.81) Anaerobic meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\Meningitis due to other specified bacteria (320.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\Meningitis due to other specified bacteria (320.8)\(320.81) Anaerobic meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''320.81''', NULL, + '(320.81) Anaerobic meningitis', '(320.81) Anaerobic meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\Meningitis due to other specified bacteria (320.8)\(320.82) Meningitis due to gram-negative bacteria, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\Meningitis due to other specified bacteria (320.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\Meningitis due to other specified bacteria (320.8)\(320.82) Meningitis due to gram-negative bacteria, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''320.82''', NULL, + '(320.82) Meningitis due to gram-negative bacteria, not elsewhere classified', '(320.82) Meningitis due to gram-negative bacteria, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\Meningitis due to other specified bacteria (320.8)\(320.89) Meningitis due to other specified bacteria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\Meningitis due to other specified bacteria (320.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Bacterial meningitis (320)\Meningitis due to other specified bacteria (320.8)\(320.89) Meningitis due to other specified bacteria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''320.89''', NULL, + '(320.89) Meningitis due to other specified bacteria', '(320.89) Meningitis due to other specified bacteria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323''', NULL, + 'Encephalitis, myelitis, and encephalomyelitis (323)', 'Encephalitis, myelitis, and encephalomyelitis (323)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\(323.1) Encephalitis, myelitis, and encephalomyelitis in rickettsial diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\(323.1) Encephalitis, myelitis, and encephalomyelitis in rickettsial diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.1''', NULL, + '(323.1) Encephalitis, myelitis, and encephalomyelitis in rickettsial diseases classified elsewhere', '(323.1) Encephalitis, myelitis, and encephalomyelitis in rickettsial diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\(323.2) Encephalitis, myelitis, and encephalomyelitis in protozoal diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\(323.2) Encephalitis, myelitis, and encephalomyelitis in protozoal diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.2''', NULL, + '(323.2) Encephalitis, myelitis, and encephalomyelitis in protozoal diseases classified elsewhere', '(323.2) Encephalitis, myelitis, and encephalomyelitis in protozoal diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\(323.9) Unspecified causes of encephalitis, myelitis, and encephalomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\(323.9) Unspecified causes of encephalitis, myelitis, and encephalomyelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.9''', NULL, + '(323.9) Unspecified causes of encephalitis, myelitis, and encephalomyelitis', '(323.9) Unspecified causes of encephalitis, myelitis, and encephalomyelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.5''', NULL, + 'Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)', 'Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\(323.51) Encephalitis and encephalomyelitis following immunization procedures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\(323.51) Encephalitis and encephalomyelitis following immunization procedures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.51''', NULL, + '(323.51) Encephalitis and encephalomyelitis following immunization procedures', '(323.51) Encephalitis and encephalomyelitis following immunization procedures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\(323.52) Myelitis following immunization procedures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\(323.52) Myelitis following immunization procedures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.52''', NULL, + '(323.52) Myelitis following immunization procedures', '(323.52) Myelitis following immunization procedures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.0''', NULL, + 'Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)', 'Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\(323.01) Encephalitis and encephalomyelitis in viral diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\(323.01) Encephalitis and encephalomyelitis in viral diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.01''', NULL, + '(323.01) Encephalitis and encephalomyelitis in viral diseases classified elsewhere', '(323.01) Encephalitis and encephalomyelitis in viral diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\(323.02) Myelitis in viral diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\(323.02) Myelitis in viral diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.02''', NULL, + '(323.02) Myelitis in viral diseases classified elsewhere', '(323.02) Myelitis in viral diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.8''', NULL, + 'Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)', 'Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\(323.81) Other causes of encephalitis and encephalomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\(323.81) Other causes of encephalitis and encephalomyelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.81''', NULL, + '(323.81) Other causes of encephalitis and encephalomyelitis', '(323.81) Other causes of encephalitis and encephalomyelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\(323.82) Other causes of myelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\(323.82) Other causes of myelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.82''', NULL, + '(323.82) Other causes of myelitis', '(323.82) Other causes of myelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.4''', NULL, + 'Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)', 'Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\(323.41) Other encephalitis and encephalomyelitis due to other infections classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\(323.41) Other encephalitis and encephalomyelitis due to other infections classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.41''', NULL, + '(323.41) Other encephalitis and encephalomyelitis due to other infections classified elsewhere', '(323.41) Other encephalitis and encephalomyelitis due to other infections classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\(323.42) Other myelitis due to other infections classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\(323.42) Other myelitis due to other infections classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.42''', NULL, + '(323.42) Other myelitis due to other infections classified elsewhere', '(323.42) Other myelitis due to other infections classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.6''', NULL, + 'Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)', 'Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\(323.61) Infectious acute disseminated encephalomyelitis (ADEM)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\(323.61) Infectious acute disseminated encephalomyelitis (ADEM)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.61) Infectious acute disseminated encephalomyelitis (ADEM''', NULL, + '(323.61) Infectious acute disseminated encephalomyelitis (ADEM)', '(323.61) Infectious acute disseminated encephalomyelitis (ADEM)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\(323.62) Other postinfectious encephalitis and encephalomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\(323.62) Other postinfectious encephalitis and encephalomyelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.62''', NULL, + '(323.62) Other postinfectious encephalitis and encephalomyelitis', '(323.62) Other postinfectious encephalitis and encephalomyelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\(323.63) Postinfectious myelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\(323.63) Postinfectious myelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.63''', NULL, + '(323.63) Postinfectious myelitis', '(323.63) Postinfectious myelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.7''', NULL, + 'Toxic encephalitis, myelitis, and encephalomyelitis (323.7)', 'Toxic encephalitis, myelitis, and encephalomyelitis (323.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\(323.71) Toxic encephalitis and encephalomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\(323.71) Toxic encephalitis and encephalomyelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.71''', NULL, + '(323.71) Toxic encephalitis and encephalomyelitis', '(323.71) Toxic encephalitis and encephalomyelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\(323.72) Toxic myelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Encephalitis, myelitis, and encephalomyelitis (323)\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\(323.72) Toxic myelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''323.72''', NULL, + '(323.72) Toxic myelitis', '(323.72) Toxic myelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Intracranial and intraspinal abscess (324)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Intracranial and intraspinal abscess (324)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''324''', NULL, + 'Intracranial and intraspinal abscess (324)', 'Intracranial and intraspinal abscess (324)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Intracranial and intraspinal abscess (324)\(324.0) Intracranial abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Intracranial and intraspinal abscess (324)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Intracranial and intraspinal abscess (324)\(324.0) Intracranial abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''324.0''', NULL, + '(324.0) Intracranial abscess', '(324.0) Intracranial abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Intracranial and intraspinal abscess (324)\(324.1) Intraspinal abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Intracranial and intraspinal abscess (324)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Intracranial and intraspinal abscess (324)\(324.1) Intraspinal abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''324.1''', NULL, + '(324.1) Intraspinal abscess', '(324.1) Intraspinal abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Intracranial and intraspinal abscess (324)\(324.9) Intracranial and intraspinal abscess of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Intracranial and intraspinal abscess (324)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Intracranial and intraspinal abscess (324)\(324.9) Intracranial and intraspinal abscess of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''324.9''', NULL, + '(324.9) Intracranial and intraspinal abscess of unspecified site', '(324.9) Intracranial and intraspinal abscess of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''321''', NULL, + 'Meningitis due to other organisms (321)', 'Meningitis due to other organisms (321)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.0) Cryptococcal meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.0) Cryptococcal meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''321.0''', NULL, + '(321.0) Cryptococcal meningitis', '(321.0) Cryptococcal meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.1) Meningitis in other fungal diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.1) Meningitis in other fungal diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''321.1''', NULL, + '(321.1) Meningitis in other fungal diseases', '(321.1) Meningitis in other fungal diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.2) Meningitis due to viruses not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.2) Meningitis due to viruses not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''321.2''', NULL, + '(321.2) Meningitis due to viruses not elsewhere classified', '(321.2) Meningitis due to viruses not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.3) Meningitis due to trypanosomiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.3) Meningitis due to trypanosomiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''321.3''', NULL, + '(321.3) Meningitis due to trypanosomiasis', '(321.3) Meningitis due to trypanosomiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.4) Meningitis in sarcoidosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.4) Meningitis in sarcoidosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''321.4''', NULL, + '(321.4) Meningitis in sarcoidosis', '(321.4) Meningitis in sarcoidosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.8) Meningitis due to other nonbacterial organisms classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis due to other organisms (321)\(321.8) Meningitis due to other nonbacterial organisms classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''321.8''', NULL, + '(321.8) Meningitis due to other nonbacterial organisms classified elsewhere', '(321.8) Meningitis due to other nonbacterial organisms classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''322''', NULL, + 'Meningitis of unspecified cause (322)', 'Meningitis of unspecified cause (322)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\(322.0) Nonpyogenic meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\(322.0) Nonpyogenic meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''322.0''', NULL, + '(322.0) Nonpyogenic meningitis', '(322.0) Nonpyogenic meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\(322.1) Eosinophilic meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\(322.1) Eosinophilic meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''322.1''', NULL, + '(322.1) Eosinophilic meningitis', '(322.1) Eosinophilic meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\(322.2) Chronic meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\(322.2) Chronic meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''322.2''', NULL, + '(322.2) Chronic meningitis', '(322.2) Chronic meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\(322.9) Meningitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Inflammatory diseases of the central nervous system (320-326.99)\Meningitis of unspecified cause (322)\(322.9) Meningitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''322.9''', NULL, + '(322.9) Meningitis, unspecified', '(322.9) Meningitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''327'' AND ''327.99''', NULL, + 'Organic sleep disorders (327-327.99)', 'Organic sleep disorders (327-327.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327''', NULL, + 'Organic sleep disorders (327)', 'Organic sleep disorders (327)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\(327.8) Other organic sleep disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\(327.8) Other organic sleep disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.8''', NULL, + '(327.8) Other organic sleep disorders', '(327.8) Other organic sleep disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.3''', NULL, + 'Circadian rhythm sleep disorder (327.3)', 'Circadian rhythm sleep disorder (327.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.30) Circadian rhythm sleep disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.30) Circadian rhythm sleep disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.30''', NULL, + '(327.30) Circadian rhythm sleep disorder, unspecified', '(327.30) Circadian rhythm sleep disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.31) Circadian rhythm sleep disorder, delayed sleep phase type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.31) Circadian rhythm sleep disorder, delayed sleep phase type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.31''', NULL, + '(327.31) Circadian rhythm sleep disorder, delayed sleep phase type', '(327.31) Circadian rhythm sleep disorder, delayed sleep phase type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.32) Circadian rhythm sleep disorder, advanced sleep phase type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.32) Circadian rhythm sleep disorder, advanced sleep phase type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.32''', NULL, + '(327.32) Circadian rhythm sleep disorder, advanced sleep phase type', '(327.32) Circadian rhythm sleep disorder, advanced sleep phase type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.33) Circadian rhythm sleep disorder, irregular sleep-wake type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.33) Circadian rhythm sleep disorder, irregular sleep-wake type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.33''', NULL, + '(327.33) Circadian rhythm sleep disorder, irregular sleep-wake type', '(327.33) Circadian rhythm sleep disorder, irregular sleep-wake type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.34) Circadian rhythm sleep disorder, free-running type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.34) Circadian rhythm sleep disorder, free-running type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.34''', NULL, + '(327.34) Circadian rhythm sleep disorder, free-running type', '(327.34) Circadian rhythm sleep disorder, free-running type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.35) Circadian rhythm sleep disorder, jet lag type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.35) Circadian rhythm sleep disorder, jet lag type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.35''', NULL, + '(327.35) Circadian rhythm sleep disorder, jet lag type', '(327.35) Circadian rhythm sleep disorder, jet lag type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.36) Circadian rhythm sleep disorder, shift work type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.36) Circadian rhythm sleep disorder, shift work type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.36''', NULL, + '(327.36) Circadian rhythm sleep disorder, shift work type', '(327.36) Circadian rhythm sleep disorder, shift work type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.37) Circadian rhythm sleep disorder in conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.37) Circadian rhythm sleep disorder in conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.37''', NULL, + '(327.37) Circadian rhythm sleep disorder in conditions classified elsewhere', '(327.37) Circadian rhythm sleep disorder in conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.39) Other circadian rhythm sleep disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Circadian rhythm sleep disorder (327.3)\(327.39) Other circadian rhythm sleep disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.39''', NULL, + '(327.39) Other circadian rhythm sleep disorder', '(327.39) Other circadian rhythm sleep disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.1''', NULL, + 'Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)', 'Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.10) Organic hypersomnia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.10) Organic hypersomnia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.10''', NULL, + '(327.10) Organic hypersomnia, unspecified', '(327.10) Organic hypersomnia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.11) Idiopathic hypersomnia with long sleep time\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.11) Idiopathic hypersomnia with long sleep time\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.11''', NULL, + '(327.11) Idiopathic hypersomnia with long sleep time', '(327.11) Idiopathic hypersomnia with long sleep time', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.12) Idiopathic hypersomnia without long sleep time\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.12) Idiopathic hypersomnia without long sleep time\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.12''', NULL, + '(327.12) Idiopathic hypersomnia without long sleep time', '(327.12) Idiopathic hypersomnia without long sleep time', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.13) Recurrent hypersomnia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.13) Recurrent hypersomnia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.13''', NULL, + '(327.13) Recurrent hypersomnia', '(327.13) Recurrent hypersomnia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.14) Hypersomnia due to medical condition classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.14) Hypersomnia due to medical condition classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.14''', NULL, + '(327.14) Hypersomnia due to medical condition classified elsewhere', '(327.14) Hypersomnia due to medical condition classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.15) Hypersomnia due to mental disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.15) Hypersomnia due to mental disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.15''', NULL, + '(327.15) Hypersomnia due to mental disorder', '(327.15) Hypersomnia due to mental disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.19) Other organic hypersomnia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\(327.19) Other organic hypersomnia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.19''', NULL, + '(327.19) Other organic hypersomnia', '(327.19) Other organic hypersomnia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.0''', NULL, + 'Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)', 'Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\(327.00) Organic insomnia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\(327.00) Organic insomnia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.00''', NULL, + '(327.00) Organic insomnia, unspecified', '(327.00) Organic insomnia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\(327.01) Insomnia due to medical condition classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\(327.01) Insomnia due to medical condition classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.01''', NULL, + '(327.01) Insomnia due to medical condition classified elsewhere', '(327.01) Insomnia due to medical condition classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\(327.02) Insomnia due to mental disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\(327.02) Insomnia due to mental disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.02''', NULL, + '(327.02) Insomnia due to mental disorder', '(327.02) Insomnia due to mental disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\(327.09) Other organic insomnia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\(327.09) Other organic insomnia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.09''', NULL, + '(327.09) Other organic insomnia', '(327.09) Other organic insomnia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.4''', NULL, + 'Organic parasomnia (327.4)', 'Organic parasomnia (327.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.40) Organic parasomnia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.40) Organic parasomnia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.40''', NULL, + '(327.40) Organic parasomnia, unspecified', '(327.40) Organic parasomnia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.41) Confusional arousals\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.41) Confusional arousals\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.41''', NULL, + '(327.41) Confusional arousals', '(327.41) Confusional arousals', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.42) REM sleep behavior disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.42) REM sleep behavior disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.42''', NULL, + '(327.42) REM sleep behavior disorder', '(327.42) REM sleep behavior disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.43) Recurrent isolated sleep paralysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.43) Recurrent isolated sleep paralysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.43''', NULL, + '(327.43) Recurrent isolated sleep paralysis', '(327.43) Recurrent isolated sleep paralysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.44) Parasomnia in conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.44) Parasomnia in conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.44''', NULL, + '(327.44) Parasomnia in conditions classified elsewhere', '(327.44) Parasomnia in conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.49) Other organic parasomnia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic parasomnia (327.4)\(327.49) Other organic parasomnia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.49''', NULL, + '(327.49) Other organic parasomnia', '(327.49) Other organic parasomnia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.2''', NULL, + 'Organic sleep apnea (327.2)', 'Organic sleep apnea (327.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.20) Organic sleep apnea, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.20) Organic sleep apnea, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.20''', NULL, + '(327.20) Organic sleep apnea, unspecified', '(327.20) Organic sleep apnea, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.21) Primary central sleep apnea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.21) Primary central sleep apnea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.21''', NULL, + '(327.21) Primary central sleep apnea', '(327.21) Primary central sleep apnea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.22) High altitude periodic breathing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.22) High altitude periodic breathing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.22''', NULL, + '(327.22) High altitude periodic breathing', '(327.22) High altitude periodic breathing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.23) Obstructive sleep apnea (adult)(pediatric)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.23) Obstructive sleep apnea (adult)(pediatric)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.23) Obstructive sleep apnea (adult)(pediatric''', NULL, + '(327.23) Obstructive sleep apnea (adult)(pediatric)', '(327.23) Obstructive sleep apnea (adult)(pediatric)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.24) Idiopathic sleep related non-obstructive alveolar hypoventilation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.24) Idiopathic sleep related non-obstructive alveolar hypoventilation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.24''', NULL, + '(327.24) Idiopathic sleep related non-obstructive alveolar hypoventilation', '(327.24) Idiopathic sleep related non-obstructive alveolar hypoventilation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.25) Congenital central alveolar hypoventilation syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.25) Congenital central alveolar hypoventilation syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.25''', NULL, + '(327.25) Congenital central alveolar hypoventilation syndrome', '(327.25) Congenital central alveolar hypoventilation syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.26) Sleep related hypoventilation/hypoxemia in conditions classifiable elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.26) Sleep related hypoventilation/hypoxemia in conditions classifiable elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.26''', NULL, + '(327.26) Sleep related hypoventilation/hypoxemia in conditions classifiable elsewhere', '(327.26) Sleep related hypoventilation/hypoxemia in conditions classifiable elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.27) Central sleep apnea in conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.27) Central sleep apnea in conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.27''', NULL, + '(327.27) Central sleep apnea in conditions classified elsewhere', '(327.27) Central sleep apnea in conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.29) Other organic sleep apnea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep apnea (327.2)\(327.29) Other organic sleep apnea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.29''', NULL, + '(327.29) Other organic sleep apnea', '(327.29) Other organic sleep apnea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.5''', NULL, + 'Organic sleep related movement disorders (327.5)', 'Organic sleep related movement disorders (327.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\(327.51) Periodic limb movement disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\(327.51) Periodic limb movement disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.51''', NULL, + '(327.51) Periodic limb movement disorder', '(327.51) Periodic limb movement disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\(327.52) Sleep related leg cramps\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\(327.52) Sleep related leg cramps\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.52''', NULL, + '(327.52) Sleep related leg cramps', '(327.52) Sleep related leg cramps', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\(327.53) Sleep related bruxism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\(327.53) Sleep related bruxism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.53''', NULL, + '(327.53) Sleep related bruxism', '(327.53) Sleep related bruxism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\(327.59) Other organic sleep related movement disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Organic sleep disorders (327-327.99)\Organic sleep disorders (327)\Organic sleep related movement disorders (327.5)\(327.59) Other organic sleep related movement disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''327.59''', NULL, + '(327.59) Other organic sleep related movement disorders', '(327.59) Other organic sleep related movement disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''340'' AND ''349.99''', NULL, + 'Other disorders of the central nervous system (340-349.99)', 'Other disorders of the central nervous system (340-349.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\(340) Multiple sclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\(340) Multiple sclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''340''', NULL, + '(340) Multiple sclerosis', '(340) Multiple sclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''347''', NULL, + 'Cataplexy and narcolepsy (347)', 'Cataplexy and narcolepsy (347)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy (347.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy (347.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''347.0''', NULL, + 'Narcolepsy (347.0)', 'Narcolepsy (347.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy (347.0)\(347.00) Narcolepsy, without cataplexy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy (347.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy (347.0)\(347.00) Narcolepsy, without cataplexy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''347.00''', NULL, + '(347.00) Narcolepsy, without cataplexy', '(347.00) Narcolepsy, without cataplexy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy (347.0)\(347.01) Narcolepsy, with cataplexy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy (347.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy (347.0)\(347.01) Narcolepsy, with cataplexy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''347.01''', NULL, + '(347.01) Narcolepsy, with cataplexy', '(347.01) Narcolepsy, with cataplexy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy in conditions classified elsewhere (347.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy in conditions classified elsewhere (347.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''347.1''', NULL, + 'Narcolepsy in conditions classified elsewhere (347.1)', 'Narcolepsy in conditions classified elsewhere (347.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy in conditions classified elsewhere (347.1)\(347.10) Narcolepsy in conditions classified elsewhere, without cataplexy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy in conditions classified elsewhere (347.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy in conditions classified elsewhere (347.1)\(347.10) Narcolepsy in conditions classified elsewhere, without cataplexy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''347.10''', NULL, + '(347.10) Narcolepsy in conditions classified elsewhere, without cataplexy', '(347.10) Narcolepsy in conditions classified elsewhere, without cataplexy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy in conditions classified elsewhere (347.1)\(347.11) Narcolepsy in conditions classified elsewhere, with cataplexy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy in conditions classified elsewhere (347.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Cataplexy and narcolepsy (347)\Narcolepsy in conditions classified elsewhere (347.1)\(347.11) Narcolepsy in conditions classified elsewhere, with cataplexy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''347.11''', NULL, + '(347.11) Narcolepsy in conditions classified elsewhere, with cataplexy', '(347.11) Narcolepsy in conditions classified elsewhere, with cataplexy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345''', NULL, + 'Epilepsy and recurrent seizures (345)', 'Epilepsy and recurrent seizures (345)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\(345.2) Petit mal status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\(345.2) Petit mal status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.2''', NULL, + '(345.2) Petit mal status', '(345.2) Petit mal status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\(345.3) Grand mal status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\(345.3) Grand mal status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.3''', NULL, + '(345.3) Grand mal status', '(345.3) Grand mal status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsia partialis continua (345.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsia partialis continua (345.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.7''', NULL, + 'Epilepsia partialis continua (345.7)', 'Epilepsia partialis continua (345.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsia partialis continua (345.7)\(345.70) Epilepsia partialis continua, without mention of intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsia partialis continua (345.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsia partialis continua (345.7)\(345.70) Epilepsia partialis continua, without mention of intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.70''', NULL, + '(345.70) Epilepsia partialis continua, without mention of intractable epilepsy', '(345.70) Epilepsia partialis continua, without mention of intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsia partialis continua (345.7)\(345.71) Epilepsia partialis continua, with intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsia partialis continua (345.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsia partialis continua (345.7)\(345.71) Epilepsia partialis continua, with intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.71''', NULL, + '(345.71) Epilepsia partialis continua, with intractable epilepsy', '(345.71) Epilepsia partialis continua, with intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsy, unspecified (345.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsy, unspecified (345.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.9''', NULL, + 'Epilepsy, unspecified (345.9)', 'Epilepsy, unspecified (345.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsy, unspecified (345.9)\(345.90) Epilepsy, unspecified, without mention of intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsy, unspecified (345.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsy, unspecified (345.9)\(345.90) Epilepsy, unspecified, without mention of intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.90''', NULL, + '(345.90) Epilepsy, unspecified, without mention of intractable epilepsy', '(345.90) Epilepsy, unspecified, without mention of intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsy, unspecified (345.9)\(345.91) Epilepsy, unspecified, with intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsy, unspecified (345.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Epilepsy, unspecified (345.9)\(345.91) Epilepsy, unspecified, with intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.91''', NULL, + '(345.91) Epilepsy, unspecified, with intractable epilepsy', '(345.91) Epilepsy, unspecified, with intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized convulsive epilepsy (345.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized convulsive epilepsy (345.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.1''', NULL, + 'Generalized convulsive epilepsy (345.1)', 'Generalized convulsive epilepsy (345.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized convulsive epilepsy (345.1)\(345.10) Generalized convulsive epilepsy, without mention of intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized convulsive epilepsy (345.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized convulsive epilepsy (345.1)\(345.10) Generalized convulsive epilepsy, without mention of intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.10''', NULL, + '(345.10) Generalized convulsive epilepsy, without mention of intractable epilepsy', '(345.10) Generalized convulsive epilepsy, without mention of intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized convulsive epilepsy (345.1)\(345.11) Generalized convulsive epilepsy, with intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized convulsive epilepsy (345.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized convulsive epilepsy (345.1)\(345.11) Generalized convulsive epilepsy, with intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.11''', NULL, + '(345.11) Generalized convulsive epilepsy, with intractable epilepsy', '(345.11) Generalized convulsive epilepsy, with intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized nonconvulsive epilepsy (345.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized nonconvulsive epilepsy (345.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.0''', NULL, + 'Generalized nonconvulsive epilepsy (345.0)', 'Generalized nonconvulsive epilepsy (345.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized nonconvulsive epilepsy (345.0)\(345.00) Generalized nonconvulsive epilepsy, without mention of intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized nonconvulsive epilepsy (345.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized nonconvulsive epilepsy (345.0)\(345.00) Generalized nonconvulsive epilepsy, without mention of intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.00''', NULL, + '(345.00) Generalized nonconvulsive epilepsy, without mention of intractable epilepsy', '(345.00) Generalized nonconvulsive epilepsy, without mention of intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized nonconvulsive epilepsy (345.0)\(345.01) Generalized nonconvulsive epilepsy, with intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized nonconvulsive epilepsy (345.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Generalized nonconvulsive epilepsy (345.0)\(345.01) Generalized nonconvulsive epilepsy, with intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.01''', NULL, + '(345.01) Generalized nonconvulsive epilepsy, with intractable epilepsy', '(345.01) Generalized nonconvulsive epilepsy, with intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Infantile spasms (345.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Infantile spasms (345.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.6''', NULL, + 'Infantile spasms (345.6)', 'Infantile spasms (345.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Infantile spasms (345.6)\(345.60) Infantile spasms, without mention of intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Infantile spasms (345.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Infantile spasms (345.6)\(345.60) Infantile spasms, without mention of intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.60''', NULL, + '(345.60) Infantile spasms, without mention of intractable epilepsy', '(345.60) Infantile spasms, without mention of intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Infantile spasms (345.6)\(345.61) Infantile spasms, with intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Infantile spasms (345.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Infantile spasms (345.6)\(345.61) Infantile spasms, with intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.61''', NULL, + '(345.61) Infantile spasms, with intractable epilepsy', '(345.61) Infantile spasms, with intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4''', NULL, + 'Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)', 'Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\(345.40) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, without mention of intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\(345.40) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, without mention of intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''345.40) Localization'' AND ''related (focal) (partial''', NULL, + '(345.40) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, without mention of intractable epilepsy', '(345.40) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, without mention of intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\(345.41) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, with intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\(345.41) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, with intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''345.41) Localization'' AND ''related (focal) (partial''', NULL, + '(345.41) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, with intractable epilepsy', '(345.41) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, with intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5''', NULL, + 'Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)', 'Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\(345.50) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, without mention of intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\(345.50) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, without mention of intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''345.50) Localization'' AND ''related (focal) (partial''', NULL, + '(345.50) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, without mention of intractable epilepsy', '(345.50) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, without mention of intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\(345.51) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, with intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\(345.51) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, with intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''345.51) Localization'' AND ''related (focal) (partial''', NULL, + '(345.51) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, with intractable epilepsy', '(345.51) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, with intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Other forms of epilepsy and recurrent seizures (345.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Other forms of epilepsy and recurrent seizures (345.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.8''', NULL, + 'Other forms of epilepsy and recurrent seizures (345.8)', 'Other forms of epilepsy and recurrent seizures (345.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Other forms of epilepsy and recurrent seizures (345.8)\(345.80) Other forms of epilepsy and recurrent seizures, without mention of intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Other forms of epilepsy and recurrent seizures (345.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Other forms of epilepsy and recurrent seizures (345.8)\(345.80) Other forms of epilepsy and recurrent seizures, without mention of intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.80''', NULL, + '(345.80) Other forms of epilepsy and recurrent seizures, without mention of intractable epilepsy', '(345.80) Other forms of epilepsy and recurrent seizures, without mention of intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Other forms of epilepsy and recurrent seizures (345.8)\(345.81) Other forms of epilepsy and recurrent seizures, with intractable epilepsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Other forms of epilepsy and recurrent seizures (345.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Epilepsy and recurrent seizures (345)\Other forms of epilepsy and recurrent seizures (345.8)\(345.81) Other forms of epilepsy and recurrent seizures, with intractable epilepsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''345.81''', NULL, + '(345.81) Other forms of epilepsy and recurrent seizures, with intractable epilepsy', '(345.81) Other forms of epilepsy and recurrent seizures, with intractable epilepsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342''', NULL, + 'Hemiplegia and hemiparesis (342)', 'Hemiplegia and hemiparesis (342)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Flaccid hemiplegia (342.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Flaccid hemiplegia (342.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.0''', NULL, + 'Flaccid hemiplegia (342.0)', 'Flaccid hemiplegia (342.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Flaccid hemiplegia (342.0)\(342.00) Flaccid hemiplegia and hemiparesis affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Flaccid hemiplegia (342.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Flaccid hemiplegia (342.0)\(342.00) Flaccid hemiplegia and hemiparesis affecting unspecified side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.00''', NULL, + '(342.00) Flaccid hemiplegia and hemiparesis affecting unspecified side', '(342.00) Flaccid hemiplegia and hemiparesis affecting unspecified side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Flaccid hemiplegia (342.0)\(342.01) Flaccid hemiplegia and hemiparesis affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Flaccid hemiplegia (342.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Flaccid hemiplegia (342.0)\(342.01) Flaccid hemiplegia and hemiparesis affecting dominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.01''', NULL, + '(342.01) Flaccid hemiplegia and hemiparesis affecting dominant side', '(342.01) Flaccid hemiplegia and hemiparesis affecting dominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Flaccid hemiplegia (342.0)\(342.02) Flaccid hemiplegia and hemiparesis affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Flaccid hemiplegia (342.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Flaccid hemiplegia (342.0)\(342.02) Flaccid hemiplegia and hemiparesis affecting nondominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.02''', NULL, + '(342.02) Flaccid hemiplegia and hemiparesis affecting nondominant side', '(342.02) Flaccid hemiplegia and hemiparesis affecting nondominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Hemiplegia, unspecified (342.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Hemiplegia, unspecified (342.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.9''', NULL, + 'Hemiplegia, unspecified (342.9)', 'Hemiplegia, unspecified (342.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Hemiplegia, unspecified (342.9)\(342.90) Hemiplegia, unspecified, affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Hemiplegia, unspecified (342.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Hemiplegia, unspecified (342.9)\(342.90) Hemiplegia, unspecified, affecting unspecified side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.90''', NULL, + '(342.90) Hemiplegia, unspecified, affecting unspecified side', '(342.90) Hemiplegia, unspecified, affecting unspecified side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Hemiplegia, unspecified (342.9)\(342.91) Hemiplegia, unspecified, affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Hemiplegia, unspecified (342.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Hemiplegia, unspecified (342.9)\(342.91) Hemiplegia, unspecified, affecting dominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.91''', NULL, + '(342.91) Hemiplegia, unspecified, affecting dominant side', '(342.91) Hemiplegia, unspecified, affecting dominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Hemiplegia, unspecified (342.9)\(342.92) Hemiplegia, unspecified, affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Hemiplegia, unspecified (342.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Hemiplegia, unspecified (342.9)\(342.92) Hemiplegia, unspecified, affecting nondominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.92''', NULL, + '(342.92) Hemiplegia, unspecified, affecting nondominant side', '(342.92) Hemiplegia, unspecified, affecting nondominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Other specified hemiplegia (342.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Other specified hemiplegia (342.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.8''', NULL, + 'Other specified hemiplegia (342.8)', 'Other specified hemiplegia (342.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Other specified hemiplegia (342.8)\(342.80) Other specified hemiplegia and hemiparesis affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Other specified hemiplegia (342.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Other specified hemiplegia (342.8)\(342.80) Other specified hemiplegia and hemiparesis affecting unspecified side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.80''', NULL, + '(342.80) Other specified hemiplegia and hemiparesis affecting unspecified side', '(342.80) Other specified hemiplegia and hemiparesis affecting unspecified side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Other specified hemiplegia (342.8)\(342.81) Other specified hemiplegia and hemiparesis affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Other specified hemiplegia (342.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Other specified hemiplegia (342.8)\(342.81) Other specified hemiplegia and hemiparesis affecting dominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.81''', NULL, + '(342.81) Other specified hemiplegia and hemiparesis affecting dominant side', '(342.81) Other specified hemiplegia and hemiparesis affecting dominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Other specified hemiplegia (342.8)\(342.82) Other specified hemiplegia and hemiparesis affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Other specified hemiplegia (342.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Other specified hemiplegia (342.8)\(342.82) Other specified hemiplegia and hemiparesis affecting nondominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.82''', NULL, + '(342.82) Other specified hemiplegia and hemiparesis affecting nondominant side', '(342.82) Other specified hemiplegia and hemiparesis affecting nondominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Spastic hemiplegia (342.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Spastic hemiplegia (342.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.1''', NULL, + 'Spastic hemiplegia (342.1)', 'Spastic hemiplegia (342.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Spastic hemiplegia (342.1)\(342.10) Spastic hemiplegia and hemiparesis affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Spastic hemiplegia (342.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Spastic hemiplegia (342.1)\(342.10) Spastic hemiplegia and hemiparesis affecting unspecified side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.10''', NULL, + '(342.10) Spastic hemiplegia and hemiparesis affecting unspecified side', '(342.10) Spastic hemiplegia and hemiparesis affecting unspecified side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Spastic hemiplegia (342.1)\(342.11) Spastic hemiplegia and hemiparesis affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Spastic hemiplegia (342.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Spastic hemiplegia (342.1)\(342.11) Spastic hemiplegia and hemiparesis affecting dominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.11''', NULL, + '(342.11) Spastic hemiplegia and hemiparesis affecting dominant side', '(342.11) Spastic hemiplegia and hemiparesis affecting dominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Spastic hemiplegia (342.1)\(342.12) Spastic hemiplegia and hemiparesis affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Spastic hemiplegia (342.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Hemiplegia and hemiparesis (342)\Spastic hemiplegia (342.1)\(342.12) Spastic hemiplegia and hemiparesis affecting nondominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''342.12''', NULL, + '(342.12) Spastic hemiplegia and hemiparesis affecting nondominant side', '(342.12) Spastic hemiplegia and hemiparesis affecting nondominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''343''', NULL, + 'Infantile cerebral palsy (343)', 'Infantile cerebral palsy (343)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.0) Congenital diplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.0) Congenital diplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''343.0''', NULL, + '(343.0) Congenital diplegia', '(343.0) Congenital diplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.1) Congenital hemiplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.1) Congenital hemiplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''343.1''', NULL, + '(343.1) Congenital hemiplegia', '(343.1) Congenital hemiplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.2) Congenital quadriplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.2) Congenital quadriplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''343.2''', NULL, + '(343.2) Congenital quadriplegia', '(343.2) Congenital quadriplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.3) Congenital monoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.3) Congenital monoplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''343.3''', NULL, + '(343.3) Congenital monoplegia', '(343.3) Congenital monoplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.4) Infantile hemiplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.4) Infantile hemiplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''343.4''', NULL, + '(343.4) Infantile hemiplegia', '(343.4) Infantile hemiplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.8) Other specified infantile cerebral palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.8) Other specified infantile cerebral palsy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''343.8''', NULL, + '(343.8) Other specified infantile cerebral palsy', '(343.8) Other specified infantile cerebral palsy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.9) Infantile cerebral palsy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Infantile cerebral palsy (343)\(343.9) Infantile cerebral palsy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''343.9''', NULL, + '(343.9) Infantile cerebral palsy, unspecified', '(343.9) Infantile cerebral palsy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346''', NULL, + 'Migraine (346)', 'Migraine (346)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.7''', NULL, + 'Chronic migraine without aura (346.7)', 'Chronic migraine without aura (346.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\(346.70) Chronic migraine without aura, without mention of intractable migraine without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\(346.70) Chronic migraine without aura, without mention of intractable migraine without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.70''', NULL, + '(346.70) Chronic migraine without aura, without mention of intractable migraine without mention of status migrainosus', '(346.70) Chronic migraine without aura, without mention of intractable migraine without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\(346.71) Chronic migraine without aura, with intractable migraine, so stated, without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\(346.71) Chronic migraine without aura, with intractable migraine, so stated, without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.71''', NULL, + '(346.71) Chronic migraine without aura, with intractable migraine, so stated, without mention of status migrainosus', '(346.71) Chronic migraine without aura, with intractable migraine, so stated, without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\(346.72) Chronic migraine without aura, without mention of intractable migraine with status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\(346.72) Chronic migraine without aura, without mention of intractable migraine with status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.72''', NULL, + '(346.72) Chronic migraine without aura, without mention of intractable migraine with status migrainosus', '(346.72) Chronic migraine without aura, without mention of intractable migraine with status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\(346.73) Chronic migraine without aura, with intractable migraine, so stated, with status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Chronic migraine without aura (346.7)\(346.73) Chronic migraine without aura, with intractable migraine, so stated, with status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.73''', NULL, + '(346.73) Chronic migraine without aura, with intractable migraine, so stated, with status migrainosus', '(346.73) Chronic migraine without aura, with intractable migraine, so stated, with status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Hemiplegic migraine (346.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Hemiplegic migraine (346.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.3''', NULL, + 'Hemiplegic migraine (346.3)', 'Hemiplegic migraine (346.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Hemiplegic migraine (346.3)\(346.30) Hemiplegic migraine, without mention of intractable migraine without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Hemiplegic migraine (346.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Hemiplegic migraine (346.3)\(346.30) Hemiplegic migraine, without mention of intractable migraine without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.30''', NULL, + '(346.30) Hemiplegic migraine, without mention of intractable migraine without mention of status migrainosus', '(346.30) Hemiplegic migraine, without mention of intractable migraine without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Menstrual migraine (346.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Menstrual migraine (346.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.4''', NULL, + 'Menstrual migraine (346.4)', 'Menstrual migraine (346.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Menstrual migraine (346.4)\(346.40) Menstrual migraine, without mention of intractable migraine without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Menstrual migraine (346.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Menstrual migraine (346.4)\(346.40) Menstrual migraine, without mention of intractable migraine without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.40''', NULL, + '(346.40) Menstrual migraine, without mention of intractable migraine without mention of status migrainosus', '(346.40) Menstrual migraine, without mention of intractable migraine without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Menstrual migraine (346.4)\(346.41) Menstrual migraine, with intractable migraine, so stated, without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Menstrual migraine (346.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Menstrual migraine (346.4)\(346.41) Menstrual migraine, with intractable migraine, so stated, without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.41''', NULL, + '(346.41) Menstrual migraine, with intractable migraine, so stated, without mention of status migrainosus', '(346.41) Menstrual migraine, with intractable migraine, so stated, without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.0''', NULL, + 'Migraine with aura (346.0)', 'Migraine with aura (346.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\(346.00) Migraine with aura, without mention of intractable migraine without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\(346.00) Migraine with aura, without mention of intractable migraine without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.00''', NULL, + '(346.00) Migraine with aura, without mention of intractable migraine without mention of status migrainosus', '(346.00) Migraine with aura, without mention of intractable migraine without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\(346.01) Migraine with aura, with intractable migraine, so stated, without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\(346.01) Migraine with aura, with intractable migraine, so stated, without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.01''', NULL, + '(346.01) Migraine with aura, with intractable migraine, so stated, without mention of status migrainosus', '(346.01) Migraine with aura, with intractable migraine, so stated, without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\(346.02) Migraine with aura, without mention of intractable migraine with status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\(346.02) Migraine with aura, without mention of intractable migraine with status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.02''', NULL, + '(346.02) Migraine with aura, without mention of intractable migraine with status migrainosus', '(346.02) Migraine with aura, without mention of intractable migraine with status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\(346.03) Migraine with aura, with intractable migraine, so stated, with status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine with aura (346.0)\(346.03) Migraine with aura, with intractable migraine, so stated, with status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.03''', NULL, + '(346.03) Migraine with aura, with intractable migraine, so stated, with status migrainosus', '(346.03) Migraine with aura, with intractable migraine, so stated, with status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.1''', NULL, + 'Migraine without aura (346.1)', 'Migraine without aura (346.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\(346.10) Migraine without aura, without mention of intractable migraine without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\(346.10) Migraine without aura, without mention of intractable migraine without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.10''', NULL, + '(346.10) Migraine without aura, without mention of intractable migraine without mention of status migrainosus', '(346.10) Migraine without aura, without mention of intractable migraine without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\(346.11) Migraine without aura, with intractable migraine, so stated, without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\(346.11) Migraine without aura, with intractable migraine, so stated, without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.11''', NULL, + '(346.11) Migraine without aura, with intractable migraine, so stated, without mention of status migrainosus', '(346.11) Migraine without aura, with intractable migraine, so stated, without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\(346.12) Migraine without aura, without mention of intractable migraine with status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\(346.12) Migraine without aura, without mention of intractable migraine with status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.12''', NULL, + '(346.12) Migraine without aura, without mention of intractable migraine with status migrainosus', '(346.12) Migraine without aura, without mention of intractable migraine with status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\(346.13) Migraine without aura, with intractable migraine, so stated, with status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine without aura (346.1)\(346.13) Migraine without aura, with intractable migraine, so stated, with status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.13''', NULL, + '(346.13) Migraine without aura, with intractable migraine, so stated, with status migrainosus', '(346.13) Migraine without aura, with intractable migraine, so stated, with status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine, unspecified (346.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine, unspecified (346.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.9''', NULL, + 'Migraine, unspecified (346.9)', 'Migraine, unspecified (346.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine, unspecified (346.9)\(346.90) Migraine, unspecified, without mention of intractable migraine without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine, unspecified (346.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine, unspecified (346.9)\(346.90) Migraine, unspecified, without mention of intractable migraine without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.90''', NULL, + '(346.90) Migraine, unspecified, without mention of intractable migraine without mention of status migrainosus', '(346.90) Migraine, unspecified, without mention of intractable migraine without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine, unspecified (346.9)\(346.91) Migraine, unspecified, with intractable migraine, so stated, without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine, unspecified (346.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine, unspecified (346.9)\(346.91) Migraine, unspecified, with intractable migraine, so stated, without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.91''', NULL, + '(346.91) Migraine, unspecified, with intractable migraine, so stated, without mention of status migrainosus', '(346.91) Migraine, unspecified, with intractable migraine, so stated, without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine, unspecified (346.9)\(346.92) Migraine, unspecified, without mention of intractable migraine with status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine, unspecified (346.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Migraine, unspecified (346.9)\(346.92) Migraine, unspecified, without mention of intractable migraine with status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.92''', NULL, + '(346.92) Migraine, unspecified, without mention of intractable migraine with status migrainosus', '(346.92) Migraine, unspecified, without mention of intractable migraine with status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Other forms of migraine (346.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Other forms of migraine (346.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.8''', NULL, + 'Other forms of migraine (346.8)', 'Other forms of migraine (346.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Other forms of migraine (346.8)\(346.80) Other forms of migraine, without mention of intractable migraine without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Other forms of migraine (346.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Other forms of migraine (346.8)\(346.80) Other forms of migraine, without mention of intractable migraine without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.80''', NULL, + '(346.80) Other forms of migraine, without mention of intractable migraine without mention of status migrainosus', '(346.80) Other forms of migraine, without mention of intractable migraine without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Other forms of migraine (346.8)\(346.81) Other forms of migraine, with intractable migraine, so stated, without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Other forms of migraine (346.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Other forms of migraine (346.8)\(346.81) Other forms of migraine, with intractable migraine, so stated, without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.81''', NULL, + '(346.81) Other forms of migraine, with intractable migraine, so stated, without mention of status migrainosus', '(346.81) Other forms of migraine, with intractable migraine, so stated, without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Other forms of migraine (346.8)\(346.82) Other forms of migraine, without mention of intractable migraine with status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Other forms of migraine (346.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Other forms of migraine (346.8)\(346.82) Other forms of migraine, without mention of intractable migraine with status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.82''', NULL, + '(346.82) Other forms of migraine, without mention of intractable migraine with status migrainosus', '(346.82) Other forms of migraine, without mention of intractable migraine with status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Persistent migraine aura without cerebral infarction (346.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Persistent migraine aura without cerebral infarction (346.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.5''', NULL, + 'Persistent migraine aura without cerebral infarction (346.5)', 'Persistent migraine aura without cerebral infarction (346.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Persistent migraine aura without cerebral infarction (346.5)\(346.50) Persistent migraine aura without cerebral infarction, without mention of intractable migraine without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Persistent migraine aura without cerebral infarction (346.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Persistent migraine aura without cerebral infarction (346.5)\(346.50) Persistent migraine aura without cerebral infarction, without mention of intractable migraine without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.50''', NULL, + '(346.50) Persistent migraine aura without cerebral infarction, without mention of intractable migraine without mention of status migrainosus', '(346.50) Persistent migraine aura without cerebral infarction, without mention of intractable migraine without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Persistent migraine aura without cerebral infarction (346.5)\(346.51) Persistent migraine aura without cerebral infarction, with intractable migraine, so stated, without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Persistent migraine aura without cerebral infarction (346.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Persistent migraine aura without cerebral infarction (346.5)\(346.51) Persistent migraine aura without cerebral infarction, with intractable migraine, so stated, without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.51''', NULL, + '(346.51) Persistent migraine aura without cerebral infarction, with intractable migraine, so stated, without mention of status migrainosus', '(346.51) Persistent migraine aura without cerebral infarction, with intractable migraine, so stated, without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Variants of migraine, not elsewhere classified (346.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Variants of migraine, not elsewhere classified (346.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.2''', NULL, + 'Variants of migraine, not elsewhere classified (346.2)', 'Variants of migraine, not elsewhere classified (346.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Variants of migraine, not elsewhere classified (346.2)\(346.20) Variants of migraine, not elsewhere classified, without mention of intractable migraine without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Variants of migraine, not elsewhere classified (346.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Variants of migraine, not elsewhere classified (346.2)\(346.20) Variants of migraine, not elsewhere classified, without mention of intractable migraine without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.20''', NULL, + '(346.20) Variants of migraine, not elsewhere classified, without mention of intractable migraine without mention of status migrainosus', '(346.20) Variants of migraine, not elsewhere classified, without mention of intractable migraine without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Variants of migraine, not elsewhere classified (346.2)\(346.21) Variants of migraine, not elsewhere classified, with intractable migraine, so stated, without mention of status migrainosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Variants of migraine, not elsewhere classified (346.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Migraine (346)\Variants of migraine, not elsewhere classified (346.2)\(346.21) Variants of migraine, not elsewhere classified, with intractable migraine, so stated, without mention of status migrainosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''346.21''', NULL, + '(346.21) Variants of migraine, not elsewhere classified, with intractable migraine, so stated, without mention of status migrainosus', '(346.21) Variants of migraine, not elsewhere classified, with intractable migraine, so stated, without mention of status migrainosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349''', NULL, + 'Other and unspecified disorders of the nervous system (349)', 'Other and unspecified disorders of the nervous system (349)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\(349.0) Reaction to spinal or lumbar puncture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\(349.0) Reaction to spinal or lumbar puncture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349.0''', NULL, + '(349.0) Reaction to spinal or lumbar puncture', '(349.0) Reaction to spinal or lumbar puncture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\(349.1) Nervous system complications from surgically implanted device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\(349.1) Nervous system complications from surgically implanted device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349.1''', NULL, + '(349.1) Nervous system complications from surgically implanted device', '(349.1) Nervous system complications from surgically implanted device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\(349.2) Disorders of meninges, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\(349.2) Disorders of meninges, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349.2''', NULL, + '(349.2) Disorders of meninges, not elsewhere classified', '(349.2) Disorders of meninges, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\(349.9) Unspecified disorders of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\(349.9) Unspecified disorders of nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349.9''', NULL, + '(349.9) Unspecified disorders of nervous system', '(349.9) Unspecified disorders of nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Dural tear (349.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Dural tear (349.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349.3''', NULL, + 'Dural tear (349.3)', 'Dural tear (349.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Dural tear (349.3)\(349.31) Accidental puncture or laceration of dura during a procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Dural tear (349.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Dural tear (349.3)\(349.31) Accidental puncture or laceration of dura during a procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349.31''', NULL, + '(349.31) Accidental puncture or laceration of dura during a procedure', '(349.31) Accidental puncture or laceration of dura during a procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Dural tear (349.3)\(349.39) Other dural tear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Dural tear (349.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Dural tear (349.3)\(349.39) Other dural tear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349.39''', NULL, + '(349.39) Other dural tear', '(349.39) Other dural tear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Other specified disorders of nervous system (349.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Other specified disorders of nervous system (349.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349.8''', NULL, + 'Other specified disorders of nervous system (349.8)', 'Other specified disorders of nervous system (349.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Other specified disorders of nervous system (349.8)\(349.81) Cerebrospinal fluid rhinorrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Other specified disorders of nervous system (349.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Other specified disorders of nervous system (349.8)\(349.81) Cerebrospinal fluid rhinorrhea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349.81''', NULL, + '(349.81) Cerebrospinal fluid rhinorrhea', '(349.81) Cerebrospinal fluid rhinorrhea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Other specified disorders of nervous system (349.8)\(349.82) Toxic encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Other specified disorders of nervous system (349.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Other specified disorders of nervous system (349.8)\(349.82) Toxic encephalopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349.82''', NULL, + '(349.82) Toxic encephalopathy', '(349.82) Toxic encephalopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Other specified disorders of nervous system (349.8)\(349.89) Other specified disorders of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Other specified disorders of nervous system (349.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other and unspecified disorders of the nervous system (349)\Other specified disorders of nervous system (349.8)\(349.89) Other specified disorders of nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''349.89''', NULL, + '(349.89) Other specified disorders of nervous system', '(349.89) Other specified disorders of nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348''', NULL, + 'Other conditions of brain (348)', 'Other conditions of brain (348)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.0) Cerebral cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.0) Cerebral cysts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.0''', NULL, + '(348.0) Cerebral cysts', '(348.0) Cerebral cysts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.1) Anoxic brain damage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.1) Anoxic brain damage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.1''', NULL, + '(348.1) Anoxic brain damage', '(348.1) Anoxic brain damage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.2) Benign intracranial hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.2) Benign intracranial hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.2''', NULL, + '(348.2) Benign intracranial hypertension', '(348.2) Benign intracranial hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.4) Compression of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.4) Compression of brain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.4''', NULL, + '(348.4) Compression of brain', '(348.4) Compression of brain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.5) Cerebral edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.5) Cerebral edema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.5''', NULL, + '(348.5) Cerebral edema', '(348.5) Cerebral edema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.9) Unspecified condition of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\(348.9) Unspecified condition of brain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.9''', NULL, + '(348.9) Unspecified condition of brain', '(348.9) Unspecified condition of brain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Encephalopathy, not elsewhere classified (348.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Encephalopathy, not elsewhere classified (348.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.3''', NULL, + 'Encephalopathy, not elsewhere classified (348.3)', 'Encephalopathy, not elsewhere classified (348.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Encephalopathy, not elsewhere classified (348.3)\(348.30) Encephalopathy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Encephalopathy, not elsewhere classified (348.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Encephalopathy, not elsewhere classified (348.3)\(348.30) Encephalopathy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.30''', NULL, + '(348.30) Encephalopathy, unspecified', '(348.30) Encephalopathy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Encephalopathy, not elsewhere classified (348.3)\(348.31) Metabolic encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Encephalopathy, not elsewhere classified (348.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Encephalopathy, not elsewhere classified (348.3)\(348.31) Metabolic encephalopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.31''', NULL, + '(348.31) Metabolic encephalopathy', '(348.31) Metabolic encephalopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Encephalopathy, not elsewhere classified (348.3)\(348.39) Other encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Encephalopathy, not elsewhere classified (348.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Encephalopathy, not elsewhere classified (348.3)\(348.39) Other encephalopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.39''', NULL, + '(348.39) Other encephalopathy', '(348.39) Other encephalopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Other conditions of brain (348.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Other conditions of brain (348.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.8''', NULL, + 'Other conditions of brain (348.8)', 'Other conditions of brain (348.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Other conditions of brain (348.8)\(348.81) Temporal sclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Other conditions of brain (348.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Other conditions of brain (348.8)\(348.81) Temporal sclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.81''', NULL, + '(348.81) Temporal sclerosis', '(348.81) Temporal sclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Other conditions of brain (348.8)\(348.82) Brain death\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Other conditions of brain (348.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Other conditions of brain (348.8)\(348.82) Brain death\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.82''', NULL, + '(348.82) Brain death', '(348.82) Brain death', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Other conditions of brain (348.8)\(348.89) Other conditions of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Other conditions of brain (348.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other conditions of brain (348)\Other conditions of brain (348.8)\(348.89) Other conditions of brain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''348.89''', NULL, + '(348.89) Other conditions of brain', '(348.89) Other conditions of brain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''341''', NULL, + 'Other demyelinating diseases of central nervous system (341)', 'Other demyelinating diseases of central nervous system (341)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\(341.0) Neuromyelitis optica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\(341.0) Neuromyelitis optica\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''341.0''', NULL, + '(341.0) Neuromyelitis optica', '(341.0) Neuromyelitis optica', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\(341.1) Schilder''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\(341.1) Schilder''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''341.1''', NULL, + '(341.1) Schilder''s disease', '(341.1) Schilder''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\(341.8) Other demyelinating diseases of central nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\(341.8) Other demyelinating diseases of central nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''341.8''', NULL, + '(341.8) Other demyelinating diseases of central nervous system', '(341.8) Other demyelinating diseases of central nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\(341.9) Demyelinating disease of central nervous system, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\(341.9) Demyelinating disease of central nervous system, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''341.9''', NULL, + '(341.9) Demyelinating disease of central nervous system, unspecified', '(341.9) Demyelinating disease of central nervous system, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\Acute (transverse) myelitis (341.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\Acute (transverse) myelitis (341.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''transverse) myelitis (341.2''', NULL, + 'Acute (transverse) myelitis (341.2)', 'Acute (transverse) myelitis (341.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\Acute (transverse) myelitis (341.2)\(341.20) Acute (transverse) myelitis NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\Acute (transverse) myelitis (341.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\Acute (transverse) myelitis (341.2)\(341.20) Acute (transverse) myelitis NOS\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''341.20) Acute (transverse''', NULL, + '(341.20) Acute (transverse) myelitis NOS', '(341.20) Acute (transverse) myelitis NOS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\Acute (transverse) myelitis (341.2)\(341.21) Acute (transverse) myelitis in conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\Acute (transverse) myelitis (341.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\Acute (transverse) myelitis (341.2)\(341.21) Acute (transverse) myelitis in conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''341.21) Acute (transverse''', NULL, + '(341.21) Acute (transverse) myelitis in conditions classified elsewhere', '(341.21) Acute (transverse) myelitis in conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\Acute (transverse) myelitis (341.2)\(341.22) Idiopathic transverse myelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\Acute (transverse) myelitis (341.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other demyelinating diseases of central nervous system (341)\Acute (transverse) myelitis (341.2)\(341.22) Idiopathic transverse myelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''341.22''', NULL, + '(341.22) Idiopathic transverse myelitis', '(341.22) Idiopathic transverse myelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344''', NULL, + 'Other paralytic syndromes (344)', 'Other paralytic syndromes (344)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\(344.1) Paraplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\(344.1) Paraplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.1''', NULL, + '(344.1) Paraplegia', '(344.1) Paraplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\(344.2) Diplegia of upper limbs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\(344.2) Diplegia of upper limbs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.2''', NULL, + '(344.2) Diplegia of upper limbs', '(344.2) Diplegia of upper limbs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\(344.5) Unspecified monoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\(344.5) Unspecified monoplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.5''', NULL, + '(344.5) Unspecified monoplegia', '(344.5) Unspecified monoplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\(344.9) Paralysis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\(344.9) Paralysis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.9''', NULL, + '(344.9) Paralysis, unspecified', '(344.9) Paralysis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Cauda equina syndrome (344.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Cauda equina syndrome (344.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.6''', NULL, + 'Cauda equina syndrome (344.6)', 'Cauda equina syndrome (344.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Cauda equina syndrome (344.6)\(344.60) Cauda equina syndrome without mention of neurogenic bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Cauda equina syndrome (344.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Cauda equina syndrome (344.6)\(344.60) Cauda equina syndrome without mention of neurogenic bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.60''', NULL, + '(344.60) Cauda equina syndrome without mention of neurogenic bladder', '(344.60) Cauda equina syndrome without mention of neurogenic bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Cauda equina syndrome (344.6)\(344.61) Cauda equina syndrome with neurogenic bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Cauda equina syndrome (344.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Cauda equina syndrome (344.6)\(344.61) Cauda equina syndrome with neurogenic bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.61''', NULL, + '(344.61) Cauda equina syndrome with neurogenic bladder', '(344.61) Cauda equina syndrome with neurogenic bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of lower limb (344.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of lower limb (344.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.3''', NULL, + 'Monoplegia of lower limb (344.3)', 'Monoplegia of lower limb (344.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of lower limb (344.3)\(344.30) Monoplegia of lower limb affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of lower limb (344.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of lower limb (344.3)\(344.30) Monoplegia of lower limb affecting unspecified side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.30''', NULL, + '(344.30) Monoplegia of lower limb affecting unspecified side', '(344.30) Monoplegia of lower limb affecting unspecified side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of lower limb (344.3)\(344.31) Monoplegia of lower limb affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of lower limb (344.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of lower limb (344.3)\(344.31) Monoplegia of lower limb affecting dominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.31''', NULL, + '(344.31) Monoplegia of lower limb affecting dominant side', '(344.31) Monoplegia of lower limb affecting dominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of lower limb (344.3)\(344.32) Monoplegia of lower limb affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of lower limb (344.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of lower limb (344.3)\(344.32) Monoplegia of lower limb affecting nondominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.32''', NULL, + '(344.32) Monoplegia of lower limb affecting nondominant side', '(344.32) Monoplegia of lower limb affecting nondominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of upper limb (344.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of upper limb (344.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.4''', NULL, + 'Monoplegia of upper limb (344.4)', 'Monoplegia of upper limb (344.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of upper limb (344.4)\(344.40) Monoplegia of upper limb affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of upper limb (344.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of upper limb (344.4)\(344.40) Monoplegia of upper limb affecting unspecified side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.40''', NULL, + '(344.40) Monoplegia of upper limb affecting unspecified side', '(344.40) Monoplegia of upper limb affecting unspecified side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of upper limb (344.4)\(344.41) Monoplegia of upper limb affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of upper limb (344.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of upper limb (344.4)\(344.41) Monoplegia of upper limb affecting dominant side\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.41''', NULL, + '(344.41) Monoplegia of upper limb affecting dominant side', '(344.41) Monoplegia of upper limb affecting dominant side', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of upper limb (344.4)\(344.42) Monoplegia of upper limb affecting nondominant sde\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of upper limb (344.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Monoplegia of upper limb (344.4)\(344.42) Monoplegia of upper limb affecting nondominant sde\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.42''', NULL, + '(344.42) Monoplegia of upper limb affecting nondominant sde', '(344.42) Monoplegia of upper limb affecting nondominant sde', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Other specified paralytic syndromes (344.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Other specified paralytic syndromes (344.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.8''', NULL, + 'Other specified paralytic syndromes (344.8)', 'Other specified paralytic syndromes (344.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Other specified paralytic syndromes (344.8)\(344.81) Locked-in state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Other specified paralytic syndromes (344.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Other specified paralytic syndromes (344.8)\(344.81) Locked-in state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.81''', NULL, + '(344.81) Locked-in state', '(344.81) Locked-in state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Other specified paralytic syndromes (344.8)\(344.89) Other specified paralytic syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Other specified paralytic syndromes (344.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Other specified paralytic syndromes (344.8)\(344.89) Other specified paralytic syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.89''', NULL, + '(344.89) Other specified paralytic syndrome', '(344.89) Other specified paralytic syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.0''', NULL, + 'Quadriplegia and quadriparesis (344.0)', 'Quadriplegia and quadriparesis (344.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.00) Quadriplegia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.00) Quadriplegia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.00''', NULL, + '(344.00) Quadriplegia, unspecified', '(344.00) Quadriplegia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.01) Quadriplegia, C1-C4, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.01) Quadriplegia, C1-C4, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.01''', NULL, + '(344.01) Quadriplegia, C1-C4, complete', '(344.01) Quadriplegia, C1-C4, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.02) Quadriplegia, C1-C4, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.02) Quadriplegia, C1-C4, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.02''', NULL, + '(344.02) Quadriplegia, C1-C4, incomplete', '(344.02) Quadriplegia, C1-C4, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.03) Quadriplegia, C5-C7, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.03) Quadriplegia, C5-C7, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.03''', NULL, + '(344.03) Quadriplegia, C5-C7, complete', '(344.03) Quadriplegia, C5-C7, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.04) Quadriplegia, C5-C7, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.04) Quadriplegia, C5-C7, incomplete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.04''', NULL, + '(344.04) Quadriplegia, C5-C7, incomplete', '(344.04) Quadriplegia, C5-C7, incomplete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.09) Other quadriplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other disorders of the central nervous system (340-349.99)\Other paralytic syndromes (344)\Quadriplegia and quadriparesis (344.0)\(344.09) Other quadriplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''344.09''', NULL, + '(344.09) Other quadriplegia', '(344.09) Other quadriplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''339'' AND ''339.99''', NULL, + 'Other headache syndromes (339-339.99)', 'Other headache syndromes (339-339.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339''', NULL, + 'Other headache syndromes (339)', 'Other headache syndromes (339)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\(339.3) Drug induced headache, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\(339.3) Drug induced headache, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.3''', NULL, + '(339.3) Drug induced headache, not elsewhere classified', '(339.3) Drug induced headache, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.0''', NULL, + 'Cluster headaches and other trigeminal autonomic cephalgias (339.0)', 'Cluster headaches and other trigeminal autonomic cephalgias (339.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.00) Cluster headache syndrome, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.00) Cluster headache syndrome, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.00''', NULL, + '(339.00) Cluster headache syndrome, unspecified', '(339.00) Cluster headache syndrome, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.01) Episodic cluster headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.01) Episodic cluster headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.01''', NULL, + '(339.01) Episodic cluster headache', '(339.01) Episodic cluster headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.02) Chronic cluster headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.02) Chronic cluster headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.02''', NULL, + '(339.02) Chronic cluster headache', '(339.02) Chronic cluster headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.03) Episodic paroxysmal hemicrania\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.03) Episodic paroxysmal hemicrania\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.03''', NULL, + '(339.03) Episodic paroxysmal hemicrania', '(339.03) Episodic paroxysmal hemicrania', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.04) Chronic paroxysmal hemicrania\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.04) Chronic paroxysmal hemicrania\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.04''', NULL, + '(339.04) Chronic paroxysmal hemicrania', '(339.04) Chronic paroxysmal hemicrania', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.05) Short lasting unilateral neuralgiform headache with conjunctival injection and tearing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.05) Short lasting unilateral neuralgiform headache with conjunctival injection and tearing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.05''', NULL, + '(339.05) Short lasting unilateral neuralgiform headache with conjunctival injection and tearing', '(339.05) Short lasting unilateral neuralgiform headache with conjunctival injection and tearing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.09) Other trigeminal autonomic cephalgias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\(339.09) Other trigeminal autonomic cephalgias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.09''', NULL, + '(339.09) Other trigeminal autonomic cephalgias', '(339.09) Other trigeminal autonomic cephalgias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.4''', NULL, + 'Complicated headache syndromes (339.4)', 'Complicated headache syndromes (339.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\(339.41) Hemicrania continua\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\(339.41) Hemicrania continua\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.41''', NULL, + '(339.41) Hemicrania continua', '(339.41) Hemicrania continua', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\(339.42) New daily persistent headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\(339.42) New daily persistent headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.42''', NULL, + '(339.42) New daily persistent headache', '(339.42) New daily persistent headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\(339.43) Primary thunderclap headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\(339.43) Primary thunderclap headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.43''', NULL, + '(339.43) Primary thunderclap headache', '(339.43) Primary thunderclap headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\(339.44) Other complicated headache syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Complicated headache syndromes (339.4)\(339.44) Other complicated headache syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.44''', NULL, + '(339.44) Other complicated headache syndrome', '(339.44) Other complicated headache syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.8''', NULL, + 'Other specified headache syndromes (339.8)', 'Other specified headache syndromes (339.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\(339.81) Hypnic headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\(339.81) Hypnic headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.81''', NULL, + '(339.81) Hypnic headache', '(339.81) Hypnic headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\(339.82) Headache associated with sexual activity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\(339.82) Headache associated with sexual activity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.82''', NULL, + '(339.82) Headache associated with sexual activity', '(339.82) Headache associated with sexual activity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\(339.83) Primary cough headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\(339.83) Primary cough headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.83''', NULL, + '(339.83) Primary cough headache', '(339.83) Primary cough headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\(339.85) Primary stabbing headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\(339.85) Primary stabbing headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.85''', NULL, + '(339.85) Primary stabbing headache', '(339.85) Primary stabbing headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\(339.89) Other headache syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Other specified headache syndromes (339.8)\(339.89) Other headache syndromes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.89''', NULL, + '(339.89) Other headache syndromes', '(339.89) Other headache syndromes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Post-traumatic headache (339.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Post-traumatic headache (339.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.2''', NULL, + 'Post-traumatic headache (339.2)', 'Post-traumatic headache (339.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Post-traumatic headache (339.2)\(339.20) Post-traumatic headache, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Post-traumatic headache (339.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Post-traumatic headache (339.2)\(339.20) Post-traumatic headache, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.20''', NULL, + '(339.20) Post-traumatic headache, unspecified', '(339.20) Post-traumatic headache, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Post-traumatic headache (339.2)\(339.21) Acute post-traumatic headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Post-traumatic headache (339.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Post-traumatic headache (339.2)\(339.21) Acute post-traumatic headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.21''', NULL, + '(339.21) Acute post-traumatic headache', '(339.21) Acute post-traumatic headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Post-traumatic headache (339.2)\(339.22) Chronic post-traumatic headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Post-traumatic headache (339.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Post-traumatic headache (339.2)\(339.22) Chronic post-traumatic headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.22''', NULL, + '(339.22) Chronic post-traumatic headache', '(339.22) Chronic post-traumatic headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Tension type headache (339.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Tension type headache (339.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.1''', NULL, + 'Tension type headache (339.1)', 'Tension type headache (339.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Tension type headache (339.1)\(339.10) Tension type headache, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Tension type headache (339.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Tension type headache (339.1)\(339.10) Tension type headache, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.10''', NULL, + '(339.10) Tension type headache, unspecified', '(339.10) Tension type headache, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Tension type headache (339.1)\(339.11) Episodic tension type headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Tension type headache (339.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Tension type headache (339.1)\(339.11) Episodic tension type headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.11''', NULL, + '(339.11) Episodic tension type headache', '(339.11) Episodic tension type headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Tension type headache (339.1)\(339.12) Chronic tension type headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Tension type headache (339.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Other headache syndromes (339-339.99)\Other headache syndromes (339)\Tension type headache (339.1)\(339.12) Chronic tension type headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''339.12''', NULL, + '(339.12) Chronic tension type headache', '(339.12) Chronic tension type headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''338'' AND ''338.99''', NULL, + 'Pain (338-338.99)', 'Pain (338-338.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338''', NULL, + 'Pain, not elsewhere classified (338)', 'Pain, not elsewhere classified (338)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\(338.0) Central pain syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\(338.0) Central pain syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.0''', NULL, + '(338.0) Central pain syndrome', '(338.0) Central pain syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\(338.3) Neoplasm related pain (acute) (chronic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\(338.3) Neoplasm related pain (acute) (chronic)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.3) Neoplasm related pain (acute) (chronic''', NULL, + '(338.3) Neoplasm related pain (acute) (chronic)', '(338.3) Neoplasm related pain (acute) (chronic)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\(338.4) Chronic pain syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\(338.4) Chronic pain syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.4''', NULL, + '(338.4) Chronic pain syndrome', '(338.4) Chronic pain syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.1''', NULL, + 'Acute pain (338.1)', 'Acute pain (338.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\(338.11) Acute pain due to trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\(338.11) Acute pain due to trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.11''', NULL, + '(338.11) Acute pain due to trauma', '(338.11) Acute pain due to trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\(338.12) Acute post-thoracotomy pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\(338.12) Acute post-thoracotomy pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.12''', NULL, + '(338.12) Acute post-thoracotomy pain', '(338.12) Acute post-thoracotomy pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\(338.18) Other acute postoperative pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\(338.18) Other acute postoperative pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.18''', NULL, + '(338.18) Other acute postoperative pain', '(338.18) Other acute postoperative pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\(338.19) Other acute pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Acute pain (338.1)\(338.19) Other acute pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.19''', NULL, + '(338.19) Other acute pain', '(338.19) Other acute pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.2''', NULL, + 'Chronic pain (338.2)', 'Chronic pain (338.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\(338.21) Chronic pain due to trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\(338.21) Chronic pain due to trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.21''', NULL, + '(338.21) Chronic pain due to trauma', '(338.21) Chronic pain due to trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\(338.22) Chronic post-thoracotomy pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\(338.22) Chronic post-thoracotomy pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.22''', NULL, + '(338.22) Chronic post-thoracotomy pain', '(338.22) Chronic post-thoracotomy pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\(338.28) Other chronic postoperative pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\(338.28) Other chronic postoperative pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.28''', NULL, + '(338.28) Other chronic postoperative pain', '(338.28) Other chronic postoperative pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\(338.29) Other chronic pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Pain (338-338.99)\Pain, not elsewhere classified (338)\Chronic pain (338.2)\(338.29) Other chronic pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''338.29''', NULL, + '(338.29) Other chronic pain', '(338.29) Other chronic pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''460'' AND ''519.99''', NULL, + 'Diseases of the respiratory system (460-519.99)', 'Diseases of the respiratory system (460-519.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''460'' AND ''466.99''', NULL, + 'Acute respiratory infections (460-466.99)', 'Acute respiratory infections (460-466.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\(460) Acute nasopharyngitis [common cold]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\(460) Acute nasopharyngitis [common cold]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''460''', NULL, + '(460) Acute nasopharyngitis [common cold]', '(460) Acute nasopharyngitis [common cold]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\(462) Acute pharyngitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\(462) Acute pharyngitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''462''', NULL, + '(462) Acute pharyngitis', '(462) Acute pharyngitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\(463) Acute tonsillitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\(463) Acute tonsillitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''463''', NULL, + '(463) Acute tonsillitis', '(463) Acute tonsillitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''466''', NULL, + 'Acute bronchitis and bronchiolitis (466)', 'Acute bronchitis and bronchiolitis (466)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\(466.0) Acute bronchitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\(466.0) Acute bronchitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''466.0''', NULL, + '(466.0) Acute bronchitis', '(466.0) Acute bronchitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\Acute bronchiolitis (466.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\Acute bronchiolitis (466.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''466.1''', NULL, + 'Acute bronchiolitis (466.1)', 'Acute bronchiolitis (466.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\Acute bronchiolitis (466.1)\(466.11) Acute bronchiolitis due to respiratory syncytial virus (RSV)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\Acute bronchiolitis (466.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\Acute bronchiolitis (466.1)\(466.11) Acute bronchiolitis due to respiratory syncytial virus (RSV)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''466.11) Acute bronchiolitis due to respiratory syncytial virus (RSV''', NULL, + '(466.11) Acute bronchiolitis due to respiratory syncytial virus (RSV)', '(466.11) Acute bronchiolitis due to respiratory syncytial virus (RSV)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\Acute bronchiolitis (466.1)\(466.19) Acute bronchiolitis due to other infectious organisms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\Acute bronchiolitis (466.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute bronchitis and bronchiolitis (466)\Acute bronchiolitis (466.1)\(466.19) Acute bronchiolitis due to other infectious organisms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''466.19''', NULL, + '(466.19) Acute bronchiolitis due to other infectious organisms', '(466.19) Acute bronchiolitis due to other infectious organisms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464''', NULL, + 'Acute laryngitis and tracheitis (464)', 'Acute laryngitis and tracheitis (464)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\(464.4) Croup\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\(464.4) Croup\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.4''', NULL, + '(464.4) Croup', '(464.4) Croup', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute epiglottitis (464.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute epiglottitis (464.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.3''', NULL, + 'Acute epiglottitis (464.3)', 'Acute epiglottitis (464.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute epiglottitis (464.3)\(464.30) Acute epiglottitis without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute epiglottitis (464.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute epiglottitis (464.3)\(464.30) Acute epiglottitis without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.30''', NULL, + '(464.30) Acute epiglottitis without mention of obstruction', '(464.30) Acute epiglottitis without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute epiglottitis (464.3)\(464.31) Acute epiglottitis with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute epiglottitis (464.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute epiglottitis (464.3)\(464.31) Acute epiglottitis with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.31''', NULL, + '(464.31) Acute epiglottitis with obstruction', '(464.31) Acute epiglottitis with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngitis (464.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngitis (464.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.0''', NULL, + 'Acute laryngitis (464.0)', 'Acute laryngitis (464.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngitis (464.0)\(464.00) Acute laryngitis without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngitis (464.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngitis (464.0)\(464.00) Acute laryngitis without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.00''', NULL, + '(464.00) Acute laryngitis without mention of obstruction', '(464.00) Acute laryngitis without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngitis (464.0)\(464.01) Acute laryngitis with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngitis (464.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngitis (464.0)\(464.01) Acute laryngitis with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.01''', NULL, + '(464.01) Acute laryngitis with obstruction', '(464.01) Acute laryngitis with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngotracheitis (464.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngotracheitis (464.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.2''', NULL, + 'Acute laryngotracheitis (464.2)', 'Acute laryngotracheitis (464.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngotracheitis (464.2)\(464.20) Acute laryngotracheitis without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngotracheitis (464.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngotracheitis (464.2)\(464.20) Acute laryngotracheitis without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.20''', NULL, + '(464.20) Acute laryngotracheitis without mention of obstruction', '(464.20) Acute laryngotracheitis without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngotracheitis (464.2)\(464.21) Acute laryngotracheitis with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngotracheitis (464.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute laryngotracheitis (464.2)\(464.21) Acute laryngotracheitis with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.21''', NULL, + '(464.21) Acute laryngotracheitis with obstruction', '(464.21) Acute laryngotracheitis with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute tracheitis (464.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute tracheitis (464.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.1''', NULL, + 'Acute tracheitis (464.1)', 'Acute tracheitis (464.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute tracheitis (464.1)\(464.10) Acute tracheitis without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute tracheitis (464.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute tracheitis (464.1)\(464.10) Acute tracheitis without mention of obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.10''', NULL, + '(464.10) Acute tracheitis without mention of obstruction', '(464.10) Acute tracheitis without mention of obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute tracheitis (464.1)\(464.11) Acute tracheitis with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute tracheitis (464.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Acute tracheitis (464.1)\(464.11) Acute tracheitis with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.11''', NULL, + '(464.11) Acute tracheitis with obstruction', '(464.11) Acute tracheitis with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Supraglottitis, unspecified (464.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Supraglottitis, unspecified (464.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.5''', NULL, + 'Supraglottitis, unspecified (464.5)', 'Supraglottitis, unspecified (464.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Supraglottitis, unspecified (464.5)\(464.50) Supraglottitis unspecified, without obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Supraglottitis, unspecified (464.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Supraglottitis, unspecified (464.5)\(464.50) Supraglottitis unspecified, without obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.50''', NULL, + '(464.50) Supraglottitis unspecified, without obstruction', '(464.50) Supraglottitis unspecified, without obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Supraglottitis, unspecified (464.5)\(464.51) Supraglottitis unspecified, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Supraglottitis, unspecified (464.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute laryngitis and tracheitis (464)\Supraglottitis, unspecified (464.5)\(464.51) Supraglottitis unspecified, with obstruction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''464.51''', NULL, + '(464.51) Supraglottitis unspecified, with obstruction', '(464.51) Supraglottitis unspecified, with obstruction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''461''', NULL, + 'Acute sinusitis (461)', 'Acute sinusitis (461)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.0) Acute maxillary sinusitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.0) Acute maxillary sinusitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''461.0''', NULL, + '(461.0) Acute maxillary sinusitis', '(461.0) Acute maxillary sinusitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.1) Acute frontal sinusitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.1) Acute frontal sinusitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''461.1''', NULL, + '(461.1) Acute frontal sinusitis', '(461.1) Acute frontal sinusitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.2) Acute ethmoidal sinusitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.2) Acute ethmoidal sinusitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''461.2''', NULL, + '(461.2) Acute ethmoidal sinusitis', '(461.2) Acute ethmoidal sinusitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.3) Acute sphenoidal sinusitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.3) Acute sphenoidal sinusitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''461.3''', NULL, + '(461.3) Acute sphenoidal sinusitis', '(461.3) Acute sphenoidal sinusitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.8) Other acute sinusitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.8) Other acute sinusitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''461.8''', NULL, + '(461.8) Other acute sinusitis', '(461.8) Other acute sinusitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.9) Acute sinusitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute sinusitis (461)\(461.9) Acute sinusitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''461.9''', NULL, + '(461.9) Acute sinusitis, unspecified', '(461.9) Acute sinusitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute upper respiratory infections of multiple or unspecified sites (465)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute upper respiratory infections of multiple or unspecified sites (465)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''465''', NULL, + 'Acute upper respiratory infections of multiple or unspecified sites (465)', 'Acute upper respiratory infections of multiple or unspecified sites (465)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute upper respiratory infections of multiple or unspecified sites (465)\(465.0) Acute laryngopharyngitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute upper respiratory infections of multiple or unspecified sites (465)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute upper respiratory infections of multiple or unspecified sites (465)\(465.0) Acute laryngopharyngitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''465.0''', NULL, + '(465.0) Acute laryngopharyngitis', '(465.0) Acute laryngopharyngitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute upper respiratory infections of multiple or unspecified sites (465)\(465.8) Acute upper respiratory infections of other multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute upper respiratory infections of multiple or unspecified sites (465)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute upper respiratory infections of multiple or unspecified sites (465)\(465.8) Acute upper respiratory infections of other multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''465.8''', NULL, + '(465.8) Acute upper respiratory infections of other multiple sites', '(465.8) Acute upper respiratory infections of other multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute upper respiratory infections of multiple or unspecified sites (465)\(465.9) Acute upper respiratory infections of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute upper respiratory infections of multiple or unspecified sites (465)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Acute respiratory infections (460-466.99)\Acute upper respiratory infections of multiple or unspecified sites (465)\(465.9) Acute upper respiratory infections of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''465.9''', NULL, + '(465.9) Acute upper respiratory infections of unspecified site', '(465.9) Acute upper respiratory infections of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''490'' AND ''496.99''', NULL, + 'Chronic obstructive pulmonary disease and allied conditions (490-496.99)', 'Chronic obstructive pulmonary disease and allied conditions (490-496.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\(490) Bronchitis, not specified as acute or chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\(490) Bronchitis, not specified as acute or chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''490''', NULL, + '(490) Bronchitis, not specified as acute or chronic', '(490) Bronchitis, not specified as acute or chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\(496) Chronic airway obstruction, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\(496) Chronic airway obstruction, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''496''', NULL, + '(496) Chronic airway obstruction, not elsewhere classified', '(496) Chronic airway obstruction, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493''', NULL, + 'Asthma (493)', 'Asthma (493)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Asthma, unspecified (493.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Asthma, unspecified (493.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.9''', NULL, + 'Asthma, unspecified (493.9)', 'Asthma, unspecified (493.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Asthma, unspecified (493.9)\(493.90) Asthma, unspecified type, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Asthma, unspecified (493.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Asthma, unspecified (493.9)\(493.90) Asthma, unspecified type, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.90''', NULL, + '(493.90) Asthma, unspecified type, unspecified', '(493.90) Asthma, unspecified type, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Asthma, unspecified (493.9)\(493.91) Asthma, unspecified type, with status asthmaticus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Asthma, unspecified (493.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Asthma, unspecified (493.9)\(493.91) Asthma, unspecified type, with status asthmaticus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.91''', NULL, + '(493.91) Asthma, unspecified type, with status asthmaticus', '(493.91) Asthma, unspecified type, with status asthmaticus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Asthma, unspecified (493.9)\(493.92) Asthma, unspecified type, with (acute) exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Asthma, unspecified (493.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Asthma, unspecified (493.9)\(493.92) Asthma, unspecified type, with (acute) exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.92) Asthma, unspecified type, with (acute''', NULL, + '(493.92) Asthma, unspecified type, with (acute) exacerbation', '(493.92) Asthma, unspecified type, with (acute) exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Chronic obstructive asthma (493.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Chronic obstructive asthma (493.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.2''', NULL, + 'Chronic obstructive asthma (493.2)', 'Chronic obstructive asthma (493.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Chronic obstructive asthma (493.2)\(493.20) Chronic obstructive asthma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Chronic obstructive asthma (493.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Chronic obstructive asthma (493.2)\(493.20) Chronic obstructive asthma, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.20''', NULL, + '(493.20) Chronic obstructive asthma, unspecified', '(493.20) Chronic obstructive asthma, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Chronic obstructive asthma (493.2)\(493.21) Chronic obstructive asthma with status asthmaticus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Chronic obstructive asthma (493.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Chronic obstructive asthma (493.2)\(493.21) Chronic obstructive asthma with status asthmaticus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.21''', NULL, + '(493.21) Chronic obstructive asthma with status asthmaticus', '(493.21) Chronic obstructive asthma with status asthmaticus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Chronic obstructive asthma (493.2)\(493.22) Chronic obstructive asthma with (acute) exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Chronic obstructive asthma (493.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Chronic obstructive asthma (493.2)\(493.22) Chronic obstructive asthma with (acute) exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.22) Chronic obstructive asthma with (acute''', NULL, + '(493.22) Chronic obstructive asthma with (acute) exacerbation', '(493.22) Chronic obstructive asthma with (acute) exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Extrinsic asthma (493.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Extrinsic asthma (493.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.0''', NULL, + 'Extrinsic asthma (493.0)', 'Extrinsic asthma (493.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Extrinsic asthma (493.0)\(493.00) Extrinsic asthma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Extrinsic asthma (493.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Extrinsic asthma (493.0)\(493.00) Extrinsic asthma, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.00''', NULL, + '(493.00) Extrinsic asthma, unspecified', '(493.00) Extrinsic asthma, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Extrinsic asthma (493.0)\(493.01) Extrinsic asthma with status asthmaticus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Extrinsic asthma (493.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Extrinsic asthma (493.0)\(493.01) Extrinsic asthma with status asthmaticus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.01''', NULL, + '(493.01) Extrinsic asthma with status asthmaticus', '(493.01) Extrinsic asthma with status asthmaticus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Extrinsic asthma (493.0)\(493.02) Extrinsic asthma with (acute) exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Extrinsic asthma (493.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Extrinsic asthma (493.0)\(493.02) Extrinsic asthma with (acute) exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.02) Extrinsic asthma with (acute''', NULL, + '(493.02) Extrinsic asthma with (acute) exacerbation', '(493.02) Extrinsic asthma with (acute) exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Intrinsic asthma (493.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Intrinsic asthma (493.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.1''', NULL, + 'Intrinsic asthma (493.1)', 'Intrinsic asthma (493.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Intrinsic asthma (493.1)\(493.10) Intrinsic asthma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Intrinsic asthma (493.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Intrinsic asthma (493.1)\(493.10) Intrinsic asthma, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.10''', NULL, + '(493.10) Intrinsic asthma, unspecified', '(493.10) Intrinsic asthma, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Intrinsic asthma (493.1)\(493.11) Intrinsic asthma with status asthmaticus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Intrinsic asthma (493.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Intrinsic asthma (493.1)\(493.11) Intrinsic asthma with status asthmaticus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.11''', NULL, + '(493.11) Intrinsic asthma with status asthmaticus', '(493.11) Intrinsic asthma with status asthmaticus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Intrinsic asthma (493.1)\(493.12) Intrinsic asthma with (acute) exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Intrinsic asthma (493.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Intrinsic asthma (493.1)\(493.12) Intrinsic asthma with (acute) exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.12) Intrinsic asthma with (acute''', NULL, + '(493.12) Intrinsic asthma with (acute) exacerbation', '(493.12) Intrinsic asthma with (acute) exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Other forms of asthma (493.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Other forms of asthma (493.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.8''', NULL, + 'Other forms of asthma (493.8)', 'Other forms of asthma (493.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Other forms of asthma (493.8)\(493.81) Exercise induced bronchospasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Other forms of asthma (493.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Other forms of asthma (493.8)\(493.81) Exercise induced bronchospasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.81''', NULL, + '(493.81) Exercise induced bronchospasm', '(493.81) Exercise induced bronchospasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Other forms of asthma (493.8)\(493.82) Cough variant asthma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Other forms of asthma (493.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Asthma (493)\Other forms of asthma (493.8)\(493.82) Cough variant asthma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''493.82''', NULL, + '(493.82) Cough variant asthma', '(493.82) Cough variant asthma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Bronchiectasis (494)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Bronchiectasis (494)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''494''', NULL, + 'Bronchiectasis (494)', 'Bronchiectasis (494)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Bronchiectasis (494)\(494.0) Bronchiectasis without acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Bronchiectasis (494)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Bronchiectasis (494)\(494.0) Bronchiectasis without acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''494.0''', NULL, + '(494.0) Bronchiectasis without acute exacerbation', '(494.0) Bronchiectasis without acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Bronchiectasis (494)\(494.1) Bronchiectasis with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Bronchiectasis (494)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Bronchiectasis (494)\(494.1) Bronchiectasis with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''494.1''', NULL, + '(494.1) Bronchiectasis with acute exacerbation', '(494.1) Bronchiectasis with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''491''', NULL, + 'Chronic bronchitis (491)', 'Chronic bronchitis (491)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\(491.0) Simple chronic bronchitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\(491.0) Simple chronic bronchitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''491.0''', NULL, + '(491.0) Simple chronic bronchitis', '(491.0) Simple chronic bronchitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\(491.1) Mucopurulent chronic bronchitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\(491.1) Mucopurulent chronic bronchitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''491.1''', NULL, + '(491.1) Mucopurulent chronic bronchitis', '(491.1) Mucopurulent chronic bronchitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\(491.8) Other chronic bronchitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\(491.8) Other chronic bronchitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''491.8''', NULL, + '(491.8) Other chronic bronchitis', '(491.8) Other chronic bronchitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\(491.9) Unspecified chronic bronchitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\(491.9) Unspecified chronic bronchitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''491.9''', NULL, + '(491.9) Unspecified chronic bronchitis', '(491.9) Unspecified chronic bronchitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\Obstructive chronic bronchitis (491.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\Obstructive chronic bronchitis (491.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''491.2''', NULL, + 'Obstructive chronic bronchitis (491.2)', 'Obstructive chronic bronchitis (491.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\Obstructive chronic bronchitis (491.2)\(491.20) Obstructive chronic bronchitis without exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\Obstructive chronic bronchitis (491.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\Obstructive chronic bronchitis (491.2)\(491.20) Obstructive chronic bronchitis without exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''491.20''', NULL, + '(491.20) Obstructive chronic bronchitis without exacerbation', '(491.20) Obstructive chronic bronchitis without exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\Obstructive chronic bronchitis (491.2)\(491.21) Obstructive chronic bronchitis with (acute) exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\Obstructive chronic bronchitis (491.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\Obstructive chronic bronchitis (491.2)\(491.21) Obstructive chronic bronchitis with (acute) exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''491.21) Obstructive chronic bronchitis with (acute''', NULL, + '(491.21) Obstructive chronic bronchitis with (acute) exacerbation', '(491.21) Obstructive chronic bronchitis with (acute) exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\Obstructive chronic bronchitis (491.2)\(491.22) Obstructive chronic bronchitis with acute bronchitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\Obstructive chronic bronchitis (491.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Chronic bronchitis (491)\Obstructive chronic bronchitis (491.2)\(491.22) Obstructive chronic bronchitis with acute bronchitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''491.22''', NULL, + '(491.22) Obstructive chronic bronchitis with acute bronchitis', '(491.22) Obstructive chronic bronchitis with acute bronchitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Emphysema (492)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Emphysema (492)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''492''', NULL, + 'Emphysema (492)', 'Emphysema (492)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Emphysema (492)\(492.0) Emphysematous bleb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Emphysema (492)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Emphysema (492)\(492.0) Emphysematous bleb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''492.0''', NULL, + '(492.0) Emphysematous bleb', '(492.0) Emphysematous bleb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Emphysema (492)\(492.8) Other emphysema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Emphysema (492)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Emphysema (492)\(492.8) Other emphysema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''492.8''', NULL, + '(492.8) Other emphysema', '(492.8) Other emphysema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''495''', NULL, + 'Extrinsic allergic alveolitis (495)', 'Extrinsic allergic alveolitis (495)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.0) Farmers'' lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.0) Farmers'' lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''495.0''', NULL, + '(495.0) Farmers'' lung', '(495.0) Farmers'' lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.1) Bagassosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.1) Bagassosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''495.1''', NULL, + '(495.1) Bagassosis', '(495.1) Bagassosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.2) Bird-fanciers'' lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.2) Bird-fanciers'' lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''495.2''', NULL, + '(495.2) Bird-fanciers'' lung', '(495.2) Bird-fanciers'' lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.3) Suberosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.3) Suberosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''495.3''', NULL, + '(495.3) Suberosis', '(495.3) Suberosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.4) Malt workers'' lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.4) Malt workers'' lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''495.4''', NULL, + '(495.4) Malt workers'' lung', '(495.4) Malt workers'' lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.5) Mushroom workers'' lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.5) Mushroom workers'' lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''495.5''', NULL, + '(495.5) Mushroom workers'' lung', '(495.5) Mushroom workers'' lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.6) Maple bark-strippers'' lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.6) Maple bark-strippers'' lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''495.6''', NULL, + '(495.6) Maple bark-strippers'' lung', '(495.6) Maple bark-strippers'' lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.7) Ventilation pneumonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.7) Ventilation pneumonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''495.7''', NULL, + '(495.7) Ventilation pneumonitis', '(495.7) Ventilation pneumonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.8) Other specified allergic alveolitis and pneumonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.8) Other specified allergic alveolitis and pneumonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''495.8''', NULL, + '(495.8) Other specified allergic alveolitis and pneumonitis', '(495.8) Other specified allergic alveolitis and pneumonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.9) Unspecified allergic alveolitis and pneumonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\Extrinsic allergic alveolitis (495)\(495.9) Unspecified allergic alveolitis and pneumonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''495.9''', NULL, + '(495.9) Unspecified allergic alveolitis and pneumonitis', '(495.9) Unspecified allergic alveolitis and pneumonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''510'' AND ''519.99''', NULL, + 'Other diseases of respiratory system (510-519.99)', 'Other diseases of respiratory system (510-519.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\(514) Pulmonary congestion and hypostasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\(514) Pulmonary congestion and hypostasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''514''', NULL, + '(514) Pulmonary congestion and hypostasis', '(514) Pulmonary congestion and hypostasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\(515) Postinflammatory pulmonary fibrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\(515) Postinflammatory pulmonary fibrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''515''', NULL, + '(515) Postinflammatory pulmonary fibrosis', '(515) Postinflammatory pulmonary fibrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Abscess of lung and mediastinum (513)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Abscess of lung and mediastinum (513)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''513''', NULL, + 'Abscess of lung and mediastinum (513)', 'Abscess of lung and mediastinum (513)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Abscess of lung and mediastinum (513)\(513.0) Abscess of lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Abscess of lung and mediastinum (513)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Abscess of lung and mediastinum (513)\(513.0) Abscess of lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''513.0''', NULL, + '(513.0) Abscess of lung', '(513.0) Abscess of lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Abscess of lung and mediastinum (513)\(513.1) Abscess of mediastinum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Abscess of lung and mediastinum (513)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Abscess of lung and mediastinum (513)\(513.1) Abscess of mediastinum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''513.1''', NULL, + '(513.1) Abscess of mediastinum', '(513.1) Abscess of mediastinum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Empyema (510)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Empyema (510)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''510''', NULL, + 'Empyema (510)', 'Empyema (510)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Empyema (510)\(510.0) Empyema with fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Empyema (510)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Empyema (510)\(510.0) Empyema with fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''510.0''', NULL, + '(510.0) Empyema with fistula', '(510.0) Empyema with fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Empyema (510)\(510.9) Empyema without mention of fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Empyema (510)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Empyema (510)\(510.9) Empyema without mention of fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''510.9''', NULL, + '(510.9) Empyema without mention of fistula', '(510.9) Empyema without mention of fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''517''', NULL, + 'Lung involvement in conditions classified elsewhere (517)', 'Lung involvement in conditions classified elsewhere (517)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\(517.1) Rheumatic pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\(517.1) Rheumatic pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''517.1''', NULL, + '(517.1) Rheumatic pneumonia', '(517.1) Rheumatic pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\(517.2) Lung involvement in systemic sclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\(517.2) Lung involvement in systemic sclerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''517.2''', NULL, + '(517.2) Lung involvement in systemic sclerosis', '(517.2) Lung involvement in systemic sclerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\(517.3) Acute chest syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\(517.3) Acute chest syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''517.3''', NULL, + '(517.3) Acute chest syndrome', '(517.3) Acute chest syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\(517.8) Lung involvement in other diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Lung involvement in conditions classified elsewhere (517)\(517.8) Lung involvement in other diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''517.8''', NULL, + '(517.8) Lung involvement in other diseases classified elsewhere', '(517.8) Lung involvement in other diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516''', NULL, + 'Other alveolar and parietoalveolar pneumonopathy (516)', 'Other alveolar and parietoalveolar pneumonopathy (516)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\(516.0) Pulmonary alveolar proteinosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\(516.0) Pulmonary alveolar proteinosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.0''', NULL, + '(516.0) Pulmonary alveolar proteinosis', '(516.0) Pulmonary alveolar proteinosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\(516.1) Idiopathic pulmonary hemosiderosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\(516.1) Idiopathic pulmonary hemosiderosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.1''', NULL, + '(516.1) Idiopathic pulmonary hemosiderosis', '(516.1) Idiopathic pulmonary hemosiderosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\(516.2) Pulmonary alveolar microlithiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\(516.2) Pulmonary alveolar microlithiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.2''', NULL, + '(516.2) Pulmonary alveolar microlithiasis', '(516.2) Pulmonary alveolar microlithiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\(516.8) Other specified alveolar and parietoalveolar pneumonopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\(516.8) Other specified alveolar and parietoalveolar pneumonopathies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.8''', NULL, + '(516.8) Other specified alveolar and parietoalveolar pneumonopathies', '(516.8) Other specified alveolar and parietoalveolar pneumonopathies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\(516.9) Unspecified alveolar and parietoalveolar pneumonopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\(516.9) Unspecified alveolar and parietoalveolar pneumonopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.9''', NULL, + '(516.9) Unspecified alveolar and parietoalveolar pneumonopathy', '(516.9) Unspecified alveolar and parietoalveolar pneumonopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.3''', NULL, + 'Idiopathic interstitial pneumonia (516.3)', 'Idiopathic interstitial pneumonia (516.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.30) Idiopathic interstitial pneumonia, not otherwise specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.30) Idiopathic interstitial pneumonia, not otherwise specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.30''', NULL, + '(516.30) Idiopathic interstitial pneumonia, not otherwise specified', '(516.30) Idiopathic interstitial pneumonia, not otherwise specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.31) Idiopathic pulmonary fibrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.31) Idiopathic pulmonary fibrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.31''', NULL, + '(516.31) Idiopathic pulmonary fibrosis', '(516.31) Idiopathic pulmonary fibrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.32) Idiopathic non-specific interstitial pneumonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.32) Idiopathic non-specific interstitial pneumonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.32''', NULL, + '(516.32) Idiopathic non-specific interstitial pneumonitis', '(516.32) Idiopathic non-specific interstitial pneumonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.33) Acute interstitial pneumonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.33) Acute interstitial pneumonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.33''', NULL, + '(516.33) Acute interstitial pneumonitis', '(516.33) Acute interstitial pneumonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.34) Respiratory bronchiolitis interstitial lung disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.34) Respiratory bronchiolitis interstitial lung disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.34''', NULL, + '(516.34) Respiratory bronchiolitis interstitial lung disease', '(516.34) Respiratory bronchiolitis interstitial lung disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.36) Cryptogenic organizing pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other alveolar and parietoalveolar pneumonopathy (516)\Idiopathic interstitial pneumonia (516.3)\(516.36) Cryptogenic organizing pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''516.36''', NULL, + '(516.36) Cryptogenic organizing pneumonia', '(516.36) Cryptogenic organizing pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518''', NULL, + 'Other diseases of lung (518)', 'Other diseases of lung (518)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.0) Pulmonary collapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.0) Pulmonary collapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.0''', NULL, + '(518.0) Pulmonary collapse', '(518.0) Pulmonary collapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.1) Interstitial emphysema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.1) Interstitial emphysema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.1''', NULL, + '(518.1) Interstitial emphysema', '(518.1) Interstitial emphysema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.2) Compensatory emphysema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.2) Compensatory emphysema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.2''', NULL, + '(518.2) Compensatory emphysema', '(518.2) Compensatory emphysema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.3) Pulmonary eosinophilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.3) Pulmonary eosinophilia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.3''', NULL, + '(518.3) Pulmonary eosinophilia', '(518.3) Pulmonary eosinophilia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.4) Acute edema of lung, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.4) Acute edema of lung, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.4''', NULL, + '(518.4) Acute edema of lung, unspecified', '(518.4) Acute edema of lung, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.6) Allergic bronchopulmonary aspergillosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.6) Allergic bronchopulmonary aspergillosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.6''', NULL, + '(518.6) Allergic bronchopulmonary aspergillosis', '(518.6) Allergic bronchopulmonary aspergillosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.7) Transfusion related acute lung injury (TRALI)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\(518.7) Transfusion related acute lung injury (TRALI)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.7) Transfusion related acute lung injury (TRALI''', NULL, + '(518.7) Transfusion related acute lung injury (TRALI)', '(518.7) Transfusion related acute lung injury (TRALI)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.8''', NULL, + 'Other diseases of lung (518.8)', 'Other diseases of lung (518.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\(518.81) Acute respiratory failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\(518.81) Acute respiratory failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.81''', NULL, + '(518.81) Acute respiratory failure', '(518.81) Acute respiratory failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\(518.82) Other pulmonary insufficiency, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\(518.82) Other pulmonary insufficiency, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.82''', NULL, + '(518.82) Other pulmonary insufficiency, not elsewhere classified', '(518.82) Other pulmonary insufficiency, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\(518.83) Chronic respiratory failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\(518.83) Chronic respiratory failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.83''', NULL, + '(518.83) Chronic respiratory failure', '(518.83) Chronic respiratory failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\(518.84) Acute and chronic respiratory failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\(518.84) Acute and chronic respiratory failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.84''', NULL, + '(518.84) Acute and chronic respiratory failure', '(518.84) Acute and chronic respiratory failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\(518.89) Other diseases of lung, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Other diseases of lung (518.8)\(518.89) Other diseases of lung, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.89''', NULL, + '(518.89) Other diseases of lung, not elsewhere classified', '(518.89) Other diseases of lung, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Pulmonary insufficiency following trauma and surgery (518.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Pulmonary insufficiency following trauma and surgery (518.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.5''', NULL, + 'Pulmonary insufficiency following trauma and surgery (518.5)', 'Pulmonary insufficiency following trauma and surgery (518.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Pulmonary insufficiency following trauma and surgery (518.5)\(518.51) Acute respiratory failure following trauma and surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Pulmonary insufficiency following trauma and surgery (518.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Pulmonary insufficiency following trauma and surgery (518.5)\(518.51) Acute respiratory failure following trauma and surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.51''', NULL, + '(518.51) Acute respiratory failure following trauma and surgery', '(518.51) Acute respiratory failure following trauma and surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Pulmonary insufficiency following trauma and surgery (518.5)\(518.52) Other pulmonary insufficiency, not elsewhere classified, following trauma and surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Pulmonary insufficiency following trauma and surgery (518.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Pulmonary insufficiency following trauma and surgery (518.5)\(518.52) Other pulmonary insufficiency, not elsewhere classified, following trauma and surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.52''', NULL, + '(518.52) Other pulmonary insufficiency, not elsewhere classified, following trauma and surgery', '(518.52) Other pulmonary insufficiency, not elsewhere classified, following trauma and surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Pulmonary insufficiency following trauma and surgery (518.5)\(518.53) Acute and chronic respiratory failure following trauma and surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Pulmonary insufficiency following trauma and surgery (518.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of lung (518)\Pulmonary insufficiency following trauma and surgery (518.5)\(518.53) Acute and chronic respiratory failure following trauma and surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''518.53''', NULL, + '(518.53) Acute and chronic respiratory failure following trauma and surgery', '(518.53) Acute and chronic respiratory failure following trauma and surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519''', NULL, + 'Other diseases of respiratory system (519)', 'Other diseases of respiratory system (519)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\(519.2) Mediastinitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\(519.2) Mediastinitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.2''', NULL, + '(519.2) Mediastinitis', '(519.2) Mediastinitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\(519.3) Other diseases of mediastinum, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\(519.3) Other diseases of mediastinum, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.3''', NULL, + '(519.3) Other diseases of mediastinum, not elsewhere classified', '(519.3) Other diseases of mediastinum, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\(519.4) Disorders of diaphragm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\(519.4) Disorders of diaphragm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.4''', NULL, + '(519.4) Disorders of diaphragm', '(519.4) Disorders of diaphragm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\(519.8) Other diseases of respiratory system, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\(519.8) Other diseases of respiratory system, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.8''', NULL, + '(519.8) Other diseases of respiratory system, not elsewhere classified', '(519.8) Other diseases of respiratory system, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\(519.9) Unspecified disease of respiratory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\(519.9) Unspecified disease of respiratory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.9''', NULL, + '(519.9) Unspecified disease of respiratory system', '(519.9) Unspecified disease of respiratory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.1''', NULL, + 'Other diseases of trachea and bronchus, not elsewhere classified (519.1)', 'Other diseases of trachea and bronchus, not elsewhere classified (519.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\(519.11) Acute bronchospasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\(519.11) Acute bronchospasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.11''', NULL, + '(519.11) Acute bronchospasm', '(519.11) Acute bronchospasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\(519.19) Other diseases of trachea and bronchus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\(519.19) Other diseases of trachea and bronchus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.19''', NULL, + '(519.19) Other diseases of trachea and bronchus', '(519.19) Other diseases of trachea and bronchus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.0''', NULL, + 'Tracheostomy complications (519.0)', 'Tracheostomy complications (519.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\(519.00) Tracheostomy complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\(519.00) Tracheostomy complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.00''', NULL, + '(519.00) Tracheostomy complication, unspecified', '(519.00) Tracheostomy complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\(519.01) Infection of tracheostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\(519.01) Infection of tracheostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.01''', NULL, + '(519.01) Infection of tracheostomy', '(519.01) Infection of tracheostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\(519.02) Mechanical complication of tracheostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\(519.02) Mechanical complication of tracheostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.02''', NULL, + '(519.02) Mechanical complication of tracheostomy', '(519.02) Mechanical complication of tracheostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\(519.09) Other tracheostomy complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Other diseases of respiratory system (519)\Tracheostomy complications (519.0)\(519.09) Other tracheostomy complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''519.09''', NULL, + '(519.09) Other tracheostomy complications', '(519.09) Other tracheostomy complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''511''', NULL, + 'Pleurisy (511)', 'Pleurisy (511)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\(511.0) Pleurisy without mention of effusion or current tuberculosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\(511.0) Pleurisy without mention of effusion or current tuberculosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''511.0''', NULL, + '(511.0) Pleurisy without mention of effusion or current tuberculosis', '(511.0) Pleurisy without mention of effusion or current tuberculosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\(511.1) Pleurisy with effusion, with mention of a bacterial cause other than tuberculosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\(511.1) Pleurisy with effusion, with mention of a bacterial cause other than tuberculosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''511.1''', NULL, + '(511.1) Pleurisy with effusion, with mention of a bacterial cause other than tuberculosis', '(511.1) Pleurisy with effusion, with mention of a bacterial cause other than tuberculosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\(511.9) Unspecified pleural effusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\(511.9) Unspecified pleural effusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''511.9''', NULL, + '(511.9) Unspecified pleural effusion', '(511.9) Unspecified pleural effusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\Other specified forms of pleural effusion, except tuberculous (511.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\Other specified forms of pleural effusion, except tuberculous (511.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''511.8''', NULL, + 'Other specified forms of pleural effusion, except tuberculous (511.8)', 'Other specified forms of pleural effusion, except tuberculous (511.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\Other specified forms of pleural effusion, except tuberculous (511.8)\(511.81) Malignant pleural effusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\Other specified forms of pleural effusion, except tuberculous (511.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\Other specified forms of pleural effusion, except tuberculous (511.8)\(511.81) Malignant pleural effusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''511.81''', NULL, + '(511.81) Malignant pleural effusion', '(511.81) Malignant pleural effusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\Other specified forms of pleural effusion, except tuberculous (511.8)\(511.89) Other specified forms of effusion, except tuberculous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\Other specified forms of pleural effusion, except tuberculous (511.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pleurisy (511)\Other specified forms of pleural effusion, except tuberculous (511.8)\(511.89) Other specified forms of effusion, except tuberculous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''511.89''', NULL, + '(511.89) Other specified forms of effusion, except tuberculous', '(511.89) Other specified forms of effusion, except tuberculous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''512''', NULL, + 'Pneumothorax and air leak (512)', 'Pneumothorax and air leak (512)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\(512.0) Spontaneous tension pneumothorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\(512.0) Spontaneous tension pneumothorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''512.0''', NULL, + '(512.0) Spontaneous tension pneumothorax', '(512.0) Spontaneous tension pneumothorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\(512.1) Iatrogenic pneumothorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\(512.1) Iatrogenic pneumothorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''512.1''', NULL, + '(512.1) Iatrogenic pneumothorax', '(512.1) Iatrogenic pneumothorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''512.8''', NULL, + 'Other pneumothorax and air leak (512.8)', 'Other pneumothorax and air leak (512.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\(512.81) Primary spontaneous pneumothorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\(512.81) Primary spontaneous pneumothorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''512.81''', NULL, + '(512.81) Primary spontaneous pneumothorax', '(512.81) Primary spontaneous pneumothorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\(512.82) Secondary spontaneous pneumothorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\(512.82) Secondary spontaneous pneumothorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''512.82''', NULL, + '(512.82) Secondary spontaneous pneumothorax', '(512.82) Secondary spontaneous pneumothorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\(512.84) Other air leak\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\(512.84) Other air leak\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''512.84''', NULL, + '(512.84) Other air leak', '(512.84) Other air leak', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\(512.89) Other pneumothorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of respiratory system (510-519.99)\Pneumothorax and air leak (512)\Other pneumothorax and air leak (512.8)\(512.89) Other pneumothorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''512.89''', NULL, + '(512.89) Other pneumothorax', '(512.89) Other pneumothorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''470'' AND ''478.99''', NULL, + 'Other diseases of the upper respiratory tract (470-478.99)', 'Other diseases of the upper respiratory tract (470-478.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\(470) Deviated nasal septum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\(470) Deviated nasal septum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''470''', NULL, + '(470) Deviated nasal septum', '(470) Deviated nasal septum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\(475) Peritonsillar abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\(475) Peritonsillar abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''475''', NULL, + '(475) Peritonsillar abscess', '(475) Peritonsillar abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''477''', NULL, + 'Allergic rhinitis (477)', 'Allergic rhinitis (477)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\(477.0) Allergic rhinitis due to pollen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\(477.0) Allergic rhinitis due to pollen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''477.0''', NULL, + '(477.0) Allergic rhinitis due to pollen', '(477.0) Allergic rhinitis due to pollen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\(477.1) Allergic rhinitis due to food\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\(477.1) Allergic rhinitis due to food\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''477.1''', NULL, + '(477.1) Allergic rhinitis due to food', '(477.1) Allergic rhinitis due to food', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\(477.2) Allergic rhinitis due to animal (cat) (dog) hair and dander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\(477.2) Allergic rhinitis due to animal (cat) (dog) hair and dander\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''477.2) Allergic rhinitis due to animal (cat) (dog''', NULL, + '(477.2) Allergic rhinitis due to animal (cat) (dog) hair and dander', '(477.2) Allergic rhinitis due to animal (cat) (dog) hair and dander', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\(477.8) Allergic rhinitis due to other allergen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\(477.8) Allergic rhinitis due to other allergen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''477.8''', NULL, + '(477.8) Allergic rhinitis due to other allergen', '(477.8) Allergic rhinitis due to other allergen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\(477.9) Allergic rhinitis, cause unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Allergic rhinitis (477)\(477.9) Allergic rhinitis, cause unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''477.9''', NULL, + '(477.9) Allergic rhinitis, cause unspecified', '(477.9) Allergic rhinitis, cause unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474''', NULL, + 'Chronic disease of tonsils and adenoids (474)', 'Chronic disease of tonsils and adenoids (474)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\(474.2) Adenoid vegetations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\(474.2) Adenoid vegetations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474.2''', NULL, + '(474.2) Adenoid vegetations', '(474.2) Adenoid vegetations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\(474.8) Other chronic disease of tonsils and adenoids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\(474.8) Other chronic disease of tonsils and adenoids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474.8''', NULL, + '(474.8) Other chronic disease of tonsils and adenoids', '(474.8) Other chronic disease of tonsils and adenoids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\(474.9) Unspecified chronic disease of tonsils and adenoids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\(474.9) Unspecified chronic disease of tonsils and adenoids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474.9''', NULL, + '(474.9) Unspecified chronic disease of tonsils and adenoids', '(474.9) Unspecified chronic disease of tonsils and adenoids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Chronic tonsillitis and adenoiditis (474.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Chronic tonsillitis and adenoiditis (474.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474.0''', NULL, + 'Chronic tonsillitis and adenoiditis (474.0)', 'Chronic tonsillitis and adenoiditis (474.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Chronic tonsillitis and adenoiditis (474.0)\(474.00) Chronic tonsillitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Chronic tonsillitis and adenoiditis (474.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Chronic tonsillitis and adenoiditis (474.0)\(474.00) Chronic tonsillitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474.00''', NULL, + '(474.00) Chronic tonsillitis', '(474.00) Chronic tonsillitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Chronic tonsillitis and adenoiditis (474.0)\(474.01) Chronic adenoiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Chronic tonsillitis and adenoiditis (474.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Chronic tonsillitis and adenoiditis (474.0)\(474.01) Chronic adenoiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474.01''', NULL, + '(474.01) Chronic adenoiditis', '(474.01) Chronic adenoiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Chronic tonsillitis and adenoiditis (474.0)\(474.02) Chronic tonsillitis and adenoiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Chronic tonsillitis and adenoiditis (474.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Chronic tonsillitis and adenoiditis (474.0)\(474.02) Chronic tonsillitis and adenoiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474.02''', NULL, + '(474.02) Chronic tonsillitis and adenoiditis', '(474.02) Chronic tonsillitis and adenoiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Hypertrophy of tonsils and adenoids (474.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Hypertrophy of tonsils and adenoids (474.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474.1''', NULL, + 'Hypertrophy of tonsils and adenoids (474.1)', 'Hypertrophy of tonsils and adenoids (474.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Hypertrophy of tonsils and adenoids (474.1)\(474.10) Hypertrophy of tonsil with adenoids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Hypertrophy of tonsils and adenoids (474.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Hypertrophy of tonsils and adenoids (474.1)\(474.10) Hypertrophy of tonsil with adenoids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474.10''', NULL, + '(474.10) Hypertrophy of tonsil with adenoids', '(474.10) Hypertrophy of tonsil with adenoids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Hypertrophy of tonsils and adenoids (474.1)\(474.11) Hypertrophy of tonsils alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Hypertrophy of tonsils and adenoids (474.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Hypertrophy of tonsils and adenoids (474.1)\(474.11) Hypertrophy of tonsils alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474.11''', NULL, + '(474.11) Hypertrophy of tonsils alone', '(474.11) Hypertrophy of tonsils alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Hypertrophy of tonsils and adenoids (474.1)\(474.12) Hypertrophy of adenoids alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Hypertrophy of tonsils and adenoids (474.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic disease of tonsils and adenoids (474)\Hypertrophy of tonsils and adenoids (474.1)\(474.12) Hypertrophy of adenoids alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''474.12''', NULL, + '(474.12) Hypertrophy of adenoids alone', '(474.12) Hypertrophy of adenoids alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic laryngitis and laryngotracheitis (476)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic laryngitis and laryngotracheitis (476)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''476''', NULL, + 'Chronic laryngitis and laryngotracheitis (476)', 'Chronic laryngitis and laryngotracheitis (476)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic laryngitis and laryngotracheitis (476)\(476.0) Chronic laryngitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic laryngitis and laryngotracheitis (476)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic laryngitis and laryngotracheitis (476)\(476.0) Chronic laryngitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''476.0''', NULL, + '(476.0) Chronic laryngitis', '(476.0) Chronic laryngitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic laryngitis and laryngotracheitis (476)\(476.1) Chronic laryngotracheitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic laryngitis and laryngotracheitis (476)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic laryngitis and laryngotracheitis (476)\(476.1) Chronic laryngotracheitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''476.1''', NULL, + '(476.1) Chronic laryngotracheitis', '(476.1) Chronic laryngotracheitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic pharyngitis and nasopharyngitis (472)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic pharyngitis and nasopharyngitis (472)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''472''', NULL, + 'Chronic pharyngitis and nasopharyngitis (472)', 'Chronic pharyngitis and nasopharyngitis (472)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic pharyngitis and nasopharyngitis (472)\(472.0) Chronic rhinitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic pharyngitis and nasopharyngitis (472)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic pharyngitis and nasopharyngitis (472)\(472.0) Chronic rhinitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''472.0''', NULL, + '(472.0) Chronic rhinitis', '(472.0) Chronic rhinitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic pharyngitis and nasopharyngitis (472)\(472.1) Chronic pharyngitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic pharyngitis and nasopharyngitis (472)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic pharyngitis and nasopharyngitis (472)\(472.1) Chronic pharyngitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''472.1''', NULL, + '(472.1) Chronic pharyngitis', '(472.1) Chronic pharyngitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic pharyngitis and nasopharyngitis (472)\(472.2) Chronic nasopharyngitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic pharyngitis and nasopharyngitis (472)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic pharyngitis and nasopharyngitis (472)\(472.2) Chronic nasopharyngitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''472.2''', NULL, + '(472.2) Chronic nasopharyngitis', '(472.2) Chronic nasopharyngitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''473''', NULL, + 'Chronic sinusitis (473)', 'Chronic sinusitis (473)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.0) Chronic maxillary sinusitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.0) Chronic maxillary sinusitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''473.0''', NULL, + '(473.0) Chronic maxillary sinusitis', '(473.0) Chronic maxillary sinusitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.1) Chronic frontal sinusitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.1) Chronic frontal sinusitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''473.1''', NULL, + '(473.1) Chronic frontal sinusitis', '(473.1) Chronic frontal sinusitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.2) Chronic ethmoidal sinusitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.2) Chronic ethmoidal sinusitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''473.2''', NULL, + '(473.2) Chronic ethmoidal sinusitis', '(473.2) Chronic ethmoidal sinusitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.3) Chronic sphenoidal sinusitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.3) Chronic sphenoidal sinusitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''473.3''', NULL, + '(473.3) Chronic sphenoidal sinusitis', '(473.3) Chronic sphenoidal sinusitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.8) Other chronic sinusitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.8) Other chronic sinusitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''473.8''', NULL, + '(473.8) Other chronic sinusitis', '(473.8) Other chronic sinusitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.9) Unspecified sinusitis (chronic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Chronic sinusitis (473)\(473.9) Unspecified sinusitis (chronic)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''473.9) Unspecified sinusitis (chronic''', NULL, + '(473.9) Unspecified sinusitis (chronic)', '(473.9) Unspecified sinusitis (chronic)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''471''', NULL, + 'Nasal polyps (471)', 'Nasal polyps (471)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\(471.0) Polyp of nasal cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\(471.0) Polyp of nasal cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''471.0''', NULL, + '(471.0) Polyp of nasal cavity', '(471.0) Polyp of nasal cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\(471.1) Polypoid sinus degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\(471.1) Polypoid sinus degeneration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''471.1''', NULL, + '(471.1) Polypoid sinus degeneration', '(471.1) Polypoid sinus degeneration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\(471.8) Other polyp of sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\(471.8) Other polyp of sinus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''471.8''', NULL, + '(471.8) Other polyp of sinus', '(471.8) Other polyp of sinus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\(471.9) Unspecified nasal polyp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Nasal polyps (471)\(471.9) Unspecified nasal polyp\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''471.9''', NULL, + '(471.9) Unspecified nasal polyp', '(471.9) Unspecified nasal polyp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478''', NULL, + 'Other diseases of upper respiratory tract (478)', 'Other diseases of upper respiratory tract (478)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.0) Hypertrophy of nasal turbinates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.0) Hypertrophy of nasal turbinates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.0''', NULL, + '(478.0) Hypertrophy of nasal turbinates', '(478.0) Hypertrophy of nasal turbinates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.4) Polyp of vocal cord or larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.4) Polyp of vocal cord or larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.4''', NULL, + '(478.4) Polyp of vocal cord or larynx', '(478.4) Polyp of vocal cord or larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.5) Other diseases of vocal cords\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.5) Other diseases of vocal cords\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.5''', NULL, + '(478.5) Other diseases of vocal cords', '(478.5) Other diseases of vocal cords', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.6) Edema of larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.6) Edema of larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.6''', NULL, + '(478.6) Edema of larynx', '(478.6) Edema of larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.8) Upper respiratory tract hypersensitivity reaction, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.8) Upper respiratory tract hypersensitivity reaction, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.8''', NULL, + '(478.8) Upper respiratory tract hypersensitivity reaction, site unspecified', '(478.8) Upper respiratory tract hypersensitivity reaction, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.9) Other and unspecified diseases of upper respiratory tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\(478.9) Other and unspecified diseases of upper respiratory tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.9''', NULL, + '(478.9) Other and unspecified diseases of upper respiratory tract', '(478.9) Other and unspecified diseases of upper respiratory tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.7''', NULL, + 'Other diseases of larynx, not elsewhere classified (478.7)', 'Other diseases of larynx, not elsewhere classified (478.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\(478.70) Unspecified disease of larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\(478.70) Unspecified disease of larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.70''', NULL, + '(478.70) Unspecified disease of larynx', '(478.70) Unspecified disease of larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\(478.71) Cellulitis and perichondritis of larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\(478.71) Cellulitis and perichondritis of larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.71''', NULL, + '(478.71) Cellulitis and perichondritis of larynx', '(478.71) Cellulitis and perichondritis of larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\(478.74) Stenosis of larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\(478.74) Stenosis of larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.74''', NULL, + '(478.74) Stenosis of larynx', '(478.74) Stenosis of larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\(478.75) Laryngeal spasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\(478.75) Laryngeal spasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.75''', NULL, + '(478.75) Laryngeal spasm', '(478.75) Laryngeal spasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\(478.79) Other diseases of larynx, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of larynx, not elsewhere classified (478.7)\(478.79) Other diseases of larynx, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.79''', NULL, + '(478.79) Other diseases of larynx, not elsewhere classified', '(478.79) Other diseases of larynx, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of nasal cavity and sinuses (478.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of nasal cavity and sinuses (478.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.1''', NULL, + 'Other diseases of nasal cavity and sinuses (478.1)', 'Other diseases of nasal cavity and sinuses (478.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of nasal cavity and sinuses (478.1)\(478.11) Nasal mucositis (ulcerative)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of nasal cavity and sinuses (478.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of nasal cavity and sinuses (478.1)\(478.11) Nasal mucositis (ulcerative)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.11) Nasal mucositis (ulcerative''', NULL, + '(478.11) Nasal mucositis (ulcerative)', '(478.11) Nasal mucositis (ulcerative)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of nasal cavity and sinuses (478.1)\(478.19) Other disease of nasal cavity and sinuses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of nasal cavity and sinuses (478.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of nasal cavity and sinuses (478.1)\(478.19) Other disease of nasal cavity and sinuses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.19''', NULL, + '(478.19) Other disease of nasal cavity and sinuses', '(478.19) Other disease of nasal cavity and sinuses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.2''', NULL, + 'Other diseases of pharynx, not elsewhere classified (478.2)', 'Other diseases of pharynx, not elsewhere classified (478.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.20) Unspecified disease of pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.20) Unspecified disease of pharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.20''', NULL, + '(478.20) Unspecified disease of pharynx', '(478.20) Unspecified disease of pharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.21) Cellulitis of pharynx or nasopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.21) Cellulitis of pharynx or nasopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.21''', NULL, + '(478.21) Cellulitis of pharynx or nasopharynx', '(478.21) Cellulitis of pharynx or nasopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.22) Parapharyngeal abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.22) Parapharyngeal abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.22''', NULL, + '(478.22) Parapharyngeal abscess', '(478.22) Parapharyngeal abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.24) Retropharyngeal abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.24) Retropharyngeal abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.24''', NULL, + '(478.24) Retropharyngeal abscess', '(478.24) Retropharyngeal abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.25) Edema of pharynx or nasopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.25) Edema of pharynx or nasopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.25''', NULL, + '(478.25) Edema of pharynx or nasopharynx', '(478.25) Edema of pharynx or nasopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.26) Cyst of pharynx or nasopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.26) Cyst of pharynx or nasopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.26''', NULL, + '(478.26) Cyst of pharynx or nasopharynx', '(478.26) Cyst of pharynx or nasopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.29) Other diseases of pharynx, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Other diseases of pharynx, not elsewhere classified (478.2)\(478.29) Other diseases of pharynx, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.29''', NULL, + '(478.29) Other diseases of pharynx, not elsewhere classified', '(478.29) Other diseases of pharynx, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.3''', NULL, + 'Paralysis of vocal cords or larynx (478.3)', 'Paralysis of vocal cords or larynx (478.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\(478.30) Paralysis of vocal cords or larynx, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\(478.30) Paralysis of vocal cords or larynx, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.30''', NULL, + '(478.30) Paralysis of vocal cords or larynx, unspecified', '(478.30) Paralysis of vocal cords or larynx, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\(478.31) Unilateral paralysis of vocal cords or larynx, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\(478.31) Unilateral paralysis of vocal cords or larynx, partial\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.31''', NULL, + '(478.31) Unilateral paralysis of vocal cords or larynx, partial', '(478.31) Unilateral paralysis of vocal cords or larynx, partial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\(478.32) Unilateral paralysis of vocal cords or larynx, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\(478.32) Unilateral paralysis of vocal cords or larynx, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.32''', NULL, + '(478.32) Unilateral paralysis of vocal cords or larynx, complete', '(478.32) Unilateral paralysis of vocal cords or larynx, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\(478.33) Bilateral paralysis of vocal cords or larynx, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\(478.33) Bilateral paralysis of vocal cords or larynx, partial\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.33''', NULL, + '(478.33) Bilateral paralysis of vocal cords or larynx, partial', '(478.33) Bilateral paralysis of vocal cords or larynx, partial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\(478.34) Bilateral paralysis of vocal cords or larynx, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Other diseases of the upper respiratory tract (470-478.99)\Other diseases of upper respiratory tract (478)\Paralysis of vocal cords or larynx (478.3)\(478.34) Bilateral paralysis of vocal cords or larynx, complete\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''478.34''', NULL, + '(478.34) Bilateral paralysis of vocal cords or larynx, complete', '(478.34) Bilateral paralysis of vocal cords or larynx, complete', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''500'' AND ''508.99''', NULL, + 'Pneumoconioses and other lung diseases due to external agents (500-508.99)', 'Pneumoconioses and other lung diseases due to external agents (500-508.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(500) Coal workers'' pneumoconiosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(500) Coal workers'' pneumoconiosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''500''', NULL, + '(500) Coal workers'' pneumoconiosis', '(500) Coal workers'' pneumoconiosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(501) Asbestosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(501) Asbestosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''501''', NULL, + '(501) Asbestosis', '(501) Asbestosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(502) Pneumoconiosis due to other silica or silicates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(502) Pneumoconiosis due to other silica or silicates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''502''', NULL, + '(502) Pneumoconiosis due to other silica or silicates', '(502) Pneumoconiosis due to other silica or silicates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(503) Pneumoconiosis due to other inorganic dust\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(503) Pneumoconiosis due to other inorganic dust\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''503''', NULL, + '(503) Pneumoconiosis due to other inorganic dust', '(503) Pneumoconiosis due to other inorganic dust', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(504) Pneumonopathy due to inhalation of other dust\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(504) Pneumonopathy due to inhalation of other dust\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''504''', NULL, + '(504) Pneumonopathy due to inhalation of other dust', '(504) Pneumonopathy due to inhalation of other dust', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(505) Pneumoconiosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\(505) Pneumoconiosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''505''', NULL, + '(505) Pneumoconiosis, unspecified', '(505) Pneumoconiosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Pneumonitis due to solids and liquids (507)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Pneumonitis due to solids and liquids (507)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''507''', NULL, + 'Pneumonitis due to solids and liquids (507)', 'Pneumonitis due to solids and liquids (507)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Pneumonitis due to solids and liquids (507)\(507.0) Pneumonitis due to inhalation of food or vomitus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Pneumonitis due to solids and liquids (507)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Pneumonitis due to solids and liquids (507)\(507.0) Pneumonitis due to inhalation of food or vomitus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''507.0''', NULL, + '(507.0) Pneumonitis due to inhalation of food or vomitus', '(507.0) Pneumonitis due to inhalation of food or vomitus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Pneumonitis due to solids and liquids (507)\(507.1) Pneumonitis due to inhalation of oils and essences\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Pneumonitis due to solids and liquids (507)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Pneumonitis due to solids and liquids (507)\(507.1) Pneumonitis due to inhalation of oils and essences\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''507.1''', NULL, + '(507.1) Pneumonitis due to inhalation of oils and essences', '(507.1) Pneumonitis due to inhalation of oils and essences', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Pneumonitis due to solids and liquids (507)\(507.8) Pneumonitis due to other solids and liquids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Pneumonitis due to solids and liquids (507)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Pneumonitis due to solids and liquids (507)\(507.8) Pneumonitis due to other solids and liquids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''507.8''', NULL, + '(507.8) Pneumonitis due to other solids and liquids', '(507.8) Pneumonitis due to other solids and liquids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''506''', NULL, + 'Respiratory conditions due to chemical fumes and vapors (506)', 'Respiratory conditions due to chemical fumes and vapors (506)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.0) Bronchitis and pneumonitis due to fumes and vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.0) Bronchitis and pneumonitis due to fumes and vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''506.0''', NULL, + '(506.0) Bronchitis and pneumonitis due to fumes and vapors', '(506.0) Bronchitis and pneumonitis due to fumes and vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.1) Acute pulmonary edema due to fumes and vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.1) Acute pulmonary edema due to fumes and vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''506.1''', NULL, + '(506.1) Acute pulmonary edema due to fumes and vapors', '(506.1) Acute pulmonary edema due to fumes and vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.2) Upper respiratory inflammation due to fumes and vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.2) Upper respiratory inflammation due to fumes and vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''506.2''', NULL, + '(506.2) Upper respiratory inflammation due to fumes and vapors', '(506.2) Upper respiratory inflammation due to fumes and vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.3) Other acute and subacute respiratory conditions due to fumes and vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.3) Other acute and subacute respiratory conditions due to fumes and vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''506.3''', NULL, + '(506.3) Other acute and subacute respiratory conditions due to fumes and vapors', '(506.3) Other acute and subacute respiratory conditions due to fumes and vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.4) Chronic respiratory conditions due to fumes and vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.4) Chronic respiratory conditions due to fumes and vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''506.4''', NULL, + '(506.4) Chronic respiratory conditions due to fumes and vapors', '(506.4) Chronic respiratory conditions due to fumes and vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.9) Unspecified respiratory conditions due to fumes and vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to chemical fumes and vapors (506)\(506.9) Unspecified respiratory conditions due to fumes and vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''506.9''', NULL, + '(506.9) Unspecified respiratory conditions due to fumes and vapors', '(506.9) Unspecified respiratory conditions due to fumes and vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''508''', NULL, + 'Respiratory conditions due to other and unspecified external agents (508)', 'Respiratory conditions due to other and unspecified external agents (508)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\(508.0) Acute pulmonary manifestations due to radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\(508.0) Acute pulmonary manifestations due to radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''508.0''', NULL, + '(508.0) Acute pulmonary manifestations due to radiation', '(508.0) Acute pulmonary manifestations due to radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\(508.1) Chronic and other pulmonary manifestations due to radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\(508.1) Chronic and other pulmonary manifestations due to radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''508.1''', NULL, + '(508.1) Chronic and other pulmonary manifestations due to radiation', '(508.1) Chronic and other pulmonary manifestations due to radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\(508.8) Respiratory conditions due to other specified external agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\(508.8) Respiratory conditions due to other specified external agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''508.8''', NULL, + '(508.8) Respiratory conditions due to other specified external agents', '(508.8) Respiratory conditions due to other specified external agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\(508.9) Respiratory conditions due to unspecified external agent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumoconioses and other lung diseases due to external agents (500-508.99)\Respiratory conditions due to other and unspecified external agents (508)\(508.9) Respiratory conditions due to unspecified external agent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''508.9''', NULL, + '(508.9) Respiratory conditions due to unspecified external agent', '(508.9) Respiratory conditions due to unspecified external agent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''480'' AND ''488.99''', NULL, + 'Pneumonia and influenza (480-488.99)', 'Pneumonia and influenza (480-488.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\(481) Pneumococcal pneumonia [Streptococcus pneumoniae pneumonia]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\(481) Pneumococcal pneumonia [Streptococcus pneumoniae pneumonia]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''481''', NULL, + '(481) Pneumococcal pneumonia [Streptococcus pneumoniae pneumonia]', '(481) Pneumococcal pneumonia [Streptococcus pneumoniae pneumonia]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\(485) Bronchopneumonia, organism unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\(485) Bronchopneumonia, organism unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''485''', NULL, + '(485) Bronchopneumonia, organism unspecified', '(485) Bronchopneumonia, organism unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\(486) Pneumonia, organism unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\(486) Pneumonia, organism unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''486''', NULL, + '(486) Pneumonia, organism unspecified', '(486) Pneumonia, organism unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza (487)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza (487)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''487''', NULL, + 'Influenza (487)', 'Influenza (487)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza (487)\(487.0) Influenza with pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza (487)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza (487)\(487.0) Influenza with pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''487.0''', NULL, + '(487.0) Influenza with pneumonia', '(487.0) Influenza with pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza (487)\(487.1) Influenza with other respiratory manifestations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza (487)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza (487)\(487.1) Influenza with other respiratory manifestations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''487.1''', NULL, + '(487.1) Influenza with other respiratory manifestations', '(487.1) Influenza with other respiratory manifestations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza (487)\(487.8) Influenza with other manifestations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza (487)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza (487)\(487.8) Influenza with other manifestations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''487.8''', NULL, + '(487.8) Influenza with other manifestations', '(487.8) Influenza with other manifestations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''488''', NULL, + 'Influenza due to certain identified influenza viruses (488)', 'Influenza due to certain identified influenza viruses (488)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified 2009 H1N1 influenza virus (488.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified 2009 H1N1 influenza virus (488.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''488.1''', NULL, + 'Influenza due to identified 2009 H1N1 influenza virus (488.1)', 'Influenza due to identified 2009 H1N1 influenza virus (488.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified 2009 H1N1 influenza virus (488.1)\(488.11) Influenza due to identified 2009 H1N1 influenza virus with pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified 2009 H1N1 influenza virus (488.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified 2009 H1N1 influenza virus (488.1)\(488.11) Influenza due to identified 2009 H1N1 influenza virus with pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''488.11''', NULL, + '(488.11) Influenza due to identified 2009 H1N1 influenza virus with pneumonia', '(488.11) Influenza due to identified 2009 H1N1 influenza virus with pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified 2009 H1N1 influenza virus (488.1)\(488.12) Influenza due to identified 2009 H1N1 influenza virus with other respiratory manifestations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified 2009 H1N1 influenza virus (488.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified 2009 H1N1 influenza virus (488.1)\(488.12) Influenza due to identified 2009 H1N1 influenza virus with other respiratory manifestations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''488.12''', NULL, + '(488.12) Influenza due to identified 2009 H1N1 influenza virus with other respiratory manifestations', '(488.12) Influenza due to identified 2009 H1N1 influenza virus with other respiratory manifestations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified avian influenza virus (488.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified avian influenza virus (488.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''488.0''', NULL, + 'Influenza due to identified avian influenza virus (488.0)', 'Influenza due to identified avian influenza virus (488.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified avian influenza virus (488.0)\(488.02) Influenza due to identified avian influenza virus with other respiratory manifestations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified avian influenza virus (488.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to identified avian influenza virus (488.0)\(488.02) Influenza due to identified avian influenza virus with other respiratory manifestations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''488.02''', NULL, + '(488.02) Influenza due to identified avian influenza virus with other respiratory manifestations', '(488.02) Influenza due to identified avian influenza virus with other respiratory manifestations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to novel influenza A (488.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to novel influenza A (488.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''488.8''', NULL, + 'Influenza due to novel influenza A (488.8)', 'Influenza due to novel influenza A (488.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to novel influenza A (488.8)\(488.82) Influenza due to identified novel influenza A virus with other respiratory manifestations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to novel influenza A (488.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to novel influenza A (488.8)\(488.82) Influenza due to identified novel influenza A virus with other respiratory manifestations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''488.82''', NULL, + '(488.82) Influenza due to identified novel influenza A virus with other respiratory manifestations', '(488.82) Influenza due to identified novel influenza A virus with other respiratory manifestations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to novel influenza A (488.8)\(488.89) Influenza due to identified novel influenza A virus with other manifestations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to novel influenza A (488.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Influenza due to certain identified influenza viruses (488)\Influenza due to novel influenza A (488.8)\(488.89) Influenza due to identified novel influenza A virus with other manifestations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''488.89''', NULL, + '(488.89) Influenza due to identified novel influenza A virus with other manifestations', '(488.89) Influenza due to identified novel influenza A virus with other manifestations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482''', NULL, + 'Other bacterial pneumonia (482)', 'Other bacterial pneumonia (482)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\(482.0) Pneumonia due to Klebsiella pneumoniae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\(482.0) Pneumonia due to Klebsiella pneumoniae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.0''', NULL, + '(482.0) Pneumonia due to Klebsiella pneumoniae', '(482.0) Pneumonia due to Klebsiella pneumoniae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\(482.1) Pneumonia due to Pseudomonas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\(482.1) Pneumonia due to Pseudomonas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.1''', NULL, + '(482.1) Pneumonia due to Pseudomonas', '(482.1) Pneumonia due to Pseudomonas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\(482.2) Pneumonia due to Hemophilus influenzae [H. influenzae]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\(482.2) Pneumonia due to Hemophilus influenzae [H. influenzae]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.2''', NULL, + '(482.2) Pneumonia due to Hemophilus influenzae [H. influenzae]', '(482.2) Pneumonia due to Hemophilus influenzae [H. influenzae]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\(482.9) Bacterial pneumonia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\(482.9) Bacterial pneumonia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.9''', NULL, + '(482.9) Bacterial pneumonia, unspecified', '(482.9) Bacterial pneumonia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.8''', NULL, + 'Pneumonia due to other specified bacteria (482.8)', 'Pneumonia due to other specified bacteria (482.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\(482.81) Pneumonia due to anaerobes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\(482.81) Pneumonia due to anaerobes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.81''', NULL, + '(482.81) Pneumonia due to anaerobes', '(482.81) Pneumonia due to anaerobes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\(482.82) Pneumonia due to escherichia coli [E. coli]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\(482.82) Pneumonia due to escherichia coli [E. coli]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.82''', NULL, + '(482.82) Pneumonia due to escherichia coli [E. coli]', '(482.82) Pneumonia due to escherichia coli [E. coli]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\(482.83) Pneumonia due to other gram-negative bacteria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\(482.83) Pneumonia due to other gram-negative bacteria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.83''', NULL, + '(482.83) Pneumonia due to other gram-negative bacteria', '(482.83) Pneumonia due to other gram-negative bacteria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\(482.84) Pneumonia due to Legionnaires'' disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\(482.84) Pneumonia due to Legionnaires'' disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.84''', NULL, + '(482.84) Pneumonia due to Legionnaires'' disease', '(482.84) Pneumonia due to Legionnaires'' disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\(482.89) Pneumonia due to other specified bacteria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to other specified bacteria (482.8)\(482.89) Pneumonia due to other specified bacteria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.89''', NULL, + '(482.89) Pneumonia due to other specified bacteria', '(482.89) Pneumonia due to other specified bacteria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.4''', NULL, + 'Pneumonia due to Staphylococcus (482.4)', 'Pneumonia due to Staphylococcus (482.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\(482.40) Pneumonia due to Staphylococcus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\(482.40) Pneumonia due to Staphylococcus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.40''', NULL, + '(482.40) Pneumonia due to Staphylococcus, unspecified', '(482.40) Pneumonia due to Staphylococcus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\(482.41) Methicillin susceptible pneumonia due to Staphylococcus aureus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\(482.41) Methicillin susceptible pneumonia due to Staphylococcus aureus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.41''', NULL, + '(482.41) Methicillin susceptible pneumonia due to Staphylococcus aureus', '(482.41) Methicillin susceptible pneumonia due to Staphylococcus aureus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\(482.42) Methicillin resistant pneumonia due to Staphylococcus aureus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\(482.42) Methicillin resistant pneumonia due to Staphylococcus aureus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.42''', NULL, + '(482.42) Methicillin resistant pneumonia due to Staphylococcus aureus', '(482.42) Methicillin resistant pneumonia due to Staphylococcus aureus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\(482.49) Other Staphylococcus pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Staphylococcus (482.4)\(482.49) Other Staphylococcus pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.49''', NULL, + '(482.49) Other Staphylococcus pneumonia', '(482.49) Other Staphylococcus pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.3''', NULL, + 'Pneumonia due to Streptococcus (482.3)', 'Pneumonia due to Streptococcus (482.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\(482.30) Pneumonia due to Streptococcus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\(482.30) Pneumonia due to Streptococcus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.30''', NULL, + '(482.30) Pneumonia due to Streptococcus, unspecified', '(482.30) Pneumonia due to Streptococcus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\(482.31) Pneumonia due to Streptococcus, group A\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\(482.31) Pneumonia due to Streptococcus, group A\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.31''', NULL, + '(482.31) Pneumonia due to Streptococcus, group A', '(482.31) Pneumonia due to Streptococcus, group A', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\(482.32) Pneumonia due to Streptococcus, group B\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\(482.32) Pneumonia due to Streptococcus, group B\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.32''', NULL, + '(482.32) Pneumonia due to Streptococcus, group B', '(482.32) Pneumonia due to Streptococcus, group B', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\(482.39) Pneumonia due to other Streptococcus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Other bacterial pneumonia (482)\Pneumonia due to Streptococcus (482.3)\(482.39) Pneumonia due to other Streptococcus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''482.39''', NULL, + '(482.39) Pneumonia due to other Streptococcus', '(482.39) Pneumonia due to other Streptococcus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia due to other specified organism (483)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia due to other specified organism (483)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''483''', NULL, + 'Pneumonia due to other specified organism (483)', 'Pneumonia due to other specified organism (483)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia due to other specified organism (483)\(483.0) Pneumonia due to mycoplasma pneumoniae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia due to other specified organism (483)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia due to other specified organism (483)\(483.0) Pneumonia due to mycoplasma pneumoniae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''483.0''', NULL, + '(483.0) Pneumonia due to mycoplasma pneumoniae', '(483.0) Pneumonia due to mycoplasma pneumoniae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia due to other specified organism (483)\(483.1) Pneumonia due to chlamydia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia due to other specified organism (483)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia due to other specified organism (483)\(483.1) Pneumonia due to chlamydia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''483.1''', NULL, + '(483.1) Pneumonia due to chlamydia', '(483.1) Pneumonia due to chlamydia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia due to other specified organism (483)\(483.8) Pneumonia due to other specified organism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia due to other specified organism (483)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia due to other specified organism (483)\(483.8) Pneumonia due to other specified organism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''483.8''', NULL, + '(483.8) Pneumonia due to other specified organism', '(483.8) Pneumonia due to other specified organism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''484''', NULL, + 'Pneumonia in infectious diseases classified elsewhere (484)', 'Pneumonia in infectious diseases classified elsewhere (484)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.1) Pneumonia in cytomegalic inclusion disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.1) Pneumonia in cytomegalic inclusion disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''484.1''', NULL, + '(484.1) Pneumonia in cytomegalic inclusion disease', '(484.1) Pneumonia in cytomegalic inclusion disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.3) Pneumonia in whooping cough\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.3) Pneumonia in whooping cough\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''484.3''', NULL, + '(484.3) Pneumonia in whooping cough', '(484.3) Pneumonia in whooping cough', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.5) Pneumonia in anthrax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.5) Pneumonia in anthrax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''484.5''', NULL, + '(484.5) Pneumonia in anthrax', '(484.5) Pneumonia in anthrax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.6) Pneumonia in aspergillosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.6) Pneumonia in aspergillosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''484.6''', NULL, + '(484.6) Pneumonia in aspergillosis', '(484.6) Pneumonia in aspergillosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.7) Pneumonia in other systemic mycoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.7) Pneumonia in other systemic mycoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''484.7''', NULL, + '(484.7) Pneumonia in other systemic mycoses', '(484.7) Pneumonia in other systemic mycoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.8) Pneumonia in other infectious diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Pneumonia in infectious diseases classified elsewhere (484)\(484.8) Pneumonia in other infectious diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''484.8''', NULL, + '(484.8) Pneumonia in other infectious diseases classified elsewhere', '(484.8) Pneumonia in other infectious diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''480''', NULL, + 'Viral pneumonia (480)', 'Viral pneumonia (480)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.0) Pneumonia due to adenovirus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.0) Pneumonia due to adenovirus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''480.0''', NULL, + '(480.0) Pneumonia due to adenovirus', '(480.0) Pneumonia due to adenovirus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.1) Pneumonia due to respiratory syncytial virus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.1) Pneumonia due to respiratory syncytial virus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''480.1''', NULL, + '(480.1) Pneumonia due to respiratory syncytial virus', '(480.1) Pneumonia due to respiratory syncytial virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.2) Pneumonia due to parainfluenza virus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.2) Pneumonia due to parainfluenza virus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''480.2''', NULL, + '(480.2) Pneumonia due to parainfluenza virus', '(480.2) Pneumonia due to parainfluenza virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.3) Pneumonia due to SARS-associated coronavirus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.3) Pneumonia due to SARS-associated coronavirus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''480.3''', NULL, + '(480.3) Pneumonia due to SARS-associated coronavirus', '(480.3) Pneumonia due to SARS-associated coronavirus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.8) Pneumonia due to other virus not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.8) Pneumonia due to other virus not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''480.8''', NULL, + '(480.8) Pneumonia due to other virus not elsewhere classified', '(480.8) Pneumonia due to other virus not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.9) Viral pneumonia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the respiratory system (460-519.99)\Pneumonia and influenza (480-488.99)\Viral pneumonia (480)\(480.9) Viral pneumonia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''480.9''', NULL, + '(480.9) Viral pneumonia, unspecified', '(480.9) Viral pneumonia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''680'' AND ''709.99''', NULL, + 'Diseases of the skin and subcutaneous tissue (680-709.99)', 'Diseases of the skin and subcutaneous tissue (680-709.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''680'' AND ''686.99''', NULL, + 'Infections of skin and subcutaneous tissue (680-686.99)', 'Infections of skin and subcutaneous tissue (680-686.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\(683) Acute lymphadenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\(683) Acute lymphadenitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''683''', NULL, + '(683) Acute lymphadenitis', '(683) Acute lymphadenitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\(684) Impetigo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\(684) Impetigo\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''684''', NULL, + '(684) Impetigo', '(684) Impetigo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''680''', NULL, + 'Carbuncle and furuncle (680)', 'Carbuncle and furuncle (680)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.0) Carbuncle and furuncle of face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.0) Carbuncle and furuncle of face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''680.0''', NULL, + '(680.0) Carbuncle and furuncle of face', '(680.0) Carbuncle and furuncle of face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.1) Carbuncle and furuncle of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.1) Carbuncle and furuncle of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''680.1''', NULL, + '(680.1) Carbuncle and furuncle of neck', '(680.1) Carbuncle and furuncle of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.2) Carbuncle and furuncle of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.2) Carbuncle and furuncle of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''680.2''', NULL, + '(680.2) Carbuncle and furuncle of trunk', '(680.2) Carbuncle and furuncle of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.3) Carbuncle and furuncle of upper arm and forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.3) Carbuncle and furuncle of upper arm and forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''680.3''', NULL, + '(680.3) Carbuncle and furuncle of upper arm and forearm', '(680.3) Carbuncle and furuncle of upper arm and forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.4) Carbuncle and furuncle of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.4) Carbuncle and furuncle of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''680.4''', NULL, + '(680.4) Carbuncle and furuncle of hand', '(680.4) Carbuncle and furuncle of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.5) Carbuncle and furuncle of buttock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.5) Carbuncle and furuncle of buttock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''680.5''', NULL, + '(680.5) Carbuncle and furuncle of buttock', '(680.5) Carbuncle and furuncle of buttock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.6) Carbuncle and furuncle of leg, except foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.6) Carbuncle and furuncle of leg, except foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''680.6''', NULL, + '(680.6) Carbuncle and furuncle of leg, except foot', '(680.6) Carbuncle and furuncle of leg, except foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.7) Carbuncle and furuncle of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.7) Carbuncle and furuncle of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''680.7''', NULL, + '(680.7) Carbuncle and furuncle of foot', '(680.7) Carbuncle and furuncle of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.8) Carbuncle and furuncle of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.8) Carbuncle and furuncle of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''680.8''', NULL, + '(680.8) Carbuncle and furuncle of other specified sites', '(680.8) Carbuncle and furuncle of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.9) Carbuncle and furuncle of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Carbuncle and furuncle (680)\(680.9) Carbuncle and furuncle of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''680.9''', NULL, + '(680.9) Carbuncle and furuncle of unspecified site', '(680.9) Carbuncle and furuncle of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''681''', NULL, + 'Cellulitis and abscess of finger and toe (681)', 'Cellulitis and abscess of finger and toe (681)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\(681.9) Cellulitis and abscess of unspecified digit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\(681.9) Cellulitis and abscess of unspecified digit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''681.9''', NULL, + '(681.9) Cellulitis and abscess of unspecified digit', '(681.9) Cellulitis and abscess of unspecified digit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of finger (681.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of finger (681.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''681.0''', NULL, + 'Cellulitis and abscess of finger (681.0)', 'Cellulitis and abscess of finger (681.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of finger (681.0)\(681.00) Cellulitis and abscess of finger, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of finger (681.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of finger (681.0)\(681.00) Cellulitis and abscess of finger, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''681.00''', NULL, + '(681.00) Cellulitis and abscess of finger, unspecified', '(681.00) Cellulitis and abscess of finger, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of finger (681.0)\(681.01) Felon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of finger (681.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of finger (681.0)\(681.01) Felon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''681.01''', NULL, + '(681.01) Felon', '(681.01) Felon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of finger (681.0)\(681.02) Onychia and paronychia of finger\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of finger (681.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of finger (681.0)\(681.02) Onychia and paronychia of finger\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''681.02''', NULL, + '(681.02) Onychia and paronychia of finger', '(681.02) Onychia and paronychia of finger', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of toe (681.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of toe (681.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''681.1''', NULL, + 'Cellulitis and abscess of toe (681.1)', 'Cellulitis and abscess of toe (681.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of toe (681.1)\(681.10) Cellulitis and abscess of toe, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of toe (681.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of toe (681.1)\(681.10) Cellulitis and abscess of toe, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''681.10''', NULL, + '(681.10) Cellulitis and abscess of toe, unspecified', '(681.10) Cellulitis and abscess of toe, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of toe (681.1)\(681.11) Onychia and paronychia of toe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of toe (681.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Cellulitis and abscess of finger and toe (681)\Cellulitis and abscess of toe (681.1)\(681.11) Onychia and paronychia of toe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''681.11''', NULL, + '(681.11) Onychia and paronychia of toe', '(681.11) Onychia and paronychia of toe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''682''', NULL, + 'Other cellulitis and abscess (682)', 'Other cellulitis and abscess (682)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.0) Cellulitis and abscess of face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.0) Cellulitis and abscess of face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''682.0''', NULL, + '(682.0) Cellulitis and abscess of face', '(682.0) Cellulitis and abscess of face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.1) Cellulitis and abscess of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.1) Cellulitis and abscess of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''682.1''', NULL, + '(682.1) Cellulitis and abscess of neck', '(682.1) Cellulitis and abscess of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.2) Cellulitis and abscess of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.2) Cellulitis and abscess of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''682.2''', NULL, + '(682.2) Cellulitis and abscess of trunk', '(682.2) Cellulitis and abscess of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.3) Cellulitis and abscess of upper arm and forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.3) Cellulitis and abscess of upper arm and forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''682.3''', NULL, + '(682.3) Cellulitis and abscess of upper arm and forearm', '(682.3) Cellulitis and abscess of upper arm and forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.4) Cellulitis and abscess of hand, except fingers and thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.4) Cellulitis and abscess of hand, except fingers and thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''682.4''', NULL, + '(682.4) Cellulitis and abscess of hand, except fingers and thumb', '(682.4) Cellulitis and abscess of hand, except fingers and thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.5) Cellulitis and abscess of buttock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.5) Cellulitis and abscess of buttock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''682.5''', NULL, + '(682.5) Cellulitis and abscess of buttock', '(682.5) Cellulitis and abscess of buttock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.6) Cellulitis and abscess of leg, except foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.6) Cellulitis and abscess of leg, except foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''682.6''', NULL, + '(682.6) Cellulitis and abscess of leg, except foot', '(682.6) Cellulitis and abscess of leg, except foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.7) Cellulitis and abscess of foot, except toes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.7) Cellulitis and abscess of foot, except toes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''682.7''', NULL, + '(682.7) Cellulitis and abscess of foot, except toes', '(682.7) Cellulitis and abscess of foot, except toes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.8) Cellulitis and abscess of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.8) Cellulitis and abscess of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''682.8''', NULL, + '(682.8) Cellulitis and abscess of other specified sites', '(682.8) Cellulitis and abscess of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.9) Cellulitis and abscess of unspecified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other cellulitis and abscess (682)\(682.9) Cellulitis and abscess of unspecified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''682.9''', NULL, + '(682.9) Cellulitis and abscess of unspecified sites', '(682.9) Cellulitis and abscess of unspecified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''686''', NULL, + 'Other local infections of skin and subcutaneous tissue (686)', 'Other local infections of skin and subcutaneous tissue (686)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\(686.1) Pyogenic granuloma of skin and subcutaneous tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\(686.1) Pyogenic granuloma of skin and subcutaneous tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''686.1''', NULL, + '(686.1) Pyogenic granuloma of skin and subcutaneous tissue', '(686.1) Pyogenic granuloma of skin and subcutaneous tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\(686.8) Other specified local infections of skin and subcutaneous tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\(686.8) Other specified local infections of skin and subcutaneous tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''686.8''', NULL, + '(686.8) Other specified local infections of skin and subcutaneous tissue', '(686.8) Other specified local infections of skin and subcutaneous tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\(686.9) Unspecified local infection of skin and subcutaneous tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\(686.9) Unspecified local infection of skin and subcutaneous tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''686.9''', NULL, + '(686.9) Unspecified local infection of skin and subcutaneous tissue', '(686.9) Unspecified local infection of skin and subcutaneous tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\Pyoderma (686.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\Pyoderma (686.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''686.0''', NULL, + 'Pyoderma (686.0)', 'Pyoderma (686.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\Pyoderma (686.0)\(686.00) Pyoderma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\Pyoderma (686.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\Pyoderma (686.0)\(686.00) Pyoderma, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''686.00''', NULL, + '(686.00) Pyoderma, unspecified', '(686.00) Pyoderma, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\Pyoderma (686.0)\(686.01) Pyoderma gangrenosum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\Pyoderma (686.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\Pyoderma (686.0)\(686.01) Pyoderma gangrenosum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''686.01''', NULL, + '(686.01) Pyoderma gangrenosum', '(686.01) Pyoderma gangrenosum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\Pyoderma (686.0)\(686.09) Other pyoderma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\Pyoderma (686.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Other local infections of skin and subcutaneous tissue (686)\Pyoderma (686.0)\(686.09) Other pyoderma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''686.09''', NULL, + '(686.09) Other pyoderma', '(686.09) Other pyoderma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Pilonidal cyst (685)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Pilonidal cyst (685)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''685''', NULL, + 'Pilonidal cyst (685)', 'Pilonidal cyst (685)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Pilonidal cyst (685)\(685.0) Pilonidal cyst with abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Pilonidal cyst (685)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Pilonidal cyst (685)\(685.0) Pilonidal cyst with abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''685.0''', NULL, + '(685.0) Pilonidal cyst with abscess', '(685.0) Pilonidal cyst with abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Pilonidal cyst (685)\(685.1) Pilonidal cyst without mention of abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Pilonidal cyst (685)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Infections of skin and subcutaneous tissue (680-686.99)\Pilonidal cyst (685)\(685.1) Pilonidal cyst without mention of abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''685.1''', NULL, + '(685.1) Pilonidal cyst without mention of abscess', '(685.1) Pilonidal cyst without mention of abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''700'' AND ''709.99''', NULL, + 'Other diseases of skin and subcutaneous tissue (700-709.99)', 'Other diseases of skin and subcutaneous tissue (700-709.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\(700) Corns and callosities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\(700) Corns and callosities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''700''', NULL, + '(700) Corns and callosities', '(700) Corns and callosities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707''', NULL, + 'Chronic ulcer of skin (707)', 'Chronic ulcer of skin (707)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\(707.8) Chronic ulcer of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\(707.8) Chronic ulcer of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.8''', NULL, + '(707.8) Chronic ulcer of other specified sites', '(707.8) Chronic ulcer of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\(707.9) Chronic ulcer of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\(707.9) Chronic ulcer of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.9''', NULL, + '(707.9) Chronic ulcer of unspecified site', '(707.9) Chronic ulcer of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.0''', NULL, + 'Pressure ulcer (707.0)', 'Pressure ulcer (707.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.00) Pressure ulcer, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.00) Pressure ulcer, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.00''', NULL, + '(707.00) Pressure ulcer, unspecified site', '(707.00) Pressure ulcer, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.01) Pressure ulcer, elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.01) Pressure ulcer, elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.01''', NULL, + '(707.01) Pressure ulcer, elbow', '(707.01) Pressure ulcer, elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.02) Pressure ulcer, upper back\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.02) Pressure ulcer, upper back\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.02''', NULL, + '(707.02) Pressure ulcer, upper back', '(707.02) Pressure ulcer, upper back', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.03) Pressure ulcer, lower back\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.03) Pressure ulcer, lower back\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.03''', NULL, + '(707.03) Pressure ulcer, lower back', '(707.03) Pressure ulcer, lower back', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.04) Pressure ulcer, hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.04) Pressure ulcer, hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.04''', NULL, + '(707.04) Pressure ulcer, hip', '(707.04) Pressure ulcer, hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.05) Pressure ulcer, buttock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.05) Pressure ulcer, buttock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.05''', NULL, + '(707.05) Pressure ulcer, buttock', '(707.05) Pressure ulcer, buttock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.06) Pressure ulcer, ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.06) Pressure ulcer, ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.06''', NULL, + '(707.06) Pressure ulcer, ankle', '(707.06) Pressure ulcer, ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.07) Pressure ulcer, heel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.07) Pressure ulcer, heel\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.07''', NULL, + '(707.07) Pressure ulcer, heel', '(707.07) Pressure ulcer, heel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.09) Pressure ulcer, other site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer (707.0)\(707.09) Pressure ulcer, other site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.09''', NULL, + '(707.09) Pressure ulcer, other site', '(707.09) Pressure ulcer, other site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.2''', NULL, + 'Pressure ulcer stages (707.2)', 'Pressure ulcer stages (707.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.20) Pressure ulcer, unspecified stage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.20) Pressure ulcer, unspecified stage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.20''', NULL, + '(707.20) Pressure ulcer, unspecified stage', '(707.20) Pressure ulcer, unspecified stage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.21) Pressure ulcer, stage I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.21) Pressure ulcer, stage I\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.21''', NULL, + '(707.21) Pressure ulcer, stage I', '(707.21) Pressure ulcer, stage I', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.22) Pressure ulcer, stage II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.22) Pressure ulcer, stage II\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.22''', NULL, + '(707.22) Pressure ulcer, stage II', '(707.22) Pressure ulcer, stage II', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.23) Pressure ulcer, stage III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.23) Pressure ulcer, stage III\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.23''', NULL, + '(707.23) Pressure ulcer, stage III', '(707.23) Pressure ulcer, stage III', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.24) Pressure ulcer, stage IV\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.24) Pressure ulcer, stage IV\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.24''', NULL, + '(707.24) Pressure ulcer, stage IV', '(707.24) Pressure ulcer, stage IV', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.25) Pressure ulcer, unstageable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Pressure ulcer stages (707.2)\(707.25) Pressure ulcer, unstageable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.25''', NULL, + '(707.25) Pressure ulcer, unstageable', '(707.25) Pressure ulcer, unstageable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.1''', NULL, + 'Ulcer of lower limbs, except pressure ulcer (707.1)', 'Ulcer of lower limbs, except pressure ulcer (707.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.10) Ulcer of lower limb, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.10) Ulcer of lower limb, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.10''', NULL, + '(707.10) Ulcer of lower limb, unspecified', '(707.10) Ulcer of lower limb, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.11) Ulcer of thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.11) Ulcer of thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.11''', NULL, + '(707.11) Ulcer of thigh', '(707.11) Ulcer of thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.12) Ulcer of calf\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.12) Ulcer of calf\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.12''', NULL, + '(707.12) Ulcer of calf', '(707.12) Ulcer of calf', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.13) Ulcer of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.13) Ulcer of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.13''', NULL, + '(707.13) Ulcer of ankle', '(707.13) Ulcer of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.14) Ulcer of heel and midfoot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.14) Ulcer of heel and midfoot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.14''', NULL, + '(707.14) Ulcer of heel and midfoot', '(707.14) Ulcer of heel and midfoot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.15) Ulcer of other part of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.15) Ulcer of other part of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.15''', NULL, + '(707.15) Ulcer of other part of foot', '(707.15) Ulcer of other part of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.19) Ulcer of other part of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Chronic ulcer of skin (707)\Ulcer of lower limbs, except pressure ulcer (707.1)\(707.19) Ulcer of other part of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''707.19''', NULL, + '(707.19) Ulcer of other part of lower limb', '(707.19) Ulcer of other part of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704''', NULL, + 'Diseases of hair and hair follicles (704)', 'Diseases of hair and hair follicles (704)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\(704.1) Hirsutism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\(704.1) Hirsutism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.1''', NULL, + '(704.1) Hirsutism', '(704.1) Hirsutism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\(704.2) Abnormalities of the hair\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\(704.2) Abnormalities of the hair\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.2''', NULL, + '(704.2) Abnormalities of the hair', '(704.2) Abnormalities of the hair', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\(704.3) Variations in hair color\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\(704.3) Variations in hair color\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.3''', NULL, + '(704.3) Variations in hair color', '(704.3) Variations in hair color', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\(704.8) Other specified diseases of hair and hair follicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\(704.8) Other specified diseases of hair and hair follicles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.8''', NULL, + '(704.8) Other specified diseases of hair and hair follicles', '(704.8) Other specified diseases of hair and hair follicles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\(704.9) Unspecified disease of hair and hair follicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\(704.9) Unspecified disease of hair and hair follicles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.9''', NULL, + '(704.9) Unspecified disease of hair and hair follicles', '(704.9) Unspecified disease of hair and hair follicles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.0''', NULL, + 'Alopecia (704.0)', 'Alopecia (704.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\(704.00) Alopecia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\(704.00) Alopecia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.00''', NULL, + '(704.00) Alopecia, unspecified', '(704.00) Alopecia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\(704.01) Alopecia areata\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\(704.01) Alopecia areata\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.01''', NULL, + '(704.01) Alopecia areata', '(704.01) Alopecia areata', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\(704.02) Telogen effluvium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\(704.02) Telogen effluvium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.02''', NULL, + '(704.02) Telogen effluvium', '(704.02) Telogen effluvium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\(704.09) Other alopecia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Alopecia (704.0)\(704.09) Other alopecia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.09''', NULL, + '(704.09) Other alopecia', '(704.09) Other alopecia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Pilar and trichilemmal cysts (704.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Pilar and trichilemmal cysts (704.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.4''', NULL, + 'Pilar and trichilemmal cysts (704.4)', 'Pilar and trichilemmal cysts (704.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Pilar and trichilemmal cysts (704.4)\(704.41) Pilar cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Pilar and trichilemmal cysts (704.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Pilar and trichilemmal cysts (704.4)\(704.41) Pilar cyst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.41''', NULL, + '(704.41) Pilar cyst', '(704.41) Pilar cyst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Pilar and trichilemmal cysts (704.4)\(704.42) Trichilemmal cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Pilar and trichilemmal cysts (704.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of hair and hair follicles (704)\Pilar and trichilemmal cysts (704.4)\(704.42) Trichilemmal cyst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''704.42''', NULL, + '(704.42) Trichilemmal cyst', '(704.42) Trichilemmal cyst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of nail (703)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of nail (703)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''703''', NULL, + 'Diseases of nail (703)', 'Diseases of nail (703)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of nail (703)\(703.0) Ingrowing nail\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of nail (703)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of nail (703)\(703.0) Ingrowing nail\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''703.0''', NULL, + '(703.0) Ingrowing nail', '(703.0) Ingrowing nail', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of nail (703)\(703.8) Other specified diseases of nail\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of nail (703)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of nail (703)\(703.8) Other specified diseases of nail\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''703.8''', NULL, + '(703.8) Other specified diseases of nail', '(703.8) Other specified diseases of nail', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of nail (703)\(703.9) Unspecified disease of nail\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of nail (703)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of nail (703)\(703.9) Unspecified disease of nail\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''703.9''', NULL, + '(703.9) Unspecified disease of nail', '(703.9) Unspecified disease of nail', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''706''', NULL, + 'Diseases of sebaceous glands (706)', 'Diseases of sebaceous glands (706)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.0) Acne varioliformis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.0) Acne varioliformis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''706.0''', NULL, + '(706.0) Acne varioliformis', '(706.0) Acne varioliformis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.1) Other acne\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.1) Other acne\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''706.1''', NULL, + '(706.1) Other acne', '(706.1) Other acne', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.2) Sebaceous cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.2) Sebaceous cyst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''706.2''', NULL, + '(706.2) Sebaceous cyst', '(706.2) Sebaceous cyst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.3) Seborrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.3) Seborrhea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''706.3''', NULL, + '(706.3) Seborrhea', '(706.3) Seborrhea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.8) Other specified diseases of sebaceous glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.8) Other specified diseases of sebaceous glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''706.8''', NULL, + '(706.8) Other specified diseases of sebaceous glands', '(706.8) Other specified diseases of sebaceous glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.9) Unspecified disease of sebaceous glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Diseases of sebaceous glands (706)\(706.9) Unspecified disease of sebaceous glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''706.9''', NULL, + '(706.9) Unspecified disease of sebaceous glands', '(706.9) Unspecified disease of sebaceous glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705''', NULL, + 'Disorders of sweat glands (705)', 'Disorders of sweat glands (705)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\(705.0) Anhidrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\(705.0) Anhidrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705.0''', NULL, + '(705.0) Anhidrosis', '(705.0) Anhidrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\(705.1) Prickly heat\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\(705.1) Prickly heat\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705.1''', NULL, + '(705.1) Prickly heat', '(705.1) Prickly heat', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\(705.9) Unspecified disorder of sweat glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\(705.9) Unspecified disorder of sweat glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705.9''', NULL, + '(705.9) Unspecified disorder of sweat glands', '(705.9) Unspecified disorder of sweat glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Focal hyperhidrosis (705.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Focal hyperhidrosis (705.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705.2''', NULL, + 'Focal hyperhidrosis (705.2)', 'Focal hyperhidrosis (705.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Focal hyperhidrosis (705.2)\(705.21) Primary focal hyperhidrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Focal hyperhidrosis (705.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Focal hyperhidrosis (705.2)\(705.21) Primary focal hyperhidrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705.21''', NULL, + '(705.21) Primary focal hyperhidrosis', '(705.21) Primary focal hyperhidrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Focal hyperhidrosis (705.2)\(705.22) Secondary focal hyperhidrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Focal hyperhidrosis (705.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Focal hyperhidrosis (705.2)\(705.22) Secondary focal hyperhidrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705.22''', NULL, + '(705.22) Secondary focal hyperhidrosis', '(705.22) Secondary focal hyperhidrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705.8''', NULL, + 'Other specified disorders of sweat glands (705.8)', 'Other specified disorders of sweat glands (705.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\(705.81) Dyshidrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\(705.81) Dyshidrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705.81''', NULL, + '(705.81) Dyshidrosis', '(705.81) Dyshidrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\(705.82) Fox-Fordyce disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\(705.82) Fox-Fordyce disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705.82''', NULL, + '(705.82) Fox-Fordyce disease', '(705.82) Fox-Fordyce disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\(705.83) Hidradenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\(705.83) Hidradenitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705.83''', NULL, + '(705.83) Hidradenitis', '(705.83) Hidradenitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\(705.89) Other specified disorders of sweat glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Disorders of sweat glands (705)\Other specified disorders of sweat glands (705.8)\(705.89) Other specified disorders of sweat glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''705.89''', NULL, + '(705.89) Other specified disorders of sweat glands', '(705.89) Other specified disorders of sweat glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''702''', NULL, + 'Other dermatoses (702)', 'Other dermatoses (702)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\(702.0) Actinic keratosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\(702.0) Actinic keratosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''702.0''', NULL, + '(702.0) Actinic keratosis', '(702.0) Actinic keratosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\(702.8) Other specified dermatoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\(702.8) Other specified dermatoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''702.8''', NULL, + '(702.8) Other specified dermatoses', '(702.8) Other specified dermatoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\Seborrheic keratosis (702.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\Seborrheic keratosis (702.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''702.1''', NULL, + 'Seborrheic keratosis (702.1)', 'Seborrheic keratosis (702.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\Seborrheic keratosis (702.1)\(702.11) Inflamed seborrheic keratosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\Seborrheic keratosis (702.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\Seborrheic keratosis (702.1)\(702.11) Inflamed seborrheic keratosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''702.11''', NULL, + '(702.11) Inflamed seborrheic keratosis', '(702.11) Inflamed seborrheic keratosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\Seborrheic keratosis (702.1)\(702.19) Other seborrheic keratosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\Seborrheic keratosis (702.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other dermatoses (702)\Seborrheic keratosis (702.1)\(702.19) Other seborrheic keratosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''702.19''', NULL, + '(702.19) Other seborrheic keratosis', '(702.19) Other seborrheic keratosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''709''', NULL, + 'Other disorders of skin and subcutaneous tissue (709)', 'Other disorders of skin and subcutaneous tissue (709)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.1) Vascular disorders of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.1) Vascular disorders of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''709.1''', NULL, + '(709.1) Vascular disorders of skin', '(709.1) Vascular disorders of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.2) Scar conditions and fibrosis of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.2) Scar conditions and fibrosis of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''709.2''', NULL, + '(709.2) Scar conditions and fibrosis of skin', '(709.2) Scar conditions and fibrosis of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.3) Degenerative skin disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.3) Degenerative skin disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''709.3''', NULL, + '(709.3) Degenerative skin disorders', '(709.3) Degenerative skin disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.4) Foreign body granuloma of skin and subcutaneous tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.4) Foreign body granuloma of skin and subcutaneous tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''709.4''', NULL, + '(709.4) Foreign body granuloma of skin and subcutaneous tissue', '(709.4) Foreign body granuloma of skin and subcutaneous tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.8) Other specified disorders of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.8) Other specified disorders of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''709.8''', NULL, + '(709.8) Other specified disorders of skin', '(709.8) Other specified disorders of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.9) Unspecified disorder of skin and subcutaneous tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\(709.9) Unspecified disorder of skin and subcutaneous tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''709.9''', NULL, + '(709.9) Unspecified disorder of skin and subcutaneous tissue', '(709.9) Unspecified disorder of skin and subcutaneous tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\Dyschromia (709.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\Dyschromia (709.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''709.0''', NULL, + 'Dyschromia (709.0)', 'Dyschromia (709.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\Dyschromia (709.0)\(709.00) Dyschromia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\Dyschromia (709.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\Dyschromia (709.0)\(709.00) Dyschromia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''709.00''', NULL, + '(709.00) Dyschromia, unspecified', '(709.00) Dyschromia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\Dyschromia (709.0)\(709.01) Vitiligo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\Dyschromia (709.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\Dyschromia (709.0)\(709.01) Vitiligo\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''709.01''', NULL, + '(709.01) Vitiligo', '(709.01) Vitiligo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\Dyschromia (709.0)\(709.09) Other dyschromia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\Dyschromia (709.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other disorders of skin and subcutaneous tissue (709)\Dyschromia (709.0)\(709.09) Other dyschromia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''709.09''', NULL, + '(709.09) Other dyschromia', '(709.09) Other dyschromia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''701''', NULL, + 'Other hypertrophic and atrophic conditions of skin (701)', 'Other hypertrophic and atrophic conditions of skin (701)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.0) Circumscribed scleroderma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.0) Circumscribed scleroderma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''701.0''', NULL, + '(701.0) Circumscribed scleroderma', '(701.0) Circumscribed scleroderma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.1) Keratoderma, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.1) Keratoderma, acquired\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''701.1''', NULL, + '(701.1) Keratoderma, acquired', '(701.1) Keratoderma, acquired', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.2) Acquired acanthosis nigricans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.2) Acquired acanthosis nigricans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''701.2''', NULL, + '(701.2) Acquired acanthosis nigricans', '(701.2) Acquired acanthosis nigricans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.3) Striae atrophicae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.3) Striae atrophicae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''701.3''', NULL, + '(701.3) Striae atrophicae', '(701.3) Striae atrophicae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.4) Keloid scar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.4) Keloid scar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''701.4''', NULL, + '(701.4) Keloid scar', '(701.4) Keloid scar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.5) Other abnormal granulation tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.5) Other abnormal granulation tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''701.5''', NULL, + '(701.5) Other abnormal granulation tissue', '(701.5) Other abnormal granulation tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.8) Other specified hypertrophic and atrophic conditions of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.8) Other specified hypertrophic and atrophic conditions of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''701.8''', NULL, + '(701.8) Other specified hypertrophic and atrophic conditions of skin', '(701.8) Other specified hypertrophic and atrophic conditions of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.9) Unspecified hypertrophic and atrophic conditions of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Other hypertrophic and atrophic conditions of skin (701)\(701.9) Unspecified hypertrophic and atrophic conditions of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''701.9''', NULL, + '(701.9) Unspecified hypertrophic and atrophic conditions of skin', '(701.9) Unspecified hypertrophic and atrophic conditions of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''708''', NULL, + 'Urticaria (708)', 'Urticaria (708)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.0) Allergic urticaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.0) Allergic urticaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''708.0''', NULL, + '(708.0) Allergic urticaria', '(708.0) Allergic urticaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.1) Idiopathic urticaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.1) Idiopathic urticaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''708.1''', NULL, + '(708.1) Idiopathic urticaria', '(708.1) Idiopathic urticaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.2) Urticaria due to cold and heat\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.2) Urticaria due to cold and heat\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''708.2''', NULL, + '(708.2) Urticaria due to cold and heat', '(708.2) Urticaria due to cold and heat', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.3) Dermatographic urticaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.3) Dermatographic urticaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''708.3''', NULL, + '(708.3) Dermatographic urticaria', '(708.3) Dermatographic urticaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.4) Vibratory urticaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.4) Vibratory urticaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''708.4''', NULL, + '(708.4) Vibratory urticaria', '(708.4) Vibratory urticaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.5) Cholinergic urticaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.5) Cholinergic urticaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''708.5''', NULL, + '(708.5) Cholinergic urticaria', '(708.5) Cholinergic urticaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.8) Other specified urticaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.8) Other specified urticaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''708.8''', NULL, + '(708.8) Other specified urticaria', '(708.8) Other specified urticaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.9) Urticaria, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other diseases of skin and subcutaneous tissue (700-709.99)\Urticaria (708)\(708.9) Urticaria, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''708.9''', NULL, + '(708.9) Urticaria, unspecified', '(708.9) Urticaria, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''690'' AND ''698.99''', NULL, + 'Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)', 'Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Atopic dermatitis and related conditions (691)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Atopic dermatitis and related conditions (691)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''691''', NULL, + 'Atopic dermatitis and related conditions (691)', 'Atopic dermatitis and related conditions (691)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Atopic dermatitis and related conditions (691)\(691.0) Diaper or napkin rash\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Atopic dermatitis and related conditions (691)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Atopic dermatitis and related conditions (691)\(691.0) Diaper or napkin rash\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''691.0''', NULL, + '(691.0) Diaper or napkin rash', '(691.0) Diaper or napkin rash', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Atopic dermatitis and related conditions (691)\(691.8) Other atopic dermatitis and related conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Atopic dermatitis and related conditions (691)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Atopic dermatitis and related conditions (691)\(691.8) Other atopic dermatitis and related conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''691.8''', NULL, + '(691.8) Other atopic dermatitis and related conditions', '(691.8) Other atopic dermatitis and related conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694''', NULL, + 'Bullous dermatoses (694)', 'Bullous dermatoses (694)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.0) Dermatitis herpetiformis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.0) Dermatitis herpetiformis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694.0''', NULL, + '(694.0) Dermatitis herpetiformis', '(694.0) Dermatitis herpetiformis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.1) Subcorneal pustular dermatosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.1) Subcorneal pustular dermatosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694.1''', NULL, + '(694.1) Subcorneal pustular dermatosis', '(694.1) Subcorneal pustular dermatosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.2) Juvenile dermatitis herpetiformis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.2) Juvenile dermatitis herpetiformis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694.2''', NULL, + '(694.2) Juvenile dermatitis herpetiformis', '(694.2) Juvenile dermatitis herpetiformis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.3) Impetigo herpetiformis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.3) Impetigo herpetiformis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694.3''', NULL, + '(694.3) Impetigo herpetiformis', '(694.3) Impetigo herpetiformis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.4) Pemphigus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.4) Pemphigus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694.4''', NULL, + '(694.4) Pemphigus', '(694.4) Pemphigus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.5) Pemphigoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.5) Pemphigoid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694.5''', NULL, + '(694.5) Pemphigoid', '(694.5) Pemphigoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.8) Other specified bullous dermatoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.8) Other specified bullous dermatoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694.8''', NULL, + '(694.8) Other specified bullous dermatoses', '(694.8) Other specified bullous dermatoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.9) Unspecified bullous dermatoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\(694.9) Unspecified bullous dermatoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694.9''', NULL, + '(694.9) Unspecified bullous dermatoses', '(694.9) Unspecified bullous dermatoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\Benign mucous membrane pemphigoid (694.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\Benign mucous membrane pemphigoid (694.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694.6''', NULL, + 'Benign mucous membrane pemphigoid (694.6)', 'Benign mucous membrane pemphigoid (694.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\Benign mucous membrane pemphigoid (694.6)\(694.60) Benign mucous membrane pemphigoid without mention of ocular involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\Benign mucous membrane pemphigoid (694.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\Benign mucous membrane pemphigoid (694.6)\(694.60) Benign mucous membrane pemphigoid without mention of ocular involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694.60''', NULL, + '(694.60) Benign mucous membrane pemphigoid without mention of ocular involvement', '(694.60) Benign mucous membrane pemphigoid without mention of ocular involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\Benign mucous membrane pemphigoid (694.6)\(694.61) Benign mucous membrane pemphigoid with ocular involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\Benign mucous membrane pemphigoid (694.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Bullous dermatoses (694)\Benign mucous membrane pemphigoid (694.6)\(694.61) Benign mucous membrane pemphigoid with ocular involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''694.61''', NULL, + '(694.61) Benign mucous membrane pemphigoid with ocular involvement', '(694.61) Benign mucous membrane pemphigoid with ocular involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692''', NULL, + 'Contact dermatitis and other eczema (692)', 'Contact dermatitis and other eczema (692)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.0) Contact dermatitis and other eczema due to detergents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.0) Contact dermatitis and other eczema due to detergents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.0''', NULL, + '(692.0) Contact dermatitis and other eczema due to detergents', '(692.0) Contact dermatitis and other eczema due to detergents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.1) Contact dermatitis and other eczema due to oils and greases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.1) Contact dermatitis and other eczema due to oils and greases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.1''', NULL, + '(692.1) Contact dermatitis and other eczema due to oils and greases', '(692.1) Contact dermatitis and other eczema due to oils and greases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.2) Contact dermatitis and other eczema due to solvents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.2) Contact dermatitis and other eczema due to solvents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.2''', NULL, + '(692.2) Contact dermatitis and other eczema due to solvents', '(692.2) Contact dermatitis and other eczema due to solvents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.3) Contact dermatitis and other eczema due to drugs and medicines in contact with skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.3) Contact dermatitis and other eczema due to drugs and medicines in contact with skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.3''', NULL, + '(692.3) Contact dermatitis and other eczema due to drugs and medicines in contact with skin', '(692.3) Contact dermatitis and other eczema due to drugs and medicines in contact with skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.4) Contact dermatitis and other eczema due to other chemical products\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.4) Contact dermatitis and other eczema due to other chemical products\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.4''', NULL, + '(692.4) Contact dermatitis and other eczema due to other chemical products', '(692.4) Contact dermatitis and other eczema due to other chemical products', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.5) Contact dermatitis and other eczema due to food in contact with skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.5) Contact dermatitis and other eczema due to food in contact with skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.5''', NULL, + '(692.5) Contact dermatitis and other eczema due to food in contact with skin', '(692.5) Contact dermatitis and other eczema due to food in contact with skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.6) Contact dermatitis and other eczema due to plants [except food]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.6) Contact dermatitis and other eczema due to plants [except food]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.6''', NULL, + '(692.6) Contact dermatitis and other eczema due to plants [except food]', '(692.6) Contact dermatitis and other eczema due to plants [except food]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.9) Contact dermatitis and other eczema, unspecified cause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\(692.9) Contact dermatitis and other eczema, unspecified cause\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.9''', NULL, + '(692.9) Contact dermatitis and other eczema, unspecified cause', '(692.9) Contact dermatitis and other eczema, unspecified cause', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.8''', NULL, + 'Contact dermatitis and other eczema due to other specified agents (692.8)', 'Contact dermatitis and other eczema due to other specified agents (692.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\(692.81) Dermatitis due to cosmetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\(692.81) Dermatitis due to cosmetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.81''', NULL, + '(692.81) Dermatitis due to cosmetics', '(692.81) Dermatitis due to cosmetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\(692.82) Dermatitis due to other radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\(692.82) Dermatitis due to other radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.82''', NULL, + '(692.82) Dermatitis due to other radiation', '(692.82) Dermatitis due to other radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\(692.83) Dermatitis due to metals\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\(692.83) Dermatitis due to metals\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.83''', NULL, + '(692.83) Dermatitis due to metals', '(692.83) Dermatitis due to metals', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\(692.84) Contact dermatitis and other eczema due to animal (cat) (dog) dander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\(692.84) Contact dermatitis and other eczema due to animal (cat) (dog) dander\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.84) Contact dermatitis and other eczema due to animal (cat) (dog''', NULL, + '(692.84) Contact dermatitis and other eczema due to animal (cat) (dog) dander', '(692.84) Contact dermatitis and other eczema due to animal (cat) (dog) dander', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\(692.89) Contact dermatitis and other eczema due to other specified agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to other specified agents (692.8)\(692.89) Contact dermatitis and other eczema due to other specified agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.89''', NULL, + '(692.89) Contact dermatitis and other eczema due to other specified agents', '(692.89) Contact dermatitis and other eczema due to other specified agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.7''', NULL, + 'Contact dermatitis and other eczema due to solar radiation (692.7)', 'Contact dermatitis and other eczema due to solar radiation (692.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.70) Unspecified dermatitis due to sun\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.70) Unspecified dermatitis due to sun\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.70''', NULL, + '(692.70) Unspecified dermatitis due to sun', '(692.70) Unspecified dermatitis due to sun', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.71) Sunburn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.71) Sunburn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.71''', NULL, + '(692.71) Sunburn', '(692.71) Sunburn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.72) Acute dermatitis due to solar radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.72) Acute dermatitis due to solar radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.72''', NULL, + '(692.72) Acute dermatitis due to solar radiation', '(692.72) Acute dermatitis due to solar radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.73) Actinic reticuloid and actinic granuloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.73) Actinic reticuloid and actinic granuloma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.73''', NULL, + '(692.73) Actinic reticuloid and actinic granuloma', '(692.73) Actinic reticuloid and actinic granuloma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.74) Other chronic dermatitis due to solar radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.74) Other chronic dermatitis due to solar radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.74''', NULL, + '(692.74) Other chronic dermatitis due to solar radiation', '(692.74) Other chronic dermatitis due to solar radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.75) Disseminated superficial actinic porokeratosis (DSAP)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.75) Disseminated superficial actinic porokeratosis (DSAP)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.75) Disseminated superficial actinic porokeratosis (DSAP''', NULL, + '(692.75) Disseminated superficial actinic porokeratosis (DSAP)', '(692.75) Disseminated superficial actinic porokeratosis (DSAP)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.76) Sunburn of second degree\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.76) Sunburn of second degree\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.76''', NULL, + '(692.76) Sunburn of second degree', '(692.76) Sunburn of second degree', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.77) Sunburn of third degree\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.77) Sunburn of third degree\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.77''', NULL, + '(692.77) Sunburn of third degree', '(692.77) Sunburn of third degree', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.79) Other dermatitis due to solar radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Contact dermatitis and other eczema (692)\Contact dermatitis and other eczema due to solar radiation (692.7)\(692.79) Other dermatitis due to solar radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''692.79''', NULL, + '(692.79) Other dermatitis due to solar radiation', '(692.79) Other dermatitis due to solar radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''693''', NULL, + 'Dermatitis due to substances taken internally (693)', 'Dermatitis due to substances taken internally (693)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\(693.0) Dermatitis due to drugs and medicines taken internally\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\(693.0) Dermatitis due to drugs and medicines taken internally\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''693.0''', NULL, + '(693.0) Dermatitis due to drugs and medicines taken internally', '(693.0) Dermatitis due to drugs and medicines taken internally', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\(693.1) Dermatitis due to food taken internally\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\(693.1) Dermatitis due to food taken internally\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''693.1''', NULL, + '(693.1) Dermatitis due to food taken internally', '(693.1) Dermatitis due to food taken internally', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\(693.8) Dermatitis due to other specified substances taken internally\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\(693.8) Dermatitis due to other specified substances taken internally\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''693.8''', NULL, + '(693.8) Dermatitis due to other specified substances taken internally', '(693.8) Dermatitis due to other specified substances taken internally', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\(693.9) Dermatitis due to unspecified substance taken internally\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Dermatitis due to substances taken internally (693)\(693.9) Dermatitis due to unspecified substance taken internally\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''693.9''', NULL, + '(693.9) Dermatitis due to unspecified substance taken internally', '(693.9) Dermatitis due to unspecified substance taken internally', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''690''', NULL, + 'Erythematosquamous dermatosis (690)', 'Erythematosquamous dermatosis (690)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\(690.8) Other erythematosquamous dermatosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\(690.8) Other erythematosquamous dermatosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''690.8''', NULL, + '(690.8) Other erythematosquamous dermatosis', '(690.8) Other erythematosquamous dermatosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''690.1''', NULL, + 'Seborrheic dermatitis (690.1)', 'Seborrheic dermatitis (690.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\(690.10) Seborrheic dermatitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\(690.10) Seborrheic dermatitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''690.10''', NULL, + '(690.10) Seborrheic dermatitis, unspecified', '(690.10) Seborrheic dermatitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\(690.11) Seborrhea capitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\(690.11) Seborrhea capitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''690.11''', NULL, + '(690.11) Seborrhea capitis', '(690.11) Seborrhea capitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\(690.12) Seborrheic infantile dermatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\(690.12) Seborrheic infantile dermatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''690.12''', NULL, + '(690.12) Seborrheic infantile dermatitis', '(690.12) Seborrheic infantile dermatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\(690.18) Other seborrheic dermatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematosquamous dermatosis (690)\Seborrheic dermatitis (690.1)\(690.18) Other seborrheic dermatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''690.18''', NULL, + '(690.18) Other seborrheic dermatitis', '(690.18) Other seborrheic dermatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695''', NULL, + 'Erythematous conditions (695)', 'Erythematous conditions (695)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\(695.0) Toxic erythema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\(695.0) Toxic erythema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.0''', NULL, + '(695.0) Toxic erythema', '(695.0) Toxic erythema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\(695.2) Erythema nodosum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\(695.2) Erythema nodosum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.2''', NULL, + '(695.2) Erythema nodosum', '(695.2) Erythema nodosum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\(695.3) Rosacea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\(695.3) Rosacea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.3''', NULL, + '(695.3) Rosacea', '(695.3) Rosacea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\(695.4) Lupus erythematosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\(695.4) Lupus erythematosus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.4''', NULL, + '(695.4) Lupus erythematosus', '(695.4) Lupus erythematosus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\(695.9) Unspecified erythematous condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\(695.9) Unspecified erythematous condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.9''', NULL, + '(695.9) Unspecified erythematous condition', '(695.9) Unspecified erythematous condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.1''', NULL, + 'Erythema multiforme (695.1)', 'Erythema multiforme (695.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.10) Erythema multiforme, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.10) Erythema multiforme, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.10''', NULL, + '(695.10) Erythema multiforme, unspecified', '(695.10) Erythema multiforme, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.11) Erythema multiforme minor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.11) Erythema multiforme minor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.11''', NULL, + '(695.11) Erythema multiforme minor', '(695.11) Erythema multiforme minor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.13) Stevens-Johnson syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.13) Stevens-Johnson syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.13''', NULL, + '(695.13) Stevens-Johnson syndrome', '(695.13) Stevens-Johnson syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.14) Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.14) Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.14''', NULL, + '(695.14) Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome', '(695.14) Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.15) Toxic epidermal necrolysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.15) Toxic epidermal necrolysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.15''', NULL, + '(695.15) Toxic epidermal necrolysis', '(695.15) Toxic epidermal necrolysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.19) Other erythema multiforme\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Erythema multiforme (695.1)\(695.19) Other erythema multiforme\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.19''', NULL, + '(695.19) Other erythema multiforme', '(695.19) Other erythema multiforme', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Other specified erythematous conditions (695.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Other specified erythematous conditions (695.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.8''', NULL, + 'Other specified erythematous conditions (695.8)', 'Other specified erythematous conditions (695.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Other specified erythematous conditions (695.8)\(695.81) Ritter''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Other specified erythematous conditions (695.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Other specified erythematous conditions (695.8)\(695.81) Ritter''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.81''', NULL, + '(695.81) Ritter''s disease', '(695.81) Ritter''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Other specified erythematous conditions (695.8)\(695.89) Other specified erythematous conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Other specified erythematous conditions (695.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Erythematous conditions (695)\Other specified erythematous conditions (695.8)\(695.89) Other specified erythematous conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''695.89''', NULL, + '(695.89) Other specified erythematous conditions', '(695.89) Other specified erythematous conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''697''', NULL, + 'Lichen (697)', 'Lichen (697)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\(697.0) Lichen planus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\(697.0) Lichen planus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''697.0''', NULL, + '(697.0) Lichen planus', '(697.0) Lichen planus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\(697.1) Lichen nitidus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\(697.1) Lichen nitidus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''697.1''', NULL, + '(697.1) Lichen nitidus', '(697.1) Lichen nitidus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\(697.8) Other lichen, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\(697.8) Other lichen, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''697.8''', NULL, + '(697.8) Other lichen, not elsewhere classified', '(697.8) Other lichen, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\(697.9) Lichen, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Lichen (697)\(697.9) Lichen, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''697.9''', NULL, + '(697.9) Lichen, unspecified', '(697.9) Lichen, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''698''', NULL, + 'Pruritus and related conditions (698)', 'Pruritus and related conditions (698)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.0) Pruritus ani\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.0) Pruritus ani\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''698.0''', NULL, + '(698.0) Pruritus ani', '(698.0) Pruritus ani', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.1) Pruritus of genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.1) Pruritus of genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''698.1''', NULL, + '(698.1) Pruritus of genital organs', '(698.1) Pruritus of genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.2) Prurigo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.2) Prurigo\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''698.2''', NULL, + '(698.2) Prurigo', '(698.2) Prurigo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.3) Lichenification and lichen simplex chronicus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.3) Lichenification and lichen simplex chronicus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''698.3''', NULL, + '(698.3) Lichenification and lichen simplex chronicus', '(698.3) Lichenification and lichen simplex chronicus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.4) Dermatitis factitia [artefacta]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.4) Dermatitis factitia [artefacta]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''698.4''', NULL, + '(698.4) Dermatitis factitia [artefacta]', '(698.4) Dermatitis factitia [artefacta]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.8) Other specified pruritic conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.8) Other specified pruritic conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''698.8''', NULL, + '(698.8) Other specified pruritic conditions', '(698.8) Other specified pruritic conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.9) Unspecified pruritic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Pruritus and related conditions (698)\(698.9) Unspecified pruritic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''698.9''', NULL, + '(698.9) Unspecified pruritic disorder', '(698.9) Unspecified pruritic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''696''', NULL, + 'Psoriasis and similar disorders (696)', 'Psoriasis and similar disorders (696)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.0) Psoriatic arthropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.0) Psoriatic arthropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''696.0''', NULL, + '(696.0) Psoriatic arthropathy', '(696.0) Psoriatic arthropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.1) Other psoriasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.1) Other psoriasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''696.1''', NULL, + '(696.1) Other psoriasis', '(696.1) Other psoriasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.2) Parapsoriasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.2) Parapsoriasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''696.2''', NULL, + '(696.2) Parapsoriasis', '(696.2) Parapsoriasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.3) Pityriasis rosea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.3) Pityriasis rosea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''696.3''', NULL, + '(696.3) Pityriasis rosea', '(696.3) Pityriasis rosea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.4) Pityriasis rubra pilaris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.4) Pityriasis rubra pilaris\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''696.4''', NULL, + '(696.4) Pityriasis rubra pilaris', '(696.4) Pityriasis rubra pilaris', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.5) Other and unspecified pityriasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.5) Other and unspecified pityriasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''696.5''', NULL, + '(696.5) Other and unspecified pityriasis', '(696.5) Other and unspecified pityriasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.8) Other psoriasis and similar disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the skin and subcutaneous tissue (680-709.99)\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\Psoriasis and similar disorders (696)\(696.8) Other psoriasis and similar disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''696.8''', NULL, + '(696.8) Other psoriasis and similar disorders', '(696.8) Other psoriasis and similar disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''240'' AND ''279.99''', NULL, + 'Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)', 'Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''249'' AND ''259.99''', NULL, + 'Diseases of other endocrine glands (249-259.99)', 'Diseases of other endocrine glands (249-259.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250''', NULL, + 'Diabetes mellitus (250)', 'Diabetes mellitus (250)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.2''', NULL, + 'Diabetes mellitus with hyperosmolarity (250.2)', 'Diabetes mellitus with hyperosmolarity (250.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\(250.20) Diabetes with hyperosmolarity, type II or unspecified type, not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\(250.20) Diabetes with hyperosmolarity, type II or unspecified type, not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.20''', NULL, + '(250.20) Diabetes with hyperosmolarity, type II or unspecified type, not stated as uncontrolled', '(250.20) Diabetes with hyperosmolarity, type II or unspecified type, not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\(250.21) Diabetes with hyperosmolarity, type I [juvenile type], not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\(250.21) Diabetes with hyperosmolarity, type I [juvenile type], not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.21''', NULL, + '(250.21) Diabetes with hyperosmolarity, type I [juvenile type], not stated as uncontrolled', '(250.21) Diabetes with hyperosmolarity, type I [juvenile type], not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\(250.22) Diabetes with hyperosmolarity, type II or unspecified type, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\(250.22) Diabetes with hyperosmolarity, type II or unspecified type, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.22''', NULL, + '(250.22) Diabetes with hyperosmolarity, type II or unspecified type, uncontrolled', '(250.22) Diabetes with hyperosmolarity, type II or unspecified type, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\(250.23) Diabetes with hyperosmolarity, type I [juvenile type], uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus with hyperosmolarity (250.2)\(250.23) Diabetes with hyperosmolarity, type I [juvenile type], uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.23''', NULL, + '(250.23) Diabetes with hyperosmolarity, type I [juvenile type], uncontrolled', '(250.23) Diabetes with hyperosmolarity, type I [juvenile type], uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.0''', NULL, + 'Diabetes mellitus without mention of complication (250.0)', 'Diabetes mellitus without mention of complication (250.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\(250.00) Diabetes mellitus without mention of complication, type II or unspecified type, not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\(250.00) Diabetes mellitus without mention of complication, type II or unspecified type, not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.00''', NULL, + '(250.00) Diabetes mellitus without mention of complication, type II or unspecified type, not stated as uncontrolled', '(250.00) Diabetes mellitus without mention of complication, type II or unspecified type, not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\(250.01) Diabetes mellitus without mention of complication, type I [juvenile type], not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\(250.01) Diabetes mellitus without mention of complication, type I [juvenile type], not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.01''', NULL, + '(250.01) Diabetes mellitus without mention of complication, type I [juvenile type], not stated as uncontrolled', '(250.01) Diabetes mellitus without mention of complication, type I [juvenile type], not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\(250.02) Diabetes mellitus without mention of complication, type II or unspecified type, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\(250.02) Diabetes mellitus without mention of complication, type II or unspecified type, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.02''', NULL, + '(250.02) Diabetes mellitus without mention of complication, type II or unspecified type, uncontrolled', '(250.02) Diabetes mellitus without mention of complication, type II or unspecified type, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\(250.03) Diabetes mellitus without mention of complication, type I [juvenile type], uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes mellitus without mention of complication (250.0)\(250.03) Diabetes mellitus without mention of complication, type I [juvenile type], uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.03''', NULL, + '(250.03) Diabetes mellitus without mention of complication, type I [juvenile type], uncontrolled', '(250.03) Diabetes mellitus without mention of complication, type I [juvenile type], uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.1''', NULL, + 'Diabetes with ketoacidosis (250.1)', 'Diabetes with ketoacidosis (250.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\(250.10) Diabetes with ketoacidosis, type II or unspecified type, not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\(250.10) Diabetes with ketoacidosis, type II or unspecified type, not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.10''', NULL, + '(250.10) Diabetes with ketoacidosis, type II or unspecified type, not stated as uncontrolled', '(250.10) Diabetes with ketoacidosis, type II or unspecified type, not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\(250.11) Diabetes with ketoacidosis, type I [juvenile type], not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\(250.11) Diabetes with ketoacidosis, type I [juvenile type], not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.11''', NULL, + '(250.11) Diabetes with ketoacidosis, type I [juvenile type], not stated as uncontrolled', '(250.11) Diabetes with ketoacidosis, type I [juvenile type], not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\(250.12) Diabetes with ketoacidosis, type II or unspecified type, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\(250.12) Diabetes with ketoacidosis, type II or unspecified type, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.12''', NULL, + '(250.12) Diabetes with ketoacidosis, type II or unspecified type, uncontrolled', '(250.12) Diabetes with ketoacidosis, type II or unspecified type, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\(250.13) Diabetes with ketoacidosis, type I [juvenile type], uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ketoacidosis (250.1)\(250.13) Diabetes with ketoacidosis, type I [juvenile type], uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.13''', NULL, + '(250.13) Diabetes with ketoacidosis, type I [juvenile type], uncontrolled', '(250.13) Diabetes with ketoacidosis, type I [juvenile type], uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.6''', NULL, + 'Diabetes with neurological manifestations (250.6)', 'Diabetes with neurological manifestations (250.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\(250.60) Diabetes with neurological manifestations, type II or unspecified type, not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\(250.60) Diabetes with neurological manifestations, type II or unspecified type, not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.60''', NULL, + '(250.60) Diabetes with neurological manifestations, type II or unspecified type, not stated as uncontrolled', '(250.60) Diabetes with neurological manifestations, type II or unspecified type, not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\(250.61) Diabetes with neurological manifestations, type I [juvenile type], not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\(250.61) Diabetes with neurological manifestations, type I [juvenile type], not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.61''', NULL, + '(250.61) Diabetes with neurological manifestations, type I [juvenile type], not stated as uncontrolled', '(250.61) Diabetes with neurological manifestations, type I [juvenile type], not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\(250.62) Diabetes with neurological manifestations, type II or unspecified type, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\(250.62) Diabetes with neurological manifestations, type II or unspecified type, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.62''', NULL, + '(250.62) Diabetes with neurological manifestations, type II or unspecified type, uncontrolled', '(250.62) Diabetes with neurological manifestations, type II or unspecified type, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\(250.63) Diabetes with neurological manifestations, type I [juvenile type], uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with neurological manifestations (250.6)\(250.63) Diabetes with neurological manifestations, type I [juvenile type], uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.63''', NULL, + '(250.63) Diabetes with neurological manifestations, type I [juvenile type], uncontrolled', '(250.63) Diabetes with neurological manifestations, type I [juvenile type], uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.5''', NULL, + 'Diabetes with ophthalmic manifestations (250.5)', 'Diabetes with ophthalmic manifestations (250.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\(250.50) Diabetes with ophthalmic manifestations, type II or unspecified type, not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\(250.50) Diabetes with ophthalmic manifestations, type II or unspecified type, not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.50''', NULL, + '(250.50) Diabetes with ophthalmic manifestations, type II or unspecified type, not stated as uncontrolled', '(250.50) Diabetes with ophthalmic manifestations, type II or unspecified type, not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\(250.51) Diabetes with ophthalmic manifestations, type I [juvenile type], not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\(250.51) Diabetes with ophthalmic manifestations, type I [juvenile type], not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.51''', NULL, + '(250.51) Diabetes with ophthalmic manifestations, type I [juvenile type], not stated as uncontrolled', '(250.51) Diabetes with ophthalmic manifestations, type I [juvenile type], not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\(250.52) Diabetes with ophthalmic manifestations, type II or unspecified type, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\(250.52) Diabetes with ophthalmic manifestations, type II or unspecified type, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.52''', NULL, + '(250.52) Diabetes with ophthalmic manifestations, type II or unspecified type, uncontrolled', '(250.52) Diabetes with ophthalmic manifestations, type II or unspecified type, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\(250.53) Diabetes with ophthalmic manifestations, type I [juvenile type], uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with ophthalmic manifestations (250.5)\(250.53) Diabetes with ophthalmic manifestations, type I [juvenile type], uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.53''', NULL, + '(250.53) Diabetes with ophthalmic manifestations, type I [juvenile type], uncontrolled', '(250.53) Diabetes with ophthalmic manifestations, type I [juvenile type], uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.3''', NULL, + 'Diabetes with other coma (250.3)', 'Diabetes with other coma (250.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\(250.30) Diabetes with other coma, type II or unspecified type, not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\(250.30) Diabetes with other coma, type II or unspecified type, not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.30''', NULL, + '(250.30) Diabetes with other coma, type II or unspecified type, not stated as uncontrolled', '(250.30) Diabetes with other coma, type II or unspecified type, not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\(250.31) Diabetes with other coma, type I [juvenile type], not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\(250.31) Diabetes with other coma, type I [juvenile type], not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.31''', NULL, + '(250.31) Diabetes with other coma, type I [juvenile type], not stated as uncontrolled', '(250.31) Diabetes with other coma, type I [juvenile type], not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\(250.32) Diabetes with other coma, type II or unspecified type, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\(250.32) Diabetes with other coma, type II or unspecified type, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.32''', NULL, + '(250.32) Diabetes with other coma, type II or unspecified type, uncontrolled', '(250.32) Diabetes with other coma, type II or unspecified type, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\(250.33) Diabetes with other coma, type I [juvenile type], uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other coma (250.3)\(250.33) Diabetes with other coma, type I [juvenile type], uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.33''', NULL, + '(250.33) Diabetes with other coma, type I [juvenile type], uncontrolled', '(250.33) Diabetes with other coma, type I [juvenile type], uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.8''', NULL, + 'Diabetes with other specified manifestations (250.8)', 'Diabetes with other specified manifestations (250.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\(250.80) Diabetes with other specified manifestations, type II or unspecified type, not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\(250.80) Diabetes with other specified manifestations, type II or unspecified type, not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.80''', NULL, + '(250.80) Diabetes with other specified manifestations, type II or unspecified type, not stated as uncontrolled', '(250.80) Diabetes with other specified manifestations, type II or unspecified type, not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\(250.81) Diabetes with other specified manifestations, type I [juvenile type], not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\(250.81) Diabetes with other specified manifestations, type I [juvenile type], not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.81''', NULL, + '(250.81) Diabetes with other specified manifestations, type I [juvenile type], not stated as uncontrolled', '(250.81) Diabetes with other specified manifestations, type I [juvenile type], not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\(250.82) Diabetes with other specified manifestations, type II or unspecified type, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\(250.82) Diabetes with other specified manifestations, type II or unspecified type, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.82''', NULL, + '(250.82) Diabetes with other specified manifestations, type II or unspecified type, uncontrolled', '(250.82) Diabetes with other specified manifestations, type II or unspecified type, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\(250.83) Diabetes with other specified manifestations, type I [juvenile type], uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with other specified manifestations (250.8)\(250.83) Diabetes with other specified manifestations, type I [juvenile type], uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.83''', NULL, + '(250.83) Diabetes with other specified manifestations, type I [juvenile type], uncontrolled', '(250.83) Diabetes with other specified manifestations, type I [juvenile type], uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.7''', NULL, + 'Diabetes with peripheral circulatory disorders (250.7)', 'Diabetes with peripheral circulatory disorders (250.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\(250.70) Diabetes with peripheral circulatory disorders, type II or unspecified type, not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\(250.70) Diabetes with peripheral circulatory disorders, type II or unspecified type, not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.70''', NULL, + '(250.70) Diabetes with peripheral circulatory disorders, type II or unspecified type, not stated as uncontrolled', '(250.70) Diabetes with peripheral circulatory disorders, type II or unspecified type, not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\(250.71) Diabetes with peripheral circulatory disorders, type I [juvenile type], not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\(250.71) Diabetes with peripheral circulatory disorders, type I [juvenile type], not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.71''', NULL, + '(250.71) Diabetes with peripheral circulatory disorders, type I [juvenile type], not stated as uncontrolled', '(250.71) Diabetes with peripheral circulatory disorders, type I [juvenile type], not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\(250.72) Diabetes with peripheral circulatory disorders, type II or unspecified type, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\(250.72) Diabetes with peripheral circulatory disorders, type II or unspecified type, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.72''', NULL, + '(250.72) Diabetes with peripheral circulatory disorders, type II or unspecified type, uncontrolled', '(250.72) Diabetes with peripheral circulatory disorders, type II or unspecified type, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\(250.73) Diabetes with peripheral circulatory disorders, type I [juvenile type], uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with peripheral circulatory disorders (250.7)\(250.73) Diabetes with peripheral circulatory disorders, type I [juvenile type], uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.73''', NULL, + '(250.73) Diabetes with peripheral circulatory disorders, type I [juvenile type], uncontrolled', '(250.73) Diabetes with peripheral circulatory disorders, type I [juvenile type], uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.4''', NULL, + 'Diabetes with renal manifestations (250.4)', 'Diabetes with renal manifestations (250.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\(250.40) Diabetes with renal manifestations, type II or unspecified type, not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\(250.40) Diabetes with renal manifestations, type II or unspecified type, not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.40''', NULL, + '(250.40) Diabetes with renal manifestations, type II or unspecified type, not stated as uncontrolled', '(250.40) Diabetes with renal manifestations, type II or unspecified type, not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\(250.41) Diabetes with renal manifestations, type I [juvenile type], not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\(250.41) Diabetes with renal manifestations, type I [juvenile type], not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.41''', NULL, + '(250.41) Diabetes with renal manifestations, type I [juvenile type], not stated as uncontrolled', '(250.41) Diabetes with renal manifestations, type I [juvenile type], not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\(250.42) Diabetes with renal manifestations, type II or unspecified type, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\(250.42) Diabetes with renal manifestations, type II or unspecified type, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.42''', NULL, + '(250.42) Diabetes with renal manifestations, type II or unspecified type, uncontrolled', '(250.42) Diabetes with renal manifestations, type II or unspecified type, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\(250.43) Diabetes with renal manifestations, type I [juvenile type], uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with renal manifestations (250.4)\(250.43) Diabetes with renal manifestations, type I [juvenile type], uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.43''', NULL, + '(250.43) Diabetes with renal manifestations, type I [juvenile type], uncontrolled', '(250.43) Diabetes with renal manifestations, type I [juvenile type], uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.9''', NULL, + 'Diabetes with unspecified complication (250.9)', 'Diabetes with unspecified complication (250.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\(250.90) Diabetes with unspecified complication, type II or unspecified type, not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\(250.90) Diabetes with unspecified complication, type II or unspecified type, not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.90''', NULL, + '(250.90) Diabetes with unspecified complication, type II or unspecified type, not stated as uncontrolled', '(250.90) Diabetes with unspecified complication, type II or unspecified type, not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\(250.91) Diabetes with unspecified complication, type I [juvenile type], not stated as uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\(250.91) Diabetes with unspecified complication, type I [juvenile type], not stated as uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.91''', NULL, + '(250.91) Diabetes with unspecified complication, type I [juvenile type], not stated as uncontrolled', '(250.91) Diabetes with unspecified complication, type I [juvenile type], not stated as uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\(250.92) Diabetes with unspecified complication, type II or unspecified type, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\(250.92) Diabetes with unspecified complication, type II or unspecified type, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.92''', NULL, + '(250.92) Diabetes with unspecified complication, type II or unspecified type, uncontrolled', '(250.92) Diabetes with unspecified complication, type II or unspecified type, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\(250.93) Diabetes with unspecified complication, type I [juvenile type], uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diabetes mellitus (250)\Diabetes with unspecified complication (250.9)\(250.93) Diabetes with unspecified complication, type I [juvenile type], uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''250.93''', NULL, + '(250.93) Diabetes with unspecified complication, type I [juvenile type], uncontrolled', '(250.93) Diabetes with unspecified complication, type I [juvenile type], uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''254''', NULL, + 'Diseases of thymus gland (254)', 'Diseases of thymus gland (254)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\(254.0) Persistent hyperplasia of thymus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\(254.0) Persistent hyperplasia of thymus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''254.0''', NULL, + '(254.0) Persistent hyperplasia of thymus', '(254.0) Persistent hyperplasia of thymus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\(254.1) Abscess of thymus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\(254.1) Abscess of thymus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''254.1''', NULL, + '(254.1) Abscess of thymus', '(254.1) Abscess of thymus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\(254.8) Other specified diseases of thymus gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\(254.8) Other specified diseases of thymus gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''254.8''', NULL, + '(254.8) Other specified diseases of thymus gland', '(254.8) Other specified diseases of thymus gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\(254.9) Unspecified disease of thymus gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Diseases of thymus gland (254)\(254.9) Unspecified disease of thymus gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''254.9''', NULL, + '(254.9) Unspecified disease of thymus gland', '(254.9) Unspecified disease of thymus gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255''', NULL, + 'Disorders of adrenal glands (255)', 'Disorders of adrenal glands (255)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.0) Cushing''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.0) Cushing''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.0''', NULL, + '(255.0) Cushing''s syndrome', '(255.0) Cushing''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.2) Adrenogenital disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.2) Adrenogenital disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.2''', NULL, + '(255.2) Adrenogenital disorders', '(255.2) Adrenogenital disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.3) Other corticoadrenal overactivity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.3) Other corticoadrenal overactivity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.3''', NULL, + '(255.3) Other corticoadrenal overactivity', '(255.3) Other corticoadrenal overactivity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.5) Other adrenal hypofunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.5) Other adrenal hypofunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.5''', NULL, + '(255.5) Other adrenal hypofunction', '(255.5) Other adrenal hypofunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.6) Medulloadrenal hyperfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.6) Medulloadrenal hyperfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.6''', NULL, + '(255.6) Medulloadrenal hyperfunction', '(255.6) Medulloadrenal hyperfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.8) Other specified disorders of adrenal glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.8) Other specified disorders of adrenal glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.8''', NULL, + '(255.8) Other specified disorders of adrenal glands', '(255.8) Other specified disorders of adrenal glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.9) Unspecified disorder of adrenal glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\(255.9) Unspecified disorder of adrenal glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.9''', NULL, + '(255.9) Unspecified disorder of adrenal glands', '(255.9) Unspecified disorder of adrenal glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Corticoadrenal insufficiency (255.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Corticoadrenal insufficiency (255.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.4''', NULL, + 'Corticoadrenal insufficiency (255.4)', 'Corticoadrenal insufficiency (255.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Corticoadrenal insufficiency (255.4)\(255.41) Glucocorticoid deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Corticoadrenal insufficiency (255.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Corticoadrenal insufficiency (255.4)\(255.41) Glucocorticoid deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.41''', NULL, + '(255.41) Glucocorticoid deficiency', '(255.41) Glucocorticoid deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Corticoadrenal insufficiency (255.4)\(255.42) Mineralocorticoid deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Corticoadrenal insufficiency (255.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Corticoadrenal insufficiency (255.4)\(255.42) Mineralocorticoid deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.42''', NULL, + '(255.42) Mineralocorticoid deficiency', '(255.42) Mineralocorticoid deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.1''', NULL, + 'Hyperaldosteronism (255.1)', 'Hyperaldosteronism (255.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\(255.10) Hyperaldosteronism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\(255.10) Hyperaldosteronism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.10''', NULL, + '(255.10) Hyperaldosteronism, unspecified', '(255.10) Hyperaldosteronism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\(255.11) Glucocorticoid-remediable aldosteronism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\(255.11) Glucocorticoid-remediable aldosteronism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.11''', NULL, + '(255.11) Glucocorticoid-remediable aldosteronism', '(255.11) Glucocorticoid-remediable aldosteronism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\(255.12) Conn''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\(255.12) Conn''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.12''', NULL, + '(255.12) Conn''s syndrome', '(255.12) Conn''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\(255.13) Bartter''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\(255.13) Bartter''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.13''', NULL, + '(255.13) Bartter''s syndrome', '(255.13) Bartter''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\(255.14) Other secondary aldosteronism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of adrenal glands (255)\Hyperaldosteronism (255.1)\(255.14) Other secondary aldosteronism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''255.14''', NULL, + '(255.14) Other secondary aldosteronism', '(255.14) Other secondary aldosteronism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''252''', NULL, + 'Disorders of parathyroid gland (252)', 'Disorders of parathyroid gland (252)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\(252.1) Hypoparathyroidism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\(252.1) Hypoparathyroidism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''252.1''', NULL, + '(252.1) Hypoparathyroidism', '(252.1) Hypoparathyroidism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\(252.8) Other specified disorders of parathyroid gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\(252.8) Other specified disorders of parathyroid gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''252.8''', NULL, + '(252.8) Other specified disorders of parathyroid gland', '(252.8) Other specified disorders of parathyroid gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\(252.9) Unspecified disorder of parathyroid gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\(252.9) Unspecified disorder of parathyroid gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''252.9''', NULL, + '(252.9) Unspecified disorder of parathyroid gland', '(252.9) Unspecified disorder of parathyroid gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''252.0''', NULL, + 'Hyperparathyroidism (252.0)', 'Hyperparathyroidism (252.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\(252.00) Hyperparathyroidism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\(252.00) Hyperparathyroidism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''252.00''', NULL, + '(252.00) Hyperparathyroidism, unspecified', '(252.00) Hyperparathyroidism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\(252.01) Primary hyperparathyroidism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\(252.01) Primary hyperparathyroidism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''252.01''', NULL, + '(252.01) Primary hyperparathyroidism', '(252.01) Primary hyperparathyroidism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\(252.02) Secondary hyperparathyroidism, non-renal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\(252.02) Secondary hyperparathyroidism, non-renal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''252.02''', NULL, + '(252.02) Secondary hyperparathyroidism, non-renal', '(252.02) Secondary hyperparathyroidism, non-renal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\(252.08) Other hyperparathyroidism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of parathyroid gland (252)\Hyperparathyroidism (252.0)\(252.08) Other hyperparathyroidism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''252.08''', NULL, + '(252.08) Other hyperparathyroidism', '(252.08) Other hyperparathyroidism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''253''', NULL, + 'Disorders of the pituitary gland and its hypothalamic control (253)', 'Disorders of the pituitary gland and its hypothalamic control (253)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.0) Acromegaly and gigantism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.0) Acromegaly and gigantism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''253.0''', NULL, + '(253.0) Acromegaly and gigantism', '(253.0) Acromegaly and gigantism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.1) Other and unspecified anterior pituitary hyperfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.1) Other and unspecified anterior pituitary hyperfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''253.1''', NULL, + '(253.1) Other and unspecified anterior pituitary hyperfunction', '(253.1) Other and unspecified anterior pituitary hyperfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.2) Panhypopituitarism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.2) Panhypopituitarism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''253.2''', NULL, + '(253.2) Panhypopituitarism', '(253.2) Panhypopituitarism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.3) Pituitary dwarfism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.3) Pituitary dwarfism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''253.3''', NULL, + '(253.3) Pituitary dwarfism', '(253.3) Pituitary dwarfism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.4) Other anterior pituitary disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.4) Other anterior pituitary disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''253.4''', NULL, + '(253.4) Other anterior pituitary disorders', '(253.4) Other anterior pituitary disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.5) Diabetes insipidus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.5) Diabetes insipidus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''253.5''', NULL, + '(253.5) Diabetes insipidus', '(253.5) Diabetes insipidus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.6) Other disorders of neurohypophysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.6) Other disorders of neurohypophysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''253.6''', NULL, + '(253.6) Other disorders of neurohypophysis', '(253.6) Other disorders of neurohypophysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.7) Iatrogenic pituitary disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.7) Iatrogenic pituitary disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''253.7''', NULL, + '(253.7) Iatrogenic pituitary disorders', '(253.7) Iatrogenic pituitary disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.8) Other disorders of the pituitary and other syndromes of diencephalohypophyseal origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.8) Other disorders of the pituitary and other syndromes of diencephalohypophyseal origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''253.8''', NULL, + '(253.8) Other disorders of the pituitary and other syndromes of diencephalohypophyseal origin', '(253.8) Other disorders of the pituitary and other syndromes of diencephalohypophyseal origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.9) Unspecified disorder of the pituitary gland and its hypothalamic control\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Disorders of the pituitary gland and its hypothalamic control (253)\(253.9) Unspecified disorder of the pituitary gland and its hypothalamic control\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''253.9''', NULL, + '(253.9) Unspecified disorder of the pituitary gland and its hypothalamic control', '(253.9) Unspecified disorder of the pituitary gland and its hypothalamic control', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''251''', NULL, + 'Other disorders of pancreatic internal secretion (251)', 'Other disorders of pancreatic internal secretion (251)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.0) Hypoglycemic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.0) Hypoglycemic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''251.0''', NULL, + '(251.0) Hypoglycemic coma', '(251.0) Hypoglycemic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.1) Other specified hypoglycemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.1) Other specified hypoglycemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''251.1''', NULL, + '(251.1) Other specified hypoglycemia', '(251.1) Other specified hypoglycemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.2) Hypoglycemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.2) Hypoglycemia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''251.2''', NULL, + '(251.2) Hypoglycemia, unspecified', '(251.2) Hypoglycemia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.3) Postsurgical hypoinsulinemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.3) Postsurgical hypoinsulinemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''251.3''', NULL, + '(251.3) Postsurgical hypoinsulinemia', '(251.3) Postsurgical hypoinsulinemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.4) Abnormality of secretion of glucagon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.4) Abnormality of secretion of glucagon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''251.4''', NULL, + '(251.4) Abnormality of secretion of glucagon', '(251.4) Abnormality of secretion of glucagon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.5) Abnormality of secretion of gastrin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.5) Abnormality of secretion of gastrin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''251.5''', NULL, + '(251.5) Abnormality of secretion of gastrin', '(251.5) Abnormality of secretion of gastrin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.8) Other specified disorders of pancreatic internal secretion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.8) Other specified disorders of pancreatic internal secretion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''251.8''', NULL, + '(251.8) Other specified disorders of pancreatic internal secretion', '(251.8) Other specified disorders of pancreatic internal secretion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.9) Unspecified disorder of pancreatic internal secretion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other disorders of pancreatic internal secretion (251)\(251.9) Unspecified disorder of pancreatic internal secretion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''251.9''', NULL, + '(251.9) Unspecified disorder of pancreatic internal secretion', '(251.9) Unspecified disorder of pancreatic internal secretion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''259''', NULL, + 'Other endocrine disorders (259)', 'Other endocrine disorders (259)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.0) Delay in sexual development and puberty, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.0) Delay in sexual development and puberty, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''259.0''', NULL, + '(259.0) Delay in sexual development and puberty, not elsewhere classified', '(259.0) Delay in sexual development and puberty, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.1) Precocious sexual development and puberty, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.1) Precocious sexual development and puberty, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''259.1''', NULL, + '(259.1) Precocious sexual development and puberty, not elsewhere classified', '(259.1) Precocious sexual development and puberty, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.2) Carcinoid syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.2) Carcinoid syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''259.2''', NULL, + '(259.2) Carcinoid syndrome', '(259.2) Carcinoid syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.3) Ectopic hormone secretion, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.3) Ectopic hormone secretion, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''259.3''', NULL, + '(259.3) Ectopic hormone secretion, not elsewhere classified', '(259.3) Ectopic hormone secretion, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.4) Dwarfism, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.4) Dwarfism, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''259.4''', NULL, + '(259.4) Dwarfism, not elsewhere classified', '(259.4) Dwarfism, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.8) Other specified endocrine disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.8) Other specified endocrine disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''259.8''', NULL, + '(259.8) Other specified endocrine disorders', '(259.8) Other specified endocrine disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.9) Unspecified endocrine disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\(259.9) Unspecified endocrine disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''259.9''', NULL, + '(259.9) Unspecified endocrine disorder', '(259.9) Unspecified endocrine disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\Androgen insensitivity syndrome (259.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\Androgen insensitivity syndrome (259.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''259.5''', NULL, + 'Androgen insensitivity syndrome (259.5)', 'Androgen insensitivity syndrome (259.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\Androgen insensitivity syndrome (259.5)\(259.51) Androgen insensitivity syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\Androgen insensitivity syndrome (259.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Other endocrine disorders (259)\Androgen insensitivity syndrome (259.5)\(259.51) Androgen insensitivity syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''259.51''', NULL, + '(259.51) Androgen insensitivity syndrome', '(259.51) Androgen insensitivity syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''256''', NULL, + 'Ovarian dysfunction (256)', 'Ovarian dysfunction (256)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.0) Hyperestrogenism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.0) Hyperestrogenism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''256.0''', NULL, + '(256.0) Hyperestrogenism', '(256.0) Hyperestrogenism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.1) Other ovarian hyperfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.1) Other ovarian hyperfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''256.1''', NULL, + '(256.1) Other ovarian hyperfunction', '(256.1) Other ovarian hyperfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.2) Postablative ovarian failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.2) Postablative ovarian failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''256.2''', NULL, + '(256.2) Postablative ovarian failure', '(256.2) Postablative ovarian failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.4) Polycystic ovaries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.4) Polycystic ovaries\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''256.4''', NULL, + '(256.4) Polycystic ovaries', '(256.4) Polycystic ovaries', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.8) Other ovarian dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.8) Other ovarian dysfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''256.8''', NULL, + '(256.8) Other ovarian dysfunction', '(256.8) Other ovarian dysfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.9) Unspecified ovarian dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\(256.9) Unspecified ovarian dysfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''256.9''', NULL, + '(256.9) Unspecified ovarian dysfunction', '(256.9) Unspecified ovarian dysfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\Other ovarian failure (256.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\Other ovarian failure (256.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''256.3''', NULL, + 'Other ovarian failure (256.3)', 'Other ovarian failure (256.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\Other ovarian failure (256.3)\(256.31) Premature menopause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\Other ovarian failure (256.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\Other ovarian failure (256.3)\(256.31) Premature menopause\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''256.31''', NULL, + '(256.31) Premature menopause', '(256.31) Premature menopause', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\Other ovarian failure (256.3)\(256.39) Other ovarian failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\Other ovarian failure (256.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Ovarian dysfunction (256)\Other ovarian failure (256.3)\(256.39) Other ovarian failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''256.39''', NULL, + '(256.39) Other ovarian failure', '(256.39) Other ovarian failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''258''', NULL, + 'Polyglandular dysfunction and related disorders (258)', 'Polyglandular dysfunction and related disorders (258)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\(258.1) Other combinations of endocrine dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\(258.1) Other combinations of endocrine dysfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''258.1''', NULL, + '(258.1) Other combinations of endocrine dysfunction', '(258.1) Other combinations of endocrine dysfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\(258.8) Other specified polyglandular dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\(258.8) Other specified polyglandular dysfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''258.8''', NULL, + '(258.8) Other specified polyglandular dysfunction', '(258.8) Other specified polyglandular dysfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\(258.9) Polyglandular dysfunction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\(258.9) Polyglandular dysfunction, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''258.9''', NULL, + '(258.9) Polyglandular dysfunction, unspecified', '(258.9) Polyglandular dysfunction, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\Polyglandular activity in multiple endocrine adenomatosis (258.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\Polyglandular activity in multiple endocrine adenomatosis (258.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''258.0''', NULL, + 'Polyglandular activity in multiple endocrine adenomatosis (258.0)', 'Polyglandular activity in multiple endocrine adenomatosis (258.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\Polyglandular activity in multiple endocrine adenomatosis (258.0)\(258.01) Multiple endocrine neoplasia [MEN] type I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\Polyglandular activity in multiple endocrine adenomatosis (258.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\Polyglandular activity in multiple endocrine adenomatosis (258.0)\(258.01) Multiple endocrine neoplasia [MEN] type I\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''258.01''', NULL, + '(258.01) Multiple endocrine neoplasia [MEN] type I', '(258.01) Multiple endocrine neoplasia [MEN] type I', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\Polyglandular activity in multiple endocrine adenomatosis (258.0)\(258.02) Multiple endocrine neoplasia [MEN] type IIA\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\Polyglandular activity in multiple endocrine adenomatosis (258.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\Polyglandular activity in multiple endocrine adenomatosis (258.0)\(258.02) Multiple endocrine neoplasia [MEN] type IIA\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''258.02''', NULL, + '(258.02) Multiple endocrine neoplasia [MEN] type IIA', '(258.02) Multiple endocrine neoplasia [MEN] type IIA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\Polyglandular activity in multiple endocrine adenomatosis (258.0)\(258.03) Multiple endocrine neoplasia [MEN] type IIB\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\Polyglandular activity in multiple endocrine adenomatosis (258.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Polyglandular dysfunction and related disorders (258)\Polyglandular activity in multiple endocrine adenomatosis (258.0)\(258.03) Multiple endocrine neoplasia [MEN] type IIB\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''258.03''', NULL, + '(258.03) Multiple endocrine neoplasia [MEN] type IIB', '(258.03) Multiple endocrine neoplasia [MEN] type IIB', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249''', NULL, + 'Secondary diabetes mellitus (249)', 'Secondary diabetes mellitus (249)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with hyperosmolarity (249.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with hyperosmolarity (249.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.2''', NULL, + 'Secondary diabetes mellitus with hyperosmolarity (249.2)', 'Secondary diabetes mellitus with hyperosmolarity (249.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with hyperosmolarity (249.2)\(249.20) Secondary diabetes mellitus with hyperosmolarity, not stated as uncontrolled, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with hyperosmolarity (249.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with hyperosmolarity (249.2)\(249.20) Secondary diabetes mellitus with hyperosmolarity, not stated as uncontrolled, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.20''', NULL, + '(249.20) Secondary diabetes mellitus with hyperosmolarity, not stated as uncontrolled, or unspecified', '(249.20) Secondary diabetes mellitus with hyperosmolarity, not stated as uncontrolled, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with hyperosmolarity (249.2)\(249.21) Secondary diabetes mellitus with hyperosmolarity, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with hyperosmolarity (249.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with hyperosmolarity (249.2)\(249.21) Secondary diabetes mellitus with hyperosmolarity, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.21''', NULL, + '(249.21) Secondary diabetes mellitus with hyperosmolarity, uncontrolled', '(249.21) Secondary diabetes mellitus with hyperosmolarity, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ketoacidosis (249.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ketoacidosis (249.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.1''', NULL, + 'Secondary diabetes mellitus with ketoacidosis (249.1)', 'Secondary diabetes mellitus with ketoacidosis (249.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ketoacidosis (249.1)\(249.10) Secondary diabetes mellitus with ketoacidosis, not stated as uncontrolled, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ketoacidosis (249.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ketoacidosis (249.1)\(249.10) Secondary diabetes mellitus with ketoacidosis, not stated as uncontrolled, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.10''', NULL, + '(249.10) Secondary diabetes mellitus with ketoacidosis, not stated as uncontrolled, or unspecified', '(249.10) Secondary diabetes mellitus with ketoacidosis, not stated as uncontrolled, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ketoacidosis (249.1)\(249.11) Secondary diabetes mellitus with ketoacidosis, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ketoacidosis (249.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ketoacidosis (249.1)\(249.11) Secondary diabetes mellitus with ketoacidosis, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.11''', NULL, + '(249.11) Secondary diabetes mellitus with ketoacidosis, uncontrolled', '(249.11) Secondary diabetes mellitus with ketoacidosis, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with neurological manifestations (249.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with neurological manifestations (249.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.6''', NULL, + 'Secondary diabetes mellitus with neurological manifestations (249.6)', 'Secondary diabetes mellitus with neurological manifestations (249.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with neurological manifestations (249.6)\(249.60) Secondary diabetes mellitus with neurological manifestations, not stated as uncontrolled, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with neurological manifestations (249.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with neurological manifestations (249.6)\(249.60) Secondary diabetes mellitus with neurological manifestations, not stated as uncontrolled, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.60''', NULL, + '(249.60) Secondary diabetes mellitus with neurological manifestations, not stated as uncontrolled, or unspecified', '(249.60) Secondary diabetes mellitus with neurological manifestations, not stated as uncontrolled, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with neurological manifestations (249.6)\(249.61) Secondary diabetes mellitus with neurological manifestations, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with neurological manifestations (249.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with neurological manifestations (249.6)\(249.61) Secondary diabetes mellitus with neurological manifestations, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.61''', NULL, + '(249.61) Secondary diabetes mellitus with neurological manifestations, uncontrolled', '(249.61) Secondary diabetes mellitus with neurological manifestations, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.5''', NULL, + 'Secondary diabetes mellitus with ophthalmic manifestations (249.5)', 'Secondary diabetes mellitus with ophthalmic manifestations (249.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\(249.50) Secondary diabetes mellitus with ophthalmic manifestations, not stated as uncontrolled, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\(249.50) Secondary diabetes mellitus with ophthalmic manifestations, not stated as uncontrolled, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.50''', NULL, + '(249.50) Secondary diabetes mellitus with ophthalmic manifestations, not stated as uncontrolled, or unspecified', '(249.50) Secondary diabetes mellitus with ophthalmic manifestations, not stated as uncontrolled, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\(249.51) Secondary diabetes mellitus with ophthalmic manifestations, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\(249.51) Secondary diabetes mellitus with ophthalmic manifestations, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.51''', NULL, + '(249.51) Secondary diabetes mellitus with ophthalmic manifestations, uncontrolled', '(249.51) Secondary diabetes mellitus with ophthalmic manifestations, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with other specified manifestations (249.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with other specified manifestations (249.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.8''', NULL, + 'Secondary diabetes mellitus with other specified manifestations (249.8)', 'Secondary diabetes mellitus with other specified manifestations (249.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with other specified manifestations (249.8)\(249.80) Secondary diabetes mellitus with other specified manifestations, not stated as uncontrolled, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with other specified manifestations (249.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with other specified manifestations (249.8)\(249.80) Secondary diabetes mellitus with other specified manifestations, not stated as uncontrolled, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.80''', NULL, + '(249.80) Secondary diabetes mellitus with other specified manifestations, not stated as uncontrolled, or unspecified', '(249.80) Secondary diabetes mellitus with other specified manifestations, not stated as uncontrolled, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with other specified manifestations (249.8)\(249.81) Secondary diabetes mellitus with other specified manifestations, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with other specified manifestations (249.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with other specified manifestations (249.8)\(249.81) Secondary diabetes mellitus with other specified manifestations, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.81''', NULL, + '(249.81) Secondary diabetes mellitus with other specified manifestations, uncontrolled', '(249.81) Secondary diabetes mellitus with other specified manifestations, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.7''', NULL, + 'Secondary diabetes mellitus with peripheral circulatory disorders (249.7)', 'Secondary diabetes mellitus with peripheral circulatory disorders (249.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\(249.70) Secondary diabetes mellitus with peripheral circulatory disorders, not stated as uncontrolled, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\(249.70) Secondary diabetes mellitus with peripheral circulatory disorders, not stated as uncontrolled, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.70''', NULL, + '(249.70) Secondary diabetes mellitus with peripheral circulatory disorders, not stated as uncontrolled, or unspecified', '(249.70) Secondary diabetes mellitus with peripheral circulatory disorders, not stated as uncontrolled, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\(249.71) Secondary diabetes mellitus with peripheral circulatory disorders, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\(249.71) Secondary diabetes mellitus with peripheral circulatory disorders, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.71''', NULL, + '(249.71) Secondary diabetes mellitus with peripheral circulatory disorders, uncontrolled', '(249.71) Secondary diabetes mellitus with peripheral circulatory disorders, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with renal manifestations (249.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with renal manifestations (249.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.4''', NULL, + 'Secondary diabetes mellitus with renal manifestations (249.4)', 'Secondary diabetes mellitus with renal manifestations (249.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with renal manifestations (249.4)\(249.40) Secondary diabetes mellitus with renal manifestations, not stated as uncontrolled, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with renal manifestations (249.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with renal manifestations (249.4)\(249.40) Secondary diabetes mellitus with renal manifestations, not stated as uncontrolled, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.40''', NULL, + '(249.40) Secondary diabetes mellitus with renal manifestations, not stated as uncontrolled, or unspecified', '(249.40) Secondary diabetes mellitus with renal manifestations, not stated as uncontrolled, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with renal manifestations (249.4)\(249.41) Secondary diabetes mellitus with renal manifestations, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with renal manifestations (249.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with renal manifestations (249.4)\(249.41) Secondary diabetes mellitus with renal manifestations, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.41''', NULL, + '(249.41) Secondary diabetes mellitus with renal manifestations, uncontrolled', '(249.41) Secondary diabetes mellitus with renal manifestations, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with unspecified complication (249.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with unspecified complication (249.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.9''', NULL, + 'Secondary diabetes mellitus with unspecified complication (249.9)', 'Secondary diabetes mellitus with unspecified complication (249.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with unspecified complication (249.9)\(249.90) Secondary diabetes mellitus with unspecified complication, not stated as uncontrolled, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with unspecified complication (249.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with unspecified complication (249.9)\(249.90) Secondary diabetes mellitus with unspecified complication, not stated as uncontrolled, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.90''', NULL, + '(249.90) Secondary diabetes mellitus with unspecified complication, not stated as uncontrolled, or unspecified', '(249.90) Secondary diabetes mellitus with unspecified complication, not stated as uncontrolled, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with unspecified complication (249.9)\(249.91) Secondary diabetes mellitus with unspecified complication, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with unspecified complication (249.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus with unspecified complication (249.9)\(249.91) Secondary diabetes mellitus with unspecified complication, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.91''', NULL, + '(249.91) Secondary diabetes mellitus with unspecified complication, uncontrolled', '(249.91) Secondary diabetes mellitus with unspecified complication, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus, without mention of complication (249.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus, without mention of complication (249.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.0''', NULL, + 'Secondary diabetes mellitus, without mention of complication (249.0)', 'Secondary diabetes mellitus, without mention of complication (249.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus, without mention of complication (249.0)\(249.00) Secondary diabetes mellitus without mention of complication, not stated as uncontrolled, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus, without mention of complication (249.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus, without mention of complication (249.0)\(249.00) Secondary diabetes mellitus without mention of complication, not stated as uncontrolled, or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.00''', NULL, + '(249.00) Secondary diabetes mellitus without mention of complication, not stated as uncontrolled, or unspecified', '(249.00) Secondary diabetes mellitus without mention of complication, not stated as uncontrolled, or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus, without mention of complication (249.0)\(249.01) Secondary diabetes mellitus without mention of complication, uncontrolled\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus, without mention of complication (249.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Secondary diabetes mellitus (249)\Secondary diabetes mellitus, without mention of complication (249.0)\(249.01) Secondary diabetes mellitus without mention of complication, uncontrolled\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''249.01''', NULL, + '(249.01) Secondary diabetes mellitus without mention of complication, uncontrolled', '(249.01) Secondary diabetes mellitus without mention of complication, uncontrolled', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''257''', NULL, + 'Testicular dysfunction (257)', 'Testicular dysfunction (257)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\(257.0) Testicular hyperfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\(257.0) Testicular hyperfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''257.0''', NULL, + '(257.0) Testicular hyperfunction', '(257.0) Testicular hyperfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\(257.1) Postablative testicular hypofunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\(257.1) Postablative testicular hypofunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''257.1''', NULL, + '(257.1) Postablative testicular hypofunction', '(257.1) Postablative testicular hypofunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\(257.2) Other testicular hypofunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\(257.2) Other testicular hypofunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''257.2''', NULL, + '(257.2) Other testicular hypofunction', '(257.2) Other testicular hypofunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\(257.8) Other testicular dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\(257.8) Other testicular dysfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''257.8''', NULL, + '(257.8) Other testicular dysfunction', '(257.8) Other testicular dysfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\(257.9) Unspecified testicular dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Diseases of other endocrine glands (249-259.99)\Testicular dysfunction (257)\(257.9) Unspecified testicular dysfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''257.9''', NULL, + '(257.9) Unspecified testicular dysfunction', '(257.9) Unspecified testicular dysfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''240'' AND ''246.99''', NULL, + 'Disorders of thyroid gland (240-246.99)', 'Disorders of thyroid gland (240-246.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\(243) Congenital hypothyroidism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\(243) Congenital hypothyroidism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''243''', NULL, + '(243) Congenital hypothyroidism', '(243) Congenital hypothyroidism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''244''', NULL, + 'Acquired hypothyroidism (244)', 'Acquired hypothyroidism (244)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.0) Postsurgical hypothyroidism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.0) Postsurgical hypothyroidism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''244.0''', NULL, + '(244.0) Postsurgical hypothyroidism', '(244.0) Postsurgical hypothyroidism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.1) Other postablative hypothyroidism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.1) Other postablative hypothyroidism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''244.1''', NULL, + '(244.1) Other postablative hypothyroidism', '(244.1) Other postablative hypothyroidism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.2) Iodine hypothyroidism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.2) Iodine hypothyroidism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''244.2''', NULL, + '(244.2) Iodine hypothyroidism', '(244.2) Iodine hypothyroidism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.3) Other iatrogenic hypothyroidism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.3) Other iatrogenic hypothyroidism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''244.3''', NULL, + '(244.3) Other iatrogenic hypothyroidism', '(244.3) Other iatrogenic hypothyroidism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.8) Other specified acquired hypothyroidism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.8) Other specified acquired hypothyroidism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''244.8''', NULL, + '(244.8) Other specified acquired hypothyroidism', '(244.8) Other specified acquired hypothyroidism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.9) Unspecified acquired hypothyroidism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Acquired hypothyroidism (244)\(244.9) Unspecified acquired hypothyroidism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''244.9''', NULL, + '(244.9) Unspecified acquired hypothyroidism', '(244.9) Unspecified acquired hypothyroidism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Nontoxic nodular goiter (241)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Nontoxic nodular goiter (241)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''241''', NULL, + 'Nontoxic nodular goiter (241)', 'Nontoxic nodular goiter (241)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Nontoxic nodular goiter (241)\(241.0) Nontoxic uninodular goiter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Nontoxic nodular goiter (241)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Nontoxic nodular goiter (241)\(241.0) Nontoxic uninodular goiter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''241.0''', NULL, + '(241.0) Nontoxic uninodular goiter', '(241.0) Nontoxic uninodular goiter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Nontoxic nodular goiter (241)\(241.1) Nontoxic multinodular goiter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Nontoxic nodular goiter (241)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Nontoxic nodular goiter (241)\(241.1) Nontoxic multinodular goiter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''241.1''', NULL, + '(241.1) Nontoxic multinodular goiter', '(241.1) Nontoxic multinodular goiter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Nontoxic nodular goiter (241)\(241.9) Unspecified nontoxic nodular goiter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Nontoxic nodular goiter (241)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Nontoxic nodular goiter (241)\(241.9) Unspecified nontoxic nodular goiter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''241.9''', NULL, + '(241.9) Unspecified nontoxic nodular goiter', '(241.9) Unspecified nontoxic nodular goiter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''246''', NULL, + 'Other disorders of thyroid (246)', 'Other disorders of thyroid (246)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.0) Disorders of thyrocalcitonin secretion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.0) Disorders of thyrocalcitonin secretion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''246.0''', NULL, + '(246.0) Disorders of thyrocalcitonin secretion', '(246.0) Disorders of thyrocalcitonin secretion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.1) Dyshormonogenic goiter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.1) Dyshormonogenic goiter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''246.1''', NULL, + '(246.1) Dyshormonogenic goiter', '(246.1) Dyshormonogenic goiter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.2) Cyst of thyroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.2) Cyst of thyroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''246.2''', NULL, + '(246.2) Cyst of thyroid', '(246.2) Cyst of thyroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.3) Hemorrhage and infarction of thyroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.3) Hemorrhage and infarction of thyroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''246.3''', NULL, + '(246.3) Hemorrhage and infarction of thyroid', '(246.3) Hemorrhage and infarction of thyroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.8) Other specified disorders of thyroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.8) Other specified disorders of thyroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''246.8''', NULL, + '(246.8) Other specified disorders of thyroid', '(246.8) Other specified disorders of thyroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.9) Unspecified disorder of thyroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Other disorders of thyroid (246)\(246.9) Unspecified disorder of thyroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''246.9''', NULL, + '(246.9) Unspecified disorder of thyroid', '(246.9) Unspecified disorder of thyroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Simple and unspecified goiter (240)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Simple and unspecified goiter (240)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''240''', NULL, + 'Simple and unspecified goiter (240)', 'Simple and unspecified goiter (240)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Simple and unspecified goiter (240)\(240.0) Goiter, specified as simple\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Simple and unspecified goiter (240)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Simple and unspecified goiter (240)\(240.0) Goiter, specified as simple\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''240.0''', NULL, + '(240.0) Goiter, specified as simple', '(240.0) Goiter, specified as simple', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Simple and unspecified goiter (240)\(240.9) Goiter, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Simple and unspecified goiter (240)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Simple and unspecified goiter (240)\(240.9) Goiter, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''240.9''', NULL, + '(240.9) Goiter, unspecified', '(240.9) Goiter, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''245''', NULL, + 'Thyroiditis (245)', 'Thyroiditis (245)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.0) Acute thyroiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.0) Acute thyroiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''245.0''', NULL, + '(245.0) Acute thyroiditis', '(245.0) Acute thyroiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.1) Subacute thyroiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.1) Subacute thyroiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''245.1''', NULL, + '(245.1) Subacute thyroiditis', '(245.1) Subacute thyroiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.2) Chronic lymphocytic thyroiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.2) Chronic lymphocytic thyroiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''245.2''', NULL, + '(245.2) Chronic lymphocytic thyroiditis', '(245.2) Chronic lymphocytic thyroiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.3) Chronic fibrous thyroiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.3) Chronic fibrous thyroiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''245.3''', NULL, + '(245.3) Chronic fibrous thyroiditis', '(245.3) Chronic fibrous thyroiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.4) Iatrogenic thyroiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.4) Iatrogenic thyroiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''245.4''', NULL, + '(245.4) Iatrogenic thyroiditis', '(245.4) Iatrogenic thyroiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.8) Other and unspecified chronic thyroiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.8) Other and unspecified chronic thyroiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''245.8''', NULL, + '(245.8) Other and unspecified chronic thyroiditis', '(245.8) Other and unspecified chronic thyroiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.9) Thyroiditis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyroiditis (245)\(245.9) Thyroiditis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''245.9''', NULL, + '(245.9) Thyroiditis, unspecified', '(245.9) Thyroiditis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242''', NULL, + 'Thyrotoxicosis with or without goiter (242)', 'Thyrotoxicosis with or without goiter (242)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis from ectopic thyroid nodule (242.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis from ectopic thyroid nodule (242.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.4''', NULL, + 'Thyrotoxicosis from ectopic thyroid nodule (242.4)', 'Thyrotoxicosis from ectopic thyroid nodule (242.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis from ectopic thyroid nodule (242.4)\(242.40) Thyrotoxicosis from ectopic thyroid nodule without mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis from ectopic thyroid nodule (242.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis from ectopic thyroid nodule (242.4)\(242.40) Thyrotoxicosis from ectopic thyroid nodule without mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.40''', NULL, + '(242.40) Thyrotoxicosis from ectopic thyroid nodule without mention of thyrotoxic crisis or storm', '(242.40) Thyrotoxicosis from ectopic thyroid nodule without mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis from ectopic thyroid nodule (242.4)\(242.41) Thyrotoxicosis from ectopic thyroid nodule with mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis from ectopic thyroid nodule (242.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis from ectopic thyroid nodule (242.4)\(242.41) Thyrotoxicosis from ectopic thyroid nodule with mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.41''', NULL, + '(242.41) Thyrotoxicosis from ectopic thyroid nodule with mention of thyrotoxic crisis or storm', '(242.41) Thyrotoxicosis from ectopic thyroid nodule with mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis of other specified origin (242.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis of other specified origin (242.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.8''', NULL, + 'Thyrotoxicosis of other specified origin (242.8)', 'Thyrotoxicosis of other specified origin (242.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis of other specified origin (242.8)\(242.80) Thyrotoxicosis of other specified origin without mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis of other specified origin (242.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis of other specified origin (242.8)\(242.80) Thyrotoxicosis of other specified origin without mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.80''', NULL, + '(242.80) Thyrotoxicosis of other specified origin without mention of thyrotoxic crisis or storm', '(242.80) Thyrotoxicosis of other specified origin without mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis of other specified origin (242.8)\(242.81) Thyrotoxicosis of other specified origin with mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis of other specified origin (242.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis of other specified origin (242.8)\(242.81) Thyrotoxicosis of other specified origin with mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.81''', NULL, + '(242.81) Thyrotoxicosis of other specified origin with mention of thyrotoxic crisis or storm', '(242.81) Thyrotoxicosis of other specified origin with mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis without mention of goiter or other cause (242.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis without mention of goiter or other cause (242.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.9''', NULL, + 'Thyrotoxicosis without mention of goiter or other cause (242.9)', 'Thyrotoxicosis without mention of goiter or other cause (242.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis without mention of goiter or other cause (242.9)\(242.90) Thyrotoxicosis without mention of goiter or other cause, and without mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis without mention of goiter or other cause (242.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis without mention of goiter or other cause (242.9)\(242.90) Thyrotoxicosis without mention of goiter or other cause, and without mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.90''', NULL, + '(242.90) Thyrotoxicosis without mention of goiter or other cause, and without mention of thyrotoxic crisis or storm', '(242.90) Thyrotoxicosis without mention of goiter or other cause, and without mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis without mention of goiter or other cause (242.9)\(242.91) Thyrotoxicosis without mention of goiter or other cause, with mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis without mention of goiter or other cause (242.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Thyrotoxicosis without mention of goiter or other cause (242.9)\(242.91) Thyrotoxicosis without mention of goiter or other cause, with mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.91''', NULL, + '(242.91) Thyrotoxicosis without mention of goiter or other cause, with mention of thyrotoxic crisis or storm', '(242.91) Thyrotoxicosis without mention of goiter or other cause, with mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic diffuse goiter (242.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic diffuse goiter (242.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.0''', NULL, + 'Toxic diffuse goiter (242.0)', 'Toxic diffuse goiter (242.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic diffuse goiter (242.0)\(242.00) Toxic diffuse goiter without mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic diffuse goiter (242.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic diffuse goiter (242.0)\(242.00) Toxic diffuse goiter without mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.00''', NULL, + '(242.00) Toxic diffuse goiter without mention of thyrotoxic crisis or storm', '(242.00) Toxic diffuse goiter without mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic diffuse goiter (242.0)\(242.01) Toxic diffuse goiter with mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic diffuse goiter (242.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic diffuse goiter (242.0)\(242.01) Toxic diffuse goiter with mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.01''', NULL, + '(242.01) Toxic diffuse goiter with mention of thyrotoxic crisis or storm', '(242.01) Toxic diffuse goiter with mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic multinodular goiter (242.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic multinodular goiter (242.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.2''', NULL, + 'Toxic multinodular goiter (242.2)', 'Toxic multinodular goiter (242.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic multinodular goiter (242.2)\(242.20) Toxic multinodular goiter without mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic multinodular goiter (242.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic multinodular goiter (242.2)\(242.20) Toxic multinodular goiter without mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.20''', NULL, + '(242.20) Toxic multinodular goiter without mention of thyrotoxic crisis or storm', '(242.20) Toxic multinodular goiter without mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic multinodular goiter (242.2)\(242.21) Toxic multinodular goiter with mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic multinodular goiter (242.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic multinodular goiter (242.2)\(242.21) Toxic multinodular goiter with mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.21''', NULL, + '(242.21) Toxic multinodular goiter with mention of thyrotoxic crisis or storm', '(242.21) Toxic multinodular goiter with mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic nodular goiter, unspecified type (242.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic nodular goiter, unspecified type (242.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.3''', NULL, + 'Toxic nodular goiter, unspecified type (242.3)', 'Toxic nodular goiter, unspecified type (242.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic nodular goiter, unspecified type (242.3)\(242.30) Toxic nodular goiter, unspecified type, without mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic nodular goiter, unspecified type (242.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic nodular goiter, unspecified type (242.3)\(242.30) Toxic nodular goiter, unspecified type, without mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.30''', NULL, + '(242.30) Toxic nodular goiter, unspecified type, without mention of thyrotoxic crisis or storm', '(242.30) Toxic nodular goiter, unspecified type, without mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic nodular goiter, unspecified type (242.3)\(242.31) Toxic nodular goiter, unspecified type, with mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic nodular goiter, unspecified type (242.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic nodular goiter, unspecified type (242.3)\(242.31) Toxic nodular goiter, unspecified type, with mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.31''', NULL, + '(242.31) Toxic nodular goiter, unspecified type, with mention of thyrotoxic crisis or storm', '(242.31) Toxic nodular goiter, unspecified type, with mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic uninodular goiter (242.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic uninodular goiter (242.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.1''', NULL, + 'Toxic uninodular goiter (242.1)', 'Toxic uninodular goiter (242.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic uninodular goiter (242.1)\(242.10) Toxic uninodular goiter without mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic uninodular goiter (242.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic uninodular goiter (242.1)\(242.10) Toxic uninodular goiter without mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.10''', NULL, + '(242.10) Toxic uninodular goiter without mention of thyrotoxic crisis or storm', '(242.10) Toxic uninodular goiter without mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic uninodular goiter (242.1)\(242.11) Toxic uninodular goiter with mention of thyrotoxic crisis or storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic uninodular goiter (242.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Disorders of thyroid gland (240-246.99)\Thyrotoxicosis with or without goiter (242)\Toxic uninodular goiter (242.1)\(242.11) Toxic uninodular goiter with mention of thyrotoxic crisis or storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''242.11''', NULL, + '(242.11) Toxic uninodular goiter with mention of thyrotoxic crisis or storm', '(242.11) Toxic uninodular goiter with mention of thyrotoxic crisis or storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''260'' AND ''269.99''', NULL, + 'Nutritional deficiencies (260-269.99)', 'Nutritional deficiencies (260-269.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\(260) Kwashiorkor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\(260) Kwashiorkor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''260''', NULL, + '(260) Kwashiorkor', '(260) Kwashiorkor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\(261) Nutritional marasmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\(261) Nutritional marasmus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''261''', NULL, + '(261) Nutritional marasmus', '(261) Nutritional marasmus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\(262) Other severe protein-calorie malnutrition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\(262) Other severe protein-calorie malnutrition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''262''', NULL, + '(262) Other severe protein-calorie malnutrition', '(262) Other severe protein-calorie malnutrition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\(267) Ascorbic acid deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\(267) Ascorbic acid deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''267''', NULL, + '(267) Ascorbic acid deficiency', '(267) Ascorbic acid deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''266''', NULL, + 'Deficiency of B-complex components (266)', 'Deficiency of B-complex components (266)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\(266.0) Ariboflavinosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\(266.0) Ariboflavinosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''266.0''', NULL, + '(266.0) Ariboflavinosis', '(266.0) Ariboflavinosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\(266.1) Vitamin B6 deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\(266.1) Vitamin B6 deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''266.1''', NULL, + '(266.1) Vitamin B6 deficiency', '(266.1) Vitamin B6 deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\(266.2) Other B-complex deficiencies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\(266.2) Other B-complex deficiencies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''266.2''', NULL, + '(266.2) Other B-complex deficiencies', '(266.2) Other B-complex deficiencies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\(266.9) Unspecified vitamin B deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Deficiency of B-complex components (266)\(266.9) Unspecified vitamin B deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''266.9''', NULL, + '(266.9) Unspecified vitamin B deficiency', '(266.9) Unspecified vitamin B deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''263''', NULL, + 'Other and unspecified protein-calorie malnutrition (263)', 'Other and unspecified protein-calorie malnutrition (263)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\(263.0) Malnutrition of moderate degree\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\(263.0) Malnutrition of moderate degree\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''263.0''', NULL, + '(263.0) Malnutrition of moderate degree', '(263.0) Malnutrition of moderate degree', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\(263.1) Malnutrition of mild degree\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\(263.1) Malnutrition of mild degree\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''263.1''', NULL, + '(263.1) Malnutrition of mild degree', '(263.1) Malnutrition of mild degree', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\(263.2) Arrested development following protein-calorie malnutrition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\(263.2) Arrested development following protein-calorie malnutrition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''263.2''', NULL, + '(263.2) Arrested development following protein-calorie malnutrition', '(263.2) Arrested development following protein-calorie malnutrition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\(263.8) Other protein-calorie malnutrition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\(263.8) Other protein-calorie malnutrition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''263.8''', NULL, + '(263.8) Other protein-calorie malnutrition', '(263.8) Other protein-calorie malnutrition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\(263.9) Unspecified protein-calorie malnutrition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other and unspecified protein-calorie malnutrition (263)\(263.9) Unspecified protein-calorie malnutrition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''263.9''', NULL, + '(263.9) Unspecified protein-calorie malnutrition', '(263.9) Unspecified protein-calorie malnutrition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''269''', NULL, + 'Other nutritional deficiencies (269)', 'Other nutritional deficiencies (269)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.0) Deficiency of vitamin K\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.0) Deficiency of vitamin K\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''269.0''', NULL, + '(269.0) Deficiency of vitamin K', '(269.0) Deficiency of vitamin K', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.1) Deficiency of other vitamins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.1) Deficiency of other vitamins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''269.1''', NULL, + '(269.1) Deficiency of other vitamins', '(269.1) Deficiency of other vitamins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.2) Unspecified vitamin deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.2) Unspecified vitamin deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''269.2''', NULL, + '(269.2) Unspecified vitamin deficiency', '(269.2) Unspecified vitamin deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.3) Mineral deficiency, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.3) Mineral deficiency, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''269.3''', NULL, + '(269.3) Mineral deficiency, not elsewhere classified', '(269.3) Mineral deficiency, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.8) Other nutritional deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.8) Other nutritional deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''269.8''', NULL, + '(269.8) Other nutritional deficiency', '(269.8) Other nutritional deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.9) Unspecified nutritional deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Other nutritional deficiencies (269)\(269.9) Unspecified nutritional deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''269.9''', NULL, + '(269.9) Unspecified nutritional deficiency', '(269.9) Unspecified nutritional deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Thiamine and niacin deficiency states (265)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Thiamine and niacin deficiency states (265)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''265''', NULL, + 'Thiamine and niacin deficiency states (265)', 'Thiamine and niacin deficiency states (265)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Thiamine and niacin deficiency states (265)\(265.0) Beriberi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Thiamine and niacin deficiency states (265)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Thiamine and niacin deficiency states (265)\(265.0) Beriberi\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''265.0''', NULL, + '(265.0) Beriberi', '(265.0) Beriberi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Thiamine and niacin deficiency states (265)\(265.1) Other and unspecified manifestations of thiamine deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Thiamine and niacin deficiency states (265)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Thiamine and niacin deficiency states (265)\(265.1) Other and unspecified manifestations of thiamine deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''265.1''', NULL, + '(265.1) Other and unspecified manifestations of thiamine deficiency', '(265.1) Other and unspecified manifestations of thiamine deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Thiamine and niacin deficiency states (265)\(265.2) Pellagra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Thiamine and niacin deficiency states (265)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Thiamine and niacin deficiency states (265)\(265.2) Pellagra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''265.2''', NULL, + '(265.2) Pellagra', '(265.2) Pellagra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''264''', NULL, + 'Vitamin A deficiency (264)', 'Vitamin A deficiency (264)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.0) Vitamin A deficiency with conjunctival xerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.0) Vitamin A deficiency with conjunctival xerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''264.0''', NULL, + '(264.0) Vitamin A deficiency with conjunctival xerosis', '(264.0) Vitamin A deficiency with conjunctival xerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.1) Vitamin A deficiency with conjunctival xerosis and Bitot''s spot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.1) Vitamin A deficiency with conjunctival xerosis and Bitot''s spot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''264.1''', NULL, + '(264.1) Vitamin A deficiency with conjunctival xerosis and Bitot''s spot', '(264.1) Vitamin A deficiency with conjunctival xerosis and Bitot''s spot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.2) Vitamin A deficiency with corneal xerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.2) Vitamin A deficiency with corneal xerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''264.2''', NULL, + '(264.2) Vitamin A deficiency with corneal xerosis', '(264.2) Vitamin A deficiency with corneal xerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.3) Vitamin A deficiency with corneal ulceration and xerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.3) Vitamin A deficiency with corneal ulceration and xerosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''264.3''', NULL, + '(264.3) Vitamin A deficiency with corneal ulceration and xerosis', '(264.3) Vitamin A deficiency with corneal ulceration and xerosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.4) Vitamin A deficiency with keratomalacia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.4) Vitamin A deficiency with keratomalacia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''264.4''', NULL, + '(264.4) Vitamin A deficiency with keratomalacia', '(264.4) Vitamin A deficiency with keratomalacia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.5) Vitamin A deficiency with night blindness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.5) Vitamin A deficiency with night blindness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''264.5''', NULL, + '(264.5) Vitamin A deficiency with night blindness', '(264.5) Vitamin A deficiency with night blindness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.6) Vitamin A deficiency with xerophthalmic scars of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.6) Vitamin A deficiency with xerophthalmic scars of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''264.6''', NULL, + '(264.6) Vitamin A deficiency with xerophthalmic scars of cornea', '(264.6) Vitamin A deficiency with xerophthalmic scars of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.7) Other ocular manifestations of vitamin A deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.7) Other ocular manifestations of vitamin A deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''264.7''', NULL, + '(264.7) Other ocular manifestations of vitamin A deficiency', '(264.7) Other ocular manifestations of vitamin A deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.8) Other manifestations of vitamin A deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.8) Other manifestations of vitamin A deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''264.8''', NULL, + '(264.8) Other manifestations of vitamin A deficiency', '(264.8) Other manifestations of vitamin A deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.9) Unspecified vitamin A deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin A deficiency (264)\(264.9) Unspecified vitamin A deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''264.9''', NULL, + '(264.9) Unspecified vitamin A deficiency', '(264.9) Unspecified vitamin A deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''268''', NULL, + 'Vitamin D deficiency (268)', 'Vitamin D deficiency (268)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\(268.0) Rickets, active\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\(268.0) Rickets, active\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''268.0''', NULL, + '(268.0) Rickets, active', '(268.0) Rickets, active', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\(268.1) Rickets, late effect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\(268.1) Rickets, late effect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''268.1''', NULL, + '(268.1) Rickets, late effect', '(268.1) Rickets, late effect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\(268.2) Osteomalacia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\(268.2) Osteomalacia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''268.2''', NULL, + '(268.2) Osteomalacia, unspecified', '(268.2) Osteomalacia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\(268.9) Unspecified vitamin D deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Nutritional deficiencies (260-269.99)\Vitamin D deficiency (268)\(268.9) Unspecified vitamin D deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''268.9''', NULL, + '(268.9) Unspecified vitamin D deficiency', '(268.9) Unspecified vitamin D deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''270'' AND ''279.99''', NULL, + 'Other metabolic and immunity disorders (270-279.99)', 'Other metabolic and immunity disorders (270-279.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279''', NULL, + 'Disorders involving the immune mechanism (279)', 'Disorders involving the immune mechanism (279)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\(279.2) Combined immunity deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\(279.2) Combined immunity deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.2''', NULL, + '(279.2) Combined immunity deficiency', '(279.2) Combined immunity deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\(279.3) Unspecified immunity deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\(279.3) Unspecified immunity deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.3''', NULL, + '(279.3) Unspecified immunity deficiency', '(279.3) Unspecified immunity deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\(279.8) Other specified disorders involving the immune mechanism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\(279.8) Other specified disorders involving the immune mechanism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.8''', NULL, + '(279.8) Other specified disorders involving the immune mechanism', '(279.8) Other specified disorders involving the immune mechanism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\(279.9) Unspecified disorder of immune mechanism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\(279.9) Unspecified disorder of immune mechanism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.9''', NULL, + '(279.9) Unspecified disorder of immune mechanism', '(279.9) Unspecified disorder of immune mechanism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Autoimmune disease, not elsewhere classified (279.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Autoimmune disease, not elsewhere classified (279.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.4''', NULL, + 'Autoimmune disease, not elsewhere classified (279.4)', 'Autoimmune disease, not elsewhere classified (279.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Autoimmune disease, not elsewhere classified (279.4)\(279.41) Autoimmune lymphoproliferative syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Autoimmune disease, not elsewhere classified (279.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Autoimmune disease, not elsewhere classified (279.4)\(279.41) Autoimmune lymphoproliferative syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.41''', NULL, + '(279.41) Autoimmune lymphoproliferative syndrome', '(279.41) Autoimmune lymphoproliferative syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Autoimmune disease, not elsewhere classified (279.4)\(279.49) Autoimmune disease, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Autoimmune disease, not elsewhere classified (279.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Autoimmune disease, not elsewhere classified (279.4)\(279.49) Autoimmune disease, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.49''', NULL, + '(279.49) Autoimmune disease, not elsewhere classified', '(279.49) Autoimmune disease, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.1''', NULL, + 'Deficiency of cell-mediated immunity (279.1)', 'Deficiency of cell-mediated immunity (279.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\(279.10) Immunodeficiency with predominant T-cell defect, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\(279.10) Immunodeficiency with predominant T-cell defect, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.10''', NULL, + '(279.10) Immunodeficiency with predominant T-cell defect, unspecified', '(279.10) Immunodeficiency with predominant T-cell defect, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\(279.11) Digeorge''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\(279.11) Digeorge''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.11''', NULL, + '(279.11) Digeorge''s syndrome', '(279.11) Digeorge''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\(279.12) Wiskott-aldrich syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\(279.12) Wiskott-aldrich syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.12''', NULL, + '(279.12) Wiskott-aldrich syndrome', '(279.12) Wiskott-aldrich syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\(279.13) Nezelof''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\(279.13) Nezelof''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.13''', NULL, + '(279.13) Nezelof''s syndrome', '(279.13) Nezelof''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\(279.19) Other deficiency of cell-mediated immunity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of cell-mediated immunity (279.1)\(279.19) Other deficiency of cell-mediated immunity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.19''', NULL, + '(279.19) Other deficiency of cell-mediated immunity', '(279.19) Other deficiency of cell-mediated immunity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.0''', NULL, + 'Deficiency of humoral immunity (279.0)', 'Deficiency of humoral immunity (279.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.00) Hypogammaglobulinemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.00) Hypogammaglobulinemia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.00''', NULL, + '(279.00) Hypogammaglobulinemia, unspecified', '(279.00) Hypogammaglobulinemia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.01) Selective IgA immunodeficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.01) Selective IgA immunodeficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.01''', NULL, + '(279.01) Selective IgA immunodeficiency', '(279.01) Selective IgA immunodeficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.02) Selective IgM immunodeficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.02) Selective IgM immunodeficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.02''', NULL, + '(279.02) Selective IgM immunodeficiency', '(279.02) Selective IgM immunodeficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.03) Other selective immunoglobulin deficiencies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.03) Other selective immunoglobulin deficiencies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.03''', NULL, + '(279.03) Other selective immunoglobulin deficiencies', '(279.03) Other selective immunoglobulin deficiencies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.04) Congenital hypogammaglobulinemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.04) Congenital hypogammaglobulinemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.04''', NULL, + '(279.04) Congenital hypogammaglobulinemia', '(279.04) Congenital hypogammaglobulinemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.05) Immunodeficiency with increased IgM\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.05) Immunodeficiency with increased IgM\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.05''', NULL, + '(279.05) Immunodeficiency with increased IgM', '(279.05) Immunodeficiency with increased IgM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.06) Common variable immunodeficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.06) Common variable immunodeficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.06''', NULL, + '(279.06) Common variable immunodeficiency', '(279.06) Common variable immunodeficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.09) Other deficiency of humoral immunity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Deficiency of humoral immunity (279.0)\(279.09) Other deficiency of humoral immunity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.09''', NULL, + '(279.09) Other deficiency of humoral immunity', '(279.09) Other deficiency of humoral immunity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.5''', NULL, + 'Graft-versus-host disease (279.5)', 'Graft-versus-host disease (279.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\(279.50) Graft-versus-host disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\(279.50) Graft-versus-host disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.50''', NULL, + '(279.50) Graft-versus-host disease, unspecified', '(279.50) Graft-versus-host disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\(279.51) Acute graft-versus-host disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\(279.51) Acute graft-versus-host disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.51''', NULL, + '(279.51) Acute graft-versus-host disease', '(279.51) Acute graft-versus-host disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\(279.52) Chronic graft-versus-host disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\(279.52) Chronic graft-versus-host disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.52''', NULL, + '(279.52) Chronic graft-versus-host disease', '(279.52) Chronic graft-versus-host disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\(279.53) Acute on chronic graft-versus-host disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders involving the immune mechanism (279)\Graft-versus-host disease (279.5)\(279.53) Acute on chronic graft-versus-host disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''279.53''', NULL, + '(279.53) Acute on chronic graft-versus-host disease', '(279.53) Acute on chronic graft-versus-host disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''270''', NULL, + 'Disorders of amino-acid transport and metabolism (270)', 'Disorders of amino-acid transport and metabolism (270)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.0) Disturbances of amino-acid transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.0) Disturbances of amino-acid transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''270.0''', NULL, + '(270.0) Disturbances of amino-acid transport', '(270.0) Disturbances of amino-acid transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.1) Phenylketonuria [PKU]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.1) Phenylketonuria [PKU]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''270.1''', NULL, + '(270.1) Phenylketonuria [PKU]', '(270.1) Phenylketonuria [PKU]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.2) Other disturbances of aromatic amino-acid metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.2) Other disturbances of aromatic amino-acid metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''270.2''', NULL, + '(270.2) Other disturbances of aromatic amino-acid metabolism', '(270.2) Other disturbances of aromatic amino-acid metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.3) Disturbances of branched-chain amino-acid metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.3) Disturbances of branched-chain amino-acid metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''270.3''', NULL, + '(270.3) Disturbances of branched-chain amino-acid metabolism', '(270.3) Disturbances of branched-chain amino-acid metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.4) Disturbances of sulphur-bearing amino-acid metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.4) Disturbances of sulphur-bearing amino-acid metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''270.4''', NULL, + '(270.4) Disturbances of sulphur-bearing amino-acid metabolism', '(270.4) Disturbances of sulphur-bearing amino-acid metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.5) Disturbances of histidine metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.5) Disturbances of histidine metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''270.5''', NULL, + '(270.5) Disturbances of histidine metabolism', '(270.5) Disturbances of histidine metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.6) Disorders of urea cycle metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.6) Disorders of urea cycle metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''270.6''', NULL, + '(270.6) Disorders of urea cycle metabolism', '(270.6) Disorders of urea cycle metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.7) Other disturbances of straight-chain amino-acid metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.7) Other disturbances of straight-chain amino-acid metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''270.7''', NULL, + '(270.7) Other disturbances of straight-chain amino-acid metabolism', '(270.7) Other disturbances of straight-chain amino-acid metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.8) Other specified disorders of amino-acid metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.8) Other specified disorders of amino-acid metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''270.8''', NULL, + '(270.8) Other specified disorders of amino-acid metabolism', '(270.8) Other specified disorders of amino-acid metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.9) Unspecified disorder of amino-acid metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of amino-acid transport and metabolism (270)\(270.9) Unspecified disorder of amino-acid metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''270.9''', NULL, + '(270.9) Unspecified disorder of amino-acid metabolism', '(270.9) Unspecified disorder of amino-acid metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''271''', NULL, + 'Disorders of carbohydrate transport and metabolism (271)', 'Disorders of carbohydrate transport and metabolism (271)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.0) Glycogenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.0) Glycogenosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''271.0''', NULL, + '(271.0) Glycogenosis', '(271.0) Glycogenosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.1) Galactosemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.1) Galactosemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''271.1''', NULL, + '(271.1) Galactosemia', '(271.1) Galactosemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.2) Hereditary fructose intolerance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.2) Hereditary fructose intolerance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''271.2''', NULL, + '(271.2) Hereditary fructose intolerance', '(271.2) Hereditary fructose intolerance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.3) Intestinal disaccharidase deficiencies and disaccharide malabsorption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.3) Intestinal disaccharidase deficiencies and disaccharide malabsorption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''271.3''', NULL, + '(271.3) Intestinal disaccharidase deficiencies and disaccharide malabsorption', '(271.3) Intestinal disaccharidase deficiencies and disaccharide malabsorption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.4) Renal glycosuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.4) Renal glycosuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''271.4''', NULL, + '(271.4) Renal glycosuria', '(271.4) Renal glycosuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.8) Other specified disorders of carbohydrate transport and metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.8) Other specified disorders of carbohydrate transport and metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''271.8''', NULL, + '(271.8) Other specified disorders of carbohydrate transport and metabolism', '(271.8) Other specified disorders of carbohydrate transport and metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.9) Unspecified disorder of carbohydrate transport and metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of carbohydrate transport and metabolism (271)\(271.9) Unspecified disorder of carbohydrate transport and metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''271.9''', NULL, + '(271.9) Unspecified disorder of carbohydrate transport and metabolism', '(271.9) Unspecified disorder of carbohydrate transport and metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276''', NULL, + 'Disorders of fluid, electrolyte, and acid-base balance (276)', 'Disorders of fluid, electrolyte, and acid-base balance (276)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.0) Hyperosmolality and/or hypernatremia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.0) Hyperosmolality and/or hypernatremia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.0''', NULL, + '(276.0) Hyperosmolality and/or hypernatremia', '(276.0) Hyperosmolality and/or hypernatremia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.1) Hyposmolality and/or hyponatremia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.1) Hyposmolality and/or hyponatremia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.1''', NULL, + '(276.1) Hyposmolality and/or hyponatremia', '(276.1) Hyposmolality and/or hyponatremia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.2) Acidosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.2) Acidosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.2''', NULL, + '(276.2) Acidosis', '(276.2) Acidosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.3) Alkalosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.3) Alkalosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.3''', NULL, + '(276.3) Alkalosis', '(276.3) Alkalosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.4) Mixed acid-base balance disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.4) Mixed acid-base balance disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.4''', NULL, + '(276.4) Mixed acid-base balance disorder', '(276.4) Mixed acid-base balance disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.7) Hyperpotassemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.7) Hyperpotassemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.7''', NULL, + '(276.7) Hyperpotassemia', '(276.7) Hyperpotassemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.8) Hypopotassemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.8) Hypopotassemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.8''', NULL, + '(276.8) Hypopotassemia', '(276.8) Hypopotassemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.9) Electrolyte and fluid disorders not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\(276.9) Electrolyte and fluid disorders not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.9''', NULL, + '(276.9) Electrolyte and fluid disorders not elsewhere classified', '(276.9) Electrolyte and fluid disorders not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Fluid overload (276.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Fluid overload (276.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.6''', NULL, + 'Fluid overload (276.6)', 'Fluid overload (276.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Fluid overload (276.6)\(276.61) Transfusion associated circulatory overload\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Fluid overload (276.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Fluid overload (276.6)\(276.61) Transfusion associated circulatory overload\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.61''', NULL, + '(276.61) Transfusion associated circulatory overload', '(276.61) Transfusion associated circulatory overload', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Fluid overload (276.6)\(276.69) Other fluid overload\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Fluid overload (276.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Fluid overload (276.6)\(276.69) Other fluid overload\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.69''', NULL, + '(276.69) Other fluid overload', '(276.69) Other fluid overload', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Volume depletion (276.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Volume depletion (276.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.5''', NULL, + 'Volume depletion (276.5)', 'Volume depletion (276.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Volume depletion (276.5)\(276.50) Volume depletion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Volume depletion (276.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Volume depletion (276.5)\(276.50) Volume depletion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.50''', NULL, + '(276.50) Volume depletion, unspecified', '(276.50) Volume depletion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Volume depletion (276.5)\(276.51) Dehydration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Volume depletion (276.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Volume depletion (276.5)\(276.51) Dehydration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.51''', NULL, + '(276.51) Dehydration', '(276.51) Dehydration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Volume depletion (276.5)\(276.52) Hypovolemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Volume depletion (276.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of fluid, electrolyte, and acid-base balance (276)\Volume depletion (276.5)\(276.52) Hypovolemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''276.52''', NULL, + '(276.52) Hypovolemia', '(276.52) Hypovolemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''272''', NULL, + 'Disorders of lipoid metabolism (272)', 'Disorders of lipoid metabolism (272)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.0) Pure hypercholesterolemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.0) Pure hypercholesterolemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''272.0''', NULL, + '(272.0) Pure hypercholesterolemia', '(272.0) Pure hypercholesterolemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.1) Pure hyperglyceridemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.1) Pure hyperglyceridemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''272.1''', NULL, + '(272.1) Pure hyperglyceridemia', '(272.1) Pure hyperglyceridemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.2) Mixed hyperlipidemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.2) Mixed hyperlipidemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''272.2''', NULL, + '(272.2) Mixed hyperlipidemia', '(272.2) Mixed hyperlipidemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.3) Hyperchylomicronemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.3) Hyperchylomicronemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''272.3''', NULL, + '(272.3) Hyperchylomicronemia', '(272.3) Hyperchylomicronemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.4) Other and unspecified hyperlipidemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.4) Other and unspecified hyperlipidemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''272.4''', NULL, + '(272.4) Other and unspecified hyperlipidemia', '(272.4) Other and unspecified hyperlipidemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.5) Lipoprotein deficiencies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.5) Lipoprotein deficiencies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''272.5''', NULL, + '(272.5) Lipoprotein deficiencies', '(272.5) Lipoprotein deficiencies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.6) Lipodystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.6) Lipodystrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''272.6''', NULL, + '(272.6) Lipodystrophy', '(272.6) Lipodystrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.7) Lipidoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.7) Lipidoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''272.7''', NULL, + '(272.7) Lipidoses', '(272.7) Lipidoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.8) Other disorders of lipoid metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.8) Other disorders of lipoid metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''272.8''', NULL, + '(272.8) Other disorders of lipoid metabolism', '(272.8) Other disorders of lipoid metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.9) Unspecified disorder of lipoid metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of lipoid metabolism (272)\(272.9) Unspecified disorder of lipoid metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''272.9''', NULL, + '(272.9) Unspecified disorder of lipoid metabolism', '(272.9) Unspecified disorder of lipoid metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275''', NULL, + 'Disorders of mineral metabolism (275)', 'Disorders of mineral metabolism (275)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.1) Disorders of copper metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.1) Disorders of copper metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.1''', NULL, + '(275.1) Disorders of copper metabolism', '(275.1) Disorders of copper metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.2) Disorders of magnesium metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.2) Disorders of magnesium metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.2''', NULL, + '(275.2) Disorders of magnesium metabolism', '(275.2) Disorders of magnesium metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.3) Disorders of phosphorus metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.3) Disorders of phosphorus metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.3''', NULL, + '(275.3) Disorders of phosphorus metabolism', '(275.3) Disorders of phosphorus metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.5) Hungry bone syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.5) Hungry bone syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.5''', NULL, + '(275.5) Hungry bone syndrome', '(275.5) Hungry bone syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.8) Other specified disorders of mineral metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.8) Other specified disorders of mineral metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.8''', NULL, + '(275.8) Other specified disorders of mineral metabolism', '(275.8) Other specified disorders of mineral metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.9) Unspecified disorder of mineral metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\(275.9) Unspecified disorder of mineral metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.9''', NULL, + '(275.9) Unspecified disorder of mineral metabolism', '(275.9) Unspecified disorder of mineral metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.4''', NULL, + 'Disorders of calcium metabolism (275.4)', 'Disorders of calcium metabolism (275.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\(275.40) Unspecified disorder of calcium metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\(275.40) Unspecified disorder of calcium metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.40''', NULL, + '(275.40) Unspecified disorder of calcium metabolism', '(275.40) Unspecified disorder of calcium metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\(275.41) Hypocalcemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\(275.41) Hypocalcemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.41''', NULL, + '(275.41) Hypocalcemia', '(275.41) Hypocalcemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\(275.42) Hypercalcemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\(275.42) Hypercalcemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.42''', NULL, + '(275.42) Hypercalcemia', '(275.42) Hypercalcemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\(275.49) Other disorders of calcium metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of calcium metabolism (275.4)\(275.49) Other disorders of calcium metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.49''', NULL, + '(275.49) Other disorders of calcium metabolism', '(275.49) Other disorders of calcium metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.0''', NULL, + 'Disorders of iron metabolism (275.0)', 'Disorders of iron metabolism (275.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\(275.01) Hereditary hemochromatosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\(275.01) Hereditary hemochromatosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.01''', NULL, + '(275.01) Hereditary hemochromatosis', '(275.01) Hereditary hemochromatosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\(275.02) Hemochromatosis due to repeated red blood cell transfusions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\(275.02) Hemochromatosis due to repeated red blood cell transfusions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.02''', NULL, + '(275.02) Hemochromatosis due to repeated red blood cell transfusions', '(275.02) Hemochromatosis due to repeated red blood cell transfusions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\(275.03) Other hemochromatosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\(275.03) Other hemochromatosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.03''', NULL, + '(275.03) Other hemochromatosis', '(275.03) Other hemochromatosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\(275.09) Other disorders of iron metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of mineral metabolism (275)\Disorders of iron metabolism (275.0)\(275.09) Other disorders of iron metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''275.09''', NULL, + '(275.09) Other disorders of iron metabolism', '(275.09) Other disorders of iron metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''273''', NULL, + 'Disorders of plasma protein metabolism (273)', 'Disorders of plasma protein metabolism (273)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.0) Polyclonal hypergammaglobulinemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.0) Polyclonal hypergammaglobulinemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''273.0''', NULL, + '(273.0) Polyclonal hypergammaglobulinemia', '(273.0) Polyclonal hypergammaglobulinemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.1) Monoclonal paraproteinemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.1) Monoclonal paraproteinemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''273.1''', NULL, + '(273.1) Monoclonal paraproteinemia', '(273.1) Monoclonal paraproteinemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.2) Other paraproteinemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.2) Other paraproteinemias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''273.2''', NULL, + '(273.2) Other paraproteinemias', '(273.2) Other paraproteinemias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.3) Macroglobulinemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.3) Macroglobulinemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''273.3''', NULL, + '(273.3) Macroglobulinemia', '(273.3) Macroglobulinemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.4) Alpha-1-antitrypsin deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.4) Alpha-1-antitrypsin deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''273.4''', NULL, + '(273.4) Alpha-1-antitrypsin deficiency', '(273.4) Alpha-1-antitrypsin deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.8) Other disorders of plasma protein metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.8) Other disorders of plasma protein metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''273.8''', NULL, + '(273.8) Other disorders of plasma protein metabolism', '(273.8) Other disorders of plasma protein metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.9) Unspecified disorder of plasma protein metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Disorders of plasma protein metabolism (273)\(273.9) Unspecified disorder of plasma protein metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''273.9''', NULL, + '(273.9) Unspecified disorder of plasma protein metabolism', '(273.9) Unspecified disorder of plasma protein metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274''', NULL, + 'Gout (274)', 'Gout (274)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\(274.9) Gout, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\(274.9) Gout, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.9''', NULL, + '(274.9) Gout, unspecified', '(274.9) Gout, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gout with other specified manifestations (274.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gout with other specified manifestations (274.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.8''', NULL, + 'Gout with other specified manifestations (274.8)', 'Gout with other specified manifestations (274.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gout with other specified manifestations (274.8)\(274.81) Gouty tophi of ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gout with other specified manifestations (274.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gout with other specified manifestations (274.8)\(274.81) Gouty tophi of ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.81''', NULL, + '(274.81) Gouty tophi of ear', '(274.81) Gouty tophi of ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gout with other specified manifestations (274.8)\(274.82) Gouty tophi of other sites, except ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gout with other specified manifestations (274.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gout with other specified manifestations (274.8)\(274.82) Gouty tophi of other sites, except ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.82''', NULL, + '(274.82) Gouty tophi of other sites, except ear', '(274.82) Gouty tophi of other sites, except ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gout with other specified manifestations (274.8)\(274.89) Gout with other specified manifestations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gout with other specified manifestations (274.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gout with other specified manifestations (274.8)\(274.89) Gout with other specified manifestations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.89''', NULL, + '(274.89) Gout with other specified manifestations', '(274.89) Gout with other specified manifestations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.0''', NULL, + 'Gouty arthropathy (274.0)', 'Gouty arthropathy (274.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\(274.00) Gouty arthropathy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\(274.00) Gouty arthropathy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.00''', NULL, + '(274.00) Gouty arthropathy, unspecified', '(274.00) Gouty arthropathy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\(274.01) Acute gouty arthropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\(274.01) Acute gouty arthropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.01''', NULL, + '(274.01) Acute gouty arthropathy', '(274.01) Acute gouty arthropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\(274.02) Chronic gouty arthropathy without mention of tophus (tophi)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\(274.02) Chronic gouty arthropathy without mention of tophus (tophi)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.02) Chronic gouty arthropathy without mention of tophus (tophi''', NULL, + '(274.02) Chronic gouty arthropathy without mention of tophus (tophi)', '(274.02) Chronic gouty arthropathy without mention of tophus (tophi)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\(274.03) Chronic gouty arthropathy with tophus (tophi)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty arthropathy (274.0)\(274.03) Chronic gouty arthropathy with tophus (tophi)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.03) Chronic gouty arthropathy with tophus (tophi''', NULL, + '(274.03) Chronic gouty arthropathy with tophus (tophi)', '(274.03) Chronic gouty arthropathy with tophus (tophi)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty nephropathy (274.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty nephropathy (274.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.1''', NULL, + 'Gouty nephropathy (274.1)', 'Gouty nephropathy (274.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty nephropathy (274.1)\(274.10) Gouty nephropathy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty nephropathy (274.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty nephropathy (274.1)\(274.10) Gouty nephropathy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.10''', NULL, + '(274.10) Gouty nephropathy, unspecified', '(274.10) Gouty nephropathy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty nephropathy (274.1)\(274.11) Uric acid nephrolithiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty nephropathy (274.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty nephropathy (274.1)\(274.11) Uric acid nephrolithiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.11''', NULL, + '(274.11) Uric acid nephrolithiasis', '(274.11) Uric acid nephrolithiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty nephropathy (274.1)\(274.19) Other gouty nephropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty nephropathy (274.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Gout (274)\Gouty nephropathy (274.1)\(274.19) Other gouty nephropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''274.19''', NULL, + '(274.19) Other gouty nephropathy', '(274.19) Other gouty nephropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277''', NULL, + 'Other and unspecified disorders of metabolism (277)', 'Other and unspecified disorders of metabolism (277)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.1) Disorders of porphyrin metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.1) Disorders of porphyrin metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.1''', NULL, + '(277.1) Disorders of porphyrin metabolism', '(277.1) Disorders of porphyrin metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.2) Other disorders of purine and pyrimidine metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.2) Other disorders of purine and pyrimidine metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.2''', NULL, + '(277.2) Other disorders of purine and pyrimidine metabolism', '(277.2) Other disorders of purine and pyrimidine metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.4) Disorders of bilirubin excretion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.4) Disorders of bilirubin excretion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.4''', NULL, + '(277.4) Disorders of bilirubin excretion', '(277.4) Disorders of bilirubin excretion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.5) Mucopolysaccharidosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.5) Mucopolysaccharidosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.5''', NULL, + '(277.5) Mucopolysaccharidosis', '(277.5) Mucopolysaccharidosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.6) Other deficiencies of circulating enzymes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.6) Other deficiencies of circulating enzymes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.6''', NULL, + '(277.6) Other deficiencies of circulating enzymes', '(277.6) Other deficiencies of circulating enzymes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.7) Dysmetabolic syndrome X\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.7) Dysmetabolic syndrome X\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.7''', NULL, + '(277.7) Dysmetabolic syndrome X', '(277.7) Dysmetabolic syndrome X', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.9) Unspecified disorder of metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\(277.9) Unspecified disorder of metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.9''', NULL, + '(277.9) Unspecified disorder of metabolism', '(277.9) Unspecified disorder of metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Amyloidosis (277.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Amyloidosis (277.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.3''', NULL, + 'Amyloidosis (277.3)', 'Amyloidosis (277.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Amyloidosis (277.3)\(277.30) Amyloidosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Amyloidosis (277.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Amyloidosis (277.3)\(277.30) Amyloidosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.30''', NULL, + '(277.30) Amyloidosis, unspecified', '(277.30) Amyloidosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Amyloidosis (277.3)\(277.31) Familial Mediterranean fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Amyloidosis (277.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Amyloidosis (277.3)\(277.31) Familial Mediterranean fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.31''', NULL, + '(277.31) Familial Mediterranean fever', '(277.31) Familial Mediterranean fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Amyloidosis (277.3)\(277.39) Other amyloidosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Amyloidosis (277.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Amyloidosis (277.3)\(277.39) Other amyloidosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.39''', NULL, + '(277.39) Other amyloidosis', '(277.39) Other amyloidosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.0''', NULL, + 'Cystic fibrosis (277.0)', 'Cystic fibrosis (277.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\(277.00) Cystic fibrosis without mention of meconium ileus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\(277.00) Cystic fibrosis without mention of meconium ileus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.00''', NULL, + '(277.00) Cystic fibrosis without mention of meconium ileus', '(277.00) Cystic fibrosis without mention of meconium ileus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\(277.01) Cystic fibrosis with meconium ileus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\(277.01) Cystic fibrosis with meconium ileus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.01''', NULL, + '(277.01) Cystic fibrosis with meconium ileus', '(277.01) Cystic fibrosis with meconium ileus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\(277.02) Cystic fibrosis with pulmonary manifestations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\(277.02) Cystic fibrosis with pulmonary manifestations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.02''', NULL, + '(277.02) Cystic fibrosis with pulmonary manifestations', '(277.02) Cystic fibrosis with pulmonary manifestations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\(277.03) Cystic fibrosis with gastrointestinal manifestations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\(277.03) Cystic fibrosis with gastrointestinal manifestations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.03''', NULL, + '(277.03) Cystic fibrosis with gastrointestinal manifestations', '(277.03) Cystic fibrosis with gastrointestinal manifestations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\(277.09) Cystic fibrosis with other manifestations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Cystic fibrosis (277.0)\(277.09) Cystic fibrosis with other manifestations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.09''', NULL, + '(277.09) Cystic fibrosis with other manifestations', '(277.09) Cystic fibrosis with other manifestations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.8''', NULL, + 'Other specified disorders of metabolism (277.8)', 'Other specified disorders of metabolism (277.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.81) Primary carnitine deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.81) Primary carnitine deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.81''', NULL, + '(277.81) Primary carnitine deficiency', '(277.81) Primary carnitine deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.82) Carnitine deficiency due to inborn errors of metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.82) Carnitine deficiency due to inborn errors of metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.82''', NULL, + '(277.82) Carnitine deficiency due to inborn errors of metabolism', '(277.82) Carnitine deficiency due to inborn errors of metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.83) Iatrogenic carnitine deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.83) Iatrogenic carnitine deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.83''', NULL, + '(277.83) Iatrogenic carnitine deficiency', '(277.83) Iatrogenic carnitine deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.84) Other secondary carnitine deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.84) Other secondary carnitine deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.84''', NULL, + '(277.84) Other secondary carnitine deficiency', '(277.84) Other secondary carnitine deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.85) Disorders of fatty acid oxidation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.85) Disorders of fatty acid oxidation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.85''', NULL, + '(277.85) Disorders of fatty acid oxidation', '(277.85) Disorders of fatty acid oxidation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.86) Peroxisomal disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.86) Peroxisomal disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.86''', NULL, + '(277.86) Peroxisomal disorders', '(277.86) Peroxisomal disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.87) Disorders of mitochondrial metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.87) Disorders of mitochondrial metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.87''', NULL, + '(277.87) Disorders of mitochondrial metabolism', '(277.87) Disorders of mitochondrial metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.88) Tumor lysis syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.88) Tumor lysis syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.88''', NULL, + '(277.88) Tumor lysis syndrome', '(277.88) Tumor lysis syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.89) Other specified disorders of metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Other and unspecified disorders of metabolism (277)\Other specified disorders of metabolism (277.8)\(277.89) Other specified disorders of metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''277.89''', NULL, + '(277.89) Other specified disorders of metabolism', '(277.89) Other specified disorders of metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''278''', NULL, + 'Overweight, obesity and other hyperalimentation (278)', 'Overweight, obesity and other hyperalimentation (278)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\(278.1) Localized adiposity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\(278.1) Localized adiposity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''278.1''', NULL, + '(278.1) Localized adiposity', '(278.1) Localized adiposity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\(278.2) Hypervitaminosis A\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\(278.2) Hypervitaminosis A\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''278.2''', NULL, + '(278.2) Hypervitaminosis A', '(278.2) Hypervitaminosis A', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\(278.3) Hypercarotinemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\(278.3) Hypercarotinemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''278.3''', NULL, + '(278.3) Hypercarotinemia', '(278.3) Hypercarotinemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\(278.4) Hypervitaminosis D\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\(278.4) Hypervitaminosis D\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''278.4''', NULL, + '(278.4) Hypervitaminosis D', '(278.4) Hypervitaminosis D', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\(278.8) Other hyperalimentation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\(278.8) Other hyperalimentation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''278.8''', NULL, + '(278.8) Other hyperalimentation', '(278.8) Other hyperalimentation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''278.0''', NULL, + 'Overweight and obesity (278.0)', 'Overweight and obesity (278.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\(278.00) Obesity, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\(278.00) Obesity, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''278.00''', NULL, + '(278.00) Obesity, unspecified', '(278.00) Obesity, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\(278.01) Morbid obesity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\(278.01) Morbid obesity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''278.01''', NULL, + '(278.01) Morbid obesity', '(278.01) Morbid obesity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\(278.02) Overweight\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\(278.02) Overweight\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''278.02''', NULL, + '(278.02) Overweight', '(278.02) Overweight', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\(278.03) Obesity hypoventilation syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\Other metabolic and immunity disorders (270-279.99)\Overweight, obesity and other hyperalimentation (278)\Overweight and obesity (278.0)\(278.03) Obesity hypoventilation syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''278.03''', NULL, + '(278.03) Obesity hypoventilation syndrome', '(278.03) Obesity hypoventilation syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''001'' AND ''139.99''', NULL, + 'Infectious and parasitic diseases (001-139.99)', 'Infectious and parasitic diseases (001-139.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''060'' AND ''066.99''', NULL, + 'Arthropod-Borne viral diseases (060-066.99)', 'Arthropod-Borne viral diseases (060-066.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\(061) Dengue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\(061) Dengue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''061''', NULL, + '(061) Dengue', '(061) Dengue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\(064) Viral encephalitis transmitted by other and unspecified arthropods\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\(064) Viral encephalitis transmitted by other and unspecified arthropods\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''064''', NULL, + '(064) Viral encephalitis transmitted by other and unspecified arthropods', '(064) Viral encephalitis transmitted by other and unspecified arthropods', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''065''', NULL, + 'Arthropod-borne hemorrhagic fever (065)', 'Arthropod-borne hemorrhagic fever (065)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.0) Crimean hemorrhagic fever [CHF Congo virus]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.0) Crimean hemorrhagic fever [CHF Congo virus]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''065.0''', NULL, + '(065.0) Crimean hemorrhagic fever [CHF Congo virus]', '(065.0) Crimean hemorrhagic fever [CHF Congo virus]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.1) Omsk hemorrhagic fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.1) Omsk hemorrhagic fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''065.1''', NULL, + '(065.1) Omsk hemorrhagic fever', '(065.1) Omsk hemorrhagic fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.2) Kyasanur forest disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.2) Kyasanur forest disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''065.2''', NULL, + '(065.2) Kyasanur forest disease', '(065.2) Kyasanur forest disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.3) Other tick-borne hemorrhagic fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.3) Other tick-borne hemorrhagic fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''065.3''', NULL, + '(065.3) Other tick-borne hemorrhagic fever', '(065.3) Other tick-borne hemorrhagic fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.4) Mosquito-borne hemorrhagic fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.4) Mosquito-borne hemorrhagic fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''065.4''', NULL, + '(065.4) Mosquito-borne hemorrhagic fever', '(065.4) Mosquito-borne hemorrhagic fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.8) Other specified arthropod-borne hemorrhagic fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.8) Other specified arthropod-borne hemorrhagic fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''065.8''', NULL, + '(065.8) Other specified arthropod-borne hemorrhagic fever', '(065.8) Other specified arthropod-borne hemorrhagic fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.9) Arthropod-borne hemorrhagic fever, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Arthropod-borne hemorrhagic fever (065)\(065.9) Arthropod-borne hemorrhagic fever, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''065.9''', NULL, + '(065.9) Arthropod-borne hemorrhagic fever, unspecified', '(065.9) Arthropod-borne hemorrhagic fever, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''062''', NULL, + 'Mosquito-borne viral encephalitis (062)', 'Mosquito-borne viral encephalitis (062)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.0) Japanese encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.0) Japanese encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''062.0''', NULL, + '(062.0) Japanese encephalitis', '(062.0) Japanese encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.1) Western equine encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.1) Western equine encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''062.1''', NULL, + '(062.1) Western equine encephalitis', '(062.1) Western equine encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.2) Eastern equine encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.2) Eastern equine encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''062.2''', NULL, + '(062.2) Eastern equine encephalitis', '(062.2) Eastern equine encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.3) St. Louis encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.3) St. Louis encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''062.3''', NULL, + '(062.3) St. Louis encephalitis', '(062.3) St. Louis encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.4) Australian encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.4) Australian encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''062.4''', NULL, + '(062.4) Australian encephalitis', '(062.4) Australian encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.5) California virus encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.5) California virus encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''062.5''', NULL, + '(062.5) California virus encephalitis', '(062.5) California virus encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.8) Other specified mosquito-borne viral encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.8) Other specified mosquito-borne viral encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''062.8''', NULL, + '(062.8) Other specified mosquito-borne viral encephalitis', '(062.8) Other specified mosquito-borne viral encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.9) Mosquito-borne viral encephalitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Mosquito-borne viral encephalitis (062)\(062.9) Mosquito-borne viral encephalitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''062.9''', NULL, + '(062.9) Mosquito-borne viral encephalitis, unspecified', '(062.9) Mosquito-borne viral encephalitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066''', NULL, + 'Other arthropod-borne viral diseases (066)', 'Other arthropod-borne viral diseases (066)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.0) Phlebotomus fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.0) Phlebotomus fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066.0''', NULL, + '(066.0) Phlebotomus fever', '(066.0) Phlebotomus fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.1) Tick-borne fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.1) Tick-borne fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066.1''', NULL, + '(066.1) Tick-borne fever', '(066.1) Tick-borne fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.2) Venezuelan equine fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.2) Venezuelan equine fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066.2''', NULL, + '(066.2) Venezuelan equine fever', '(066.2) Venezuelan equine fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.3) Other mosquito-borne fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.3) Other mosquito-borne fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066.3''', NULL, + '(066.3) Other mosquito-borne fever', '(066.3) Other mosquito-borne fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.8) Other specified arthropod-borne viral diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.8) Other specified arthropod-borne viral diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066.8''', NULL, + '(066.8) Other specified arthropod-borne viral diseases', '(066.8) Other specified arthropod-borne viral diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.9) Arthropod-borne viral disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\(066.9) Arthropod-borne viral disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066.9''', NULL, + '(066.9) Arthropod-borne viral disease, unspecified', '(066.9) Arthropod-borne viral disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066.4''', NULL, + 'West Nile fever (066.4)', 'West Nile fever (066.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\(066.40) West Nile Fever, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\(066.40) West Nile Fever, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066.40''', NULL, + '(066.40) West Nile Fever, unspecified', '(066.40) West Nile Fever, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\(066.41) West Nile Fever with encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\(066.41) West Nile Fever with encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066.41''', NULL, + '(066.41) West Nile Fever with encephalitis', '(066.41) West Nile Fever with encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\(066.42) West Nile Fever with other neurologic manifestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\(066.42) West Nile Fever with other neurologic manifestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066.42''', NULL, + '(066.42) West Nile Fever with other neurologic manifestation', '(066.42) West Nile Fever with other neurologic manifestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\(066.49) West Nile Fever with other complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Other arthropod-borne viral diseases (066)\West Nile fever (066.4)\(066.49) West Nile Fever with other complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''066.49''', NULL, + '(066.49) West Nile Fever with other complications', '(066.49) West Nile Fever with other complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''063''', NULL, + 'Tick-borne viral encephalitis (063)', 'Tick-borne viral encephalitis (063)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\(063.0) Russian spring-summer [taiga] encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\(063.0) Russian spring-summer [taiga] encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''063.0''', NULL, + '(063.0) Russian spring-summer [taiga] encephalitis', '(063.0) Russian spring-summer [taiga] encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\(063.1) Louping ill\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\(063.1) Louping ill\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''063.1''', NULL, + '(063.1) Louping ill', '(063.1) Louping ill', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\(063.2) Central european encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\(063.2) Central european encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''063.2''', NULL, + '(063.2) Central european encephalitis', '(063.2) Central european encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\(063.8) Other specified tick-borne viral encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\(063.8) Other specified tick-borne viral encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''063.8''', NULL, + '(063.8) Other specified tick-borne viral encephalitis', '(063.8) Other specified tick-borne viral encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\(063.9) Tick-borne viral encephalitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Tick-borne viral encephalitis (063)\(063.9) Tick-borne viral encephalitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''063.9''', NULL, + '(063.9) Tick-borne viral encephalitis, unspecified', '(063.9) Tick-borne viral encephalitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Yellow fever (060)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Yellow fever (060)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''060''', NULL, + 'Yellow fever (060)', 'Yellow fever (060)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Yellow fever (060)\(060.0) Sylvatic yellow fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Yellow fever (060)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Yellow fever (060)\(060.0) Sylvatic yellow fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''060.0''', NULL, + '(060.0) Sylvatic yellow fever', '(060.0) Sylvatic yellow fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Yellow fever (060)\(060.1) Urban yellow fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Yellow fever (060)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Yellow fever (060)\(060.1) Urban yellow fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''060.1''', NULL, + '(060.1) Urban yellow fever', '(060.1) Urban yellow fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Yellow fever (060)\(060.9) Yellow fever, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Yellow fever (060)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Arthropod-Borne viral diseases (060-066.99)\Yellow fever (060)\(060.9) Yellow fever, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''060.9''', NULL, + '(060.9) Yellow fever, unspecified', '(060.9) Yellow fever, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''120'' AND ''129.99''', NULL, + 'Helminthiases (120-129.99)', 'Helminthiases (120-129.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\(124) Trichinosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\(124) Trichinosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''124''', NULL, + '(124) Trichinosis', '(124) Trichinosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\(129) Intestinal parasitism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\(129) Intestinal parasitism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''129''', NULL, + '(129) Intestinal parasitism, unspecified', '(129) Intestinal parasitism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''126''', NULL, + 'Ancylostomiasis and necatoriasis (126)', 'Ancylostomiasis and necatoriasis (126)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.0) Ancylostomiasis due to ancylostoma duodenale\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.0) Ancylostomiasis due to ancylostoma duodenale\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''126.0''', NULL, + '(126.0) Ancylostomiasis due to ancylostoma duodenale', '(126.0) Ancylostomiasis due to ancylostoma duodenale', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.1) Necatoriasis due to necator americanus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.1) Necatoriasis due to necator americanus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''126.1''', NULL, + '(126.1) Necatoriasis due to necator americanus', '(126.1) Necatoriasis due to necator americanus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.2) Ancylostomiasis due to ancylostoma braziliense\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.2) Ancylostomiasis due to ancylostoma braziliense\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''126.2''', NULL, + '(126.2) Ancylostomiasis due to ancylostoma braziliense', '(126.2) Ancylostomiasis due to ancylostoma braziliense', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.3) Ancylostomiasis due to ancylostoma ceylanicum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.3) Ancylostomiasis due to ancylostoma ceylanicum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''126.3''', NULL, + '(126.3) Ancylostomiasis due to ancylostoma ceylanicum', '(126.3) Ancylostomiasis due to ancylostoma ceylanicum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.8) Other specified ancylostoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.8) Other specified ancylostoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''126.8''', NULL, + '(126.8) Other specified ancylostoma', '(126.8) Other specified ancylostoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.9) Ancylostomiasis and necatoriasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Ancylostomiasis and necatoriasis (126)\(126.9) Ancylostomiasis and necatoriasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''126.9''', NULL, + '(126.9) Ancylostomiasis and necatoriasis, unspecified', '(126.9) Ancylostomiasis and necatoriasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''122''', NULL, + 'Echinococcosis (122)', 'Echinococcosis (122)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.0) Echinococcus granulosus infection of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.0) Echinococcus granulosus infection of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''122.0''', NULL, + '(122.0) Echinococcus granulosus infection of liver', '(122.0) Echinococcus granulosus infection of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.1) Echinococcus granulosus infection of lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.1) Echinococcus granulosus infection of lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''122.1''', NULL, + '(122.1) Echinococcus granulosus infection of lung', '(122.1) Echinococcus granulosus infection of lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.2) Echinococcus granulosus infection of thyroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.2) Echinococcus granulosus infection of thyroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''122.2''', NULL, + '(122.2) Echinococcus granulosus infection of thyroid', '(122.2) Echinococcus granulosus infection of thyroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.3) Echinococcus granulosus infection, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.3) Echinococcus granulosus infection, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''122.3''', NULL, + '(122.3) Echinococcus granulosus infection, other', '(122.3) Echinococcus granulosus infection, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.4) Echinococcus granulosus infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.4) Echinococcus granulosus infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''122.4''', NULL, + '(122.4) Echinococcus granulosus infection, unspecified', '(122.4) Echinococcus granulosus infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.5) Echinococcus multilocularis infection of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.5) Echinococcus multilocularis infection of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''122.5''', NULL, + '(122.5) Echinococcus multilocularis infection of liver', '(122.5) Echinococcus multilocularis infection of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.6) Echinococcus multilocularis infection, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.6) Echinococcus multilocularis infection, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''122.6''', NULL, + '(122.6) Echinococcus multilocularis infection, other', '(122.6) Echinococcus multilocularis infection, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.7) Echinococcus multilocularis infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.7) Echinococcus multilocularis infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''122.7''', NULL, + '(122.7) Echinococcus multilocularis infection, unspecified', '(122.7) Echinococcus multilocularis infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.8) Echinococcosis, unspecified, of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.8) Echinococcosis, unspecified, of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''122.8''', NULL, + '(122.8) Echinococcosis, unspecified, of liver', '(122.8) Echinococcosis, unspecified, of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.9) Echinococcosis, other and unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Echinococcosis (122)\(122.9) Echinococcosis, other and unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''122.9''', NULL, + '(122.9) Echinococcosis, other and unspecified', '(122.9) Echinococcosis, other and unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''125''', NULL, + 'Filarial infection and dracontiasis (125)', 'Filarial infection and dracontiasis (125)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.0) Bancroftian filariasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.0) Bancroftian filariasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''125.0''', NULL, + '(125.0) Bancroftian filariasis', '(125.0) Bancroftian filariasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.1) Malayan filariasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.1) Malayan filariasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''125.1''', NULL, + '(125.1) Malayan filariasis', '(125.1) Malayan filariasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.2) Loiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.2) Loiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''125.2''', NULL, + '(125.2) Loiasis', '(125.2) Loiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.3) Onchocerciasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.3) Onchocerciasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''125.3''', NULL, + '(125.3) Onchocerciasis', '(125.3) Onchocerciasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.4) Dipetalonemiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.4) Dipetalonemiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''125.4''', NULL, + '(125.4) Dipetalonemiasis', '(125.4) Dipetalonemiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.5) Mansonella ozzardi infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.5) Mansonella ozzardi infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''125.5''', NULL, + '(125.5) Mansonella ozzardi infection', '(125.5) Mansonella ozzardi infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.6) Other specified filariasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.6) Other specified filariasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''125.6''', NULL, + '(125.6) Other specified filariasis', '(125.6) Other specified filariasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.7) Dracontiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.7) Dracontiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''125.7''', NULL, + '(125.7) Dracontiasis', '(125.7) Dracontiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.9) Unspecified filariasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Filarial infection and dracontiasis (125)\(125.9) Unspecified filariasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''125.9''', NULL, + '(125.9) Unspecified filariasis', '(125.9) Unspecified filariasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''128''', NULL, + 'Other and unspecified helminthiases (128)', 'Other and unspecified helminthiases (128)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\(128.0) Toxocariasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\(128.0) Toxocariasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''128.0''', NULL, + '(128.0) Toxocariasis', '(128.0) Toxocariasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\(128.1) Gnathostomiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\(128.1) Gnathostomiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''128.1''', NULL, + '(128.1) Gnathostomiasis', '(128.1) Gnathostomiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\(128.8) Other specified helminthiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\(128.8) Other specified helminthiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''128.8''', NULL, + '(128.8) Other specified helminthiasis', '(128.8) Other specified helminthiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\(128.9) Helminth infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other and unspecified helminthiases (128)\(128.9) Helminth infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''128.9''', NULL, + '(128.9) Helminth infection, unspecified', '(128.9) Helminth infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''123''', NULL, + 'Other cestode infection (123)', 'Other cestode infection (123)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.0) Taenia solium infection, intestinal form\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.0) Taenia solium infection, intestinal form\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''123.0''', NULL, + '(123.0) Taenia solium infection, intestinal form', '(123.0) Taenia solium infection, intestinal form', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.1) Cysticercosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.1) Cysticercosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''123.1''', NULL, + '(123.1) Cysticercosis', '(123.1) Cysticercosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.2) Taenia saginata infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.2) Taenia saginata infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''123.2''', NULL, + '(123.2) Taenia saginata infection', '(123.2) Taenia saginata infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.3) Taeniasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.3) Taeniasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''123.3''', NULL, + '(123.3) Taeniasis, unspecified', '(123.3) Taeniasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.4) Diphyllobothriasis, intestinal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.4) Diphyllobothriasis, intestinal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''123.4''', NULL, + '(123.4) Diphyllobothriasis, intestinal', '(123.4) Diphyllobothriasis, intestinal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.5) Sparganosis [larval diphyllobothriasis]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.5) Sparganosis [larval diphyllobothriasis]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''123.5''', NULL, + '(123.5) Sparganosis [larval diphyllobothriasis]', '(123.5) Sparganosis [larval diphyllobothriasis]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.6) Hymenolepiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.6) Hymenolepiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''123.6''', NULL, + '(123.6) Hymenolepiasis', '(123.6) Hymenolepiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.8) Other specified cestode infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.8) Other specified cestode infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''123.8''', NULL, + '(123.8) Other specified cestode infection', '(123.8) Other specified cestode infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.9) Cestode infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other cestode infection (123)\(123.9) Cestode infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''123.9''', NULL, + '(123.9) Cestode infection, unspecified', '(123.9) Cestode infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''127''', NULL, + 'Other intestinal helminthiases (127)', 'Other intestinal helminthiases (127)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.0) Ascariasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.0) Ascariasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''127.0''', NULL, + '(127.0) Ascariasis', '(127.0) Ascariasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.1) Anisakiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.1) Anisakiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''127.1''', NULL, + '(127.1) Anisakiasis', '(127.1) Anisakiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.2) Strongyloidiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.2) Strongyloidiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''127.2''', NULL, + '(127.2) Strongyloidiasis', '(127.2) Strongyloidiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.3) Trichuriasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.3) Trichuriasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''127.3''', NULL, + '(127.3) Trichuriasis', '(127.3) Trichuriasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.4) Enterobiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.4) Enterobiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''127.4''', NULL, + '(127.4) Enterobiasis', '(127.4) Enterobiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.5) Capillariasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.5) Capillariasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''127.5''', NULL, + '(127.5) Capillariasis', '(127.5) Capillariasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.6) Trichostrongyliasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.6) Trichostrongyliasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''127.6''', NULL, + '(127.6) Trichostrongyliasis', '(127.6) Trichostrongyliasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.7) Other specified intestinal helminthiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.7) Other specified intestinal helminthiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''127.7''', NULL, + '(127.7) Other specified intestinal helminthiasis', '(127.7) Other specified intestinal helminthiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.8) Mixed intestinal helminthiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.8) Mixed intestinal helminthiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''127.8''', NULL, + '(127.8) Mixed intestinal helminthiasis', '(127.8) Mixed intestinal helminthiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.9) Intestinal helminthiasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other intestinal helminthiases (127)\(127.9) Intestinal helminthiasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''127.9''', NULL, + '(127.9) Intestinal helminthiasis, unspecified', '(127.9) Intestinal helminthiasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''121''', NULL, + 'Other trematode infections (121)', 'Other trematode infections (121)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.0) Opisthorchiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.0) Opisthorchiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''121.0''', NULL, + '(121.0) Opisthorchiasis', '(121.0) Opisthorchiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.1) Clonorchiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.1) Clonorchiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''121.1''', NULL, + '(121.1) Clonorchiasis', '(121.1) Clonorchiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.2) Paragonimiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.2) Paragonimiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''121.2''', NULL, + '(121.2) Paragonimiasis', '(121.2) Paragonimiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.3) Fascioliasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.3) Fascioliasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''121.3''', NULL, + '(121.3) Fascioliasis', '(121.3) Fascioliasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.4) Fasciolopsiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.4) Fasciolopsiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''121.4''', NULL, + '(121.4) Fasciolopsiasis', '(121.4) Fasciolopsiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.5) Metagonimiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.5) Metagonimiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''121.5''', NULL, + '(121.5) Metagonimiasis', '(121.5) Metagonimiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.6) Heterophyiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.6) Heterophyiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''121.6''', NULL, + '(121.6) Heterophyiasis', '(121.6) Heterophyiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.8) Other specified trematode infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.8) Other specified trematode infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''121.8''', NULL, + '(121.8) Other specified trematode infections', '(121.8) Other specified trematode infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.9) Trematode infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Other trematode infections (121)\(121.9) Trematode infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''121.9''', NULL, + '(121.9) Trematode infection, unspecified', '(121.9) Trematode infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''120''', NULL, + 'Schistosomiasis [bilharziasis] (120)', 'Schistosomiasis [bilharziasis] (120)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.0) Schistosomiasis due to schistosoma haematobium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.0) Schistosomiasis due to schistosoma haematobium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''120.0''', NULL, + '(120.0) Schistosomiasis due to schistosoma haematobium', '(120.0) Schistosomiasis due to schistosoma haematobium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.1) Schistosomiasis due to schistosoma mansoni\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.1) Schistosomiasis due to schistosoma mansoni\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''120.1''', NULL, + '(120.1) Schistosomiasis due to schistosoma mansoni', '(120.1) Schistosomiasis due to schistosoma mansoni', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.2) Schistosomiasis due to schistosoma japonicum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.2) Schistosomiasis due to schistosoma japonicum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''120.2''', NULL, + '(120.2) Schistosomiasis due to schistosoma japonicum', '(120.2) Schistosomiasis due to schistosoma japonicum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.3) Cutaneous schistosomiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.3) Cutaneous schistosomiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''120.3''', NULL, + '(120.3) Cutaneous schistosomiasis', '(120.3) Cutaneous schistosomiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.8) Other specified schistosomiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.8) Other specified schistosomiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''120.8''', NULL, + '(120.8) Other specified schistosomiasis', '(120.8) Other specified schistosomiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.9) Schistosomiasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Helminthiases (120-129.99)\Schistosomiasis [bilharziasis] (120)\(120.9) Schistosomiasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''120.9''', NULL, + '(120.9) Schistosomiasis, unspecified', '(120.9) Schistosomiasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Human immunodeficiency virus [hiv] infection (042-042.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Human immunodeficiency virus [hiv] infection (042-042.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''042'' AND ''042.99''', NULL, + 'Human immunodeficiency virus [hiv] infection (042-042.99)', 'Human immunodeficiency virus [hiv] infection (042-042.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Human immunodeficiency virus [hiv] infection (042-042.99)\(042) Human immunodeficiency virus [HIV] disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Human immunodeficiency virus [hiv] infection (042-042.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Human immunodeficiency virus [hiv] infection (042-042.99)\(042) Human immunodeficiency virus [HIV] disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''042''', NULL, + '(042) Human immunodeficiency virus [HIV] disease', '(042) Human immunodeficiency virus [HIV] disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''001'' AND ''009.99''', NULL, + 'Intestinal infectious diseases (001-009.99)', 'Intestinal infectious diseases (001-009.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''006''', NULL, + 'Amebiasis (006)', 'Amebiasis (006)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.0) Acute amebic dysentery without mention of abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.0) Acute amebic dysentery without mention of abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''006.0''', NULL, + '(006.0) Acute amebic dysentery without mention of abscess', '(006.0) Acute amebic dysentery without mention of abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.1) Chronic intestinal amebiasis without mention of abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.1) Chronic intestinal amebiasis without mention of abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''006.1''', NULL, + '(006.1) Chronic intestinal amebiasis without mention of abscess', '(006.1) Chronic intestinal amebiasis without mention of abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.2) Amebic nondysenteric colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.2) Amebic nondysenteric colitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''006.2''', NULL, + '(006.2) Amebic nondysenteric colitis', '(006.2) Amebic nondysenteric colitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.3) Amebic liver abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.3) Amebic liver abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''006.3''', NULL, + '(006.3) Amebic liver abscess', '(006.3) Amebic liver abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.4) Amebic lung abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.4) Amebic lung abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''006.4''', NULL, + '(006.4) Amebic lung abscess', '(006.4) Amebic lung abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.5) Amebic brain abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.5) Amebic brain abscess\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''006.5''', NULL, + '(006.5) Amebic brain abscess', '(006.5) Amebic brain abscess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.6) Amebic skin ulceration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.6) Amebic skin ulceration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''006.6''', NULL, + '(006.6) Amebic skin ulceration', '(006.6) Amebic skin ulceration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.8) Amebic infection of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.8) Amebic infection of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''006.8''', NULL, + '(006.8) Amebic infection of other sites', '(006.8) Amebic infection of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.9) Amebiasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Amebiasis (006)\(006.9) Amebiasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''006.9''', NULL, + '(006.9) Amebiasis, unspecified', '(006.9) Amebiasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Cholera (001)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Cholera (001)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''001''', NULL, + 'Cholera (001)', 'Cholera (001)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Cholera (001)\(001.0) Cholera due to vibrio cholerae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Cholera (001)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Cholera (001)\(001.0) Cholera due to vibrio cholerae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''001.0''', NULL, + '(001.0) Cholera due to vibrio cholerae', '(001.0) Cholera due to vibrio cholerae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Cholera (001)\(001.1) Cholera due to vibrio cholerae el tor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Cholera (001)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Cholera (001)\(001.1) Cholera due to vibrio cholerae el tor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''001.1''', NULL, + '(001.1) Cholera due to vibrio cholerae el tor', '(001.1) Cholera due to vibrio cholerae el tor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Cholera (001)\(001.9) Cholera, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Cholera (001)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Cholera (001)\(001.9) Cholera, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''001.9''', NULL, + '(001.9) Cholera, unspecified', '(001.9) Cholera, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''009''', NULL, + 'Ill-defined intestinal infections (009)', 'Ill-defined intestinal infections (009)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\(009.0) Infectious colitis, enteritis, and gastroenteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\(009.0) Infectious colitis, enteritis, and gastroenteritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''009.0''', NULL, + '(009.0) Infectious colitis, enteritis, and gastroenteritis', '(009.0) Infectious colitis, enteritis, and gastroenteritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\(009.1) Colitis, enteritis, and gastroenteritis of presumed infectious origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\(009.1) Colitis, enteritis, and gastroenteritis of presumed infectious origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''009.1''', NULL, + '(009.1) Colitis, enteritis, and gastroenteritis of presumed infectious origin', '(009.1) Colitis, enteritis, and gastroenteritis of presumed infectious origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\(009.2) Infectious diarrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\(009.2) Infectious diarrhea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''009.2''', NULL, + '(009.2) Infectious diarrhea', '(009.2) Infectious diarrhea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\(009.3) Diarrhea of presumed infectious origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Ill-defined intestinal infections (009)\(009.3) Diarrhea of presumed infectious origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''009.3''', NULL, + '(009.3) Diarrhea of presumed infectious origin', '(009.3) Diarrhea of presumed infectious origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008''', NULL, + 'Intestinal infections due to other organisms (008)', 'Intestinal infections due to other organisms (008)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\(008.1) Intestinal infection due to arizona group of paracolon bacilli\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\(008.1) Intestinal infection due to arizona group of paracolon bacilli\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.1''', NULL, + '(008.1) Intestinal infection due to arizona group of paracolon bacilli', '(008.1) Intestinal infection due to arizona group of paracolon bacilli', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\(008.2) Intestinal infection due to aerobacter aerogenes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\(008.2) Intestinal infection due to aerobacter aerogenes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.2''', NULL, + '(008.2) Intestinal infection due to aerobacter aerogenes', '(008.2) Intestinal infection due to aerobacter aerogenes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\(008.3) Intestinal infection due to proteus (mirabilis) (morganii)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\(008.3) Intestinal infection due to proteus (mirabilis) (morganii)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.3) Intestinal infection due to proteus (mirabilis) (morganii''', NULL, + '(008.3) Intestinal infection due to proteus (mirabilis) (morganii)', '(008.3) Intestinal infection due to proteus (mirabilis) (morganii)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\(008.5) Bacterial enteritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\(008.5) Bacterial enteritis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.5''', NULL, + '(008.5) Bacterial enteritis, unspecified', '(008.5) Bacterial enteritis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\(008.8) Intestinal infection due to other organism, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\(008.8) Intestinal infection due to other organism, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.8''', NULL, + '(008.8) Intestinal infection due to other organism, not elsewhere classified', '(008.8) Intestinal infection due to other organism, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.6''', NULL, + 'Enteritis due to specified virus (008.6)', 'Enteritis due to specified virus (008.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.61) Enteritis due to rotavirus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.61) Enteritis due to rotavirus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.61''', NULL, + '(008.61) Enteritis due to rotavirus', '(008.61) Enteritis due to rotavirus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.62) Enteritis due to adenovirus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.62) Enteritis due to adenovirus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.62''', NULL, + '(008.62) Enteritis due to adenovirus', '(008.62) Enteritis due to adenovirus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.63) Enteritis due to norwalk virus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.63) Enteritis due to norwalk virus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.63''', NULL, + '(008.63) Enteritis due to norwalk virus', '(008.63) Enteritis due to norwalk virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.64) Enteritis due to other small round viruses [SRV''s]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.64) Enteritis due to other small round viruses [SRV''s]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.64''', NULL, + '(008.64) Enteritis due to other small round viruses [SRV''s]', '(008.64) Enteritis due to other small round viruses [SRV''s]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.65) Enteritis due to calicivirus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.65) Enteritis due to calicivirus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.65''', NULL, + '(008.65) Enteritis due to calicivirus', '(008.65) Enteritis due to calicivirus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.66) Enteritis due to astrovirus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.66) Enteritis due to astrovirus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.66''', NULL, + '(008.66) Enteritis due to astrovirus', '(008.66) Enteritis due to astrovirus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.67) Enteritis due to enterovirus nec\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.67) Enteritis due to enterovirus nec\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.67''', NULL, + '(008.67) Enteritis due to enterovirus nec', '(008.67) Enteritis due to enterovirus nec', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.69) Enteritis due to other viral enteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Enteritis due to specified virus (008.6)\(008.69) Enteritis due to other viral enteritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.69''', NULL, + '(008.69) Enteritis due to other viral enteritis', '(008.69) Enteritis due to other viral enteritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.0''', NULL, + 'Intestinal infection due to escherichia coli [E. coli] (008.0)', 'Intestinal infection due to escherichia coli [E. coli] (008.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.00) Intestinal infection due to E. coli, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.00) Intestinal infection due to E. coli, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.00''', NULL, + '(008.00) Intestinal infection due to E. coli, unspecified', '(008.00) Intestinal infection due to E. coli, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.01) Intestinal infection due to enteropathogenic E. coli\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.01) Intestinal infection due to enteropathogenic E. coli\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.01''', NULL, + '(008.01) Intestinal infection due to enteropathogenic E. coli', '(008.01) Intestinal infection due to enteropathogenic E. coli', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.02) Intestinal infection due to enterotoxigenic E. coli\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.02) Intestinal infection due to enterotoxigenic E. coli\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.02''', NULL, + '(008.02) Intestinal infection due to enterotoxigenic E. coli', '(008.02) Intestinal infection due to enterotoxigenic E. coli', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.03) Intestinal infection due to enteroinvasive E. coli\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.03) Intestinal infection due to enteroinvasive E. coli\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.03''', NULL, + '(008.03) Intestinal infection due to enteroinvasive E. coli', '(008.03) Intestinal infection due to enteroinvasive E. coli', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.04) Intestinal infection due to enterohemorrhagic E. coli\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.04) Intestinal infection due to enterohemorrhagic E. coli\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.04''', NULL, + '(008.04) Intestinal infection due to enterohemorrhagic E. coli', '(008.04) Intestinal infection due to enterohemorrhagic E. coli', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.09) Intestinal infection due to other intestinal E. coli infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to escherichia coli [E. coli] (008.0)\(008.09) Intestinal infection due to other intestinal E. coli infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.09''', NULL, + '(008.09) Intestinal infection due to other intestinal E. coli infections', '(008.09) Intestinal infection due to other intestinal E. coli infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.4''', NULL, + 'Intestinal infection due to other specified bacteria (008.4)', 'Intestinal infection due to other specified bacteria (008.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.41) Intestinal infection due to staphylococcus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.41) Intestinal infection due to staphylococcus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.41''', NULL, + '(008.41) Intestinal infection due to staphylococcus', '(008.41) Intestinal infection due to staphylococcus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.42) Intestinal infection due to pseudomonas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.42) Intestinal infection due to pseudomonas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.42''', NULL, + '(008.42) Intestinal infection due to pseudomonas', '(008.42) Intestinal infection due to pseudomonas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.43) Intestinal infection due to campylobacter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.43) Intestinal infection due to campylobacter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.43''', NULL, + '(008.43) Intestinal infection due to campylobacter', '(008.43) Intestinal infection due to campylobacter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.44) Intestinal infection due to yersinia enterocolitica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.44) Intestinal infection due to yersinia enterocolitica\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.44''', NULL, + '(008.44) Intestinal infection due to yersinia enterocolitica', '(008.44) Intestinal infection due to yersinia enterocolitica', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.45) Intestinal infection due to Clostridium difficile\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.45) Intestinal infection due to Clostridium difficile\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.45''', NULL, + '(008.45) Intestinal infection due to Clostridium difficile', '(008.45) Intestinal infection due to Clostridium difficile', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.46) Intestinal infection due to other anaerobes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.46) Intestinal infection due to other anaerobes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.46''', NULL, + '(008.46) Intestinal infection due to other anaerobes', '(008.46) Intestinal infection due to other anaerobes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.47) Intestinal infection due to other gram-negative bacteria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.47) Intestinal infection due to other gram-negative bacteria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.47''', NULL, + '(008.47) Intestinal infection due to other gram-negative bacteria', '(008.47) Intestinal infection due to other gram-negative bacteria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.49) Intestinal infection due to other organisms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Intestinal infections due to other organisms (008)\Intestinal infection due to other specified bacteria (008.4)\(008.49) Intestinal infection due to other organisms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''008.49''', NULL, + '(008.49) Intestinal infection due to other organisms', '(008.49) Intestinal infection due to other organisms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''bacterial) (005''', NULL, + 'Other food poisoning (bacterial) (005)', 'Other food poisoning (bacterial) (005)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.0) Staphylococcal food poisoning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.0) Staphylococcal food poisoning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''005.0''', NULL, + '(005.0) Staphylococcal food poisoning', '(005.0) Staphylococcal food poisoning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.1) Botulism food poisoning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.1) Botulism food poisoning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''005.1''', NULL, + '(005.1) Botulism food poisoning', '(005.1) Botulism food poisoning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.2) Food poisoning due to Clostridium perfringens (C. welchii)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.2) Food poisoning due to Clostridium perfringens (C. welchii)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''005.2) Food poisoning due to Clostridium perfringens (C. welchii''', NULL, + '(005.2) Food poisoning due to Clostridium perfringens (C. welchii)', '(005.2) Food poisoning due to Clostridium perfringens (C. welchii)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.3) Food poisoning due to other Clostridia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.3) Food poisoning due to other Clostridia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''005.3''', NULL, + '(005.3) Food poisoning due to other Clostridia', '(005.3) Food poisoning due to other Clostridia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.4) Food poisoning due to Vibrio parahaemolyticus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.4) Food poisoning due to Vibrio parahaemolyticus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''005.4''', NULL, + '(005.4) Food poisoning due to Vibrio parahaemolyticus', '(005.4) Food poisoning due to Vibrio parahaemolyticus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.9) Food poisoning, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\(005.9) Food poisoning, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''005.9''', NULL, + '(005.9) Food poisoning, unspecified', '(005.9) Food poisoning, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\Other bacterial food poisoning (005.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\Other bacterial food poisoning (005.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''005.8''', NULL, + 'Other bacterial food poisoning (005.8)', 'Other bacterial food poisoning (005.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\Other bacterial food poisoning (005.8)\(005.81) Food poisoning due to Vibrio vulnificus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\Other bacterial food poisoning (005.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\Other bacterial food poisoning (005.8)\(005.81) Food poisoning due to Vibrio vulnificus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''005.81''', NULL, + '(005.81) Food poisoning due to Vibrio vulnificus', '(005.81) Food poisoning due to Vibrio vulnificus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\Other bacterial food poisoning (005.8)\(005.89) Other bacterial food poisoning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\Other bacterial food poisoning (005.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other food poisoning (bacterial) (005)\Other bacterial food poisoning (005.8)\(005.89) Other bacterial food poisoning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''005.89''', NULL, + '(005.89) Other bacterial food poisoning', '(005.89) Other bacterial food poisoning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''007''', NULL, + 'Other protozoal intestinal diseases (007)', 'Other protozoal intestinal diseases (007)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.0) Balantidiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.0) Balantidiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''007.0''', NULL, + '(007.0) Balantidiasis', '(007.0) Balantidiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.1) Giardiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.1) Giardiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''007.1''', NULL, + '(007.1) Giardiasis', '(007.1) Giardiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.2) Coccidiosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.2) Coccidiosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''007.2''', NULL, + '(007.2) Coccidiosis', '(007.2) Coccidiosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.3) Intestinal trichomoniasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.3) Intestinal trichomoniasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''007.3''', NULL, + '(007.3) Intestinal trichomoniasis', '(007.3) Intestinal trichomoniasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.4) Cryptosporidiosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.4) Cryptosporidiosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''007.4''', NULL, + '(007.4) Cryptosporidiosis', '(007.4) Cryptosporidiosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.5) Cyclosporiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.5) Cyclosporiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''007.5''', NULL, + '(007.5) Cyclosporiasis', '(007.5) Cyclosporiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.8) Other specified protozoal intestinal diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.8) Other specified protozoal intestinal diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''007.8''', NULL, + '(007.8) Other specified protozoal intestinal diseases', '(007.8) Other specified protozoal intestinal diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.9) Unspecified protozoal intestinal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other protozoal intestinal diseases (007)\(007.9) Unspecified protozoal intestinal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''007.9''', NULL, + '(007.9) Unspecified protozoal intestinal disease', '(007.9) Unspecified protozoal intestinal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003''', NULL, + 'Other salmonella infections (003)', 'Other salmonella infections (003)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\(003.0) Salmonella gastroenteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\(003.0) Salmonella gastroenteritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003.0''', NULL, + '(003.0) Salmonella gastroenteritis', '(003.0) Salmonella gastroenteritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\(003.1) Salmonella septicemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\(003.1) Salmonella septicemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003.1''', NULL, + '(003.1) Salmonella septicemia', '(003.1) Salmonella septicemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\(003.8) Other specified salmonella infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\(003.8) Other specified salmonella infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003.8''', NULL, + '(003.8) Other specified salmonella infections', '(003.8) Other specified salmonella infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\(003.9) Salmonella infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\(003.9) Salmonella infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003.9''', NULL, + '(003.9) Salmonella infection, unspecified', '(003.9) Salmonella infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003.2''', NULL, + 'Localized salmonella infections (003.2)', 'Localized salmonella infections (003.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.20) Localized salmonella infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.20) Localized salmonella infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003.20''', NULL, + '(003.20) Localized salmonella infection, unspecified', '(003.20) Localized salmonella infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.21) Salmonella meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.21) Salmonella meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003.21''', NULL, + '(003.21) Salmonella meningitis', '(003.21) Salmonella meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.22) Salmonella pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.22) Salmonella pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003.22''', NULL, + '(003.22) Salmonella pneumonia', '(003.22) Salmonella pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.23) Salmonella arthritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.23) Salmonella arthritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003.23''', NULL, + '(003.23) Salmonella arthritis', '(003.23) Salmonella arthritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.24) Salmonella osteomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.24) Salmonella osteomyelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003.24''', NULL, + '(003.24) Salmonella osteomyelitis', '(003.24) Salmonella osteomyelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.29) Other localized salmonella infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Other salmonella infections (003)\Localized salmonella infections (003.2)\(003.29) Other localized salmonella infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''003.29''', NULL, + '(003.29) Other localized salmonella infections', '(003.29) Other localized salmonella infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''004''', NULL, + 'Shigellosis (004)', 'Shigellosis (004)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.0) Shigella dysenteriae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.0) Shigella dysenteriae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''004.0''', NULL, + '(004.0) Shigella dysenteriae', '(004.0) Shigella dysenteriae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.1) Shigella flexneri\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.1) Shigella flexneri\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''004.1''', NULL, + '(004.1) Shigella flexneri', '(004.1) Shigella flexneri', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.2) Shigella boydii\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.2) Shigella boydii\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''004.2''', NULL, + '(004.2) Shigella boydii', '(004.2) Shigella boydii', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.3) Shigella sonnei\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.3) Shigella sonnei\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''004.3''', NULL, + '(004.3) Shigella sonnei', '(004.3) Shigella sonnei', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.8) Other specified shigella infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.8) Other specified shigella infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''004.8''', NULL, + '(004.8) Other specified shigella infections', '(004.8) Other specified shigella infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.9) Shigellosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Shigellosis (004)\(004.9) Shigellosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''004.9''', NULL, + '(004.9) Shigellosis, unspecified', '(004.9) Shigellosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''002''', NULL, + 'Typhoid and paratyphoid fevers (002)', 'Typhoid and paratyphoid fevers (002)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\(002.0) Typhoid fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\(002.0) Typhoid fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''002.0''', NULL, + '(002.0) Typhoid fever', '(002.0) Typhoid fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\(002.1) Paratyphoid fever A\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\(002.1) Paratyphoid fever A\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''002.1''', NULL, + '(002.1) Paratyphoid fever A', '(002.1) Paratyphoid fever A', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\(002.2) Paratyphoid fever B\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\(002.2) Paratyphoid fever B\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''002.2''', NULL, + '(002.2) Paratyphoid fever B', '(002.2) Paratyphoid fever B', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\(002.3) Paratyphoid fever C\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\(002.3) Paratyphoid fever C\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''002.3''', NULL, + '(002.3) Paratyphoid fever C', '(002.3) Paratyphoid fever C', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\(002.9) Paratyphoid fever, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Intestinal infectious diseases (001-009.99)\Typhoid and paratyphoid fevers (002)\(002.9) Paratyphoid fever, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''002.9''', NULL, + '(002.9) Paratyphoid fever, unspecified', '(002.9) Paratyphoid fever, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''137'' AND ''139.99''', NULL, + 'Late effects of infectious and parasitic diseases (137-139.99)', 'Late effects of infectious and parasitic diseases (137-139.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\(138) Late effects of acute poliomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\(138) Late effects of acute poliomyelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''138''', NULL, + '(138) Late effects of acute poliomyelitis', '(138) Late effects of acute poliomyelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of other infectious and parasitic diseases (139)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of other infectious and parasitic diseases (139)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''139''', NULL, + 'Late effects of other infectious and parasitic diseases (139)', 'Late effects of other infectious and parasitic diseases (139)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of other infectious and parasitic diseases (139)\(139.0) Late effects of viral encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of other infectious and parasitic diseases (139)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of other infectious and parasitic diseases (139)\(139.0) Late effects of viral encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''139.0''', NULL, + '(139.0) Late effects of viral encephalitis', '(139.0) Late effects of viral encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of other infectious and parasitic diseases (139)\(139.1) Late effects of trachoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of other infectious and parasitic diseases (139)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of other infectious and parasitic diseases (139)\(139.1) Late effects of trachoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''139.1''', NULL, + '(139.1) Late effects of trachoma', '(139.1) Late effects of trachoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of other infectious and parasitic diseases (139)\(139.8) Late effects of other and unspecified infectious and parasitic diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of other infectious and parasitic diseases (139)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of other infectious and parasitic diseases (139)\(139.8) Late effects of other and unspecified infectious and parasitic diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''139.8''', NULL, + '(139.8) Late effects of other and unspecified infectious and parasitic diseases', '(139.8) Late effects of other and unspecified infectious and parasitic diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''137''', NULL, + 'Late effects of tuberculosis (137)', 'Late effects of tuberculosis (137)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\(137.0) Late effects of respiratory or unspecified tuberculosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\(137.0) Late effects of respiratory or unspecified tuberculosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''137.0''', NULL, + '(137.0) Late effects of respiratory or unspecified tuberculosis', '(137.0) Late effects of respiratory or unspecified tuberculosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\(137.1) Late effects of central nervous system tuberculosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\(137.1) Late effects of central nervous system tuberculosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''137.1''', NULL, + '(137.1) Late effects of central nervous system tuberculosis', '(137.1) Late effects of central nervous system tuberculosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\(137.2) Late effects of genitourinary tuberculosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\(137.2) Late effects of genitourinary tuberculosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''137.2''', NULL, + '(137.2) Late effects of genitourinary tuberculosis', '(137.2) Late effects of genitourinary tuberculosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\(137.3) Late effects of tuberculosis of bones and joints\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\(137.3) Late effects of tuberculosis of bones and joints\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''137.3''', NULL, + '(137.3) Late effects of tuberculosis of bones and joints', '(137.3) Late effects of tuberculosis of bones and joints', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\(137.4) Late effects of tuberculosis of other specified organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Late effects of infectious and parasitic diseases (137-139.99)\Late effects of tuberculosis (137)\(137.4) Late effects of tuberculosis of other specified organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''137.4''', NULL, + '(137.4) Late effects of tuberculosis of other specified organs', '(137.4) Late effects of tuberculosis of other specified organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''110'' AND ''118.99''', NULL, + 'Mycoses (110-118.99)', 'Mycoses (110-118.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\(118) Opportunistic mycoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\(118) Opportunistic mycoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''118''', NULL, + '(118) Opportunistic mycoses', '(118) Opportunistic mycoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Blastomycotic infection (116)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Blastomycotic infection (116)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''116''', NULL, + 'Blastomycotic infection (116)', 'Blastomycotic infection (116)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Blastomycotic infection (116)\(116.0) Blastomycosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Blastomycotic infection (116)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Blastomycotic infection (116)\(116.0) Blastomycosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''116.0''', NULL, + '(116.0) Blastomycosis', '(116.0) Blastomycosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Blastomycotic infection (116)\(116.1) Paracoccidioidomycosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Blastomycotic infection (116)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Blastomycotic infection (116)\(116.1) Paracoccidioidomycosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''116.1''', NULL, + '(116.1) Paracoccidioidomycosis', '(116.1) Paracoccidioidomycosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Blastomycotic infection (116)\(116.2) Lobomycosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Blastomycotic infection (116)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Blastomycotic infection (116)\(116.2) Lobomycosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''116.2''', NULL, + '(116.2) Lobomycosis', '(116.2) Lobomycosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112''', NULL, + 'Candidiasis (112)', 'Candidiasis (112)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.0) Candidiasis of mouth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.0) Candidiasis of mouth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.0''', NULL, + '(112.0) Candidiasis of mouth', '(112.0) Candidiasis of mouth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.1) Candidiasis of vulva and vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.1) Candidiasis of vulva and vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.1''', NULL, + '(112.1) Candidiasis of vulva and vagina', '(112.1) Candidiasis of vulva and vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.2) Candidiasis of other urogenital sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.2) Candidiasis of other urogenital sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.2''', NULL, + '(112.2) Candidiasis of other urogenital sites', '(112.2) Candidiasis of other urogenital sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.3) Candidiasis of skin and nails\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.3) Candidiasis of skin and nails\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.3''', NULL, + '(112.3) Candidiasis of skin and nails', '(112.3) Candidiasis of skin and nails', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.4) Candidiasis of lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.4) Candidiasis of lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.4''', NULL, + '(112.4) Candidiasis of lung', '(112.4) Candidiasis of lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.5) Disseminated candidiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.5) Disseminated candidiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.5''', NULL, + '(112.5) Disseminated candidiasis', '(112.5) Disseminated candidiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.9) Candidiasis of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\(112.9) Candidiasis of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.9''', NULL, + '(112.9) Candidiasis of unspecified site', '(112.9) Candidiasis of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.8''', NULL, + 'Candidiasis of other specified sites (112.8)', 'Candidiasis of other specified sites (112.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.81) Candidal endocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.81) Candidal endocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.81''', NULL, + '(112.81) Candidal endocarditis', '(112.81) Candidal endocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.82) Candidal otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.82) Candidal otitis externa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.82''', NULL, + '(112.82) Candidal otitis externa', '(112.82) Candidal otitis externa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.83) Candidal meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.83) Candidal meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.83''', NULL, + '(112.83) Candidal meningitis', '(112.83) Candidal meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.84) Candidal esophagitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.84) Candidal esophagitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.84''', NULL, + '(112.84) Candidal esophagitis', '(112.84) Candidal esophagitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.85) Candidal enteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.85) Candidal enteritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.85''', NULL, + '(112.85) Candidal enteritis', '(112.85) Candidal enteritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.89) Other candidiasis of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Candidiasis (112)\Candidiasis of other specified sites (112.8)\(112.89) Other candidiasis of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''112.89''', NULL, + '(112.89) Other candidiasis of other specified sites', '(112.89) Other candidiasis of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''114''', NULL, + 'Coccidioidomycosis (114)', 'Coccidioidomycosis (114)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.0) Primary coccidioidomycosis (pulmonary)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.0) Primary coccidioidomycosis (pulmonary)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''114.0) Primary coccidioidomycosis (pulmonary''', NULL, + '(114.0) Primary coccidioidomycosis (pulmonary)', '(114.0) Primary coccidioidomycosis (pulmonary)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.1) Primary extrapulmonary coccidioidomycosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.1) Primary extrapulmonary coccidioidomycosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''114.1''', NULL, + '(114.1) Primary extrapulmonary coccidioidomycosis', '(114.1) Primary extrapulmonary coccidioidomycosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.2) Coccidioidal meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.2) Coccidioidal meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''114.2''', NULL, + '(114.2) Coccidioidal meningitis', '(114.2) Coccidioidal meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.3) Other forms of progressive coccidioidomycosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.3) Other forms of progressive coccidioidomycosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''114.3''', NULL, + '(114.3) Other forms of progressive coccidioidomycosis', '(114.3) Other forms of progressive coccidioidomycosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.4) Chronic pulmonary coccidioidomycosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.4) Chronic pulmonary coccidioidomycosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''114.4''', NULL, + '(114.4) Chronic pulmonary coccidioidomycosis', '(114.4) Chronic pulmonary coccidioidomycosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.5) Pulmonary coccidioidomycosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.5) Pulmonary coccidioidomycosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''114.5''', NULL, + '(114.5) Pulmonary coccidioidomycosis, unspecified', '(114.5) Pulmonary coccidioidomycosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.9) Coccidioidomycosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Coccidioidomycosis (114)\(114.9) Coccidioidomycosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''114.9''', NULL, + '(114.9) Coccidioidomycosis, unspecified', '(114.9) Coccidioidomycosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''111''', NULL, + 'Dermatomycosis, other and unspecified (111)', 'Dermatomycosis, other and unspecified (111)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.0) Pityriasis versicolor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.0) Pityriasis versicolor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''111.0''', NULL, + '(111.0) Pityriasis versicolor', '(111.0) Pityriasis versicolor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.1) Tinea nigra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.1) Tinea nigra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''111.1''', NULL, + '(111.1) Tinea nigra', '(111.1) Tinea nigra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.2) Tinea blanca\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.2) Tinea blanca\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''111.2''', NULL, + '(111.2) Tinea blanca', '(111.2) Tinea blanca', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.3) Black piedra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.3) Black piedra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''111.3''', NULL, + '(111.3) Black piedra', '(111.3) Black piedra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.8) Other specified dermatomycoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.8) Other specified dermatomycoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''111.8''', NULL, + '(111.8) Other specified dermatomycoses', '(111.8) Other specified dermatomycoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.9) Dermatomycosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatomycosis, other and unspecified (111)\(111.9) Dermatomycosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''111.9''', NULL, + '(111.9) Dermatomycosis, unspecified', '(111.9) Dermatomycosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''110''', NULL, + 'Dermatophytosis (110)', 'Dermatophytosis (110)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.0) Dermatophytosis of scalp and beard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.0) Dermatophytosis of scalp and beard\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''110.0''', NULL, + '(110.0) Dermatophytosis of scalp and beard', '(110.0) Dermatophytosis of scalp and beard', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.1) Dermatophytosis of nail\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.1) Dermatophytosis of nail\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''110.1''', NULL, + '(110.1) Dermatophytosis of nail', '(110.1) Dermatophytosis of nail', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.2) Dermatophytosis of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.2) Dermatophytosis of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''110.2''', NULL, + '(110.2) Dermatophytosis of hand', '(110.2) Dermatophytosis of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.3) Dermatophytosis of groin and perianal area\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.3) Dermatophytosis of groin and perianal area\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''110.3''', NULL, + '(110.3) Dermatophytosis of groin and perianal area', '(110.3) Dermatophytosis of groin and perianal area', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.4) Dermatophytosis of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.4) Dermatophytosis of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''110.4''', NULL, + '(110.4) Dermatophytosis of foot', '(110.4) Dermatophytosis of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.5) Dermatophytosis of the body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.5) Dermatophytosis of the body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''110.5''', NULL, + '(110.5) Dermatophytosis of the body', '(110.5) Dermatophytosis of the body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.6) Deep seated dermatophytosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.6) Deep seated dermatophytosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''110.6''', NULL, + '(110.6) Deep seated dermatophytosis', '(110.6) Deep seated dermatophytosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.8) Dermatophytosis of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.8) Dermatophytosis of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''110.8''', NULL, + '(110.8) Dermatophytosis of other specified sites', '(110.8) Dermatophytosis of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.9) Dermatophytosis of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Dermatophytosis (110)\(110.9) Dermatophytosis of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''110.9''', NULL, + '(110.9) Dermatophytosis of unspecified site', '(110.9) Dermatophytosis of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115''', NULL, + 'Histoplasmosis (115)', 'Histoplasmosis (115)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.9''', NULL, + 'Histoplasmosis, unspecified (115.9)', 'Histoplasmosis, unspecified (115.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.90) Histoplasmosis, unspecified, without mention of manifestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.90) Histoplasmosis, unspecified, without mention of manifestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.90''', NULL, + '(115.90) Histoplasmosis, unspecified, without mention of manifestation', '(115.90) Histoplasmosis, unspecified, without mention of manifestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.91) Histoplasmosis, unspecified, meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.91) Histoplasmosis, unspecified, meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.91''', NULL, + '(115.91) Histoplasmosis, unspecified, meningitis', '(115.91) Histoplasmosis, unspecified, meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.92) Histoplasmosis, unspecified, retinitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.92) Histoplasmosis, unspecified, retinitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.92''', NULL, + '(115.92) Histoplasmosis, unspecified, retinitis', '(115.92) Histoplasmosis, unspecified, retinitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.93) Histoplasmosis, unspecified, pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.93) Histoplasmosis, unspecified, pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.93''', NULL, + '(115.93) Histoplasmosis, unspecified, pericarditis', '(115.93) Histoplasmosis, unspecified, pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.94) Histoplasmosis, unspecified, endocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.94) Histoplasmosis, unspecified, endocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.94''', NULL, + '(115.94) Histoplasmosis, unspecified, endocarditis', '(115.94) Histoplasmosis, unspecified, endocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.95) Histoplasmosis, unspecified, pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.95) Histoplasmosis, unspecified, pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.95''', NULL, + '(115.95) Histoplasmosis, unspecified, pneumonia', '(115.95) Histoplasmosis, unspecified, pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.99) Histoplasmosis, unspecified, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Histoplasmosis, unspecified (115.9)\(115.99) Histoplasmosis, unspecified, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.99''', NULL, + '(115.99) Histoplasmosis, unspecified, other', '(115.99) Histoplasmosis, unspecified, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.0''', NULL, + 'Infection by Histoplasma capsulatum (115.0)', 'Infection by Histoplasma capsulatum (115.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.00) Infection by Histoplasma capsulatum, without mention of manifestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.00) Infection by Histoplasma capsulatum, without mention of manifestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.00''', NULL, + '(115.00) Infection by Histoplasma capsulatum, without mention of manifestation', '(115.00) Infection by Histoplasma capsulatum, without mention of manifestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.01) Infection by Histoplasma capsulatum, meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.01) Infection by Histoplasma capsulatum, meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.01''', NULL, + '(115.01) Infection by Histoplasma capsulatum, meningitis', '(115.01) Infection by Histoplasma capsulatum, meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.02) Infection by Histoplasma capsulatum, retinitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.02) Infection by Histoplasma capsulatum, retinitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.02''', NULL, + '(115.02) Infection by Histoplasma capsulatum, retinitis', '(115.02) Infection by Histoplasma capsulatum, retinitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.03) Infection by Histoplasma capsulatum, pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.03) Infection by Histoplasma capsulatum, pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.03''', NULL, + '(115.03) Infection by Histoplasma capsulatum, pericarditis', '(115.03) Infection by Histoplasma capsulatum, pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.04) Infection by Histoplasma capsulatum, endocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.04) Infection by Histoplasma capsulatum, endocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.04''', NULL, + '(115.04) Infection by Histoplasma capsulatum, endocarditis', '(115.04) Infection by Histoplasma capsulatum, endocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.05) Infection by Histoplasma capsulatum, pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.05) Infection by Histoplasma capsulatum, pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.05''', NULL, + '(115.05) Infection by Histoplasma capsulatum, pneumonia', '(115.05) Infection by Histoplasma capsulatum, pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.09) Infection by Histoplasma capsulatum, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma capsulatum (115.0)\(115.09) Infection by Histoplasma capsulatum, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.09''', NULL, + '(115.09) Infection by Histoplasma capsulatum, other', '(115.09) Infection by Histoplasma capsulatum, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.1''', NULL, + 'Infection by Histoplasma duboisii (115.1)', 'Infection by Histoplasma duboisii (115.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.10) Infection by Histoplasma duboisii, without mention of manifestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.10) Infection by Histoplasma duboisii, without mention of manifestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.10''', NULL, + '(115.10) Infection by Histoplasma duboisii, without mention of manifestation', '(115.10) Infection by Histoplasma duboisii, without mention of manifestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.11) Infection by Histoplasma duboisii, meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.11) Infection by Histoplasma duboisii, meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.11''', NULL, + '(115.11) Infection by Histoplasma duboisii, meningitis', '(115.11) Infection by Histoplasma duboisii, meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.12) Infection by Histoplasma duboisii, retinitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.12) Infection by Histoplasma duboisii, retinitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.12''', NULL, + '(115.12) Infection by Histoplasma duboisii, retinitis', '(115.12) Infection by Histoplasma duboisii, retinitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.13) Infection by Histoplasma duboisii, pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.13) Infection by Histoplasma duboisii, pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.13''', NULL, + '(115.13) Infection by Histoplasma duboisii, pericarditis', '(115.13) Infection by Histoplasma duboisii, pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.14) Infection by Histoplasma duboisii, endocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.14) Infection by Histoplasma duboisii, endocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.14''', NULL, + '(115.14) Infection by Histoplasma duboisii, endocarditis', '(115.14) Infection by Histoplasma duboisii, endocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.15) Infection by Histoplasma duboisii, pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.15) Infection by Histoplasma duboisii, pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.15''', NULL, + '(115.15) Infection by Histoplasma duboisii, pneumonia', '(115.15) Infection by Histoplasma duboisii, pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.19) Infection by Histoplasma duboisii, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Histoplasmosis (115)\Infection by Histoplasma duboisii (115.1)\(115.19) Infection by Histoplasma duboisii, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''115.19''', NULL, + '(115.19) Infection by Histoplasma duboisii, other', '(115.19) Infection by Histoplasma duboisii, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''117''', NULL, + 'Other mycoses (117)', 'Other mycoses (117)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.0) Rhinosporidiosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.0) Rhinosporidiosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''117.0''', NULL, + '(117.0) Rhinosporidiosis', '(117.0) Rhinosporidiosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.1) Sporotrichosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.1) Sporotrichosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''117.1''', NULL, + '(117.1) Sporotrichosis', '(117.1) Sporotrichosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.2) Chromoblastomycosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.2) Chromoblastomycosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''117.2''', NULL, + '(117.2) Chromoblastomycosis', '(117.2) Chromoblastomycosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.3) Aspergillosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.3) Aspergillosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''117.3''', NULL, + '(117.3) Aspergillosis', '(117.3) Aspergillosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.4) Mycotic mycetomas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.4) Mycotic mycetomas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''117.4''', NULL, + '(117.4) Mycotic mycetomas', '(117.4) Mycotic mycetomas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.5) Cryptococcosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.5) Cryptococcosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''117.5''', NULL, + '(117.5) Cryptococcosis', '(117.5) Cryptococcosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.6) Allescheriosis [Petriellidosis]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.6) Allescheriosis [Petriellidosis]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''117.6''', NULL, + '(117.6) Allescheriosis [Petriellidosis]', '(117.6) Allescheriosis [Petriellidosis]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.7) Zygomycosis [Phycomycosis or Mucormycosis]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.7) Zygomycosis [Phycomycosis or Mucormycosis]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''117.7''', NULL, + '(117.7) Zygomycosis [Phycomycosis or Mucormycosis]', '(117.7) Zygomycosis [Phycomycosis or Mucormycosis]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.8) Infection by dematiacious fungi [Phaehyphomycosis]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.8) Infection by dematiacious fungi [Phaehyphomycosis]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''117.8''', NULL, + '(117.8) Infection by dematiacious fungi [Phaehyphomycosis]', '(117.8) Infection by dematiacious fungi [Phaehyphomycosis]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.9) Other and unspecified mycoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Mycoses (110-118.99)\Other mycoses (117)\(117.9) Other and unspecified mycoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''117.9''', NULL, + '(117.9) Other and unspecified mycoses', '(117.9) Other and unspecified mycoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''030'' AND ''041.99''', NULL, + 'Other bacterial diseases (030-041.99)', 'Other bacterial diseases (030-041.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\(035) Erysipelas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\(035) Erysipelas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''035''', NULL, + '(035) Erysipelas', '(035) Erysipelas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\(037) Tetanus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\(037) Tetanus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''037''', NULL, + '(037) Tetanus', '(037) Tetanus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''039''', NULL, + 'Actinomycotic infections (039)', 'Actinomycotic infections (039)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.0) Cutaneous actinomycotic infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.0) Cutaneous actinomycotic infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''039.0''', NULL, + '(039.0) Cutaneous actinomycotic infection', '(039.0) Cutaneous actinomycotic infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.1) Pulmonary actinomycotic infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.1) Pulmonary actinomycotic infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''039.1''', NULL, + '(039.1) Pulmonary actinomycotic infection', '(039.1) Pulmonary actinomycotic infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.2) Abdominal actinomycotic infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.2) Abdominal actinomycotic infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''039.2''', NULL, + '(039.2) Abdominal actinomycotic infection', '(039.2) Abdominal actinomycotic infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.3) Cervicofacial actinomycotic infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.3) Cervicofacial actinomycotic infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''039.3''', NULL, + '(039.3) Cervicofacial actinomycotic infection', '(039.3) Cervicofacial actinomycotic infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.4) Madura foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.4) Madura foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''039.4''', NULL, + '(039.4) Madura foot', '(039.4) Madura foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.8) Actinomycotic infection of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.8) Actinomycotic infection of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''039.8''', NULL, + '(039.8) Actinomycotic infection of other specified sites', '(039.8) Actinomycotic infection of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.9) Actinomycotic infection of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Actinomycotic infections (039)\(039.9) Actinomycotic infection of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''039.9''', NULL, + '(039.9) Actinomycotic infection of unspecified site', '(039.9) Actinomycotic infection of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041''', NULL, + 'Bacterial infection in conditions classified elsewhere and of unspecified site (041)', 'Bacterial infection in conditions classified elsewhere and of unspecified site (041)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.2) Pneumococcus infection in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.2) Pneumococcus infection in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.2''', NULL, + '(041.2) Pneumococcus infection in conditions classified elsewhere and of unspecified site', '(041.2) Pneumococcus infection in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.3) Friedlaender''s bacillus infection in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.3) Friedlaender''s bacillus infection in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.3''', NULL, + '(041.3) Friedlaender''s bacillus infection in conditions classified elsewhere and of unspecified site', '(041.3) Friedlaender''s bacillus infection in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.5) Hemophilus influenzae [H. influenzae] infection in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.5) Hemophilus influenzae [H. influenzae] infection in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.5''', NULL, + '(041.5) Hemophilus influenzae [H. influenzae] infection in conditions classified elsewhere and of unspecified site', '(041.5) Hemophilus influenzae [H. influenzae] infection in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.6) Proteus (mirabilis) (morganii) infection in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.6) Proteus (mirabilis) (morganii) infection in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.6) Proteus (mirabilis) (morganii''', NULL, + '(041.6) Proteus (mirabilis) (morganii) infection in conditions classified elsewhere and of unspecified site', '(041.6) Proteus (mirabilis) (morganii) infection in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.7) Pseudomonas infection in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.7) Pseudomonas infection in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.7''', NULL, + '(041.7) Pseudomonas infection in conditions classified elsewhere and of unspecified site', '(041.7) Pseudomonas infection in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.9) Bacterial infection, unspecified, in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\(041.9) Bacterial infection, unspecified, in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.9''', NULL, + '(041.9) Bacterial infection, unspecified, in conditions classified elsewhere and of unspecified site', '(041.9) Bacterial infection, unspecified, in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site (041.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site (041.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.4''', NULL, + 'Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site (041.4)', 'Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site (041.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site (041.4)\(041.49) Other and unspecified Escherichia coli [E. coli]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site (041.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site (041.4)\(041.49) Other and unspecified Escherichia coli [E. coli]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.49''', NULL, + '(041.49) Other and unspecified Escherichia coli [E. coli]', '(041.49) Other and unspecified Escherichia coli [E. coli]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.8''', NULL, + 'Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)', 'Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.81) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, mycoplasma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.81) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, mycoplasma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.81''', NULL, + '(041.81) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, mycoplasma', '(041.81) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, mycoplasma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.82) Bacteroides fragilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.82) Bacteroides fragilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.82''', NULL, + '(041.82) Bacteroides fragilis', '(041.82) Bacteroides fragilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.83) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, Clostridium perfringens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.83) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, Clostridium perfringens\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.83''', NULL, + '(041.83) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, Clostridium perfringens', '(041.83) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, Clostridium perfringens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.84) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other anaerobes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.84) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other anaerobes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.84''', NULL, + '(041.84) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other anaerobes', '(041.84) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other anaerobes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.85) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other gram-negative organisms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.85) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other gram-negative organisms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.85''', NULL, + '(041.85) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other gram-negative organisms', '(041.85) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other gram-negative organisms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.86) Helicobacter pylori [H. pylori]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.86) Helicobacter pylori [H. pylori]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.86''', NULL, + '(041.86) Helicobacter pylori [H. pylori]', '(041.86) Helicobacter pylori [H. pylori]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.89) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other specified bacteria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\(041.89) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other specified bacteria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.89''', NULL, + '(041.89) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other specified bacteria', '(041.89) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other specified bacteria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.1''', NULL, + 'Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)', 'Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\(041.10) Staphylococcus infection in conditions classified elsewhere and of unspecified site, staphylococcus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\(041.10) Staphylococcus infection in conditions classified elsewhere and of unspecified site, staphylococcus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.10''', NULL, + '(041.10) Staphylococcus infection in conditions classified elsewhere and of unspecified site, staphylococcus, unspecified', '(041.10) Staphylococcus infection in conditions classified elsewhere and of unspecified site, staphylococcus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\(041.11) Methicillin susceptible Staphylococcus aureus in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\(041.11) Methicillin susceptible Staphylococcus aureus in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.11''', NULL, + '(041.11) Methicillin susceptible Staphylococcus aureus in conditions classified elsewhere and of unspecified site', '(041.11) Methicillin susceptible Staphylococcus aureus in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\(041.12) Methicillin resistant Staphylococcus aureus in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\(041.12) Methicillin resistant Staphylococcus aureus in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.12''', NULL, + '(041.12) Methicillin resistant Staphylococcus aureus in conditions classified elsewhere and of unspecified site', '(041.12) Methicillin resistant Staphylococcus aureus in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\(041.19) Staphylococcus infection in conditions classified elsewhere and of unspecified site, other staphylococcus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\(041.19) Staphylococcus infection in conditions classified elsewhere and of unspecified site, other staphylococcus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.19''', NULL, + '(041.19) Staphylococcus infection in conditions classified elsewhere and of unspecified site, other staphylococcus', '(041.19) Staphylococcus infection in conditions classified elsewhere and of unspecified site, other staphylococcus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.0''', NULL, + 'Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)', 'Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.00) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.00) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.00''', NULL, + '(041.00) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, unspecified', '(041.00) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.01) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group A\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.01) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group A\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.01''', NULL, + '(041.01) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group A', '(041.01) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group A', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.02) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group B\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.02) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group B\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.02''', NULL, + '(041.02) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group B', '(041.02) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group B', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.03) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group C\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.03) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group C\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.03''', NULL, + '(041.03) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group C', '(041.03) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group C', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.04) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group D [Enterococcus]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.04) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group D [Enterococcus]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.04''', NULL, + '(041.04) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group D [Enterococcus]', '(041.04) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group D [Enterococcus]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.05) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group G\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.05) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group G\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.05''', NULL, + '(041.05) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group G', '(041.05) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group G', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.09) Streptococcus infection in conditions classified elsewhere and of unspecified site, other streptococcus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\(041.09) Streptococcus infection in conditions classified elsewhere and of unspecified site, other streptococcus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''041.09''', NULL, + '(041.09) Streptococcus infection in conditions classified elsewhere and of unspecified site, other streptococcus', '(041.09) Streptococcus infection in conditions classified elsewhere and of unspecified site, other streptococcus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032''', NULL, + 'Diphtheria (032)', 'Diphtheria (032)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\(032.0) Faucial diphtheria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\(032.0) Faucial diphtheria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.0''', NULL, + '(032.0) Faucial diphtheria', '(032.0) Faucial diphtheria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\(032.1) Nasopharyngeal diphtheria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\(032.1) Nasopharyngeal diphtheria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.1''', NULL, + '(032.1) Nasopharyngeal diphtheria', '(032.1) Nasopharyngeal diphtheria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\(032.2) Anterior nasal diphtheria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\(032.2) Anterior nasal diphtheria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.2''', NULL, + '(032.2) Anterior nasal diphtheria', '(032.2) Anterior nasal diphtheria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\(032.3) Laryngeal diphtheria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\(032.3) Laryngeal diphtheria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.3''', NULL, + '(032.3) Laryngeal diphtheria', '(032.3) Laryngeal diphtheria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\(032.9) Diphtheria, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\(032.9) Diphtheria, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.9''', NULL, + '(032.9) Diphtheria, unspecified', '(032.9) Diphtheria, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.8''', NULL, + 'Other specified diphtheria (032.8)', 'Other specified diphtheria (032.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.81) Conjunctival diphtheria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.81) Conjunctival diphtheria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.81''', NULL, + '(032.81) Conjunctival diphtheria', '(032.81) Conjunctival diphtheria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.82) Diphtheritic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.82) Diphtheritic myocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.82''', NULL, + '(032.82) Diphtheritic myocarditis', '(032.82) Diphtheritic myocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.83) Diphtheritic peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.83) Diphtheritic peritonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.83''', NULL, + '(032.83) Diphtheritic peritonitis', '(032.83) Diphtheritic peritonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.84) Diphtheritic cystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.84) Diphtheritic cystitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.84''', NULL, + '(032.84) Diphtheritic cystitis', '(032.84) Diphtheritic cystitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.85) Cutaneous diphtheria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.85) Cutaneous diphtheria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.85''', NULL, + '(032.85) Cutaneous diphtheria', '(032.85) Cutaneous diphtheria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.89) Other specified diphtheria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diphtheria (032)\Other specified diphtheria (032.8)\(032.89) Other specified diphtheria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''032.89''', NULL, + '(032.89) Other specified diphtheria', '(032.89) Other specified diphtheria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''031''', NULL, + 'Diseases due to other mycobacteria (031)', 'Diseases due to other mycobacteria (031)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\(031.0) Pulmonary diseases due to other mycobacteria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\(031.0) Pulmonary diseases due to other mycobacteria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''031.0''', NULL, + '(031.0) Pulmonary diseases due to other mycobacteria', '(031.0) Pulmonary diseases due to other mycobacteria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\(031.1) Cutaneous diseases due to other mycobacteria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\(031.1) Cutaneous diseases due to other mycobacteria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''031.1''', NULL, + '(031.1) Cutaneous diseases due to other mycobacteria', '(031.1) Cutaneous diseases due to other mycobacteria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\(031.2) Disseminated due to other mycobacteria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\(031.2) Disseminated due to other mycobacteria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''031.2''', NULL, + '(031.2) Disseminated due to other mycobacteria', '(031.2) Disseminated due to other mycobacteria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\(031.8) Other specified mycobacterial diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\(031.8) Other specified mycobacterial diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''031.8''', NULL, + '(031.8) Other specified mycobacterial diseases', '(031.8) Other specified mycobacterial diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\(031.9) Unspecified diseases due to mycobacteria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Diseases due to other mycobacteria (031)\(031.9) Unspecified diseases due to mycobacteria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''031.9''', NULL, + '(031.9) Unspecified diseases due to mycobacteria', '(031.9) Unspecified diseases due to mycobacteria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''030''', NULL, + 'Leprosy (030)', 'Leprosy (030)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.0) Lepromatous leprosy [type L]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.0) Lepromatous leprosy [type L]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''030.0''', NULL, + '(030.0) Lepromatous leprosy [type L]', '(030.0) Lepromatous leprosy [type L]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.1) Tuberculoid leprosy [type T]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.1) Tuberculoid leprosy [type T]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''030.1''', NULL, + '(030.1) Tuberculoid leprosy [type T]', '(030.1) Tuberculoid leprosy [type T]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.2) Indeterminate leprosy [group I]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.2) Indeterminate leprosy [group I]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''030.2''', NULL, + '(030.2) Indeterminate leprosy [group I]', '(030.2) Indeterminate leprosy [group I]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.3) Borderline leprosy [group B]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.3) Borderline leprosy [group B]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''030.3''', NULL, + '(030.3) Borderline leprosy [group B]', '(030.3) Borderline leprosy [group B]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.8) Other specified leprosy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.8) Other specified leprosy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''030.8''', NULL, + '(030.8) Other specified leprosy', '(030.8) Other specified leprosy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.9) Leprosy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Leprosy (030)\(030.9) Leprosy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''030.9''', NULL, + '(030.9) Leprosy, unspecified', '(030.9) Leprosy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036''', NULL, + 'Meningococcal infection (036)', 'Meningococcal infection (036)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\(036.0) Meningococcal meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\(036.0) Meningococcal meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.0''', NULL, + '(036.0) Meningococcal meningitis', '(036.0) Meningococcal meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\(036.1) Meningococcal encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\(036.1) Meningococcal encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.1''', NULL, + '(036.1) Meningococcal encephalitis', '(036.1) Meningococcal encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\(036.2) Meningococcemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\(036.2) Meningococcemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.2''', NULL, + '(036.2) Meningococcemia', '(036.2) Meningococcemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\(036.3) Waterhouse-Friderichsen syndrome, meningococcal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\(036.3) Waterhouse-Friderichsen syndrome, meningococcal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.3''', NULL, + '(036.3) Waterhouse-Friderichsen syndrome, meningococcal', '(036.3) Waterhouse-Friderichsen syndrome, meningococcal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\(036.9) Meningococcal infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\(036.9) Meningococcal infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.9''', NULL, + '(036.9) Meningococcal infection, unspecified', '(036.9) Meningococcal infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.4''', NULL, + 'Meningococcal carditis (036.4)', 'Meningococcal carditis (036.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\(036.40) Meningococcal carditis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\(036.40) Meningococcal carditis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.40''', NULL, + '(036.40) Meningococcal carditis, unspecified', '(036.40) Meningococcal carditis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\(036.41) Meningococcal pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\(036.41) Meningococcal pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.41''', NULL, + '(036.41) Meningococcal pericarditis', '(036.41) Meningococcal pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\(036.42) Meningococcal endocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\(036.42) Meningococcal endocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.42''', NULL, + '(036.42) Meningococcal endocarditis', '(036.42) Meningococcal endocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\(036.43) Meningococcal myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Meningococcal carditis (036.4)\(036.43) Meningococcal myocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.43''', NULL, + '(036.43) Meningococcal myocarditis', '(036.43) Meningococcal myocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Other specified meningococcal infections (036.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Other specified meningococcal infections (036.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.8''', NULL, + 'Other specified meningococcal infections (036.8)', 'Other specified meningococcal infections (036.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Other specified meningococcal infections (036.8)\(036.81) Meningococcal optic neuritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Other specified meningococcal infections (036.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Other specified meningococcal infections (036.8)\(036.81) Meningococcal optic neuritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.81''', NULL, + '(036.81) Meningococcal optic neuritis', '(036.81) Meningococcal optic neuritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Other specified meningococcal infections (036.8)\(036.82) Meningococcal arthropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Other specified meningococcal infections (036.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Other specified meningococcal infections (036.8)\(036.82) Meningococcal arthropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.82''', NULL, + '(036.82) Meningococcal arthropathy', '(036.82) Meningococcal arthropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Other specified meningococcal infections (036.8)\(036.89) Other specified meningococcal infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Other specified meningococcal infections (036.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Meningococcal infection (036)\Other specified meningococcal infections (036.8)\(036.89) Other specified meningococcal infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''036.89''', NULL, + '(036.89) Other specified meningococcal infections', '(036.89) Other specified meningococcal infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040''', NULL, + 'Other bacterial diseases (040)', 'Other bacterial diseases (040)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\(040.0) Gas gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\(040.0) Gas gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040.0''', NULL, + '(040.0) Gas gangrene', '(040.0) Gas gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\(040.1) Rhinoscleroma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\(040.1) Rhinoscleroma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040.1''', NULL, + '(040.1) Rhinoscleroma', '(040.1) Rhinoscleroma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\(040.2) Whipple''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\(040.2) Whipple''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040.2''', NULL, + '(040.2) Whipple''s disease', '(040.2) Whipple''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\(040.3) Necrobacillosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\(040.3) Necrobacillosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040.3''', NULL, + '(040.3) Necrobacillosis', '(040.3) Necrobacillosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified bacterial disease (040.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified bacterial disease (040.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040.8''', NULL, + 'Other specified bacterial disease (040.8)', 'Other specified bacterial disease (040.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified bacterial disease (040.8)\(040.81) Tropical pyomyositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified bacterial disease (040.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified bacterial disease (040.8)\(040.81) Tropical pyomyositis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040.81''', NULL, + '(040.81) Tropical pyomyositis', '(040.81) Tropical pyomyositis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified bacterial disease (040.8)\(040.82) Toxic shock syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified bacterial disease (040.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified bacterial disease (040.8)\(040.82) Toxic shock syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040.82''', NULL, + '(040.82) Toxic shock syndrome', '(040.82) Toxic shock syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified bacterial disease (040.8)\(040.89) Other specified bacterial diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified bacterial disease (040.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified bacterial disease (040.8)\(040.89) Other specified bacterial diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040.89''', NULL, + '(040.89) Other specified bacterial diseases', '(040.89) Other specified bacterial diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified botulism (040.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified botulism (040.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040.4''', NULL, + 'Other specified botulism (040.4)', 'Other specified botulism (040.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified botulism (040.4)\(040.41) Infant botulism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified botulism (040.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified botulism (040.4)\(040.41) Infant botulism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040.41''', NULL, + '(040.41) Infant botulism', '(040.41) Infant botulism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified botulism (040.4)\(040.42) Wound botulism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified botulism (040.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Other bacterial diseases (040)\Other specified botulism (040.4)\(040.42) Wound botulism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''040.42''', NULL, + '(040.42) Wound botulism', '(040.42) Wound botulism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038''', NULL, + 'Septicemia (038)', 'Septicemia (038)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\(038.0) Streptococcal septicemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\(038.0) Streptococcal septicemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.0''', NULL, + '(038.0) Streptococcal septicemia', '(038.0) Streptococcal septicemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\(038.2) Pneumococcal septicemia [Streptococcus pneumoniae septicemia]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\(038.2) Pneumococcal septicemia [Streptococcus pneumoniae septicemia]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.2''', NULL, + '(038.2) Pneumococcal septicemia [Streptococcus pneumoniae septicemia]', '(038.2) Pneumococcal septicemia [Streptococcus pneumoniae septicemia]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\(038.3) Septicemia due to anaerobes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\(038.3) Septicemia due to anaerobes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.3''', NULL, + '(038.3) Septicemia due to anaerobes', '(038.3) Septicemia due to anaerobes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\(038.8) Other specified septicemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\(038.8) Other specified septicemias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.8''', NULL, + '(038.8) Other specified septicemias', '(038.8) Other specified septicemias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\(038.9) Unspecified septicemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\(038.9) Unspecified septicemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.9''', NULL, + '(038.9) Unspecified septicemia', '(038.9) Unspecified septicemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.4''', NULL, + 'Septicemia due to other gram-negative organisms (038.4)', 'Septicemia due to other gram-negative organisms (038.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.40) Septicemia due to gram-negative organism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.40) Septicemia due to gram-negative organism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.40''', NULL, + '(038.40) Septicemia due to gram-negative organism, unspecified', '(038.40) Septicemia due to gram-negative organism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.41) Septicemia due to hemophilus influenzae [H. influenzae]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.41) Septicemia due to hemophilus influenzae [H. influenzae]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.41''', NULL, + '(038.41) Septicemia due to hemophilus influenzae [H. influenzae]', '(038.41) Septicemia due to hemophilus influenzae [H. influenzae]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.42) Septicemia due to escherichia coli [E. coli]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.42) Septicemia due to escherichia coli [E. coli]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.42''', NULL, + '(038.42) Septicemia due to escherichia coli [E. coli]', '(038.42) Septicemia due to escherichia coli [E. coli]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.43) Septicemia due to pseudomonas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.43) Septicemia due to pseudomonas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.43''', NULL, + '(038.43) Septicemia due to pseudomonas', '(038.43) Septicemia due to pseudomonas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.44) Septicemia due to serratia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.44) Septicemia due to serratia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.44''', NULL, + '(038.44) Septicemia due to serratia', '(038.44) Septicemia due to serratia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.49) Other septicemia due to gram-negative organisms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Septicemia due to other gram-negative organisms (038.4)\(038.49) Other septicemia due to gram-negative organisms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.49''', NULL, + '(038.49) Other septicemia due to gram-negative organisms', '(038.49) Other septicemia due to gram-negative organisms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.1''', NULL, + 'Staphylococcal septicemia (038.1)', 'Staphylococcal septicemia (038.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\(038.10) Staphylococcal septicemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\(038.10) Staphylococcal septicemia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.10''', NULL, + '(038.10) Staphylococcal septicemia, unspecified', '(038.10) Staphylococcal septicemia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\(038.11) Methicillin susceptible Staphylococcus aureus septicemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\(038.11) Methicillin susceptible Staphylococcus aureus septicemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.11''', NULL, + '(038.11) Methicillin susceptible Staphylococcus aureus septicemia', '(038.11) Methicillin susceptible Staphylococcus aureus septicemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\(038.12) Methicillin resistant Staphylococcus aureus septicemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\(038.12) Methicillin resistant Staphylococcus aureus septicemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.12''', NULL, + '(038.12) Methicillin resistant Staphylococcus aureus septicemia', '(038.12) Methicillin resistant Staphylococcus aureus septicemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\(038.19) Other staphylococcal septicemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Septicemia (038)\Staphylococcal septicemia (038.1)\(038.19) Other staphylococcal septicemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''038.19''', NULL, + '(038.19) Other staphylococcal septicemia', '(038.19) Other staphylococcal septicemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Streptococcal sore throat and scarlet fever (034)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Streptococcal sore throat and scarlet fever (034)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''034''', NULL, + 'Streptococcal sore throat and scarlet fever (034)', 'Streptococcal sore throat and scarlet fever (034)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Streptococcal sore throat and scarlet fever (034)\(034.0) Streptococcal sore throat\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Streptococcal sore throat and scarlet fever (034)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Streptococcal sore throat and scarlet fever (034)\(034.0) Streptococcal sore throat\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''034.0''', NULL, + '(034.0) Streptococcal sore throat', '(034.0) Streptococcal sore throat', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Streptococcal sore throat and scarlet fever (034)\(034.1) Scarlet fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Streptococcal sore throat and scarlet fever (034)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Streptococcal sore throat and scarlet fever (034)\(034.1) Scarlet fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''034.1''', NULL, + '(034.1) Scarlet fever', '(034.1) Scarlet fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''033''', NULL, + 'Whooping cough (033)', 'Whooping cough (033)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\(033.0) Whooping cough due to bordetella pertussis [B. pertussis]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\(033.0) Whooping cough due to bordetella pertussis [B. pertussis]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''033.0''', NULL, + '(033.0) Whooping cough due to bordetella pertussis [B. pertussis]', '(033.0) Whooping cough due to bordetella pertussis [B. pertussis]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\(033.1) Whooping cough due to bordetella parapertussis [B. parapertussis]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\(033.1) Whooping cough due to bordetella parapertussis [B. parapertussis]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''033.1''', NULL, + '(033.1) Whooping cough due to bordetella parapertussis [B. parapertussis]', '(033.1) Whooping cough due to bordetella parapertussis [B. parapertussis]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\(033.8) Whooping cough due to other specified organism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\(033.8) Whooping cough due to other specified organism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''033.8''', NULL, + '(033.8) Whooping cough due to other specified organism', '(033.8) Whooping cough due to other specified organism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\(033.9) Whooping cough, unspecified organism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other bacterial diseases (030-041.99)\Whooping cough (033)\(033.9) Whooping cough, unspecified organism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''033.9''', NULL, + '(033.9) Whooping cough, unspecified organism', '(033.9) Whooping cough, unspecified organism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''070'' AND ''079.99''', NULL, + 'Other diseases due to viruses and chlamydiae (070-079.99)', 'Other diseases due to viruses and chlamydiae (070-079.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\(071) Rabies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\(071) Rabies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''071''', NULL, + '(071) Rabies', '(071) Rabies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\(075) Infectious mononucleosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\(075) Infectious mononucleosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''075''', NULL, + '(075) Infectious mononucleosis', '(075) Infectious mononucleosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''072''', NULL, + 'Mumps (072)', 'Mumps (072)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.0) Mumps orchitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.0) Mumps orchitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''072.0''', NULL, + '(072.0) Mumps orchitis', '(072.0) Mumps orchitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.1) Mumps meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.1) Mumps meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''072.1''', NULL, + '(072.1) Mumps meningitis', '(072.1) Mumps meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.2) Mumps encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.2) Mumps encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''072.2''', NULL, + '(072.2) Mumps encephalitis', '(072.2) Mumps encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.3) Mumps pancreatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.3) Mumps pancreatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''072.3''', NULL, + '(072.3) Mumps pancreatitis', '(072.3) Mumps pancreatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.8) Mumps with unspecified complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.8) Mumps with unspecified complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''072.8''', NULL, + '(072.8) Mumps with unspecified complication', '(072.8) Mumps with unspecified complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.9) Mumps without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\(072.9) Mumps without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''072.9''', NULL, + '(072.9) Mumps without mention of complication', '(072.9) Mumps without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\Mumps with other specified complications (072.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\Mumps with other specified complications (072.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''072.7''', NULL, + 'Mumps with other specified complications (072.7)', 'Mumps with other specified complications (072.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\Mumps with other specified complications (072.7)\(072.71) Mumps hepatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\Mumps with other specified complications (072.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\Mumps with other specified complications (072.7)\(072.71) Mumps hepatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''072.71''', NULL, + '(072.71) Mumps hepatitis', '(072.71) Mumps hepatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\Mumps with other specified complications (072.7)\(072.72) Mumps polyneuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\Mumps with other specified complications (072.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\Mumps with other specified complications (072.7)\(072.72) Mumps polyneuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''072.72''', NULL, + '(072.72) Mumps polyneuropathy', '(072.72) Mumps polyneuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\Mumps with other specified complications (072.7)\(072.79) Other mumps with other specified complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\Mumps with other specified complications (072.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Mumps (072)\Mumps with other specified complications (072.7)\(072.79) Other mumps with other specified complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''072.79''', NULL, + '(072.79) Other mumps with other specified complications', '(072.79) Other mumps with other specified complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''073''', NULL, + 'Ornithosis (073)', 'Ornithosis (073)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\(073.0) Ornithosis with pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\(073.0) Ornithosis with pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''073.0''', NULL, + '(073.0) Ornithosis with pneumonia', '(073.0) Ornithosis with pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\(073.7) Ornithosis with other specified complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\(073.7) Ornithosis with other specified complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''073.7''', NULL, + '(073.7) Ornithosis with other specified complications', '(073.7) Ornithosis with other specified complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\(073.8) Ornithosis with unspecified complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\(073.8) Ornithosis with unspecified complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''073.8''', NULL, + '(073.8) Ornithosis with unspecified complication', '(073.8) Ornithosis with unspecified complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\(073.9) Ornithosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Ornithosis (073)\(073.9) Ornithosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''073.9''', NULL, + '(073.9) Ornithosis, unspecified', '(073.9) Ornithosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078''', NULL, + 'Other diseases due to viruses and Chlamydiae (078)', 'Other diseases due to viruses and Chlamydiae (078)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.0) Molluscum contagiosum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.0) Molluscum contagiosum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.0''', NULL, + '(078.0) Molluscum contagiosum', '(078.0) Molluscum contagiosum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.2) Sweating fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.2) Sweating fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.2''', NULL, + '(078.2) Sweating fever', '(078.2) Sweating fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.3) Cat-scratch disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.3) Cat-scratch disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.3''', NULL, + '(078.3) Cat-scratch disease', '(078.3) Cat-scratch disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.4) Foot and mouth disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.4) Foot and mouth disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.4''', NULL, + '(078.4) Foot and mouth disease', '(078.4) Foot and mouth disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.5) Cytomegaloviral disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.5) Cytomegaloviral disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.5''', NULL, + '(078.5) Cytomegaloviral disease', '(078.5) Cytomegaloviral disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.6) Hemorrhagic nephrosonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.6) Hemorrhagic nephrosonephritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.6''', NULL, + '(078.6) Hemorrhagic nephrosonephritis', '(078.6) Hemorrhagic nephrosonephritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.7) Arenaviral hemorrhagic fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\(078.7) Arenaviral hemorrhagic fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.7''', NULL, + '(078.7) Arenaviral hemorrhagic fever', '(078.7) Arenaviral hemorrhagic fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.8''', NULL, + 'Other specified diseases due to viruses and Chlamydiae (078.8)', 'Other specified diseases due to viruses and Chlamydiae (078.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\(078.81) Epidemic vertigo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\(078.81) Epidemic vertigo\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.81''', NULL, + '(078.81) Epidemic vertigo', '(078.81) Epidemic vertigo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\(078.82) Epidemic vomiting syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\(078.82) Epidemic vomiting syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.82''', NULL, + '(078.82) Epidemic vomiting syndrome', '(078.82) Epidemic vomiting syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\(078.88) Other specified diseases due to chlamydiae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\(078.88) Other specified diseases due to chlamydiae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.88''', NULL, + '(078.88) Other specified diseases due to chlamydiae', '(078.88) Other specified diseases due to chlamydiae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\(078.89) Other specified diseases due to viruses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Other specified diseases due to viruses and Chlamydiae (078.8)\(078.89) Other specified diseases due to viruses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.89''', NULL, + '(078.89) Other specified diseases due to viruses', '(078.89) Other specified diseases due to viruses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.1''', NULL, + 'Viral warts (078.1)', 'Viral warts (078.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\(078.10) Viral warts, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\(078.10) Viral warts, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.10''', NULL, + '(078.10) Viral warts, unspecified', '(078.10) Viral warts, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\(078.11) Condyloma acuminatum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\(078.11) Condyloma acuminatum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.11''', NULL, + '(078.11) Condyloma acuminatum', '(078.11) Condyloma acuminatum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\(078.12) Plantar wart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\(078.12) Plantar wart\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.12''', NULL, + '(078.12) Plantar wart', '(078.12) Plantar wart', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\(078.19) Other specified viral warts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases due to viruses and Chlamydiae (078)\Viral warts (078.1)\(078.19) Other specified viral warts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''078.19''', NULL, + '(078.19) Other specified viral warts', '(078.19) Other specified viral warts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''077''', NULL, + 'Other diseases of conjunctiva due to viruses and Chlamydiae (077)', 'Other diseases of conjunctiva due to viruses and Chlamydiae (077)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.0) Inclusion conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.0) Inclusion conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''077.0''', NULL, + '(077.0) Inclusion conjunctivitis', '(077.0) Inclusion conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.1) Epidemic keratoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.1) Epidemic keratoconjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''077.1''', NULL, + '(077.1) Epidemic keratoconjunctivitis', '(077.1) Epidemic keratoconjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.2) Pharyngoconjunctival fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.2) Pharyngoconjunctival fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''077.2''', NULL, + '(077.2) Pharyngoconjunctival fever', '(077.2) Pharyngoconjunctival fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.3) Other adenoviral conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.3) Other adenoviral conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''077.3''', NULL, + '(077.3) Other adenoviral conjunctivitis', '(077.3) Other adenoviral conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.4) Epidemic hemorrhagic conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.4) Epidemic hemorrhagic conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''077.4''', NULL, + '(077.4) Epidemic hemorrhagic conjunctivitis', '(077.4) Epidemic hemorrhagic conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.8) Other viral conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\(077.8) Other viral conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''077.8''', NULL, + '(077.8) Other viral conjunctivitis', '(077.8) Other viral conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''077.9''', NULL, + 'Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)', 'Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\(077.98) Unspecified diseases of conjunctiva due to chlamydiae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\(077.98) Unspecified diseases of conjunctiva due to chlamydiae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''077.98''', NULL, + '(077.98) Unspecified diseases of conjunctiva due to chlamydiae', '(077.98) Unspecified diseases of conjunctiva due to chlamydiae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\(077.99) Unspecified diseases of conjunctiva due to viruses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\(077.99) Unspecified diseases of conjunctiva due to viruses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''077.99''', NULL, + '(077.99) Unspecified diseases of conjunctiva due to viruses', '(077.99) Unspecified diseases of conjunctiva due to viruses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''074''', NULL, + 'Specific diseases due to Coxsackie virus (074)', 'Specific diseases due to Coxsackie virus (074)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\(074.0) Herpangina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\(074.0) Herpangina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''074.0''', NULL, + '(074.0) Herpangina', '(074.0) Herpangina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\(074.1) Epidemic pleurodynia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\(074.1) Epidemic pleurodynia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''074.1''', NULL, + '(074.1) Epidemic pleurodynia', '(074.1) Epidemic pleurodynia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\(074.3) Hand, foot, and mouth disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\(074.3) Hand, foot, and mouth disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''074.3''', NULL, + '(074.3) Hand, foot, and mouth disease', '(074.3) Hand, foot, and mouth disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\(074.8) Other specified diseases due to Coxsackie virus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\(074.8) Other specified diseases due to Coxsackie virus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''074.8''', NULL, + '(074.8) Other specified diseases due to Coxsackie virus', '(074.8) Other specified diseases due to Coxsackie virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''074.2''', NULL, + 'Coxsackie carditis (074.2)', 'Coxsackie carditis (074.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\(074.20) Coxsackie carditis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\(074.20) Coxsackie carditis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''074.20''', NULL, + '(074.20) Coxsackie carditis, unspecified', '(074.20) Coxsackie carditis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\(074.21) Coxsackie pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\(074.21) Coxsackie pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''074.21''', NULL, + '(074.21) Coxsackie pericarditis', '(074.21) Coxsackie pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\(074.22) Coxsackie endocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\(074.22) Coxsackie endocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''074.22''', NULL, + '(074.22) Coxsackie endocarditis', '(074.22) Coxsackie endocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\(074.23) Coxsackie myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Specific diseases due to Coxsackie virus (074)\Coxsackie carditis (074.2)\(074.23) Coxsackie myocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''074.23''', NULL, + '(074.23) Coxsackie myocarditis', '(074.23) Coxsackie myocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Trachoma (076)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Trachoma (076)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''076''', NULL, + 'Trachoma (076)', 'Trachoma (076)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Trachoma (076)\(076.0) Trachoma, initial stage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Trachoma (076)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Trachoma (076)\(076.0) Trachoma, initial stage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''076.0''', NULL, + '(076.0) Trachoma, initial stage', '(076.0) Trachoma, initial stage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Trachoma (076)\(076.1) Trachoma, active stage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Trachoma (076)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Trachoma (076)\(076.1) Trachoma, active stage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''076.1''', NULL, + '(076.1) Trachoma, active stage', '(076.1) Trachoma, active stage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Trachoma (076)\(076.9) Trachoma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Trachoma (076)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Trachoma (076)\(076.9) Trachoma, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''076.9''', NULL, + '(076.9) Trachoma, unspecified', '(076.9) Trachoma, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079''', NULL, + 'Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)', 'Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.0) Adenovirus infection in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.0) Adenovirus infection in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.0''', NULL, + '(079.0) Adenovirus infection in conditions classified elsewhere and of unspecified site', '(079.0) Adenovirus infection in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.1) Echo virus infection in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.1) Echo virus infection in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.1''', NULL, + '(079.1) Echo virus infection in conditions classified elsewhere and of unspecified site', '(079.1) Echo virus infection in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.2) Coxsackie virus infection in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.2) Coxsackie virus infection in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.2''', NULL, + '(079.2) Coxsackie virus infection in conditions classified elsewhere and of unspecified site', '(079.2) Coxsackie virus infection in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.3) Rhinovirus infection in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.3) Rhinovirus infection in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.3''', NULL, + '(079.3) Rhinovirus infection in conditions classified elsewhere and of unspecified site', '(079.3) Rhinovirus infection in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.4) Human papillomavirus in conditions classified elsewhere and of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.4) Human papillomavirus in conditions classified elsewhere and of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.4''', NULL, + '(079.4) Human papillomavirus in conditions classified elsewhere and of unspecified site', '(079.4) Human papillomavirus in conditions classified elsewhere and of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.6) Respiratory syncytial virus (RSV)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\(079.6) Respiratory syncytial virus (RSV)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.6) Respiratory syncytial virus (RSV''', NULL, + '(079.6) Respiratory syncytial virus (RSV)', '(079.6) Respiratory syncytial virus (RSV)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.8''', NULL, + 'Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)', 'Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\(079.81) Hantavirus infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\(079.81) Hantavirus infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.81''', NULL, + '(079.81) Hantavirus infection', '(079.81) Hantavirus infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\(079.82) SARS-associated coronavirus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\(079.82) SARS-associated coronavirus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.82''', NULL, + '(079.82) SARS-associated coronavirus', '(079.82) SARS-associated coronavirus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\(079.83) Parvovirus B19\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\(079.83) Parvovirus B19\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.83''', NULL, + '(079.83) Parvovirus B19', '(079.83) Parvovirus B19', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\(079.88) Other specified chlamydial infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\(079.88) Other specified chlamydial infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.88''', NULL, + '(079.88) Other specified chlamydial infection', '(079.88) Other specified chlamydial infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\(079.89) Other specified viral infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\(079.89) Other specified viral infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.89''', NULL, + '(079.89) Other specified viral infection', '(079.89) Other specified viral infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.5''', NULL, + 'Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)', 'Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\(079.50) Retrovirus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\(079.50) Retrovirus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.50''', NULL, + '(079.50) Retrovirus, unspecified', '(079.50) Retrovirus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\(079.51) Human T-cell lymphotrophic virus, type I [HTLV-I]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\(079.51) Human T-cell lymphotrophic virus, type I [HTLV-I]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.51''', NULL, + '(079.51) Human T-cell lymphotrophic virus, type I [HTLV-I]', '(079.51) Human T-cell lymphotrophic virus, type I [HTLV-I]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\(079.52) Human T-cell lymphotrophic virus, type II [HTLV-II]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\(079.52) Human T-cell lymphotrophic virus, type II [HTLV-II]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.52''', NULL, + '(079.52) Human T-cell lymphotrophic virus, type II [HTLV-II]', '(079.52) Human T-cell lymphotrophic virus, type II [HTLV-II]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\(079.53) Human immunodeficiency virus, type 2 [HIV-2]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\(079.53) Human immunodeficiency virus, type 2 [HIV-2]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.53''', NULL, + '(079.53) Human immunodeficiency virus, type 2 [HIV-2]', '(079.53) Human immunodeficiency virus, type 2 [HIV-2]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\(079.59) Other specified retrovirus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\(079.59) Other specified retrovirus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.59''', NULL, + '(079.59) Other specified retrovirus', '(079.59) Other specified retrovirus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.9''', NULL, + 'Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)', 'Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\(079.98) Unspecified chlamydial infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\(079.98) Unspecified chlamydial infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.98''', NULL, + '(079.98) Unspecified chlamydial infection', '(079.98) Unspecified chlamydial infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\(079.99) Unspecified viral infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\(079.99) Unspecified viral infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''079.99''', NULL, + '(079.99) Unspecified viral infection', '(079.99) Unspecified viral infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070''', NULL, + 'Viral hepatitis (070)', 'Viral hepatitis (070)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\(070.0) Viral hepatitis A with hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\(070.0) Viral hepatitis A with hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.0''', NULL, + '(070.0) Viral hepatitis A with hepatic coma', '(070.0) Viral hepatitis A with hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\(070.1) Viral hepatitis A without mention of hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\(070.1) Viral hepatitis A without mention of hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.1''', NULL, + '(070.1) Viral hepatitis A without mention of hepatic coma', '(070.1) Viral hepatitis A without mention of hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\(070.6) Unspecified viral hepatitis with hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\(070.6) Unspecified viral hepatitis with hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.6''', NULL, + '(070.6) Unspecified viral hepatitis with hepatic coma', '(070.6) Unspecified viral hepatitis with hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\(070.9) Unspecified viral hepatitis without mention of hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\(070.9) Unspecified viral hepatitis without mention of hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.9''', NULL, + '(070.9) Unspecified viral hepatitis without mention of hepatic coma', '(070.9) Unspecified viral hepatitis without mention of hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.4''', NULL, + 'Other specified viral hepatitis with hepatic coma (070.4)', 'Other specified viral hepatitis with hepatic coma (070.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\(070.41) Acute hepatitis C with hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\(070.41) Acute hepatitis C with hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.41''', NULL, + '(070.41) Acute hepatitis C with hepatic coma', '(070.41) Acute hepatitis C with hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\(070.42) Hepatitis delta without mention of active hepatitis B disease with hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\(070.42) Hepatitis delta without mention of active hepatitis B disease with hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.42''', NULL, + '(070.42) Hepatitis delta without mention of active hepatitis B disease with hepatic coma', '(070.42) Hepatitis delta without mention of active hepatitis B disease with hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\(070.43) Hepatitis E with hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\(070.43) Hepatitis E with hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.43''', NULL, + '(070.43) Hepatitis E with hepatic coma', '(070.43) Hepatitis E with hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\(070.44) Chronic hepatitis C with hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\(070.44) Chronic hepatitis C with hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.44''', NULL, + '(070.44) Chronic hepatitis C with hepatic coma', '(070.44) Chronic hepatitis C with hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\(070.49) Other specified viral hepatitis with hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis with hepatic coma (070.4)\(070.49) Other specified viral hepatitis with hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.49''', NULL, + '(070.49) Other specified viral hepatitis with hepatic coma', '(070.49) Other specified viral hepatitis with hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.5''', NULL, + 'Other specified viral hepatitis without mention of hepatic coma (070.5)', 'Other specified viral hepatitis without mention of hepatic coma (070.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\(070.51) Acute hepatitis C without mention of hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\(070.51) Acute hepatitis C without mention of hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.51''', NULL, + '(070.51) Acute hepatitis C without mention of hepatic coma', '(070.51) Acute hepatitis C without mention of hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\(070.52) Hepatitis delta without mention of active hepatitis B disease or hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\(070.52) Hepatitis delta without mention of active hepatitis B disease or hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.52''', NULL, + '(070.52) Hepatitis delta without mention of active hepatitis B disease or hepatic coma', '(070.52) Hepatitis delta without mention of active hepatitis B disease or hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\(070.53) Hepatitis E without mention of hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\(070.53) Hepatitis E without mention of hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.53''', NULL, + '(070.53) Hepatitis E without mention of hepatic coma', '(070.53) Hepatitis E without mention of hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\(070.54) Chronic hepatitis C without mention of hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\(070.54) Chronic hepatitis C without mention of hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.54''', NULL, + '(070.54) Chronic hepatitis C without mention of hepatic coma', '(070.54) Chronic hepatitis C without mention of hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\(070.59) Other specified viral hepatitis without mention of hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Other specified viral hepatitis without mention of hepatic coma (070.5)\(070.59) Other specified viral hepatitis without mention of hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.59''', NULL, + '(070.59) Other specified viral hepatitis without mention of hepatic coma', '(070.59) Other specified viral hepatitis without mention of hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Unspecified viral hepatitis C (070.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Unspecified viral hepatitis C (070.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.7''', NULL, + 'Unspecified viral hepatitis C (070.7)', 'Unspecified viral hepatitis C (070.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Unspecified viral hepatitis C (070.7)\(070.70) Unspecified viral hepatitis C without hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Unspecified viral hepatitis C (070.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Unspecified viral hepatitis C (070.7)\(070.70) Unspecified viral hepatitis C without hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.70''', NULL, + '(070.70) Unspecified viral hepatitis C without hepatic coma', '(070.70) Unspecified viral hepatitis C without hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Unspecified viral hepatitis C (070.7)\(070.71) Unspecified viral hepatitis C with hepatic coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Unspecified viral hepatitis C (070.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Unspecified viral hepatitis C (070.7)\(070.71) Unspecified viral hepatitis C with hepatic coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.71''', NULL, + '(070.71) Unspecified viral hepatitis C with hepatic coma', '(070.71) Unspecified viral hepatitis C with hepatic coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.2''', NULL, + 'Viral hepatitis B with hepatic coma (070.2)', 'Viral hepatitis B with hepatic coma (070.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\(070.20) Viral hepatitis B with hepatic coma, acute or unspecified, without mention of hepatitis delta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\(070.20) Viral hepatitis B with hepatic coma, acute or unspecified, without mention of hepatitis delta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.20''', NULL, + '(070.20) Viral hepatitis B with hepatic coma, acute or unspecified, without mention of hepatitis delta', '(070.20) Viral hepatitis B with hepatic coma, acute or unspecified, without mention of hepatitis delta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\(070.21) Viral hepatitis B with hepatic coma, acute or unspecified, with hepatitis delta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\(070.21) Viral hepatitis B with hepatic coma, acute or unspecified, with hepatitis delta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.21''', NULL, + '(070.21) Viral hepatitis B with hepatic coma, acute or unspecified, with hepatitis delta', '(070.21) Viral hepatitis B with hepatic coma, acute or unspecified, with hepatitis delta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\(070.22) Chronic viral hepatitis B with hepatic coma without hepatitis delta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\(070.22) Chronic viral hepatitis B with hepatic coma without hepatitis delta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.22''', NULL, + '(070.22) Chronic viral hepatitis B with hepatic coma without hepatitis delta', '(070.22) Chronic viral hepatitis B with hepatic coma without hepatitis delta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\(070.23) Chronic viral hepatitis B with hepatic coma with hepatitis delta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B with hepatic coma (070.2)\(070.23) Chronic viral hepatitis B with hepatic coma with hepatitis delta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.23''', NULL, + '(070.23) Chronic viral hepatitis B with hepatic coma with hepatitis delta', '(070.23) Chronic viral hepatitis B with hepatic coma with hepatitis delta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.3''', NULL, + 'Viral hepatitis B without mention of hepatic coma (070.3)', 'Viral hepatitis B without mention of hepatic coma (070.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\(070.30) Viral hepatitis B without mention of hepatic coma, acute or unspecified, without mention of hepatitis delta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\(070.30) Viral hepatitis B without mention of hepatic coma, acute or unspecified, without mention of hepatitis delta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.30''', NULL, + '(070.30) Viral hepatitis B without mention of hepatic coma, acute or unspecified, without mention of hepatitis delta', '(070.30) Viral hepatitis B without mention of hepatic coma, acute or unspecified, without mention of hepatitis delta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\(070.31) Viral hepatitis B without mention of hepatic coma, acute or unspecified, with hepatitis delta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\(070.31) Viral hepatitis B without mention of hepatic coma, acute or unspecified, with hepatitis delta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.31''', NULL, + '(070.31) Viral hepatitis B without mention of hepatic coma, acute or unspecified, with hepatitis delta', '(070.31) Viral hepatitis B without mention of hepatic coma, acute or unspecified, with hepatitis delta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\(070.32) Chronic viral hepatitis B without mention of hepatic coma without mention of hepatitis delta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\(070.32) Chronic viral hepatitis B without mention of hepatic coma without mention of hepatitis delta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.32''', NULL, + '(070.32) Chronic viral hepatitis B without mention of hepatic coma without mention of hepatitis delta', '(070.32) Chronic viral hepatitis B without mention of hepatic coma without mention of hepatitis delta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\(070.33) Chronic viral hepatitis B without mention of hepatic coma with hepatitis delta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other diseases due to viruses and chlamydiae (070-079.99)\Viral hepatitis (070)\Viral hepatitis B without mention of hepatic coma (070.3)\(070.33) Chronic viral hepatitis B without mention of hepatic coma with hepatitis delta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''070.33''', NULL, + '(070.33) Chronic viral hepatitis B without mention of hepatic coma with hepatitis delta', '(070.33) Chronic viral hepatitis B without mention of hepatic coma with hepatitis delta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''130'' AND ''136.99''', NULL, + 'Other infectious and parasitic diseases (130-136.99)', 'Other infectious and parasitic diseases (130-136.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\(135) Sarcoidosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\(135) Sarcoidosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''135''', NULL, + '(135) Sarcoidosis', '(135) Sarcoidosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Acariasis (133)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Acariasis (133)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''133''', NULL, + 'Acariasis (133)', 'Acariasis (133)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Acariasis (133)\(133.0) Scabies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Acariasis (133)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Acariasis (133)\(133.0) Scabies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''133.0''', NULL, + '(133.0) Scabies', '(133.0) Scabies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Acariasis (133)\(133.8) Other acariasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Acariasis (133)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Acariasis (133)\(133.8) Other acariasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''133.8''', NULL, + '(133.8) Other acariasis', '(133.8) Other acariasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Acariasis (133)\(133.9) Acariasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Acariasis (133)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Acariasis (133)\(133.9) Acariasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''133.9''', NULL, + '(133.9) Acariasis, unspecified', '(133.9) Acariasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''136''', NULL, + 'Other and unspecified infectious and parasitic diseases (136)', 'Other and unspecified infectious and parasitic diseases (136)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.0) Ainhum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.0) Ainhum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''136.0''', NULL, + '(136.0) Ainhum', '(136.0) Ainhum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.1) Behcet''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.1) Behcet''s syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''136.1''', NULL, + '(136.1) Behcet''s syndrome', '(136.1) Behcet''s syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.3) Pneumocystosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.3) Pneumocystosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''136.3''', NULL, + '(136.3) Pneumocystosis', '(136.3) Pneumocystosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.4) Psorospermiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.4) Psorospermiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''136.4''', NULL, + '(136.4) Psorospermiasis', '(136.4) Psorospermiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.5) Sarcosporidiosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.5) Sarcosporidiosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''136.5''', NULL, + '(136.5) Sarcosporidiosis', '(136.5) Sarcosporidiosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.8) Other specified infectious and parasitic diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.8) Other specified infectious and parasitic diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''136.8''', NULL, + '(136.8) Other specified infectious and parasitic diseases', '(136.8) Other specified infectious and parasitic diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.9) Unspecified infectious and parasitic diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\(136.9) Unspecified infectious and parasitic diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''136.9''', NULL, + '(136.9) Unspecified infectious and parasitic diseases', '(136.9) Unspecified infectious and parasitic diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\Specific infections by free-living amebae (136.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\Specific infections by free-living amebae (136.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''136.2''', NULL, + 'Specific infections by free-living amebae (136.2)', 'Specific infections by free-living amebae (136.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\Specific infections by free-living amebae (136.2)\(136.21) Specific infection due to acanthamoeba\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\Specific infections by free-living amebae (136.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other and unspecified infectious and parasitic diseases (136)\Specific infections by free-living amebae (136.2)\(136.21) Specific infection due to acanthamoeba\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''136.21''', NULL, + '(136.21) Specific infection due to acanthamoeba', '(136.21) Specific infection due to acanthamoeba', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''134''', NULL, + 'Other infestation (134)', 'Other infestation (134)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\(134.0) Myiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\(134.0) Myiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''134.0''', NULL, + '(134.0) Myiasis', '(134.0) Myiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\(134.1) Other arthropod infestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\(134.1) Other arthropod infestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''134.1''', NULL, + '(134.1) Other arthropod infestation', '(134.1) Other arthropod infestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\(134.2) Hirudiniasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\(134.2) Hirudiniasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''134.2''', NULL, + '(134.2) Hirudiniasis', '(134.2) Hirudiniasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\(134.8) Other specified infestations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\(134.8) Other specified infestations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''134.8''', NULL, + '(134.8) Other specified infestations', '(134.8) Other specified infestations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\(134.9) Infestation, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Other infestation (134)\(134.9) Infestation, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''134.9''', NULL, + '(134.9) Infestation, unspecified', '(134.9) Infestation, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''132''', NULL, + 'Pediculosis and phthirus infestation (132)', 'Pediculosis and phthirus infestation (132)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\(132.0) Pediculus capitis [head louse]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\(132.0) Pediculus capitis [head louse]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''132.0''', NULL, + '(132.0) Pediculus capitis [head louse]', '(132.0) Pediculus capitis [head louse]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\(132.1) Pediculus corporis [body louse]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\(132.1) Pediculus corporis [body louse]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''132.1''', NULL, + '(132.1) Pediculus corporis [body louse]', '(132.1) Pediculus corporis [body louse]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\(132.2) Phthirus pubis [pubic louse]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\(132.2) Phthirus pubis [pubic louse]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''132.2''', NULL, + '(132.2) Phthirus pubis [pubic louse]', '(132.2) Phthirus pubis [pubic louse]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\(132.3) Mixed pediculosis infestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\(132.3) Mixed pediculosis infestation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''132.3''', NULL, + '(132.3) Mixed pediculosis infestation', '(132.3) Mixed pediculosis infestation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\(132.9) Pediculosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Pediculosis and phthirus infestation (132)\(132.9) Pediculosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''132.9''', NULL, + '(132.9) Pediculosis, unspecified', '(132.9) Pediculosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''130''', NULL, + 'Toxoplasmosis (130)', 'Toxoplasmosis (130)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.0) Meningoencephalitis due to toxoplasmosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.0) Meningoencephalitis due to toxoplasmosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''130.0''', NULL, + '(130.0) Meningoencephalitis due to toxoplasmosis', '(130.0) Meningoencephalitis due to toxoplasmosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.1) Conjunctivitis due to toxoplasmosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.1) Conjunctivitis due to toxoplasmosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''130.1''', NULL, + '(130.1) Conjunctivitis due to toxoplasmosis', '(130.1) Conjunctivitis due to toxoplasmosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.2) Chorioretinitis due to toxoplasmosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.2) Chorioretinitis due to toxoplasmosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''130.2''', NULL, + '(130.2) Chorioretinitis due to toxoplasmosis', '(130.2) Chorioretinitis due to toxoplasmosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.3) Myocarditis due to toxoplasmosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.3) Myocarditis due to toxoplasmosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''130.3''', NULL, + '(130.3) Myocarditis due to toxoplasmosis', '(130.3) Myocarditis due to toxoplasmosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.4) Pneumonitis due to toxoplasmosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.4) Pneumonitis due to toxoplasmosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''130.4''', NULL, + '(130.4) Pneumonitis due to toxoplasmosis', '(130.4) Pneumonitis due to toxoplasmosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.5) Hepatitis due to toxoplasmosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.5) Hepatitis due to toxoplasmosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''130.5''', NULL, + '(130.5) Hepatitis due to toxoplasmosis', '(130.5) Hepatitis due to toxoplasmosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.7) Toxoplasmosis of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.7) Toxoplasmosis of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''130.7''', NULL, + '(130.7) Toxoplasmosis of other specified sites', '(130.7) Toxoplasmosis of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.8) Multisystemic disseminated toxoplasmosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.8) Multisystemic disseminated toxoplasmosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''130.8''', NULL, + '(130.8) Multisystemic disseminated toxoplasmosis', '(130.8) Multisystemic disseminated toxoplasmosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.9) Toxoplasmosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Toxoplasmosis (130)\(130.9) Toxoplasmosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''130.9''', NULL, + '(130.9) Toxoplasmosis, unspecified', '(130.9) Toxoplasmosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''131''', NULL, + 'Trichomoniasis (131)', 'Trichomoniasis (131)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\(131.8) Trichomoniasis of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\(131.8) Trichomoniasis of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''131.8''', NULL, + '(131.8) Trichomoniasis of other specified sites', '(131.8) Trichomoniasis of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\(131.9) Trichomoniasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\(131.9) Trichomoniasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''131.9''', NULL, + '(131.9) Trichomoniasis, unspecified', '(131.9) Trichomoniasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''131.0''', NULL, + 'Urogenital trichomoniasis (131.0)', 'Urogenital trichomoniasis (131.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\(131.00) Urogenital trichomoniasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\(131.00) Urogenital trichomoniasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''131.00''', NULL, + '(131.00) Urogenital trichomoniasis, unspecified', '(131.00) Urogenital trichomoniasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\(131.01) Trichomonal vulvovaginitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\(131.01) Trichomonal vulvovaginitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''131.01''', NULL, + '(131.01) Trichomonal vulvovaginitis', '(131.01) Trichomonal vulvovaginitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\(131.02) Trichomonal urethritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\(131.02) Trichomonal urethritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''131.02''', NULL, + '(131.02) Trichomonal urethritis', '(131.02) Trichomonal urethritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\(131.03) Trichomonal prostatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\(131.03) Trichomonal prostatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''131.03''', NULL, + '(131.03) Trichomonal prostatitis', '(131.03) Trichomonal prostatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\(131.09) Other urogenital trichomoniasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other infectious and parasitic diseases (130-136.99)\Trichomoniasis (131)\Urogenital trichomoniasis (131.0)\(131.09) Other urogenital trichomoniasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''131.09''', NULL, + '(131.09) Other urogenital trichomoniasis', '(131.09) Other urogenital trichomoniasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''100'' AND ''104.99''', NULL, + 'Other spirochetal diseases (100-104.99)', 'Other spirochetal diseases (100-104.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\(101) Vincent''s angina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\(101) Vincent''s angina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''101''', NULL, + '(101) Vincent''s angina', '(101) Vincent''s angina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''100''', NULL, + 'Leptospirosis (100)', 'Leptospirosis (100)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\(100.0) Leptospirosis icterohemorrhagica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\(100.0) Leptospirosis icterohemorrhagica\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''100.0''', NULL, + '(100.0) Leptospirosis icterohemorrhagica', '(100.0) Leptospirosis icterohemorrhagica', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\(100.9) Leptospirosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\(100.9) Leptospirosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''100.9''', NULL, + '(100.9) Leptospirosis, unspecified', '(100.9) Leptospirosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\Other specified leptospiral infections (100.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\Other specified leptospiral infections (100.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''100.8''', NULL, + 'Other specified leptospiral infections (100.8)', 'Other specified leptospiral infections (100.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\Other specified leptospiral infections (100.8)\(100.81) Leptospiral meningitis (aseptic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\Other specified leptospiral infections (100.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\Other specified leptospiral infections (100.8)\(100.81) Leptospiral meningitis (aseptic)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''100.81) Leptospiral meningitis (aseptic''', NULL, + '(100.81) Leptospiral meningitis (aseptic)', '(100.81) Leptospiral meningitis (aseptic)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\Other specified leptospiral infections (100.8)\(100.89) Other specified leptospiral infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\Other specified leptospiral infections (100.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Leptospirosis (100)\Other specified leptospiral infections (100.8)\(100.89) Other specified leptospiral infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''100.89''', NULL, + '(100.89) Other specified leptospiral infections', '(100.89) Other specified leptospiral infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Other spirochetal infection (104)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Other spirochetal infection (104)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''104''', NULL, + 'Other spirochetal infection (104)', 'Other spirochetal infection (104)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Other spirochetal infection (104)\(104.0) Nonvenereal endemic syphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Other spirochetal infection (104)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Other spirochetal infection (104)\(104.0) Nonvenereal endemic syphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''104.0''', NULL, + '(104.0) Nonvenereal endemic syphilis', '(104.0) Nonvenereal endemic syphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Other spirochetal infection (104)\(104.8) Other specified spirochetal infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Other spirochetal infection (104)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Other spirochetal infection (104)\(104.8) Other specified spirochetal infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''104.8''', NULL, + '(104.8) Other specified spirochetal infections', '(104.8) Other specified spirochetal infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Other spirochetal infection (104)\(104.9) Spirochetal infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Other spirochetal infection (104)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Other spirochetal infection (104)\(104.9) Spirochetal infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''104.9''', NULL, + '(104.9) Spirochetal infection, unspecified', '(104.9) Spirochetal infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''103''', NULL, + 'Pinta (103)', 'Pinta (103)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\(103.0) Primary lesions of pinta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\(103.0) Primary lesions of pinta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''103.0''', NULL, + '(103.0) Primary lesions of pinta', '(103.0) Primary lesions of pinta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\(103.1) Intermediate lesions of pinta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\(103.1) Intermediate lesions of pinta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''103.1''', NULL, + '(103.1) Intermediate lesions of pinta', '(103.1) Intermediate lesions of pinta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\(103.2) Late lesions of pinta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\(103.2) Late lesions of pinta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''103.2''', NULL, + '(103.2) Late lesions of pinta', '(103.2) Late lesions of pinta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\(103.3) Mixed lesions of pinta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\(103.3) Mixed lesions of pinta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''103.3''', NULL, + '(103.3) Mixed lesions of pinta', '(103.3) Mixed lesions of pinta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\(103.9) Pinta, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Pinta (103)\(103.9) Pinta, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''103.9''', NULL, + '(103.9) Pinta, unspecified', '(103.9) Pinta, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''102''', NULL, + 'Yaws (102)', 'Yaws (102)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.0) Initial lesions of yaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.0) Initial lesions of yaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''102.0''', NULL, + '(102.0) Initial lesions of yaws', '(102.0) Initial lesions of yaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.1) Multiple papillomata due to yaws and wet crab yaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.1) Multiple papillomata due to yaws and wet crab yaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''102.1''', NULL, + '(102.1) Multiple papillomata due to yaws and wet crab yaws', '(102.1) Multiple papillomata due to yaws and wet crab yaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.2) Other early skin lesions of yaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.2) Other early skin lesions of yaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''102.2''', NULL, + '(102.2) Other early skin lesions of yaws', '(102.2) Other early skin lesions of yaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.3) Hyperkeratosis due to yaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.3) Hyperkeratosis due to yaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''102.3''', NULL, + '(102.3) Hyperkeratosis due to yaws', '(102.3) Hyperkeratosis due to yaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.4) Gummata and ulcers due to yaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.4) Gummata and ulcers due to yaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''102.4''', NULL, + '(102.4) Gummata and ulcers due to yaws', '(102.4) Gummata and ulcers due to yaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.5) Gangosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.5) Gangosa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''102.5''', NULL, + '(102.5) Gangosa', '(102.5) Gangosa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.6) Bone and joint lesions due to yaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.6) Bone and joint lesions due to yaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''102.6''', NULL, + '(102.6) Bone and joint lesions due to yaws', '(102.6) Bone and joint lesions due to yaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.7) Other manifestations of yaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.7) Other manifestations of yaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''102.7''', NULL, + '(102.7) Other manifestations of yaws', '(102.7) Other manifestations of yaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.8) Latent yaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.8) Latent yaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''102.8''', NULL, + '(102.8) Latent yaws', '(102.8) Latent yaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.9) Yaws, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Other spirochetal diseases (100-104.99)\Yaws (102)\(102.9) Yaws, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''102.9''', NULL, + '(102.9) Yaws, unspecified', '(102.9) Yaws, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''045'' AND ''049.99''', NULL, + 'Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)', 'Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\(048) Other enterovirus diseases of central nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\(048) Other enterovirus diseases of central nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''048''', NULL, + '(048) Other enterovirus diseases of central nervous system', '(048) Other enterovirus diseases of central nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045''', NULL, + 'Acute poliomyelitis (045)', 'Acute poliomyelitis (045)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.2''', NULL, + 'Acute nonparalytic poliomyelitis (045.2)', 'Acute nonparalytic poliomyelitis (045.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\(045.20) Acute nonparalytic poliomyelitis, poliovirus, unspecified type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\(045.20) Acute nonparalytic poliomyelitis, poliovirus, unspecified type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.20''', NULL, + '(045.20) Acute nonparalytic poliomyelitis, poliovirus, unspecified type', '(045.20) Acute nonparalytic poliomyelitis, poliovirus, unspecified type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\(045.21) Acute nonparalytic poliomyelitis, poliovirus type I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\(045.21) Acute nonparalytic poliomyelitis, poliovirus type I\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.21''', NULL, + '(045.21) Acute nonparalytic poliomyelitis, poliovirus type I', '(045.21) Acute nonparalytic poliomyelitis, poliovirus type I', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\(045.22) Acute nonparalytic poliomyelitis, poliovirus type II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\(045.22) Acute nonparalytic poliomyelitis, poliovirus type II\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.22''', NULL, + '(045.22) Acute nonparalytic poliomyelitis, poliovirus type II', '(045.22) Acute nonparalytic poliomyelitis, poliovirus type II', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\(045.23) Acute nonparalytic poliomyelitis, poliovirus type III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute nonparalytic poliomyelitis (045.2)\(045.23) Acute nonparalytic poliomyelitis, poliovirus type III\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.23''', NULL, + '(045.23) Acute nonparalytic poliomyelitis, poliovirus type III', '(045.23) Acute nonparalytic poliomyelitis, poliovirus type III', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.0''', NULL, + 'Acute paralytic poliomyelitis specified as bulbar (045.0)', 'Acute paralytic poliomyelitis specified as bulbar (045.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\(045.00) Acute paralytic poliomyelitis specified as bulbar, poliovirus, unspecified type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\(045.00) Acute paralytic poliomyelitis specified as bulbar, poliovirus, unspecified type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.00''', NULL, + '(045.00) Acute paralytic poliomyelitis specified as bulbar, poliovirus, unspecified type', '(045.00) Acute paralytic poliomyelitis specified as bulbar, poliovirus, unspecified type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\(045.01) Acute paralytic poliomyelitis specified as bulbar, poliovirus type I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\(045.01) Acute paralytic poliomyelitis specified as bulbar, poliovirus type I\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.01''', NULL, + '(045.01) Acute paralytic poliomyelitis specified as bulbar, poliovirus type I', '(045.01) Acute paralytic poliomyelitis specified as bulbar, poliovirus type I', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\(045.02) Acute paralytic poliomyelitis specified as bulbar, poliovirus type II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\(045.02) Acute paralytic poliomyelitis specified as bulbar, poliovirus type II\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.02''', NULL, + '(045.02) Acute paralytic poliomyelitis specified as bulbar, poliovirus type II', '(045.02) Acute paralytic poliomyelitis specified as bulbar, poliovirus type II', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\(045.03) Acute paralytic poliomyelitis specified as bulbar, poliovirus type III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute paralytic poliomyelitis specified as bulbar (045.0)\(045.03) Acute paralytic poliomyelitis specified as bulbar, poliovirus type III\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.03''', NULL, + '(045.03) Acute paralytic poliomyelitis specified as bulbar, poliovirus type III', '(045.03) Acute paralytic poliomyelitis specified as bulbar, poliovirus type III', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.1''', NULL, + 'Acute poliomyelitis with other paralysis (045.1)', 'Acute poliomyelitis with other paralysis (045.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\(045.10) Acute poliomyelitis with other paralysis, poliovirus, unspecified type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\(045.10) Acute poliomyelitis with other paralysis, poliovirus, unspecified type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.10''', NULL, + '(045.10) Acute poliomyelitis with other paralysis, poliovirus, unspecified type', '(045.10) Acute poliomyelitis with other paralysis, poliovirus, unspecified type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\(045.11) Acute poliomyelitis with other paralysis, poliovirus type I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\(045.11) Acute poliomyelitis with other paralysis, poliovirus type I\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.11''', NULL, + '(045.11) Acute poliomyelitis with other paralysis, poliovirus type I', '(045.11) Acute poliomyelitis with other paralysis, poliovirus type I', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\(045.12) Acute poliomyelitis with other paralysis, poliovirus type II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\(045.12) Acute poliomyelitis with other paralysis, poliovirus type II\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.12''', NULL, + '(045.12) Acute poliomyelitis with other paralysis, poliovirus type II', '(045.12) Acute poliomyelitis with other paralysis, poliovirus type II', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\(045.13) Acute poliomyelitis with other paralysis, poliovirus type III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis with other paralysis (045.1)\(045.13) Acute poliomyelitis with other paralysis, poliovirus type III\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.13''', NULL, + '(045.13) Acute poliomyelitis with other paralysis, poliovirus type III', '(045.13) Acute poliomyelitis with other paralysis, poliovirus type III', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.9''', NULL, + 'Acute poliomyelitis, unspecified (045.9)', 'Acute poliomyelitis, unspecified (045.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\(045.90) Acute poliomyelitis, unspecified, poliovirus, unspecified type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\(045.90) Acute poliomyelitis, unspecified, poliovirus, unspecified type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.90''', NULL, + '(045.90) Acute poliomyelitis, unspecified, poliovirus, unspecified type', '(045.90) Acute poliomyelitis, unspecified, poliovirus, unspecified type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\(045.91) Acute poliomyelitis, unspecified, poliovirus type I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\(045.91) Acute poliomyelitis, unspecified, poliovirus type I\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.91''', NULL, + '(045.91) Acute poliomyelitis, unspecified, poliovirus type I', '(045.91) Acute poliomyelitis, unspecified, poliovirus type I', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\(045.92) Acute poliomyelitis, unspecified, poliovirus type II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\(045.92) Acute poliomyelitis, unspecified, poliovirus type II\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.92''', NULL, + '(045.92) Acute poliomyelitis, unspecified, poliovirus type II', '(045.92) Acute poliomyelitis, unspecified, poliovirus type II', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\(045.93) Acute poliomyelitis, unspecified, poliovirus type III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Acute poliomyelitis (045)\Acute poliomyelitis, unspecified (045.9)\(045.93) Acute poliomyelitis, unspecified, poliovirus type III\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''045.93''', NULL, + '(045.93) Acute poliomyelitis, unspecified, poliovirus type III', '(045.93) Acute poliomyelitis, unspecified, poliovirus type III', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''047''', NULL, + 'Meningitis due to enterovirus (047)', 'Meningitis due to enterovirus (047)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\(047.0) Meningitis due to coxsackie virus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\(047.0) Meningitis due to coxsackie virus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''047.0''', NULL, + '(047.0) Meningitis due to coxsackie virus', '(047.0) Meningitis due to coxsackie virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\(047.1) Meningitis due to echo virus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\(047.1) Meningitis due to echo virus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''047.1''', NULL, + '(047.1) Meningitis due to echo virus', '(047.1) Meningitis due to echo virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\(047.8) Other specified viral meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\(047.8) Other specified viral meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''047.8''', NULL, + '(047.8) Other specified viral meningitis', '(047.8) Other specified viral meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\(047.9) Unspecified viral meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Meningitis due to enterovirus (047)\(047.9) Unspecified viral meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''047.9''', NULL, + '(047.9) Unspecified viral meningitis', '(047.9) Unspecified viral meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''049''', NULL, + 'Other non-arthropod-borne viral diseases of central nervous system (049)', 'Other non-arthropod-borne viral diseases of central nervous system (049)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\(049.0) Lymphocytic choriomeningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\(049.0) Lymphocytic choriomeningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''049.0''', NULL, + '(049.0) Lymphocytic choriomeningitis', '(049.0) Lymphocytic choriomeningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\(049.1) Meningitis due to adenovirus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\(049.1) Meningitis due to adenovirus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''049.1''', NULL, + '(049.1) Meningitis due to adenovirus', '(049.1) Meningitis due to adenovirus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\(049.8) Other specified non-arthropod-borne viral diseases of central nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\(049.8) Other specified non-arthropod-borne viral diseases of central nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''049.8''', NULL, + '(049.8) Other specified non-arthropod-borne viral diseases of central nervous system', '(049.8) Other specified non-arthropod-borne viral diseases of central nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\(049.9) Unspecified non-arthropod-borne viral diseases of central nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Other non-arthropod-borne viral diseases of central nervous system (049)\(049.9) Unspecified non-arthropod-borne viral diseases of central nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''049.9''', NULL, + '(049.9) Unspecified non-arthropod-borne viral diseases of central nervous system', '(049.9) Unspecified non-arthropod-borne viral diseases of central nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''046''', NULL, + 'Slow virus infections and prion diseases of central nervous system (046)', 'Slow virus infections and prion diseases of central nervous system (046)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\(046.0) Kuru\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\(046.0) Kuru\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''046.0''', NULL, + '(046.0) Kuru', '(046.0) Kuru', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\(046.2) Subacute sclerosing panencephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\(046.2) Subacute sclerosing panencephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''046.2''', NULL, + '(046.2) Subacute sclerosing panencephalitis', '(046.2) Subacute sclerosing panencephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\(046.3) Progressive multifocal leukoencephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\(046.3) Progressive multifocal leukoencephalopathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''046.3''', NULL, + '(046.3) Progressive multifocal leukoencephalopathy', '(046.3) Progressive multifocal leukoencephalopathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\(046.8) Other specified slow virus infection of central nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\(046.8) Other specified slow virus infection of central nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''046.8''', NULL, + '(046.8) Other specified slow virus infection of central nervous system', '(046.8) Other specified slow virus infection of central nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\(046.9) Unspecified slow virus infection of central nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\(046.9) Unspecified slow virus infection of central nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''046.9''', NULL, + '(046.9) Unspecified slow virus infection of central nervous system', '(046.9) Unspecified slow virus infection of central nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\Jakob-Creutzfeldt disease (046.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\Jakob-Creutzfeldt disease (046.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''046.1''', NULL, + 'Jakob-Creutzfeldt disease (046.1)', 'Jakob-Creutzfeldt disease (046.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\Jakob-Creutzfeldt disease (046.1)\(046.11) Variant Creutzfeldt-Jakob disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\Jakob-Creutzfeldt disease (046.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\Jakob-Creutzfeldt disease (046.1)\(046.11) Variant Creutzfeldt-Jakob disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''046.11''', NULL, + '(046.11) Variant Creutzfeldt-Jakob disease', '(046.11) Variant Creutzfeldt-Jakob disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\Jakob-Creutzfeldt disease (046.1)\(046.19) Other and unspecified Creutzfeldt-Jakob disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\Jakob-Creutzfeldt disease (046.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\Slow virus infections and prion diseases of central nervous system (046)\Jakob-Creutzfeldt disease (046.1)\(046.19) Other and unspecified Creutzfeldt-Jakob disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''046.19''', NULL, + '(046.19) Other and unspecified Creutzfeldt-Jakob disease', '(046.19) Other and unspecified Creutzfeldt-Jakob disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''080'' AND ''088.99''', NULL, + 'Rickettsioses and other arthropod-borne diseases (080-088.99)', 'Rickettsioses and other arthropod-borne diseases (080-088.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\(080) Louse-borne (epidemic) typhus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\(080) Louse-borne (epidemic) typhus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''080) Louse'' AND ''borne (epidemic''', NULL, + '(080) Louse-borne (epidemic) typhus', '(080) Louse-borne (epidemic) typhus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''085''', NULL, + 'Leishmaniasis (085)', 'Leishmaniasis (085)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.0) Visceral [kala-azar] leishmaniasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.0) Visceral [kala-azar] leishmaniasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''085.0''', NULL, + '(085.0) Visceral [kala-azar] leishmaniasis', '(085.0) Visceral [kala-azar] leishmaniasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.1) Cutaneous leishmaniasis, urban\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.1) Cutaneous leishmaniasis, urban\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''085.1''', NULL, + '(085.1) Cutaneous leishmaniasis, urban', '(085.1) Cutaneous leishmaniasis, urban', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.2) Cutaneous leishmaniasis, Asian desert\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.2) Cutaneous leishmaniasis, Asian desert\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''085.2''', NULL, + '(085.2) Cutaneous leishmaniasis, Asian desert', '(085.2) Cutaneous leishmaniasis, Asian desert', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.3) Cutaneous leishmaniasis, Ethiopian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.3) Cutaneous leishmaniasis, Ethiopian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''085.3''', NULL, + '(085.3) Cutaneous leishmaniasis, Ethiopian', '(085.3) Cutaneous leishmaniasis, Ethiopian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.4) Cutaneous leishmaniasis, American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.4) Cutaneous leishmaniasis, American\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''085.4''', NULL, + '(085.4) Cutaneous leishmaniasis, American', '(085.4) Cutaneous leishmaniasis, American', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.5) Mucocutaneous leishmaniasis, (American)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.5) Mucocutaneous leishmaniasis, (American)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''085.5) Mucocutaneous leishmaniasis, (American''', NULL, + '(085.5) Mucocutaneous leishmaniasis, (American)', '(085.5) Mucocutaneous leishmaniasis, (American)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.9) Leishmaniasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Leishmaniasis (085)\(085.9) Leishmaniasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''085.9''', NULL, + '(085.9) Leishmaniasis, unspecified', '(085.9) Leishmaniasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''084''', NULL, + 'Malaria (084)', 'Malaria (084)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.0) Falciparum malaria [malignant tertian]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.0) Falciparum malaria [malignant tertian]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''084.0''', NULL, + '(084.0) Falciparum malaria [malignant tertian]', '(084.0) Falciparum malaria [malignant tertian]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.1) Vivax malaria [benign tertian]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.1) Vivax malaria [benign tertian]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''084.1''', NULL, + '(084.1) Vivax malaria [benign tertian]', '(084.1) Vivax malaria [benign tertian]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.2) Quartan malaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.2) Quartan malaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''084.2''', NULL, + '(084.2) Quartan malaria', '(084.2) Quartan malaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.3) Ovale malaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.3) Ovale malaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''084.3''', NULL, + '(084.3) Ovale malaria', '(084.3) Ovale malaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.4) Other malaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.4) Other malaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''084.4''', NULL, + '(084.4) Other malaria', '(084.4) Other malaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.5) Mixed malaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.5) Mixed malaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''084.5''', NULL, + '(084.5) Mixed malaria', '(084.5) Mixed malaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.6) Malaria, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.6) Malaria, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''084.6''', NULL, + '(084.6) Malaria, unspecified', '(084.6) Malaria, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.7) Induced malaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.7) Induced malaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''084.7''', NULL, + '(084.7) Induced malaria', '(084.7) Induced malaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.8) Blackwater fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.8) Blackwater fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''084.8''', NULL, + '(084.8) Blackwater fever', '(084.8) Blackwater fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.9) Other pernicious complications of malaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Malaria (084)\(084.9) Other pernicious complications of malaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''084.9''', NULL, + '(084.9) Other pernicious complications of malaria', '(084.9) Other pernicious complications of malaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''088''', NULL, + 'Other arthropod-borne diseases (088)', 'Other arthropod-borne diseases (088)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\(088.0) Bartonellosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\(088.0) Bartonellosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''088.0''', NULL, + '(088.0) Bartonellosis', '(088.0) Bartonellosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\(088.9) Arthropod-borne disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\(088.9) Arthropod-borne disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''088.9''', NULL, + '(088.9) Arthropod-borne disease, unspecified', '(088.9) Arthropod-borne disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\Other specified arthropod-borne diseases (088.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\Other specified arthropod-borne diseases (088.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''088.8''', NULL, + 'Other specified arthropod-borne diseases (088.8)', 'Other specified arthropod-borne diseases (088.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\Other specified arthropod-borne diseases (088.8)\(088.81) Lyme Disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\Other specified arthropod-borne diseases (088.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\Other specified arthropod-borne diseases (088.8)\(088.81) Lyme Disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''088.81''', NULL, + '(088.81) Lyme Disease', '(088.81) Lyme Disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\Other specified arthropod-borne diseases (088.8)\(088.82) Babesiosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\Other specified arthropod-borne diseases (088.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\Other specified arthropod-borne diseases (088.8)\(088.82) Babesiosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''088.82''', NULL, + '(088.82) Babesiosis', '(088.82) Babesiosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\Other specified arthropod-borne diseases (088.8)\(088.89) Other specified arthropod-borne diseases, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\Other specified arthropod-borne diseases (088.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other arthropod-borne diseases (088)\Other specified arthropod-borne diseases (088.8)\(088.89) Other specified arthropod-borne diseases, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''088.89''', NULL, + '(088.89) Other specified arthropod-borne diseases, other', '(088.89) Other specified arthropod-borne diseases, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''083''', NULL, + 'Other rickettsioses (083)', 'Other rickettsioses (083)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\(083.0) Q fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\(083.0) Q fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''083.0''', NULL, + '(083.0) Q fever', '(083.0) Q fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\(083.1) Trench fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\(083.1) Trench fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''083.1''', NULL, + '(083.1) Trench fever', '(083.1) Trench fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\(083.2) Rickettsialpox\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\(083.2) Rickettsialpox\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''083.2''', NULL, + '(083.2) Rickettsialpox', '(083.2) Rickettsialpox', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\(083.8) Other specified rickettsioses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\(083.8) Other specified rickettsioses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''083.8''', NULL, + '(083.8) Other specified rickettsioses', '(083.8) Other specified rickettsioses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\(083.9) Rickettsiosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other rickettsioses (083)\(083.9) Rickettsiosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''083.9''', NULL, + '(083.9) Rickettsiosis, unspecified', '(083.9) Rickettsiosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''081''', NULL, + 'Other typhus (081)', 'Other typhus (081)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\(081.0) Murine (endemic) typhus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\(081.0) Murine (endemic) typhus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''081.0) Murine (endemic''', NULL, + '(081.0) Murine (endemic) typhus', '(081.0) Murine (endemic) typhus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\(081.1) Brill''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\(081.1) Brill''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''081.1''', NULL, + '(081.1) Brill''s disease', '(081.1) Brill''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\(081.2) Scrub typhus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\(081.2) Scrub typhus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''081.2''', NULL, + '(081.2) Scrub typhus', '(081.2) Scrub typhus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\(081.9) Typhus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Other typhus (081)\(081.9) Typhus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''081.9''', NULL, + '(081.9) Typhus, unspecified', '(081.9) Typhus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Relapsing fever (087)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Relapsing fever (087)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''087''', NULL, + 'Relapsing fever (087)', 'Relapsing fever (087)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Relapsing fever (087)\(087.0) Relapsing fever, louse-borne\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Relapsing fever (087)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Relapsing fever (087)\(087.0) Relapsing fever, louse-borne\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''087.0''', NULL, + '(087.0) Relapsing fever, louse-borne', '(087.0) Relapsing fever, louse-borne', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Relapsing fever (087)\(087.1) Relapsing fever, tick-borne\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Relapsing fever (087)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Relapsing fever (087)\(087.1) Relapsing fever, tick-borne\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''087.1''', NULL, + '(087.1) Relapsing fever, tick-borne', '(087.1) Relapsing fever, tick-borne', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Relapsing fever (087)\(087.9) Relapsing fever, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Relapsing fever (087)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Relapsing fever (087)\(087.9) Relapsing fever, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''087.9''', NULL, + '(087.9) Relapsing fever, unspecified', '(087.9) Relapsing fever, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''082''', NULL, + 'Tick-borne rickettsioses (082)', 'Tick-borne rickettsioses (082)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.0) Spotted fevers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.0) Spotted fevers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''082.0''', NULL, + '(082.0) Spotted fevers', '(082.0) Spotted fevers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.1) Boutonneuse fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.1) Boutonneuse fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''082.1''', NULL, + '(082.1) Boutonneuse fever', '(082.1) Boutonneuse fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.2) North Asian tick fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.2) North Asian tick fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''082.2''', NULL, + '(082.2) North Asian tick fever', '(082.2) North Asian tick fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.3) Queensland tick typhus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.3) Queensland tick typhus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''082.3''', NULL, + '(082.3) Queensland tick typhus', '(082.3) Queensland tick typhus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.8) Other specified tick-borne rickettsioses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.8) Other specified tick-borne rickettsioses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''082.8''', NULL, + '(082.8) Other specified tick-borne rickettsioses', '(082.8) Other specified tick-borne rickettsioses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.9) Tick-borne rickettsiosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\(082.9) Tick-borne rickettsiosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''082.9''', NULL, + '(082.9) Tick-borne rickettsiosis, unspecified', '(082.9) Tick-borne rickettsiosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\Ehrlichiosis (082.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\Ehrlichiosis (082.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''082.4''', NULL, + 'Ehrlichiosis (082.4)', 'Ehrlichiosis (082.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\Ehrlichiosis (082.4)\(082.40) Ehrlichiosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\Ehrlichiosis (082.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\Ehrlichiosis (082.4)\(082.40) Ehrlichiosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''082.40''', NULL, + '(082.40) Ehrlichiosis, unspecified', '(082.40) Ehrlichiosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\Ehrlichiosis (082.4)\(082.41) Ehrlichiosis chafeensis [E. chafeensis]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\Ehrlichiosis (082.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\Ehrlichiosis (082.4)\(082.41) Ehrlichiosis chafeensis [E. chafeensis]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''082.41''', NULL, + '(082.41) Ehrlichiosis chafeensis [E. chafeensis]', '(082.41) Ehrlichiosis chafeensis [E. chafeensis]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\Ehrlichiosis (082.4)\(082.49) Other ehrlichiosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\Ehrlichiosis (082.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Tick-borne rickettsioses (082)\Ehrlichiosis (082.4)\(082.49) Other ehrlichiosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''082.49''', NULL, + '(082.49) Other ehrlichiosis', '(082.49) Other ehrlichiosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''086''', NULL, + 'Trypanosomiasis (086)', 'Trypanosomiasis (086)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.0) Chagas'' disease with heart involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.0) Chagas'' disease with heart involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''086.0''', NULL, + '(086.0) Chagas'' disease with heart involvement', '(086.0) Chagas'' disease with heart involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.1) Chagas'' disease with other organ involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.1) Chagas'' disease with other organ involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''086.1''', NULL, + '(086.1) Chagas'' disease with other organ involvement', '(086.1) Chagas'' disease with other organ involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.2) Chagas'' disease without mention of organ involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.2) Chagas'' disease without mention of organ involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''086.2''', NULL, + '(086.2) Chagas'' disease without mention of organ involvement', '(086.2) Chagas'' disease without mention of organ involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.3) Gambian trypanosomiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.3) Gambian trypanosomiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''086.3''', NULL, + '(086.3) Gambian trypanosomiasis', '(086.3) Gambian trypanosomiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.4) Rhodesian trypanosomiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.4) Rhodesian trypanosomiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''086.4''', NULL, + '(086.4) Rhodesian trypanosomiasis', '(086.4) Rhodesian trypanosomiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.5) African trypanosomiasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.5) African trypanosomiasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''086.5''', NULL, + '(086.5) African trypanosomiasis, unspecified', '(086.5) African trypanosomiasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.9) Trypanosomiasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Rickettsioses and other arthropod-borne diseases (080-088.99)\Trypanosomiasis (086)\(086.9) Trypanosomiasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''086.9''', NULL, + '(086.9) Trypanosomiasis, unspecified', '(086.9) Trypanosomiasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''090'' AND ''099.99''', NULL, + 'Syphilis and other venereal diseases (090-099.99)', 'Syphilis and other venereal diseases (090-099.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\(096) Late syphilis, latent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\(096) Late syphilis, latent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''096''', NULL, + '(096) Late syphilis, latent', '(096) Late syphilis, latent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093''', NULL, + 'Cardiovascular syphilis (093)', 'Cardiovascular syphilis (093)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\(093.0) Aneurysm of aorta, specified as syphilitic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\(093.0) Aneurysm of aorta, specified as syphilitic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.0''', NULL, + '(093.0) Aneurysm of aorta, specified as syphilitic', '(093.0) Aneurysm of aorta, specified as syphilitic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\(093.1) Syphilitic aortitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\(093.1) Syphilitic aortitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.1''', NULL, + '(093.1) Syphilitic aortitis', '(093.1) Syphilitic aortitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\(093.9) Cardiovascular syphilis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\(093.9) Cardiovascular syphilis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.9''', NULL, + '(093.9) Cardiovascular syphilis, unspecified', '(093.9) Cardiovascular syphilis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Other specified cardiovascular syphilis (093.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Other specified cardiovascular syphilis (093.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.8''', NULL, + 'Other specified cardiovascular syphilis (093.8)', 'Other specified cardiovascular syphilis (093.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Other specified cardiovascular syphilis (093.8)\(093.81) Syphilitic pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Other specified cardiovascular syphilis (093.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Other specified cardiovascular syphilis (093.8)\(093.81) Syphilitic pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.81''', NULL, + '(093.81) Syphilitic pericarditis', '(093.81) Syphilitic pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Other specified cardiovascular syphilis (093.8)\(093.82) Syphilitic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Other specified cardiovascular syphilis (093.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Other specified cardiovascular syphilis (093.8)\(093.82) Syphilitic myocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.82''', NULL, + '(093.82) Syphilitic myocarditis', '(093.82) Syphilitic myocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Other specified cardiovascular syphilis (093.8)\(093.89) Other specified cardiovascular syphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Other specified cardiovascular syphilis (093.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Other specified cardiovascular syphilis (093.8)\(093.89) Other specified cardiovascular syphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.89''', NULL, + '(093.89) Other specified cardiovascular syphilis', '(093.89) Other specified cardiovascular syphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.2''', NULL, + 'Syphilitic endocarditis (093.2)', 'Syphilitic endocarditis (093.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\(093.20) Syphilitic endocarditis of valve, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\(093.20) Syphilitic endocarditis of valve, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.20''', NULL, + '(093.20) Syphilitic endocarditis of valve, unspecified', '(093.20) Syphilitic endocarditis of valve, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\(093.21) Syphilitic endocarditis of mitral valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\(093.21) Syphilitic endocarditis of mitral valve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.21''', NULL, + '(093.21) Syphilitic endocarditis of mitral valve', '(093.21) Syphilitic endocarditis of mitral valve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\(093.22) Syphilitic endocarditis of aortic valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\(093.22) Syphilitic endocarditis of aortic valve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.22''', NULL, + '(093.22) Syphilitic endocarditis of aortic valve', '(093.22) Syphilitic endocarditis of aortic valve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\(093.23) Syphilitic endocarditis of tricuspid valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\(093.23) Syphilitic endocarditis of tricuspid valve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.23''', NULL, + '(093.23) Syphilitic endocarditis of tricuspid valve', '(093.23) Syphilitic endocarditis of tricuspid valve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\(093.24) Syphilitic endocarditis of pulmonary valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Cardiovascular syphilis (093)\Syphilitic endocarditis (093.2)\(093.24) Syphilitic endocarditis of pulmonary valve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''093.24''', NULL, + '(093.24) Syphilitic endocarditis of pulmonary valve', '(093.24) Syphilitic endocarditis of pulmonary valve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090''', NULL, + 'Congenital syphilis (090)', 'Congenital syphilis (090)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.0) Early congenital syphilis, symptomatic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.0) Early congenital syphilis, symptomatic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.0''', NULL, + '(090.0) Early congenital syphilis, symptomatic', '(090.0) Early congenital syphilis, symptomatic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.1) Early congenital syphilis, latent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.1) Early congenital syphilis, latent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.1''', NULL, + '(090.1) Early congenital syphilis, latent', '(090.1) Early congenital syphilis, latent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.2) Early congenital syphilis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.2) Early congenital syphilis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.2''', NULL, + '(090.2) Early congenital syphilis, unspecified', '(090.2) Early congenital syphilis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.3) Syphilitic interstitial keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.3) Syphilitic interstitial keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.3''', NULL, + '(090.3) Syphilitic interstitial keratitis', '(090.3) Syphilitic interstitial keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.5) Other late congenital syphilis, symptomatic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.5) Other late congenital syphilis, symptomatic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.5''', NULL, + '(090.5) Other late congenital syphilis, symptomatic', '(090.5) Other late congenital syphilis, symptomatic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.6) Late congenital syphilis, latent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.6) Late congenital syphilis, latent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.6''', NULL, + '(090.6) Late congenital syphilis, latent', '(090.6) Late congenital syphilis, latent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.7) Late congenital syphilis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.7) Late congenital syphilis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.7''', NULL, + '(090.7) Late congenital syphilis, unspecified', '(090.7) Late congenital syphilis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.9) Congenital syphilis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\(090.9) Congenital syphilis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.9''', NULL, + '(090.9) Congenital syphilis, unspecified', '(090.9) Congenital syphilis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.4''', NULL, + 'Juvenile neurosyphilis (090.4)', 'Juvenile neurosyphilis (090.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\(090.40) Juvenile neurosyphilis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\(090.40) Juvenile neurosyphilis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.40''', NULL, + '(090.40) Juvenile neurosyphilis, unspecified', '(090.40) Juvenile neurosyphilis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\(090.41) Congenital syphilitic encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\(090.41) Congenital syphilitic encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.41''', NULL, + '(090.41) Congenital syphilitic encephalitis', '(090.41) Congenital syphilitic encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\(090.42) Congenital syphilitic meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\(090.42) Congenital syphilitic meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.42''', NULL, + '(090.42) Congenital syphilitic meningitis', '(090.42) Congenital syphilitic meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\(090.49) Other juvenile neurosyphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Congenital syphilis (090)\Juvenile neurosyphilis (090.4)\(090.49) Other juvenile neurosyphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''090.49''', NULL, + '(090.49) Other juvenile neurosyphilis', '(090.49) Other juvenile neurosyphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, latent (092)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, latent (092)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''092''', NULL, + 'Early syphilis, latent (092)', 'Early syphilis, latent (092)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, latent (092)\(092.0) Early syphilis, latent, serological relapse after treatment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, latent (092)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, latent (092)\(092.0) Early syphilis, latent, serological relapse after treatment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''092.0''', NULL, + '(092.0) Early syphilis, latent, serological relapse after treatment', '(092.0) Early syphilis, latent, serological relapse after treatment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, latent (092)\(092.9) Early syphilis, latent, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, latent (092)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, latent (092)\(092.9) Early syphilis, latent, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''092.9''', NULL, + '(092.9) Early syphilis, latent, unspecified', '(092.9) Early syphilis, latent, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091''', NULL, + 'Early syphilis, symptomatic (091)', 'Early syphilis, symptomatic (091)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.0) Genital syphilis (primary)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.0) Genital syphilis (primary)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.0) Genital syphilis (primary''', NULL, + '(091.0) Genital syphilis (primary)', '(091.0) Genital syphilis (primary)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.1) Primary anal syphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.1) Primary anal syphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.1''', NULL, + '(091.1) Primary anal syphilis', '(091.1) Primary anal syphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.2) Other primary syphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.2) Other primary syphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.2''', NULL, + '(091.2) Other primary syphilis', '(091.2) Other primary syphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.3) Secondary syphilis of skin or mucous membranes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.3) Secondary syphilis of skin or mucous membranes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.3''', NULL, + '(091.3) Secondary syphilis of skin or mucous membranes', '(091.3) Secondary syphilis of skin or mucous membranes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.4) Adenopathy due to secondary syphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.4) Adenopathy due to secondary syphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.4''', NULL, + '(091.4) Adenopathy due to secondary syphilis', '(091.4) Adenopathy due to secondary syphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.7) Secondary syphilis, relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.7) Secondary syphilis, relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.7''', NULL, + '(091.7) Secondary syphilis, relapse', '(091.7) Secondary syphilis, relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.9) Unspecified secondary syphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\(091.9) Unspecified secondary syphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.9''', NULL, + '(091.9) Unspecified secondary syphilis', '(091.9) Unspecified secondary syphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Other forms of secondary syphilis (091.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Other forms of secondary syphilis (091.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.8''', NULL, + 'Other forms of secondary syphilis (091.8)', 'Other forms of secondary syphilis (091.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Other forms of secondary syphilis (091.8)\(091.81) Acute syphilitic meningitis (secondary)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Other forms of secondary syphilis (091.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Other forms of secondary syphilis (091.8)\(091.81) Acute syphilitic meningitis (secondary)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.81) Acute syphilitic meningitis (secondary''', NULL, + '(091.81) Acute syphilitic meningitis (secondary)', '(091.81) Acute syphilitic meningitis (secondary)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Other forms of secondary syphilis (091.8)\(091.82) Syphilitic alopecia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Other forms of secondary syphilis (091.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Other forms of secondary syphilis (091.8)\(091.82) Syphilitic alopecia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.82''', NULL, + '(091.82) Syphilitic alopecia', '(091.82) Syphilitic alopecia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Other forms of secondary syphilis (091.8)\(091.89) Other forms of secondary syphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Other forms of secondary syphilis (091.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Other forms of secondary syphilis (091.8)\(091.89) Other forms of secondary syphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.89''', NULL, + '(091.89) Other forms of secondary syphilis', '(091.89) Other forms of secondary syphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Secondary syphilis of viscera and bone (091.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Secondary syphilis of viscera and bone (091.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.6''', NULL, + 'Secondary syphilis of viscera and bone (091.6)', 'Secondary syphilis of viscera and bone (091.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Secondary syphilis of viscera and bone (091.6)\(091.61) Secondary syphilitic periostitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Secondary syphilis of viscera and bone (091.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Secondary syphilis of viscera and bone (091.6)\(091.61) Secondary syphilitic periostitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.61''', NULL, + '(091.61) Secondary syphilitic periostitis', '(091.61) Secondary syphilitic periostitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Secondary syphilis of viscera and bone (091.6)\(091.62) Secondary syphilitic hepatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Secondary syphilis of viscera and bone (091.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Secondary syphilis of viscera and bone (091.6)\(091.62) Secondary syphilitic hepatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.62''', NULL, + '(091.62) Secondary syphilitic hepatitis', '(091.62) Secondary syphilitic hepatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Secondary syphilis of viscera and bone (091.6)\(091.69) Secondary syphilis of other viscera\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Secondary syphilis of viscera and bone (091.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Secondary syphilis of viscera and bone (091.6)\(091.69) Secondary syphilis of other viscera\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.69''', NULL, + '(091.69) Secondary syphilis of other viscera', '(091.69) Secondary syphilis of other viscera', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Uveitis due to secondary syphilis (091.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Uveitis due to secondary syphilis (091.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.5''', NULL, + 'Uveitis due to secondary syphilis (091.5)', 'Uveitis due to secondary syphilis (091.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Uveitis due to secondary syphilis (091.5)\(091.50) Syphilitic uveitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Uveitis due to secondary syphilis (091.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Uveitis due to secondary syphilis (091.5)\(091.50) Syphilitic uveitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.50''', NULL, + '(091.50) Syphilitic uveitis, unspecified', '(091.50) Syphilitic uveitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Uveitis due to secondary syphilis (091.5)\(091.51) Syphilitic chorioretinitis (secondary)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Uveitis due to secondary syphilis (091.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Uveitis due to secondary syphilis (091.5)\(091.51) Syphilitic chorioretinitis (secondary)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.51) Syphilitic chorioretinitis (secondary''', NULL, + '(091.51) Syphilitic chorioretinitis (secondary)', '(091.51) Syphilitic chorioretinitis (secondary)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Uveitis due to secondary syphilis (091.5)\(091.52) Syphilitic iridocyclitis (secondary)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Uveitis due to secondary syphilis (091.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Early syphilis, symptomatic (091)\Uveitis due to secondary syphilis (091.5)\(091.52) Syphilitic iridocyclitis (secondary)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''091.52) Syphilitic iridocyclitis (secondary''', NULL, + '(091.52) Syphilitic iridocyclitis (secondary)', '(091.52) Syphilitic iridocyclitis (secondary)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098''', NULL, + 'Gonococcal infections (098)', 'Gonococcal infections (098)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\(098.0) Gonococcal infection (acute) of lower genitourinary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\(098.0) Gonococcal infection (acute) of lower genitourinary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.0) Gonococcal infection (acute''', NULL, + '(098.0) Gonococcal infection (acute) of lower genitourinary tract', '(098.0) Gonococcal infection (acute) of lower genitourinary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\(098.2) Gonococcal infection, chronic, of lower genitourinary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\(098.2) Gonococcal infection, chronic, of lower genitourinary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.2''', NULL, + '(098.2) Gonococcal infection, chronic, of lower genitourinary tract', '(098.2) Gonococcal infection, chronic, of lower genitourinary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\(098.6) Gonococcal infection of pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\(098.6) Gonococcal infection of pharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.6''', NULL, + '(098.6) Gonococcal infection of pharynx', '(098.6) Gonococcal infection of pharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\(098.7) Gonococcal infection of anus and rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\(098.7) Gonococcal infection of anus and rectum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.7''', NULL, + '(098.7) Gonococcal infection of anus and rectum', '(098.7) Gonococcal infection of anus and rectum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''acute) of upper genitourinary tract (098.1''', NULL, + 'Gonococcal infection (acute) of upper genitourinary tract (098.1)', 'Gonococcal infection (acute) of upper genitourinary tract (098.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.10) Gonococcal infection (acute) of upper genitourinary tract, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.10) Gonococcal infection (acute) of upper genitourinary tract, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.10) Gonococcal infection (acute''', NULL, + '(098.10) Gonococcal infection (acute) of upper genitourinary tract, site unspecified', '(098.10) Gonococcal infection (acute) of upper genitourinary tract, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.11) Gonococcal cystitis (acute)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.11) Gonococcal cystitis (acute)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.11) Gonococcal cystitis (acute''', NULL, + '(098.11) Gonococcal cystitis (acute)', '(098.11) Gonococcal cystitis (acute)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.12) Gonococcal prostatitis (acute)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.12) Gonococcal prostatitis (acute)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.12) Gonococcal prostatitis (acute''', NULL, + '(098.12) Gonococcal prostatitis (acute)', '(098.12) Gonococcal prostatitis (acute)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.13) Gonococcal epididymo-orchitis (acute)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.13) Gonococcal epididymo-orchitis (acute)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''098.13) Gonococcal epididymo'' AND ''orchitis (acute''', NULL, + '(098.13) Gonococcal epididymo-orchitis (acute)', '(098.13) Gonococcal epididymo-orchitis (acute)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.14) Gonococcal seminal vesiculitis (acute)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.14) Gonococcal seminal vesiculitis (acute)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.14) Gonococcal seminal vesiculitis (acute''', NULL, + '(098.14) Gonococcal seminal vesiculitis (acute)', '(098.14) Gonococcal seminal vesiculitis (acute)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.15) Gonococcal cervicitis (acute)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.15) Gonococcal cervicitis (acute)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.15) Gonococcal cervicitis (acute''', NULL, + '(098.15) Gonococcal cervicitis (acute)', '(098.15) Gonococcal cervicitis (acute)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.16) Gonococcal endometritis (acute)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.16) Gonococcal endometritis (acute)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.16) Gonococcal endometritis (acute''', NULL, + '(098.16) Gonococcal endometritis (acute)', '(098.16) Gonococcal endometritis (acute)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.17) Gonococcal salpingitis, specified as acute\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.17) Gonococcal salpingitis, specified as acute\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.17''', NULL, + '(098.17) Gonococcal salpingitis, specified as acute', '(098.17) Gonococcal salpingitis, specified as acute', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.19) Other gonococcal infection (acute) of upper genitourinary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection (acute) of upper genitourinary tract (098.1)\(098.19) Other gonococcal infection (acute) of upper genitourinary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.19) Other gonococcal infection (acute''', NULL, + '(098.19) Other gonococcal infection (acute) of upper genitourinary tract', '(098.19) Other gonococcal infection (acute) of upper genitourinary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.4''', NULL, + 'Gonococcal infection of eye (098.4)', 'Gonococcal infection of eye (098.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\(098.40) Gonococcal conjunctivitis (neonatorum)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\(098.40) Gonococcal conjunctivitis (neonatorum)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.40) Gonococcal conjunctivitis (neonatorum''', NULL, + '(098.40) Gonococcal conjunctivitis (neonatorum)', '(098.40) Gonococcal conjunctivitis (neonatorum)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\(098.41) Gonococcal iridocyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\(098.41) Gonococcal iridocyclitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.41''', NULL, + '(098.41) Gonococcal iridocyclitis', '(098.41) Gonococcal iridocyclitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\(098.42) Gonococcal endophthalmia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\(098.42) Gonococcal endophthalmia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.42''', NULL, + '(098.42) Gonococcal endophthalmia', '(098.42) Gonococcal endophthalmia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\(098.43) Gonococcal keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\(098.43) Gonococcal keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.43''', NULL, + '(098.43) Gonococcal keratitis', '(098.43) Gonococcal keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\(098.49) Other gonococcal infection of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of eye (098.4)\(098.49) Other gonococcal infection of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.49''', NULL, + '(098.49) Other gonococcal infection of eye', '(098.49) Other gonococcal infection of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.5''', NULL, + 'Gonococcal infection of joint (098.5)', 'Gonococcal infection of joint (098.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\(098.50) Gonococcal arthritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\(098.50) Gonococcal arthritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.50''', NULL, + '(098.50) Gonococcal arthritis', '(098.50) Gonococcal arthritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\(098.51) Gonococcal synovitis and tenosynovitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\(098.51) Gonococcal synovitis and tenosynovitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.51''', NULL, + '(098.51) Gonococcal synovitis and tenosynovitis', '(098.51) Gonococcal synovitis and tenosynovitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\(098.52) Gonococcal bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\(098.52) Gonococcal bursitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.52''', NULL, + '(098.52) Gonococcal bursitis', '(098.52) Gonococcal bursitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\(098.53) Gonococcal spondylitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\(098.53) Gonococcal spondylitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.53''', NULL, + '(098.53) Gonococcal spondylitis', '(098.53) Gonococcal spondylitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\(098.59) Other gonococcal infection of joint\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of joint (098.5)\(098.59) Other gonococcal infection of joint\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.59''', NULL, + '(098.59) Other gonococcal infection of joint', '(098.59) Other gonococcal infection of joint', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.8''', NULL, + 'Gonococcal infection of other specified sites (098.8)', 'Gonococcal infection of other specified sites (098.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.81) Gonococcal keratosis (blennorrhagica)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.81) Gonococcal keratosis (blennorrhagica)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.81) Gonococcal keratosis (blennorrhagica''', NULL, + '(098.81) Gonococcal keratosis (blennorrhagica)', '(098.81) Gonococcal keratosis (blennorrhagica)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.82) Gonococcal meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.82) Gonococcal meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.82''', NULL, + '(098.82) Gonococcal meningitis', '(098.82) Gonococcal meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.83) Gonococcal pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.83) Gonococcal pericarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.83''', NULL, + '(098.83) Gonococcal pericarditis', '(098.83) Gonococcal pericarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.84) Gonococcal endocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.84) Gonococcal endocarditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.84''', NULL, + '(098.84) Gonococcal endocarditis', '(098.84) Gonococcal endocarditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.85) Other gonococcal heart disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.85) Other gonococcal heart disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.85''', NULL, + '(098.85) Other gonococcal heart disease', '(098.85) Other gonococcal heart disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.86) Gonococcal peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.86) Gonococcal peritonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.86''', NULL, + '(098.86) Gonococcal peritonitis', '(098.86) Gonococcal peritonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.89) Gonococcal infection of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection of other specified sites (098.8)\(098.89) Gonococcal infection of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.89''', NULL, + '(098.89) Gonococcal infection of other specified sites', '(098.89) Gonococcal infection of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.3''', NULL, + 'Gonococcal infection, chronic, of upper genitourinary tract (098.3)', 'Gonococcal infection, chronic, of upper genitourinary tract (098.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.30) Chronic gonococcal infection of upper genitourinary tract, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.30) Chronic gonococcal infection of upper genitourinary tract, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.30''', NULL, + '(098.30) Chronic gonococcal infection of upper genitourinary tract, site unspecified', '(098.30) Chronic gonococcal infection of upper genitourinary tract, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.31) Gonococcal cystitis, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.31) Gonococcal cystitis, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.31''', NULL, + '(098.31) Gonococcal cystitis, chronic', '(098.31) Gonococcal cystitis, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.32) Gonococcal prostatitis, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.32) Gonococcal prostatitis, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.32''', NULL, + '(098.32) Gonococcal prostatitis, chronic', '(098.32) Gonococcal prostatitis, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.33) Gonococcal epididymo-orchitis, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.33) Gonococcal epididymo-orchitis, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.33''', NULL, + '(098.33) Gonococcal epididymo-orchitis, chronic', '(098.33) Gonococcal epididymo-orchitis, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.34) Gonococcal seminal vesiculitis, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.34) Gonococcal seminal vesiculitis, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.34''', NULL, + '(098.34) Gonococcal seminal vesiculitis, chronic', '(098.34) Gonococcal seminal vesiculitis, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.35) Gonococcal cervicitis, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.35) Gonococcal cervicitis, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.35''', NULL, + '(098.35) Gonococcal cervicitis, chronic', '(098.35) Gonococcal cervicitis, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.36) Gonococcal endometritis, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.36) Gonococcal endometritis, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.36''', NULL, + '(098.36) Gonococcal endometritis, chronic', '(098.36) Gonococcal endometritis, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.37) Gonococcal salpingitis (chronic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.37) Gonococcal salpingitis (chronic)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.37) Gonococcal salpingitis (chronic''', NULL, + '(098.37) Gonococcal salpingitis (chronic)', '(098.37) Gonococcal salpingitis (chronic)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.39) Other chronic gonococcal infection of upper genitourinary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Gonococcal infections (098)\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\(098.39) Other chronic gonococcal infection of upper genitourinary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''098.39''', NULL, + '(098.39) Other chronic gonococcal infection of upper genitourinary tract', '(098.39) Other chronic gonococcal infection of upper genitourinary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094''', NULL, + 'Neurosyphilis (094)', 'Neurosyphilis (094)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\(094.0) Tabes dorsalis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\(094.0) Tabes dorsalis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.0''', NULL, + '(094.0) Tabes dorsalis', '(094.0) Tabes dorsalis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\(094.1) General paresis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\(094.1) General paresis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.1''', NULL, + '(094.1) General paresis', '(094.1) General paresis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\(094.2) Syphilitic meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\(094.2) Syphilitic meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.2''', NULL, + '(094.2) Syphilitic meningitis', '(094.2) Syphilitic meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\(094.3) Asymptomatic neurosyphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\(094.3) Asymptomatic neurosyphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.3''', NULL, + '(094.3) Asymptomatic neurosyphilis', '(094.3) Asymptomatic neurosyphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\(094.9) Neurosyphilis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\(094.9) Neurosyphilis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.9''', NULL, + '(094.9) Neurosyphilis, unspecified', '(094.9) Neurosyphilis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.8''', NULL, + 'Other specified neurosyphilis (094.8)', 'Other specified neurosyphilis (094.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.81) Syphilitic encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.81) Syphilitic encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.81''', NULL, + '(094.81) Syphilitic encephalitis', '(094.81) Syphilitic encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.82) Syphilitic parkinsonism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.82) Syphilitic parkinsonism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.82''', NULL, + '(094.82) Syphilitic parkinsonism', '(094.82) Syphilitic parkinsonism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.83) Syphilitic disseminated retinochoroiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.83) Syphilitic disseminated retinochoroiditis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.83''', NULL, + '(094.83) Syphilitic disseminated retinochoroiditis', '(094.83) Syphilitic disseminated retinochoroiditis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.84) Syphilitic optic atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.84) Syphilitic optic atrophy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.84''', NULL, + '(094.84) Syphilitic optic atrophy', '(094.84) Syphilitic optic atrophy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.85) Syphilitic retrobulbar neuritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.85) Syphilitic retrobulbar neuritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.85''', NULL, + '(094.85) Syphilitic retrobulbar neuritis', '(094.85) Syphilitic retrobulbar neuritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.86) Syphilitic acoustic neuritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.86) Syphilitic acoustic neuritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.86''', NULL, + '(094.86) Syphilitic acoustic neuritis', '(094.86) Syphilitic acoustic neuritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.87) Syphilitic ruptured cerebral aneurysm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.87) Syphilitic ruptured cerebral aneurysm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.87''', NULL, + '(094.87) Syphilitic ruptured cerebral aneurysm', '(094.87) Syphilitic ruptured cerebral aneurysm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.89) Other specified neurosyphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Neurosyphilis (094)\Other specified neurosyphilis (094.8)\(094.89) Other specified neurosyphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''094.89''', NULL, + '(094.89) Other specified neurosyphilis', '(094.89) Other specified neurosyphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other and unspecified syphilis (097)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other and unspecified syphilis (097)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''097''', NULL, + 'Other and unspecified syphilis (097)', 'Other and unspecified syphilis (097)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other and unspecified syphilis (097)\(097.0) Late syphilis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other and unspecified syphilis (097)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other and unspecified syphilis (097)\(097.0) Late syphilis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''097.0''', NULL, + '(097.0) Late syphilis, unspecified', '(097.0) Late syphilis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other and unspecified syphilis (097)\(097.1) Latent syphilis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other and unspecified syphilis (097)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other and unspecified syphilis (097)\(097.1) Latent syphilis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''097.1''', NULL, + '(097.1) Latent syphilis, unspecified', '(097.1) Latent syphilis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other and unspecified syphilis (097)\(097.9) Syphilis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other and unspecified syphilis (097)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other and unspecified syphilis (097)\(097.9) Syphilis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''097.9''', NULL, + '(097.9) Syphilis, unspecified', '(097.9) Syphilis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''095''', NULL, + 'Other forms of late syphilis, with symptoms (095)', 'Other forms of late syphilis, with symptoms (095)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.0) Syphilitic episcleritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.0) Syphilitic episcleritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''095.0''', NULL, + '(095.0) Syphilitic episcleritis', '(095.0) Syphilitic episcleritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.1) Syphilis of lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.1) Syphilis of lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''095.1''', NULL, + '(095.1) Syphilis of lung', '(095.1) Syphilis of lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.2) Syphilitic peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.2) Syphilitic peritonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''095.2''', NULL, + '(095.2) Syphilitic peritonitis', '(095.2) Syphilitic peritonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.3) Syphilis of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.3) Syphilis of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''095.3''', NULL, + '(095.3) Syphilis of liver', '(095.3) Syphilis of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.4) Syphilis of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.4) Syphilis of kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''095.4''', NULL, + '(095.4) Syphilis of kidney', '(095.4) Syphilis of kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.5) Syphilis of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.5) Syphilis of bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''095.5''', NULL, + '(095.5) Syphilis of bone', '(095.5) Syphilis of bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.6) Syphilis of muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.6) Syphilis of muscle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''095.6''', NULL, + '(095.6) Syphilis of muscle', '(095.6) Syphilis of muscle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.7) Syphilis of synovium, tendon, and bursa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.7) Syphilis of synovium, tendon, and bursa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''095.7''', NULL, + '(095.7) Syphilis of synovium, tendon, and bursa', '(095.7) Syphilis of synovium, tendon, and bursa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.8) Other specified forms of late symptomatic syphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.8) Other specified forms of late symptomatic syphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''095.8''', NULL, + '(095.8) Other specified forms of late symptomatic syphilis', '(095.8) Other specified forms of late symptomatic syphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.9) Late symptomatic syphilis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other forms of late syphilis, with symptoms (095)\(095.9) Late symptomatic syphilis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''095.9''', NULL, + '(095.9) Late symptomatic syphilis, unspecified', '(095.9) Late symptomatic syphilis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099''', NULL, + 'Other venereal diseases (099)', 'Other venereal diseases (099)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.0) Chancroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.0) Chancroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.0''', NULL, + '(099.0) Chancroid', '(099.0) Chancroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.1) Lymphogranuloma venereum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.1) Lymphogranuloma venereum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.1''', NULL, + '(099.1) Lymphogranuloma venereum', '(099.1) Lymphogranuloma venereum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.2) Granuloma inguinale\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.2) Granuloma inguinale\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.2''', NULL, + '(099.2) Granuloma inguinale', '(099.2) Granuloma inguinale', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.3) Reiter''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.3) Reiter''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.3''', NULL, + '(099.3) Reiter''s disease', '(099.3) Reiter''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.8) Other specified venereal diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.8) Other specified venereal diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.8''', NULL, + '(099.8) Other specified venereal diseases', '(099.8) Other specified venereal diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.9) Venereal disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\(099.9) Venereal disease, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.9''', NULL, + '(099.9) Venereal disease, unspecified', '(099.9) Venereal disease, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other nongonococcal urethritis [NGU] (099.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other nongonococcal urethritis [NGU] (099.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.4''', NULL, + 'Other nongonococcal urethritis [NGU] (099.4)', 'Other nongonococcal urethritis [NGU] (099.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other nongonococcal urethritis [NGU] (099.4)\(099.40) Other nongonococcal urethritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other nongonococcal urethritis [NGU] (099.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other nongonococcal urethritis [NGU] (099.4)\(099.40) Other nongonococcal urethritis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.40''', NULL, + '(099.40) Other nongonococcal urethritis, unspecified', '(099.40) Other nongonococcal urethritis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other nongonococcal urethritis [NGU] (099.4)\(099.41) Other nongonococcal urethritis, chlamydia trachomatis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other nongonococcal urethritis [NGU] (099.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other nongonococcal urethritis [NGU] (099.4)\(099.41) Other nongonococcal urethritis, chlamydia trachomatis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.41''', NULL, + '(099.41) Other nongonococcal urethritis, chlamydia trachomatis', '(099.41) Other nongonococcal urethritis, chlamydia trachomatis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other nongonococcal urethritis [NGU] (099.4)\(099.49) Other nongonococcal urethritis, other specified organism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other nongonococcal urethritis [NGU] (099.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other nongonococcal urethritis [NGU] (099.4)\(099.49) Other nongonococcal urethritis, other specified organism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.49''', NULL, + '(099.49) Other nongonococcal urethritis, other specified organism', '(099.49) Other nongonococcal urethritis, other specified organism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.5''', NULL, + 'Other venereal diseases due to Chlamydia trachomatis (099.5)', 'Other venereal diseases due to Chlamydia trachomatis (099.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.50) Other venereal diseases due to chlamydia trachomatis, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.50) Other venereal diseases due to chlamydia trachomatis, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.50''', NULL, + '(099.50) Other venereal diseases due to chlamydia trachomatis, unspecified site', '(099.50) Other venereal diseases due to chlamydia trachomatis, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.51) Other venereal diseases due to chlamydia trachomatis, pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.51) Other venereal diseases due to chlamydia trachomatis, pharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.51''', NULL, + '(099.51) Other venereal diseases due to chlamydia trachomatis, pharynx', '(099.51) Other venereal diseases due to chlamydia trachomatis, pharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.52) Other venereal diseases due to chlamydia trachomatis, anus and rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.52) Other venereal diseases due to chlamydia trachomatis, anus and rectum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.52''', NULL, + '(099.52) Other venereal diseases due to chlamydia trachomatis, anus and rectum', '(099.52) Other venereal diseases due to chlamydia trachomatis, anus and rectum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.53) Other venereal diseases due to chlamydia trachomatis, lower genitourinary sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.53) Other venereal diseases due to chlamydia trachomatis, lower genitourinary sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.53''', NULL, + '(099.53) Other venereal diseases due to chlamydia trachomatis, lower genitourinary sites', '(099.53) Other venereal diseases due to chlamydia trachomatis, lower genitourinary sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.54) Other venereal diseases due to chlamydia trachomatis, other genitourinary sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.54) Other venereal diseases due to chlamydia trachomatis, other genitourinary sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.54''', NULL, + '(099.54) Other venereal diseases due to chlamydia trachomatis, other genitourinary sites', '(099.54) Other venereal diseases due to chlamydia trachomatis, other genitourinary sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.55) Other venereal diseases due to chlamydia trachomatis, unspecified genitourinary site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.55) Other venereal diseases due to chlamydia trachomatis, unspecified genitourinary site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.55''', NULL, + '(099.55) Other venereal diseases due to chlamydia trachomatis, unspecified genitourinary site', '(099.55) Other venereal diseases due to chlamydia trachomatis, unspecified genitourinary site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.56) Other venereal diseases due to chlamydia trachomatis, peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.56) Other venereal diseases due to chlamydia trachomatis, peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.56''', NULL, + '(099.56) Other venereal diseases due to chlamydia trachomatis, peritoneum', '(099.56) Other venereal diseases due to chlamydia trachomatis, peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.59) Other venereal diseases due to chlamydia trachomatis, other specified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Syphilis and other venereal diseases (090-099.99)\Other venereal diseases (099)\Other venereal diseases due to Chlamydia trachomatis (099.5)\(099.59) Other venereal diseases due to chlamydia trachomatis, other specified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''099.59''', NULL, + '(099.59) Other venereal diseases due to chlamydia trachomatis, other specified site', '(099.59) Other venereal diseases due to chlamydia trachomatis, other specified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''010'' AND ''018.99''', NULL, + 'Tuberculosis (010-018.99)', 'Tuberculosis (010-018.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018''', NULL, + 'Miliary tuberculosis (018)', 'Miliary tuberculosis (018)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.0''', NULL, + 'Acute miliary tuberculosis (018.0)', 'Acute miliary tuberculosis (018.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.00) Acute miliary tuberculosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.00) Acute miliary tuberculosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.00''', NULL, + '(018.00) Acute miliary tuberculosis, unspecified', '(018.00) Acute miliary tuberculosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.01) Acute miliary tuberculosis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.01) Acute miliary tuberculosis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.01''', NULL, + '(018.01) Acute miliary tuberculosis, bacteriological or histological examination not done', '(018.01) Acute miliary tuberculosis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.02) Acute miliary tuberculosis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.02) Acute miliary tuberculosis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.02) Acute miliary tuberculosis, bacteriological or histological examination unknown (at present''', NULL, + '(018.02) Acute miliary tuberculosis, bacteriological or histological examination unknown (at present)', '(018.02) Acute miliary tuberculosis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.03) Acute miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.03) Acute miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.03) Acute miliary tuberculosis, tubercle bacilli found (in sputum''', NULL, + '(018.03) Acute miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy', '(018.03) Acute miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.04) Acute miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.04) Acute miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.04) Acute miliary tuberculosis, tubercle bacilli not found (in sputum''', NULL, + '(018.04) Acute miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(018.04) Acute miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.05) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.05) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.05''', NULL, + '(018.05) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(018.05) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.06) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Acute miliary tuberculosis (018.0)\(018.06) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.06''', NULL, + '(018.06) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(018.06) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.8''', NULL, + 'Other specified miliary tuberculosis (018.8)', 'Other specified miliary tuberculosis (018.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.80) Other specified miliary tuberculosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.80) Other specified miliary tuberculosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.80''', NULL, + '(018.80) Other specified miliary tuberculosis, unspecified', '(018.80) Other specified miliary tuberculosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.81) Other specified miliary tuberculosis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.81) Other specified miliary tuberculosis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.81''', NULL, + '(018.81) Other specified miliary tuberculosis, bacteriological or histological examination not done', '(018.81) Other specified miliary tuberculosis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.82) Other specified miliary tuberculosis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.82) Other specified miliary tuberculosis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.82) Other specified miliary tuberculosis, bacteriological or histological examination unknown (at present''', NULL, + '(018.82) Other specified miliary tuberculosis, bacteriological or histological examination unknown (at present)', '(018.82) Other specified miliary tuberculosis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.83) Other specified miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.83) Other specified miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.83) Other specified miliary tuberculosis, tubercle bacilli found (in sputum''', NULL, + '(018.83) Other specified miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy', '(018.83) Other specified miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.84) Other specified miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.84) Other specified miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.84) Other specified miliary tuberculosis, tubercle bacilli not found (in sputum''', NULL, + '(018.84) Other specified miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(018.84) Other specified miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.85) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.85) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.85''', NULL, + '(018.85) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(018.85) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.86) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Other specified miliary tuberculosis (018.8)\(018.86) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.86''', NULL, + '(018.86) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(018.86) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.9''', NULL, + 'Unspecified miliary tuberculosis (018.9)', 'Unspecified miliary tuberculosis (018.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.90) Miliary tuberculosis, unspecified, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.90) Miliary tuberculosis, unspecified, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.90''', NULL, + '(018.90) Miliary tuberculosis, unspecified, unspecified', '(018.90) Miliary tuberculosis, unspecified, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.91) Miliary tuberculosis, unspecified, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.91) Miliary tuberculosis, unspecified, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.91''', NULL, + '(018.91) Miliary tuberculosis, unspecified, bacteriological or histological examination not done', '(018.91) Miliary tuberculosis, unspecified, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.92) Miliary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.92) Miliary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.92) Miliary tuberculosis, unspecified, bacteriological or histological examination unknown (at present''', NULL, + '(018.92) Miliary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)', '(018.92) Miliary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.93) Miliary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.93) Miliary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.93) Miliary tuberculosis, unspecified, tubercle bacilli found (in sputum''', NULL, + '(018.93) Miliary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy', '(018.93) Miliary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.94) Miliary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.94) Miliary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.94) Miliary tuberculosis, unspecified, tubercle bacilli not found (in sputum''', NULL, + '(018.94) Miliary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(018.94) Miliary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.95) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.95) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.95''', NULL, + '(018.95) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(018.95) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.96) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Miliary tuberculosis (018)\Unspecified miliary tuberculosis (018.9)\(018.96) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''018.96''', NULL, + '(018.96) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(018.96) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012''', NULL, + 'Other respiratory tuberculosis (012)', 'Other respiratory tuberculosis (012)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.2''', NULL, + 'Isolated tracheal or bronchial tuberculosis (012.2)', 'Isolated tracheal or bronchial tuberculosis (012.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.20) Isolated tracheal or bronchial tuberculosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.20) Isolated tracheal or bronchial tuberculosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.20''', NULL, + '(012.20) Isolated tracheal or bronchial tuberculosis, unspecified', '(012.20) Isolated tracheal or bronchial tuberculosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.21) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.21) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.21''', NULL, + '(012.21) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination not done', '(012.21) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.22) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.22) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.22) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination unknown (at present''', NULL, + '(012.22) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination unknown (at present)', '(012.22) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.23) Isolated tracheal or bronchial tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.23) Isolated tracheal or bronchial tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.23) Isolated tracheal or bronchial tuberculosis, tubercle bacilli found (in sputum''', NULL, + '(012.23) Isolated tracheal or bronchial tuberculosis, tubercle bacilli found (in sputum) by microscopy', '(012.23) Isolated tracheal or bronchial tuberculosis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.24) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.24) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.24) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found (in sputum''', NULL, + '(012.24) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(012.24) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.25) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.25) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.25''', NULL, + '(012.25) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(012.25) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.26) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Isolated tracheal or bronchial tuberculosis (012.2)\(012.26) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.26''', NULL, + '(012.26) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(012.26) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.8''', NULL, + 'Other specified respiratory tuberculosis (012.8)', 'Other specified respiratory tuberculosis (012.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.80) Other specified respiratory tuberculosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.80) Other specified respiratory tuberculosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.80''', NULL, + '(012.80) Other specified respiratory tuberculosis, unspecified', '(012.80) Other specified respiratory tuberculosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.81) Other specified respiratory tuberculosis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.81) Other specified respiratory tuberculosis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.81''', NULL, + '(012.81) Other specified respiratory tuberculosis, bacteriological or histological examination not done', '(012.81) Other specified respiratory tuberculosis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.82) Other specified respiratory tuberculosis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.82) Other specified respiratory tuberculosis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.82) Other specified respiratory tuberculosis, bacteriological or histological examination unknown (at present''', NULL, + '(012.82) Other specified respiratory tuberculosis, bacteriological or histological examination unknown (at present)', '(012.82) Other specified respiratory tuberculosis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.83) Other specified respiratory tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.83) Other specified respiratory tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.83) Other specified respiratory tuberculosis, tubercle bacilli found (in sputum''', NULL, + '(012.83) Other specified respiratory tuberculosis, tubercle bacilli found (in sputum) by microscopy', '(012.83) Other specified respiratory tuberculosis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.84) Other specified respiratory tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.84) Other specified respiratory tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.84) Other specified respiratory tuberculosis, tubercle bacilli not found (in sputum''', NULL, + '(012.84) Other specified respiratory tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(012.84) Other specified respiratory tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.85) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.85) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.85''', NULL, + '(012.85) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(012.85) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.86) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Other specified respiratory tuberculosis (012.8)\(012.86) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.86''', NULL, + '(012.86) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(012.86) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.1''', NULL, + 'Tuberculosis of intrathoracic lymph nodes (012.1)', 'Tuberculosis of intrathoracic lymph nodes (012.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.10) Tuberculosis of intrathoracic lymph nodes, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.10) Tuberculosis of intrathoracic lymph nodes, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.10''', NULL, + '(012.10) Tuberculosis of intrathoracic lymph nodes, unspecified', '(012.10) Tuberculosis of intrathoracic lymph nodes, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.11) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.11) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.11''', NULL, + '(012.11) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination not done', '(012.11) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.12) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.12) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.12) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination unknown (at present''', NULL, + '(012.12) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination unknown (at present)', '(012.12) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.13) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.13) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.13) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli found (in sputum''', NULL, + '(012.13) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli found (in sputum) by microscopy', '(012.13) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.14) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.14) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.14) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found (in sputum''', NULL, + '(012.14) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(012.14) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.15) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.15) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.15''', NULL, + '(012.15) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(012.15) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.16) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculosis of intrathoracic lymph nodes (012.1)\(012.16) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.16''', NULL, + '(012.16) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(012.16) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.3''', NULL, + 'Tuberculous laryngitis (012.3)', 'Tuberculous laryngitis (012.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.30) Tuberculous laryngitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.30) Tuberculous laryngitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.30''', NULL, + '(012.30) Tuberculous laryngitis, unspecified', '(012.30) Tuberculous laryngitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.31) Tuberculous laryngitis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.31) Tuberculous laryngitis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.31''', NULL, + '(012.31) Tuberculous laryngitis, bacteriological or histological examination not done', '(012.31) Tuberculous laryngitis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.32) Tuberculous laryngitis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.32) Tuberculous laryngitis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.32) Tuberculous laryngitis, bacteriological or histological examination unknown (at present''', NULL, + '(012.32) Tuberculous laryngitis, bacteriological or histological examination unknown (at present)', '(012.32) Tuberculous laryngitis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.33) Tuberculous laryngitis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.33) Tuberculous laryngitis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.33) Tuberculous laryngitis, tubercle bacilli found (in sputum''', NULL, + '(012.33) Tuberculous laryngitis, tubercle bacilli found (in sputum) by microscopy', '(012.33) Tuberculous laryngitis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.34) Tuberculous laryngitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.34) Tuberculous laryngitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.34) Tuberculous laryngitis, tubercle bacilli not found (in sputum''', NULL, + '(012.34) Tuberculous laryngitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(012.34) Tuberculous laryngitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.35) Tuberculous laryngitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.35) Tuberculous laryngitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.35''', NULL, + '(012.35) Tuberculous laryngitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(012.35) Tuberculous laryngitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.36) Tuberculous laryngitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous laryngitis (012.3)\(012.36) Tuberculous laryngitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.36''', NULL, + '(012.36) Tuberculous laryngitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(012.36) Tuberculous laryngitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.0''', NULL, + 'Tuberculous pleurisy (012.0)', 'Tuberculous pleurisy (012.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.00) Tuberculous pleurisy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.00) Tuberculous pleurisy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.00''', NULL, + '(012.00) Tuberculous pleurisy, unspecified', '(012.00) Tuberculous pleurisy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.01) Tuberculous pleurisy, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.01) Tuberculous pleurisy, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.01''', NULL, + '(012.01) Tuberculous pleurisy, bacteriological or histological examination not done', '(012.01) Tuberculous pleurisy, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.02) Tuberculous pleurisy, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.02) Tuberculous pleurisy, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.02) Tuberculous pleurisy, bacteriological or histological examination unknown (at present''', NULL, + '(012.02) Tuberculous pleurisy, bacteriological or histological examination unknown (at present)', '(012.02) Tuberculous pleurisy, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.03) Tuberculous pleurisy, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.03) Tuberculous pleurisy, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.03) Tuberculous pleurisy, tubercle bacilli found (in sputum''', NULL, + '(012.03) Tuberculous pleurisy, tubercle bacilli found (in sputum) by microscopy', '(012.03) Tuberculous pleurisy, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.04) Tuberculous pleurisy, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.04) Tuberculous pleurisy, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.04) Tuberculous pleurisy, tubercle bacilli not found (in sputum''', NULL, + '(012.04) Tuberculous pleurisy, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(012.04) Tuberculous pleurisy, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.05) Tuberculous pleurisy, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.05) Tuberculous pleurisy, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.05''', NULL, + '(012.05) Tuberculous pleurisy, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(012.05) Tuberculous pleurisy, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.06) Tuberculous pleurisy, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Other respiratory tuberculosis (012)\Tuberculous pleurisy (012.0)\(012.06) Tuberculous pleurisy, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''012.06''', NULL, + '(012.06) Tuberculous pleurisy, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(012.06) Tuberculous pleurisy, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010''', NULL, + 'Primary tuberculous infection (010)', 'Primary tuberculous infection (010)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.8''', NULL, + 'Other primary progressive tuberculosis (010.8)', 'Other primary progressive tuberculosis (010.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.80) Other primary progressive tuberculosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.80) Other primary progressive tuberculosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.80''', NULL, + '(010.80) Other primary progressive tuberculosis, unspecified', '(010.80) Other primary progressive tuberculosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.81) Other primary progressive tuberculosis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.81) Other primary progressive tuberculosis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.81''', NULL, + '(010.81) Other primary progressive tuberculosis, bacteriological or histological examination not done', '(010.81) Other primary progressive tuberculosis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.82) Other primary progressive tuberculosis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.82) Other primary progressive tuberculosis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.82) Other primary progressive tuberculosis, bacteriological or histological examination unknown (at present''', NULL, + '(010.82) Other primary progressive tuberculosis, bacteriological or histological examination unknown (at present)', '(010.82) Other primary progressive tuberculosis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.83) Other primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.83) Other primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.83) Other primary progressive tuberculosis, tubercle bacilli found (in sputum''', NULL, + '(010.83) Other primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy', '(010.83) Other primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.84) Other primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.84) Other primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.84) Other primary progressive tuberculosis, tubercle bacilli not found (in sputum''', NULL, + '(010.84) Other primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(010.84) Other primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.85) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.85) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.85''', NULL, + '(010.85) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(010.85) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.86) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Other primary progressive tuberculosis (010.8)\(010.86) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.86''', NULL, + '(010.86) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(010.86) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.0''', NULL, + 'Primary tuberculous infection (010.0)', 'Primary tuberculous infection (010.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.00) Primary tuberculous infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.00) Primary tuberculous infection, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.00''', NULL, + '(010.00) Primary tuberculous infection, unspecified', '(010.00) Primary tuberculous infection, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.01) Primary tuberculous infection, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.01) Primary tuberculous infection, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.01''', NULL, + '(010.01) Primary tuberculous infection, bacteriological or histological examination not done', '(010.01) Primary tuberculous infection, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.02) Primary tuberculous infection, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.02) Primary tuberculous infection, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.02) Primary tuberculous infection, bacteriological or histological examination unknown (at present''', NULL, + '(010.02) Primary tuberculous infection, bacteriological or histological examination unknown (at present)', '(010.02) Primary tuberculous infection, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.03) Primary tuberculous infection, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.03) Primary tuberculous infection, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.03) Primary tuberculous infection, tubercle bacilli found (in sputum''', NULL, + '(010.03) Primary tuberculous infection, tubercle bacilli found (in sputum) by microscopy', '(010.03) Primary tuberculous infection, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.04) Primary tuberculous infection, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.04) Primary tuberculous infection, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.04) Primary tuberculous infection, tubercle bacilli not found (in sputum''', NULL, + '(010.04) Primary tuberculous infection, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(010.04) Primary tuberculous infection, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.05) Primary tuberculous infection, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.05) Primary tuberculous infection, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.05''', NULL, + '(010.05) Primary tuberculous infection, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(010.05) Primary tuberculous infection, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.06) Primary tuberculous infection, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection (010.0)\(010.06) Primary tuberculous infection, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.06''', NULL, + '(010.06) Primary tuberculous infection, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(010.06) Primary tuberculous infection, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.9''', NULL, + 'Primary tuberculous infection, unspecified type (010.9)', 'Primary tuberculous infection, unspecified type (010.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.90) Primary tuberculous infection, unspecified, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.90) Primary tuberculous infection, unspecified, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.90''', NULL, + '(010.90) Primary tuberculous infection, unspecified, unspecified', '(010.90) Primary tuberculous infection, unspecified, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.91) Primary tuberculous infection, unspecified, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.91) Primary tuberculous infection, unspecified, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.91''', NULL, + '(010.91) Primary tuberculous infection, unspecified, bacteriological or histological examination not done', '(010.91) Primary tuberculous infection, unspecified, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.92) Primary tuberculous infection, unspecified, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.92) Primary tuberculous infection, unspecified, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.92) Primary tuberculous infection, unspecified, bacteriological or histological examination unknown (at present''', NULL, + '(010.92) Primary tuberculous infection, unspecified, bacteriological or histological examination unknown (at present)', '(010.92) Primary tuberculous infection, unspecified, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.93) Primary tuberculous infection, unspecified, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.93) Primary tuberculous infection, unspecified, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.93) Primary tuberculous infection, unspecified, tubercle bacilli found (in sputum''', NULL, + '(010.93) Primary tuberculous infection, unspecified, tubercle bacilli found (in sputum) by microscopy', '(010.93) Primary tuberculous infection, unspecified, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.94) Primary tuberculous infection, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.94) Primary tuberculous infection, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.94) Primary tuberculous infection, unspecified, tubercle bacilli not found (in sputum''', NULL, + '(010.94) Primary tuberculous infection, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(010.94) Primary tuberculous infection, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.95) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.95) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.95''', NULL, + '(010.95) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(010.95) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.96) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Primary tuberculous infection, unspecified type (010.9)\(010.96) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.96''', NULL, + '(010.96) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(010.96) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.1''', NULL, + 'Tuberculous pleurisy in primary progressive tuberculosis (010.1)', 'Tuberculous pleurisy in primary progressive tuberculosis (010.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.10) Tuberculous pleurisy in primary progressive tuberculosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.10) Tuberculous pleurisy in primary progressive tuberculosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.10''', NULL, + '(010.10) Tuberculous pleurisy in primary progressive tuberculosis, unspecified', '(010.10) Tuberculous pleurisy in primary progressive tuberculosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.11) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.11) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.11''', NULL, + '(010.11) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination not done', '(010.11) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.12) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.12) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.12) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination unknown (at present''', NULL, + '(010.12) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination unknown (at present)', '(010.12) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.13) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.13) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.13) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli found (in sputum''', NULL, + '(010.13) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy', '(010.13) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.14) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.14) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.14) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found (in sputum''', NULL, + '(010.14) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(010.14) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.15) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.15) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.15''', NULL, + '(010.15) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(010.15) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.16) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Primary tuberculous infection (010)\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\(010.16) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''010.16''', NULL, + '(010.16) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(010.16) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011''', NULL, + 'Pulmonary tuberculosis (011)', 'Pulmonary tuberculosis (011)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.8''', NULL, + 'Other specified pulmonary tuberculosis (011.8)', 'Other specified pulmonary tuberculosis (011.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.80) Other specified pulmonary tuberculosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.80) Other specified pulmonary tuberculosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.80''', NULL, + '(011.80) Other specified pulmonary tuberculosis, unspecified', '(011.80) Other specified pulmonary tuberculosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.81) Other specified pulmonary tuberculosis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.81) Other specified pulmonary tuberculosis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.81''', NULL, + '(011.81) Other specified pulmonary tuberculosis, bacteriological or histological examination not done', '(011.81) Other specified pulmonary tuberculosis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.82) Other specified pulmonary tuberculosis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.82) Other specified pulmonary tuberculosis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.82) Other specified pulmonary tuberculosis, bacteriological or histological examination unknown (at present''', NULL, + '(011.82) Other specified pulmonary tuberculosis, bacteriological or histological examination unknown (at present)', '(011.82) Other specified pulmonary tuberculosis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.83) Other specified pulmonary tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.83) Other specified pulmonary tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.83) Other specified pulmonary tuberculosis, tubercle bacilli found (in sputum''', NULL, + '(011.83) Other specified pulmonary tuberculosis, tubercle bacilli found (in sputum) by microscopy', '(011.83) Other specified pulmonary tuberculosis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.84) Other specified pulmonary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.84) Other specified pulmonary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.84) Other specified pulmonary tuberculosis, tubercle bacilli not found (in sputum''', NULL, + '(011.84) Other specified pulmonary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(011.84) Other specified pulmonary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.85) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.85) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.85''', NULL, + '(011.85) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(011.85) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.86) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Other specified pulmonary tuberculosis (011.8)\(011.86) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.86''', NULL, + '(011.86) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(011.86) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.3''', NULL, + 'Tuberculosis of bronchus (011.3)', 'Tuberculosis of bronchus (011.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.30) Tuberculosis of bronchus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.30) Tuberculosis of bronchus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.30''', NULL, + '(011.30) Tuberculosis of bronchus, unspecified', '(011.30) Tuberculosis of bronchus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.31) Tuberculosis of bronchus, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.31) Tuberculosis of bronchus, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.31''', NULL, + '(011.31) Tuberculosis of bronchus, bacteriological or histological examination not done', '(011.31) Tuberculosis of bronchus, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.32) Tuberculosis of bronchus, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.32) Tuberculosis of bronchus, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.32) Tuberculosis of bronchus, bacteriological or histological examination unknown (at present''', NULL, + '(011.32) Tuberculosis of bronchus, bacteriological or histological examination unknown (at present)', '(011.32) Tuberculosis of bronchus, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.33) Tuberculosis of bronchus, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.33) Tuberculosis of bronchus, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.33) Tuberculosis of bronchus, tubercle bacilli found (in sputum''', NULL, + '(011.33) Tuberculosis of bronchus, tubercle bacilli found (in sputum) by microscopy', '(011.33) Tuberculosis of bronchus, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.34) Tuberculosis of bronchus, tubercle bacilli not found (in sputum) by microscopy, but found in bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.34) Tuberculosis of bronchus, tubercle bacilli not found (in sputum) by microscopy, but found in bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.34) Tuberculosis of bronchus, tubercle bacilli not found (in sputum''', NULL, + '(011.34) Tuberculosis of bronchus, tubercle bacilli not found (in sputum) by microscopy, but found in bacterial culture', '(011.34) Tuberculosis of bronchus, tubercle bacilli not found (in sputum) by microscopy, but found in bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.35) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.35) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.35''', NULL, + '(011.35) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(011.35) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.36) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of bronchus (011.3)\(011.36) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.36''', NULL, + '(011.36) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(011.36) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.2''', NULL, + 'Tuberculosis of lung with cavitation (011.2)', 'Tuberculosis of lung with cavitation (011.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.20) Tuberculosis of lung with cavitation, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.20) Tuberculosis of lung with cavitation, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.20''', NULL, + '(011.20) Tuberculosis of lung with cavitation, unspecified', '(011.20) Tuberculosis of lung with cavitation, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.21) Tuberculosis of lung with cavitation, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.21) Tuberculosis of lung with cavitation, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.21''', NULL, + '(011.21) Tuberculosis of lung with cavitation, bacteriological or histological examination not done', '(011.21) Tuberculosis of lung with cavitation, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.22) Tuberculosis of lung with cavitation, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.22) Tuberculosis of lung with cavitation, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.22) Tuberculosis of lung with cavitation, bacteriological or histological examination unknown (at present''', NULL, + '(011.22) Tuberculosis of lung with cavitation, bacteriological or histological examination unknown (at present)', '(011.22) Tuberculosis of lung with cavitation, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.23) Tuberculosis of lung with cavitation, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.23) Tuberculosis of lung with cavitation, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.23) Tuberculosis of lung with cavitation, tubercle bacilli found (in sputum''', NULL, + '(011.23) Tuberculosis of lung with cavitation, tubercle bacilli found (in sputum) by microscopy', '(011.23) Tuberculosis of lung with cavitation, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.24) Tuberculosis of lung with cavitation, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.24) Tuberculosis of lung with cavitation, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.24) Tuberculosis of lung with cavitation, tubercle bacilli not found (in sputum''', NULL, + '(011.24) Tuberculosis of lung with cavitation, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(011.24) Tuberculosis of lung with cavitation, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.25) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.25) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.25''', NULL, + '(011.25) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(011.25) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.26) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung with cavitation (011.2)\(011.26) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.26''', NULL, + '(011.26) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(011.26) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.0''', NULL, + 'Tuberculosis of lung, infiltrative (011.0)', 'Tuberculosis of lung, infiltrative (011.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.00) Tuberculosis of lung, infiltrative, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.00) Tuberculosis of lung, infiltrative, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.00''', NULL, + '(011.00) Tuberculosis of lung, infiltrative, unspecified', '(011.00) Tuberculosis of lung, infiltrative, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.01) Tuberculosis of lung, infiltrative, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.01) Tuberculosis of lung, infiltrative, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.01''', NULL, + '(011.01) Tuberculosis of lung, infiltrative, bacteriological or histological examination not done', '(011.01) Tuberculosis of lung, infiltrative, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.02) Tuberculosis of lung, infiltrative, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.02) Tuberculosis of lung, infiltrative, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.02) Tuberculosis of lung, infiltrative, bacteriological or histological examination unknown (at present''', NULL, + '(011.02) Tuberculosis of lung, infiltrative, bacteriological or histological examination unknown (at present)', '(011.02) Tuberculosis of lung, infiltrative, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.03) Tuberculosis of lung, infiltrative, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.03) Tuberculosis of lung, infiltrative, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.03) Tuberculosis of lung, infiltrative, tubercle bacilli found (in sputum''', NULL, + '(011.03) Tuberculosis of lung, infiltrative, tubercle bacilli found (in sputum) by microscopy', '(011.03) Tuberculosis of lung, infiltrative, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.04) Tuberculosis of lung, infiltrative, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.04) Tuberculosis of lung, infiltrative, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.04) Tuberculosis of lung, infiltrative, tubercle bacilli not found (in sputum''', NULL, + '(011.04) Tuberculosis of lung, infiltrative, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(011.04) Tuberculosis of lung, infiltrative, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.05) Tuberculosis of lung, infiltrative, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.05) Tuberculosis of lung, infiltrative, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.05''', NULL, + '(011.05) Tuberculosis of lung, infiltrative, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(011.05) Tuberculosis of lung, infiltrative, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.06) Tuberculosis of lung, infiltrative, tubercle bacilli not found bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, infiltrative (011.0)\(011.06) Tuberculosis of lung, infiltrative, tubercle bacilli not found bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.06''', NULL, + '(011.06) Tuberculosis of lung, infiltrative, tubercle bacilli not found bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(011.06) Tuberculosis of lung, infiltrative, tubercle bacilli not found bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.1''', NULL, + 'Tuberculosis of lung, nodular (011.1)', 'Tuberculosis of lung, nodular (011.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.10) Tuberculosis of lung, nodular, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.10) Tuberculosis of lung, nodular, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.10''', NULL, + '(011.10) Tuberculosis of lung, nodular, unspecified', '(011.10) Tuberculosis of lung, nodular, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.11) Tuberculosis of lung, nodular, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.11) Tuberculosis of lung, nodular, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.11''', NULL, + '(011.11) Tuberculosis of lung, nodular, bacteriological or histological examination not done', '(011.11) Tuberculosis of lung, nodular, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.12) Tuberculosis of lung, nodular, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.12) Tuberculosis of lung, nodular, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.12) Tuberculosis of lung, nodular, bacteriological or histological examination unknown (at present''', NULL, + '(011.12) Tuberculosis of lung, nodular, bacteriological or histological examination unknown (at present)', '(011.12) Tuberculosis of lung, nodular, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.13) Tuberculosis of lung, nodular, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.13) Tuberculosis of lung, nodular, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.13) Tuberculosis of lung, nodular, tubercle bacilli found (in sputum''', NULL, + '(011.13) Tuberculosis of lung, nodular, tubercle bacilli found (in sputum) by microscopy', '(011.13) Tuberculosis of lung, nodular, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.14) Tuberculosis of lung, nodular, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.14) Tuberculosis of lung, nodular, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.14) Tuberculosis of lung, nodular, tubercle bacilli not found (in sputum''', NULL, + '(011.14) Tuberculosis of lung, nodular, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(011.14) Tuberculosis of lung, nodular, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.15) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.15) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.15''', NULL, + '(011.15) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(011.15) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.16) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculosis of lung, nodular (011.1)\(011.16) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.16''', NULL, + '(011.16) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(011.16) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.5''', NULL, + 'Tuberculous bronchiectasis (011.5)', 'Tuberculous bronchiectasis (011.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.50) Tuberculous bronchiectasis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.50) Tuberculous bronchiectasis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.50''', NULL, + '(011.50) Tuberculous bronchiectasis, unspecified', '(011.50) Tuberculous bronchiectasis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.51) Tuberculous bronchiectasis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.51) Tuberculous bronchiectasis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.51''', NULL, + '(011.51) Tuberculous bronchiectasis, bacteriological or histological examination not done', '(011.51) Tuberculous bronchiectasis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.52) Tuberculous bronchiectasis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.52) Tuberculous bronchiectasis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.52) Tuberculous bronchiectasis, bacteriological or histological examination unknown (at present''', NULL, + '(011.52) Tuberculous bronchiectasis, bacteriological or histological examination unknown (at present)', '(011.52) Tuberculous bronchiectasis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.53) Tuberculous bronchiectasis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.53) Tuberculous bronchiectasis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.53) Tuberculous bronchiectasis, tubercle bacilli found (in sputum''', NULL, + '(011.53) Tuberculous bronchiectasis, tubercle bacilli found (in sputum) by microscopy', '(011.53) Tuberculous bronchiectasis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.54) Tuberculous bronchiectasis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.54) Tuberculous bronchiectasis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.54) Tuberculous bronchiectasis, tubercle bacilli not found (in sputum''', NULL, + '(011.54) Tuberculous bronchiectasis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(011.54) Tuberculous bronchiectasis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.55) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.55) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.55''', NULL, + '(011.55) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(011.55) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.56) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous bronchiectasis (011.5)\(011.56) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.56''', NULL, + '(011.56) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(011.56) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.4''', NULL, + 'Tuberculous fibrosis of lung (011.4)', 'Tuberculous fibrosis of lung (011.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.40) Tuberculous fibrosis of lung, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.40) Tuberculous fibrosis of lung, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.40''', NULL, + '(011.40) Tuberculous fibrosis of lung, unspecified', '(011.40) Tuberculous fibrosis of lung, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.41) Tuberculous fibrosis of lung, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.41) Tuberculous fibrosis of lung, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.41''', NULL, + '(011.41) Tuberculous fibrosis of lung, bacteriological or histological examination not done', '(011.41) Tuberculous fibrosis of lung, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.42) Tuberculous fibrosis of lung, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.42) Tuberculous fibrosis of lung, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.42) Tuberculous fibrosis of lung, bacteriological or histological examination unknown (at present''', NULL, + '(011.42) Tuberculous fibrosis of lung, bacteriological or histological examination unknown (at present)', '(011.42) Tuberculous fibrosis of lung, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.43) Tuberculous fibrosis of lung, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.43) Tuberculous fibrosis of lung, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.43) Tuberculous fibrosis of lung, tubercle bacilli found (in sputum''', NULL, + '(011.43) Tuberculous fibrosis of lung, tubercle bacilli found (in sputum) by microscopy', '(011.43) Tuberculous fibrosis of lung, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.44) Tuberculous fibrosis of lung, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.44) Tuberculous fibrosis of lung, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.44) Tuberculous fibrosis of lung, tubercle bacilli not found (in sputum''', NULL, + '(011.44) Tuberculous fibrosis of lung, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(011.44) Tuberculous fibrosis of lung, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.45) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.45) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.45''', NULL, + '(011.45) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(011.45) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.46) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous fibrosis of lung (011.4)\(011.46) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.46''', NULL, + '(011.46) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(011.46) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.6''', NULL, + 'Tuberculous pneumonia [any form] (011.6)', 'Tuberculous pneumonia [any form] (011.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.60) Tuberculous pneumonia [any form], unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.60) Tuberculous pneumonia [any form], unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.60''', NULL, + '(011.60) Tuberculous pneumonia [any form], unspecified', '(011.60) Tuberculous pneumonia [any form], unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.61) Tuberculous pneumonia [any form], bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.61) Tuberculous pneumonia [any form], bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.61''', NULL, + '(011.61) Tuberculous pneumonia [any form], bacteriological or histological examination not done', '(011.61) Tuberculous pneumonia [any form], bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.62) Tuberculous pneumonia [any form], bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.62) Tuberculous pneumonia [any form], bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.62) Tuberculous pneumonia [any form], bacteriological or histological examination unknown (at present''', NULL, + '(011.62) Tuberculous pneumonia [any form], bacteriological or histological examination unknown (at present)', '(011.62) Tuberculous pneumonia [any form], bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.63) Tuberculous pneumonia [any form], tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.63) Tuberculous pneumonia [any form], tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.63) Tuberculous pneumonia [any form], tubercle bacilli found (in sputum''', NULL, + '(011.63) Tuberculous pneumonia [any form], tubercle bacilli found (in sputum) by microscopy', '(011.63) Tuberculous pneumonia [any form], tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.64) Tuberculous pneumonia [any form], tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.64) Tuberculous pneumonia [any form], tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.64) Tuberculous pneumonia [any form], tubercle bacilli not found (in sputum''', NULL, + '(011.64) Tuberculous pneumonia [any form], tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(011.64) Tuberculous pneumonia [any form], tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.65) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.65) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.65''', NULL, + '(011.65) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(011.65) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.66) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumonia [any form] (011.6)\(011.66) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.66''', NULL, + '(011.66) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(011.66) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.7''', NULL, + 'Tuberculous pneumothorax (011.7)', 'Tuberculous pneumothorax (011.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.70) Tuberculous pneumothorax, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.70) Tuberculous pneumothorax, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.70''', NULL, + '(011.70) Tuberculous pneumothorax, unspecified', '(011.70) Tuberculous pneumothorax, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.71) Tuberculous pneumothorax, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.71) Tuberculous pneumothorax, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.71''', NULL, + '(011.71) Tuberculous pneumothorax, bacteriological or histological examination not done', '(011.71) Tuberculous pneumothorax, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.72) Tuberculous pneumothorax, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.72) Tuberculous pneumothorax, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.72) Tuberculous pneumothorax, bacteriological or histological examination unknown (at present''', NULL, + '(011.72) Tuberculous pneumothorax, bacteriological or histological examination unknown (at present)', '(011.72) Tuberculous pneumothorax, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.73) Tuberculous pneumothorax, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.73) Tuberculous pneumothorax, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.73) Tuberculous pneumothorax, tubercle bacilli found (in sputum''', NULL, + '(011.73) Tuberculous pneumothorax, tubercle bacilli found (in sputum) by microscopy', '(011.73) Tuberculous pneumothorax, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.74) Tuberculous pneumothorax, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.74) Tuberculous pneumothorax, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.74) Tuberculous pneumothorax, tubercle bacilli not found (in sputum''', NULL, + '(011.74) Tuberculous pneumothorax, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(011.74) Tuberculous pneumothorax, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.75) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.75) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.75''', NULL, + '(011.75) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(011.75) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.76) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Tuberculous pneumothorax (011.7)\(011.76) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.76''', NULL, + '(011.76) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(011.76) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.9''', NULL, + 'Unspecified pulmonary tuberculosis (011.9)', 'Unspecified pulmonary tuberculosis (011.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.90) Pulmonary tuberculosis, unspecified, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.90) Pulmonary tuberculosis, unspecified, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.90''', NULL, + '(011.90) Pulmonary tuberculosis, unspecified, unspecified', '(011.90) Pulmonary tuberculosis, unspecified, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.91) Pulmonary tuberculosis, unspecified, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.91) Pulmonary tuberculosis, unspecified, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.91''', NULL, + '(011.91) Pulmonary tuberculosis, unspecified, bacteriological or histological examination not done', '(011.91) Pulmonary tuberculosis, unspecified, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.92) Pulmonary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.92) Pulmonary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.92) Pulmonary tuberculosis, unspecified, bacteriological or histological examination unknown (at present''', NULL, + '(011.92) Pulmonary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)', '(011.92) Pulmonary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.93) Pulmonary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.93) Pulmonary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.93) Pulmonary tuberculosis, unspecified, tubercle bacilli found (in sputum''', NULL, + '(011.93) Pulmonary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy', '(011.93) Pulmonary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.94) Pulmonary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.94) Pulmonary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.94) Pulmonary tuberculosis, unspecified, tubercle bacilli not found (in sputum''', NULL, + '(011.94) Pulmonary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(011.94) Pulmonary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.95) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.95) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.95''', NULL, + '(011.95) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(011.95) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.96) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Pulmonary tuberculosis (011)\Unspecified pulmonary tuberculosis (011.9)\(011.96) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''011.96''', NULL, + '(011.96) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(011.96) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015''', NULL, + 'Tuberculosis of bones and joints (015)', 'Tuberculosis of bones and joints (015)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.1''', NULL, + 'Tuberculosis of hip (015.1)', 'Tuberculosis of hip (015.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.10) Tuberculosis of hip, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.10) Tuberculosis of hip, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.10''', NULL, + '(015.10) Tuberculosis of hip, unspecified', '(015.10) Tuberculosis of hip, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.11) Tuberculosis of hip, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.11) Tuberculosis of hip, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.11''', NULL, + '(015.11) Tuberculosis of hip, bacteriological or histological examination not done', '(015.11) Tuberculosis of hip, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.12) Tuberculosis of hip, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.12) Tuberculosis of hip, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.12) Tuberculosis of hip, bacteriological or histological examination unknown (at present''', NULL, + '(015.12) Tuberculosis of hip, bacteriological or histological examination unknown (at present)', '(015.12) Tuberculosis of hip, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.13) Tuberculosis of hip, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.13) Tuberculosis of hip, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.13) Tuberculosis of hip, tubercle bacilli found (in sputum''', NULL, + '(015.13) Tuberculosis of hip, tubercle bacilli found (in sputum) by microscopy', '(015.13) Tuberculosis of hip, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.14) Tuberculosis of hip, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.14) Tuberculosis of hip, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.14) Tuberculosis of hip, tubercle bacilli not found (in sputum''', NULL, + '(015.14) Tuberculosis of hip, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(015.14) Tuberculosis of hip, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.15) Tuberculosis of hip, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.15) Tuberculosis of hip, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.15''', NULL, + '(015.15) Tuberculosis of hip, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(015.15) Tuberculosis of hip, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.16) Tuberculosis of hip, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of hip (015.1)\(015.16) Tuberculosis of hip, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.16''', NULL, + '(015.16) Tuberculosis of hip, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(015.16) Tuberculosis of hip, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.2''', NULL, + 'Tuberculosis of knee (015.2)', 'Tuberculosis of knee (015.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.20) Tuberculosis of knee, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.20) Tuberculosis of knee, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.20''', NULL, + '(015.20) Tuberculosis of knee, unspecified', '(015.20) Tuberculosis of knee, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.21) Tuberculosis of knee, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.21) Tuberculosis of knee, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.21''', NULL, + '(015.21) Tuberculosis of knee, bacteriological or histological examination not done', '(015.21) Tuberculosis of knee, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.22) Tuberculosis of knee, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.22) Tuberculosis of knee, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.22) Tuberculosis of knee, bacteriological or histological examination unknown (at present''', NULL, + '(015.22) Tuberculosis of knee, bacteriological or histological examination unknown (at present)', '(015.22) Tuberculosis of knee, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.23) Tuberculosis of knee, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.23) Tuberculosis of knee, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.23) Tuberculosis of knee, tubercle bacilli found (in sputum''', NULL, + '(015.23) Tuberculosis of knee, tubercle bacilli found (in sputum) by microscopy', '(015.23) Tuberculosis of knee, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.24) Tuberculosis of knee, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.24) Tuberculosis of knee, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.24) Tuberculosis of knee, tubercle bacilli not found (in sputum''', NULL, + '(015.24) Tuberculosis of knee, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(015.24) Tuberculosis of knee, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.25) Tuberculosis of knee, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.25) Tuberculosis of knee, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.25''', NULL, + '(015.25) Tuberculosis of knee, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(015.25) Tuberculosis of knee, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.26) Tuberculosis of knee, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of knee (015.2)\(015.26) Tuberculosis of knee, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.26''', NULL, + '(015.26) Tuberculosis of knee, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(015.26) Tuberculosis of knee, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.5''', NULL, + 'Tuberculosis of limb bones (015.5)', 'Tuberculosis of limb bones (015.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.50) Tuberculosis of limb bones, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.50) Tuberculosis of limb bones, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.50''', NULL, + '(015.50) Tuberculosis of limb bones, unspecified', '(015.50) Tuberculosis of limb bones, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.51) Tuberculosis of limb bones, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.51) Tuberculosis of limb bones, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.51''', NULL, + '(015.51) Tuberculosis of limb bones, bacteriological or histological examination not done', '(015.51) Tuberculosis of limb bones, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.52) Tuberculosis of limb bones, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.52) Tuberculosis of limb bones, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.52) Tuberculosis of limb bones, bacteriological or histological examination unknown (at present''', NULL, + '(015.52) Tuberculosis of limb bones, bacteriological or histological examination unknown (at present)', '(015.52) Tuberculosis of limb bones, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.53) Tuberculosis of limb bones, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.53) Tuberculosis of limb bones, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.53) Tuberculosis of limb bones, tubercle bacilli found (in sputum''', NULL, + '(015.53) Tuberculosis of limb bones, tubercle bacilli found (in sputum) by microscopy', '(015.53) Tuberculosis of limb bones, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.54) Tuberculosis of limb bones, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.54) Tuberculosis of limb bones, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.54) Tuberculosis of limb bones, tubercle bacilli not found (in sputum''', NULL, + '(015.54) Tuberculosis of limb bones, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(015.54) Tuberculosis of limb bones, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.55) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.55) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.55''', NULL, + '(015.55) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(015.55) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.56) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of limb bones (015.5)\(015.56) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.56''', NULL, + '(015.56) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(015.56) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.6''', NULL, + 'Tuberculosis of mastoid (015.6)', 'Tuberculosis of mastoid (015.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.60) Tuberculosis of mastoid, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.60) Tuberculosis of mastoid, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.60''', NULL, + '(015.60) Tuberculosis of mastoid, unspecified', '(015.60) Tuberculosis of mastoid, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.61) Tuberculosis of mastoid, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.61) Tuberculosis of mastoid, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.61''', NULL, + '(015.61) Tuberculosis of mastoid, bacteriological or histological examination not done', '(015.61) Tuberculosis of mastoid, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.62) Tuberculosis of mastoid, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.62) Tuberculosis of mastoid, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.62) Tuberculosis of mastoid, bacteriological or histological examination unknown (at present''', NULL, + '(015.62) Tuberculosis of mastoid, bacteriological or histological examination unknown (at present)', '(015.62) Tuberculosis of mastoid, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.63) Tuberculosis of mastoid, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.63) Tuberculosis of mastoid, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.63) Tuberculosis of mastoid, tubercle bacilli found (in sputum''', NULL, + '(015.63) Tuberculosis of mastoid, tubercle bacilli found (in sputum) by microscopy', '(015.63) Tuberculosis of mastoid, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.64) Tuberculosis of mastoid, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.64) Tuberculosis of mastoid, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.64) Tuberculosis of mastoid, tubercle bacilli not found (in sputum''', NULL, + '(015.64) Tuberculosis of mastoid, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(015.64) Tuberculosis of mastoid, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.65) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.65) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.65''', NULL, + '(015.65) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(015.65) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.66) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of mastoid (015.6)\(015.66) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.66''', NULL, + '(015.66) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(015.66) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.7''', NULL, + 'Tuberculosis of other specified bone (015.7)', 'Tuberculosis of other specified bone (015.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.70) Tuberculosis of other specified bone, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.70) Tuberculosis of other specified bone, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.70''', NULL, + '(015.70) Tuberculosis of other specified bone, unspecified', '(015.70) Tuberculosis of other specified bone, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.71) Tuberculosis of other specified bone, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.71) Tuberculosis of other specified bone, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.71''', NULL, + '(015.71) Tuberculosis of other specified bone, bacteriological or histological examination not done', '(015.71) Tuberculosis of other specified bone, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.72) Tuberculosis of other specified bone, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.72) Tuberculosis of other specified bone, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.72) Tuberculosis of other specified bone, bacteriological or histological examination unknown (at present''', NULL, + '(015.72) Tuberculosis of other specified bone, bacteriological or histological examination unknown (at present)', '(015.72) Tuberculosis of other specified bone, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.73) Tuberculosis of other specified bone, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.73) Tuberculosis of other specified bone, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.73) Tuberculosis of other specified bone, tubercle bacilli found (in sputum''', NULL, + '(015.73) Tuberculosis of other specified bone, tubercle bacilli found (in sputum) by microscopy', '(015.73) Tuberculosis of other specified bone, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.74) Tuberculosis of other specified bone, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.74) Tuberculosis of other specified bone, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.74) Tuberculosis of other specified bone, tubercle bacilli not found (in sputum''', NULL, + '(015.74) Tuberculosis of other specified bone, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(015.74) Tuberculosis of other specified bone, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.75) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.75) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.75''', NULL, + '(015.75) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(015.75) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.76) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified bone (015.7)\(015.76) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.76''', NULL, + '(015.76) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(015.76) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.8''', NULL, + 'Tuberculosis of other specified joint (015.8)', 'Tuberculosis of other specified joint (015.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.80) Tuberculosis of other specified joint, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.80) Tuberculosis of other specified joint, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.80''', NULL, + '(015.80) Tuberculosis of other specified joint, unspecified', '(015.80) Tuberculosis of other specified joint, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.81) Tuberculosis of other specified joint, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.81) Tuberculosis of other specified joint, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.81''', NULL, + '(015.81) Tuberculosis of other specified joint, bacteriological or histological examination not done', '(015.81) Tuberculosis of other specified joint, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.82) Tuberculosis of other specified joint, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.82) Tuberculosis of other specified joint, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.82) Tuberculosis of other specified joint, bacteriological or histological examination unknown (at present''', NULL, + '(015.82) Tuberculosis of other specified joint, bacteriological or histological examination unknown (at present)', '(015.82) Tuberculosis of other specified joint, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.83) Tuberculosis of other specified joint, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.83) Tuberculosis of other specified joint, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.83) Tuberculosis of other specified joint, tubercle bacilli found (in sputum''', NULL, + '(015.83) Tuberculosis of other specified joint, tubercle bacilli found (in sputum) by microscopy', '(015.83) Tuberculosis of other specified joint, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.84) Tuberculosis of other specified joint, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.84) Tuberculosis of other specified joint, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.84) Tuberculosis of other specified joint, tubercle bacilli not found (in sputum''', NULL, + '(015.84) Tuberculosis of other specified joint, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(015.84) Tuberculosis of other specified joint, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.85) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.85) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.85''', NULL, + '(015.85) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(015.85) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.86) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of other specified joint (015.8)\(015.86) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.86''', NULL, + '(015.86) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(015.86) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.9''', NULL, + 'Tuberculosis of unspecified bones and joints (015.9)', 'Tuberculosis of unspecified bones and joints (015.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.90) Tuberculosis of unspecified bones and joints, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.90) Tuberculosis of unspecified bones and joints, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.90''', NULL, + '(015.90) Tuberculosis of unspecified bones and joints, unspecified', '(015.90) Tuberculosis of unspecified bones and joints, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.91) Tuberculosis of unspecified bones and joints, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.91) Tuberculosis of unspecified bones and joints, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.91''', NULL, + '(015.91) Tuberculosis of unspecified bones and joints, bacteriological or histological examination not done', '(015.91) Tuberculosis of unspecified bones and joints, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.92) Tuberculosis of unspecified bones and joints, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.92) Tuberculosis of unspecified bones and joints, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.92) Tuberculosis of unspecified bones and joints, bacteriological or histological examination unknown (at present''', NULL, + '(015.92) Tuberculosis of unspecified bones and joints, bacteriological or histological examination unknown (at present)', '(015.92) Tuberculosis of unspecified bones and joints, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.93) Tuberculosis of unspecified bones and joints, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.93) Tuberculosis of unspecified bones and joints, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.93) Tuberculosis of unspecified bones and joints, tubercle bacilli found (in sputum''', NULL, + '(015.93) Tuberculosis of unspecified bones and joints, tubercle bacilli found (in sputum) by microscopy', '(015.93) Tuberculosis of unspecified bones and joints, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.94) Tuberculosis of unspecified bones and joints, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.94) Tuberculosis of unspecified bones and joints, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.94) Tuberculosis of unspecified bones and joints, tubercle bacilli not found (in sputum''', NULL, + '(015.94) Tuberculosis of unspecified bones and joints, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(015.94) Tuberculosis of unspecified bones and joints, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.95) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.95) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.95''', NULL, + '(015.95) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(015.95) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.96) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of unspecified bones and joints (015.9)\(015.96) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.96''', NULL, + '(015.96) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(015.96) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.0''', NULL, + 'Tuberculosis of vertebral column (015.0)', 'Tuberculosis of vertebral column (015.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.00) Tuberculosis of vertebral column, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.00) Tuberculosis of vertebral column, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.00''', NULL, + '(015.00) Tuberculosis of vertebral column, unspecified', '(015.00) Tuberculosis of vertebral column, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.01) Tuberculosis of vertebral column, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.01) Tuberculosis of vertebral column, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.01''', NULL, + '(015.01) Tuberculosis of vertebral column, bacteriological or histological examination not done', '(015.01) Tuberculosis of vertebral column, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.02) Tuberculosis of vertebral column, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.02) Tuberculosis of vertebral column, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.02) Tuberculosis of vertebral column, bacteriological or histological examination unknown (at present''', NULL, + '(015.02) Tuberculosis of vertebral column, bacteriological or histological examination unknown (at present)', '(015.02) Tuberculosis of vertebral column, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.03) Tuberculosis of vertebral column, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.03) Tuberculosis of vertebral column, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.03) Tuberculosis of vertebral column, tubercle bacilli found (in sputum''', NULL, + '(015.03) Tuberculosis of vertebral column, tubercle bacilli found (in sputum) by microscopy', '(015.03) Tuberculosis of vertebral column, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.04) Tuberculosis of vertebral column, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.04) Tuberculosis of vertebral column, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.04) Tuberculosis of vertebral column, tubercle bacilli not found (in sputum''', NULL, + '(015.04) Tuberculosis of vertebral column, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(015.04) Tuberculosis of vertebral column, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.05) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.05) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.05''', NULL, + '(015.05) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(015.05) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.06) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of bones and joints (015)\Tuberculosis of vertebral column (015.0)\(015.06) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''015.06''', NULL, + '(015.06) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(015.06) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016''', NULL, + 'Tuberculosis of genitourinary system (016)', 'Tuberculosis of genitourinary system (016)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.9''', NULL, + 'Genitourinary tuberculosis, unspecified (016.9)', 'Genitourinary tuberculosis, unspecified (016.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.90) Genitourinary tuberculosis, unspecified, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.90) Genitourinary tuberculosis, unspecified, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.90''', NULL, + '(016.90) Genitourinary tuberculosis, unspecified, unspecified', '(016.90) Genitourinary tuberculosis, unspecified, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.91) Genitourinary tuberculosis, unspecified, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.91) Genitourinary tuberculosis, unspecified, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.91''', NULL, + '(016.91) Genitourinary tuberculosis, unspecified, bacteriological or histological examination not done', '(016.91) Genitourinary tuberculosis, unspecified, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.92) Genitourinary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.92) Genitourinary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.92) Genitourinary tuberculosis, unspecified, bacteriological or histological examination unknown (at present''', NULL, + '(016.92) Genitourinary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)', '(016.92) Genitourinary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.93) Genitourinary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.93) Genitourinary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.93) Genitourinary tuberculosis, unspecified, tubercle bacilli found (in sputum''', NULL, + '(016.93) Genitourinary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy', '(016.93) Genitourinary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.94) Genitourinary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.94) Genitourinary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.94) Genitourinary tuberculosis, unspecified, tubercle bacilli not found (in sputum''', NULL, + '(016.94) Genitourinary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(016.94) Genitourinary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.95) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.95) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.95''', NULL, + '(016.95) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(016.95) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.96) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Genitourinary tuberculosis, unspecified (016.9)\(016.96) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.96''', NULL, + '(016.96) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(016.96) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.1''', NULL, + 'Tuberculosis of bladder (016.1)', 'Tuberculosis of bladder (016.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.10) Tuberculosis of bladder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.10) Tuberculosis of bladder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.10''', NULL, + '(016.10) Tuberculosis of bladder, unspecified', '(016.10) Tuberculosis of bladder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.11) Tuberculosis of bladder, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.11) Tuberculosis of bladder, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.11''', NULL, + '(016.11) Tuberculosis of bladder, bacteriological or histological examination not done', '(016.11) Tuberculosis of bladder, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.12) Tuberculosis of bladder, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.12) Tuberculosis of bladder, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.12) Tuberculosis of bladder, bacteriological or histological examination unknown (at present''', NULL, + '(016.12) Tuberculosis of bladder, bacteriological or histological examination unknown (at present)', '(016.12) Tuberculosis of bladder, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.13) Tuberculosis of bladder, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.13) Tuberculosis of bladder, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.13) Tuberculosis of bladder, tubercle bacilli found (in sputum''', NULL, + '(016.13) Tuberculosis of bladder, tubercle bacilli found (in sputum) by microscopy', '(016.13) Tuberculosis of bladder, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.14) Tuberculosis of bladder, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.14) Tuberculosis of bladder, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.14) Tuberculosis of bladder, tubercle bacilli not found (in sputum''', NULL, + '(016.14) Tuberculosis of bladder, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(016.14) Tuberculosis of bladder, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.15) Tuberculosis of bladder, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.15) Tuberculosis of bladder, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.15''', NULL, + '(016.15) Tuberculosis of bladder, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(016.15) Tuberculosis of bladder, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.16) Tuberculosis of bladder, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of bladder (016.1)\(016.16) Tuberculosis of bladder, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.16''', NULL, + '(016.16) Tuberculosis of bladder, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(016.16) Tuberculosis of bladder, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.4''', NULL, + 'Tuberculosis of epididymis (016.4)', 'Tuberculosis of epididymis (016.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.40) Tuberculosis of epididymis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.40) Tuberculosis of epididymis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.40''', NULL, + '(016.40) Tuberculosis of epididymis, unspecified', '(016.40) Tuberculosis of epididymis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.41) Tuberculosis of epididymis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.41) Tuberculosis of epididymis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.41''', NULL, + '(016.41) Tuberculosis of epididymis, bacteriological or histological examination not done', '(016.41) Tuberculosis of epididymis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.42) Tuberculosis of epididymis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.42) Tuberculosis of epididymis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.42) Tuberculosis of epididymis, bacteriological or histological examination unknown (at present''', NULL, + '(016.42) Tuberculosis of epididymis, bacteriological or histological examination unknown (at present)', '(016.42) Tuberculosis of epididymis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.43) Tuberculosis of epididymis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.43) Tuberculosis of epididymis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.43) Tuberculosis of epididymis, tubercle bacilli found (in sputum''', NULL, + '(016.43) Tuberculosis of epididymis, tubercle bacilli found (in sputum) by microscopy', '(016.43) Tuberculosis of epididymis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.44) Tuberculosis of epididymis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.44) Tuberculosis of epididymis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.44) Tuberculosis of epididymis, tubercle bacilli not found (in sputum''', NULL, + '(016.44) Tuberculosis of epididymis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(016.44) Tuberculosis of epididymis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.45) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.45) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.45''', NULL, + '(016.45) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(016.45) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.46) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of epididymis (016.4)\(016.46) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.46''', NULL, + '(016.46) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(016.46) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.0''', NULL, + 'Tuberculosis of kidney (016.0)', 'Tuberculosis of kidney (016.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.00) Tuberculosis of kidney, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.00) Tuberculosis of kidney, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.00''', NULL, + '(016.00) Tuberculosis of kidney, unspecified', '(016.00) Tuberculosis of kidney, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.01) Tuberculosis of kidney, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.01) Tuberculosis of kidney, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.01''', NULL, + '(016.01) Tuberculosis of kidney, bacteriological or histological examination not done', '(016.01) Tuberculosis of kidney, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.02) Tuberculosis of kidney, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.02) Tuberculosis of kidney, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.02) Tuberculosis of kidney, bacteriological or histological examination unknown (at present''', NULL, + '(016.02) Tuberculosis of kidney, bacteriological or histological examination unknown (at present)', '(016.02) Tuberculosis of kidney, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.03) Tuberculosis of kidney, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.03) Tuberculosis of kidney, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.03) Tuberculosis of kidney, tubercle bacilli found (in sputum''', NULL, + '(016.03) Tuberculosis of kidney, tubercle bacilli found (in sputum) by microscopy', '(016.03) Tuberculosis of kidney, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.04) Tuberculosis of kidney, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.04) Tuberculosis of kidney, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.04) Tuberculosis of kidney, tubercle bacilli not found (in sputum''', NULL, + '(016.04) Tuberculosis of kidney, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(016.04) Tuberculosis of kidney, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.05) Tuberculosis of kidney, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.05) Tuberculosis of kidney, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.05''', NULL, + '(016.05) Tuberculosis of kidney, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(016.05) Tuberculosis of kidney, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.06) Tuberculosis of kidney, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of kidney (016.0)\(016.06) Tuberculosis of kidney, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.06''', NULL, + '(016.06) Tuberculosis of kidney, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(016.06) Tuberculosis of kidney, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.7''', NULL, + 'Tuberculosis of other female genital organs (016.7)', 'Tuberculosis of other female genital organs (016.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.70) Tuberculosis of other female genital organs, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.70) Tuberculosis of other female genital organs, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.70''', NULL, + '(016.70) Tuberculosis of other female genital organs, unspecified', '(016.70) Tuberculosis of other female genital organs, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.71) Tuberculosis of other female genital organs, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.71) Tuberculosis of other female genital organs, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.71''', NULL, + '(016.71) Tuberculosis of other female genital organs, bacteriological or histological examination not done', '(016.71) Tuberculosis of other female genital organs, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.72) Tuberculosis of other female genital organs, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.72) Tuberculosis of other female genital organs, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.72) Tuberculosis of other female genital organs, bacteriological or histological examination unknown (at present''', NULL, + '(016.72) Tuberculosis of other female genital organs, bacteriological or histological examination unknown (at present)', '(016.72) Tuberculosis of other female genital organs, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.73) Tuberculosis of other female genital organs, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.73) Tuberculosis of other female genital organs, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.73) Tuberculosis of other female genital organs, tubercle bacilli found (in sputum''', NULL, + '(016.73) Tuberculosis of other female genital organs, tubercle bacilli found (in sputum) by microscopy', '(016.73) Tuberculosis of other female genital organs, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.74) Tuberculosis of other female genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.74) Tuberculosis of other female genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.74) Tuberculosis of other female genital organs, tubercle bacilli not found (in sputum''', NULL, + '(016.74) Tuberculosis of other female genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(016.74) Tuberculosis of other female genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.75) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.75) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.75''', NULL, + '(016.75) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(016.75) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.76) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other female genital organs (016.7)\(016.76) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.76''', NULL, + '(016.76) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(016.76) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.5''', NULL, + 'Tuberculosis of other male genital organs (016.5)', 'Tuberculosis of other male genital organs (016.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.50) Tuberculosis of other male genital organs, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.50) Tuberculosis of other male genital organs, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.50''', NULL, + '(016.50) Tuberculosis of other male genital organs, unspecified', '(016.50) Tuberculosis of other male genital organs, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.51) Tuberculosis of other male genital organs, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.51) Tuberculosis of other male genital organs, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.51''', NULL, + '(016.51) Tuberculosis of other male genital organs, bacteriological or histological examination not done', '(016.51) Tuberculosis of other male genital organs, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.52) Tuberculosis of other male genital organs, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.52) Tuberculosis of other male genital organs, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.52) Tuberculosis of other male genital organs, bacteriological or histological examination unknown (at present''', NULL, + '(016.52) Tuberculosis of other male genital organs, bacteriological or histological examination unknown (at present)', '(016.52) Tuberculosis of other male genital organs, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.53) Tuberculosis of other male genital organs, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.53) Tuberculosis of other male genital organs, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.53) Tuberculosis of other male genital organs, tubercle bacilli found (in sputum''', NULL, + '(016.53) Tuberculosis of other male genital organs, tubercle bacilli found (in sputum) by microscopy', '(016.53) Tuberculosis of other male genital organs, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.54) Tuberculosis of other male genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.54) Tuberculosis of other male genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.54) Tuberculosis of other male genital organs, tubercle bacilli not found (in sputum''', NULL, + '(016.54) Tuberculosis of other male genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(016.54) Tuberculosis of other male genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.55) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.55) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.55''', NULL, + '(016.55) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(016.55) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.56) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other male genital organs (016.5)\(016.56) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.56''', NULL, + '(016.56) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(016.56) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.3''', NULL, + 'Tuberculosis of other urinary organs (016.3)', 'Tuberculosis of other urinary organs (016.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.30) Tuberculosis of other urinary organs, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.30) Tuberculosis of other urinary organs, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.30''', NULL, + '(016.30) Tuberculosis of other urinary organs, unspecified', '(016.30) Tuberculosis of other urinary organs, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.31) Tuberculosis of other urinary organs, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.31) Tuberculosis of other urinary organs, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.31''', NULL, + '(016.31) Tuberculosis of other urinary organs, bacteriological or histological examination not done', '(016.31) Tuberculosis of other urinary organs, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.32) Tuberculosis of other urinary organs, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.32) Tuberculosis of other urinary organs, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.32) Tuberculosis of other urinary organs, bacteriological or histological examination unknown (at present''', NULL, + '(016.32) Tuberculosis of other urinary organs, bacteriological or histological examination unknown (at present)', '(016.32) Tuberculosis of other urinary organs, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.33) Tuberculosis of other urinary organs, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.33) Tuberculosis of other urinary organs, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.33) Tuberculosis of other urinary organs, tubercle bacilli found (in sputum''', NULL, + '(016.33) Tuberculosis of other urinary organs, tubercle bacilli found (in sputum) by microscopy', '(016.33) Tuberculosis of other urinary organs, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.34) Tuberculosis of other urinary organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.34) Tuberculosis of other urinary organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.34) Tuberculosis of other urinary organs, tubercle bacilli not found (in sputum''', NULL, + '(016.34) Tuberculosis of other urinary organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(016.34) Tuberculosis of other urinary organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.35) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.35) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.35''', NULL, + '(016.35) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(016.35) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.36) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of other urinary organs (016.3)\(016.36) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.36''', NULL, + '(016.36) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(016.36) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.2''', NULL, + 'Tuberculosis of ureter (016.2)', 'Tuberculosis of ureter (016.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.20) Tuberculosis of ureter, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.20) Tuberculosis of ureter, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.20''', NULL, + '(016.20) Tuberculosis of ureter, unspecified', '(016.20) Tuberculosis of ureter, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.21) Tuberculosis of ureter, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.21) Tuberculosis of ureter, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.21''', NULL, + '(016.21) Tuberculosis of ureter, bacteriological or histological examination not done', '(016.21) Tuberculosis of ureter, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.22) Tuberculosis of ureter, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.22) Tuberculosis of ureter, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.22) Tuberculosis of ureter, bacteriological or histological examination unknown (at present''', NULL, + '(016.22) Tuberculosis of ureter, bacteriological or histological examination unknown (at present)', '(016.22) Tuberculosis of ureter, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.23) Tuberculosis of ureter, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.23) Tuberculosis of ureter, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.23) Tuberculosis of ureter, tubercle bacilli found (in sputum''', NULL, + '(016.23) Tuberculosis of ureter, tubercle bacilli found (in sputum) by microscopy', '(016.23) Tuberculosis of ureter, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.24) Tuberculosis of ureter, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.24) Tuberculosis of ureter, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.24) Tuberculosis of ureter, tubercle bacilli not found (in sputum''', NULL, + '(016.24) Tuberculosis of ureter, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(016.24) Tuberculosis of ureter, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.25) Tuberculosis of ureter, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.25) Tuberculosis of ureter, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.25''', NULL, + '(016.25) Tuberculosis of ureter, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(016.25) Tuberculosis of ureter, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.26) Tuberculosis of ureter, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculosis of ureter (016.2)\(016.26) Tuberculosis of ureter, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.26''', NULL, + '(016.26) Tuberculosis of ureter, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(016.26) Tuberculosis of ureter, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.6''', NULL, + 'Tuberculous oophoritis and salpingitis (016.6)', 'Tuberculous oophoritis and salpingitis (016.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.60) Tuberculous oophoritis and salpingitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.60) Tuberculous oophoritis and salpingitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.60''', NULL, + '(016.60) Tuberculous oophoritis and salpingitis, unspecified', '(016.60) Tuberculous oophoritis and salpingitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.61) Tuberculous oophoritis and salpingitis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.61) Tuberculous oophoritis and salpingitis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.61''', NULL, + '(016.61) Tuberculous oophoritis and salpingitis, bacteriological or histological examination not done', '(016.61) Tuberculous oophoritis and salpingitis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.62) Tuberculous oophoritis and salpingitis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.62) Tuberculous oophoritis and salpingitis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.62) Tuberculous oophoritis and salpingitis, bacteriological or histological examination unknown (at present''', NULL, + '(016.62) Tuberculous oophoritis and salpingitis, bacteriological or histological examination unknown (at present)', '(016.62) Tuberculous oophoritis and salpingitis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.63) Tuberculous oophoritis and salpingitis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.63) Tuberculous oophoritis and salpingitis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.63) Tuberculous oophoritis and salpingitis, tubercle bacilli found (in sputum''', NULL, + '(016.63) Tuberculous oophoritis and salpingitis, tubercle bacilli found (in sputum) by microscopy', '(016.63) Tuberculous oophoritis and salpingitis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.64) Tuberculous oophoritis and salpingitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.64) Tuberculous oophoritis and salpingitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.64) Tuberculous oophoritis and salpingitis, tubercle bacilli not found (in sputum''', NULL, + '(016.64) Tuberculous oophoritis and salpingitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(016.64) Tuberculous oophoritis and salpingitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.65) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.65) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.65''', NULL, + '(016.65) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(016.65) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.66) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of genitourinary system (016)\Tuberculous oophoritis and salpingitis (016.6)\(016.66) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''016.66''', NULL, + '(016.66) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(016.66) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014''', NULL, + 'Tuberculosis of intestines, peritoneum, and mesenteric glands (014)', 'Tuberculosis of intestines, peritoneum, and mesenteric glands (014)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.8''', NULL, + 'Tuberculosis of intestines and mesenteric glands (014.8)', 'Tuberculosis of intestines and mesenteric glands (014.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.80) Other tuberculosis of intestines, peritoneum, and mesenteric glands, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.80) Other tuberculosis of intestines, peritoneum, and mesenteric glands, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.80''', NULL, + '(014.80) Other tuberculosis of intestines, peritoneum, and mesenteric glands, unspecified', '(014.80) Other tuberculosis of intestines, peritoneum, and mesenteric glands, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.81) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.81) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.81''', NULL, + '(014.81) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination not done', '(014.81) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.82) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.82) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.82) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination unknown (at present''', NULL, + '(014.82) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination unknown (at present)', '(014.82) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.83) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.83) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.83) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli found (in sputum''', NULL, + '(014.83) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli found (in sputum) by microscopy', '(014.83) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.84) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.84) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.84) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found (in sputum''', NULL, + '(014.84) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(014.84) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.85) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.85) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.85''', NULL, + '(014.85) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(014.85) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.86) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculosis of intestines and mesenteric glands (014.8)\(014.86) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.86''', NULL, + '(014.86) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(014.86) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.0''', NULL, + 'Tuberculous peritonitis (014.0)', 'Tuberculous peritonitis (014.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.00) Tuberculous peritonitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.00) Tuberculous peritonitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.00''', NULL, + '(014.00) Tuberculous peritonitis, unspecified', '(014.00) Tuberculous peritonitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.01) Tuberculous peritonitis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.01) Tuberculous peritonitis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.01''', NULL, + '(014.01) Tuberculous peritonitis, bacteriological or histological examination not done', '(014.01) Tuberculous peritonitis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.02) Tuberculous peritonitis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.02) Tuberculous peritonitis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.02) Tuberculous peritonitis, bacteriological or histological examination unknown (at present''', NULL, + '(014.02) Tuberculous peritonitis, bacteriological or histological examination unknown (at present)', '(014.02) Tuberculous peritonitis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.03) Tuberculous peritonitis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.03) Tuberculous peritonitis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.03) Tuberculous peritonitis, tubercle bacilli found (in sputum''', NULL, + '(014.03) Tuberculous peritonitis, tubercle bacilli found (in sputum) by microscopy', '(014.03) Tuberculous peritonitis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.04) Tuberculous peritonitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.04) Tuberculous peritonitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.04) Tuberculous peritonitis, tubercle bacilli not found (in sputum''', NULL, + '(014.04) Tuberculous peritonitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(014.04) Tuberculous peritonitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.05) Tuberculous peritonitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.05) Tuberculous peritonitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.05''', NULL, + '(014.05) Tuberculous peritonitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(014.05) Tuberculous peritonitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.06) Tuberculous peritonitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\Tuberculous peritonitis (014.0)\(014.06) Tuberculous peritonitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''014.06''', NULL, + '(014.06) Tuberculous peritonitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(014.06) Tuberculous peritonitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013''', NULL, + 'Tuberculosis of meninges and central nervous system (013)', 'Tuberculosis of meninges and central nervous system (013)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.8''', NULL, + 'Other specified tuberculosis of central nervous system (013.8)', 'Other specified tuberculosis of central nervous system (013.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.80) Other specified tuberculosis of central nervous system, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.80) Other specified tuberculosis of central nervous system, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.80''', NULL, + '(013.80) Other specified tuberculosis of central nervous system, unspecified', '(013.80) Other specified tuberculosis of central nervous system, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.81) Other specified tuberculosis of central nervous system, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.81) Other specified tuberculosis of central nervous system, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.81''', NULL, + '(013.81) Other specified tuberculosis of central nervous system, bacteriological or histological examination not done', '(013.81) Other specified tuberculosis of central nervous system, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.82) Other specified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.82) Other specified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.82) Other specified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present''', NULL, + '(013.82) Other specified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)', '(013.82) Other specified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.83) Other specified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.83) Other specified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.83) Other specified tuberculosis of central nervous system, tubercle bacilli found (in sputum''', NULL, + '(013.83) Other specified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy', '(013.83) Other specified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.84) Other specified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.84) Other specified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.84) Other specified tuberculosis of central nervous system, tubercle bacilli not found (in sputum''', NULL, + '(013.84) Other specified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(013.84) Other specified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.85) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.85) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.85''', NULL, + '(013.85) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(013.85) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.86) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Other specified tuberculosis of central nervous system (013.8)\(013.86) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.86''', NULL, + '(013.86) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(013.86) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.2''', NULL, + 'Tuberculoma of brain (013.2)', 'Tuberculoma of brain (013.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.20) Tuberculoma of brain, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.20) Tuberculoma of brain, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.20''', NULL, + '(013.20) Tuberculoma of brain, unspecified', '(013.20) Tuberculoma of brain, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.21) Tuberculoma of brain, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.21) Tuberculoma of brain, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.21''', NULL, + '(013.21) Tuberculoma of brain, bacteriological or histological examination not done', '(013.21) Tuberculoma of brain, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.22) Tuberculoma of brain, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.22) Tuberculoma of brain, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.22) Tuberculoma of brain, bacteriological or histological examination unknown (at present''', NULL, + '(013.22) Tuberculoma of brain, bacteriological or histological examination unknown (at present)', '(013.22) Tuberculoma of brain, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.23) Tuberculoma of brain, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.23) Tuberculoma of brain, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.23) Tuberculoma of brain, tubercle bacilli found (in sputum''', NULL, + '(013.23) Tuberculoma of brain, tubercle bacilli found (in sputum) by microscopy', '(013.23) Tuberculoma of brain, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.24) Tuberculoma of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.24) Tuberculoma of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.24) Tuberculoma of brain, tubercle bacilli not found (in sputum''', NULL, + '(013.24) Tuberculoma of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(013.24) Tuberculoma of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.25) Tuberculoma of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.25) Tuberculoma of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.25''', NULL, + '(013.25) Tuberculoma of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(013.25) Tuberculoma of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.26) Tuberculoma of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of brain (013.2)\(013.26) Tuberculoma of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.26''', NULL, + '(013.26) Tuberculoma of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(013.26) Tuberculoma of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.1''', NULL, + 'Tuberculoma of meninges (013.1)', 'Tuberculoma of meninges (013.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.10) Tuberculoma of meninges, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.10) Tuberculoma of meninges, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.10''', NULL, + '(013.10) Tuberculoma of meninges, unspecified', '(013.10) Tuberculoma of meninges, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.11) Tuberculoma of meninges, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.11) Tuberculoma of meninges, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.11''', NULL, + '(013.11) Tuberculoma of meninges, bacteriological or histological examination not done', '(013.11) Tuberculoma of meninges, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.12) Tuberculoma of meninges, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.12) Tuberculoma of meninges, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.12) Tuberculoma of meninges, bacteriological or histological examination unknown (at present''', NULL, + '(013.12) Tuberculoma of meninges, bacteriological or histological examination unknown (at present)', '(013.12) Tuberculoma of meninges, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.13) Tuberculoma of meninges, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.13) Tuberculoma of meninges, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.13) Tuberculoma of meninges, tubercle bacilli found (in sputum''', NULL, + '(013.13) Tuberculoma of meninges, tubercle bacilli found (in sputum) by microscopy', '(013.13) Tuberculoma of meninges, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.14) Tuberculoma of meninges, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.14) Tuberculoma of meninges, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.14) Tuberculoma of meninges, tubercle bacilli not found (in sputum''', NULL, + '(013.14) Tuberculoma of meninges, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(013.14) Tuberculoma of meninges, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.15) Tuberculoma of meninges, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.15) Tuberculoma of meninges, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.15''', NULL, + '(013.15) Tuberculoma of meninges, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(013.15) Tuberculoma of meninges, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.16) Tuberculoma of meninges, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of meninges (013.1)\(013.16) Tuberculoma of meninges, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.16''', NULL, + '(013.16) Tuberculoma of meninges, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(013.16) Tuberculoma of meninges, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.4''', NULL, + 'Tuberculoma of spinal cord (013.4)', 'Tuberculoma of spinal cord (013.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.40) Tuberculoma of spinal cord, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.40) Tuberculoma of spinal cord, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.40''', NULL, + '(013.40) Tuberculoma of spinal cord, unspecified', '(013.40) Tuberculoma of spinal cord, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.41) Tuberculoma of spinal cord, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.41) Tuberculoma of spinal cord, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.41''', NULL, + '(013.41) Tuberculoma of spinal cord, bacteriological or histological examination not done', '(013.41) Tuberculoma of spinal cord, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.42) Tuberculoma of spinal cord, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.42) Tuberculoma of spinal cord, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.42) Tuberculoma of spinal cord, bacteriological or histological examination unknown (at present''', NULL, + '(013.42) Tuberculoma of spinal cord, bacteriological or histological examination unknown (at present)', '(013.42) Tuberculoma of spinal cord, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.43) Tuberculoma of spinal cord, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.43) Tuberculoma of spinal cord, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.43) Tuberculoma of spinal cord, tubercle bacilli found (in sputum''', NULL, + '(013.43) Tuberculoma of spinal cord, tubercle bacilli found (in sputum) by microscopy', '(013.43) Tuberculoma of spinal cord, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.44) Tuberculoma of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.44) Tuberculoma of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.44) Tuberculoma of spinal cord, tubercle bacilli not found (in sputum''', NULL, + '(013.44) Tuberculoma of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(013.44) Tuberculoma of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.45) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.45) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.45''', NULL, + '(013.45) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(013.45) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.46) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculoma of spinal cord (013.4)\(013.46) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.46''', NULL, + '(013.46) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(013.46) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.3''', NULL, + 'Tuberculous abscess of brain (013.3)', 'Tuberculous abscess of brain (013.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.30) Tuberculous abscess of brain, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.30) Tuberculous abscess of brain, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.30''', NULL, + '(013.30) Tuberculous abscess of brain, unspecified', '(013.30) Tuberculous abscess of brain, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.31) Tuberculous abscess of brain, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.31) Tuberculous abscess of brain, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.31''', NULL, + '(013.31) Tuberculous abscess of brain, bacteriological or histological examination not done', '(013.31) Tuberculous abscess of brain, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.32) Tuberculous abscess of brain, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.32) Tuberculous abscess of brain, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.32) Tuberculous abscess of brain, bacteriological or histological examination unknown (at present''', NULL, + '(013.32) Tuberculous abscess of brain, bacteriological or histological examination unknown (at present)', '(013.32) Tuberculous abscess of brain, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.33) Tuberculous abscess of brain, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.33) Tuberculous abscess of brain, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.33) Tuberculous abscess of brain, tubercle bacilli found (in sputum''', NULL, + '(013.33) Tuberculous abscess of brain, tubercle bacilli found (in sputum) by microscopy', '(013.33) Tuberculous abscess of brain, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.34) Tuberculous abscess of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.34) Tuberculous abscess of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.34) Tuberculous abscess of brain, tubercle bacilli not found (in sputum''', NULL, + '(013.34) Tuberculous abscess of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(013.34) Tuberculous abscess of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.35) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.35) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.35''', NULL, + '(013.35) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(013.35) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.36) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of brain (013.3)\(013.36) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.36''', NULL, + '(013.36) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(013.36) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.5''', NULL, + 'Tuberculous abscess of spinal cord (013.5)', 'Tuberculous abscess of spinal cord (013.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.50) Tuberculous abscess of spinal cord, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.50) Tuberculous abscess of spinal cord, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.50''', NULL, + '(013.50) Tuberculous abscess of spinal cord, unspecified', '(013.50) Tuberculous abscess of spinal cord, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.51) Tuberculous abscess of spinal cord, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.51) Tuberculous abscess of spinal cord, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.51''', NULL, + '(013.51) Tuberculous abscess of spinal cord, bacteriological or histological examination not done', '(013.51) Tuberculous abscess of spinal cord, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.52) Tuberculous abscess of spinal cord, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.52) Tuberculous abscess of spinal cord, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.52) Tuberculous abscess of spinal cord, bacteriological or histological examination unknown (at present''', NULL, + '(013.52) Tuberculous abscess of spinal cord, bacteriological or histological examination unknown (at present)', '(013.52) Tuberculous abscess of spinal cord, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.53) Tuberculous abscess of spinal cord, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.53) Tuberculous abscess of spinal cord, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.53) Tuberculous abscess of spinal cord, tubercle bacilli found (in sputum''', NULL, + '(013.53) Tuberculous abscess of spinal cord, tubercle bacilli found (in sputum) by microscopy', '(013.53) Tuberculous abscess of spinal cord, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.54) Tuberculous abscess of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.54) Tuberculous abscess of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.54) Tuberculous abscess of spinal cord, tubercle bacilli not found (in sputum''', NULL, + '(013.54) Tuberculous abscess of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(013.54) Tuberculous abscess of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.55) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.55) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.55''', NULL, + '(013.55) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(013.55) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.56) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous abscess of spinal cord (013.5)\(013.56) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.56''', NULL, + '(013.56) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(013.56) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.6''', NULL, + 'Tuberculous encephalitis or myelitis (013.6)', 'Tuberculous encephalitis or myelitis (013.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.60) Tuberculous encephalitis or myelitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.60) Tuberculous encephalitis or myelitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.60''', NULL, + '(013.60) Tuberculous encephalitis or myelitis, unspecified', '(013.60) Tuberculous encephalitis or myelitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.61) Tuberculous encephalitis or myelitis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.61) Tuberculous encephalitis or myelitis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.61''', NULL, + '(013.61) Tuberculous encephalitis or myelitis, bacteriological or histological examination not done', '(013.61) Tuberculous encephalitis or myelitis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.62) Tuberculous encephalitis or myelitis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.62) Tuberculous encephalitis or myelitis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.62) Tuberculous encephalitis or myelitis, bacteriological or histological examination unknown (at present''', NULL, + '(013.62) Tuberculous encephalitis or myelitis, bacteriological or histological examination unknown (at present)', '(013.62) Tuberculous encephalitis or myelitis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.63) Tuberculous encephalitis or myelitis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.63) Tuberculous encephalitis or myelitis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.63) Tuberculous encephalitis or myelitis, tubercle bacilli found (in sputum''', NULL, + '(013.63) Tuberculous encephalitis or myelitis, tubercle bacilli found (in sputum) by microscopy', '(013.63) Tuberculous encephalitis or myelitis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.64) Tuberculous encephalitis or myelitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.64) Tuberculous encephalitis or myelitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.64) Tuberculous encephalitis or myelitis, tubercle bacilli not found (in sputum''', NULL, + '(013.64) Tuberculous encephalitis or myelitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(013.64) Tuberculous encephalitis or myelitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.65) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.65) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.65''', NULL, + '(013.65) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(013.65) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.66) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous encephalitis or myelitis (013.6)\(013.66) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.66''', NULL, + '(013.66) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(013.66) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.0''', NULL, + 'Tuberculous meningitis (013.0)', 'Tuberculous meningitis (013.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.00) Tuberculous meningitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.00) Tuberculous meningitis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.00''', NULL, + '(013.00) Tuberculous meningitis, unspecified', '(013.00) Tuberculous meningitis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.01) Tuberculous meningitis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.01) Tuberculous meningitis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.01''', NULL, + '(013.01) Tuberculous meningitis, bacteriological or histological examination not done', '(013.01) Tuberculous meningitis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.02) Tuberculous meningitis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.02) Tuberculous meningitis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.02) Tuberculous meningitis, bacteriological or histological examination unknown (at present''', NULL, + '(013.02) Tuberculous meningitis, bacteriological or histological examination unknown (at present)', '(013.02) Tuberculous meningitis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.03) Tuberculous meningitis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.03) Tuberculous meningitis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.03) Tuberculous meningitis, tubercle bacilli found (in sputum''', NULL, + '(013.03) Tuberculous meningitis, tubercle bacilli found (in sputum) by microscopy', '(013.03) Tuberculous meningitis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.04) Tuberculous meningitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.04) Tuberculous meningitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.04) Tuberculous meningitis, tubercle bacilli not found (in sputum''', NULL, + '(013.04) Tuberculous meningitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(013.04) Tuberculous meningitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.05) Tuberculous meningitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.05) Tuberculous meningitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.05''', NULL, + '(013.05) Tuberculous meningitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(013.05) Tuberculous meningitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.06) Tuberculous meningitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Tuberculous meningitis (013.0)\(013.06) Tuberculous meningitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.06''', NULL, + '(013.06) Tuberculous meningitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(013.06) Tuberculous meningitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.9''', NULL, + 'Unspecified tuberculosis of central nervous system (013.9)', 'Unspecified tuberculosis of central nervous system (013.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.90) Unspecified tuberculosis of central nervous system, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.90) Unspecified tuberculosis of central nervous system, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.90''', NULL, + '(013.90) Unspecified tuberculosis of central nervous system, unspecified', '(013.90) Unspecified tuberculosis of central nervous system, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.91) Unspecified tuberculosis of central nervous system, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.91) Unspecified tuberculosis of central nervous system, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.91''', NULL, + '(013.91) Unspecified tuberculosis of central nervous system, bacteriological or histological examination not done', '(013.91) Unspecified tuberculosis of central nervous system, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.92) Unspecified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.92) Unspecified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.92) Unspecified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present''', NULL, + '(013.92) Unspecified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)', '(013.92) Unspecified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.93) Unspecified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.93) Unspecified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.93) Unspecified tuberculosis of central nervous system, tubercle bacilli found (in sputum''', NULL, + '(013.93) Unspecified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy', '(013.93) Unspecified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.94) Unspecified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.94) Unspecified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.94) Unspecified tuberculosis of central nervous system, tubercle bacilli not found (in sputum''', NULL, + '(013.94) Unspecified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(013.94) Unspecified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.95) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.95) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.95''', NULL, + '(013.95) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(013.95) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.96) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of meninges and central nervous system (013)\Unspecified tuberculosis of central nervous system (013.9)\(013.96) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''013.96''', NULL, + '(013.96) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(013.96) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017''', NULL, + 'Tuberculosis of other organs (017)', 'Tuberculosis of other organs (017)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.1''', NULL, + 'Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)', 'Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.10) Erythema nodosum with hypersensitivity reaction in tuberculosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.10) Erythema nodosum with hypersensitivity reaction in tuberculosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.10''', NULL, + '(017.10) Erythema nodosum with hypersensitivity reaction in tuberculosis, unspecified', '(017.10) Erythema nodosum with hypersensitivity reaction in tuberculosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.11) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.11) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.11''', NULL, + '(017.11) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination not done', '(017.11) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.12) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.12) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.12) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination unknown (at present''', NULL, + '(017.12) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination unknown (at present)', '(017.12) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.13) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.13) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.13) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli found (in sputum''', NULL, + '(017.13) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli found (in sputum) by microscopy', '(017.13) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.14) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.14) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.14) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found (in sputum''', NULL, + '(017.14) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(017.14) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.15) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.15) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.15''', NULL, + '(017.15) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(017.15) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.16) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\(017.16) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.16''', NULL, + '(017.16) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(017.16) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.6''', NULL, + 'Tuberculosis of adrenal glands (017.6)', 'Tuberculosis of adrenal glands (017.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.60) Tuberculosis of adrenal glands, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.60) Tuberculosis of adrenal glands, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.60''', NULL, + '(017.60) Tuberculosis of adrenal glands, unspecified', '(017.60) Tuberculosis of adrenal glands, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.61) Tuberculosis of adrenal glands, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.61) Tuberculosis of adrenal glands, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.61''', NULL, + '(017.61) Tuberculosis of adrenal glands, bacteriological or histological examination not done', '(017.61) Tuberculosis of adrenal glands, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.62) Tuberculosis of adrenal glands, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.62) Tuberculosis of adrenal glands, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.62) Tuberculosis of adrenal glands, bacteriological or histological examination unknown (at present''', NULL, + '(017.62) Tuberculosis of adrenal glands, bacteriological or histological examination unknown (at present)', '(017.62) Tuberculosis of adrenal glands, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.63) Tuberculosis of adrenal glands, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.63) Tuberculosis of adrenal glands, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.63) Tuberculosis of adrenal glands, tubercle bacilli found (in sputum''', NULL, + '(017.63) Tuberculosis of adrenal glands, tubercle bacilli found (in sputum) by microscopy', '(017.63) Tuberculosis of adrenal glands, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.64) Tuberculosis of adrenal glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.64) Tuberculosis of adrenal glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.64) Tuberculosis of adrenal glands, tubercle bacilli not found (in sputum''', NULL, + '(017.64) Tuberculosis of adrenal glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(017.64) Tuberculosis of adrenal glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.65) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.65) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.65''', NULL, + '(017.65) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(017.65) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.66) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of adrenal glands (017.6)\(017.66) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.66''', NULL, + '(017.66) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(017.66) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.4''', NULL, + 'Tuberculosis of ear (017.4)', 'Tuberculosis of ear (017.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.40) Tuberculosis of ear, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.40) Tuberculosis of ear, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.40''', NULL, + '(017.40) Tuberculosis of ear, unspecified', '(017.40) Tuberculosis of ear, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.41) Tuberculosis of ear, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.41) Tuberculosis of ear, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.41''', NULL, + '(017.41) Tuberculosis of ear, bacteriological or histological examination not done', '(017.41) Tuberculosis of ear, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.42) Tuberculosis of ear, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.42) Tuberculosis of ear, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.42) Tuberculosis of ear, bacteriological or histological examination unknown (at present''', NULL, + '(017.42) Tuberculosis of ear, bacteriological or histological examination unknown (at present)', '(017.42) Tuberculosis of ear, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.43) Tuberculosis of ear, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.43) Tuberculosis of ear, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.43) Tuberculosis of ear, tubercle bacilli found (in sputum''', NULL, + '(017.43) Tuberculosis of ear, tubercle bacilli found (in sputum) by microscopy', '(017.43) Tuberculosis of ear, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.44) Tuberculosis of ear, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.44) Tuberculosis of ear, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.44) Tuberculosis of ear, tubercle bacilli not found (in sputum''', NULL, + '(017.44) Tuberculosis of ear, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(017.44) Tuberculosis of ear, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.45) Tuberculosis of ear, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.45) Tuberculosis of ear, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.45''', NULL, + '(017.45) Tuberculosis of ear, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(017.45) Tuberculosis of ear, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.46) Tuberculosis of ear, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of ear (017.4)\(017.46) Tuberculosis of ear, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.46''', NULL, + '(017.46) Tuberculosis of ear, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(017.46) Tuberculosis of ear, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.8''', NULL, + 'Tuberculosis of esophagus (017.8)', 'Tuberculosis of esophagus (017.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.80) Tuberculosis of esophagus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.80) Tuberculosis of esophagus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.80''', NULL, + '(017.80) Tuberculosis of esophagus, unspecified', '(017.80) Tuberculosis of esophagus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.81) Tuberculosis of esophagus, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.81) Tuberculosis of esophagus, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.81''', NULL, + '(017.81) Tuberculosis of esophagus, bacteriological or histological examination not done', '(017.81) Tuberculosis of esophagus, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.82) Tuberculosis of esophagus, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.82) Tuberculosis of esophagus, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.82) Tuberculosis of esophagus, bacteriological or histological examination unknown (at present''', NULL, + '(017.82) Tuberculosis of esophagus, bacteriological or histological examination unknown (at present)', '(017.82) Tuberculosis of esophagus, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.83) Tuberculosis of esophagus, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.83) Tuberculosis of esophagus, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.83) Tuberculosis of esophagus, tubercle bacilli found (in sputum''', NULL, + '(017.83) Tuberculosis of esophagus, tubercle bacilli found (in sputum) by microscopy', '(017.83) Tuberculosis of esophagus, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.84) Tuberculosis of esophagus, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.84) Tuberculosis of esophagus, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.84) Tuberculosis of esophagus, tubercle bacilli not found (in sputum''', NULL, + '(017.84) Tuberculosis of esophagus, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(017.84) Tuberculosis of esophagus, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.85) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.85) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.85''', NULL, + '(017.85) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(017.85) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.86) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of esophagus (017.8)\(017.86) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.86''', NULL, + '(017.86) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(017.86) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.3''', NULL, + 'Tuberculosis of eye (017.3)', 'Tuberculosis of eye (017.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.30) Tuberculosis of eye, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.30) Tuberculosis of eye, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.30''', NULL, + '(017.30) Tuberculosis of eye, unspecified', '(017.30) Tuberculosis of eye, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.31) Tuberculosis of eye, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.31) Tuberculosis of eye, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.31''', NULL, + '(017.31) Tuberculosis of eye, bacteriological or histological examination not done', '(017.31) Tuberculosis of eye, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.32) Tuberculosis of eye, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.32) Tuberculosis of eye, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.32) Tuberculosis of eye, bacteriological or histological examination unknown (at present''', NULL, + '(017.32) Tuberculosis of eye, bacteriological or histological examination unknown (at present)', '(017.32) Tuberculosis of eye, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.33) Tuberculosis of eye, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.33) Tuberculosis of eye, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.33) Tuberculosis of eye, tubercle bacilli found (in sputum''', NULL, + '(017.33) Tuberculosis of eye, tubercle bacilli found (in sputum) by microscopy', '(017.33) Tuberculosis of eye, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.34) Tuberculosis of eye, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.34) Tuberculosis of eye, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.34) Tuberculosis of eye, tubercle bacilli not found (in sputum''', NULL, + '(017.34) Tuberculosis of eye, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(017.34) Tuberculosis of eye, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.35) Tuberculosis of eye, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.35) Tuberculosis of eye, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.35''', NULL, + '(017.35) Tuberculosis of eye, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(017.35) Tuberculosis of eye, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.36) Tuberculosis of eye, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of eye (017.3)\(017.36) Tuberculosis of eye, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.36''', NULL, + '(017.36) Tuberculosis of eye, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(017.36) Tuberculosis of eye, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.9''', NULL, + 'Tuberculosis of other specified organs (017.9)', 'Tuberculosis of other specified organs (017.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.90) Tuberculosis of other specified organs, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.90) Tuberculosis of other specified organs, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.90''', NULL, + '(017.90) Tuberculosis of other specified organs, unspecified', '(017.90) Tuberculosis of other specified organs, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.91) Tuberculosis of other specified organs, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.91) Tuberculosis of other specified organs, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.91''', NULL, + '(017.91) Tuberculosis of other specified organs, bacteriological or histological examination not done', '(017.91) Tuberculosis of other specified organs, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.92) Tuberculosis of other specified organs, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.92) Tuberculosis of other specified organs, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.92) Tuberculosis of other specified organs, bacteriological or histological examination unknown (at present''', NULL, + '(017.92) Tuberculosis of other specified organs, bacteriological or histological examination unknown (at present)', '(017.92) Tuberculosis of other specified organs, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.93) Tuberculosis of other specified organs, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.93) Tuberculosis of other specified organs, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.93) Tuberculosis of other specified organs, tubercle bacilli found (in sputum''', NULL, + '(017.93) Tuberculosis of other specified organs, tubercle bacilli found (in sputum) by microscopy', '(017.93) Tuberculosis of other specified organs, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.94) Tuberculosis of other specified organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.94) Tuberculosis of other specified organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.94) Tuberculosis of other specified organs, tubercle bacilli not found (in sputum''', NULL, + '(017.94) Tuberculosis of other specified organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(017.94) Tuberculosis of other specified organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.95) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.95) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.95''', NULL, + '(017.95) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(017.95) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.96) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of other specified organs (017.9)\(017.96) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.96''', NULL, + '(017.96) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(017.96) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.2''', NULL, + 'Tuberculosis of peripheral lymph nodes (017.2)', 'Tuberculosis of peripheral lymph nodes (017.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.20) Tuberculosis of peripheral lymph nodes, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.20) Tuberculosis of peripheral lymph nodes, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.20''', NULL, + '(017.20) Tuberculosis of peripheral lymph nodes, unspecified', '(017.20) Tuberculosis of peripheral lymph nodes, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.21) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.21) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.21''', NULL, + '(017.21) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination not done', '(017.21) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.22) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.22) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.22) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination unknown (at present''', NULL, + '(017.22) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination unknown (at present)', '(017.22) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.23) Tuberculosis of peripheral lymph nodes, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.23) Tuberculosis of peripheral lymph nodes, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.23) Tuberculosis of peripheral lymph nodes, tubercle bacilli found (in sputum''', NULL, + '(017.23) Tuberculosis of peripheral lymph nodes, tubercle bacilli found (in sputum) by microscopy', '(017.23) Tuberculosis of peripheral lymph nodes, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.24) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.24) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.24) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found (in sputum''', NULL, + '(017.24) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(017.24) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.25) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.25) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.25''', NULL, + '(017.25) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(017.25) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.26) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of peripheral lymph nodes (017.2)\(017.26) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.26''', NULL, + '(017.26) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(017.26) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.0''', NULL, + 'Tuberculosis of skin and subcutaneous cellular tissue (017.0)', 'Tuberculosis of skin and subcutaneous cellular tissue (017.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.00) Tuberculosis of skin and subcutaneous cellular tissue, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.00) Tuberculosis of skin and subcutaneous cellular tissue, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.00''', NULL, + '(017.00) Tuberculosis of skin and subcutaneous cellular tissue, unspecified', '(017.00) Tuberculosis of skin and subcutaneous cellular tissue, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.01) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.01) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.01''', NULL, + '(017.01) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination not done', '(017.01) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.02) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.02) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.02) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination unknown (at present''', NULL, + '(017.02) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination unknown (at present)', '(017.02) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.03) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.03) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.03) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli found (in sputum''', NULL, + '(017.03) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli found (in sputum) by microscopy', '(017.03) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.04) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.04) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.04) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found (in sputum''', NULL, + '(017.04) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(017.04) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.05) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.05) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.05''', NULL, + '(017.05) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(017.05) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.06) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\(017.06) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.06''', NULL, + '(017.06) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(017.06) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.7''', NULL, + 'Tuberculosis of spleen (017.7)', 'Tuberculosis of spleen (017.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.70) Tuberculosis of spleen, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.70) Tuberculosis of spleen, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.70''', NULL, + '(017.70) Tuberculosis of spleen, unspecified', '(017.70) Tuberculosis of spleen, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.71) Tuberculosis of spleen, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.71) Tuberculosis of spleen, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.71''', NULL, + '(017.71) Tuberculosis of spleen, bacteriological or histological examination not done', '(017.71) Tuberculosis of spleen, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.72) Tuberculosis of spleen, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.72) Tuberculosis of spleen, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.72) Tuberculosis of spleen, bacteriological or histological examination unknown (at present''', NULL, + '(017.72) Tuberculosis of spleen, bacteriological or histological examination unknown (at present)', '(017.72) Tuberculosis of spleen, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.73) Tuberculosis of spleen, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.73) Tuberculosis of spleen, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.73) Tuberculosis of spleen, tubercle bacilli found (in sputum''', NULL, + '(017.73) Tuberculosis of spleen, tubercle bacilli found (in sputum) by microscopy', '(017.73) Tuberculosis of spleen, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.74) Tuberculosis of spleen, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.74) Tuberculosis of spleen, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.74) Tuberculosis of spleen, tubercle bacilli not found (in sputum''', NULL, + '(017.74) Tuberculosis of spleen, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(017.74) Tuberculosis of spleen, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.75) Tuberculosis of spleen, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.75) Tuberculosis of spleen, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.75''', NULL, + '(017.75) Tuberculosis of spleen, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(017.75) Tuberculosis of spleen, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.76) Tuberculosis of spleen, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of spleen (017.7)\(017.76) Tuberculosis of spleen, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.76''', NULL, + '(017.76) Tuberculosis of spleen, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(017.76) Tuberculosis of spleen, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.5''', NULL, + 'Tuberculosis of thyroid gland (017.5)', 'Tuberculosis of thyroid gland (017.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.50) Tuberculosis of thyroid gland, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.50) Tuberculosis of thyroid gland, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.50''', NULL, + '(017.50) Tuberculosis of thyroid gland, unspecified', '(017.50) Tuberculosis of thyroid gland, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.51) Tuberculosis of thyroid gland, bacteriological or histological examination not done\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.51) Tuberculosis of thyroid gland, bacteriological or histological examination not done\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.51''', NULL, + '(017.51) Tuberculosis of thyroid gland, bacteriological or histological examination not done', '(017.51) Tuberculosis of thyroid gland, bacteriological or histological examination not done', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.52) Tuberculosis of thyroid gland, bacteriological or histological examination unknown (at present)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.52) Tuberculosis of thyroid gland, bacteriological or histological examination unknown (at present)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.52) Tuberculosis of thyroid gland, bacteriological or histological examination unknown (at present''', NULL, + '(017.52) Tuberculosis of thyroid gland, bacteriological or histological examination unknown (at present)', '(017.52) Tuberculosis of thyroid gland, bacteriological or histological examination unknown (at present)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.53) Tuberculosis of thyroid gland, tubercle bacilli found (in sputum) by microscopy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.53) Tuberculosis of thyroid gland, tubercle bacilli found (in sputum) by microscopy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.53) Tuberculosis of thyroid gland, tubercle bacilli found (in sputum''', NULL, + '(017.53) Tuberculosis of thyroid gland, tubercle bacilli found (in sputum) by microscopy', '(017.53) Tuberculosis of thyroid gland, tubercle bacilli found (in sputum) by microscopy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.54) Tuberculosis of thyroid gland, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.54) Tuberculosis of thyroid gland, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.54) Tuberculosis of thyroid gland, tubercle bacilli not found (in sputum''', NULL, + '(017.54) Tuberculosis of thyroid gland, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', '(017.54) Tuberculosis of thyroid gland, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.55) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.55) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.55''', NULL, + '(017.55) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', '(017.55) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.56) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Tuberculosis (010-018.99)\Tuberculosis of other organs (017)\Tuberculosis of thyroid gland (017.5)\(017.56) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''017.56''', NULL, + '(017.56) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', '(017.56) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''050'' AND ''059.99''', NULL, + 'Viral diseases generally accompanied by exanthem (050-059.99)', 'Viral diseases generally accompanied by exanthem (050-059.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''052''', NULL, + 'Chickenpox (052)', 'Chickenpox (052)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.0) Postvaricella encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.0) Postvaricella encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''052.0''', NULL, + '(052.0) Postvaricella encephalitis', '(052.0) Postvaricella encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.1) Varicella (hemorrhagic) pneumonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.1) Varicella (hemorrhagic) pneumonitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''052.1) Varicella (hemorrhagic''', NULL, + '(052.1) Varicella (hemorrhagic) pneumonitis', '(052.1) Varicella (hemorrhagic) pneumonitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.2) Postvaricella myelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.2) Postvaricella myelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''052.2''', NULL, + '(052.2) Postvaricella myelitis', '(052.2) Postvaricella myelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.7) Chickenpox with other specified complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.7) Chickenpox with other specified complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''052.7''', NULL, + '(052.7) Chickenpox with other specified complications', '(052.7) Chickenpox with other specified complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.8) Chickenpox with unspecified complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.8) Chickenpox with unspecified complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''052.8''', NULL, + '(052.8) Chickenpox with unspecified complication', '(052.8) Chickenpox with unspecified complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.9) Varicella without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Chickenpox (052)\(052.9) Varicella without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''052.9''', NULL, + '(052.9) Varicella without mention of complication', '(052.9) Varicella without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''051''', NULL, + 'Cowpox and paravaccinia (051)', 'Cowpox and paravaccinia (051)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\(051.1) Pseudocowpox\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\(051.1) Pseudocowpox\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''051.1''', NULL, + '(051.1) Pseudocowpox', '(051.1) Pseudocowpox', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\(051.2) Contagious pustular dermatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\(051.2) Contagious pustular dermatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''051.2''', NULL, + '(051.2) Contagious pustular dermatitis', '(051.2) Contagious pustular dermatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\(051.9) Paravaccinia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\(051.9) Paravaccinia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''051.9''', NULL, + '(051.9) Paravaccinia, unspecified', '(051.9) Paravaccinia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\Cowpox and vaccinia not from vaccination (051.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Cowpox and paravaccinia (051)\Cowpox and vaccinia not from vaccination (051.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''051.0''', NULL, + 'Cowpox and vaccinia not from vaccination (051.0)', 'Cowpox and vaccinia not from vaccination (051.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054''', NULL, + 'Herpes simplex (054)', 'Herpes simplex (054)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.0) Eczema herpeticum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.0) Eczema herpeticum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.0''', NULL, + '(054.0) Eczema herpeticum', '(054.0) Eczema herpeticum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.2) Herpetic gingivostomatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.2) Herpetic gingivostomatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.2''', NULL, + '(054.2) Herpetic gingivostomatitis', '(054.2) Herpetic gingivostomatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.3) Herpetic meningoencephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.3) Herpetic meningoencephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.3''', NULL, + '(054.3) Herpetic meningoencephalitis', '(054.3) Herpetic meningoencephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.5) Herpetic septicemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.5) Herpetic septicemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.5''', NULL, + '(054.5) Herpetic septicemia', '(054.5) Herpetic septicemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.6) Herpetic whitlow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.6) Herpetic whitlow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.6''', NULL, + '(054.6) Herpetic whitlow', '(054.6) Herpetic whitlow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.8) Herpes simplex with unspecified complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.8) Herpes simplex with unspecified complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.8''', NULL, + '(054.8) Herpes simplex with unspecified complication', '(054.8) Herpes simplex with unspecified complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.9) Herpes simplex without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\(054.9) Herpes simplex without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.9''', NULL, + '(054.9) Herpes simplex without mention of complication', '(054.9) Herpes simplex without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.1''', NULL, + 'Genital herpes (054.1)', 'Genital herpes (054.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\(054.10) Genital herpes, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\(054.10) Genital herpes, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.10''', NULL, + '(054.10) Genital herpes, unspecified', '(054.10) Genital herpes, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\(054.11) Herpetic vulvovaginitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\(054.11) Herpetic vulvovaginitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.11''', NULL, + '(054.11) Herpetic vulvovaginitis', '(054.11) Herpetic vulvovaginitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\(054.12) Herpetic ulceration of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\(054.12) Herpetic ulceration of vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.12''', NULL, + '(054.12) Herpetic ulceration of vulva', '(054.12) Herpetic ulceration of vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\(054.13) Herpetic infection of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\(054.13) Herpetic infection of penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.13''', NULL, + '(054.13) Herpetic infection of penis', '(054.13) Herpetic infection of penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\(054.19) Other genital herpes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Genital herpes (054.1)\(054.19) Other genital herpes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.19''', NULL, + '(054.19) Other genital herpes', '(054.19) Other genital herpes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.4''', NULL, + 'Herpes simplex with ophthalmic complications (054.4)', 'Herpes simplex with ophthalmic complications (054.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.40) Herpes simplex with unspecified ophthalmic complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.40) Herpes simplex with unspecified ophthalmic complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.40''', NULL, + '(054.40) Herpes simplex with unspecified ophthalmic complication', '(054.40) Herpes simplex with unspecified ophthalmic complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.41) Herpes simplex dermatitis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.41) Herpes simplex dermatitis of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.41''', NULL, + '(054.41) Herpes simplex dermatitis of eyelid', '(054.41) Herpes simplex dermatitis of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.42) Dendritic keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.42) Dendritic keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.42''', NULL, + '(054.42) Dendritic keratitis', '(054.42) Dendritic keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.43) Herpes simplex disciform keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.43) Herpes simplex disciform keratitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.43''', NULL, + '(054.43) Herpes simplex disciform keratitis', '(054.43) Herpes simplex disciform keratitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.44) Herpes simplex iridocyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.44) Herpes simplex iridocyclitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.44''', NULL, + '(054.44) Herpes simplex iridocyclitis', '(054.44) Herpes simplex iridocyclitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.49) Herpes simplex with other ophthalmic complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with ophthalmic complications (054.4)\(054.49) Herpes simplex with other ophthalmic complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.49''', NULL, + '(054.49) Herpes simplex with other ophthalmic complications', '(054.49) Herpes simplex with other ophthalmic complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.7''', NULL, + 'Herpes simplex with other specified complications (054.7)', 'Herpes simplex with other specified complications (054.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\(054.71) Visceral herpes simplex\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\(054.71) Visceral herpes simplex\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.71''', NULL, + '(054.71) Visceral herpes simplex', '(054.71) Visceral herpes simplex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\(054.72) Herpes simplex meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\(054.72) Herpes simplex meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.72''', NULL, + '(054.72) Herpes simplex meningitis', '(054.72) Herpes simplex meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\(054.73) Herpes simplex otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\(054.73) Herpes simplex otitis externa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.73''', NULL, + '(054.73) Herpes simplex otitis externa', '(054.73) Herpes simplex otitis externa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\(054.74) Herpes simplex myelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\(054.74) Herpes simplex myelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.74''', NULL, + '(054.74) Herpes simplex myelitis', '(054.74) Herpes simplex myelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\(054.79) Herpes simplex with other specified complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes simplex (054)\Herpes simplex with other specified complications (054.7)\(054.79) Herpes simplex with other specified complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''054.79''', NULL, + '(054.79) Herpes simplex with other specified complications', '(054.79) Herpes simplex with other specified complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053''', NULL, + 'Herpes zoster (053)', 'Herpes zoster (053)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\(053.0) Herpes zoster with meningitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\(053.0) Herpes zoster with meningitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.0''', NULL, + '(053.0) Herpes zoster with meningitis', '(053.0) Herpes zoster with meningitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\(053.8) Herpes zoster with unspecified complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\(053.8) Herpes zoster with unspecified complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.8''', NULL, + '(053.8) Herpes zoster with unspecified complication', '(053.8) Herpes zoster with unspecified complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\(053.9) Herpes zoster without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\(053.9) Herpes zoster without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.9''', NULL, + '(053.9) Herpes zoster without mention of complication', '(053.9) Herpes zoster without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.2''', NULL, + 'Herpes zoster with ophthalmic complications (053.2)', 'Herpes zoster with ophthalmic complications (053.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\(053.20) Herpes zoster dermatitis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\(053.20) Herpes zoster dermatitis of eyelid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.20''', NULL, + '(053.20) Herpes zoster dermatitis of eyelid', '(053.20) Herpes zoster dermatitis of eyelid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\(053.21) Herpes zoster keratoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\(053.21) Herpes zoster keratoconjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.21''', NULL, + '(053.21) Herpes zoster keratoconjunctivitis', '(053.21) Herpes zoster keratoconjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\(053.22) Herpes zoster iridocyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\(053.22) Herpes zoster iridocyclitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.22''', NULL, + '(053.22) Herpes zoster iridocyclitis', '(053.22) Herpes zoster iridocyclitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\(053.29) Herpes zoster with other ophthalmic complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with ophthalmic complications (053.2)\(053.29) Herpes zoster with other ophthalmic complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.29''', NULL, + '(053.29) Herpes zoster with other ophthalmic complications', '(053.29) Herpes zoster with other ophthalmic complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.1''', NULL, + 'Herpes zoster with other nervous system complications (053.1)', 'Herpes zoster with other nervous system complications (053.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.10) Herpes zoster with unspecified nervous system complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.10) Herpes zoster with unspecified nervous system complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.10''', NULL, + '(053.10) Herpes zoster with unspecified nervous system complication', '(053.10) Herpes zoster with unspecified nervous system complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.11) Geniculate herpes zoster\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.11) Geniculate herpes zoster\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.11''', NULL, + '(053.11) Geniculate herpes zoster', '(053.11) Geniculate herpes zoster', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.12) Postherpetic trigeminal neuralgia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.12) Postherpetic trigeminal neuralgia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.12''', NULL, + '(053.12) Postherpetic trigeminal neuralgia', '(053.12) Postherpetic trigeminal neuralgia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.13) Postherpetic polyneuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.13) Postherpetic polyneuropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.13''', NULL, + '(053.13) Postherpetic polyneuropathy', '(053.13) Postherpetic polyneuropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.14) Herpes zoster myelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.14) Herpes zoster myelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.14''', NULL, + '(053.14) Herpes zoster myelitis', '(053.14) Herpes zoster myelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.19) Herpes zoster with other nervous system complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other nervous system complications (053.1)\(053.19) Herpes zoster with other nervous system complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.19''', NULL, + '(053.19) Herpes zoster with other nervous system complications', '(053.19) Herpes zoster with other nervous system complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other specified complications (053.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other specified complications (053.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.7''', NULL, + 'Herpes zoster with other specified complications (053.7)', 'Herpes zoster with other specified complications (053.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other specified complications (053.7)\(053.71) Otitis externa due to herpes zoster\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other specified complications (053.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other specified complications (053.7)\(053.71) Otitis externa due to herpes zoster\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.71''', NULL, + '(053.71) Otitis externa due to herpes zoster', '(053.71) Otitis externa due to herpes zoster', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other specified complications (053.7)\(053.79) Herpes zoster with other specified complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other specified complications (053.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Herpes zoster (053)\Herpes zoster with other specified complications (053.7)\(053.79) Herpes zoster with other specified complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''053.79''', NULL, + '(053.79) Herpes zoster with other specified complications', '(053.79) Herpes zoster with other specified complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''055''', NULL, + 'Measles (055)', 'Measles (055)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\(055.0) Postmeasles encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\(055.0) Postmeasles encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''055.0''', NULL, + '(055.0) Postmeasles encephalitis', '(055.0) Postmeasles encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\(055.1) Postmeasles pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\(055.1) Postmeasles pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''055.1''', NULL, + '(055.1) Postmeasles pneumonia', '(055.1) Postmeasles pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\(055.2) Postmeasles otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\(055.2) Postmeasles otitis media\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''055.2''', NULL, + '(055.2) Postmeasles otitis media', '(055.2) Postmeasles otitis media', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\(055.8) Measles with unspecified complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\(055.8) Measles with unspecified complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''055.8''', NULL, + '(055.8) Measles with unspecified complication', '(055.8) Measles with unspecified complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\(055.9) Measles without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\(055.9) Measles without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''055.9''', NULL, + '(055.9) Measles without mention of complication', '(055.9) Measles without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\Measles with other specified complications (055.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\Measles with other specified complications (055.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''055.7''', NULL, + 'Measles with other specified complications (055.7)', 'Measles with other specified complications (055.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\Measles with other specified complications (055.7)\(055.71) Measles keratoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\Measles with other specified complications (055.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\Measles with other specified complications (055.7)\(055.71) Measles keratoconjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''055.71''', NULL, + '(055.71) Measles keratoconjunctivitis', '(055.71) Measles keratoconjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\Measles with other specified complications (055.7)\(055.79) Measles with other specified complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\Measles with other specified complications (055.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Measles (055)\Measles with other specified complications (055.7)\(055.79) Measles with other specified complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''055.79''', NULL, + '(055.79) Measles with other specified complications', '(055.79) Measles with other specified complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058''', NULL, + 'Other human herpesvirus (058)', 'Other human herpesvirus (058)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus encephalitis (058.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus encephalitis (058.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058.2''', NULL, + 'Other human herpesvirus encephalitis (058.2)', 'Other human herpesvirus encephalitis (058.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus encephalitis (058.2)\(058.21) Human herpesvirus 6 encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus encephalitis (058.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus encephalitis (058.2)\(058.21) Human herpesvirus 6 encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058.21''', NULL, + '(058.21) Human herpesvirus 6 encephalitis', '(058.21) Human herpesvirus 6 encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus encephalitis (058.2)\(058.29) Other human herpesvirus encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus encephalitis (058.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus encephalitis (058.2)\(058.29) Other human herpesvirus encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058.29''', NULL, + '(058.29) Other human herpesvirus encephalitis', '(058.29) Other human herpesvirus encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus infections (058.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus infections (058.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058.8''', NULL, + 'Other human herpesvirus infections (058.8)', 'Other human herpesvirus infections (058.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus infections (058.8)\(058.81) Human herpesvirus 6 infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus infections (058.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus infections (058.8)\(058.81) Human herpesvirus 6 infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058.81''', NULL, + '(058.81) Human herpesvirus 6 infection', '(058.81) Human herpesvirus 6 infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus infections (058.8)\(058.82) Human herpesvirus 7 infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus infections (058.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus infections (058.8)\(058.82) Human herpesvirus 7 infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058.82''', NULL, + '(058.82) Human herpesvirus 7 infection', '(058.82) Human herpesvirus 7 infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus infections (058.8)\(058.89) Other human herpesvirus infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus infections (058.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Other human herpesvirus infections (058.8)\(058.89) Other human herpesvirus infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058.89''', NULL, + '(058.89) Other human herpesvirus infection', '(058.89) Other human herpesvirus infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Roseola infantum (058.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Roseola infantum (058.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058.1''', NULL, + 'Roseola infantum (058.1)', 'Roseola infantum (058.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Roseola infantum (058.1)\(058.10) Roseola infantum, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Roseola infantum (058.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Roseola infantum (058.1)\(058.10) Roseola infantum, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058.10''', NULL, + '(058.10) Roseola infantum, unspecified', '(058.10) Roseola infantum, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Roseola infantum (058.1)\(058.11) Roseola infantum due to human herpesvirus 6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Roseola infantum (058.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Roseola infantum (058.1)\(058.11) Roseola infantum due to human herpesvirus 6\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058.11''', NULL, + '(058.11) Roseola infantum due to human herpesvirus 6', '(058.11) Roseola infantum due to human herpesvirus 6', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Roseola infantum (058.1)\(058.12) Roseola infantum due to human herpesvirus 7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Roseola infantum (058.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other human herpesvirus (058)\Roseola infantum (058.1)\(058.12) Roseola infantum due to human herpesvirus 7\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''058.12''', NULL, + '(058.12) Roseola infantum due to human herpesvirus 7', '(058.12) Roseola infantum due to human herpesvirus 7', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other viral exanthemata (057)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other viral exanthemata (057)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''057''', NULL, + 'Other viral exanthemata (057)', 'Other viral exanthemata (057)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other viral exanthemata (057)\(057.0) Erythema infectiosum (fifth disease)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other viral exanthemata (057)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other viral exanthemata (057)\(057.0) Erythema infectiosum (fifth disease)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''057.0) Erythema infectiosum (fifth disease''', NULL, + '(057.0) Erythema infectiosum (fifth disease)', '(057.0) Erythema infectiosum (fifth disease)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other viral exanthemata (057)\(057.8) Other specified viral exanthemata\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other viral exanthemata (057)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other viral exanthemata (057)\(057.8) Other specified viral exanthemata\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''057.8''', NULL, + '(057.8) Other specified viral exanthemata', '(057.8) Other specified viral exanthemata', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other viral exanthemata (057)\(057.9) Viral exanthem, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other viral exanthemata (057)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Other viral exanthemata (057)\(057.9) Viral exanthem, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''057.9''', NULL, + '(057.9) Viral exanthem, unspecified', '(057.9) Viral exanthem, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''056''', NULL, + 'Rubella (056)', 'Rubella (056)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\(056.8) Rubella with unspecified complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\(056.8) Rubella with unspecified complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''056.8''', NULL, + '(056.8) Rubella with unspecified complications', '(056.8) Rubella with unspecified complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\(056.9) Rubella without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\(056.9) Rubella without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''056.9''', NULL, + '(056.9) Rubella without mention of complication', '(056.9) Rubella without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with neurological complications (056.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with neurological complications (056.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''056.0''', NULL, + 'Rubella with neurological complications (056.0)', 'Rubella with neurological complications (056.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with neurological complications (056.0)\(056.00) Rubella with unspecified neurological complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with neurological complications (056.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with neurological complications (056.0)\(056.00) Rubella with unspecified neurological complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''056.00''', NULL, + '(056.00) Rubella with unspecified neurological complication', '(056.00) Rubella with unspecified neurological complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with neurological complications (056.0)\(056.01) Encephalomyelitis due to rubella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with neurological complications (056.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with neurological complications (056.0)\(056.01) Encephalomyelitis due to rubella\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''056.01''', NULL, + '(056.01) Encephalomyelitis due to rubella', '(056.01) Encephalomyelitis due to rubella', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with neurological complications (056.0)\(056.09) Rubella with other neurological complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with neurological complications (056.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with neurological complications (056.0)\(056.09) Rubella with other neurological complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''056.09''', NULL, + '(056.09) Rubella with other neurological complications', '(056.09) Rubella with other neurological complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with other specified complications (056.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with other specified complications (056.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''056.7''', NULL, + 'Rubella with other specified complications (056.7)', 'Rubella with other specified complications (056.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with other specified complications (056.7)\(056.71) Arthritis due to rubella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with other specified complications (056.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with other specified complications (056.7)\(056.71) Arthritis due to rubella\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''056.71''', NULL, + '(056.71) Arthritis due to rubella', '(056.71) Arthritis due to rubella', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with other specified complications (056.7)\(056.79) Rubella with other specified complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with other specified complications (056.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Rubella (056)\Rubella with other specified complications (056.7)\(056.79) Rubella with other specified complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''056.79''', NULL, + '(056.79) Rubella with other specified complications', '(056.79) Rubella with other specified complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''050''', NULL, + 'Smallpox (050)', 'Smallpox (050)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\(050.0) Variola major\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\(050.0) Variola major\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''050.0''', NULL, + '(050.0) Variola major', '(050.0) Variola major', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\(050.1) Alastrim\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\(050.1) Alastrim\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''050.1''', NULL, + '(050.1) Alastrim', '(050.1) Alastrim', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\(050.2) Modified smallpox\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\(050.2) Modified smallpox\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''050.2''', NULL, + '(050.2) Modified smallpox', '(050.2) Modified smallpox', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\(050.9) Smallpox, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Viral diseases generally accompanied by exanthem (050-059.99)\Smallpox (050)\(050.9) Smallpox, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''050.9''', NULL, + '(050.9) Smallpox, unspecified', '(050.9) Smallpox, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''020'' AND ''027.99''', NULL, + 'Zoonotic bacterial diseases (020-027.99)', 'Zoonotic bacterial diseases (020-027.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\(024) Glanders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\(024) Glanders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''024''', NULL, + '(024) Glanders', '(024) Glanders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\(025) Melioidosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\(025) Melioidosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''025''', NULL, + '(025) Melioidosis', '(025) Melioidosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''022''', NULL, + 'Anthrax (022)', 'Anthrax (022)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.0) Cutaneous anthrax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.0) Cutaneous anthrax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''022.0''', NULL, + '(022.0) Cutaneous anthrax', '(022.0) Cutaneous anthrax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.1) Pulmonary anthrax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.1) Pulmonary anthrax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''022.1''', NULL, + '(022.1) Pulmonary anthrax', '(022.1) Pulmonary anthrax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.2) Gastrointestinal anthrax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.2) Gastrointestinal anthrax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''022.2''', NULL, + '(022.2) Gastrointestinal anthrax', '(022.2) Gastrointestinal anthrax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.3) Anthrax septicemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.3) Anthrax septicemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''022.3''', NULL, + '(022.3) Anthrax septicemia', '(022.3) Anthrax septicemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.8) Other specified manifestations of anthrax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.8) Other specified manifestations of anthrax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''022.8''', NULL, + '(022.8) Other specified manifestations of anthrax', '(022.8) Other specified manifestations of anthrax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.9) Anthrax, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Anthrax (022)\(022.9) Anthrax, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''022.9''', NULL, + '(022.9) Anthrax, unspecified', '(022.9) Anthrax, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''023''', NULL, + 'Brucellosis (023)', 'Brucellosis (023)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.0) Brucella melitensis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.0) Brucella melitensis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''023.0''', NULL, + '(023.0) Brucella melitensis', '(023.0) Brucella melitensis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.1) Brucella abortus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.1) Brucella abortus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''023.1''', NULL, + '(023.1) Brucella abortus', '(023.1) Brucella abortus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.2) Brucella suis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.2) Brucella suis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''023.2''', NULL, + '(023.2) Brucella suis', '(023.2) Brucella suis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.3) Brucella canis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.3) Brucella canis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''023.3''', NULL, + '(023.3) Brucella canis', '(023.3) Brucella canis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.8) Other brucellosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.8) Other brucellosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''023.8''', NULL, + '(023.8) Other brucellosis', '(023.8) Other brucellosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.9) Brucellosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Brucellosis (023)\(023.9) Brucellosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''023.9''', NULL, + '(023.9) Brucellosis, unspecified', '(023.9) Brucellosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''027''', NULL, + 'Other zoonotic bacterial diseases (027)', 'Other zoonotic bacterial diseases (027)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\(027.0) Listeriosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\(027.0) Listeriosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''027.0''', NULL, + '(027.0) Listeriosis', '(027.0) Listeriosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\(027.1) Erysipelothrix infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\(027.1) Erysipelothrix infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''027.1''', NULL, + '(027.1) Erysipelothrix infection', '(027.1) Erysipelothrix infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\(027.2) Pasteurellosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\(027.2) Pasteurellosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''027.2''', NULL, + '(027.2) Pasteurellosis', '(027.2) Pasteurellosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\(027.8) Other specified zoonotic bacterial diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\(027.8) Other specified zoonotic bacterial diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''027.8''', NULL, + '(027.8) Other specified zoonotic bacterial diseases', '(027.8) Other specified zoonotic bacterial diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\(027.9) Unspecified zoonotic bacterial disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Other zoonotic bacterial diseases (027)\(027.9) Unspecified zoonotic bacterial disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''027.9''', NULL, + '(027.9) Unspecified zoonotic bacterial disease', '(027.9) Unspecified zoonotic bacterial disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''020''', NULL, + 'Plague (020)', 'Plague (020)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.0) Bubonic plague\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.0) Bubonic plague\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''020.0''', NULL, + '(020.0) Bubonic plague', '(020.0) Bubonic plague', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.1) Cellulocutaneous plague\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.1) Cellulocutaneous plague\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''020.1''', NULL, + '(020.1) Cellulocutaneous plague', '(020.1) Cellulocutaneous plague', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.2) Septicemic plague\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.2) Septicemic plague\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''020.2''', NULL, + '(020.2) Septicemic plague', '(020.2) Septicemic plague', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.3) Primary pneumonic plague\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.3) Primary pneumonic plague\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''020.3''', NULL, + '(020.3) Primary pneumonic plague', '(020.3) Primary pneumonic plague', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.4) Secondary pneumonic plague\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.4) Secondary pneumonic plague\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''020.4''', NULL, + '(020.4) Secondary pneumonic plague', '(020.4) Secondary pneumonic plague', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.5) Pneumonic plague, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.5) Pneumonic plague, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''020.5''', NULL, + '(020.5) Pneumonic plague, unspecified', '(020.5) Pneumonic plague, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.8) Other specified types of plague\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.8) Other specified types of plague\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''020.8''', NULL, + '(020.8) Other specified types of plague', '(020.8) Other specified types of plague', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.9) Plague, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Plague (020)\(020.9) Plague, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''020.9''', NULL, + '(020.9) Plague, unspecified', '(020.9) Plague, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Rat-bite fever (026)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Rat-bite fever (026)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''026''', NULL, + 'Rat-bite fever (026)', 'Rat-bite fever (026)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Rat-bite fever (026)\(026.0) Spirillary fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Rat-bite fever (026)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Rat-bite fever (026)\(026.0) Spirillary fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''026.0''', NULL, + '(026.0) Spirillary fever', '(026.0) Spirillary fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Rat-bite fever (026)\(026.1) Streptobacillary fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Rat-bite fever (026)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Rat-bite fever (026)\(026.1) Streptobacillary fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''026.1''', NULL, + '(026.1) Streptobacillary fever', '(026.1) Streptobacillary fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Rat-bite fever (026)\(026.9) Unspecified rat-bite fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Rat-bite fever (026)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Rat-bite fever (026)\(026.9) Unspecified rat-bite fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''026.9''', NULL, + '(026.9) Unspecified rat-bite fever', '(026.9) Unspecified rat-bite fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''021''', NULL, + 'Tularemia (021)', 'Tularemia (021)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.0) Ulceroglandular tularemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.0) Ulceroglandular tularemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''021.0''', NULL, + '(021.0) Ulceroglandular tularemia', '(021.0) Ulceroglandular tularemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.1) Enteric tularemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.1) Enteric tularemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''021.1''', NULL, + '(021.1) Enteric tularemia', '(021.1) Enteric tularemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.2) Pulmonary tularemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.2) Pulmonary tularemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''021.2''', NULL, + '(021.2) Pulmonary tularemia', '(021.2) Pulmonary tularemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.3) Oculoglandular tularemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.3) Oculoglandular tularemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''021.3''', NULL, + '(021.3) Oculoglandular tularemia', '(021.3) Oculoglandular tularemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.8) Other specified tularemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.8) Other specified tularemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''021.8''', NULL, + '(021.8) Other specified tularemia', '(021.8) Other specified tularemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.9) Unspecified tularemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Infectious and parasitic diseases (001-139.99)\Zoonotic bacterial diseases (020-027.99)\Tularemia (021)\(021.9) Unspecified tularemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''021.9''', NULL, + '(021.9) Unspecified tularemia', '(021.9) Unspecified tularemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''800'' AND ''999.99''', NULL, + 'Injury and poisoning (800-999.99)', 'Injury and poisoning (800-999.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''940'' AND ''949.99''', NULL, + 'Burns (940-949.99)', 'Burns (940-949.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''940''', NULL, + 'Burn confined to eye and adnexa (940)', 'Burn confined to eye and adnexa (940)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.0) Chemical burn of eyelids and periocular area\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.0) Chemical burn of eyelids and periocular area\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''940.0''', NULL, + '(940.0) Chemical burn of eyelids and periocular area', '(940.0) Chemical burn of eyelids and periocular area', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.1) Other burns of eyelids and periocular area\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.1) Other burns of eyelids and periocular area\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''940.1''', NULL, + '(940.1) Other burns of eyelids and periocular area', '(940.1) Other burns of eyelids and periocular area', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.2) Alkaline chemical burn of cornea and conjunctival sac\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.2) Alkaline chemical burn of cornea and conjunctival sac\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''940.2''', NULL, + '(940.2) Alkaline chemical burn of cornea and conjunctival sac', '(940.2) Alkaline chemical burn of cornea and conjunctival sac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.3) Acid chemical burn of cornea and conjunctival sac\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.3) Acid chemical burn of cornea and conjunctival sac\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''940.3''', NULL, + '(940.3) Acid chemical burn of cornea and conjunctival sac', '(940.3) Acid chemical burn of cornea and conjunctival sac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.4) Other burn of cornea and conjunctival sac\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.4) Other burn of cornea and conjunctival sac\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''940.4''', NULL, + '(940.4) Other burn of cornea and conjunctival sac', '(940.4) Other burn of cornea and conjunctival sac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.5) Burn with resulting rupture and destruction of eyeball\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.5) Burn with resulting rupture and destruction of eyeball\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''940.5''', NULL, + '(940.5) Burn with resulting rupture and destruction of eyeball', '(940.5) Burn with resulting rupture and destruction of eyeball', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.9) Unspecified burn of eye and adnexa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn confined to eye and adnexa (940)\(940.9) Unspecified burn of eye and adnexa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''940.9''', NULL, + '(940.9) Unspecified burn of eye and adnexa', '(940.9) Unspecified burn of eye and adnexa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941''', NULL, + 'Burn of face, head, and neck (941)', 'Burn of face, head, and neck (941)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.2''', NULL, + 'Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)', 'Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.20) Blisters, epidermal loss [second degree] of face and head, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.20) Blisters, epidermal loss [second degree] of face and head, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.20''', NULL, + '(941.20) Blisters, epidermal loss [second degree] of face and head, unspecified site', '(941.20) Blisters, epidermal loss [second degree] of face and head, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.21) Blisters, epidermal loss [second degree] of ear [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.21) Blisters, epidermal loss [second degree] of ear [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.21''', NULL, + '(941.21) Blisters, epidermal loss [second degree] of ear [any part]', '(941.21) Blisters, epidermal loss [second degree] of ear [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.22) Blisters, epidermal loss [second degree] of eye (with other parts of face, head, and neck)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.22) Blisters, epidermal loss [second degree] of eye (with other parts of face, head, and neck)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.22) Blisters, epidermal loss [second degree] of eye (with other parts of face, head, and neck''', NULL, + '(941.22) Blisters, epidermal loss [second degree] of eye (with other parts of face, head, and neck)', '(941.22) Blisters, epidermal loss [second degree] of eye (with other parts of face, head, and neck)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.23) Blisters, epidermal loss [second degree] of lip(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.23) Blisters, epidermal loss [second degree] of lip(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.23) Blisters, epidermal loss [second degree] of lip(s''', NULL, + '(941.23) Blisters, epidermal loss [second degree] of lip(s)', '(941.23) Blisters, epidermal loss [second degree] of lip(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.24) Blisters, epidermal loss [second degree] of chin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.24) Blisters, epidermal loss [second degree] of chin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.24''', NULL, + '(941.24) Blisters, epidermal loss [second degree] of chin', '(941.24) Blisters, epidermal loss [second degree] of chin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.25) Blisters, epidermal loss [second degree] of nose (septum)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.25) Blisters, epidermal loss [second degree] of nose (septum)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.25) Blisters, epidermal loss [second degree] of nose (septum''', NULL, + '(941.25) Blisters, epidermal loss [second degree] of nose (septum)', '(941.25) Blisters, epidermal loss [second degree] of nose (septum)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.26) Blisters, epidermal loss [second degree] of scalp [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.26) Blisters, epidermal loss [second degree] of scalp [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.26''', NULL, + '(941.26) Blisters, epidermal loss [second degree] of scalp [any part]', '(941.26) Blisters, epidermal loss [second degree] of scalp [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.27) Blisters, epidermal loss [second degree] of forehead and cheek\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.27) Blisters, epidermal loss [second degree] of forehead and cheek\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.27''', NULL, + '(941.27) Blisters, epidermal loss [second degree] of forehead and cheek', '(941.27) Blisters, epidermal loss [second degree] of forehead and cheek', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.28) Blisters, epidermal loss [second degree] of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.28) Blisters, epidermal loss [second degree] of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.28''', NULL, + '(941.28) Blisters, epidermal loss [second degree] of neck', '(941.28) Blisters, epidermal loss [second degree] of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.29) Blisters, epidermal loss [second degree] of multiple sites [except with eye] of face, head, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\(941.29) Blisters, epidermal loss [second degree] of multiple sites [except with eye] of face, head, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.29''', NULL, + '(941.29) Blisters, epidermal loss [second degree] of multiple sites [except with eye] of face, head, and neck', '(941.29) Blisters, epidermal loss [second degree] of multiple sites [except with eye] of face, head, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.0''', NULL, + 'Burn of face, head, and neck, unspecified degree (941.0)', 'Burn of face, head, and neck, unspecified degree (941.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.00) Burn of unspecified degree of face and head, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.00) Burn of unspecified degree of face and head, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.00''', NULL, + '(941.00) Burn of unspecified degree of face and head, unspecified site', '(941.00) Burn of unspecified degree of face and head, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.01) Burn of unspecified degree of ear [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.01) Burn of unspecified degree of ear [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.01''', NULL, + '(941.01) Burn of unspecified degree of ear [any part]', '(941.01) Burn of unspecified degree of ear [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.02) Burn of unspecified degree of eye (with other parts of face, head, and neck)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.02) Burn of unspecified degree of eye (with other parts of face, head, and neck)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.02) Burn of unspecified degree of eye (with other parts of face, head, and neck''', NULL, + '(941.02) Burn of unspecified degree of eye (with other parts of face, head, and neck)', '(941.02) Burn of unspecified degree of eye (with other parts of face, head, and neck)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.03) Burn of unspecified degree of lip(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.03) Burn of unspecified degree of lip(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.03) Burn of unspecified degree of lip(s''', NULL, + '(941.03) Burn of unspecified degree of lip(s)', '(941.03) Burn of unspecified degree of lip(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.04) Burn of unspecified degree of chin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.04) Burn of unspecified degree of chin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.04''', NULL, + '(941.04) Burn of unspecified degree of chin', '(941.04) Burn of unspecified degree of chin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.05) Burn of unspecified degree of nose (septum)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.05) Burn of unspecified degree of nose (septum)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.05) Burn of unspecified degree of nose (septum''', NULL, + '(941.05) Burn of unspecified degree of nose (septum)', '(941.05) Burn of unspecified degree of nose (septum)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.06) Burn of unspecified degree of scalp [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.06) Burn of unspecified degree of scalp [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.06''', NULL, + '(941.06) Burn of unspecified degree of scalp [any part]', '(941.06) Burn of unspecified degree of scalp [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.07) Burn of unspecified degree of forehead and cheek\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.07) Burn of unspecified degree of forehead and cheek\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.07''', NULL, + '(941.07) Burn of unspecified degree of forehead and cheek', '(941.07) Burn of unspecified degree of forehead and cheek', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.08) Burn of unspecified degree of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.08) Burn of unspecified degree of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.08''', NULL, + '(941.08) Burn of unspecified degree of neck', '(941.08) Burn of unspecified degree of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.09) Burn of unspecified degree of multiple sites [except with eye] of face, head, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Burn of face, head, and neck, unspecified degree (941.0)\(941.09) Burn of unspecified degree of multiple sites [except with eye] of face, head, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.09''', NULL, + '(941.09) Burn of unspecified degree of multiple sites [except with eye] of face, head, and neck', '(941.09) Burn of unspecified degree of multiple sites [except with eye] of face, head, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.5''', NULL, + 'Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)', 'Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of face and head, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of face and head, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.50''', NULL, + '(941.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of face and head, unspecified site', '(941.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of face and head, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ear [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ear [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.51''', NULL, + '(941.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ear [any part]', '(941.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ear [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of eye (with other parts of face, head, and neck)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of eye (with other parts of face, head, and neck)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of eye (with other parts of face, head, and neck''', NULL, + '(941.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of eye (with other parts of face, head, and neck)', '(941.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of eye (with other parts of face, head, and neck)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lip(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lip(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lip(s''', NULL, + '(941.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lip(s)', '(941.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lip(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.54''', NULL, + '(941.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chin', '(941.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of nose (septum)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of nose (septum)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of nose (septum''', NULL, + '(941.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of nose (septum)', '(941.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of nose (septum)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scalp [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scalp [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.56''', NULL, + '(941.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scalp [any part]', '(941.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scalp [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of forehead and cheek\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of forehead and cheek\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.57''', NULL, + '(941.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of forehead and cheek', '(941.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of forehead and cheek', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.58''', NULL, + '(941.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of neck', '(941.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites [except with eye] of face, head, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\(941.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites [except with eye] of face, head, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.59''', NULL, + '(941.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites [except with eye] of face, head, and neck', '(941.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites [except with eye] of face, head, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.4''', NULL, + 'Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)', 'Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, face and head, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, face and head, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.40''', NULL, + '(941.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, face and head, unspecified site', '(941.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, face and head, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, ear [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, ear [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.41) Deep necrosis of underlying tissues [deep third degree]''', NULL, + '(941.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, ear [any part]', '(941.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, ear [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of eye (with other parts of face, head, and neck)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of eye (with other parts of face, head, and neck)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of eye (with other parts of face, head, and neck''', NULL, + '(941.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of eye (with other parts of face, head, and neck)', '(941.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of eye (with other parts of face, head, and neck)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lip(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lip(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lip(s''', NULL, + '(941.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lip(s)', '(941.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lip(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.44''', NULL, + '(941.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chin', '(941.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of nose (septum)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of nose (septum)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of nose (septum''', NULL, + '(941.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of nose (septum)', '(941.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of nose (septum)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part of scalp [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part of scalp [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.46''', NULL, + '(941.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part of scalp [any part]', '(941.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part of scalp [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forehead and cheek\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forehead and cheek\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.47''', NULL, + '(941.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forehead and cheek', '(941.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forehead and cheek', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.48''', NULL, + '(941.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of neck', '(941.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites [except with eye] of face, head, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\(941.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites [except with eye] of face, head, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.49''', NULL, + '(941.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites [except with eye] of face, head, and neck', '(941.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites [except with eye] of face, head, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.1''', NULL, + 'Erythema due to burn [first degree] of face, head, and neck (941.1)', 'Erythema due to burn [first degree] of face, head, and neck (941.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.10) Erythema [first degree] of face and head, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.10) Erythema [first degree] of face and head, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.10''', NULL, + '(941.10) Erythema [first degree] of face and head, unspecified site', '(941.10) Erythema [first degree] of face and head, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.11) Erythema [first degree] of ear [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.11) Erythema [first degree] of ear [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.11''', NULL, + '(941.11) Erythema [first degree] of ear [any part]', '(941.11) Erythema [first degree] of ear [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.12) Erythema [first degree] of eye (with other parts face, head, and neck)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.12) Erythema [first degree] of eye (with other parts face, head, and neck)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.12) Erythema [first degree] of eye (with other parts face, head, and neck''', NULL, + '(941.12) Erythema [first degree] of eye (with other parts face, head, and neck)', '(941.12) Erythema [first degree] of eye (with other parts face, head, and neck)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.13) Erythema [first degree] of lip(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.13) Erythema [first degree] of lip(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.13) Erythema [first degree] of lip(s''', NULL, + '(941.13) Erythema [first degree] of lip(s)', '(941.13) Erythema [first degree] of lip(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.14) Erythema [first degree] of chin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.14) Erythema [first degree] of chin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.14''', NULL, + '(941.14) Erythema [first degree] of chin', '(941.14) Erythema [first degree] of chin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.15) Erythema [first degree] of nose (septum)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.15) Erythema [first degree] of nose (septum)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.15) Erythema [first degree] of nose (septum''', NULL, + '(941.15) Erythema [first degree] of nose (septum)', '(941.15) Erythema [first degree] of nose (septum)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.16) Erythema [first degree] of scalp [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.16) Erythema [first degree] of scalp [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.16''', NULL, + '(941.16) Erythema [first degree] of scalp [any part]', '(941.16) Erythema [first degree] of scalp [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.17) Erythema [first degree] of forehead and cheek\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.17) Erythema [first degree] of forehead and cheek\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.17''', NULL, + '(941.17) Erythema [first degree] of forehead and cheek', '(941.17) Erythema [first degree] of forehead and cheek', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.18) Erythema [first degree] of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.18) Erythema [first degree] of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.18''', NULL, + '(941.18) Erythema [first degree] of neck', '(941.18) Erythema [first degree] of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.19) Erythema [first degree] of multiple sites [except with eye] of face, head, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Erythema due to burn [first degree] of face, head, and neck (941.1)\(941.19) Erythema [first degree] of multiple sites [except with eye] of face, head, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.19''', NULL, + '(941.19) Erythema [first degree] of multiple sites [except with eye] of face, head, and neck', '(941.19) Erythema [first degree] of multiple sites [except with eye] of face, head, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.3''', NULL, + 'Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)', 'Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.30) Full-thickness skin loss [third degree, not otherwise specified] of face and head, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.30) Full-thickness skin loss [third degree, not otherwise specified] of face and head, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.30''', NULL, + '(941.30) Full-thickness skin loss [third degree, not otherwise specified] of face and head, unspecified site', '(941.30) Full-thickness skin loss [third degree, not otherwise specified] of face and head, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.31) Full-thickness skin loss [third degree, not otherwise specified] of ear [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.31) Full-thickness skin loss [third degree, not otherwise specified] of ear [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.31''', NULL, + '(941.31) Full-thickness skin loss [third degree, not otherwise specified] of ear [any part]', '(941.31) Full-thickness skin loss [third degree, not otherwise specified] of ear [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.32) Full-thickness skin loss [third degree, not otherwise specified] of eye (with other parts of face, head, and neck)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.32) Full-thickness skin loss [third degree, not otherwise specified] of eye (with other parts of face, head, and neck)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''941.32) Full'' AND ''thickness skin loss [third degree, not otherwise specified] of eye (with other parts of face, head, and neck''', NULL, + '(941.32) Full-thickness skin loss [third degree, not otherwise specified] of eye (with other parts of face, head, and neck)', '(941.32) Full-thickness skin loss [third degree, not otherwise specified] of eye (with other parts of face, head, and neck)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.33) Full-thickness skin loss [third degree, not otherwise specified] of lip(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.33) Full-thickness skin loss [third degree, not otherwise specified] of lip(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''941.33) Full'' AND ''thickness skin loss [third degree, not otherwise specified] of lip(s''', NULL, + '(941.33) Full-thickness skin loss [third degree, not otherwise specified] of lip(s)', '(941.33) Full-thickness skin loss [third degree, not otherwise specified] of lip(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.34) Full-thickness skin loss [third degree, not otherwise specified] of chin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.34) Full-thickness skin loss [third degree, not otherwise specified] of chin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.34''', NULL, + '(941.34) Full-thickness skin loss [third degree, not otherwise specified] of chin', '(941.34) Full-thickness skin loss [third degree, not otherwise specified] of chin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.35) Full-thickness skin loss [third degree, not otherwise specified] of nose (septum)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.35) Full-thickness skin loss [third degree, not otherwise specified] of nose (septum)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''941.35) Full'' AND ''thickness skin loss [third degree, not otherwise specified] of nose (septum''', NULL, + '(941.35) Full-thickness skin loss [third degree, not otherwise specified] of nose (septum)', '(941.35) Full-thickness skin loss [third degree, not otherwise specified] of nose (septum)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.36) Full-thickness skin loss [third degree, not otherwise specified] of scalp [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.36) Full-thickness skin loss [third degree, not otherwise specified] of scalp [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.36''', NULL, + '(941.36) Full-thickness skin loss [third degree, not otherwise specified] of scalp [any part]', '(941.36) Full-thickness skin loss [third degree, not otherwise specified] of scalp [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.37) Full-thickness skin loss [third degree, not otherwise specified] of forehead and cheek\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.37) Full-thickness skin loss [third degree, not otherwise specified] of forehead and cheek\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.37''', NULL, + '(941.37) Full-thickness skin loss [third degree, not otherwise specified] of forehead and cheek', '(941.37) Full-thickness skin loss [third degree, not otherwise specified] of forehead and cheek', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.38) Full-thickness skin loss [third degree, not otherwise specified] of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.38) Full-thickness skin loss [third degree, not otherwise specified] of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.38''', NULL, + '(941.38) Full-thickness skin loss [third degree, not otherwise specified] of neck', '(941.38) Full-thickness skin loss [third degree, not otherwise specified] of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites [except with eye] of face, head, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of face, head, and neck (941)\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\(941.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites [except with eye] of face, head, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''941.39''', NULL, + '(941.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites [except with eye] of face, head, and neck', '(941.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites [except with eye] of face, head, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''947''', NULL, + 'Burn of internal organs (947)', 'Burn of internal organs (947)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.0) Burn of mouth and pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.0) Burn of mouth and pharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''947.0''', NULL, + '(947.0) Burn of mouth and pharynx', '(947.0) Burn of mouth and pharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.1) Burn of larynx, trachea, and lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.1) Burn of larynx, trachea, and lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''947.1''', NULL, + '(947.1) Burn of larynx, trachea, and lung', '(947.1) Burn of larynx, trachea, and lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.2) Burn of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.2) Burn of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''947.2''', NULL, + '(947.2) Burn of esophagus', '(947.2) Burn of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.3) Burn of gastrointestinal tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.3) Burn of gastrointestinal tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''947.3''', NULL, + '(947.3) Burn of gastrointestinal tract', '(947.3) Burn of gastrointestinal tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.4) Burn of vagina and uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.4) Burn of vagina and uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''947.4''', NULL, + '(947.4) Burn of vagina and uterus', '(947.4) Burn of vagina and uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.8) Burn of other specified sites of internal organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.8) Burn of other specified sites of internal organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''947.8''', NULL, + '(947.8) Burn of other specified sites of internal organs', '(947.8) Burn of other specified sites of internal organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.9) Burn of internal organs, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of internal organs (947)\(947.9) Burn of internal organs, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''947.9''', NULL, + '(947.9) Burn of internal organs, unspecified site', '(947.9) Burn of internal organs, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (945''', NULL, + 'Burn of lower limb(s) (945)', 'Burn of lower limb(s) (945)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (945.2''', NULL, + 'Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)', 'Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.20) Blisters, epidermal loss [second degree] of lower limb [leg], unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.20) Blisters, epidermal loss [second degree] of lower limb [leg], unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.20''', NULL, + '(945.20) Blisters, epidermal loss [second degree] of lower limb [leg], unspecified site', '(945.20) Blisters, epidermal loss [second degree] of lower limb [leg], unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.21) Blisters, epidermal loss [second degree] of toe(s) (nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.21) Blisters, epidermal loss [second degree] of toe(s) (nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.21) Blisters, epidermal loss [second degree] of toe(s) (nail''', NULL, + '(945.21) Blisters, epidermal loss [second degree] of toe(s) (nail)', '(945.21) Blisters, epidermal loss [second degree] of toe(s) (nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.22) Blisters, epidermal loss [second degree] of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.22) Blisters, epidermal loss [second degree] of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.22''', NULL, + '(945.22) Blisters, epidermal loss [second degree] of foot', '(945.22) Blisters, epidermal loss [second degree] of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.23) Blisters, epidermal loss [second degree] of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.23) Blisters, epidermal loss [second degree] of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.23''', NULL, + '(945.23) Blisters, epidermal loss [second degree] of ankle', '(945.23) Blisters, epidermal loss [second degree] of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.24) Blisters, epidermal loss [second degree] of lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.24) Blisters, epidermal loss [second degree] of lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.24''', NULL, + '(945.24) Blisters, epidermal loss [second degree] of lower leg', '(945.24) Blisters, epidermal loss [second degree] of lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.25) Blisters, epidermal loss [second degree] of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.25) Blisters, epidermal loss [second degree] of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.25''', NULL, + '(945.25) Blisters, epidermal loss [second degree] of knee', '(945.25) Blisters, epidermal loss [second degree] of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.26) Blisters, epidermal loss [second degree] of thigh [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.26) Blisters, epidermal loss [second degree] of thigh [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.26''', NULL, + '(945.26) Blisters, epidermal loss [second degree] of thigh [any part]', '(945.26) Blisters, epidermal loss [second degree] of thigh [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.29) Blisters, epidermal loss [second degree] of multiple sites of lower limb(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\(945.29) Blisters, epidermal loss [second degree] of multiple sites of lower limb(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.29) Blisters, epidermal loss [second degree] of multiple sites of lower limb(s''', NULL, + '(945.29) Blisters, epidermal loss [second degree] of multiple sites of lower limb(s)', '(945.29) Blisters, epidermal loss [second degree] of multiple sites of lower limb(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s), unspecified degree (945.0''', NULL, + 'Burn of lower limb(s), unspecified degree (945.0)', 'Burn of lower limb(s), unspecified degree (945.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.00) Burn of unspecified degree of lower limb [leg], unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.00) Burn of unspecified degree of lower limb [leg], unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.00''', NULL, + '(945.00) Burn of unspecified degree of lower limb [leg], unspecified site', '(945.00) Burn of unspecified degree of lower limb [leg], unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.01) Burn of unspecified degree of toe(s) (nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.01) Burn of unspecified degree of toe(s) (nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.01) Burn of unspecified degree of toe(s) (nail''', NULL, + '(945.01) Burn of unspecified degree of toe(s) (nail)', '(945.01) Burn of unspecified degree of toe(s) (nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.02) Burn of unspecified degree of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.02) Burn of unspecified degree of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.02''', NULL, + '(945.02) Burn of unspecified degree of foot', '(945.02) Burn of unspecified degree of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.03) Burn of unspecified degree of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.03) Burn of unspecified degree of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.03''', NULL, + '(945.03) Burn of unspecified degree of ankle', '(945.03) Burn of unspecified degree of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.04) Burn of unspecified degree of lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.04) Burn of unspecified degree of lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.04''', NULL, + '(945.04) Burn of unspecified degree of lower leg', '(945.04) Burn of unspecified degree of lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.05) Burn of unspecified degree of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.05) Burn of unspecified degree of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.05''', NULL, + '(945.05) Burn of unspecified degree of knee', '(945.05) Burn of unspecified degree of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.06) Burn of unspecified degree of thigh [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.06) Burn of unspecified degree of thigh [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.06''', NULL, + '(945.06) Burn of unspecified degree of thigh [any part]', '(945.06) Burn of unspecified degree of thigh [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.09) Burn of unspecified degree of multiple sites of lower limb(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Burn of lower limb(s), unspecified degree (945.0)\(945.09) Burn of unspecified degree of multiple sites of lower limb(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.09) Burn of unspecified degree of multiple sites of lower limb(s''', NULL, + '(945.09) Burn of unspecified degree of multiple sites of lower limb(s)', '(945.09) Burn of unspecified degree of multiple sites of lower limb(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) with loss of a body part (945.5''', NULL, + 'Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)', 'Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower limb [leg], unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower limb [leg], unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.50''', NULL, + '(945.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower limb [leg], unspecified site', '(945.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower limb [leg], unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of toe(s) (nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of toe(s) (nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of toe(s) (nail''', NULL, + '(945.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of toe(s) (nail)', '(945.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of toe(s) (nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.52''', NULL, + '(945.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of foot', '(945.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.53''', NULL, + '(945.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ankle', '(945.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.54''', NULL, + '(945.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower leg', '(945.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.55''', NULL, + '(945.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of knee', '(945.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thigh [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thigh [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.56''', NULL, + '(945.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thigh [any part]', '(945.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thigh [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of lower limb(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\(945.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of lower limb(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of lower limb(s''', NULL, + '(945.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of lower limb(s)', '(945.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of lower limb(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) without mention of loss of a body part (945.4''', NULL, + 'Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)', 'Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, lower limb [leg], unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, lower limb [leg], unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.40''', NULL, + '(945.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, lower limb [leg], unspecified site', '(945.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, lower limb [leg], unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of toe(s)(nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of toe(s)(nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of toe(s)(nail''', NULL, + '(945.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of toe(s)(nail)', '(945.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of toe(s)(nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.42''', NULL, + '(945.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of foot', '(945.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.43''', NULL, + '(945.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of ankle', '(945.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.44''', NULL, + '(945.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lower leg', '(945.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.45''', NULL, + '(945.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of knee', '(945.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of thigh [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of thigh [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.46''', NULL, + '(945.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of thigh [any part]', '(945.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of thigh [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of lower limb(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\(945.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of lower limb(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of lower limb(s''', NULL, + '(945.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of lower limb(s)', '(945.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of lower limb(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (945.1''', NULL, + 'Erythema due to burn [first degree] of lower limb(s) (945.1)', 'Erythema due to burn [first degree] of lower limb(s) (945.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.10) Erythema [first degree] of lower limb [leg], unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.10) Erythema [first degree] of lower limb [leg], unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.10''', NULL, + '(945.10) Erythema [first degree] of lower limb [leg], unspecified site', '(945.10) Erythema [first degree] of lower limb [leg], unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.11) Erythema [first degree] of toe(s) (nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.11) Erythema [first degree] of toe(s) (nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.11) Erythema [first degree] of toe(s) (nail''', NULL, + '(945.11) Erythema [first degree] of toe(s) (nail)', '(945.11) Erythema [first degree] of toe(s) (nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.12) Erythema [first degree] of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.12) Erythema [first degree] of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.12''', NULL, + '(945.12) Erythema [first degree] of foot', '(945.12) Erythema [first degree] of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.13) Erythema [first degree] of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.13) Erythema [first degree] of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.13''', NULL, + '(945.13) Erythema [first degree] of ankle', '(945.13) Erythema [first degree] of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.14) Erythema [first degree] of lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.14) Erythema [first degree] of lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.14''', NULL, + '(945.14) Erythema [first degree] of lower leg', '(945.14) Erythema [first degree] of lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.15) Erythema [first degree] of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.15) Erythema [first degree] of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.15''', NULL, + '(945.15) Erythema [first degree] of knee', '(945.15) Erythema [first degree] of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.16) Erythema [first degree] of thigh [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.16) Erythema [first degree] of thigh [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.16''', NULL, + '(945.16) Erythema [first degree] of thigh [any part]', '(945.16) Erythema [first degree] of thigh [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.19) Erythema [first degree] of multiple sites of lower limb(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Erythema due to burn [first degree] of lower limb(s) (945.1)\(945.19) Erythema [first degree] of multiple sites of lower limb(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.19) Erythema [first degree] of multiple sites of lower limb(s''', NULL, + '(945.19) Erythema [first degree] of multiple sites of lower limb(s)', '(945.19) Erythema [first degree] of multiple sites of lower limb(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (945.3''', NULL, + 'Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)', 'Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.30) Full-thickness skin loss [third degree NOS] of lower limb [leg] unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.30) Full-thickness skin loss [third degree NOS] of lower limb [leg] unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.30''', NULL, + '(945.30) Full-thickness skin loss [third degree NOS] of lower limb [leg] unspecified site', '(945.30) Full-thickness skin loss [third degree NOS] of lower limb [leg] unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.31) Full-thickness skin loss [third degree NOS] of toe(s) (nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.31) Full-thickness skin loss [third degree NOS] of toe(s) (nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''945.31) Full'' AND ''thickness skin loss [third degree NOS] of toe(s) (nail''', NULL, + '(945.31) Full-thickness skin loss [third degree NOS] of toe(s) (nail)', '(945.31) Full-thickness skin loss [third degree NOS] of toe(s) (nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.32) Full-thickness skin loss [third degree NOS] of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.32) Full-thickness skin loss [third degree NOS] of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.32''', NULL, + '(945.32) Full-thickness skin loss [third degree NOS] of foot', '(945.32) Full-thickness skin loss [third degree NOS] of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.33) Full-thickness skin loss [third degree NOS] of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.33) Full-thickness skin loss [third degree NOS] of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.33''', NULL, + '(945.33) Full-thickness skin loss [third degree NOS] of ankle', '(945.33) Full-thickness skin loss [third degree NOS] of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.34) Full-thickness skin loss [third degree nos] of lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.34) Full-thickness skin loss [third degree nos] of lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.34''', NULL, + '(945.34) Full-thickness skin loss [third degree nos] of lower leg', '(945.34) Full-thickness skin loss [third degree nos] of lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.35) Full-thickness skin loss [third degree NOS] of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.35) Full-thickness skin loss [third degree NOS] of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.35''', NULL, + '(945.35) Full-thickness skin loss [third degree NOS] of knee', '(945.35) Full-thickness skin loss [third degree NOS] of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.36) Full-thickness skin loss [third degree NOS] of thigh [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.36) Full-thickness skin loss [third degree NOS] of thigh [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''945.36''', NULL, + '(945.36) Full-thickness skin loss [third degree NOS] of thigh [any part]', '(945.36) Full-thickness skin loss [third degree NOS] of thigh [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.39) Full-thickness skin loss [third degree NOS] of multiple sites of lower limb(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of lower limb(s) (945)\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\(945.39) Full-thickness skin loss [third degree NOS] of multiple sites of lower limb(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''945.39) Full'' AND ''thickness skin loss [third degree NOS] of multiple sites of lower limb(s''', NULL, + '(945.39) Full-thickness skin loss [third degree NOS] of multiple sites of lower limb(s)', '(945.39) Full-thickness skin loss [third degree NOS] of multiple sites of lower limb(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942''', NULL, + 'Burn of trunk (942)', 'Burn of trunk (942)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.2''', NULL, + 'Blisters with epidermal loss due to burn [second degree] of trunk (942.2)', 'Blisters with epidermal loss due to burn [second degree] of trunk (942.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.20) Blisters, epidermal loss [second degree] of trunk, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.20) Blisters, epidermal loss [second degree] of trunk, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.20''', NULL, + '(942.20) Blisters, epidermal loss [second degree] of trunk, unspecified site', '(942.20) Blisters, epidermal loss [second degree] of trunk, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.21) Blisters, epidermal loss [second degree] of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.21) Blisters, epidermal loss [second degree] of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.21''', NULL, + '(942.21) Blisters, epidermal loss [second degree] of breast', '(942.21) Blisters, epidermal loss [second degree] of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.22) Blisters, epidermal loss [second degree] of chest wall, excluding breast and nipple\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.22) Blisters, epidermal loss [second degree] of chest wall, excluding breast and nipple\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.22''', NULL, + '(942.22) Blisters, epidermal loss [second degree] of chest wall, excluding breast and nipple', '(942.22) Blisters, epidermal loss [second degree] of chest wall, excluding breast and nipple', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.23) Blisters, epidermal loss [second degree] of abdominal wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.23) Blisters, epidermal loss [second degree] of abdominal wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.23''', NULL, + '(942.23) Blisters, epidermal loss [second degree] of abdominal wall', '(942.23) Blisters, epidermal loss [second degree] of abdominal wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.24) Blisters, epidermal loss [second degree] of back [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.24) Blisters, epidermal loss [second degree] of back [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.24''', NULL, + '(942.24) Blisters, epidermal loss [second degree] of back [any part]', '(942.24) Blisters, epidermal loss [second degree] of back [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.25) Blisters, epidermal loss [second degree] of genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.25) Blisters, epidermal loss [second degree] of genitalia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.25''', NULL, + '(942.25) Blisters, epidermal loss [second degree] of genitalia', '(942.25) Blisters, epidermal loss [second degree] of genitalia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.29) Blisters, epidermal loss [second degree] of other and multiple sites of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\(942.29) Blisters, epidermal loss [second degree] of other and multiple sites of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.29''', NULL, + '(942.29) Blisters, epidermal loss [second degree] of other and multiple sites of trunk', '(942.29) Blisters, epidermal loss [second degree] of other and multiple sites of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.0''', NULL, + 'Burn of trunk, unspecified degree (942.0)', 'Burn of trunk, unspecified degree (942.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.00) Burn of unspecified degree of trunk, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.00) Burn of unspecified degree of trunk, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.00''', NULL, + '(942.00) Burn of unspecified degree of trunk, unspecified site', '(942.00) Burn of unspecified degree of trunk, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.01) Burn of unspecified degree of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.01) Burn of unspecified degree of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.01''', NULL, + '(942.01) Burn of unspecified degree of breast', '(942.01) Burn of unspecified degree of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.02) Burn of unspecified degree of chest wall, excluding breast and nipple\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.02) Burn of unspecified degree of chest wall, excluding breast and nipple\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.02''', NULL, + '(942.02) Burn of unspecified degree of chest wall, excluding breast and nipple', '(942.02) Burn of unspecified degree of chest wall, excluding breast and nipple', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.03) Burn of unspecified degree of abdominal wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.03) Burn of unspecified degree of abdominal wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.03''', NULL, + '(942.03) Burn of unspecified degree of abdominal wall', '(942.03) Burn of unspecified degree of abdominal wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.04) Burn of unspecified degree of back [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.04) Burn of unspecified degree of back [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.04''', NULL, + '(942.04) Burn of unspecified degree of back [any part]', '(942.04) Burn of unspecified degree of back [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.05) Burn of unspecified degree of genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.05) Burn of unspecified degree of genitalia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.05''', NULL, + '(942.05) Burn of unspecified degree of genitalia', '(942.05) Burn of unspecified degree of genitalia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.09) Burn of unspecified degree of other and multiple sites of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Burn of trunk, unspecified degree (942.0)\(942.09) Burn of unspecified degree of other and multiple sites of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.09''', NULL, + '(942.09) Burn of unspecified degree of other and multiple sites of trunk', '(942.09) Burn of unspecified degree of other and multiple sites of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.5''', NULL, + 'Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)', 'Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, trunk, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, trunk, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.50''', NULL, + '(942.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, trunk, unspecified site', '(942.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, trunk, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.51''', NULL, + '(942.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of breast', '(942.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chest wall, excluding breast and nipple\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chest wall, excluding breast and nipple\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.52''', NULL, + '(942.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chest wall, excluding breast and nipple', '(942.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chest wall, excluding breast and nipple', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of abdominal wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of abdominal wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.53''', NULL, + '(942.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of abdominal wall', '(942.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of abdominal wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.54''', NULL, + '(942.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back [any part]', '(942.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of genitalia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.55''', NULL, + '(942.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of genitalia', '(942.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of genitalia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of other and multiple sites of trunk,\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\(942.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of other and multiple sites of trunk,\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.59''', NULL, + '(942.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of other and multiple sites of trunk,', '(942.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of other and multiple sites of trunk,', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.4''', NULL, + 'Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)', 'Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.40) Deep necrosis of underlying tissues [deep third degree] ) without mention of loss of a body part, of trunk, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.40) Deep necrosis of underlying tissues [deep third degree] ) without mention of loss of a body part, of trunk, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.40) Deep necrosis of underlying tissues [deep third degree] ''', NULL, + '(942.40) Deep necrosis of underlying tissues [deep third degree] ) without mention of loss of a body part, of trunk, unspecified site', '(942.40) Deep necrosis of underlying tissues [deep third degree] ) without mention of loss of a body part, of trunk, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.41) Deep necrosis of underlying tissues [deep third degree]''', NULL, + '(942.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, of breast', '(942.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chest wall, excluding breast and nipple\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chest wall, excluding breast and nipple\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.42''', NULL, + '(942.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chest wall, excluding breast and nipple', '(942.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chest wall, excluding breast and nipple', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of abdominal wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of abdominal wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.43''', NULL, + '(942.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of abdominal wall', '(942.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of abdominal wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.44''', NULL, + '(942.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back [any part]', '(942.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of genitalia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.45''', NULL, + '(942.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of genitalia', '(942.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of genitalia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of other and multiple sites of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\(942.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of other and multiple sites of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.49''', NULL, + '(942.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of other and multiple sites of trunk', '(942.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of other and multiple sites of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.1''', NULL, + 'Erythema due to burn [first degree] of trunk (942.1)', 'Erythema due to burn [first degree] of trunk (942.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.10) Erythema [first degree] of trunk, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.10) Erythema [first degree] of trunk, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.10''', NULL, + '(942.10) Erythema [first degree] of trunk, unspecified site', '(942.10) Erythema [first degree] of trunk, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.11) Erythema [first degree] of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.11) Erythema [first degree] of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.11''', NULL, + '(942.11) Erythema [first degree] of breast', '(942.11) Erythema [first degree] of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.12) Erythema [first degree] of chest wall, excluding breast and nipple\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.12) Erythema [first degree] of chest wall, excluding breast and nipple\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.12''', NULL, + '(942.12) Erythema [first degree] of chest wall, excluding breast and nipple', '(942.12) Erythema [first degree] of chest wall, excluding breast and nipple', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.13) Erythema [first degree] of abdominal wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.13) Erythema [first degree] of abdominal wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.13''', NULL, + '(942.13) Erythema [first degree] of abdominal wall', '(942.13) Erythema [first degree] of abdominal wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.14) Erythema [first degree] of back [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.14) Erythema [first degree] of back [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.14''', NULL, + '(942.14) Erythema [first degree] of back [any part]', '(942.14) Erythema [first degree] of back [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.15) Erythema [first degree] of genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.15) Erythema [first degree] of genitalia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.15''', NULL, + '(942.15) Erythema [first degree] of genitalia', '(942.15) Erythema [first degree] of genitalia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.19) Erythema [first degree] of other and multiple sites of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Erythema due to burn [first degree] of trunk (942.1)\(942.19) Erythema [first degree] of other and multiple sites of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.19''', NULL, + '(942.19) Erythema [first degree] of other and multiple sites of trunk', '(942.19) Erythema [first degree] of other and multiple sites of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.3''', NULL, + 'Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)', 'Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.30) Full-thickness skin loss [third degree, not otherwise specified] of trunk, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.30) Full-thickness skin loss [third degree, not otherwise specified] of trunk, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.30''', NULL, + '(942.30) Full-thickness skin loss [third degree, not otherwise specified] of trunk, unspecified site', '(942.30) Full-thickness skin loss [third degree, not otherwise specified] of trunk, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.31) Full-thickness skin loss [third degree,not otherwise specified] of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.31) Full-thickness skin loss [third degree,not otherwise specified] of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.31''', NULL, + '(942.31) Full-thickness skin loss [third degree,not otherwise specified] of breast', '(942.31) Full-thickness skin loss [third degree,not otherwise specified] of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.32) Full-thickness skin loss [third degree, not otherwise specified] of chest wall, excluding breast and nipple\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.32) Full-thickness skin loss [third degree, not otherwise specified] of chest wall, excluding breast and nipple\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.32''', NULL, + '(942.32) Full-thickness skin loss [third degree, not otherwise specified] of chest wall, excluding breast and nipple', '(942.32) Full-thickness skin loss [third degree, not otherwise specified] of chest wall, excluding breast and nipple', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.33) Full-thickness skin loss [third degree, not otherwise specified] of abdominal wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.33) Full-thickness skin loss [third degree, not otherwise specified] of abdominal wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.33''', NULL, + '(942.33) Full-thickness skin loss [third degree, not otherwise specified] of abdominal wall', '(942.33) Full-thickness skin loss [third degree, not otherwise specified] of abdominal wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.34) Full-thickness skin loss [third degree,not otherwise specified] of back [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.34) Full-thickness skin loss [third degree,not otherwise specified] of back [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.34''', NULL, + '(942.34) Full-thickness skin loss [third degree,not otherwise specified] of back [any part]', '(942.34) Full-thickness skin loss [third degree,not otherwise specified] of back [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.35) Full-thickness skin loss [third degree, not otherwise specified] of genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.35) Full-thickness skin loss [third degree, not otherwise specified] of genitalia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.35''', NULL, + '(942.35) Full-thickness skin loss [third degree, not otherwise specified] of genitalia', '(942.35) Full-thickness skin loss [third degree, not otherwise specified] of genitalia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.39) Full-thickness skin loss [third degree, not otherwise specified] of other and multiple sites of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of trunk (942)\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\(942.39) Full-thickness skin loss [third degree, not otherwise specified] of other and multiple sites of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''942.39''', NULL, + '(942.39) Full-thickness skin loss [third degree, not otherwise specified] of other and multiple sites of trunk', '(942.39) Full-thickness skin loss [third degree, not otherwise specified] of other and multiple sites of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943''', NULL, + 'Burn of upper limb, except wrist and hand (943)', 'Burn of upper limb, except wrist and hand (943)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.2''', NULL, + 'Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)', 'Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.20) Blisters, epidermal loss [second degree] of upper limb, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.20) Blisters, epidermal loss [second degree] of upper limb, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.20''', NULL, + '(943.20) Blisters, epidermal loss [second degree] of upper limb, unspecified site', '(943.20) Blisters, epidermal loss [second degree] of upper limb, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.21) Blisters, epidermal loss [second degree] of forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.21) Blisters, epidermal loss [second degree] of forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.21''', NULL, + '(943.21) Blisters, epidermal loss [second degree] of forearm', '(943.21) Blisters, epidermal loss [second degree] of forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.22) Blisters, epidermal loss [second degree] of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.22) Blisters, epidermal loss [second degree] of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.22''', NULL, + '(943.22) Blisters, epidermal loss [second degree] of elbow', '(943.22) Blisters, epidermal loss [second degree] of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.23) Blisters, epidermal loss [second degree] of upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.23) Blisters, epidermal loss [second degree] of upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.23''', NULL, + '(943.23) Blisters, epidermal loss [second degree] of upper arm', '(943.23) Blisters, epidermal loss [second degree] of upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.24) Blisters, epidermal loss [second degree] of axilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.24) Blisters, epidermal loss [second degree] of axilla\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.24''', NULL, + '(943.24) Blisters, epidermal loss [second degree] of axilla', '(943.24) Blisters, epidermal loss [second degree] of axilla', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.25) Blisters, epidermal loss [second degree] of shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.25) Blisters, epidermal loss [second degree] of shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.25''', NULL, + '(943.25) Blisters, epidermal loss [second degree] of shoulder', '(943.25) Blisters, epidermal loss [second degree] of shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.26) Blisters, epidermal loss [second degree] of scapular region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.26) Blisters, epidermal loss [second degree] of scapular region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.26''', NULL, + '(943.26) Blisters, epidermal loss [second degree] of scapular region', '(943.26) Blisters, epidermal loss [second degree] of scapular region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.29) Blisters, epidermal loss [second degree] of multiple sites of upper limb, except wrist and hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\(943.29) Blisters, epidermal loss [second degree] of multiple sites of upper limb, except wrist and hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.29''', NULL, + '(943.29) Blisters, epidermal loss [second degree] of multiple sites of upper limb, except wrist and hand', '(943.29) Blisters, epidermal loss [second degree] of multiple sites of upper limb, except wrist and hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.0''', NULL, + 'Burn of upper limb, except wrist and hand, unspecified degree (943.0)', 'Burn of upper limb, except wrist and hand, unspecified degree (943.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.00) Burn of unspecified degree of upper limb, except wrist and hand, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.00) Burn of unspecified degree of upper limb, except wrist and hand, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.00''', NULL, + '(943.00) Burn of unspecified degree of upper limb, except wrist and hand, unspecified site', '(943.00) Burn of unspecified degree of upper limb, except wrist and hand, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.01) Burn of unspecified degree of forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.01) Burn of unspecified degree of forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.01''', NULL, + '(943.01) Burn of unspecified degree of forearm', '(943.01) Burn of unspecified degree of forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.02) Burn of unspecified degree of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.02) Burn of unspecified degree of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.02''', NULL, + '(943.02) Burn of unspecified degree of elbow', '(943.02) Burn of unspecified degree of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.03) Burn of unspecified degree of upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.03) Burn of unspecified degree of upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.03''', NULL, + '(943.03) Burn of unspecified degree of upper arm', '(943.03) Burn of unspecified degree of upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.04) Burn of unspecified degree of axilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.04) Burn of unspecified degree of axilla\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.04''', NULL, + '(943.04) Burn of unspecified degree of axilla', '(943.04) Burn of unspecified degree of axilla', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.05) Burn of unspecified degree of shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.05) Burn of unspecified degree of shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.05''', NULL, + '(943.05) Burn of unspecified degree of shoulder', '(943.05) Burn of unspecified degree of shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.06) Burn of unspecified degree of scapular region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.06) Burn of unspecified degree of scapular region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.06''', NULL, + '(943.06) Burn of unspecified degree of scapular region', '(943.06) Burn of unspecified degree of scapular region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.09) Burn of unspecified degree of multiple sites of upper limb, except wrist and hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\(943.09) Burn of unspecified degree of multiple sites of upper limb, except wrist and hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.09''', NULL, + '(943.09) Burn of unspecified degree of multiple sites of upper limb, except wrist and hand', '(943.09) Burn of unspecified degree of multiple sites of upper limb, except wrist and hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.5''', NULL, + 'Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)', 'Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper limb, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper limb, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.50''', NULL, + '(943.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper limb, unspecified site', '(943.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper limb, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.51) Deep necrosis of underlying tissues [deep third degree) with loss of a body part, of forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.51) Deep necrosis of underlying tissues [deep third degree) with loss of a body part, of forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.51) Deep necrosis of underlying tissues [deep third degree''', NULL, + '(943.51) Deep necrosis of underlying tissues [deep third degree) with loss of a body part, of forearm', '(943.51) Deep necrosis of underlying tissues [deep third degree) with loss of a body part, of forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.52''', NULL, + '(943.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of elbow', '(943.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.53''', NULL, + '(943.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper arm', '(943.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of axilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of axilla\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.54''', NULL, + '(943.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of axilla', '(943.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of axilla', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.55''', NULL, + '(943.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of shoulder', '(943.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scapular region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scapular region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.56''', NULL, + '(943.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scapular region', '(943.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scapular region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of upper limb, except wrist and hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\(943.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of upper limb, except wrist and hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.59''', NULL, + '(943.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of upper limb, except wrist and hand', '(943.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of upper limb, except wrist and hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.4''', NULL, + 'Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)', 'Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper limb,unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper limb,unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.40''', NULL, + '(943.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper limb,unspecified site', '(943.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper limb,unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.41''', NULL, + '(943.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forearm', '(943.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.42''', NULL, + '(943.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of elbow', '(943.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.43''', NULL, + '(943.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper arm', '(943.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of axilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of axilla\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.44''', NULL, + '(943.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of axilla', '(943.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of axilla', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.45''', NULL, + '(943.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of shoulder', '(943.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of scapular region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of scapular region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.46''', NULL, + '(943.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of scapular region', '(943.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of scapular region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of upper limb, except wrist and hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\(943.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of upper limb, except wrist and hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.49''', NULL, + '(943.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of upper limb, except wrist and hand', '(943.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of upper limb, except wrist and hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.1''', NULL, + 'Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)', 'Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.10) Erythema [first degree] of upper limb, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.10) Erythema [first degree] of upper limb, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.10''', NULL, + '(943.10) Erythema [first degree] of upper limb, unspecified site', '(943.10) Erythema [first degree] of upper limb, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.11) Erythema [first degree] of forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.11) Erythema [first degree] of forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.11''', NULL, + '(943.11) Erythema [first degree] of forearm', '(943.11) Erythema [first degree] of forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.12) Erythema [first degree] of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.12) Erythema [first degree] of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.12''', NULL, + '(943.12) Erythema [first degree] of elbow', '(943.12) Erythema [first degree] of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.13) Erythema [first degree] of upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.13) Erythema [first degree] of upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.13''', NULL, + '(943.13) Erythema [first degree] of upper arm', '(943.13) Erythema [first degree] of upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.14) Erythema [first degree] of axilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.14) Erythema [first degree] of axilla\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.14''', NULL, + '(943.14) Erythema [first degree] of axilla', '(943.14) Erythema [first degree] of axilla', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.15) Erythema [first degree] of shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.15) Erythema [first degree] of shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.15''', NULL, + '(943.15) Erythema [first degree] of shoulder', '(943.15) Erythema [first degree] of shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.16) Erythema [first degree] of scapular region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.16) Erythema [first degree] of scapular region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.16''', NULL, + '(943.16) Erythema [first degree] of scapular region', '(943.16) Erythema [first degree] of scapular region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.19) Erythema [first degree] of multiple sites of upper limb, except wrist and hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\(943.19) Erythema [first degree] of multiple sites of upper limb, except wrist and hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.19''', NULL, + '(943.19) Erythema [first degree] of multiple sites of upper limb, except wrist and hand', '(943.19) Erythema [first degree] of multiple sites of upper limb, except wrist and hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.3''', NULL, + 'Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)', 'Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.30) Full-thickness skin [third degree, not otherwise specified] of upper limb, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.30) Full-thickness skin [third degree, not otherwise specified] of upper limb, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.30''', NULL, + '(943.30) Full-thickness skin [third degree, not otherwise specified] of upper limb, unspecified site', '(943.30) Full-thickness skin [third degree, not otherwise specified] of upper limb, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.31) Full-thickness skin loss [third degree, not otherwise specified] of forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.31) Full-thickness skin loss [third degree, not otherwise specified] of forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.31''', NULL, + '(943.31) Full-thickness skin loss [third degree, not otherwise specified] of forearm', '(943.31) Full-thickness skin loss [third degree, not otherwise specified] of forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.32) Full-thickness skin loss [third degree, not otherwise specified] of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.32) Full-thickness skin loss [third degree, not otherwise specified] of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.32''', NULL, + '(943.32) Full-thickness skin loss [third degree, not otherwise specified] of elbow', '(943.32) Full-thickness skin loss [third degree, not otherwise specified] of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.33) Full-thickness skin loss [third degree, not otherwise specified] of upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.33) Full-thickness skin loss [third degree, not otherwise specified] of upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.33''', NULL, + '(943.33) Full-thickness skin loss [third degree, not otherwise specified] of upper arm', '(943.33) Full-thickness skin loss [third degree, not otherwise specified] of upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.34) Full-thickness skin loss [third degree, not otherwise specified] of axilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.34) Full-thickness skin loss [third degree, not otherwise specified] of axilla\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.34''', NULL, + '(943.34) Full-thickness skin loss [third degree, not otherwise specified] of axilla', '(943.34) Full-thickness skin loss [third degree, not otherwise specified] of axilla', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.35) Full-thickness skin loss [third degree, not otherwise specified] of shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.35) Full-thickness skin loss [third degree, not otherwise specified] of shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.35''', NULL, + '(943.35) Full-thickness skin loss [third degree, not otherwise specified] of shoulder', '(943.35) Full-thickness skin loss [third degree, not otherwise specified] of shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.36) Full-thickness skin loss [third degree, not otherwise specified] of scapular region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.36) Full-thickness skin loss [third degree, not otherwise specified] of scapular region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.36''', NULL, + '(943.36) Full-thickness skin loss [third degree, not otherwise specified] of scapular region', '(943.36) Full-thickness skin loss [third degree, not otherwise specified] of scapular region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of upper limb, except wrist and hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of upper limb, except wrist and hand (943)\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\(943.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of upper limb, except wrist and hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''943.39''', NULL, + '(943.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of upper limb, except wrist and hand', '(943.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of upper limb, except wrist and hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) and hand(s) (944''', NULL, + 'Burn of wrist(s) and hand(s) (944)', 'Burn of wrist(s) and hand(s) (944)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) and hand(s) (944.2''', NULL, + 'Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)', 'Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.20) Blisters, epidermal loss [second degree] of hand, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.20) Blisters, epidermal loss [second degree] of hand, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.20''', NULL, + '(944.20) Blisters, epidermal loss [second degree] of hand, unspecified site', '(944.20) Blisters, epidermal loss [second degree] of hand, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.21) Blisters, epidermal loss [second degree] of single digit [finger (nail)] other than thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.21) Blisters, epidermal loss [second degree] of single digit [finger (nail)] other than thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.21) Blisters, epidermal loss [second degree] of single digit [finger (nail''', NULL, + '(944.21) Blisters, epidermal loss [second degree] of single digit [finger (nail)] other than thumb', '(944.21) Blisters, epidermal loss [second degree] of single digit [finger (nail)] other than thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.22) Blisters, epidermal loss [second degree] of thumb (nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.22) Blisters, epidermal loss [second degree] of thumb (nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.22) Blisters, epidermal loss [second degree] of thumb (nail''', NULL, + '(944.22) Blisters, epidermal loss [second degree] of thumb (nail)', '(944.22) Blisters, epidermal loss [second degree] of thumb (nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.23) Blisters, epidermal loss [second degree] of two or more digits of hand, not including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.23) Blisters, epidermal loss [second degree] of two or more digits of hand, not including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.23''', NULL, + '(944.23) Blisters, epidermal loss [second degree] of two or more digits of hand, not including thumb', '(944.23) Blisters, epidermal loss [second degree] of two or more digits of hand, not including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.24) Blisters, epidermal loss [second degree] of two or more digits of hand including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.24) Blisters, epidermal loss [second degree] of two or more digits of hand including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.24''', NULL, + '(944.24) Blisters, epidermal loss [second degree] of two or more digits of hand including thumb', '(944.24) Blisters, epidermal loss [second degree] of two or more digits of hand including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.25) Blisters, epidermal loss [second degree] of palm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.25) Blisters, epidermal loss [second degree] of palm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.25''', NULL, + '(944.25) Blisters, epidermal loss [second degree] of palm', '(944.25) Blisters, epidermal loss [second degree] of palm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.26) Blisters , epidermal loss [second degree] of back of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.26) Blisters , epidermal loss [second degree] of back of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.26''', NULL, + '(944.26) Blisters , epidermal loss [second degree] of back of hand', '(944.26) Blisters , epidermal loss [second degree] of back of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.27) Blisters, epidermal loss [second degree] of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.27) Blisters, epidermal loss [second degree] of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.27''', NULL, + '(944.27) Blisters, epidermal loss [second degree] of wrist', '(944.27) Blisters, epidermal loss [second degree] of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.28) Blisters, epidermal loss [second degree] of multiple sites of wrist(s) and hand(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\(944.28) Blisters, epidermal loss [second degree] of multiple sites of wrist(s) and hand(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.28) Blisters, epidermal loss [second degree] of multiple sites of wrist(s) and hand(s''', NULL, + '(944.28) Blisters, epidermal loss [second degree] of multiple sites of wrist(s) and hand(s)', '(944.28) Blisters, epidermal loss [second degree] of multiple sites of wrist(s) and hand(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) and hand(s), unspecified degree (944.0''', NULL, + 'Burn of wrist(s) and hand(s), unspecified degree (944.0)', 'Burn of wrist(s) and hand(s), unspecified degree (944.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.00) Burn of unspecified degree of hand, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.00) Burn of unspecified degree of hand, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.00''', NULL, + '(944.00) Burn of unspecified degree of hand, unspecified site', '(944.00) Burn of unspecified degree of hand, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.01) Burn of unspecified degree of single digit (finger (nail) other than thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.01) Burn of unspecified degree of single digit (finger (nail) other than thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.01) Burn of unspecified degree of single digit (finger (nail''', NULL, + '(944.01) Burn of unspecified degree of single digit (finger (nail) other than thumb', '(944.01) Burn of unspecified degree of single digit (finger (nail) other than thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.02) Burn of unspecified degree of thumb (nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.02) Burn of unspecified degree of thumb (nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.02) Burn of unspecified degree of thumb (nail''', NULL, + '(944.02) Burn of unspecified degree of thumb (nail)', '(944.02) Burn of unspecified degree of thumb (nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.03) Burn of unspecified degree of two or more digits of hand, not including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.03) Burn of unspecified degree of two or more digits of hand, not including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.03''', NULL, + '(944.03) Burn of unspecified degree of two or more digits of hand, not including thumb', '(944.03) Burn of unspecified degree of two or more digits of hand, not including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.04) Burn of unspecified degree of two or more digits of hand, including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.04) Burn of unspecified degree of two or more digits of hand, including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.04''', NULL, + '(944.04) Burn of unspecified degree of two or more digits of hand, including thumb', '(944.04) Burn of unspecified degree of two or more digits of hand, including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.05) Burn of unspecified degree of palm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.05) Burn of unspecified degree of palm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.05''', NULL, + '(944.05) Burn of unspecified degree of palm', '(944.05) Burn of unspecified degree of palm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.06) Burn of unspecified degree of back of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.06) Burn of unspecified degree of back of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.06''', NULL, + '(944.06) Burn of unspecified degree of back of hand', '(944.06) Burn of unspecified degree of back of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.07) Burn of unspecified degree of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.07) Burn of unspecified degree of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.07''', NULL, + '(944.07) Burn of unspecified degree of wrist', '(944.07) Burn of unspecified degree of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.08) Burn of unspecified degree of multiple sites of wrist(s) and hand(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Burn of wrist(s) and hand(s), unspecified degree (944.0)\(944.08) Burn of unspecified degree of multiple sites of wrist(s) and hand(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.08) Burn of unspecified degree of multiple sites of wrist(s) and hand(s''', NULL, + '(944.08) Burn of unspecified degree of multiple sites of wrist(s) and hand(s)', '(944.08) Burn of unspecified degree of multiple sites of wrist(s) and hand(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) and hand(s), with loss of a body part (944.5''', NULL, + 'Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)', 'Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of hand, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of hand, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.50''', NULL, + '(944.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of hand, unspecified site', '(944.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of hand, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of single digit [finger (nail)] other than thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of single digit [finger (nail)] other than thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of single digit [finger (nail''', NULL, + '(944.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of single digit [finger (nail)] other than thumb', '(944.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of single digit [finger (nail)] other than thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thumb (nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thumb (nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thumb (nail''', NULL, + '(944.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thumb (nail)', '(944.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thumb (nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand, not including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand, not including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.53''', NULL, + '(944.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand, not including thumb', '(944.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand, not including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.54''', NULL, + '(944.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand including thumb', '(944.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of palm of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of palm of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.55''', NULL, + '(944.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of palm of hand', '(944.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of palm of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.56''', NULL, + '(944.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back of hand', '(944.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.57''', NULL, + '(944.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of wrist', '(944.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of wrist(s) and hand(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\(944.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of wrist(s) and hand(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of wrist(s) and hand(s''', NULL, + '(944.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of wrist(s) and hand(s)', '(944.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of wrist(s) and hand(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) and hand(s), without mention of loss of a body part (944.4''', NULL, + 'Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)', 'Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, hand, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, hand, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.40''', NULL, + '(944.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, hand, unspecified site', '(944.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, hand, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, single digit [finger (nail)] other than thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, single digit [finger (nail)] other than thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, single digit [finger (nail''', NULL, + '(944.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, single digit [finger (nail)] other than thumb', '(944.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, single digit [finger (nail)] other than thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, thumb (nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, thumb (nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, thumb (nail''', NULL, + '(944.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, thumb (nail)', '(944.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, thumb (nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand, not including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand, not including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.43''', NULL, + '(944.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand, not including thumb', '(944.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand, not including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.44''', NULL, + '(944.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand including thumb', '(944.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of palm of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of palm of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.45''', NULL, + '(944.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of palm of hand', '(944.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of palm of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.46''', NULL, + '(944.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back of hand', '(944.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.47''', NULL, + '(944.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of wrist', '(944.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of wrist(s) and hand(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\(944.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of wrist(s) and hand(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of wrist(s) and hand(s''', NULL, + '(944.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of wrist(s) and hand(s)', '(944.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of wrist(s) and hand(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) and hand(s) (944.1''', NULL, + 'Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)', 'Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.10) Erythema [first degree] of hand, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.10) Erythema [first degree] of hand, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.10''', NULL, + '(944.10) Erythema [first degree] of hand, unspecified site', '(944.10) Erythema [first degree] of hand, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.11) Erythema [first degree] of single digit (finger (nail)) other than thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.11) Erythema [first degree] of single digit (finger (nail)) other than thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.11) Erythema [first degree] of single digit (finger (nail)''', NULL, + '(944.11) Erythema [first degree] of single digit (finger (nail)) other than thumb', '(944.11) Erythema [first degree] of single digit (finger (nail)) other than thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.12) Erythema [first degree] of thumb (nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.12) Erythema [first degree] of thumb (nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.12) Erythema [first degree] of thumb (nail''', NULL, + '(944.12) Erythema [first degree] of thumb (nail)', '(944.12) Erythema [first degree] of thumb (nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.13) Erythema [first degree] of two or more digits of hand, not including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.13) Erythema [first degree] of two or more digits of hand, not including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.13''', NULL, + '(944.13) Erythema [first degree] of two or more digits of hand, not including thumb', '(944.13) Erythema [first degree] of two or more digits of hand, not including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.14) Erythema [first degree] of two or more digits of hand including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.14) Erythema [first degree] of two or more digits of hand including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.14''', NULL, + '(944.14) Erythema [first degree] of two or more digits of hand including thumb', '(944.14) Erythema [first degree] of two or more digits of hand including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.15) Erythema [first degree] of palm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.15) Erythema [first degree] of palm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.15''', NULL, + '(944.15) Erythema [first degree] of palm', '(944.15) Erythema [first degree] of palm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.16) Erythema [first degree] of back of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.16) Erythema [first degree] of back of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.16''', NULL, + '(944.16) Erythema [first degree] of back of hand', '(944.16) Erythema [first degree] of back of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.17) Erythema [first degree] of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.17) Erythema [first degree] of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.17''', NULL, + '(944.17) Erythema [first degree] of wrist', '(944.17) Erythema [first degree] of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.18) Erythema [first degree] of multiple sites of wrist(s) and hand(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\(944.18) Erythema [first degree] of multiple sites of wrist(s) and hand(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.18) Erythema [first degree] of multiple sites of wrist(s) and hand(s''', NULL, + '(944.18) Erythema [first degree] of multiple sites of wrist(s) and hand(s)', '(944.18) Erythema [first degree] of multiple sites of wrist(s) and hand(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) and hand(s) (944.3''', NULL, + 'Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)', 'Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.30) Full-thickness skin loss [third degree, not otherwise specified] of hand, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.30) Full-thickness skin loss [third degree, not otherwise specified] of hand, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.30''', NULL, + '(944.30) Full-thickness skin loss [third degree, not otherwise specified] of hand, unspecified site', '(944.30) Full-thickness skin loss [third degree, not otherwise specified] of hand, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.31) Full-thickness skin loss [third degree, not otherwise specified] of single digit [finger (nail)] other than thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.31) Full-thickness skin loss [third degree, not otherwise specified] of single digit [finger (nail)] other than thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''944.31) Full'' AND ''thickness skin loss [third degree, not otherwise specified] of single digit [finger (nail''', NULL, + '(944.31) Full-thickness skin loss [third degree, not otherwise specified] of single digit [finger (nail)] other than thumb', '(944.31) Full-thickness skin loss [third degree, not otherwise specified] of single digit [finger (nail)] other than thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.32) Full-thickness skin loss [third degree, not otherwise specified] of thumb (nail)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.32) Full-thickness skin loss [third degree, not otherwise specified] of thumb (nail)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''944.32) Full'' AND ''thickness skin loss [third degree, not otherwise specified] of thumb (nail''', NULL, + '(944.32) Full-thickness skin loss [third degree, not otherwise specified] of thumb (nail)', '(944.32) Full-thickness skin loss [third degree, not otherwise specified] of thumb (nail)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.33) Full-thickness skin loss [third degree, not otherwise specified]of two or more digits of hand, not including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.33) Full-thickness skin loss [third degree, not otherwise specified]of two or more digits of hand, not including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.33''', NULL, + '(944.33) Full-thickness skin loss [third degree, not otherwise specified]of two or more digits of hand, not including thumb', '(944.33) Full-thickness skin loss [third degree, not otherwise specified]of two or more digits of hand, not including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.34) Full-thickness skin loss [third degree, not otherwise specified] of two or more digits of hand including thumb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.34) Full-thickness skin loss [third degree, not otherwise specified] of two or more digits of hand including thumb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.34''', NULL, + '(944.34) Full-thickness skin loss [third degree, not otherwise specified] of two or more digits of hand including thumb', '(944.34) Full-thickness skin loss [third degree, not otherwise specified] of two or more digits of hand including thumb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.35) Full-thickness skin loss [third degree, not otherwise specified] of palm of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.35) Full-thickness skin loss [third degree, not otherwise specified] of palm of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.35''', NULL, + '(944.35) Full-thickness skin loss [third degree, not otherwise specified] of palm of hand', '(944.35) Full-thickness skin loss [third degree, not otherwise specified] of palm of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.36) Full-thickness skin loss [third degree, not otherwise specified] of back of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.36) Full-thickness skin loss [third degree, not otherwise specified] of back of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.36''', NULL, + '(944.36) Full-thickness skin loss [third degree, not otherwise specified] of back of hand', '(944.36) Full-thickness skin loss [third degree, not otherwise specified] of back of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.37) Full-thickness skin loss [third degree, not otherwise specified] of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.37) Full-thickness skin loss [third degree, not otherwise specified] of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''944.37''', NULL, + '(944.37) Full-thickness skin loss [third degree, not otherwise specified] of wrist', '(944.37) Full-thickness skin loss [third degree, not otherwise specified] of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.38) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of wrist(s) and hand(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn of wrist(s) and hand(s) (944)\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\(944.38) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of wrist(s) and hand(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''944.38) Full'' AND ''thickness skin loss [third degree, not otherwise specified] of multiple sites of wrist(s) and hand(s''', NULL, + '(944.38) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of wrist(s) and hand(s)', '(944.38) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of wrist(s) and hand(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''949''', NULL, + 'Burn, unspecified site (949)', 'Burn, unspecified site (949)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.0) Burn of unspecified site, unspecified degree\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.0) Burn of unspecified site, unspecified degree\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''949.0''', NULL, + '(949.0) Burn of unspecified site, unspecified degree', '(949.0) Burn of unspecified site, unspecified degree', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.1) Erythema [first degree], unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.1) Erythema [first degree], unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''949.1''', NULL, + '(949.1) Erythema [first degree], unspecified site', '(949.1) Erythema [first degree], unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.2) Blisters, epidermal loss [second degree], unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.2) Blisters, epidermal loss [second degree], unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''949.2''', NULL, + '(949.2) Blisters, epidermal loss [second degree], unspecified site', '(949.2) Blisters, epidermal loss [second degree], unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.3) Full-thickness skin loss [third degree nos]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.3) Full-thickness skin loss [third degree nos]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''949.3''', NULL, + '(949.3) Full-thickness skin loss [third degree nos]', '(949.3) Full-thickness skin loss [third degree nos]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.4) Deep necrosis of underlying tissue [deep third degree] without mention of loss of a body part, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.4) Deep necrosis of underlying tissue [deep third degree] without mention of loss of a body part, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''949.4''', NULL, + '(949.4) Deep necrosis of underlying tissue [deep third degree] without mention of loss of a body part, unspecified', '(949.4) Deep necrosis of underlying tissue [deep third degree] without mention of loss of a body part, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burn, unspecified site (949)\(949.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''949.5''', NULL, + '(949.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, unspecified', '(949.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948''', NULL, + 'Burns classified according to extent of body surface involved (948)', 'Burns classified according to extent of body surface involved (948)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 10-19 percent of body surface (948.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 10-19 percent of body surface (948.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.1''', NULL, + 'Burn [any degree] involving 10-19 percent of body surface (948.1)', 'Burn [any degree] involving 10-19 percent of body surface (948.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 10-19 percent of body surface (948.1)\(948.10) Burn [any degree] involving 10-19 percent of body surface with third degree burn, less than 10 percent or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 10-19 percent of body surface (948.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 10-19 percent of body surface (948.1)\(948.10) Burn [any degree] involving 10-19 percent of body surface with third degree burn, less than 10 percent or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.10''', NULL, + '(948.10) Burn [any degree] involving 10-19 percent of body surface with third degree burn, less than 10 percent or unspecified', '(948.10) Burn [any degree] involving 10-19 percent of body surface with third degree burn, less than 10 percent or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 10-19 percent of body surface (948.1)\(948.11) Burn [any degree] involving 10-19 percent of body surface with third degree burn, 10-19%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 10-19 percent of body surface (948.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 10-19 percent of body surface (948.1)\(948.11) Burn [any degree] involving 10-19 percent of body surface with third degree burn, 10-19%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.11''', NULL, + '(948.11) Burn [any degree] involving 10-19 percent of body surface with third degree burn, 10-19%', '(948.11) Burn [any degree] involving 10-19 percent of body surface with third degree burn, 10-19%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 20-29 percent of body surface (948.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 20-29 percent of body surface (948.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.2''', NULL, + 'Burn [any degree] involving 20-29 percent of body surface (948.2)', 'Burn [any degree] involving 20-29 percent of body surface (948.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 20-29 percent of body surface (948.2)\(948.20) Burn [any degree] involving 20-29 percent of body surface with third degree burn, less than 10 percent or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 20-29 percent of body surface (948.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 20-29 percent of body surface (948.2)\(948.20) Burn [any degree] involving 20-29 percent of body surface with third degree burn, less than 10 percent or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.20''', NULL, + '(948.20) Burn [any degree] involving 20-29 percent of body surface with third degree burn, less than 10 percent or unspecified', '(948.20) Burn [any degree] involving 20-29 percent of body surface with third degree burn, less than 10 percent or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 20-29 percent of body surface (948.2)\(948.21) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 10-19%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 20-29 percent of body surface (948.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 20-29 percent of body surface (948.2)\(948.21) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 10-19%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.21''', NULL, + '(948.21) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 10-19%', '(948.21) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 10-19%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 20-29 percent of body surface (948.2)\(948.22) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 20-29%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 20-29 percent of body surface (948.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 20-29 percent of body surface (948.2)\(948.22) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 20-29%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.22''', NULL, + '(948.22) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 20-29%', '(948.22) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 20-29%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.3''', NULL, + 'Burn [any degree] involving 30-39 percent of body surface (948.3)', 'Burn [any degree] involving 30-39 percent of body surface (948.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\(948.30) Burn [any degree] involving 30-39 percent of body surface with third degree burn, less than 10 percent or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\(948.30) Burn [any degree] involving 30-39 percent of body surface with third degree burn, less than 10 percent or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.30''', NULL, + '(948.30) Burn [any degree] involving 30-39 percent of body surface with third degree burn, less than 10 percent or unspecified', '(948.30) Burn [any degree] involving 30-39 percent of body surface with third degree burn, less than 10 percent or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\(948.31) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 10-19%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\(948.31) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 10-19%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.31''', NULL, + '(948.31) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 10-19%', '(948.31) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 10-19%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\(948.32) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 20-29%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\(948.32) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 20-29%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.32''', NULL, + '(948.32) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 20-29%', '(948.32) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 20-29%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\(948.33) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 30-39%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 30-39 percent of body surface (948.3)\(948.33) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 30-39%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.33''', NULL, + '(948.33) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 30-39%', '(948.33) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 30-39%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.4''', NULL, + 'Burn [any degree] involving 40-49 percent of body surface (948.4)', 'Burn [any degree] involving 40-49 percent of body surface (948.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\(948.40) Burn [any degree] involving 40-49 percent of body surface with third degree burn, less than 10 percent or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\(948.40) Burn [any degree] involving 40-49 percent of body surface with third degree burn, less than 10 percent or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.40''', NULL, + '(948.40) Burn [any degree] involving 40-49 percent of body surface with third degree burn, less than 10 percent or unspecified', '(948.40) Burn [any degree] involving 40-49 percent of body surface with third degree burn, less than 10 percent or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\(948.41) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 10-19%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\(948.41) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 10-19%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.41''', NULL, + '(948.41) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 10-19%', '(948.41) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 10-19%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\(948.42) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 20-29%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\(948.42) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 20-29%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.42''', NULL, + '(948.42) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 20-29%', '(948.42) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 20-29%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\(948.43) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 30-39%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\(948.43) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 30-39%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.43''', NULL, + '(948.43) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 30-39%', '(948.43) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 30-39%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\(948.44) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 40-49%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 40-49 percent of body surface (948.4)\(948.44) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 40-49%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.44''', NULL, + '(948.44) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 40-49%', '(948.44) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 40-49%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.5''', NULL, + 'Burn [any degree] involving 50-59 percent of body surface (948.5)', 'Burn [any degree] involving 50-59 percent of body surface (948.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.50) Burn [any degree] involving 50-59 percent of body surface with third degree burn, less than 10 percent or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.50) Burn [any degree] involving 50-59 percent of body surface with third degree burn, less than 10 percent or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.50''', NULL, + '(948.50) Burn [any degree] involving 50-59 percent of body surface with third degree burn, less than 10 percent or unspecified', '(948.50) Burn [any degree] involving 50-59 percent of body surface with third degree burn, less than 10 percent or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.51) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 10-19%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.51) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 10-19%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.51''', NULL, + '(948.51) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 10-19%', '(948.51) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 10-19%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.52) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 20-29%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.52) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 20-29%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.52''', NULL, + '(948.52) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 20-29%', '(948.52) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 20-29%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.53) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 30-39%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.53) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 30-39%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.53''', NULL, + '(948.53) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 30-39%', '(948.53) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 30-39%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.54) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 40-49%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.54) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 40-49%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.54''', NULL, + '(948.54) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 40-49%', '(948.54) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 40-49%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.55) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 50-59%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 50-59 percent of body surface (948.5)\(948.55) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 50-59%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.55''', NULL, + '(948.55) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 50-59%', '(948.55) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 50-59%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.6''', NULL, + 'Burn [any degree] involving 60-69 percent of body surface (948.6)', 'Burn [any degree] involving 60-69 percent of body surface (948.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.60) Burn [any degree] involving 60-69 percent of body surface with third degree burn, less than 10 percent or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.60) Burn [any degree] involving 60-69 percent of body surface with third degree burn, less than 10 percent or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.60''', NULL, + '(948.60) Burn [any degree] involving 60-69 percent of body surface with third degree burn, less than 10 percent or unspecified', '(948.60) Burn [any degree] involving 60-69 percent of body surface with third degree burn, less than 10 percent or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.61) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 10-19%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.61) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 10-19%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.61''', NULL, + '(948.61) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 10-19%', '(948.61) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 10-19%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.62) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 20-29%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.62) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 20-29%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.62''', NULL, + '(948.62) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 20-29%', '(948.62) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 20-29%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.63) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 30-39%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.63) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 30-39%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.63''', NULL, + '(948.63) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 30-39%', '(948.63) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 30-39%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.64) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 40-49%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.64) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 40-49%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.64''', NULL, + '(948.64) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 40-49%', '(948.64) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 40-49%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.65) Burn (any degree) involving 60-69 percent of body surface with third degree burn, 50-59%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.65) Burn (any degree) involving 60-69 percent of body surface with third degree burn, 50-59%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.65) Burn (any degree''', NULL, + '(948.65) Burn (any degree) involving 60-69 percent of body surface with third degree burn, 50-59%', '(948.65) Burn (any degree) involving 60-69 percent of body surface with third degree burn, 50-59%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.66) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 60-69%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 60-69 percent of body surface (948.6)\(948.66) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 60-69%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.66''', NULL, + '(948.66) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 60-69%', '(948.66) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 60-69%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.7''', NULL, + 'Burn [any degree] involving 70-79 percent of body surface (948.7)', 'Burn [any degree] involving 70-79 percent of body surface (948.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.70) Burn [any degree] involving 70-79 percent of body surface with third degree burn, less than 10 percent or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.70) Burn [any degree] involving 70-79 percent of body surface with third degree burn, less than 10 percent or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.70''', NULL, + '(948.70) Burn [any degree] involving 70-79 percent of body surface with third degree burn, less than 10 percent or unspecified', '(948.70) Burn [any degree] involving 70-79 percent of body surface with third degree burn, less than 10 percent or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.71) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 10-19%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.71) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 10-19%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.71''', NULL, + '(948.71) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 10-19%', '(948.71) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 10-19%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.72) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 20-29%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.72) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 20-29%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.72''', NULL, + '(948.72) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 20-29%', '(948.72) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 20-29%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.73) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 30-39%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.73) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 30-39%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.73''', NULL, + '(948.73) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 30-39%', '(948.73) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 30-39%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.74) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 40-49%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.74) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 40-49%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.74''', NULL, + '(948.74) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 40-49%', '(948.74) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 40-49%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.75) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 50-59%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.75) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 50-59%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.75''', NULL, + '(948.75) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 50-59%', '(948.75) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 50-59%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.76) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 60-69%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.76) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 60-69%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.76''', NULL, + '(948.76) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 60-69%', '(948.76) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 60-69%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.77) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 70-79%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 70-79 percent of body surface (948.7)\(948.77) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 70-79%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.77''', NULL, + '(948.77) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 70-79%', '(948.77) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 70-79%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.8''', NULL, + 'Burn [any degree] involving 80-89 percent of body surface (948.8)', 'Burn [any degree] involving 80-89 percent of body surface (948.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.80) Burn [any degree] involving 80-89 percent of body surface with third degree burn, less than 10 percent or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.80) Burn [any degree] involving 80-89 percent of body surface with third degree burn, less than 10 percent or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.80''', NULL, + '(948.80) Burn [any degree] involving 80-89 percent of body surface with third degree burn, less than 10 percent or unspecified', '(948.80) Burn [any degree] involving 80-89 percent of body surface with third degree burn, less than 10 percent or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.81) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 10-19%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.81) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 10-19%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.81''', NULL, + '(948.81) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 10-19%', '(948.81) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 10-19%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.82) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 20-29%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.82) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 20-29%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.82''', NULL, + '(948.82) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 20-29%', '(948.82) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 20-29%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.83) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 30-39%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.83) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 30-39%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.83''', NULL, + '(948.83) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 30-39%', '(948.83) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 30-39%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.84) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 40-49%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.84) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 40-49%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.84''', NULL, + '(948.84) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 40-49%', '(948.84) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 40-49%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.85) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 50-59%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.85) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 50-59%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.85''', NULL, + '(948.85) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 50-59%', '(948.85) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 50-59%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.86) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 60-69%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.86) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 60-69%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.86''', NULL, + '(948.86) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 60-69%', '(948.86) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 60-69%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.87) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 70-79%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.87) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 70-79%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.87''', NULL, + '(948.87) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 70-79%', '(948.87) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 70-79%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.88) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 80-89%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 80-89 percent of body surface (948.8)\(948.88) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 80-89%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.88''', NULL, + '(948.88) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 80-89%', '(948.88) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 80-89%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.9''', NULL, + 'Burn [any degree] involving 90 percent or more of body surface (948.9)', 'Burn [any degree] involving 90 percent or more of body surface (948.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.90) Burn [any degree] involving 90 percent or more of body surface with third degree burn, less than 10 percent or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.90) Burn [any degree] involving 90 percent or more of body surface with third degree burn, less than 10 percent or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.90''', NULL, + '(948.90) Burn [any degree] involving 90 percent or more of body surface with third degree burn, less than 10 percent or unspecified', '(948.90) Burn [any degree] involving 90 percent or more of body surface with third degree burn, less than 10 percent or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.91) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 10-19%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.91) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 10-19%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.91''', NULL, + '(948.91) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 10-19%', '(948.91) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 10-19%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.92) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 20-29%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.92) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 20-29%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.92''', NULL, + '(948.92) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 20-29%', '(948.92) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 20-29%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.93) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 30-39%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.93) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 30-39%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.93''', NULL, + '(948.93) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 30-39%', '(948.93) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 30-39%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.94) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 40-49%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.94) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 40-49%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.94''', NULL, + '(948.94) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 40-49%', '(948.94) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 40-49%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.95) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 50-59%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.95) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 50-59%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.95''', NULL, + '(948.95) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 50-59%', '(948.95) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 50-59%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.96) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 60-69%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.96) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 60-69%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.96''', NULL, + '(948.96) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 60-69%', '(948.96) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 60-69%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.97) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 70-79%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.97) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 70-79%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.97''', NULL, + '(948.97) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 70-79%', '(948.97) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 70-79%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.98) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 80-89%\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.98) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 80-89%\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.98''', NULL, + '(948.98) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 80-89%', '(948.98) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 80-89%', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.99) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 90% or more of body surface\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving 90 percent or more of body surface (948.9)\(948.99) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 90% or more of body surface\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.99''', NULL, + '(948.99) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 90% or more of body surface', '(948.99) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 90% or more of body surface', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving less than 10 percent of body surface (948.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving less than 10 percent of body surface (948.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.0''', NULL, + 'Burn [any degree] involving less than 10 percent of body surface (948.0)', 'Burn [any degree] involving less than 10 percent of body surface (948.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving less than 10 percent of body surface (948.0)\(948.00) Burn [any degree] involving less than 10 percent of body surface with third degree burn, less than 10 percent or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving less than 10 percent of body surface (948.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns classified according to extent of body surface involved (948)\Burn [any degree] involving less than 10 percent of body surface (948.0)\(948.00) Burn [any degree] involving less than 10 percent of body surface with third degree burn, less than 10 percent or unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''948.00''', NULL, + '(948.00) Burn [any degree] involving less than 10 percent of body surface with third degree burn, less than 10 percent or unspecified', '(948.00) Burn [any degree] involving less than 10 percent of body surface with third degree burn, less than 10 percent or unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''946''', NULL, + 'Burns of multiple specified sites (946)', 'Burns of multiple specified sites (946)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.0) Burns of multiple specified sites, unspecified degree\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.0) Burns of multiple specified sites, unspecified degree\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''946.0''', NULL, + '(946.0) Burns of multiple specified sites, unspecified degree', '(946.0) Burns of multiple specified sites, unspecified degree', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.1) Erythema [first degree] of multiple specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.1) Erythema [first degree] of multiple specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''946.1''', NULL, + '(946.1) Erythema [first degree] of multiple specified sites', '(946.1) Erythema [first degree] of multiple specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.2) Blisters, epidermal loss [second degree] of multiple specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.2) Blisters, epidermal loss [second degree] of multiple specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''946.2''', NULL, + '(946.2) Blisters, epidermal loss [second degree] of multiple specified sites', '(946.2) Blisters, epidermal loss [second degree] of multiple specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.3) Full-thickness skin loss [third degree NOS] of multiple specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.3) Full-thickness skin loss [third degree NOS] of multiple specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''946.3''', NULL, + '(946.3) Full-thickness skin loss [third degree NOS] of multiple specified sites', '(946.3) Full-thickness skin loss [third degree NOS] of multiple specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.4) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.4) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''946.4''', NULL, + '(946.4) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple specified sites', '(946.4) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Burns (940-949.99)\Burns of multiple specified sites (946)\(946.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''946.5''', NULL, + '(946.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple specified sites', '(946.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''958'' AND ''959.99''', NULL, + 'Certain traumatic complications and unspecified injuries (958-959.99)', 'Certain traumatic complications and unspecified injuries (958-959.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958''', NULL, + 'Certain early complications of trauma (958)', 'Certain early complications of trauma (958)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.0) Air embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.0) Air embolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.0''', NULL, + '(958.0) Air embolism', '(958.0) Air embolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.1) Fat embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.1) Fat embolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.1''', NULL, + '(958.1) Fat embolism', '(958.1) Fat embolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.2) Secondary and recurrent hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.2) Secondary and recurrent hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.2''', NULL, + '(958.2) Secondary and recurrent hemorrhage', '(958.2) Secondary and recurrent hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.3) Posttraumatic wound infection not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.3) Posttraumatic wound infection not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.3''', NULL, + '(958.3) Posttraumatic wound infection not elsewhere classified', '(958.3) Posttraumatic wound infection not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.4) Traumatic shock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.4) Traumatic shock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.4''', NULL, + '(958.4) Traumatic shock', '(958.4) Traumatic shock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.5) Traumatic anuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.5) Traumatic anuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.5''', NULL, + '(958.5) Traumatic anuria', '(958.5) Traumatic anuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.6) Volkmann''s ischemic contracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.6) Volkmann''s ischemic contracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.6''', NULL, + '(958.6) Volkmann''s ischemic contracture', '(958.6) Volkmann''s ischemic contracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.7) Traumatic subcutaneous emphysema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.7) Traumatic subcutaneous emphysema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.7''', NULL, + '(958.7) Traumatic subcutaneous emphysema', '(958.7) Traumatic subcutaneous emphysema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.8) Other early complications of trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\(958.8) Other early complications of trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.8''', NULL, + '(958.8) Other early complications of trauma', '(958.8) Other early complications of trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.9''', NULL, + 'Traumatic compartment syndrome (958.9)', 'Traumatic compartment syndrome (958.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\(958.90) Compartment syndrome, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\(958.90) Compartment syndrome, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.90''', NULL, + '(958.90) Compartment syndrome, unspecified', '(958.90) Compartment syndrome, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\(958.91) Traumatic compartment syndrome of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\(958.91) Traumatic compartment syndrome of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.91''', NULL, + '(958.91) Traumatic compartment syndrome of upper extremity', '(958.91) Traumatic compartment syndrome of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\(958.92) Traumatic compartment syndrome of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\(958.92) Traumatic compartment syndrome of lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.92''', NULL, + '(958.92) Traumatic compartment syndrome of lower extremity', '(958.92) Traumatic compartment syndrome of lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\(958.93) Traumatic compartment syndrome of abdomen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\(958.93) Traumatic compartment syndrome of abdomen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.93''', NULL, + '(958.93) Traumatic compartment syndrome of abdomen', '(958.93) Traumatic compartment syndrome of abdomen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\(958.99) Traumatic compartment syndrome of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Certain early complications of trauma (958)\Traumatic compartment syndrome (958.9)\(958.99) Traumatic compartment syndrome of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''958.99''', NULL, + '(958.99) Traumatic compartment syndrome of other sites', '(958.99) Traumatic compartment syndrome of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959''', NULL, + 'Injury, other and unspecified (959)', 'Injury, other and unspecified (959)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.2) Shoulder and upper arm injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.2) Shoulder and upper arm injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.2''', NULL, + '(959.2) Shoulder and upper arm injury', '(959.2) Shoulder and upper arm injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.3) Elbow, forearm, and wrist injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.3) Elbow, forearm, and wrist injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.3''', NULL, + '(959.3) Elbow, forearm, and wrist injury', '(959.3) Elbow, forearm, and wrist injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.4) Hand, except finger injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.4) Hand, except finger injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.4''', NULL, + '(959.4) Hand, except finger injury', '(959.4) Hand, except finger injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.5) Finger injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.5) Finger injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.5''', NULL, + '(959.5) Finger injury', '(959.5) Finger injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.6) Hip and thigh injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.6) Hip and thigh injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.6''', NULL, + '(959.6) Hip and thigh injury', '(959.6) Hip and thigh injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.7) Knee, leg, ankle, and foot injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.7) Knee, leg, ankle, and foot injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.7''', NULL, + '(959.7) Knee, leg, ankle, and foot injury', '(959.7) Knee, leg, ankle, and foot injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.8) Other specified sites, including multiple injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.8) Other specified sites, including multiple injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.8''', NULL, + '(959.8) Other specified sites, including multiple injury', '(959.8) Other specified sites, including multiple injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.9) Unspecified site injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\(959.9) Unspecified site injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.9''', NULL, + '(959.9) Unspecified site injury', '(959.9) Unspecified site injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to head, face, and neck (959.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to head, face, and neck (959.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.0''', NULL, + 'Other and unspecified injury to head, face, and neck (959.0)', 'Other and unspecified injury to head, face, and neck (959.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to head, face, and neck (959.0)\(959.01) Head injury, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to head, face, and neck (959.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to head, face, and neck (959.0)\(959.01) Head injury, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.01''', NULL, + '(959.01) Head injury, unspecified', '(959.01) Head injury, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to head, face, and neck (959.0)\(959.09) Injury of face and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to head, face, and neck (959.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to head, face, and neck (959.0)\(959.09) Injury of face and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.09''', NULL, + '(959.09) Injury of face and neck', '(959.09) Injury of face and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.1''', NULL, + 'Other and unspecified injury to trunk (959.1)', 'Other and unspecified injury to trunk (959.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\(959.11) Other injury of chest wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\(959.11) Other injury of chest wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.11''', NULL, + '(959.11) Other injury of chest wall', '(959.11) Other injury of chest wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\(959.12) Other injury of abdomen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\(959.12) Other injury of abdomen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.12''', NULL, + '(959.12) Other injury of abdomen', '(959.12) Other injury of abdomen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\(959.13) Fracture of corpus cavernosum penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\(959.13) Fracture of corpus cavernosum penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.13''', NULL, + '(959.13) Fracture of corpus cavernosum penis', '(959.13) Fracture of corpus cavernosum penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\(959.14) Other injury of external genitals\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\(959.14) Other injury of external genitals\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.14''', NULL, + '(959.14) Other injury of external genitals', '(959.14) Other injury of external genitals', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\(959.19) Other injury of other sites of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Certain traumatic complications and unspecified injuries (958-959.99)\Injury, other and unspecified (959)\Other and unspecified injury to trunk (959.1)\(959.19) Other injury of other sites of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''959.19''', NULL, + '(959.19) Other injury of other sites of trunk', '(959.19) Other injury of other sites of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''996'' AND ''999.99''', NULL, + 'Complications of surgical and medical care, not elsewhere classified (996-999.99)', 'Complications of surgical and medical care, not elsewhere classified (996-999.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997''', NULL, + 'Complications affecting specified body systems, not elsewhere classified (997)', 'Complications affecting specified body systems, not elsewhere classified (997)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\(997.1) Cardiac complications, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\(997.1) Cardiac complications, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.1''', NULL, + '(997.1) Cardiac complications, not elsewhere classified', '(997.1) Cardiac complications, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\(997.2) Peripheral vascular complications, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\(997.2) Peripheral vascular complications, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.2''', NULL, + '(997.2) Peripheral vascular complications, not elsewhere classified', '(997.2) Peripheral vascular complications, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\(997.5) Urinary complications, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\(997.5) Urinary complications, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.5''', NULL, + '(997.5) Urinary complications, not elsewhere classified', '(997.5) Urinary complications, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.6''', NULL, + 'Amputation stump complication (997.6)', 'Amputation stump complication (997.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\(997.60) Unspecified complication of amputation stump\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\(997.60) Unspecified complication of amputation stump\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.60''', NULL, + '(997.60) Unspecified complication of amputation stump', '(997.60) Unspecified complication of amputation stump', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\(997.61) Neuroma of amputation stump\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\(997.61) Neuroma of amputation stump\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.61''', NULL, + '(997.61) Neuroma of amputation stump', '(997.61) Neuroma of amputation stump', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\(997.62) Infection (chronic) of amputation stump\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\(997.62) Infection (chronic) of amputation stump\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.62) Infection (chronic''', NULL, + '(997.62) Infection (chronic) of amputation stump', '(997.62) Infection (chronic) of amputation stump', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\(997.69) Other amputation stump complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Amputation stump complication (997.6)\(997.69) Other amputation stump complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.69''', NULL, + '(997.69) Other amputation stump complication', '(997.69) Other amputation stump complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.0''', NULL, + 'Central nervous system complications, not elsewhere classified (997.0)', 'Central nervous system complications, not elsewhere classified (997.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\(997.00) Nervous system complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\(997.00) Nervous system complication, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.00''', NULL, + '(997.00) Nervous system complication, unspecified', '(997.00) Nervous system complication, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\(997.01) Central nervous system complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\(997.01) Central nervous system complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.01''', NULL, + '(997.01) Central nervous system complication', '(997.01) Central nervous system complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\(997.02) Iatrogenic cerebrovascular infarction or hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\(997.02) Iatrogenic cerebrovascular infarction or hemorrhage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.02''', NULL, + '(997.02) Iatrogenic cerebrovascular infarction or hemorrhage', '(997.02) Iatrogenic cerebrovascular infarction or hemorrhage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\(997.09) Other nervous system complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Central nervous system complications, not elsewhere classified (997.0)\(997.09) Other nervous system complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.09''', NULL, + '(997.09) Other nervous system complications', '(997.09) Other nervous system complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Complications affecting other specified body systems, not elsewhere classified (997.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Complications affecting other specified body systems, not elsewhere classified (997.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.9''', NULL, + 'Complications affecting other specified body systems, not elsewhere classified (997.9)', 'Complications affecting other specified body systems, not elsewhere classified (997.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Complications affecting other specified body systems, not elsewhere classified (997.9)\(997.91) Complications affecting other specified body systems, not elsewhere classified, hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Complications affecting other specified body systems, not elsewhere classified (997.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Complications affecting other specified body systems, not elsewhere classified (997.9)\(997.91) Complications affecting other specified body systems, not elsewhere classified, hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.91''', NULL, + '(997.91) Complications affecting other specified body systems, not elsewhere classified, hypertension', '(997.91) Complications affecting other specified body systems, not elsewhere classified, hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Complications affecting other specified body systems, not elsewhere classified (997.9)\(997.99) Complications affecting other specified body systems, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Complications affecting other specified body systems, not elsewhere classified (997.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Complications affecting other specified body systems, not elsewhere classified (997.9)\(997.99) Complications affecting other specified body systems, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.99''', NULL, + '(997.99) Complications affecting other specified body systems, not elsewhere classified', '(997.99) Complications affecting other specified body systems, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Digestive system complications (997.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Digestive system complications (997.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.4''', NULL, + 'Digestive system complications (997.4)', 'Digestive system complications (997.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Digestive system complications (997.4)\(997.41) Retained cholelithiasis following cholecystectomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Digestive system complications (997.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Digestive system complications (997.4)\(997.41) Retained cholelithiasis following cholecystectomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.41''', NULL, + '(997.41) Retained cholelithiasis following cholecystectomy', '(997.41) Retained cholelithiasis following cholecystectomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Digestive system complications (997.4)\(997.49) Other digestive system complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Digestive system complications (997.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Digestive system complications (997.4)\(997.49) Other digestive system complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.49''', NULL, + '(997.49) Other digestive system complications', '(997.49) Other digestive system complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Respiratory complications, not elsewhere classified (997.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Respiratory complications, not elsewhere classified (997.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.3''', NULL, + 'Respiratory complications, not elsewhere classified (997.3)', 'Respiratory complications, not elsewhere classified (997.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Respiratory complications, not elsewhere classified (997.3)\(997.31) Ventilator associated pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Respiratory complications, not elsewhere classified (997.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Respiratory complications, not elsewhere classified (997.3)\(997.31) Ventilator associated pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.31''', NULL, + '(997.31) Ventilator associated pneumonia', '(997.31) Ventilator associated pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Respiratory complications, not elsewhere classified (997.3)\(997.32) Postprocedural aspiration pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Respiratory complications, not elsewhere classified (997.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Respiratory complications, not elsewhere classified (997.3)\(997.32) Postprocedural aspiration pneumonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.32''', NULL, + '(997.32) Postprocedural aspiration pneumonia', '(997.32) Postprocedural aspiration pneumonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Respiratory complications, not elsewhere classified (997.3)\(997.39) Other respiratory complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Respiratory complications, not elsewhere classified (997.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Respiratory complications, not elsewhere classified (997.3)\(997.39) Other respiratory complications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.39''', NULL, + '(997.39) Other respiratory complications', '(997.39) Other respiratory complications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Vascular complications of other vessels (997.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Vascular complications of other vessels (997.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.7''', NULL, + 'Vascular complications of other vessels (997.7)', 'Vascular complications of other vessels (997.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Vascular complications of other vessels (997.7)\(997.71) Vascular complications of mesenteric artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Vascular complications of other vessels (997.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Vascular complications of other vessels (997.7)\(997.71) Vascular complications of mesenteric artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.71''', NULL, + '(997.71) Vascular complications of mesenteric artery', '(997.71) Vascular complications of mesenteric artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Vascular complications of other vessels (997.7)\(997.72) Vascular complications of renal artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Vascular complications of other vessels (997.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Vascular complications of other vessels (997.7)\(997.72) Vascular complications of renal artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.72''', NULL, + '(997.72) Vascular complications of renal artery', '(997.72) Vascular complications of renal artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Vascular complications of other vessels (997.7)\(997.79) Vascular complications of other vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Vascular complications of other vessels (997.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications affecting specified body systems, not elsewhere classified (997)\Vascular complications of other vessels (997.7)\(997.79) Vascular complications of other vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''997.79''', NULL, + '(997.79) Vascular complications of other vessels', '(997.79) Vascular complications of other vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999''', NULL, + 'Complications of medical care, not elsewhere classified (999)', 'Complications of medical care, not elsewhere classified (999)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\(999.0) Generalized vaccinia as a complication of medical care, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\(999.0) Generalized vaccinia as a complication of medical care, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.0''', NULL, + '(999.0) Generalized vaccinia as a complication of medical care, not elsewhere classified', '(999.0) Generalized vaccinia as a complication of medical care, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\(999.1) Air embolism as a complication of medical care, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\(999.1) Air embolism as a complication of medical care, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.1''', NULL, + '(999.1) Air embolism as a complication of medical care, not elsewhere classified', '(999.1) Air embolism as a complication of medical care, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\(999.2) Other vascular complications of medical care, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\(999.2) Other vascular complications of medical care, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.2''', NULL, + '(999.2) Other vascular complications of medical care, not elsewhere classified', '(999.2) Other vascular complications of medical care, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\(999.9) Other and unspecified complications of medical care, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\(999.9) Other and unspecified complications of medical care, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.9''', NULL, + '(999.9) Other and unspecified complications of medical care, not elsewhere classified', '(999.9) Other and unspecified complications of medical care, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.6''', NULL, + 'ABO incompatibility reaction due to transfusion of blood or blood products (999.6)', 'ABO incompatibility reaction due to transfusion of blood or blood products (999.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\(999.60) ABO incompatibility reaction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\(999.60) ABO incompatibility reaction, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.60''', NULL, + '(999.60) ABO incompatibility reaction, unspecified', '(999.60) ABO incompatibility reaction, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\(999.69) Other ABO incompatibility reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\(999.69) Other ABO incompatibility reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.69''', NULL, + '(999.69) Other ABO incompatibility reaction', '(999.69) Other ABO incompatibility reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Anaphylactic reaction due to serum, not elsewhere classified (999.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Anaphylactic reaction due to serum, not elsewhere classified (999.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.4''', NULL, + 'Anaphylactic reaction due to serum, not elsewhere classified (999.4)', 'Anaphylactic reaction due to serum, not elsewhere classified (999.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.3''', NULL, + 'Other infection due to medical care, not elsewhere classified (999.3)', 'Other infection due to medical care, not elsewhere classified (999.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\(999.31) Other and unspecified infection due to central venous catheter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\(999.31) Other and unspecified infection due to central venous catheter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.31''', NULL, + '(999.31) Other and unspecified infection due to central venous catheter', '(999.31) Other and unspecified infection due to central venous catheter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\(999.32) Bloodstream infection due to central venous catheter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\(999.32) Bloodstream infection due to central venous catheter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.32''', NULL, + '(999.32) Bloodstream infection due to central venous catheter', '(999.32) Bloodstream infection due to central venous catheter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\(999.33) Local infection due to central venous catheter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\(999.33) Local infection due to central venous catheter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.33''', NULL, + '(999.33) Local infection due to central venous catheter', '(999.33) Local infection due to central venous catheter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\(999.39) Infection following other infusion, injection, transfusion, or vaccination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infection due to medical care, not elsewhere classified (999.3)\(999.39) Infection following other infusion, injection, transfusion, or vaccination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.39''', NULL, + '(999.39) Infection following other infusion, injection, transfusion, or vaccination', '(999.39) Infection following other infusion, injection, transfusion, or vaccination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.8''', NULL, + 'Other infusion and transfusion reaction, not elsewhere classified (999.8)', 'Other infusion and transfusion reaction, not elsewhere classified (999.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.80) Transfusion reaction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.80) Transfusion reaction, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.80''', NULL, + '(999.80) Transfusion reaction, unspecified', '(999.80) Transfusion reaction, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.81) Extravasation of vesicant chemotherapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.81) Extravasation of vesicant chemotherapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.81''', NULL, + '(999.81) Extravasation of vesicant chemotherapy', '(999.81) Extravasation of vesicant chemotherapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.82) Extravasation of other vesicant agent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.82) Extravasation of other vesicant agent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.82''', NULL, + '(999.82) Extravasation of other vesicant agent', '(999.82) Extravasation of other vesicant agent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.83) Hemolytic transfusion reaction, incompatibility unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.83) Hemolytic transfusion reaction, incompatibility unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.83''', NULL, + '(999.83) Hemolytic transfusion reaction, incompatibility unspecified', '(999.83) Hemolytic transfusion reaction, incompatibility unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.85) Delayed hemolytic transfusion reaction, incompatibility unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.85) Delayed hemolytic transfusion reaction, incompatibility unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.85''', NULL, + '(999.85) Delayed hemolytic transfusion reaction, incompatibility unspecified', '(999.85) Delayed hemolytic transfusion reaction, incompatibility unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.88) Other infusion reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.88) Other infusion reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.88''', NULL, + '(999.88) Other infusion reaction', '(999.88) Other infusion reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.89) Other transfusion reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other infusion and transfusion reaction, not elsewhere classified (999.8)\(999.89) Other transfusion reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.89''', NULL, + '(999.89) Other transfusion reaction', '(999.89) Other transfusion reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other serum reaction, not elsewhere classified (999.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other serum reaction, not elsewhere classified (999.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.5''', NULL, + 'Other serum reaction, not elsewhere classified (999.5)', 'Other serum reaction, not elsewhere classified (999.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other serum reaction, not elsewhere classified (999.5)\(999.52) Other serum reaction due to vaccination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other serum reaction, not elsewhere classified (999.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other serum reaction, not elsewhere classified (999.5)\(999.52) Other serum reaction due to vaccination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.52''', NULL, + '(999.52) Other serum reaction due to vaccination', '(999.52) Other serum reaction due to vaccination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other serum reaction, not elsewhere classified (999.5)\(999.59) Other serum reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other serum reaction, not elsewhere classified (999.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Other serum reaction, not elsewhere classified (999.5)\(999.59) Other serum reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.59''', NULL, + '(999.59) Other serum reaction', '(999.59) Other serum reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products (999.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products (999.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.7''', NULL, + 'Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products (999.7)', 'Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products (999.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products (999.7)\(999.70) Rh incompatibility reaction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products (999.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications of medical care, not elsewhere classified (999)\Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products (999.7)\(999.70) Rh incompatibility reaction, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''999.70''', NULL, + '(999.70) Rh incompatibility reaction, unspecified', '(999.70) Rh incompatibility reaction, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996''', NULL, + 'Complications peculiar to certain specified procedures (996)', 'Complications peculiar to certain specified procedures (996)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\(996.1) Mechanical complication of other vascular device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\(996.1) Mechanical complication of other vascular device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.1''', NULL, + '(996.1) Mechanical complication of other vascular device, implant, and graft', '(996.1) Mechanical complication of other vascular device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\(996.2) Mechanical complication of nervous system device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\(996.2) Mechanical complication of nervous system device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.2''', NULL, + '(996.2) Mechanical complication of nervous system device, implant, and graft', '(996.2) Mechanical complication of nervous system device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.9''', NULL, + 'Complications of reattached extremity or body part (996.9)', 'Complications of reattached extremity or body part (996.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.90) Complications of unspecified reattached extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.90) Complications of unspecified reattached extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.90''', NULL, + '(996.90) Complications of unspecified reattached extremity', '(996.90) Complications of unspecified reattached extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.91) Complications of reattached forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.91) Complications of reattached forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.91''', NULL, + '(996.91) Complications of reattached forearm', '(996.91) Complications of reattached forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.92) Complications of reattached hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.92) Complications of reattached hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.92''', NULL, + '(996.92) Complications of reattached hand', '(996.92) Complications of reattached hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.93) Complications of reattached finger(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.93) Complications of reattached finger(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.93) Complications of reattached finger(s''', NULL, + '(996.93) Complications of reattached finger(s)', '(996.93) Complications of reattached finger(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.94) Complications of reattached upper extremity, other and unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.94) Complications of reattached upper extremity, other and unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.94''', NULL, + '(996.94) Complications of reattached upper extremity, other and unspecified', '(996.94) Complications of reattached upper extremity, other and unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.95) Complication of reattached foot and toe(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.95) Complication of reattached foot and toe(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.95) Complication of reattached foot and toe(s''', NULL, + '(996.95) Complication of reattached foot and toe(s)', '(996.95) Complication of reattached foot and toe(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.96) Complication of reattached lower extremity, other and unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.96) Complication of reattached lower extremity, other and unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.96''', NULL, + '(996.96) Complication of reattached lower extremity, other and unspecified', '(996.96) Complication of reattached lower extremity, other and unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.99) Complication of other specified reattached body part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of reattached extremity or body part (996.9)\(996.99) Complication of other specified reattached body part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.99''', NULL, + '(996.99) Complication of other specified reattached body part', '(996.99) Complication of other specified reattached body part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.8''', NULL, + 'Complications of transplanted organ (996.8)', 'Complications of transplanted organ (996.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.80) Complications of transplanted organ, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.80) Complications of transplanted organ, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.80''', NULL, + '(996.80) Complications of transplanted organ, unspecified', '(996.80) Complications of transplanted organ, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.81) Complications of transplanted kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.81) Complications of transplanted kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.81''', NULL, + '(996.81) Complications of transplanted kidney', '(996.81) Complications of transplanted kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.82) Complications of transplanted liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.82) Complications of transplanted liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.82''', NULL, + '(996.82) Complications of transplanted liver', '(996.82) Complications of transplanted liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.83) Complications of transplanted heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.83) Complications of transplanted heart\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.83''', NULL, + '(996.83) Complications of transplanted heart', '(996.83) Complications of transplanted heart', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.84) Complications of transplanted lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.84) Complications of transplanted lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.84''', NULL, + '(996.84) Complications of transplanted lung', '(996.84) Complications of transplanted lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.85) Complications of transplanted bone marrow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.85) Complications of transplanted bone marrow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.85''', NULL, + '(996.85) Complications of transplanted bone marrow', '(996.85) Complications of transplanted bone marrow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.86) Complications of transplanted pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.86) Complications of transplanted pancreas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.86''', NULL, + '(996.86) Complications of transplanted pancreas', '(996.86) Complications of transplanted pancreas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.87) Complications of transplanted intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.87) Complications of transplanted intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.87''', NULL, + '(996.87) Complications of transplanted intestine', '(996.87) Complications of transplanted intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.88) Complications of transplanted organ, stem cell\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.88) Complications of transplanted organ, stem cell\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.88''', NULL, + '(996.88) Complications of transplanted organ, stem cell', '(996.88) Complications of transplanted organ, stem cell', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.89) Complications of other specified transplanted organ\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Complications of transplanted organ (996.8)\(996.89) Complications of other specified transplanted organ\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.89''', NULL, + '(996.89) Complications of other specified transplanted organ', '(996.89) Complications of other specified transplanted organ', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.6''', NULL, + 'Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)', 'Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.60) Infection and inflammatory reaction due to unspecified device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.60) Infection and inflammatory reaction due to unspecified device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.60''', NULL, + '(996.60) Infection and inflammatory reaction due to unspecified device, implant, and graft', '(996.60) Infection and inflammatory reaction due to unspecified device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.61) Infection and inflammatory reaction due to cardiac device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.61) Infection and inflammatory reaction due to cardiac device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.61''', NULL, + '(996.61) Infection and inflammatory reaction due to cardiac device, implant, and graft', '(996.61) Infection and inflammatory reaction due to cardiac device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.62) Infection and inflammatory reaction due to other vascular device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.62) Infection and inflammatory reaction due to other vascular device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.62''', NULL, + '(996.62) Infection and inflammatory reaction due to other vascular device, implant, and graft', '(996.62) Infection and inflammatory reaction due to other vascular device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.63) Infection and inflammatory reaction due to nervous system device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.63) Infection and inflammatory reaction due to nervous system device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.63''', NULL, + '(996.63) Infection and inflammatory reaction due to nervous system device, implant, and graft', '(996.63) Infection and inflammatory reaction due to nervous system device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.64) Infection and inflammatory reaction due to indwelling urinary catheter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.64) Infection and inflammatory reaction due to indwelling urinary catheter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.64''', NULL, + '(996.64) Infection and inflammatory reaction due to indwelling urinary catheter', '(996.64) Infection and inflammatory reaction due to indwelling urinary catheter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.65) Infection and inflammatory reaction due to other genitourinary device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.65) Infection and inflammatory reaction due to other genitourinary device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.65''', NULL, + '(996.65) Infection and inflammatory reaction due to other genitourinary device, implant, and graft', '(996.65) Infection and inflammatory reaction due to other genitourinary device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.66) Infection and inflammatory reaction due to internal joint prosthesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.66) Infection and inflammatory reaction due to internal joint prosthesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.66''', NULL, + '(996.66) Infection and inflammatory reaction due to internal joint prosthesis', '(996.66) Infection and inflammatory reaction due to internal joint prosthesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.67) Infection and inflammatory reaction due to other internal orthopedic device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.67) Infection and inflammatory reaction due to other internal orthopedic device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.67''', NULL, + '(996.67) Infection and inflammatory reaction due to other internal orthopedic device, implant, and graft', '(996.67) Infection and inflammatory reaction due to other internal orthopedic device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.68) Infection and inflammatory reaction due to peritoneal dialysis catheter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.68) Infection and inflammatory reaction due to peritoneal dialysis catheter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.68''', NULL, + '(996.68) Infection and inflammatory reaction due to peritoneal dialysis catheter', '(996.68) Infection and inflammatory reaction due to peritoneal dialysis catheter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.69) Infection and inflammatory reaction due to other internal prosthetic device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\(996.69) Infection and inflammatory reaction due to other internal prosthetic device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.69''', NULL, + '(996.69) Infection and inflammatory reaction due to other internal prosthetic device, implant, and graft', '(996.69) Infection and inflammatory reaction due to other internal prosthetic device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.0''', NULL, + 'Mechanical complication of cardiac device, implant, and graft (996.0)', 'Mechanical complication of cardiac device, implant, and graft (996.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.00) Mechanical complication of unspecified cardiac device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.00) Mechanical complication of unspecified cardiac device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.00''', NULL, + '(996.00) Mechanical complication of unspecified cardiac device, implant, and graft', '(996.00) Mechanical complication of unspecified cardiac device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.01) Mechanical complication due to cardiac pacemaker (electrode)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.01) Mechanical complication due to cardiac pacemaker (electrode)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.01) Mechanical complication due to cardiac pacemaker (electrode''', NULL, + '(996.01) Mechanical complication due to cardiac pacemaker (electrode)', '(996.01) Mechanical complication due to cardiac pacemaker (electrode)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.02) Mechanical complication due to heart valve prosthesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.02) Mechanical complication due to heart valve prosthesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.02''', NULL, + '(996.02) Mechanical complication due to heart valve prosthesis', '(996.02) Mechanical complication due to heart valve prosthesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.03) Mechanical complication due to coronary bypass graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.03) Mechanical complication due to coronary bypass graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.03''', NULL, + '(996.03) Mechanical complication due to coronary bypass graft', '(996.03) Mechanical complication due to coronary bypass graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.04) Mechanical complication of automatic implantable cardiac defibrillator\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.04) Mechanical complication of automatic implantable cardiac defibrillator\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.04''', NULL, + '(996.04) Mechanical complication of automatic implantable cardiac defibrillator', '(996.04) Mechanical complication of automatic implantable cardiac defibrillator', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.09) Other mechanical complication of cardiac device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of cardiac device, implant, and graft (996.0)\(996.09) Other mechanical complication of cardiac device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.09''', NULL, + '(996.09) Other mechanical complication of cardiac device, implant, and graft', '(996.09) Other mechanical complication of cardiac device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.3''', NULL, + 'Mechanical complication of genitourinary device, implant, and graft (996.3)', 'Mechanical complication of genitourinary device, implant, and graft (996.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\(996.30) Mechanical complication of unspecified genitourinary device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\(996.30) Mechanical complication of unspecified genitourinary device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.30''', NULL, + '(996.30) Mechanical complication of unspecified genitourinary device, implant, and graft', '(996.30) Mechanical complication of unspecified genitourinary device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\(996.31) Mechanical complication due to urethral (indwelling) catheter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\(996.31) Mechanical complication due to urethral (indwelling) catheter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.31) Mechanical complication due to urethral (indwelling''', NULL, + '(996.31) Mechanical complication due to urethral (indwelling) catheter', '(996.31) Mechanical complication due to urethral (indwelling) catheter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\(996.32) Mechanical complication due to intrauterine contraceptive device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\(996.32) Mechanical complication due to intrauterine contraceptive device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.32''', NULL, + '(996.32) Mechanical complication due to intrauterine contraceptive device', '(996.32) Mechanical complication due to intrauterine contraceptive device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\(996.39) Other mechanical complication of genitourinary device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of genitourinary device, implant, and graft (996.3)\(996.39) Other mechanical complication of genitourinary device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.39''', NULL, + '(996.39) Other mechanical complication of genitourinary device, implant, and graft', '(996.39) Other mechanical complication of genitourinary device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.4''', NULL, + 'Mechanical complication of internal orthopedic device, implant, and graft (996.4)', 'Mechanical complication of internal orthopedic device, implant, and graft (996.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.40) Unspecified mechanical complication of internal orthopedic device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.40) Unspecified mechanical complication of internal orthopedic device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.40''', NULL, + '(996.40) Unspecified mechanical complication of internal orthopedic device, implant, and graft', '(996.40) Unspecified mechanical complication of internal orthopedic device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.41) Mechanical loosening of prosthetic joint\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.41) Mechanical loosening of prosthetic joint\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.41''', NULL, + '(996.41) Mechanical loosening of prosthetic joint', '(996.41) Mechanical loosening of prosthetic joint', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.42) Dislocation of prosthetic joint\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.42) Dislocation of prosthetic joint\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.42''', NULL, + '(996.42) Dislocation of prosthetic joint', '(996.42) Dislocation of prosthetic joint', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.43) Broken prosthetic joint implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.43) Broken prosthetic joint implant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.43''', NULL, + '(996.43) Broken prosthetic joint implant', '(996.43) Broken prosthetic joint implant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.44) Peri-prosthetic fracture around prosthetic joint\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.44) Peri-prosthetic fracture around prosthetic joint\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.44''', NULL, + '(996.44) Peri-prosthetic fracture around prosthetic joint', '(996.44) Peri-prosthetic fracture around prosthetic joint', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.45) Peri-prosthetic osteolysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.45) Peri-prosthetic osteolysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.45''', NULL, + '(996.45) Peri-prosthetic osteolysis', '(996.45) Peri-prosthetic osteolysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.46) Articular bearing surface wear of prosthetic joint\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.46) Articular bearing surface wear of prosthetic joint\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.46''', NULL, + '(996.46) Articular bearing surface wear of prosthetic joint', '(996.46) Articular bearing surface wear of prosthetic joint', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.47) Other mechanical complication of prosthetic joint implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.47) Other mechanical complication of prosthetic joint implant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.47''', NULL, + '(996.47) Other mechanical complication of prosthetic joint implant', '(996.47) Other mechanical complication of prosthetic joint implant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.49) Other mechanical complication of other internal orthopedic device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\(996.49) Other mechanical complication of other internal orthopedic device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.49''', NULL, + '(996.49) Other mechanical complication of other internal orthopedic device, implant, and graft', '(996.49) Other mechanical complication of other internal orthopedic device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.5''', NULL, + 'Mechanical complication of other specified prosthetic device, implant, and graft (996.5)', 'Mechanical complication of other specified prosthetic device, implant, and graft (996.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.51) Mechanical complication due to corneal graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.51) Mechanical complication due to corneal graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.51''', NULL, + '(996.51) Mechanical complication due to corneal graft', '(996.51) Mechanical complication due to corneal graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.52) Mechanical complication due to graft of other tissue, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.52) Mechanical complication due to graft of other tissue, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.52''', NULL, + '(996.52) Mechanical complication due to graft of other tissue, not elsewhere classified', '(996.52) Mechanical complication due to graft of other tissue, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.53) Mechanical complication due to ocular lens prosthesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.53) Mechanical complication due to ocular lens prosthesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.53''', NULL, + '(996.53) Mechanical complication due to ocular lens prosthesis', '(996.53) Mechanical complication due to ocular lens prosthesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.54) Mechanical complication due to breast prosthesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.54) Mechanical complication due to breast prosthesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.54''', NULL, + '(996.54) Mechanical complication due to breast prosthesis', '(996.54) Mechanical complication due to breast prosthesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.55) Mechanical complication due to artificial skin graft and decellularized allodermis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.55) Mechanical complication due to artificial skin graft and decellularized allodermis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.55''', NULL, + '(996.55) Mechanical complication due to artificial skin graft and decellularized allodermis', '(996.55) Mechanical complication due to artificial skin graft and decellularized allodermis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.56) Mechanical complication due to peritoneal dialysis catheter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.56) Mechanical complication due to peritoneal dialysis catheter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.56''', NULL, + '(996.56) Mechanical complication due to peritoneal dialysis catheter', '(996.56) Mechanical complication due to peritoneal dialysis catheter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.57) Mechanical complication due to insulin pump\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.57) Mechanical complication due to insulin pump\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.57''', NULL, + '(996.57) Mechanical complication due to insulin pump', '(996.57) Mechanical complication due to insulin pump', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.59) Mechanical complication due to other implant and internal device, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\(996.59) Mechanical complication due to other implant and internal device, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.59''', NULL, + '(996.59) Mechanical complication due to other implant and internal device, not elsewhere classified', '(996.59) Mechanical complication due to other implant and internal device, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''biological) (synthetic) prosthetic device, implant, and graft (996.7''', NULL, + 'Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)', 'Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.70) Other complications due to unspecified device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.70) Other complications due to unspecified device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.70''', NULL, + '(996.70) Other complications due to unspecified device, implant, and graft', '(996.70) Other complications due to unspecified device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.71) Other complications due to heart valve prosthesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.71) Other complications due to heart valve prosthesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.71''', NULL, + '(996.71) Other complications due to heart valve prosthesis', '(996.71) Other complications due to heart valve prosthesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.72) Other complications due to other cardiac device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.72) Other complications due to other cardiac device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.72''', NULL, + '(996.72) Other complications due to other cardiac device, implant, and graft', '(996.72) Other complications due to other cardiac device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.73) Other complications due to renal dialysis device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.73) Other complications due to renal dialysis device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.73''', NULL, + '(996.73) Other complications due to renal dialysis device, implant, and graft', '(996.73) Other complications due to renal dialysis device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.74) Other complications due to other vascular device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.74) Other complications due to other vascular device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.74''', NULL, + '(996.74) Other complications due to other vascular device, implant, and graft', '(996.74) Other complications due to other vascular device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.75) Other complications due to nervous system device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.75) Other complications due to nervous system device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.75''', NULL, + '(996.75) Other complications due to nervous system device, implant, and graft', '(996.75) Other complications due to nervous system device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.76) Other complications due to genitourinary device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.76) Other complications due to genitourinary device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.76''', NULL, + '(996.76) Other complications due to genitourinary device, implant, and graft', '(996.76) Other complications due to genitourinary device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.77) Other complications due to internal joint prosthesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.77) Other complications due to internal joint prosthesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.77''', NULL, + '(996.77) Other complications due to internal joint prosthesis', '(996.77) Other complications due to internal joint prosthesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.78) Other complications due to other internal orthopedic device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.78) Other complications due to other internal orthopedic device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.78''', NULL, + '(996.78) Other complications due to other internal orthopedic device, implant, and graft', '(996.78) Other complications due to other internal orthopedic device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.79) Other complications due to other internal prosthetic device, implant, and graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Complications peculiar to certain specified procedures (996)\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\(996.79) Other complications due to other internal prosthetic device, implant, and graft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''996.79''', NULL, + '(996.79) Other complications due to other internal prosthetic device, implant, and graft', '(996.79) Other complications due to other internal prosthetic device, implant, and graft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998''', NULL, + 'Other complications of procedures, NEC (998)', 'Other complications of procedures, NEC (998)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\(998.2) Accidental puncture or laceration during a procedure, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\(998.2) Accidental puncture or laceration during a procedure, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.2''', NULL, + '(998.2) Accidental puncture or laceration during a procedure, not elsewhere classified', '(998.2) Accidental puncture or laceration during a procedure, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\(998.4) Foreign body accidentally left during a procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\(998.4) Foreign body accidentally left during a procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.4''', NULL, + '(998.4) Foreign body accidentally left during a procedure', '(998.4) Foreign body accidentally left during a procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\(998.6) Persistent postoperative fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\(998.6) Persistent postoperative fistula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.6''', NULL, + '(998.6) Persistent postoperative fistula', '(998.6) Persistent postoperative fistula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\(998.7) Acute reaction to foreign substance accidentally left during a procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\(998.7) Acute reaction to foreign substance accidentally left during a procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.7''', NULL, + '(998.7) Acute reaction to foreign substance accidentally left during a procedure', '(998.7) Acute reaction to foreign substance accidentally left during a procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\(998.9) Unspecified complication of procedure, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\(998.9) Unspecified complication of procedure, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.9''', NULL, + '(998.9) Unspecified complication of procedure, not elsewhere classified', '(998.9) Unspecified complication of procedure, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.3''', NULL, + 'Disruption of wound (998.3)', 'Disruption of wound (998.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\(998.30) Disruption of wound, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\(998.30) Disruption of wound, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.30''', NULL, + '(998.30) Disruption of wound, unspecified', '(998.30) Disruption of wound, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\(998.31) Disruption of internal operation (surgical) wound\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\(998.31) Disruption of internal operation (surgical) wound\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.31) Disruption of internal operation (surgical''', NULL, + '(998.31) Disruption of internal operation (surgical) wound', '(998.31) Disruption of internal operation (surgical) wound', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\(998.32) Disruption of external operation (surgical) wound\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\(998.32) Disruption of external operation (surgical) wound\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.32) Disruption of external operation (surgical''', NULL, + '(998.32) Disruption of external operation (surgical) wound', '(998.32) Disruption of external operation (surgical) wound', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\(998.33) Disruption of traumatic injury wound repair\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Disruption of wound (998.3)\(998.33) Disruption of traumatic injury wound repair\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.33''', NULL, + '(998.33) Disruption of traumatic injury wound repair', '(998.33) Disruption of traumatic injury wound repair', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Hemorrhage or hematoma complicating a procedure (998.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Hemorrhage or hematoma complicating a procedure (998.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.1''', NULL, + 'Hemorrhage or hematoma complicating a procedure (998.1)', 'Hemorrhage or hematoma complicating a procedure (998.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Hemorrhage or hematoma complicating a procedure (998.1)\(998.11) Hemorrhage complicating a procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Hemorrhage or hematoma complicating a procedure (998.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Hemorrhage or hematoma complicating a procedure (998.1)\(998.11) Hemorrhage complicating a procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.11''', NULL, + '(998.11) Hemorrhage complicating a procedure', '(998.11) Hemorrhage complicating a procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Hemorrhage or hematoma complicating a procedure (998.1)\(998.12) Hematoma complicating a procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Hemorrhage or hematoma complicating a procedure (998.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Hemorrhage or hematoma complicating a procedure (998.1)\(998.12) Hematoma complicating a procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.12''', NULL, + '(998.12) Hematoma complicating a procedure', '(998.12) Hematoma complicating a procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Hemorrhage or hematoma complicating a procedure (998.1)\(998.13) Seroma complicating a procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Hemorrhage or hematoma complicating a procedure (998.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Hemorrhage or hematoma complicating a procedure (998.1)\(998.13) Seroma complicating a procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.13''', NULL, + '(998.13) Seroma complicating a procedure', '(998.13) Seroma complicating a procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.8''', NULL, + 'Other specified complications of procedures, not elsewhere classified (998.8)', 'Other specified complications of procedures, not elsewhere classified (998.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\(998.81) Emphysema (subcutaneous) (surgical) resulting from procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\(998.81) Emphysema (subcutaneous) (surgical) resulting from procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.81) Emphysema (subcutaneous) (surgical''', NULL, + '(998.81) Emphysema (subcutaneous) (surgical) resulting from procedure', '(998.81) Emphysema (subcutaneous) (surgical) resulting from procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\(998.82) Cataract fragments in eye following cataract surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\(998.82) Cataract fragments in eye following cataract surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.82''', NULL, + '(998.82) Cataract fragments in eye following cataract surgery', '(998.82) Cataract fragments in eye following cataract surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\(998.83) Non-healing surgical wound\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\(998.83) Non-healing surgical wound\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.83''', NULL, + '(998.83) Non-healing surgical wound', '(998.83) Non-healing surgical wound', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\(998.89) Other specified complications of procedures not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Other specified complications of procedures, not elsewhere classified (998.8)\(998.89) Other specified complications of procedures not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.89''', NULL, + '(998.89) Other specified complications of procedures not elsewhere classified', '(998.89) Other specified complications of procedures not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative infection (998.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative infection (998.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.5''', NULL, + 'Postoperative infection (998.5)', 'Postoperative infection (998.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative infection (998.5)\(998.51) Infected postoperative seroma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative infection (998.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative infection (998.5)\(998.51) Infected postoperative seroma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.51''', NULL, + '(998.51) Infected postoperative seroma', '(998.51) Infected postoperative seroma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative infection (998.5)\(998.59) Other postoperative infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative infection (998.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative infection (998.5)\(998.59) Other postoperative infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.59''', NULL, + '(998.59) Other postoperative infection', '(998.59) Other postoperative infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.0''', NULL, + 'Postoperative shock (998.0)', 'Postoperative shock (998.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\(998.00) Postoperative shock, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\(998.00) Postoperative shock, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.00''', NULL, + '(998.00) Postoperative shock, unspecified', '(998.00) Postoperative shock, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\(998.01) Postoperative shock, cardiogenic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\(998.01) Postoperative shock, cardiogenic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.01''', NULL, + '(998.01) Postoperative shock, cardiogenic', '(998.01) Postoperative shock, cardiogenic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\(998.02) Postoperative shock, septic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\(998.02) Postoperative shock, septic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.02''', NULL, + '(998.02) Postoperative shock, septic', '(998.02) Postoperative shock, septic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\(998.09) Postoperative shock, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Complications of surgical and medical care, not elsewhere classified (996-999.99)\Other complications of procedures, NEC (998)\Postoperative shock (998.0)\(998.09) Postoperative shock, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''998.09''', NULL, + '(998.09) Postoperative shock, other', '(998.09) Postoperative shock, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''920'' AND ''924.99''', NULL, + 'Contusion with intact skin surface (920-924.99)', 'Contusion with intact skin surface (920-924.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\(920) Contusion of face, scalp, and neck except eye(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\(920) Contusion of face, scalp, and neck except eye(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''920) Contusion of face, scalp, and neck except eye(s''', NULL, + '(920) Contusion of face, scalp, and neck except eye(s)', '(920) Contusion of face, scalp, and neck except eye(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''921''', NULL, + 'Contusion of eye and adnexa (921)', 'Contusion of eye and adnexa (921)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\(921.0) Black eye, not otherwise specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\(921.0) Black eye, not otherwise specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''921.0''', NULL, + '(921.0) Black eye, not otherwise specified', '(921.0) Black eye, not otherwise specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\(921.1) Contusion of eyelids and periocular area\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\(921.1) Contusion of eyelids and periocular area\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''921.1''', NULL, + '(921.1) Contusion of eyelids and periocular area', '(921.1) Contusion of eyelids and periocular area', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\(921.2) Contusion of orbital tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\(921.2) Contusion of orbital tissues\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''921.2''', NULL, + '(921.2) Contusion of orbital tissues', '(921.2) Contusion of orbital tissues', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\(921.3) Contusion of eyeball\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\(921.3) Contusion of eyeball\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''921.3''', NULL, + '(921.3) Contusion of eyeball', '(921.3) Contusion of eyeball', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\(921.9) Unspecified contusion of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of eye and adnexa (921)\(921.9) Unspecified contusion of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''921.9''', NULL, + '(921.9) Unspecified contusion of eye', '(921.9) Unspecified contusion of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924''', NULL, + 'Contusion of lower limb and of other and unspecified sites (924)', 'Contusion of lower limb and of other and unspecified sites (924)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\(924.3) Contusion of toe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\(924.3) Contusion of toe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.3''', NULL, + '(924.3) Contusion of toe', '(924.3) Contusion of toe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\(924.4) Contusion of multiple sites of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\(924.4) Contusion of multiple sites of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.4''', NULL, + '(924.4) Contusion of multiple sites of lower limb', '(924.4) Contusion of multiple sites of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\(924.5) Contusion of unspecified part of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\(924.5) Contusion of unspecified part of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.5''', NULL, + '(924.5) Contusion of unspecified part of lower limb', '(924.5) Contusion of unspecified part of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\(924.8) Contusion of multiple sites, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\(924.8) Contusion of multiple sites, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.8''', NULL, + '(924.8) Contusion of multiple sites, not elsewhere classified', '(924.8) Contusion of multiple sites, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\(924.9) Contusion of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\(924.9) Contusion of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.9''', NULL, + '(924.9) Contusion of unspecified site', '(924.9) Contusion of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of ankle and foot, excluding toe(s) (924.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of ankle and foot, excluding toe(s) (924.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (924.2''', NULL, + 'Contusion of ankle and foot, excluding toe(s) (924.2)', 'Contusion of ankle and foot, excluding toe(s) (924.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of ankle and foot, excluding toe(s) (924.2)\(924.20) Contusion of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of ankle and foot, excluding toe(s) (924.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of ankle and foot, excluding toe(s) (924.2)\(924.20) Contusion of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.20''', NULL, + '(924.20) Contusion of foot', '(924.20) Contusion of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of ankle and foot, excluding toe(s) (924.2)\(924.21) Contusion of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of ankle and foot, excluding toe(s) (924.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of ankle and foot, excluding toe(s) (924.2)\(924.21) Contusion of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.21''', NULL, + '(924.21) Contusion of ankle', '(924.21) Contusion of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of hip and thigh (924.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of hip and thigh (924.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.0''', NULL, + 'Contusion of hip and thigh (924.0)', 'Contusion of hip and thigh (924.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of hip and thigh (924.0)\(924.00) Contusion of thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of hip and thigh (924.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of hip and thigh (924.0)\(924.00) Contusion of thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.00''', NULL, + '(924.00) Contusion of thigh', '(924.00) Contusion of thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of hip and thigh (924.0)\(924.01) Contusion of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of hip and thigh (924.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of hip and thigh (924.0)\(924.01) Contusion of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.01''', NULL, + '(924.01) Contusion of hip', '(924.01) Contusion of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of knee and lower leg (924.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of knee and lower leg (924.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.1''', NULL, + 'Contusion of knee and lower leg (924.1)', 'Contusion of knee and lower leg (924.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of knee and lower leg (924.1)\(924.10) Contusion of lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of knee and lower leg (924.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of knee and lower leg (924.1)\(924.10) Contusion of lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.10''', NULL, + '(924.10) Contusion of lower leg', '(924.10) Contusion of lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of knee and lower leg (924.1)\(924.11) Contusion of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of knee and lower leg (924.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of lower limb and of other and unspecified sites (924)\Contusion of knee and lower leg (924.1)\(924.11) Contusion of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''924.11''', NULL, + '(924.11) Contusion of knee', '(924.11) Contusion of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''922''', NULL, + 'Contusion of trunk (922)', 'Contusion of trunk (922)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.0) Contusion of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.0) Contusion of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''922.0''', NULL, + '(922.0) Contusion of breast', '(922.0) Contusion of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.1) Contusion of chest wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.1) Contusion of chest wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''922.1''', NULL, + '(922.1) Contusion of chest wall', '(922.1) Contusion of chest wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.2) Contusion of abdominal wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.2) Contusion of abdominal wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''922.2''', NULL, + '(922.2) Contusion of abdominal wall', '(922.2) Contusion of abdominal wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.4) Contusion of genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.4) Contusion of genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''922.4''', NULL, + '(922.4) Contusion of genital organs', '(922.4) Contusion of genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.8) Contusion of multiple sites of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.8) Contusion of multiple sites of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''922.8''', NULL, + '(922.8) Contusion of multiple sites of trunk', '(922.8) Contusion of multiple sites of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.9) Contusion of unspecified part of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\(922.9) Contusion of unspecified part of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''922.9''', NULL, + '(922.9) Contusion of unspecified part of trunk', '(922.9) Contusion of unspecified part of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\Contusion of back (922.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\Contusion of back (922.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''922.3''', NULL, + 'Contusion of back (922.3)', 'Contusion of back (922.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\Contusion of back (922.3)\(922.31) Contusion of back\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\Contusion of back (922.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\Contusion of back (922.3)\(922.31) Contusion of back\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''922.31''', NULL, + '(922.31) Contusion of back', '(922.31) Contusion of back', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\Contusion of back (922.3)\(922.32) Contusion of buttock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\Contusion of back (922.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\Contusion of back (922.3)\(922.32) Contusion of buttock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''922.32''', NULL, + '(922.32) Contusion of buttock', '(922.32) Contusion of buttock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\Contusion of back (922.3)\(922.33) Contusion of interscapular region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\Contusion of back (922.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of trunk (922)\Contusion of back (922.3)\(922.33) Contusion of interscapular region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''922.33''', NULL, + '(922.33) Contusion of interscapular region', '(922.33) Contusion of interscapular region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923''', NULL, + 'Contusion of upper limb (923)', 'Contusion of upper limb (923)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\(923.3) Contusion of finger\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\(923.3) Contusion of finger\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.3''', NULL, + '(923.3) Contusion of finger', '(923.3) Contusion of finger', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\(923.8) Contusion of multiple sites of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\(923.8) Contusion of multiple sites of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.8''', NULL, + '(923.8) Contusion of multiple sites of upper limb', '(923.8) Contusion of multiple sites of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\(923.9) Contusion of unspecified part of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\(923.9) Contusion of unspecified part of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.9''', NULL, + '(923.9) Contusion of unspecified part of upper limb', '(923.9) Contusion of unspecified part of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of elbow and forearm (923.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of elbow and forearm (923.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.1''', NULL, + 'Contusion of elbow and forearm (923.1)', 'Contusion of elbow and forearm (923.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of elbow and forearm (923.1)\(923.10) Contusion of forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of elbow and forearm (923.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of elbow and forearm (923.1)\(923.10) Contusion of forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.10''', NULL, + '(923.10) Contusion of forearm', '(923.10) Contusion of forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of elbow and forearm (923.1)\(923.11) Contusion of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of elbow and forearm (923.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of elbow and forearm (923.1)\(923.11) Contusion of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.11''', NULL, + '(923.11) Contusion of elbow', '(923.11) Contusion of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.0''', NULL, + 'Contusion of shoulder and upper arm (923.0)', 'Contusion of shoulder and upper arm (923.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\(923.00) Contusion of shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\(923.00) Contusion of shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.00''', NULL, + '(923.00) Contusion of shoulder region', '(923.00) Contusion of shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\(923.01) Contusion of scapular region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\(923.01) Contusion of scapular region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.01''', NULL, + '(923.01) Contusion of scapular region', '(923.01) Contusion of scapular region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\(923.02) Contusion of axillary region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\(923.02) Contusion of axillary region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.02''', NULL, + '(923.02) Contusion of axillary region', '(923.02) Contusion of axillary region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\(923.03) Contusion of upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\(923.03) Contusion of upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.03''', NULL, + '(923.03) Contusion of upper arm', '(923.03) Contusion of upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\(923.09) Contusion of multiple sites of shoulder and upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of shoulder and upper arm (923.0)\(923.09) Contusion of multiple sites of shoulder and upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.09''', NULL, + '(923.09) Contusion of multiple sites of shoulder and upper arm', '(923.09) Contusion of multiple sites of shoulder and upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of wrist and hand(s), except finger(s) alone (923.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of wrist and hand(s), except finger(s) alone (923.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s), except finger(s) alone (923.2''', NULL, + 'Contusion of wrist and hand(s), except finger(s) alone (923.2)', 'Contusion of wrist and hand(s), except finger(s) alone (923.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of wrist and hand(s), except finger(s) alone (923.2)\(923.20) Contusion of hand(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of wrist and hand(s), except finger(s) alone (923.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of wrist and hand(s), except finger(s) alone (923.2)\(923.20) Contusion of hand(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.20) Contusion of hand(s''', NULL, + '(923.20) Contusion of hand(s)', '(923.20) Contusion of hand(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of wrist and hand(s), except finger(s) alone (923.2)\(923.21) Contusion of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of wrist and hand(s), except finger(s) alone (923.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Contusion with intact skin surface (920-924.99)\Contusion of upper limb (923)\Contusion of wrist and hand(s), except finger(s) alone (923.2)\(923.21) Contusion of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''923.21''', NULL, + '(923.21) Contusion of wrist', '(923.21) Contusion of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''925'' AND ''929.99''', NULL, + 'Crushing injury (925-929.99)', 'Crushing injury (925-929.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of face, scalp, and neck (925)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of face, scalp, and neck (925)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''925''', NULL, + 'Crushing injury of face, scalp, and neck (925)', 'Crushing injury of face, scalp, and neck (925)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of face, scalp, and neck (925)\(925.1) Crushing injury of face and scalp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of face, scalp, and neck (925)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of face, scalp, and neck (925)\(925.1) Crushing injury of face and scalp\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''925.1''', NULL, + '(925.1) Crushing injury of face and scalp', '(925.1) Crushing injury of face and scalp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of face, scalp, and neck (925)\(925.2) Crushing injury of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of face, scalp, and neck (925)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of face, scalp, and neck (925)\(925.2) Crushing injury of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''925.2''', NULL, + '(925.2) Crushing injury of neck', '(925.2) Crushing injury of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928''', NULL, + 'Crushing injury of lower limb (928)', 'Crushing injury of lower limb (928)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\(928.3) Crushing injury of toe(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\(928.3) Crushing injury of toe(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928.3) Crushing injury of toe(s''', NULL, + '(928.3) Crushing injury of toe(s)', '(928.3) Crushing injury of toe(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\(928.8) Crushing injury of multiple sites of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\(928.8) Crushing injury of multiple sites of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928.8''', NULL, + '(928.8) Crushing injury of multiple sites of lower limb', '(928.8) Crushing injury of multiple sites of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\(928.9) Crushing injury of unspecified site of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\(928.9) Crushing injury of unspecified site of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928.9''', NULL, + '(928.9) Crushing injury of unspecified site of lower limb', '(928.9) Crushing injury of unspecified site of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) alone (928.2''', NULL, + 'Crushing injury of ankle and foot, excluding toe(s) alone (928.2)', 'Crushing injury of ankle and foot, excluding toe(s) alone (928.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\(928.20) Crushing injury of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\(928.20) Crushing injury of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928.20''', NULL, + '(928.20) Crushing injury of foot', '(928.20) Crushing injury of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\(928.21) Crushing injury of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\(928.21) Crushing injury of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928.21''', NULL, + '(928.21) Crushing injury of ankle', '(928.21) Crushing injury of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of hip and thigh (928.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of hip and thigh (928.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928.0''', NULL, + 'Crushing injury of hip and thigh (928.0)', 'Crushing injury of hip and thigh (928.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of hip and thigh (928.0)\(928.00) Crushing injury of thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of hip and thigh (928.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of hip and thigh (928.0)\(928.00) Crushing injury of thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928.00''', NULL, + '(928.00) Crushing injury of thigh', '(928.00) Crushing injury of thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of hip and thigh (928.0)\(928.01) Crushing injury of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of hip and thigh (928.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of hip and thigh (928.0)\(928.01) Crushing injury of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928.01''', NULL, + '(928.01) Crushing injury of hip', '(928.01) Crushing injury of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of knee and lower leg (928.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of knee and lower leg (928.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928.1''', NULL, + 'Crushing injury of knee and lower leg (928.1)', 'Crushing injury of knee and lower leg (928.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of knee and lower leg (928.1)\(928.10) Crushing injury of lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of knee and lower leg (928.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of knee and lower leg (928.1)\(928.10) Crushing injury of lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928.10''', NULL, + '(928.10) Crushing injury of lower leg', '(928.10) Crushing injury of lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of knee and lower leg (928.1)\(928.11) Crushing injury of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of knee and lower leg (928.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of lower limb (928)\Crushing injury of knee and lower leg (928.1)\(928.11) Crushing injury of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''928.11''', NULL, + '(928.11) Crushing injury of knee', '(928.11) Crushing injury of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of multiple and unspecified sites (929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of multiple and unspecified sites (929)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''929''', NULL, + 'Crushing injury of multiple and unspecified sites (929)', 'Crushing injury of multiple and unspecified sites (929)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of multiple and unspecified sites (929)\(929.0) Crushing injury of multiple sites, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of multiple and unspecified sites (929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of multiple and unspecified sites (929)\(929.0) Crushing injury of multiple sites, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''929.0''', NULL, + '(929.0) Crushing injury of multiple sites, not elsewhere classified', '(929.0) Crushing injury of multiple sites, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of multiple and unspecified sites (929)\(929.9) Crushing injury of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of multiple and unspecified sites (929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of multiple and unspecified sites (929)\(929.9) Crushing injury of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''929.9''', NULL, + '(929.9) Crushing injury of unspecified site', '(929.9) Crushing injury of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''926''', NULL, + 'Crushing injury of trunk (926)', 'Crushing injury of trunk (926)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\(926.0) Crushing injury of external genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\(926.0) Crushing injury of external genitalia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''926.0''', NULL, + '(926.0) Crushing injury of external genitalia', '(926.0) Crushing injury of external genitalia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\(926.8) Crushing injury of multiple sites of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\(926.8) Crushing injury of multiple sites of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''926.8''', NULL, + '(926.8) Crushing injury of multiple sites of trunk', '(926.8) Crushing injury of multiple sites of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\(926.9) Crushing injury of unspecified site of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\(926.9) Crushing injury of unspecified site of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''926.9''', NULL, + '(926.9) Crushing injury of unspecified site of trunk', '(926.9) Crushing injury of unspecified site of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\Crushing injury of other specified sites of trunk (926.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\Crushing injury of other specified sites of trunk (926.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''926.1''', NULL, + 'Crushing injury of other specified sites of trunk (926.1)', 'Crushing injury of other specified sites of trunk (926.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\Crushing injury of other specified sites of trunk (926.1)\(926.11) Crushing injury of back\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\Crushing injury of other specified sites of trunk (926.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\Crushing injury of other specified sites of trunk (926.1)\(926.11) Crushing injury of back\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''926.11''', NULL, + '(926.11) Crushing injury of back', '(926.11) Crushing injury of back', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\Crushing injury of other specified sites of trunk (926.1)\(926.12) Crushing injury of buttock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\Crushing injury of other specified sites of trunk (926.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\Crushing injury of other specified sites of trunk (926.1)\(926.12) Crushing injury of buttock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''926.12''', NULL, + '(926.12) Crushing injury of buttock', '(926.12) Crushing injury of buttock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\Crushing injury of other specified sites of trunk (926.1)\(926.19) Crushing injury of other specified sites of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\Crushing injury of other specified sites of trunk (926.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of trunk (926)\Crushing injury of other specified sites of trunk (926.1)\(926.19) Crushing injury of other specified sites of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''926.19''', NULL, + '(926.19) Crushing injury of other specified sites of trunk', '(926.19) Crushing injury of other specified sites of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927''', NULL, + 'Crushing injury of upper limb (927)', 'Crushing injury of upper limb (927)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\(927.3) Crushing injury of finger(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\(927.3) Crushing injury of finger(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.3) Crushing injury of finger(s''', NULL, + '(927.3) Crushing injury of finger(s)', '(927.3) Crushing injury of finger(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\(927.8) Crushing injury of multiple sites of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\(927.8) Crushing injury of multiple sites of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.8''', NULL, + '(927.8) Crushing injury of multiple sites of upper limb', '(927.8) Crushing injury of multiple sites of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\(927.9) Crushing injury of unspecified site of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\(927.9) Crushing injury of unspecified site of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.9''', NULL, + '(927.9) Crushing injury of unspecified site of upper limb', '(927.9) Crushing injury of unspecified site of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of elbow and forearm (927.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of elbow and forearm (927.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.1''', NULL, + 'Crushing injury of elbow and forearm (927.1)', 'Crushing injury of elbow and forearm (927.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of elbow and forearm (927.1)\(927.10) Crushing injury of forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of elbow and forearm (927.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of elbow and forearm (927.1)\(927.10) Crushing injury of forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.10''', NULL, + '(927.10) Crushing injury of forearm', '(927.10) Crushing injury of forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of elbow and forearm (927.1)\(927.11) Crushing injury of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of elbow and forearm (927.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of elbow and forearm (927.1)\(927.11) Crushing injury of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.11''', NULL, + '(927.11) Crushing injury of elbow', '(927.11) Crushing injury of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.0''', NULL, + 'Crushing injury of shoulder and upper arm (927.0)', 'Crushing injury of shoulder and upper arm (927.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\(927.00) Crushing injury of shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\(927.00) Crushing injury of shoulder region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.00''', NULL, + '(927.00) Crushing injury of shoulder region', '(927.00) Crushing injury of shoulder region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\(927.01) Crushing injury of scapular region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\(927.01) Crushing injury of scapular region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.01''', NULL, + '(927.01) Crushing injury of scapular region', '(927.01) Crushing injury of scapular region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\(927.02) Crushing injury of axillary region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\(927.02) Crushing injury of axillary region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.02''', NULL, + '(927.02) Crushing injury of axillary region', '(927.02) Crushing injury of axillary region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\(927.03) Crushing injury of upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\(927.03) Crushing injury of upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.03''', NULL, + '(927.03) Crushing injury of upper arm', '(927.03) Crushing injury of upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\(927.09) Crushing injury of multiple sites of upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of shoulder and upper arm (927.0)\(927.09) Crushing injury of multiple sites of upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.09''', NULL, + '(927.09) Crushing injury of multiple sites of upper arm', '(927.09) Crushing injury of multiple sites of upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s), except finger(s) alone (927.2''', NULL, + 'Crushing injury of wrist and hand(s), except finger(s) alone (927.2)', 'Crushing injury of wrist and hand(s), except finger(s) alone (927.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\(927.20) Crushing injury of hand(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\(927.20) Crushing injury of hand(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.20) Crushing injury of hand(s''', NULL, + '(927.20) Crushing injury of hand(s)', '(927.20) Crushing injury of hand(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\(927.21) Crushing injury of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Crushing injury (925-929.99)\Crushing injury of upper limb (927)\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\(927.21) Crushing injury of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''927.21''', NULL, + '(927.21) Crushing injury of wrist', '(927.21) Crushing injury of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''830'' AND ''839.99''', NULL, + 'Dislocation (830-839.99)', 'Dislocation (830-839.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of ankle (837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of ankle (837)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''837''', NULL, + 'Dislocation of ankle (837)', 'Dislocation of ankle (837)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of ankle (837)\(837.0) Closed dislocation of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of ankle (837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of ankle (837)\(837.0) Closed dislocation of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''837.0''', NULL, + '(837.0) Closed dislocation of ankle', '(837.0) Closed dislocation of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of ankle (837)\(837.1) Open dislocation of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of ankle (837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of ankle (837)\(837.1) Open dislocation of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''837.1''', NULL, + '(837.1) Open dislocation of ankle', '(837.1) Open dislocation of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832''', NULL, + 'Dislocation of elbow (832)', 'Dislocation of elbow (832)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\(832.2) Nursemaid''s elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\(832.2) Nursemaid''s elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.2''', NULL, + '(832.2) Nursemaid''s elbow', '(832.2) Nursemaid''s elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.0''', NULL, + 'Closed dislocation of elbow (832.0)', 'Closed dislocation of elbow (832.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.00) Closed dislocation of elbow, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.00) Closed dislocation of elbow, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.00''', NULL, + '(832.00) Closed dislocation of elbow, unspecified', '(832.00) Closed dislocation of elbow, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.01) Closed anterior dislocation of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.01) Closed anterior dislocation of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.01''', NULL, + '(832.01) Closed anterior dislocation of elbow', '(832.01) Closed anterior dislocation of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.02) Closed posterior dislocation of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.02) Closed posterior dislocation of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.02''', NULL, + '(832.02) Closed posterior dislocation of elbow', '(832.02) Closed posterior dislocation of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.03) Closed medial dislocation of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.03) Closed medial dislocation of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.03''', NULL, + '(832.03) Closed medial dislocation of elbow', '(832.03) Closed medial dislocation of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.04) Closed lateral dislocation of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.04) Closed lateral dislocation of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.04''', NULL, + '(832.04) Closed lateral dislocation of elbow', '(832.04) Closed lateral dislocation of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.09) Closed dislocation of elbow, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Closed dislocation of elbow (832.0)\(832.09) Closed dislocation of elbow, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.09''', NULL, + '(832.09) Closed dislocation of elbow, other', '(832.09) Closed dislocation of elbow, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.1''', NULL, + 'Open dislocation of elbow (832.1)', 'Open dislocation of elbow (832.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.10) Open dislocation of elbow, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.10) Open dislocation of elbow, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.10''', NULL, + '(832.10) Open dislocation of elbow, unspecified', '(832.10) Open dislocation of elbow, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.11) Open anterior dislocation of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.11) Open anterior dislocation of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.11''', NULL, + '(832.11) Open anterior dislocation of elbow', '(832.11) Open anterior dislocation of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.12) Open posterior dislocation of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.12) Open posterior dislocation of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.12''', NULL, + '(832.12) Open posterior dislocation of elbow', '(832.12) Open posterior dislocation of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.13) Open medial dislocation of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.13) Open medial dislocation of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.13''', NULL, + '(832.13) Open medial dislocation of elbow', '(832.13) Open medial dislocation of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.14) Open lateral dislocation of elbow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.14) Open lateral dislocation of elbow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.14''', NULL, + '(832.14) Open lateral dislocation of elbow', '(832.14) Open lateral dislocation of elbow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.19) Open dislocation of elbow, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of elbow (832)\Open dislocation of elbow (832.1)\(832.19) Open dislocation of elbow, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''832.19''', NULL, + '(832.19) Open dislocation of elbow, other', '(832.19) Open dislocation of elbow, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''834''', NULL, + 'Dislocation of finger (834)', 'Dislocation of finger (834)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Closed dislocation of finger (834.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Closed dislocation of finger (834.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''834.0''', NULL, + 'Closed dislocation of finger (834.0)', 'Closed dislocation of finger (834.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Closed dislocation of finger (834.0)\(834.00) Closed dislocation of finger, unspecified part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Closed dislocation of finger (834.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Closed dislocation of finger (834.0)\(834.00) Closed dislocation of finger, unspecified part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''834.00''', NULL, + '(834.00) Closed dislocation of finger, unspecified part', '(834.00) Closed dislocation of finger, unspecified part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Closed dislocation of finger (834.0)\(834.01) Closed dislocation of metacarpophalangeal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Closed dislocation of finger (834.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Closed dislocation of finger (834.0)\(834.01) Closed dislocation of metacarpophalangeal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''834.01) Closed dislocation of metacarpophalangeal (joint''', NULL, + '(834.01) Closed dislocation of metacarpophalangeal (joint)', '(834.01) Closed dislocation of metacarpophalangeal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Closed dislocation of finger (834.0)\(834.02) Closed dislocation of interphalangeal (joint), hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Closed dislocation of finger (834.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Closed dislocation of finger (834.0)\(834.02) Closed dislocation of interphalangeal (joint), hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''834.02) Closed dislocation of interphalangeal (joint''', NULL, + '(834.02) Closed dislocation of interphalangeal (joint), hand', '(834.02) Closed dislocation of interphalangeal (joint), hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Open dislocation of finger (834.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Open dislocation of finger (834.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''834.1''', NULL, + 'Open dislocation of finger (834.1)', 'Open dislocation of finger (834.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Open dislocation of finger (834.1)\(834.10) Open dislocation of finger, unspecified part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Open dislocation of finger (834.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Open dislocation of finger (834.1)\(834.10) Open dislocation of finger, unspecified part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''834.10''', NULL, + '(834.10) Open dislocation of finger, unspecified part', '(834.10) Open dislocation of finger, unspecified part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Open dislocation of finger (834.1)\(834.11) Open dislocation of metacarpophalangeal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Open dislocation of finger (834.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Open dislocation of finger (834.1)\(834.11) Open dislocation of metacarpophalangeal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''834.11) Open dislocation of metacarpophalangeal (joint''', NULL, + '(834.11) Open dislocation of metacarpophalangeal (joint)', '(834.11) Open dislocation of metacarpophalangeal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Open dislocation of finger (834.1)\(834.12) Open dislocation interphalangeal (joint), hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Open dislocation of finger (834.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of finger (834)\Open dislocation of finger (834.1)\(834.12) Open dislocation interphalangeal (joint), hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''834.12) Open dislocation interphalangeal (joint''', NULL, + '(834.12) Open dislocation interphalangeal (joint), hand', '(834.12) Open dislocation interphalangeal (joint), hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838''', NULL, + 'Dislocation of foot (838)', 'Dislocation of foot (838)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.0''', NULL, + 'Closed dislocation of foot (838.0)', 'Closed dislocation of foot (838.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.00) Closed dislocation of foot, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.00) Closed dislocation of foot, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.00''', NULL, + '(838.00) Closed dislocation of foot, unspecified', '(838.00) Closed dislocation of foot, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.01) Closed dislocation of tarsal (bone), joint unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.01) Closed dislocation of tarsal (bone), joint unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.01) Closed dislocation of tarsal (bone''', NULL, + '(838.01) Closed dislocation of tarsal (bone), joint unspecified', '(838.01) Closed dislocation of tarsal (bone), joint unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.02) Closed dislocation of midtarsal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.02) Closed dislocation of midtarsal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.02) Closed dislocation of midtarsal (joint''', NULL, + '(838.02) Closed dislocation of midtarsal (joint)', '(838.02) Closed dislocation of midtarsal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.03) Closed dislocation of tarsometatarsal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.03) Closed dislocation of tarsometatarsal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.03) Closed dislocation of tarsometatarsal (joint''', NULL, + '(838.03) Closed dislocation of tarsometatarsal (joint)', '(838.03) Closed dislocation of tarsometatarsal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.04) Closed dislocation of metatarsal (bone), joint unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.04) Closed dislocation of metatarsal (bone), joint unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.04) Closed dislocation of metatarsal (bone''', NULL, + '(838.04) Closed dislocation of metatarsal (bone), joint unspecified', '(838.04) Closed dislocation of metatarsal (bone), joint unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.05) Closed dislocation of metatarsophalangeal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.05) Closed dislocation of metatarsophalangeal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.05) Closed dislocation of metatarsophalangeal (joint''', NULL, + '(838.05) Closed dislocation of metatarsophalangeal (joint)', '(838.05) Closed dislocation of metatarsophalangeal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.06) Closed dislocation of interphalangeal (joint), foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.06) Closed dislocation of interphalangeal (joint), foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.06) Closed dislocation of interphalangeal (joint''', NULL, + '(838.06) Closed dislocation of interphalangeal (joint), foot', '(838.06) Closed dislocation of interphalangeal (joint), foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.09) Closed dislocation of foot, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Closed dislocation of foot (838.0)\(838.09) Closed dislocation of foot, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.09''', NULL, + '(838.09) Closed dislocation of foot, other', '(838.09) Closed dislocation of foot, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.1''', NULL, + 'Open dislocation of foot (838.1)', 'Open dislocation of foot (838.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.10) Open dislocation of foot, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.10) Open dislocation of foot, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.10''', NULL, + '(838.10) Open dislocation of foot, unspecified', '(838.10) Open dislocation of foot, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.11) Open dislocation of tarsal (bone), joint unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.11) Open dislocation of tarsal (bone), joint unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.11) Open dislocation of tarsal (bone''', NULL, + '(838.11) Open dislocation of tarsal (bone), joint unspecified', '(838.11) Open dislocation of tarsal (bone), joint unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.12) Open dislocation of midtarsal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.12) Open dislocation of midtarsal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.12) Open dislocation of midtarsal (joint''', NULL, + '(838.12) Open dislocation of midtarsal (joint)', '(838.12) Open dislocation of midtarsal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.13) Open dislocation of tarsometatarsal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.13) Open dislocation of tarsometatarsal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.13) Open dislocation of tarsometatarsal (joint''', NULL, + '(838.13) Open dislocation of tarsometatarsal (joint)', '(838.13) Open dislocation of tarsometatarsal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.14) Open dislocation of metatarsal (bone), joint unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.14) Open dislocation of metatarsal (bone), joint unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.14) Open dislocation of metatarsal (bone''', NULL, + '(838.14) Open dislocation of metatarsal (bone), joint unspecified', '(838.14) Open dislocation of metatarsal (bone), joint unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.15) Open dislocation of metatarsophalangeal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.15) Open dislocation of metatarsophalangeal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.15) Open dislocation of metatarsophalangeal (joint''', NULL, + '(838.15) Open dislocation of metatarsophalangeal (joint)', '(838.15) Open dislocation of metatarsophalangeal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.16) Open dislocation of interphalangeal (joint), foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.16) Open dislocation of interphalangeal (joint), foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.16) Open dislocation of interphalangeal (joint''', NULL, + '(838.16) Open dislocation of interphalangeal (joint), foot', '(838.16) Open dislocation of interphalangeal (joint), foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.19) Open dislocation of foot, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of foot (838)\Open dislocation of foot (838.1)\(838.19) Open dislocation of foot, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''838.19''', NULL, + '(838.19) Open dislocation of foot, other', '(838.19) Open dislocation of foot, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''835''', NULL, + 'Dislocation of hip (835)', 'Dislocation of hip (835)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''835.0''', NULL, + 'Closed dislocation of hip (835.0)', 'Closed dislocation of hip (835.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\(835.00) Closed dislocation of hip, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\(835.00) Closed dislocation of hip, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''835.00''', NULL, + '(835.00) Closed dislocation of hip, unspecified site', '(835.00) Closed dislocation of hip, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\(835.01) Closed posterior dislocation of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\(835.01) Closed posterior dislocation of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''835.01''', NULL, + '(835.01) Closed posterior dislocation of hip', '(835.01) Closed posterior dislocation of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\(835.02) Closed obturator dislocation of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\(835.02) Closed obturator dislocation of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''835.02''', NULL, + '(835.02) Closed obturator dislocation of hip', '(835.02) Closed obturator dislocation of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\(835.03) Other closed anterior dislocation of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Closed dislocation of hip (835.0)\(835.03) Other closed anterior dislocation of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''835.03''', NULL, + '(835.03) Other closed anterior dislocation of hip', '(835.03) Other closed anterior dislocation of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''835.1''', NULL, + 'Open dislocation of hip (835.1)', 'Open dislocation of hip (835.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\(835.10) Open dislocation of hip, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\(835.10) Open dislocation of hip, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''835.10''', NULL, + '(835.10) Open dislocation of hip, unspecified site', '(835.10) Open dislocation of hip, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\(835.11) Open posterior dislocation of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\(835.11) Open posterior dislocation of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''835.11''', NULL, + '(835.11) Open posterior dislocation of hip', '(835.11) Open posterior dislocation of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\(835.12) Open obturator dislocation of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\(835.12) Open obturator dislocation of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''835.12''', NULL, + '(835.12) Open obturator dislocation of hip', '(835.12) Open obturator dislocation of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\(835.13) Other open anterior dislocation of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of hip (835)\Open dislocation of hip (835.1)\(835.13) Other open anterior dislocation of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''835.13''', NULL, + '(835.13) Other open anterior dislocation of hip', '(835.13) Other open anterior dislocation of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of jaw (830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of jaw (830)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''830''', NULL, + 'Dislocation of jaw (830)', 'Dislocation of jaw (830)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of jaw (830)\(830.0) Closed dislocation of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of jaw (830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of jaw (830)\(830.0) Closed dislocation of jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''830.0''', NULL, + '(830.0) Closed dislocation of jaw', '(830.0) Closed dislocation of jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of jaw (830)\(830.1) Open dislocation of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of jaw (830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of jaw (830)\(830.1) Open dislocation of jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''830.1''', NULL, + '(830.1) Open dislocation of jaw', '(830.1) Open dislocation of jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836''', NULL, + 'Dislocation of knee (836)', 'Dislocation of knee (836)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\(836.0) Tear of medial cartilage or meniscus of knee, current\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\(836.0) Tear of medial cartilage or meniscus of knee, current\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.0''', NULL, + '(836.0) Tear of medial cartilage or meniscus of knee, current', '(836.0) Tear of medial cartilage or meniscus of knee, current', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\(836.1) Tear of lateral cartilage or meniscus of knee, current\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\(836.1) Tear of lateral cartilage or meniscus of knee, current\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.1''', NULL, + '(836.1) Tear of lateral cartilage or meniscus of knee, current', '(836.1) Tear of lateral cartilage or meniscus of knee, current', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\(836.2) Other tear of cartilage or meniscus of knee, current\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\(836.2) Other tear of cartilage or meniscus of knee, current\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.2''', NULL, + '(836.2) Other tear of cartilage or meniscus of knee, current', '(836.2) Other tear of cartilage or meniscus of knee, current', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\(836.3) Dislocation of patella, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\(836.3) Dislocation of patella, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.3''', NULL, + '(836.3) Dislocation of patella, closed', '(836.3) Dislocation of patella, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\(836.4) Dislocation of patella, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\(836.4) Dislocation of patella, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.4''', NULL, + '(836.4) Dislocation of patella, open', '(836.4) Dislocation of patella, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.5''', NULL, + 'Other dislocation of knee, closed (836.5)', 'Other dislocation of knee, closed (836.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.50) Dislocation of knee, unspecified, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.50) Dislocation of knee, unspecified, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.50''', NULL, + '(836.50) Dislocation of knee, unspecified, closed', '(836.50) Dislocation of knee, unspecified, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.51) Anterior dislocation of tibia, proximal end, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.51) Anterior dislocation of tibia, proximal end, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.51''', NULL, + '(836.51) Anterior dislocation of tibia, proximal end, closed', '(836.51) Anterior dislocation of tibia, proximal end, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.52) Posterior dislocation of tibia, proximal end, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.52) Posterior dislocation of tibia, proximal end, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.52''', NULL, + '(836.52) Posterior dislocation of tibia, proximal end, closed', '(836.52) Posterior dislocation of tibia, proximal end, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.53) Medial dislocation of tibia, proximal end, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.53) Medial dislocation of tibia, proximal end, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.53''', NULL, + '(836.53) Medial dislocation of tibia, proximal end, closed', '(836.53) Medial dislocation of tibia, proximal end, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.54) Lateral dislocation of tibia, proximal end, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.54) Lateral dislocation of tibia, proximal end, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.54''', NULL, + '(836.54) Lateral dislocation of tibia, proximal end, closed', '(836.54) Lateral dislocation of tibia, proximal end, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.59) Other dislocation of knee, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, closed (836.5)\(836.59) Other dislocation of knee, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.59''', NULL, + '(836.59) Other dislocation of knee, closed', '(836.59) Other dislocation of knee, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.6''', NULL, + 'Other dislocation of knee, open (836.6)', 'Other dislocation of knee, open (836.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.60) Dislocation of knee, unspecified, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.60) Dislocation of knee, unspecified, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.60''', NULL, + '(836.60) Dislocation of knee, unspecified, open', '(836.60) Dislocation of knee, unspecified, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.61) Anterior dislocation of tibia, proximal end, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.61) Anterior dislocation of tibia, proximal end, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.61''', NULL, + '(836.61) Anterior dislocation of tibia, proximal end, open', '(836.61) Anterior dislocation of tibia, proximal end, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.62) Posterior dislocation of tibia, proximal end, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.62) Posterior dislocation of tibia, proximal end, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.62''', NULL, + '(836.62) Posterior dislocation of tibia, proximal end, open', '(836.62) Posterior dislocation of tibia, proximal end, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.63) Medial dislocation of tibia, proximal end, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.63) Medial dislocation of tibia, proximal end, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.63''', NULL, + '(836.63) Medial dislocation of tibia, proximal end, open', '(836.63) Medial dislocation of tibia, proximal end, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.64) Lateral dislocation of tibia, proximal end, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.64) Lateral dislocation of tibia, proximal end, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.64''', NULL, + '(836.64) Lateral dislocation of tibia, proximal end, open', '(836.64) Lateral dislocation of tibia, proximal end, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.69) Other dislocation of knee, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of knee (836)\Other dislocation of knee, open (836.6)\(836.69) Other dislocation of knee, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''836.69''', NULL, + '(836.69) Other dislocation of knee, open', '(836.69) Other dislocation of knee, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831''', NULL, + 'Dislocation of shoulder (831)', 'Dislocation of shoulder (831)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.0''', NULL, + 'Closed dislocation of shoulder (831.0)', 'Closed dislocation of shoulder (831.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.00) Closed dislocation of shoulder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.00) Closed dislocation of shoulder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.00''', NULL, + '(831.00) Closed dislocation of shoulder, unspecified', '(831.00) Closed dislocation of shoulder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.01) Closed anterior dislocation of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.01) Closed anterior dislocation of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.01''', NULL, + '(831.01) Closed anterior dislocation of humerus', '(831.01) Closed anterior dislocation of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.02) Closed posterior dislocation of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.02) Closed posterior dislocation of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.02''', NULL, + '(831.02) Closed posterior dislocation of humerus', '(831.02) Closed posterior dislocation of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.03) Closed inferior dislocation of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.03) Closed inferior dislocation of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.03''', NULL, + '(831.03) Closed inferior dislocation of humerus', '(831.03) Closed inferior dislocation of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.04) Closed dislocation of acromioclavicular (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.04) Closed dislocation of acromioclavicular (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.04) Closed dislocation of acromioclavicular (joint''', NULL, + '(831.04) Closed dislocation of acromioclavicular (joint)', '(831.04) Closed dislocation of acromioclavicular (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.09) Closed dislocation of shoulder, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Closed dislocation of shoulder (831.0)\(831.09) Closed dislocation of shoulder, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.09''', NULL, + '(831.09) Closed dislocation of shoulder, other', '(831.09) Closed dislocation of shoulder, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.1''', NULL, + 'Open dislocation of shoulder (831.1)', 'Open dislocation of shoulder (831.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\(831.11) Open anterior dislocation of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\(831.11) Open anterior dislocation of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.11''', NULL, + '(831.11) Open anterior dislocation of humerus', '(831.11) Open anterior dislocation of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\(831.12) Open posterior dislocation of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\(831.12) Open posterior dislocation of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.12''', NULL, + '(831.12) Open posterior dislocation of humerus', '(831.12) Open posterior dislocation of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\(831.13) Open inferior dislocation of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\(831.13) Open inferior dislocation of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.13''', NULL, + '(831.13) Open inferior dislocation of humerus', '(831.13) Open inferior dislocation of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\(831.14) Open dislocation of acromioclavicular (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\(831.14) Open dislocation of acromioclavicular (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.14) Open dislocation of acromioclavicular (joint''', NULL, + '(831.14) Open dislocation of acromioclavicular (joint)', '(831.14) Open dislocation of acromioclavicular (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\(831.19) Open dislocation of shoulder, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of shoulder (831)\Open dislocation of shoulder (831.1)\(831.19) Open dislocation of shoulder, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''831.19''', NULL, + '(831.19) Open dislocation of shoulder, other', '(831.19) Open dislocation of shoulder, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833''', NULL, + 'Dislocation of wrist (833)', 'Dislocation of wrist (833)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.0''', NULL, + 'Closed dislocation of wrist (833.0)', 'Closed dislocation of wrist (833.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.00) Closed dislocation of wrist, unspecified part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.00) Closed dislocation of wrist, unspecified part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.00''', NULL, + '(833.00) Closed dislocation of wrist, unspecified part', '(833.00) Closed dislocation of wrist, unspecified part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.01) Closed dislocation of radioulnar (joint), distal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.01) Closed dislocation of radioulnar (joint), distal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.01) Closed dislocation of radioulnar (joint''', NULL, + '(833.01) Closed dislocation of radioulnar (joint), distal', '(833.01) Closed dislocation of radioulnar (joint), distal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.02) Closed dislocation of radiocarpal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.02) Closed dislocation of radiocarpal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.02) Closed dislocation of radiocarpal (joint''', NULL, + '(833.02) Closed dislocation of radiocarpal (joint)', '(833.02) Closed dislocation of radiocarpal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.03) Closed dislocation of midcarpal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.03) Closed dislocation of midcarpal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.03) Closed dislocation of midcarpal (joint''', NULL, + '(833.03) Closed dislocation of midcarpal (joint)', '(833.03) Closed dislocation of midcarpal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.04) Closed dislocation of carpometacarpal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.04) Closed dislocation of carpometacarpal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.04) Closed dislocation of carpometacarpal (joint''', NULL, + '(833.04) Closed dislocation of carpometacarpal (joint)', '(833.04) Closed dislocation of carpometacarpal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.05) Closed dislocation of metacarpal (bone), proximal end\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.05) Closed dislocation of metacarpal (bone), proximal end\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.05) Closed dislocation of metacarpal (bone''', NULL, + '(833.05) Closed dislocation of metacarpal (bone), proximal end', '(833.05) Closed dislocation of metacarpal (bone), proximal end', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.09) Closed dislocation of wrist, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Closed dislocation of wrist (833.0)\(833.09) Closed dislocation of wrist, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.09''', NULL, + '(833.09) Closed dislocation of wrist, other', '(833.09) Closed dislocation of wrist, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.1''', NULL, + 'Open dislocation of wrist (833.1)', 'Open dislocation of wrist (833.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.10) Open dislocation of wrist, unspecified part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.10) Open dislocation of wrist, unspecified part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.10''', NULL, + '(833.10) Open dislocation of wrist, unspecified part', '(833.10) Open dislocation of wrist, unspecified part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.11) Open dislocation of radioulnar (joint), distal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.11) Open dislocation of radioulnar (joint), distal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.11) Open dislocation of radioulnar (joint''', NULL, + '(833.11) Open dislocation of radioulnar (joint), distal', '(833.11) Open dislocation of radioulnar (joint), distal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.12) Open dislocation of radiocarpal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.12) Open dislocation of radiocarpal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.12) Open dislocation of radiocarpal (joint''', NULL, + '(833.12) Open dislocation of radiocarpal (joint)', '(833.12) Open dislocation of radiocarpal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.13) Open dislocation of midcarpal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.13) Open dislocation of midcarpal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.13) Open dislocation of midcarpal (joint''', NULL, + '(833.13) Open dislocation of midcarpal (joint)', '(833.13) Open dislocation of midcarpal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.14) Open dislocation of carpometacarpal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.14) Open dislocation of carpometacarpal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.14) Open dislocation of carpometacarpal (joint''', NULL, + '(833.14) Open dislocation of carpometacarpal (joint)', '(833.14) Open dislocation of carpometacarpal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.15) Open dislocation of metacarpal (bone), proximal end\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.15) Open dislocation of metacarpal (bone), proximal end\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.15) Open dislocation of metacarpal (bone''', NULL, + '(833.15) Open dislocation of metacarpal (bone), proximal end', '(833.15) Open dislocation of metacarpal (bone), proximal end', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.19) Open dislocation of wrist, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Dislocation of wrist (833)\Open dislocation of wrist (833.1)\(833.19) Open dislocation of wrist, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''833.19''', NULL, + '(833.19) Open dislocation of wrist, other', '(833.19) Open dislocation of wrist, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839''', NULL, + 'Other, multiple, and ill-defined dislocations (839)', 'Other, multiple, and ill-defined dislocations (839)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\(839.8) Closed dislocation, multiple and ill-defined sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\(839.8) Closed dislocation, multiple and ill-defined sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.8''', NULL, + '(839.8) Closed dislocation, multiple and ill-defined sites', '(839.8) Closed dislocation, multiple and ill-defined sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\(839.9) Open dislocation, multiple and ill-defined sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\(839.9) Open dislocation, multiple and ill-defined sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.9''', NULL, + '(839.9) Open dislocation, multiple and ill-defined sites', '(839.9) Open dislocation, multiple and ill-defined sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.0''', NULL, + 'Closed dislocation, cervical vertebra (839.0)', 'Closed dislocation, cervical vertebra (839.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.00) Closed dislocation, cervical vertebra, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.00) Closed dislocation, cervical vertebra, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.00''', NULL, + '(839.00) Closed dislocation, cervical vertebra, unspecified', '(839.00) Closed dislocation, cervical vertebra, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.01) Closed dislocation, first cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.01) Closed dislocation, first cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.01''', NULL, + '(839.01) Closed dislocation, first cervical vertebra', '(839.01) Closed dislocation, first cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.02) Closed dislocation, second cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.02) Closed dislocation, second cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.02''', NULL, + '(839.02) Closed dislocation, second cervical vertebra', '(839.02) Closed dislocation, second cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.03) Closed dislocation, third cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.03) Closed dislocation, third cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.03''', NULL, + '(839.03) Closed dislocation, third cervical vertebra', '(839.03) Closed dislocation, third cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.04) Closed dislocation, fourth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.04) Closed dislocation, fourth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.04''', NULL, + '(839.04) Closed dislocation, fourth cervical vertebra', '(839.04) Closed dislocation, fourth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.05) Closed dislocation, fifth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.05) Closed dislocation, fifth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.05''', NULL, + '(839.05) Closed dislocation, fifth cervical vertebra', '(839.05) Closed dislocation, fifth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.06) Closed dislocation, sixth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.06) Closed dislocation, sixth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.06''', NULL, + '(839.06) Closed dislocation, sixth cervical vertebra', '(839.06) Closed dislocation, sixth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.07) Closed dislocation, seventh cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.07) Closed dislocation, seventh cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.07''', NULL, + '(839.07) Closed dislocation, seventh cervical vertebra', '(839.07) Closed dislocation, seventh cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.08) Closed dislocation, multiple cervical vertebrae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, cervical vertebra (839.0)\(839.08) Closed dislocation, multiple cervical vertebrae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.08''', NULL, + '(839.08) Closed dislocation, multiple cervical vertebrae', '(839.08) Closed dislocation, multiple cervical vertebrae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other location (839.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other location (839.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.6''', NULL, + 'Closed dislocation, other location (839.6)', 'Closed dislocation, other location (839.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other location (839.6)\(839.61) Closed dislocation, sternum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other location (839.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other location (839.6)\(839.61) Closed dislocation, sternum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.61''', NULL, + '(839.61) Closed dislocation, sternum', '(839.61) Closed dislocation, sternum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other location (839.6)\(839.69) Closed dislocation, other location\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other location (839.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other location (839.6)\(839.69) Closed dislocation, other location\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.69''', NULL, + '(839.69) Closed dislocation, other location', '(839.69) Closed dislocation, other location', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.4''', NULL, + 'Closed dislocation, other vertebra (839.4)', 'Closed dislocation, other vertebra (839.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\(839.40) Closed dislocation, vertebra, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\(839.40) Closed dislocation, vertebra, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.40''', NULL, + '(839.40) Closed dislocation, vertebra, unspecified site', '(839.40) Closed dislocation, vertebra, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\(839.41) Closed dislocation, coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\(839.41) Closed dislocation, coccyx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.41''', NULL, + '(839.41) Closed dislocation, coccyx', '(839.41) Closed dislocation, coccyx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\(839.42) Closed dislocation, sacrum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\(839.42) Closed dislocation, sacrum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.42''', NULL, + '(839.42) Closed dislocation, sacrum', '(839.42) Closed dislocation, sacrum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\(839.49) Closed dislocation, vertebra, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, other vertebra (839.4)\(839.49) Closed dislocation, vertebra, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.49''', NULL, + '(839.49) Closed dislocation, vertebra, other', '(839.49) Closed dislocation, vertebra, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, thoracic and lumbar vertebra (839.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, thoracic and lumbar vertebra (839.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.2''', NULL, + 'Closed dislocation, thoracic and lumbar vertebra (839.2)', 'Closed dislocation, thoracic and lumbar vertebra (839.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, thoracic and lumbar vertebra (839.2)\(839.20) Closed dislocation, lumbar vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, thoracic and lumbar vertebra (839.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, thoracic and lumbar vertebra (839.2)\(839.20) Closed dislocation, lumbar vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.20''', NULL, + '(839.20) Closed dislocation, lumbar vertebra', '(839.20) Closed dislocation, lumbar vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, thoracic and lumbar vertebra (839.2)\(839.21) Closed dislocation, thoracic vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, thoracic and lumbar vertebra (839.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Closed dislocation, thoracic and lumbar vertebra (839.2)\(839.21) Closed dislocation, thoracic vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.21''', NULL, + '(839.21) Closed dislocation, thoracic vertebra', '(839.21) Closed dislocation, thoracic vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.1''', NULL, + 'Open dislocation, cervical vertebra (839.1)', 'Open dislocation, cervical vertebra (839.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.10) Open dislocation, cervical vertebra, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.10) Open dislocation, cervical vertebra, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.10''', NULL, + '(839.10) Open dislocation, cervical vertebra, unspecified', '(839.10) Open dislocation, cervical vertebra, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.11) Open dislocation, first cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.11) Open dislocation, first cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.11''', NULL, + '(839.11) Open dislocation, first cervical vertebra', '(839.11) Open dislocation, first cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.12) Open dislocation, second cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.12) Open dislocation, second cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.12''', NULL, + '(839.12) Open dislocation, second cervical vertebra', '(839.12) Open dislocation, second cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.13) Open dislocation, third cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.13) Open dislocation, third cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.13''', NULL, + '(839.13) Open dislocation, third cervical vertebra', '(839.13) Open dislocation, third cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.14) Open dislocation, fourth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.14) Open dislocation, fourth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.14''', NULL, + '(839.14) Open dislocation, fourth cervical vertebra', '(839.14) Open dislocation, fourth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.15) Open dislocation, fifth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.15) Open dislocation, fifth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.15''', NULL, + '(839.15) Open dislocation, fifth cervical vertebra', '(839.15) Open dislocation, fifth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.16) Open dislocation, sixth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.16) Open dislocation, sixth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.16''', NULL, + '(839.16) Open dislocation, sixth cervical vertebra', '(839.16) Open dislocation, sixth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.17) Open dislocation, seventh cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.17) Open dislocation, seventh cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.17''', NULL, + '(839.17) Open dislocation, seventh cervical vertebra', '(839.17) Open dislocation, seventh cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.18) Open dislocation, multiple cervical vertebrae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, cervical vertebra (839.1)\(839.18) Open dislocation, multiple cervical vertebrae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.18''', NULL, + '(839.18) Open dislocation, multiple cervical vertebrae', '(839.18) Open dislocation, multiple cervical vertebrae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other location (839.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other location (839.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.7''', NULL, + 'Open dislocation, other location (839.7)', 'Open dislocation, other location (839.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other location (839.7)\(839.71) Open dislocation, sternum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other location (839.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other location (839.7)\(839.71) Open dislocation, sternum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.71''', NULL, + '(839.71) Open dislocation, sternum', '(839.71) Open dislocation, sternum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other location (839.7)\(839.79) Open dislocation, other location\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other location (839.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other location (839.7)\(839.79) Open dislocation, other location\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.79''', NULL, + '(839.79) Open dislocation, other location', '(839.79) Open dislocation, other location', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.5''', NULL, + 'Open dislocation, other vertebra (839.5)', 'Open dislocation, other vertebra (839.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\(839.50) Open dislocation, vertebra, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\(839.50) Open dislocation, vertebra, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.50''', NULL, + '(839.50) Open dislocation, vertebra, unspecified site', '(839.50) Open dislocation, vertebra, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\(839.51) Open dislocation, coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\(839.51) Open dislocation, coccyx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.51''', NULL, + '(839.51) Open dislocation, coccyx', '(839.51) Open dislocation, coccyx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\(839.52) Open dislocation, sacrum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\(839.52) Open dislocation, sacrum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.52''', NULL, + '(839.52) Open dislocation, sacrum', '(839.52) Open dislocation, sacrum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\(839.59) Open dislocation, vertebra,other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, other vertebra (839.5)\(839.59) Open dislocation, vertebra,other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.59''', NULL, + '(839.59) Open dislocation, vertebra,other', '(839.59) Open dislocation, vertebra,other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, thoracic and lumbar vertebra (839.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, thoracic and lumbar vertebra (839.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.3''', NULL, + 'Open dislocation, thoracic and lumbar vertebra (839.3)', 'Open dislocation, thoracic and lumbar vertebra (839.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, thoracic and lumbar vertebra (839.3)\(839.30) Open dislocation, lumbar vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, thoracic and lumbar vertebra (839.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, thoracic and lumbar vertebra (839.3)\(839.30) Open dislocation, lumbar vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.30''', NULL, + '(839.30) Open dislocation, lumbar vertebra', '(839.30) Open dislocation, lumbar vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, thoracic and lumbar vertebra (839.3)\(839.31) Open dislocation, thoracic vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, thoracic and lumbar vertebra (839.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Dislocation (830-839.99)\Other, multiple, and ill-defined dislocations (839)\Open dislocation, thoracic and lumbar vertebra (839.3)\(839.31) Open dislocation, thoracic vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''839.31''', NULL, + '(839.31) Open dislocation, thoracic vertebra', '(839.31) Open dislocation, thoracic vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''930'' AND ''939.99''', NULL, + 'Effects of foreign body entering through orifice (930-939.99)', 'Effects of foreign body entering through orifice (930-939.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\(931) Foreign body in ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\(931) Foreign body in ear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''931''', NULL, + '(931) Foreign body in ear', '(931) Foreign body in ear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\(932) Foreign body in nose\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\(932) Foreign body in nose\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''932''', NULL, + '(932) Foreign body in nose', '(932) Foreign body in nose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\(936) Foreign body in intestine and colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\(936) Foreign body in intestine and colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''936''', NULL, + '(936) Foreign body in intestine and colon', '(936) Foreign body in intestine and colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\(937) Foreign body in anus and rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\(937) Foreign body in anus and rectum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''937''', NULL, + '(937) Foreign body in anus and rectum', '(937) Foreign body in anus and rectum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\(938) Foreign body in digestive system, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\(938) Foreign body in digestive system, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''938''', NULL, + '(938) Foreign body in digestive system, unspecified', '(938) Foreign body in digestive system, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''939''', NULL, + 'Foreign body in genitourinary tract (939)', 'Foreign body in genitourinary tract (939)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\(939.0) Foreign body in bladder and urethra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\(939.0) Foreign body in bladder and urethra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''939.0''', NULL, + '(939.0) Foreign body in bladder and urethra', '(939.0) Foreign body in bladder and urethra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\(939.1) Foreign body in uterus, any part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\(939.1) Foreign body in uterus, any part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''939.1''', NULL, + '(939.1) Foreign body in uterus, any part', '(939.1) Foreign body in uterus, any part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\(939.2) Foreign body in vulva and vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\(939.2) Foreign body in vulva and vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''939.2''', NULL, + '(939.2) Foreign body in vulva and vagina', '(939.2) Foreign body in vulva and vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\(939.3) Foreign body in penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\(939.3) Foreign body in penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''939.3''', NULL, + '(939.3) Foreign body in penis', '(939.3) Foreign body in penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\(939.9) Foreign body in unspecified site in genitourinary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in genitourinary tract (939)\(939.9) Foreign body in unspecified site in genitourinary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''939.9''', NULL, + '(939.9) Foreign body in unspecified site in genitourinary tract', '(939.9) Foreign body in unspecified site in genitourinary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in mouth, esophagus, and stomach (935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in mouth, esophagus, and stomach (935)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''935''', NULL, + 'Foreign body in mouth, esophagus, and stomach (935)', 'Foreign body in mouth, esophagus, and stomach (935)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in mouth, esophagus, and stomach (935)\(935.0) Foreign body in mouth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in mouth, esophagus, and stomach (935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in mouth, esophagus, and stomach (935)\(935.0) Foreign body in mouth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''935.0''', NULL, + '(935.0) Foreign body in mouth', '(935.0) Foreign body in mouth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in mouth, esophagus, and stomach (935)\(935.1) Foreign body in esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in mouth, esophagus, and stomach (935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in mouth, esophagus, and stomach (935)\(935.1) Foreign body in esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''935.1''', NULL, + '(935.1) Foreign body in esophagus', '(935.1) Foreign body in esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in mouth, esophagus, and stomach (935)\(935.2) Foreign body in stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in mouth, esophagus, and stomach (935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in mouth, esophagus, and stomach (935)\(935.2) Foreign body in stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''935.2''', NULL, + '(935.2) Foreign body in stomach', '(935.2) Foreign body in stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in pharynx and larynx (933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in pharynx and larynx (933)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''933''', NULL, + 'Foreign body in pharynx and larynx (933)', 'Foreign body in pharynx and larynx (933)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in pharynx and larynx (933)\(933.0) Foreign body in pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in pharynx and larynx (933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in pharynx and larynx (933)\(933.0) Foreign body in pharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''933.0''', NULL, + '(933.0) Foreign body in pharynx', '(933.0) Foreign body in pharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in pharynx and larynx (933)\(933.1) Foreign body in larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in pharynx and larynx (933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in pharynx and larynx (933)\(933.1) Foreign body in larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''933.1''', NULL, + '(933.1) Foreign body in larynx', '(933.1) Foreign body in larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''934''', NULL, + 'Foreign body in trachea, bronchus, and lung (934)', 'Foreign body in trachea, bronchus, and lung (934)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\(934.0) Foreign body in trachea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\(934.0) Foreign body in trachea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''934.0''', NULL, + '(934.0) Foreign body in trachea', '(934.0) Foreign body in trachea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\(934.1) Foreign body in main bronchus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\(934.1) Foreign body in main bronchus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''934.1''', NULL, + '(934.1) Foreign body in main bronchus', '(934.1) Foreign body in main bronchus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\(934.8) Foreign body in other specified parts bronchus and lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\(934.8) Foreign body in other specified parts bronchus and lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''934.8''', NULL, + '(934.8) Foreign body in other specified parts bronchus and lung', '(934.8) Foreign body in other specified parts bronchus and lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\(934.9) Foreign body in respiratory tree, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body in trachea, bronchus, and lung (934)\(934.9) Foreign body in respiratory tree, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''934.9''', NULL, + '(934.9) Foreign body in respiratory tree, unspecified', '(934.9) Foreign body in respiratory tree, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''930''', NULL, + 'Foreign body on external eye (930)', 'Foreign body on external eye (930)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\(930.0) Corneal foreign body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\(930.0) Corneal foreign body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''930.0''', NULL, + '(930.0) Corneal foreign body', '(930.0) Corneal foreign body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\(930.1) Foreign body in conjunctival sac\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\(930.1) Foreign body in conjunctival sac\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''930.1''', NULL, + '(930.1) Foreign body in conjunctival sac', '(930.1) Foreign body in conjunctival sac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\(930.2) Foreign body in lacrimal punctum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\(930.2) Foreign body in lacrimal punctum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''930.2''', NULL, + '(930.2) Foreign body in lacrimal punctum', '(930.2) Foreign body in lacrimal punctum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\(930.8) Foreign body in other and combined sites on external eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\(930.8) Foreign body in other and combined sites on external eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''930.8''', NULL, + '(930.8) Foreign body in other and combined sites on external eye', '(930.8) Foreign body in other and combined sites on external eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\(930.9) Foreign body in unspecified site on external eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Effects of foreign body entering through orifice (930-939.99)\Foreign body on external eye (930)\(930.9) Foreign body in unspecified site on external eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''930.9''', NULL, + '(930.9) Foreign body in unspecified site on external eye', '(930.9) Foreign body in unspecified site on external eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''800'' AND ''829.99''', NULL, + 'Fractures (800-829.99)', 'Fractures (800-829.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''820'' AND ''829.99''', NULL, + 'FRACTURE OF LOWER LIMB (820-829.99)', 'FRACTURE OF LOWER LIMB (820-829.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''824''', NULL, + 'Fracture of ankle (824)', 'Fracture of ankle (824)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.0) Fracture of medial malleolus, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.0) Fracture of medial malleolus, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''824.0''', NULL, + '(824.0) Fracture of medial malleolus, closed', '(824.0) Fracture of medial malleolus, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.1) Fracture of medial malleolus, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.1) Fracture of medial malleolus, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''824.1''', NULL, + '(824.1) Fracture of medial malleolus, open', '(824.1) Fracture of medial malleolus, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.2) Fracture of lateral malleolus, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.2) Fracture of lateral malleolus, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''824.2''', NULL, + '(824.2) Fracture of lateral malleolus, closed', '(824.2) Fracture of lateral malleolus, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.3) Fracture of lateral malleolus, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.3) Fracture of lateral malleolus, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''824.3''', NULL, + '(824.3) Fracture of lateral malleolus, open', '(824.3) Fracture of lateral malleolus, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.4) Bimalleolar fracture, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.4) Bimalleolar fracture, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''824.4''', NULL, + '(824.4) Bimalleolar fracture, closed', '(824.4) Bimalleolar fracture, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.5) Bimalleolar fracture, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.5) Bimalleolar fracture, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''824.5''', NULL, + '(824.5) Bimalleolar fracture, open', '(824.5) Bimalleolar fracture, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.6) Trimalleolar fracture, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.6) Trimalleolar fracture, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''824.6''', NULL, + '(824.6) Trimalleolar fracture, closed', '(824.6) Trimalleolar fracture, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.7) Trimalleolar fracture, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.7) Trimalleolar fracture, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''824.7''', NULL, + '(824.7) Trimalleolar fracture, open', '(824.7) Trimalleolar fracture, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.8) Unspecified fracture of ankle, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.8) Unspecified fracture of ankle, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''824.8''', NULL, + '(824.8) Unspecified fracture of ankle, closed', '(824.8) Unspecified fracture of ankle, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.9) Unspecified fracture of ankle, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of ankle (824)\(824.9) Unspecified fracture of ankle, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''824.9''', NULL, + '(824.9) Unspecified fracture of ankle, open', '(824.9) Unspecified fracture of ankle, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820''', NULL, + 'Fracture of neck of femur (820)', 'Fracture of neck of femur (820)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\(820.8) Closed fracture of unspecified part of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\(820.8) Closed fracture of unspecified part of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.8''', NULL, + '(820.8) Closed fracture of unspecified part of neck of femur', '(820.8) Closed fracture of unspecified part of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\(820.9) Open fracture of unspecified part of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\(820.9) Open fracture of unspecified part of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.9''', NULL, + '(820.9) Open fracture of unspecified part of neck of femur', '(820.9) Open fracture of unspecified part of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, closed (820.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, closed (820.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.2''', NULL, + 'Pertrochanteric fracture of femur, closed (820.2)', 'Pertrochanteric fracture of femur, closed (820.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, closed (820.2)\(820.20) Closed fracture of trochanteric section of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, closed (820.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, closed (820.2)\(820.20) Closed fracture of trochanteric section of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.20''', NULL, + '(820.20) Closed fracture of trochanteric section of neck of femur', '(820.20) Closed fracture of trochanteric section of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, closed (820.2)\(820.21) Closed fracture of intertrochanteric section of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, closed (820.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, closed (820.2)\(820.21) Closed fracture of intertrochanteric section of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.21''', NULL, + '(820.21) Closed fracture of intertrochanteric section of neck of femur', '(820.21) Closed fracture of intertrochanteric section of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, closed (820.2)\(820.22) Closed fracture of subtrochanteric section of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, closed (820.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, closed (820.2)\(820.22) Closed fracture of subtrochanteric section of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.22''', NULL, + '(820.22) Closed fracture of subtrochanteric section of neck of femur', '(820.22) Closed fracture of subtrochanteric section of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, open (820.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, open (820.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.3''', NULL, + 'Pertrochanteric fracture of femur, open (820.3)', 'Pertrochanteric fracture of femur, open (820.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, open (820.3)\(820.30) Open fracture of trochanteric section of neck of femur, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, open (820.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, open (820.3)\(820.30) Open fracture of trochanteric section of neck of femur, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.30''', NULL, + '(820.30) Open fracture of trochanteric section of neck of femur, unspecified', '(820.30) Open fracture of trochanteric section of neck of femur, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, open (820.3)\(820.31) Open fracture of intertrochanteric section of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, open (820.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, open (820.3)\(820.31) Open fracture of intertrochanteric section of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.31''', NULL, + '(820.31) Open fracture of intertrochanteric section of neck of femur', '(820.31) Open fracture of intertrochanteric section of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, open (820.3)\(820.32) Open fracture of subtrochanteric section of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, open (820.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Pertrochanteric fracture of femur, open (820.3)\(820.32) Open fracture of subtrochanteric section of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.32''', NULL, + '(820.32) Open fracture of subtrochanteric section of neck of femur', '(820.32) Open fracture of subtrochanteric section of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.0''', NULL, + 'Transcervical fracture, closed (820.0)', 'Transcervical fracture, closed (820.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\(820.00) Closed fracture of intracapsular section of neck of femur, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\(820.00) Closed fracture of intracapsular section of neck of femur, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.00''', NULL, + '(820.00) Closed fracture of intracapsular section of neck of femur, unspecified', '(820.00) Closed fracture of intracapsular section of neck of femur, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\(820.01) Closed fracture of epiphysis (separation) (upper) of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\(820.01) Closed fracture of epiphysis (separation) (upper) of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.01) Closed fracture of epiphysis (separation) (upper''', NULL, + '(820.01) Closed fracture of epiphysis (separation) (upper) of neck of femur', '(820.01) Closed fracture of epiphysis (separation) (upper) of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\(820.02) Closed fracture of midcervical section of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\(820.02) Closed fracture of midcervical section of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.02''', NULL, + '(820.02) Closed fracture of midcervical section of neck of femur', '(820.02) Closed fracture of midcervical section of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\(820.03) Closed fracture of base of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\(820.03) Closed fracture of base of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.03''', NULL, + '(820.03) Closed fracture of base of neck of femur', '(820.03) Closed fracture of base of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\(820.09) Other closed transcervical fracture of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, closed (820.0)\(820.09) Other closed transcervical fracture of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.09''', NULL, + '(820.09) Other closed transcervical fracture of neck of femur', '(820.09) Other closed transcervical fracture of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.1''', NULL, + 'Transcervical fracture, open (820.1)', 'Transcervical fracture, open (820.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\(820.10) Open fracture of intracapsular section of neck of femur, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\(820.10) Open fracture of intracapsular section of neck of femur, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.10''', NULL, + '(820.10) Open fracture of intracapsular section of neck of femur, unspecified', '(820.10) Open fracture of intracapsular section of neck of femur, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\(820.11) Open fracture of epiphysis (separation) (upper) of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\(820.11) Open fracture of epiphysis (separation) (upper) of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.11) Open fracture of epiphysis (separation) (upper''', NULL, + '(820.11) Open fracture of epiphysis (separation) (upper) of neck of femur', '(820.11) Open fracture of epiphysis (separation) (upper) of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\(820.12) Open fracture of midcervical section of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\(820.12) Open fracture of midcervical section of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.12''', NULL, + '(820.12) Open fracture of midcervical section of neck of femur', '(820.12) Open fracture of midcervical section of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\(820.13) Open fracture of base of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\(820.13) Open fracture of base of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.13''', NULL, + '(820.13) Open fracture of base of neck of femur', '(820.13) Open fracture of base of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\(820.19) Other open transcervical fracture of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of neck of femur (820)\Transcervical fracture, open (820.1)\(820.19) Other open transcervical fracture of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''820.19''', NULL, + '(820.19) Other open transcervical fracture of neck of femur', '(820.19) Other open transcervical fracture of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more phalanges of foot (826)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more phalanges of foot (826)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''826''', NULL, + 'Fracture of one or more phalanges of foot (826)', 'Fracture of one or more phalanges of foot (826)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more phalanges of foot (826)\(826.0) Closed fracture of one or more phalanges of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more phalanges of foot (826)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more phalanges of foot (826)\(826.0) Closed fracture of one or more phalanges of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''826.0''', NULL, + '(826.0) Closed fracture of one or more phalanges of foot', '(826.0) Closed fracture of one or more phalanges of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more phalanges of foot (826)\(826.1) Open fracture of one or more phalanges of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more phalanges of foot (826)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more phalanges of foot (826)\(826.1) Open fracture of one or more phalanges of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''826.1''', NULL, + '(826.1) Open fracture of one or more phalanges of foot', '(826.1) Open fracture of one or more phalanges of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825''', NULL, + 'Fracture of one or more tarsal and metatarsal bones (825)', 'Fracture of one or more tarsal and metatarsal bones (825)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\(825.0) Fracture of calcaneus, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\(825.0) Fracture of calcaneus, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.0''', NULL, + '(825.0) Fracture of calcaneus, closed', '(825.0) Fracture of calcaneus, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\(825.1) Fracture of calcaneus, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\(825.1) Fracture of calcaneus, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.1''', NULL, + '(825.1) Fracture of calcaneus, open', '(825.1) Fracture of calcaneus, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.2''', NULL, + 'Fracture of other tarsal and metatarsal bones, closed (825.2)', 'Fracture of other tarsal and metatarsal bones, closed (825.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.20) Closed fracture of unspecified bone(s) of foot [except toes]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.20) Closed fracture of unspecified bone(s) of foot [except toes]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.20) Closed fracture of unspecified bone(s''', NULL, + '(825.20) Closed fracture of unspecified bone(s) of foot [except toes]', '(825.20) Closed fracture of unspecified bone(s) of foot [except toes]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.21) Closed fracture of astragalus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.21) Closed fracture of astragalus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.21''', NULL, + '(825.21) Closed fracture of astragalus', '(825.21) Closed fracture of astragalus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.22) Closed fracture of navicular [scaphoid], foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.22) Closed fracture of navicular [scaphoid], foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.22''', NULL, + '(825.22) Closed fracture of navicular [scaphoid], foot', '(825.22) Closed fracture of navicular [scaphoid], foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.23) Closed fracture of cuboid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.23) Closed fracture of cuboid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.23''', NULL, + '(825.23) Closed fracture of cuboid', '(825.23) Closed fracture of cuboid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.24) Closed fracture of cuneiform, foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.24) Closed fracture of cuneiform, foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.24''', NULL, + '(825.24) Closed fracture of cuneiform, foot', '(825.24) Closed fracture of cuneiform, foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.25) Closed fracture of metatarsal bone(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.25) Closed fracture of metatarsal bone(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.25) Closed fracture of metatarsal bone(s''', NULL, + '(825.25) Closed fracture of metatarsal bone(s)', '(825.25) Closed fracture of metatarsal bone(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.29) Other closed fracture of tarsal and metatarsal bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, closed (825.2)\(825.29) Other closed fracture of tarsal and metatarsal bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.29''', NULL, + '(825.29) Other closed fracture of tarsal and metatarsal bones', '(825.29) Other closed fracture of tarsal and metatarsal bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.3''', NULL, + 'Fracture of other tarsal and metatarsal bones, open (825.3)', 'Fracture of other tarsal and metatarsal bones, open (825.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.30) Open fracture of unspecified bone(s) of foot [except toes]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.30) Open fracture of unspecified bone(s) of foot [except toes]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.30) Open fracture of unspecified bone(s''', NULL, + '(825.30) Open fracture of unspecified bone(s) of foot [except toes]', '(825.30) Open fracture of unspecified bone(s) of foot [except toes]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.31) Open fracture of astragalus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.31) Open fracture of astragalus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.31''', NULL, + '(825.31) Open fracture of astragalus', '(825.31) Open fracture of astragalus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.32) Open fracture of navicular [scaphoid], foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.32) Open fracture of navicular [scaphoid], foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.32''', NULL, + '(825.32) Open fracture of navicular [scaphoid], foot', '(825.32) Open fracture of navicular [scaphoid], foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.33) Open fracture of cuboid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.33) Open fracture of cuboid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.33''', NULL, + '(825.33) Open fracture of cuboid', '(825.33) Open fracture of cuboid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.34) Open fracture of cuneiform, foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.34) Open fracture of cuneiform, foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.34''', NULL, + '(825.34) Open fracture of cuneiform, foot', '(825.34) Open fracture of cuneiform, foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.35) Open fracture of metatarsal bone(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.35) Open fracture of metatarsal bone(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.35) Open fracture of metatarsal bone(s''', NULL, + '(825.35) Open fracture of metatarsal bone(s)', '(825.35) Open fracture of metatarsal bone(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.39) Other open fracture of tarsal and metatarsal bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of one or more tarsal and metatarsal bones (825)\Fracture of other tarsal and metatarsal bones, open (825.3)\(825.39) Other open fracture of tarsal and metatarsal bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''825.39''', NULL, + '(825.39) Other open fracture of tarsal and metatarsal bones', '(825.39) Other open fracture of tarsal and metatarsal bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821''', NULL, + 'Fracture of other and unspecified parts of femur (821)', 'Fracture of other and unspecified parts of femur (821)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.2''', NULL, + 'Fracture of lower end of femur, closed (821.2)', 'Fracture of lower end of femur, closed (821.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\(821.20) Closed fracture of lower end of femur, unspecified part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\(821.20) Closed fracture of lower end of femur, unspecified part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.20''', NULL, + '(821.20) Closed fracture of lower end of femur, unspecified part', '(821.20) Closed fracture of lower end of femur, unspecified part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\(821.21) Closed fracture of condyle, femoral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\(821.21) Closed fracture of condyle, femoral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.21''', NULL, + '(821.21) Closed fracture of condyle, femoral', '(821.21) Closed fracture of condyle, femoral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\(821.22) Closed fracture of epiphysis, lower (separation) of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\(821.22) Closed fracture of epiphysis, lower (separation) of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.22) Closed fracture of epiphysis, lower (separation''', NULL, + '(821.22) Closed fracture of epiphysis, lower (separation) of femur', '(821.22) Closed fracture of epiphysis, lower (separation) of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\(821.23) Closed supracondylar fracture of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\(821.23) Closed supracondylar fracture of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.23''', NULL, + '(821.23) Closed supracondylar fracture of femur', '(821.23) Closed supracondylar fracture of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\(821.29) Other closed fracture of lower end of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, closed (821.2)\(821.29) Other closed fracture of lower end of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.29''', NULL, + '(821.29) Other closed fracture of lower end of femur', '(821.29) Other closed fracture of lower end of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.3''', NULL, + 'Fracture of lower end of femur, open (821.3)', 'Fracture of lower end of femur, open (821.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\(821.30) Open fracture of lower end of femur, unspecified part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\(821.30) Open fracture of lower end of femur, unspecified part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.30''', NULL, + '(821.30) Open fracture of lower end of femur, unspecified part', '(821.30) Open fracture of lower end of femur, unspecified part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\(821.31) Open fracture of condyle, femoral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\(821.31) Open fracture of condyle, femoral\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.31''', NULL, + '(821.31) Open fracture of condyle, femoral', '(821.31) Open fracture of condyle, femoral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\(821.32) Open fracture of epiphysis. Lower (separation) of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\(821.32) Open fracture of epiphysis. Lower (separation) of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.32) Open fracture of epiphysis. Lower (separation''', NULL, + '(821.32) Open fracture of epiphysis. Lower (separation) of femur', '(821.32) Open fracture of epiphysis. Lower (separation) of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\(821.33) Open supracondylar fracture of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\(821.33) Open supracondylar fracture of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.33''', NULL, + '(821.33) Open supracondylar fracture of femur', '(821.33) Open supracondylar fracture of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\(821.39) Other open fracture of lower end of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of lower end of femur, open (821.3)\(821.39) Other open fracture of lower end of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.39''', NULL, + '(821.39) Other open fracture of lower end of femur', '(821.39) Other open fracture of lower end of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, closed (821.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, closed (821.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.0''', NULL, + 'Fracture of shaft or unspecified part of femur, closed (821.0)', 'Fracture of shaft or unspecified part of femur, closed (821.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, closed (821.0)\(821.00) Closed fracture of unspecified part of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, closed (821.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, closed (821.0)\(821.00) Closed fracture of unspecified part of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.00''', NULL, + '(821.00) Closed fracture of unspecified part of femur', '(821.00) Closed fracture of unspecified part of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, closed (821.0)\(821.01) Closed fracture of shaft of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, closed (821.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, closed (821.0)\(821.01) Closed fracture of shaft of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.01''', NULL, + '(821.01) Closed fracture of shaft of femur', '(821.01) Closed fracture of shaft of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, open (821.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, open (821.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.1''', NULL, + 'Fracture of shaft or unspecified part of femur, open (821.1)', 'Fracture of shaft or unspecified part of femur, open (821.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, open (821.1)\(821.10) Open fracture of unspecified part of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, open (821.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, open (821.1)\(821.10) Open fracture of unspecified part of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.10''', NULL, + '(821.10) Open fracture of unspecified part of femur', '(821.10) Open fracture of unspecified part of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, open (821.1)\(821.11) Open fracture of shaft of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, open (821.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of other and unspecified parts of femur (821)\Fracture of shaft or unspecified part of femur, open (821.1)\(821.11) Open fracture of shaft of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''821.11''', NULL, + '(821.11) Open fracture of shaft of femur', '(821.11) Open fracture of shaft of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of patella (822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of patella (822)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''822''', NULL, + 'Fracture of patella (822)', 'Fracture of patella (822)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of patella (822)\(822.0) Closed fracture of patella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of patella (822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of patella (822)\(822.0) Closed fracture of patella\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''822.0''', NULL, + '(822.0) Closed fracture of patella', '(822.0) Closed fracture of patella', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of patella (822)\(822.1) Open fracture of patella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of patella (822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of patella (822)\(822.1) Open fracture of patella\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''822.1''', NULL, + '(822.1) Open fracture of patella', '(822.1) Open fracture of patella', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823''', NULL, + 'Fracture of tibia and fibula (823)', 'Fracture of tibia and fibula (823)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, closed (823.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, closed (823.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.2''', NULL, + 'Fracture of shaft of tibia and fibula, closed (823.2)', 'Fracture of shaft of tibia and fibula, closed (823.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, closed (823.2)\(823.20) Closed fracture of shaft of tibia alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, closed (823.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, closed (823.2)\(823.20) Closed fracture of shaft of tibia alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.20''', NULL, + '(823.20) Closed fracture of shaft of tibia alone', '(823.20) Closed fracture of shaft of tibia alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, closed (823.2)\(823.21) Closed fracture of shaft of fibula alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, closed (823.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, closed (823.2)\(823.21) Closed fracture of shaft of fibula alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.21''', NULL, + '(823.21) Closed fracture of shaft of fibula alone', '(823.21) Closed fracture of shaft of fibula alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, closed (823.2)\(823.22) Closed fracture of shaft of fibula with tibia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, closed (823.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, closed (823.2)\(823.22) Closed fracture of shaft of fibula with tibia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.22''', NULL, + '(823.22) Closed fracture of shaft of fibula with tibia', '(823.22) Closed fracture of shaft of fibula with tibia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, open (823.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, open (823.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.3''', NULL, + 'Fracture of shaft of tibia and fibula, open (823.3)', 'Fracture of shaft of tibia and fibula, open (823.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, open (823.3)\(823.30) Open fracture of shaft of tibia alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, open (823.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, open (823.3)\(823.30) Open fracture of shaft of tibia alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.30''', NULL, + '(823.30) Open fracture of shaft of tibia alone', '(823.30) Open fracture of shaft of tibia alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, open (823.3)\(823.31) Open fracture of shaft of fibula alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, open (823.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, open (823.3)\(823.31) Open fracture of shaft of fibula alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.31''', NULL, + '(823.31) Open fracture of shaft of fibula alone', '(823.31) Open fracture of shaft of fibula alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, open (823.3)\(823.32) Open fracture of shaft of fibula with tibia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, open (823.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of shaft of tibia and fibula, open (823.3)\(823.32) Open fracture of shaft of fibula with tibia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.32''', NULL, + '(823.32) Open fracture of shaft of fibula with tibia', '(823.32) Open fracture of shaft of fibula with tibia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, closed (823.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, closed (823.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.8''', NULL, + 'Fracture of unspecified part of tibia and fibula, closed (823.8)', 'Fracture of unspecified part of tibia and fibula, closed (823.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, closed (823.8)\(823.80) Closed fracture of unspecified part of tibia alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, closed (823.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, closed (823.8)\(823.80) Closed fracture of unspecified part of tibia alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.80''', NULL, + '(823.80) Closed fracture of unspecified part of tibia alone', '(823.80) Closed fracture of unspecified part of tibia alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, closed (823.8)\(823.81) Closed fracture of unspecified part of fibula alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, closed (823.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, closed (823.8)\(823.81) Closed fracture of unspecified part of fibula alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.81''', NULL, + '(823.81) Closed fracture of unspecified part of fibula alone', '(823.81) Closed fracture of unspecified part of fibula alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, closed (823.8)\(823.82) Closed fracture of unspecified part of fibula with tibia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, closed (823.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, closed (823.8)\(823.82) Closed fracture of unspecified part of fibula with tibia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.82''', NULL, + '(823.82) Closed fracture of unspecified part of fibula with tibia', '(823.82) Closed fracture of unspecified part of fibula with tibia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, open (823.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, open (823.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.9''', NULL, + 'Fracture of unspecified part of tibia and fibula, open (823.9)', 'Fracture of unspecified part of tibia and fibula, open (823.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, open (823.9)\(823.90) Open fracture of unspecified part of tibia alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, open (823.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, open (823.9)\(823.90) Open fracture of unspecified part of tibia alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.90''', NULL, + '(823.90) Open fracture of unspecified part of tibia alone', '(823.90) Open fracture of unspecified part of tibia alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, open (823.9)\(823.91) Open fracture of unspecified part of fibula alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, open (823.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, open (823.9)\(823.91) Open fracture of unspecified part of fibula alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.91''', NULL, + '(823.91) Open fracture of unspecified part of fibula alone', '(823.91) Open fracture of unspecified part of fibula alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, open (823.9)\(823.92) Open fracture of unspecified part of fibula with tibia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, open (823.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of unspecified part of tibia and fibula, open (823.9)\(823.92) Open fracture of unspecified part of fibula with tibia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.92''', NULL, + '(823.92) Open fracture of unspecified part of fibula with tibia', '(823.92) Open fracture of unspecified part of fibula with tibia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, closed (823.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, closed (823.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.0''', NULL, + 'Fracture of upper end of tibia and fibula, closed (823.0)', 'Fracture of upper end of tibia and fibula, closed (823.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, closed (823.0)\(823.00) Closed fracture of upper end of tibia alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, closed (823.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, closed (823.0)\(823.00) Closed fracture of upper end of tibia alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.00''', NULL, + '(823.00) Closed fracture of upper end of tibia alone', '(823.00) Closed fracture of upper end of tibia alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, closed (823.0)\(823.01) Closed fracture of upper end of fibula alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, closed (823.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, closed (823.0)\(823.01) Closed fracture of upper end of fibula alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.01''', NULL, + '(823.01) Closed fracture of upper end of fibula alone', '(823.01) Closed fracture of upper end of fibula alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, closed (823.0)\(823.02) Closed fracture of upper end of fibula with tibia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, closed (823.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, closed (823.0)\(823.02) Closed fracture of upper end of fibula with tibia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.02''', NULL, + '(823.02) Closed fracture of upper end of fibula with tibia', '(823.02) Closed fracture of upper end of fibula with tibia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, open (823.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, open (823.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.1''', NULL, + 'Fracture of upper end of tibia and fibula, open (823.1)', 'Fracture of upper end of tibia and fibula, open (823.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, open (823.1)\(823.10) Open fracture of upper end of tibia alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, open (823.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, open (823.1)\(823.10) Open fracture of upper end of tibia alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.10''', NULL, + '(823.10) Open fracture of upper end of tibia alone', '(823.10) Open fracture of upper end of tibia alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, open (823.1)\(823.11) Open fracture of upper end of fibula alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, open (823.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, open (823.1)\(823.11) Open fracture of upper end of fibula alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.11''', NULL, + '(823.11) Open fracture of upper end of fibula alone', '(823.11) Open fracture of upper end of fibula alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, open (823.1)\(823.12) Open fracture of upper end of fibula with tibia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, open (823.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Fracture of upper end of tibia and fibula, open (823.1)\(823.12) Open fracture of upper end of fibula with tibia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.12''', NULL, + '(823.12) Open fracture of upper end of fibula with tibia', '(823.12) Open fracture of upper end of fibula with tibia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Torus fracture (823.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Torus fracture (823.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.4''', NULL, + 'Torus fracture (823.4)', 'Torus fracture (823.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Torus fracture (823.4)\(823.40) Torus fracture, tibia alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Torus fracture (823.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Torus fracture (823.4)\(823.40) Torus fracture, tibia alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.40''', NULL, + '(823.40) Torus fracture, tibia alone', '(823.40) Torus fracture, tibia alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Torus fracture (823.4)\(823.41) Torus fracture, fibula alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Torus fracture (823.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Torus fracture (823.4)\(823.41) Torus fracture, fibula alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.41''', NULL, + '(823.41) Torus fracture, fibula alone', '(823.41) Torus fracture, fibula alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Torus fracture (823.4)\(823.42) Torus fracture, fibula with tibia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Torus fracture (823.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of tibia and fibula (823)\Torus fracture (823.4)\(823.42) Torus fracture, fibula with tibia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''823.42''', NULL, + '(823.42) Torus fracture, fibula with tibia', '(823.42) Torus fracture, fibula with tibia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of unspecified bones (829)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of unspecified bones (829)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''829''', NULL, + 'Fracture of unspecified bones (829)', 'Fracture of unspecified bones (829)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of unspecified bones (829)\(829.0) Fracture of unspecified bone, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of unspecified bones (829)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of unspecified bones (829)\(829.0) Fracture of unspecified bone, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''829.0''', NULL, + '(829.0) Fracture of unspecified bone, closed', '(829.0) Fracture of unspecified bone, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of unspecified bones (829)\(829.1) Fracture of unspecified bone, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of unspecified bones (829)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Fracture of unspecified bones (829)\(829.1) Fracture of unspecified bone, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''829.1''', NULL, + '(829.1) Fracture of unspecified bone, open', '(829.1) Fracture of unspecified bone, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) with rib(s) and sternum (828''', NULL, + 'Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)', 'Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\(828.0) Closed multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\(828.0) Closed multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''828.0) Closed multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s''', NULL, + '(828.0) Closed multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum', '(828.0) Closed multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\(828.1) Open multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\(828.1) Open multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''828.1) Open multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s''', NULL, + '(828.1) Open multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum', '(828.1) Open multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Other, multiple, and ill-defined fractures of lower limb (827)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Other, multiple, and ill-defined fractures of lower limb (827)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''827''', NULL, + 'Other, multiple, and ill-defined fractures of lower limb (827)', 'Other, multiple, and ill-defined fractures of lower limb (827)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Other, multiple, and ill-defined fractures of lower limb (827)\(827.0) Other, multiple and ill-defined fractures of lower limb, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Other, multiple, and ill-defined fractures of lower limb (827)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Other, multiple, and ill-defined fractures of lower limb (827)\(827.0) Other, multiple and ill-defined fractures of lower limb, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''827.0''', NULL, + '(827.0) Other, multiple and ill-defined fractures of lower limb, closed', '(827.0) Other, multiple and ill-defined fractures of lower limb, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Other, multiple, and ill-defined fractures of lower limb (827)\(827.1) Other, multiple and ill-defined fractures of lower limb, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Other, multiple, and ill-defined fractures of lower limb (827)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF LOWER LIMB (820-829.99)\Other, multiple, and ill-defined fractures of lower limb (827)\(827.1) Other, multiple and ill-defined fractures of lower limb, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''827.1''', NULL, + '(827.1) Other, multiple and ill-defined fractures of lower limb, open', '(827.1) Other, multiple and ill-defined fractures of lower limb, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''805'' AND ''809.99''', NULL, + 'FRACTURE OF NECK AND TRUNK (805-809.99)', 'FRACTURE OF NECK AND TRUNK (805-809.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808''', NULL, + 'Fracture of pelvis (808)', 'Fracture of pelvis (808)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.0) Closed fracture of acetabulum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.0) Closed fracture of acetabulum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.0''', NULL, + '(808.0) Closed fracture of acetabulum', '(808.0) Closed fracture of acetabulum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.1) Open fracture of acetabulum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.1) Open fracture of acetabulum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.1''', NULL, + '(808.1) Open fracture of acetabulum', '(808.1) Open fracture of acetabulum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.2) Closed fracture of pubis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.2) Closed fracture of pubis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.2''', NULL, + '(808.2) Closed fracture of pubis', '(808.2) Closed fracture of pubis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.3) Open fracture of pubis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.3) Open fracture of pubis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.3''', NULL, + '(808.3) Open fracture of pubis', '(808.3) Open fracture of pubis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.8) Closed unspecified fracture of pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.8) Closed unspecified fracture of pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.8''', NULL, + '(808.8) Closed unspecified fracture of pelvis', '(808.8) Closed unspecified fracture of pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.9) Open unspecified fracture of pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\(808.9) Open unspecified fracture of pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.9''', NULL, + '(808.9) Open unspecified fracture of pelvis', '(808.9) Open unspecified fracture of pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.4''', NULL, + 'Closed fracture of other specified part of pelvis (808.4)', 'Closed fracture of other specified part of pelvis (808.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\(808.41) Closed fracture of ilium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\(808.41) Closed fracture of ilium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.41''', NULL, + '(808.41) Closed fracture of ilium', '(808.41) Closed fracture of ilium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\(808.42) Closed fracture of ischium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\(808.42) Closed fracture of ischium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.42''', NULL, + '(808.42) Closed fracture of ischium', '(808.42) Closed fracture of ischium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\(808.43) Multiple closed pelvic fractures with disruption of pelvic circle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\(808.43) Multiple closed pelvic fractures with disruption of pelvic circle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.43''', NULL, + '(808.43) Multiple closed pelvic fractures with disruption of pelvic circle', '(808.43) Multiple closed pelvic fractures with disruption of pelvic circle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\(808.44) Multiple closed pelvic fractures without disruption of pelvic circle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\(808.44) Multiple closed pelvic fractures without disruption of pelvic circle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.44''', NULL, + '(808.44) Multiple closed pelvic fractures without disruption of pelvic circle', '(808.44) Multiple closed pelvic fractures without disruption of pelvic circle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\(808.49) Closed fracture of other specified part of pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Closed fracture of other specified part of pelvis (808.4)\(808.49) Closed fracture of other specified part of pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.49''', NULL, + '(808.49) Closed fracture of other specified part of pelvis', '(808.49) Closed fracture of other specified part of pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.5''', NULL, + 'Open fracture of other specified part of pelvis (808.5)', 'Open fracture of other specified part of pelvis (808.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\(808.51) Open fracture of ilium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\(808.51) Open fracture of ilium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.51''', NULL, + '(808.51) Open fracture of ilium', '(808.51) Open fracture of ilium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\(808.52) Open fracture of ischium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\(808.52) Open fracture of ischium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.52''', NULL, + '(808.52) Open fracture of ischium', '(808.52) Open fracture of ischium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\(808.53) Multiple open pelvic fractures with disruption of pelvic circle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\(808.53) Multiple open pelvic fractures with disruption of pelvic circle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.53''', NULL, + '(808.53) Multiple open pelvic fractures with disruption of pelvic circle', '(808.53) Multiple open pelvic fractures with disruption of pelvic circle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\(808.59) Open fracture of other specified part of pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of pelvis (808)\Open fracture of other specified part of pelvis (808.5)\(808.59) Open fracture of other specified part of pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''808.59''', NULL, + '(808.59) Open fracture of other specified part of pelvis', '(808.59) Open fracture of other specified part of pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s), sternum, larynx, and trachea (807''', NULL, + 'Fracture of rib(s), sternum, larynx, and trachea (807)', 'Fracture of rib(s), sternum, larynx, and trachea (807)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\(807.2) Closed fracture of sternum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\(807.2) Closed fracture of sternum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.2''', NULL, + '(807.2) Closed fracture of sternum', '(807.2) Closed fracture of sternum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\(807.3) Open fracture of sternum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\(807.3) Open fracture of sternum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.3''', NULL, + '(807.3) Open fracture of sternum', '(807.3) Open fracture of sternum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\(807.4) Flail chest\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\(807.4) Flail chest\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.4''', NULL, + '(807.4) Flail chest', '(807.4) Flail chest', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\(807.5) Closed fracture of larynx and trachea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\(807.5) Closed fracture of larynx and trachea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.5''', NULL, + '(807.5) Closed fracture of larynx and trachea', '(807.5) Closed fracture of larynx and trachea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\(807.6) Open fracture of larynx and trachea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\(807.6) Open fracture of larynx and trachea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.6''', NULL, + '(807.6) Open fracture of larynx and trachea', '(807.6) Open fracture of larynx and trachea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (807.0''', NULL, + 'Closed fracture of rib(s) (807.0)', 'Closed fracture of rib(s) (807.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.00) Closed fracture of rib(s), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.00) Closed fracture of rib(s), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.00) Closed fracture of rib(s''', NULL, + '(807.00) Closed fracture of rib(s), unspecified', '(807.00) Closed fracture of rib(s), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.01) Closed fracture of one rib\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.01) Closed fracture of one rib\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.01''', NULL, + '(807.01) Closed fracture of one rib', '(807.01) Closed fracture of one rib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.02) Closed fracture of two ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.02) Closed fracture of two ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.02''', NULL, + '(807.02) Closed fracture of two ribs', '(807.02) Closed fracture of two ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.03) Closed fracture of three ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.03) Closed fracture of three ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.03''', NULL, + '(807.03) Closed fracture of three ribs', '(807.03) Closed fracture of three ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.04) Closed fracture of four ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.04) Closed fracture of four ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.04''', NULL, + '(807.04) Closed fracture of four ribs', '(807.04) Closed fracture of four ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.05) Closed fracture of five ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.05) Closed fracture of five ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.05''', NULL, + '(807.05) Closed fracture of five ribs', '(807.05) Closed fracture of five ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.06) Closed fracture of six ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.06) Closed fracture of six ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.06''', NULL, + '(807.06) Closed fracture of six ribs', '(807.06) Closed fracture of six ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.07) Closed fracture of seven ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.07) Closed fracture of seven ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.07''', NULL, + '(807.07) Closed fracture of seven ribs', '(807.07) Closed fracture of seven ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.08) Closed fracture of eight or more ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.08) Closed fracture of eight or more ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.08''', NULL, + '(807.08) Closed fracture of eight or more ribs', '(807.08) Closed fracture of eight or more ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.09) Closed fracture of multiple ribs, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Closed fracture of rib(s) (807.0)\(807.09) Closed fracture of multiple ribs, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.09''', NULL, + '(807.09) Closed fracture of multiple ribs, unspecified', '(807.09) Closed fracture of multiple ribs, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (807.1''', NULL, + 'Open fracture of rib(s) (807.1)', 'Open fracture of rib(s) (807.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.10) Open fracture of rib(s), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.10) Open fracture of rib(s), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.10) Open fracture of rib(s''', NULL, + '(807.10) Open fracture of rib(s), unspecified', '(807.10) Open fracture of rib(s), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.11) Open fracture of one rib\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.11) Open fracture of one rib\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.11''', NULL, + '(807.11) Open fracture of one rib', '(807.11) Open fracture of one rib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.12) Open fracture of two ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.12) Open fracture of two ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.12''', NULL, + '(807.12) Open fracture of two ribs', '(807.12) Open fracture of two ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.13) Open fracture of three ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.13) Open fracture of three ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.13''', NULL, + '(807.13) Open fracture of three ribs', '(807.13) Open fracture of three ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.14) Open fracture of four ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.14) Open fracture of four ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.14''', NULL, + '(807.14) Open fracture of four ribs', '(807.14) Open fracture of four ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.15) Open fracture of five ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.15) Open fracture of five ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.15''', NULL, + '(807.15) Open fracture of five ribs', '(807.15) Open fracture of five ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.16) Open fracture of six ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.16) Open fracture of six ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.16''', NULL, + '(807.16) Open fracture of six ribs', '(807.16) Open fracture of six ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.17) Open fracture of seven ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.17) Open fracture of seven ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.17''', NULL, + '(807.17) Open fracture of seven ribs', '(807.17) Open fracture of seven ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.18) Open fracture of eight or more ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.18) Open fracture of eight or more ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.18''', NULL, + '(807.18) Open fracture of eight or more ribs', '(807.18) Open fracture of eight or more ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.19) Open fracture of multiple ribs, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of rib(s), sternum, larynx, and trachea (807)\Open fracture of rib(s) (807.1)\(807.19) Open fracture of multiple ribs, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''807.19''', NULL, + '(807.19) Open fracture of multiple ribs, unspecified', '(807.19) Open fracture of multiple ribs, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806''', NULL, + 'Fracture of vertebral column with spinal cord injury (806)', 'Fracture of vertebral column with spinal cord injury (806)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\(806.4) Closed fracture of lumbar spine with spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\(806.4) Closed fracture of lumbar spine with spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.4''', NULL, + '(806.4) Closed fracture of lumbar spine with spinal cord injury', '(806.4) Closed fracture of lumbar spine with spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\(806.5) Open fracture of lumbar spine with spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\(806.5) Open fracture of lumbar spine with spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.5''', NULL, + '(806.5) Open fracture of lumbar spine with spinal cord injury', '(806.5) Open fracture of lumbar spine with spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\(806.8) Closed fracture of unspecified vertebral column with spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\(806.8) Closed fracture of unspecified vertebral column with spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.8''', NULL, + '(806.8) Closed fracture of unspecified vertebral column with spinal cord injury', '(806.8) Closed fracture of unspecified vertebral column with spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\(806.9) Open fracture of unspecified vertebral column with spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\(806.9) Open fracture of unspecified vertebral column with spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.9''', NULL, + '(806.9) Open fracture of unspecified vertebral column with spinal cord injury', '(806.9) Open fracture of unspecified vertebral column with spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.0''', NULL, + 'Closed fracture of cervical vertebra with spinal cord injury (806.0)', 'Closed fracture of cervical vertebra with spinal cord injury (806.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.00) Closed fracture of C1-C4 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.00) Closed fracture of C1-C4 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.00''', NULL, + '(806.00) Closed fracture of C1-C4 level with unspecified spinal cord injury', '(806.00) Closed fracture of C1-C4 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.01) Closed fracture of C1-C4 level with complete lesion of cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.01) Closed fracture of C1-C4 level with complete lesion of cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.01''', NULL, + '(806.01) Closed fracture of C1-C4 level with complete lesion of cord', '(806.01) Closed fracture of C1-C4 level with complete lesion of cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.02) Closed fracture of C1-C4 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.02) Closed fracture of C1-C4 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.02''', NULL, + '(806.02) Closed fracture of C1-C4 level with anterior cord syndrome', '(806.02) Closed fracture of C1-C4 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.03) Closed fracture of C1-C4 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.03) Closed fracture of C1-C4 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.03''', NULL, + '(806.03) Closed fracture of C1-C4 level with central cord syndrome', '(806.03) Closed fracture of C1-C4 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.04) Closed fracture of C1-C4 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.04) Closed fracture of C1-C4 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.04''', NULL, + '(806.04) Closed fracture of C1-C4 level with other specified spinal cord injury', '(806.04) Closed fracture of C1-C4 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.05) Closed fracture of C5-C7 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.05) Closed fracture of C5-C7 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.05''', NULL, + '(806.05) Closed fracture of C5-C7 level with unspecified spinal cord injury', '(806.05) Closed fracture of C5-C7 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.06) Closed fracture of C5-C7 level with complete lesion of cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.06) Closed fracture of C5-C7 level with complete lesion of cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.06''', NULL, + '(806.06) Closed fracture of C5-C7 level with complete lesion of cord', '(806.06) Closed fracture of C5-C7 level with complete lesion of cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.07) Closed fracture of C5-C7 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.07) Closed fracture of C5-C7 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.07''', NULL, + '(806.07) Closed fracture of C5-C7 level with anterior cord syndrome', '(806.07) Closed fracture of C5-C7 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.08) Closed fracture of C5-C7 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.08) Closed fracture of C5-C7 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.08''', NULL, + '(806.08) Closed fracture of C5-C7 level with central cord syndrome', '(806.08) Closed fracture of C5-C7 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.09) Closed fracture of C5-C7 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of cervical vertebra with spinal cord injury (806.0)\(806.09) Closed fracture of C5-C7 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.09''', NULL, + '(806.09) Closed fracture of C5-C7 level with other specified spinal cord injury', '(806.09) Closed fracture of C5-C7 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.2''', NULL, + 'Closed fracture of dorsal vertebra with spinal cord injury (806.2)', 'Closed fracture of dorsal vertebra with spinal cord injury (806.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.20) Closed fracture of T1-T6 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.20) Closed fracture of T1-T6 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.20''', NULL, + '(806.20) Closed fracture of T1-T6 level with unspecified spinal cord injury', '(806.20) Closed fracture of T1-T6 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.21) Closed fracture of T1-T6 level with complete lesion of cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.21) Closed fracture of T1-T6 level with complete lesion of cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.21''', NULL, + '(806.21) Closed fracture of T1-T6 level with complete lesion of cord', '(806.21) Closed fracture of T1-T6 level with complete lesion of cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.22) Closed fracture of T1-T6 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.22) Closed fracture of T1-T6 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.22''', NULL, + '(806.22) Closed fracture of T1-T6 level with anterior cord syndrome', '(806.22) Closed fracture of T1-T6 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.23) Closed fracture of T1-T6 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.23) Closed fracture of T1-T6 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.23''', NULL, + '(806.23) Closed fracture of T1-T6 level with central cord syndrome', '(806.23) Closed fracture of T1-T6 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.24) Closed fracture of T1-T6 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.24) Closed fracture of T1-T6 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.24''', NULL, + '(806.24) Closed fracture of T1-T6 level with other specified spinal cord injury', '(806.24) Closed fracture of T1-T6 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.25) Closed fracture of T7-T12 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.25) Closed fracture of T7-T12 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.25''', NULL, + '(806.25) Closed fracture of T7-T12 level with unspecified spinal cord injury', '(806.25) Closed fracture of T7-T12 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.26) Closed fracture of T7-T12 level with complete lesion of cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.26) Closed fracture of T7-T12 level with complete lesion of cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.26''', NULL, + '(806.26) Closed fracture of T7-T12 level with complete lesion of cord', '(806.26) Closed fracture of T7-T12 level with complete lesion of cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.27) Closed fracture of T7-T12 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.27) Closed fracture of T7-T12 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.27''', NULL, + '(806.27) Closed fracture of T7-T12 level with anterior cord syndrome', '(806.27) Closed fracture of T7-T12 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.28) Closed fracture of T7-T12 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.28) Closed fracture of T7-T12 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.28''', NULL, + '(806.28) Closed fracture of T7-T12 level with central cord syndrome', '(806.28) Closed fracture of T7-T12 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.29) Closed fracture of T7-T12 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\(806.29) Closed fracture of T7-T12 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.29''', NULL, + '(806.29) Closed fracture of T7-T12 level with other specified spinal cord injury', '(806.29) Closed fracture of T7-T12 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.6''', NULL, + 'Closed fracture of sacrum and coccyx with spinal cord injury (806.6)', 'Closed fracture of sacrum and coccyx with spinal cord injury (806.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\(806.60) Closed fracture of sacrum and coccyx with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\(806.60) Closed fracture of sacrum and coccyx with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.60''', NULL, + '(806.60) Closed fracture of sacrum and coccyx with unspecified spinal cord injury', '(806.60) Closed fracture of sacrum and coccyx with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\(806.61) Closed fracture of sacrum and coccyx with complete cauda equina lesion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\(806.61) Closed fracture of sacrum and coccyx with complete cauda equina lesion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.61''', NULL, + '(806.61) Closed fracture of sacrum and coccyx with complete cauda equina lesion', '(806.61) Closed fracture of sacrum and coccyx with complete cauda equina lesion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\(806.62) Closed fracture of sacrum and coccyx with other cauda equina injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\(806.62) Closed fracture of sacrum and coccyx with other cauda equina injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.62''', NULL, + '(806.62) Closed fracture of sacrum and coccyx with other cauda equina injury', '(806.62) Closed fracture of sacrum and coccyx with other cauda equina injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\(806.69) Closed fracture of sacrum and coccyx with other spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\(806.69) Closed fracture of sacrum and coccyx with other spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.69''', NULL, + '(806.69) Closed fracture of sacrum and coccyx with other spinal cord injury', '(806.69) Closed fracture of sacrum and coccyx with other spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.1''', NULL, + 'Open fracture of cervical vertebra with spinal cord injury (806.1)', 'Open fracture of cervical vertebra with spinal cord injury (806.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.10) Open fracture of C1-C4 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.10) Open fracture of C1-C4 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.10''', NULL, + '(806.10) Open fracture of C1-C4 level with unspecified spinal cord injury', '(806.10) Open fracture of C1-C4 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.11) Open fracture of C1-C4 level with complete lesion of cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.11) Open fracture of C1-C4 level with complete lesion of cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.11''', NULL, + '(806.11) Open fracture of C1-C4 level with complete lesion of cord', '(806.11) Open fracture of C1-C4 level with complete lesion of cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.12) Open fracture of C1-C4 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.12) Open fracture of C1-C4 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.12''', NULL, + '(806.12) Open fracture of C1-C4 level with anterior cord syndrome', '(806.12) Open fracture of C1-C4 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.13) Open fracture of C1-C4 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.13) Open fracture of C1-C4 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.13''', NULL, + '(806.13) Open fracture of C1-C4 level with central cord syndrome', '(806.13) Open fracture of C1-C4 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.14) Open fracture of C1-C4 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.14) Open fracture of C1-C4 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.14''', NULL, + '(806.14) Open fracture of C1-C4 level with other specified spinal cord injury', '(806.14) Open fracture of C1-C4 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.15) Open fracture of C5-C7 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.15) Open fracture of C5-C7 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.15''', NULL, + '(806.15) Open fracture of C5-C7 level with unspecified spinal cord injury', '(806.15) Open fracture of C5-C7 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.16) Open fracture of C5-C7 level with complete lesion of cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.16) Open fracture of C5-C7 level with complete lesion of cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.16''', NULL, + '(806.16) Open fracture of C5-C7 level with complete lesion of cord', '(806.16) Open fracture of C5-C7 level with complete lesion of cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.17) Open fracture of C5-C7 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.17) Open fracture of C5-C7 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.17''', NULL, + '(806.17) Open fracture of C5-C7 level with anterior cord syndrome', '(806.17) Open fracture of C5-C7 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.18) Open fracture of C5-C7 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.18) Open fracture of C5-C7 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.18''', NULL, + '(806.18) Open fracture of C5-C7 level with central cord syndrome', '(806.18) Open fracture of C5-C7 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.19) Open fracture of C5-C7 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of cervical vertebra with spinal cord injury (806.1)\(806.19) Open fracture of C5-C7 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.19''', NULL, + '(806.19) Open fracture of C5-C7 level with other specified spinal cord injury', '(806.19) Open fracture of C5-C7 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.3''', NULL, + 'Open fracture of dorsal vertebra with spinal cord injury (806.3)', 'Open fracture of dorsal vertebra with spinal cord injury (806.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.30) Open fracture of T1-T6 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.30) Open fracture of T1-T6 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.30''', NULL, + '(806.30) Open fracture of T1-T6 level with unspecified spinal cord injury', '(806.30) Open fracture of T1-T6 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.31) Open fracture of T1-T6 level with complete lesion of cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.31) Open fracture of T1-T6 level with complete lesion of cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.31''', NULL, + '(806.31) Open fracture of T1-T6 level with complete lesion of cord', '(806.31) Open fracture of T1-T6 level with complete lesion of cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.32) Open fracture of T1-T6 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.32) Open fracture of T1-T6 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.32''', NULL, + '(806.32) Open fracture of T1-T6 level with anterior cord syndrome', '(806.32) Open fracture of T1-T6 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.33) Open fracture of T1-T6 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.33) Open fracture of T1-T6 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.33''', NULL, + '(806.33) Open fracture of T1-T6 level with central cord syndrome', '(806.33) Open fracture of T1-T6 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.34) Open fracture of T1-T6 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.34) Open fracture of T1-T6 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.34''', NULL, + '(806.34) Open fracture of T1-T6 level with other specified spinal cord injury', '(806.34) Open fracture of T1-T6 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.35) Open fracture of T7-T12 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.35) Open fracture of T7-T12 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.35''', NULL, + '(806.35) Open fracture of T7-T12 level with unspecified spinal cord injury', '(806.35) Open fracture of T7-T12 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.36) Open fracture of T7-T12 level with complete lesion of cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.36) Open fracture of T7-T12 level with complete lesion of cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.36''', NULL, + '(806.36) Open fracture of T7-T12 level with complete lesion of cord', '(806.36) Open fracture of T7-T12 level with complete lesion of cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.37) Open fracture of T7-T12 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.37) Open fracture of T7-T12 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.37''', NULL, + '(806.37) Open fracture of T7-T12 level with anterior cord syndrome', '(806.37) Open fracture of T7-T12 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.38) Open fracture of T7-T12 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.38) Open fracture of T7-T12 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.38''', NULL, + '(806.38) Open fracture of T7-T12 level with central cord syndrome', '(806.38) Open fracture of T7-T12 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.39) Open fracture of T7-T12 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of dorsal vertebra with spinal cord injury (806.3)\(806.39) Open fracture of T7-T12 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.39''', NULL, + '(806.39) Open fracture of T7-T12 level with other specified spinal cord injury', '(806.39) Open fracture of T7-T12 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.7''', NULL, + 'Open fracture of sacrum and coccyx with spinal cord injury (806.7)', 'Open fracture of sacrum and coccyx with spinal cord injury (806.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\(806.70) Open fracture of sacrum and coccyx with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\(806.70) Open fracture of sacrum and coccyx with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.70''', NULL, + '(806.70) Open fracture of sacrum and coccyx with unspecified spinal cord injury', '(806.70) Open fracture of sacrum and coccyx with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\(806.71) Open fracture of sacrum and coccyx with complete cauda equina lesion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\(806.71) Open fracture of sacrum and coccyx with complete cauda equina lesion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.71''', NULL, + '(806.71) Open fracture of sacrum and coccyx with complete cauda equina lesion', '(806.71) Open fracture of sacrum and coccyx with complete cauda equina lesion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\(806.72) Open fracture of sacrum and coccyx with other cauda equina injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\(806.72) Open fracture of sacrum and coccyx with other cauda equina injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.72''', NULL, + '(806.72) Open fracture of sacrum and coccyx with other cauda equina injury', '(806.72) Open fracture of sacrum and coccyx with other cauda equina injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\(806.79) Open fracture of sacrum and coccyx with other spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column with spinal cord injury (806)\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\(806.79) Open fracture of sacrum and coccyx with other spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''806.79''', NULL, + '(806.79) Open fracture of sacrum and coccyx with other spinal cord injury', '(806.79) Open fracture of sacrum and coccyx with other spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805''', NULL, + 'Fracture of vertebral column without mention of spinal cord injury (805)', 'Fracture of vertebral column without mention of spinal cord injury (805)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.2) Closed fracture of dorsal [thoracic] vertebra without mention of spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.2) Closed fracture of dorsal [thoracic] vertebra without mention of spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.2''', NULL, + '(805.2) Closed fracture of dorsal [thoracic] vertebra without mention of spinal cord injury', '(805.2) Closed fracture of dorsal [thoracic] vertebra without mention of spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.3) Open fracture of dorsal [thoracic] vertebra without mention of spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.3) Open fracture of dorsal [thoracic] vertebra without mention of spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.3''', NULL, + '(805.3) Open fracture of dorsal [thoracic] vertebra without mention of spinal cord injury', '(805.3) Open fracture of dorsal [thoracic] vertebra without mention of spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.4) Closed fracture of lumbar vertebra without mention of spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.4) Closed fracture of lumbar vertebra without mention of spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.4''', NULL, + '(805.4) Closed fracture of lumbar vertebra without mention of spinal cord injury', '(805.4) Closed fracture of lumbar vertebra without mention of spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.5) Open fracture of lumbar vertebra without mention of spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.5) Open fracture of lumbar vertebra without mention of spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.5''', NULL, + '(805.5) Open fracture of lumbar vertebra without mention of spinal cord injury', '(805.5) Open fracture of lumbar vertebra without mention of spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.6) Closed fracture of sacrum and coccyx without mention of spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.6) Closed fracture of sacrum and coccyx without mention of spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.6''', NULL, + '(805.6) Closed fracture of sacrum and coccyx without mention of spinal cord injury', '(805.6) Closed fracture of sacrum and coccyx without mention of spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.7) Open fracture of sacrum and coccyx without mention of spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.7) Open fracture of sacrum and coccyx without mention of spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.7''', NULL, + '(805.7) Open fracture of sacrum and coccyx without mention of spinal cord injury', '(805.7) Open fracture of sacrum and coccyx without mention of spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.8) Closed fracture of unspecified vertebral column without mention of spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.8) Closed fracture of unspecified vertebral column without mention of spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.8''', NULL, + '(805.8) Closed fracture of unspecified vertebral column without mention of spinal cord injury', '(805.8) Closed fracture of unspecified vertebral column without mention of spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.9) Open fracture of unspecified vertebral column without mention of spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\(805.9) Open fracture of unspecified vertebral column without mention of spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.9''', NULL, + '(805.9) Open fracture of unspecified vertebral column without mention of spinal cord injury', '(805.9) Open fracture of unspecified vertebral column without mention of spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.0''', NULL, + 'Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)', 'Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.00) Closed fracture of cervical vertebra, unspecified level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.00) Closed fracture of cervical vertebra, unspecified level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.00''', NULL, + '(805.00) Closed fracture of cervical vertebra, unspecified level', '(805.00) Closed fracture of cervical vertebra, unspecified level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.01) Closed fracture of first cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.01) Closed fracture of first cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.01''', NULL, + '(805.01) Closed fracture of first cervical vertebra', '(805.01) Closed fracture of first cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.02) Closed fracture of second cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.02) Closed fracture of second cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.02''', NULL, + '(805.02) Closed fracture of second cervical vertebra', '(805.02) Closed fracture of second cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.03) Closed fracture of third cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.03) Closed fracture of third cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.03''', NULL, + '(805.03) Closed fracture of third cervical vertebra', '(805.03) Closed fracture of third cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.04) Closed fracture of fourth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.04) Closed fracture of fourth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.04''', NULL, + '(805.04) Closed fracture of fourth cervical vertebra', '(805.04) Closed fracture of fourth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.05) Closed fracture of fifth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.05) Closed fracture of fifth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.05''', NULL, + '(805.05) Closed fracture of fifth cervical vertebra', '(805.05) Closed fracture of fifth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.06) Closed fracture of sixth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.06) Closed fracture of sixth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.06''', NULL, + '(805.06) Closed fracture of sixth cervical vertebra', '(805.06) Closed fracture of sixth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.07) Closed fracture of seventh cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.07) Closed fracture of seventh cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.07''', NULL, + '(805.07) Closed fracture of seventh cervical vertebra', '(805.07) Closed fracture of seventh cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.08) Closed fracture of multiple cervical vertebrae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\(805.08) Closed fracture of multiple cervical vertebrae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.08''', NULL, + '(805.08) Closed fracture of multiple cervical vertebrae', '(805.08) Closed fracture of multiple cervical vertebrae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.1''', NULL, + 'Open fracture of cervical vertebra without mention of spinal cord injury (805.1)', 'Open fracture of cervical vertebra without mention of spinal cord injury (805.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.10) Open fracture of cervical vertebra, unspecified level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.10) Open fracture of cervical vertebra, unspecified level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.10''', NULL, + '(805.10) Open fracture of cervical vertebra, unspecified level', '(805.10) Open fracture of cervical vertebra, unspecified level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.11) Open fracture of first cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.11) Open fracture of first cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.11''', NULL, + '(805.11) Open fracture of first cervical vertebra', '(805.11) Open fracture of first cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.12) Open fracture of second cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.12) Open fracture of second cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.12''', NULL, + '(805.12) Open fracture of second cervical vertebra', '(805.12) Open fracture of second cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.13) Open fracture of third cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.13) Open fracture of third cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.13''', NULL, + '(805.13) Open fracture of third cervical vertebra', '(805.13) Open fracture of third cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.14) Open fracture of fourth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.14) Open fracture of fourth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.14''', NULL, + '(805.14) Open fracture of fourth cervical vertebra', '(805.14) Open fracture of fourth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.15) Open fracture of fifth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.15) Open fracture of fifth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.15''', NULL, + '(805.15) Open fracture of fifth cervical vertebra', '(805.15) Open fracture of fifth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.16) Open fracture of sixth cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.16) Open fracture of sixth cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.16''', NULL, + '(805.16) Open fracture of sixth cervical vertebra', '(805.16) Open fracture of sixth cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.17) Open fracture of seventh cervical vertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.17) Open fracture of seventh cervical vertebra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.17''', NULL, + '(805.17) Open fracture of seventh cervical vertebra', '(805.17) Open fracture of seventh cervical vertebra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.18) Open fracture of multiple cervical vertebrae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Fracture of vertebral column without mention of spinal cord injury (805)\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\(805.18) Open fracture of multiple cervical vertebrae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''805.18''', NULL, + '(805.18) Open fracture of multiple cervical vertebrae', '(805.18) Open fracture of multiple cervical vertebrae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Ill-defined fractures of bones of trunk (809)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Ill-defined fractures of bones of trunk (809)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''809''', NULL, + 'Ill-defined fractures of bones of trunk (809)', 'Ill-defined fractures of bones of trunk (809)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Ill-defined fractures of bones of trunk (809)\(809.0) Fracture of bones of trunk, closed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Ill-defined fractures of bones of trunk (809)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Ill-defined fractures of bones of trunk (809)\(809.0) Fracture of bones of trunk, closed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''809.0''', NULL, + '(809.0) Fracture of bones of trunk, closed', '(809.0) Fracture of bones of trunk, closed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Ill-defined fractures of bones of trunk (809)\(809.1) Fracture of bones of trunk, open\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Ill-defined fractures of bones of trunk (809)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF NECK AND TRUNK (805-809.99)\Ill-defined fractures of bones of trunk (809)\(809.1) Fracture of bones of trunk, open\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''809.1''', NULL, + '(809.1) Fracture of bones of trunk, open', '(809.1) Fracture of bones of trunk, open', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''800'' AND ''804.99''', NULL, + 'FRACTURE OF SKULL (800-804.99)', 'FRACTURE OF SKULL (800-804.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801''', NULL, + 'Fracture of base of skull (801)', 'Fracture of base of skull (801)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.1''', NULL, + 'Closed fracture of base of skull with cerebral laceration and contusion (801.1)', 'Closed fracture of base of skull with cerebral laceration and contusion (801.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.10) Closed fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.10) Closed fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.10''', NULL, + '(801.10) Closed fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness', '(801.10) Closed fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.11) Closed fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.11) Closed fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.11''', NULL, + '(801.11) Closed fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness', '(801.11) Closed fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.12) Closed fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.12) Closed fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.12''', NULL, + '(801.12) Closed fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', '(801.12) Closed fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.13) Closed fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.13) Closed fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.13''', NULL, + '(801.13) Closed fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', '(801.13) Closed fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.14) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.14) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.14''', NULL, + '(801.14) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(801.14) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.15) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.15) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.15''', NULL, + '(801.15) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(801.15) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.16) Closed fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.16) Closed fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.16''', NULL, + '(801.16) Closed fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration', '(801.16) Closed fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.19) Closed fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\(801.19) Closed fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.19''', NULL, + '(801.19) Closed fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified', '(801.19) Closed fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.4''', NULL, + 'Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)', 'Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.40) Closed fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.40) Closed fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.40''', NULL, + '(801.40) Closed fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness', '(801.40) Closed fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.41) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.41) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.41''', NULL, + '(801.41) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness', '(801.41) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.42) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.42) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.42''', NULL, + '(801.42) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', '(801.42) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.43) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.43) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.43''', NULL, + '(801.43) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', '(801.43) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.44) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.44) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.44) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours''', NULL, + '(801.44) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level', '(801.44) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.45) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.45) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.45''', NULL, + '(801.45) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(801.45) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.46) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.46) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.46''', NULL, + '(801.46) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', '(801.46) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.49) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\(801.49) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.49''', NULL, + '(801.49) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified', '(801.49) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.3''', NULL, + 'Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)', 'Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.30) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.30) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.30''', NULL, + '(801.30) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness', '(801.30) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.31) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.31) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.31''', NULL, + '(801.31) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness', '(801.31) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.32) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.32) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.32''', NULL, + '(801.32) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', '(801.32) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.33) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.33) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.33''', NULL, + '(801.33) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', '(801.33) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.34) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.34) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.34''', NULL, + '(801.34) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(801.34) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.35) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.35) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.35''', NULL, + '(801.35) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(801.35) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.36) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.36) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.36''', NULL, + '(801.36) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', '(801.36) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.39) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\(801.39) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.39''', NULL, + '(801.39) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified', '(801.39) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.2''', NULL, + 'Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)', 'Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.20) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.20) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.20''', NULL, + '(801.20) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', '(801.20) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.21) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.21) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.21''', NULL, + '(801.21) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', '(801.21) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.22) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.22) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.22''', NULL, + '(801.22) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', '(801.22) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.23) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.23) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.23''', NULL, + '(801.23) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', '(801.23) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.24) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.24) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.24''', NULL, + '(801.24) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(801.24) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.25) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.25) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.25''', NULL, + '(801.25) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(801.25) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.26) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.26) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.26''', NULL, + '(801.26) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', '(801.26) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.29) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\(801.29) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.29''', NULL, + '(801.29) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', '(801.29) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.0''', NULL, + 'Closed fracture of base of skull without mention of intracranial injury (801.0)', 'Closed fracture of base of skull without mention of intracranial injury (801.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.00) Closed fracture of base of skull without mention of intra cranial injury, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.00) Closed fracture of base of skull without mention of intra cranial injury, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.00''', NULL, + '(801.00) Closed fracture of base of skull without mention of intra cranial injury, unspecified state of consciousness', '(801.00) Closed fracture of base of skull without mention of intra cranial injury, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.01) Closed fracture of base of skull without mention of intra cranial injury, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.01) Closed fracture of base of skull without mention of intra cranial injury, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.01''', NULL, + '(801.01) Closed fracture of base of skull without mention of intra cranial injury, with no loss of consciousness', '(801.01) Closed fracture of base of skull without mention of intra cranial injury, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.02) Closed fracture of base of skull without mention of intra cranial injury, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.02) Closed fracture of base of skull without mention of intra cranial injury, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.02''', NULL, + '(801.02) Closed fracture of base of skull without mention of intra cranial injury, with brief [less than one hour] loss of consciousness', '(801.02) Closed fracture of base of skull without mention of intra cranial injury, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.03) Closed fracture of base of skull without mention of intra cranial injury, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.03) Closed fracture of base of skull without mention of intra cranial injury, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.03''', NULL, + '(801.03) Closed fracture of base of skull without mention of intra cranial injury, with moderate [1-24 hours] loss of consciousness', '(801.03) Closed fracture of base of skull without mention of intra cranial injury, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.04) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.04) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.04''', NULL, + '(801.04) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(801.04) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.05) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.05) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.05''', NULL, + '(801.05) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(801.05) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.06) Closed fracture of base of skull without mention of intra cranial injury, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.06) Closed fracture of base of skull without mention of intra cranial injury, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.06''', NULL, + '(801.06) Closed fracture of base of skull without mention of intra cranial injury, with loss of consciousness of unspecified duration', '(801.06) Closed fracture of base of skull without mention of intra cranial injury, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.09) Closed fracture of base of skull without mention of intra cranial injury, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Closed fracture of base of skull without mention of intracranial injury (801.0)\(801.09) Closed fracture of base of skull without mention of intra cranial injury, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.09''', NULL, + '(801.09) Closed fracture of base of skull without mention of intra cranial injury, with concussion, unspecified', '(801.09) Closed fracture of base of skull without mention of intra cranial injury, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.6''', NULL, + 'Open fracture of base of skull with cerebral laceration and contusion (801.6)', 'Open fracture of base of skull with cerebral laceration and contusion (801.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.60) Open fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.60) Open fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.60''', NULL, + '(801.60) Open fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness', '(801.60) Open fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.61) Open fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.61) Open fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.61''', NULL, + '(801.61) Open fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness', '(801.61) Open fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.62) Open fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.62) Open fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.62''', NULL, + '(801.62) Open fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', '(801.62) Open fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.63) Open fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.63) Open fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.63''', NULL, + '(801.63) Open fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', '(801.63) Open fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.64) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.64) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.64''', NULL, + '(801.64) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(801.64) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.65) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.65) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.65''', NULL, + '(801.65) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(801.65) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.66) Open fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.66) Open fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.66''', NULL, + '(801.66) Open fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration', '(801.66) Open fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.69) Open fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with cerebral laceration and contusion (801.6)\(801.69) Open fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.69''', NULL, + '(801.69) Open fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified', '(801.69) Open fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.9''', NULL, + 'Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)', 'Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.90) Open fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.90) Open fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.90''', NULL, + '(801.90) Open fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness', '(801.90) Open fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.91) Open fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.91) Open fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.91''', NULL, + '(801.91) Open fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness', '(801.91) Open fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.92) Open fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.92) Open fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.92''', NULL, + '(801.92) Open fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', '(801.92) Open fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.93) Open fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.93) Open fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.93''', NULL, + '(801.93) Open fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', '(801.93) Open fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.94) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.94) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.94''', NULL, + '(801.94) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(801.94) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.95) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.95) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.95''', NULL, + '(801.95) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(801.95) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.96) Open fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.96) Open fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.96''', NULL, + '(801.96) Open fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', '(801.96) Open fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.99) Open fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\(801.99) Open fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.99''', NULL, + '(801.99) Open fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified', '(801.99) Open fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.8''', NULL, + 'Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)', 'Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.80) Open fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.80) Open fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.80''', NULL, + '(801.80) Open fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness', '(801.80) Open fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.81) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.81) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.81''', NULL, + '(801.81) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness', '(801.81) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.82) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.82) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.82''', NULL, + '(801.82) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', '(801.82) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.83) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.83) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.83''', NULL, + '(801.83) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', '(801.83) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.84) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.84) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.84''', NULL, + '(801.84) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(801.84) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.85) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.85) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.85''', NULL, + '(801.85) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(801.85) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.86) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.86) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.86''', NULL, + '(801.86) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', '(801.86) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.89) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\(801.89) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.89''', NULL, + '(801.89) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified', '(801.89) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.7''', NULL, + 'Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)', 'Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.70) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.70) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.70''', NULL, + '(801.70) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', '(801.70) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.71) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.71) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.71''', NULL, + '(801.71) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', '(801.71) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.72) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.72) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.72''', NULL, + '(801.72) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', '(801.72) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.73) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.73) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.73''', NULL, + '(801.73) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', '(801.73) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.74) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.74) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.74''', NULL, + '(801.74) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(801.74) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.75) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.75) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.75''', NULL, + '(801.75) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(801.75) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.76) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.76) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.76''', NULL, + '(801.76) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', '(801.76) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.79) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\(801.79) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.79''', NULL, + '(801.79) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', '(801.79) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.5''', NULL, + 'Open fracture of base of skull without mention of intracranial injury (801.5)', 'Open fracture of base of skull without mention of intracranial injury (801.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.50) Open fracture of base of skull without mention of intracranial injury, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.50) Open fracture of base of skull without mention of intracranial injury, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.50''', NULL, + '(801.50) Open fracture of base of skull without mention of intracranial injury, unspecified state of consciousness', '(801.50) Open fracture of base of skull without mention of intracranial injury, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.51) Open fracture of base of skull without mention of intracranial injury, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.51) Open fracture of base of skull without mention of intracranial injury, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.51''', NULL, + '(801.51) Open fracture of base of skull without mention of intracranial injury, with no loss of consciousness', '(801.51) Open fracture of base of skull without mention of intracranial injury, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.52) Open fracture of base of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.52) Open fracture of base of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.52''', NULL, + '(801.52) Open fracture of base of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness', '(801.52) Open fracture of base of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.53) Open fracture of base of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.53) Open fracture of base of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.53''', NULL, + '(801.53) Open fracture of base of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', '(801.53) Open fracture of base of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.54) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.54) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.54''', NULL, + '(801.54) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(801.54) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.55) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.55) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.55''', NULL, + '(801.55) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(801.55) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.56) Open fracture of base of skull without mention of intracranial injury, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.56) Open fracture of base of skull without mention of intracranial injury, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.56''', NULL, + '(801.56) Open fracture of base of skull without mention of intracranial injury, with loss of consciousness of unspecified duration', '(801.56) Open fracture of base of skull without mention of intracranial injury, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.59) Open fracture of base of skull without mention of intracranial injury, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of base of skull (801)\Open fracture of base of skull without mention of intracranial injury (801.5)\(801.59) Open fracture of base of skull without mention of intracranial injury, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''801.59''', NULL, + '(801.59) Open fracture of base of skull without mention of intracranial injury, with concussion, unspecified', '(801.59) Open fracture of base of skull without mention of intracranial injury, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802''', NULL, + 'Fracture of face bones (802)', 'Fracture of face bones (802)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.0) Closed fracture of nasal bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.0) Closed fracture of nasal bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.0''', NULL, + '(802.0) Closed fracture of nasal bones', '(802.0) Closed fracture of nasal bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.1) Open fracture of nasal bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.1) Open fracture of nasal bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.1''', NULL, + '(802.1) Open fracture of nasal bones', '(802.1) Open fracture of nasal bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.4) Closed fracture of malar and maxillary bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.4) Closed fracture of malar and maxillary bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.4''', NULL, + '(802.4) Closed fracture of malar and maxillary bones', '(802.4) Closed fracture of malar and maxillary bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.5) Open fracture of malar and maxillary bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.5) Open fracture of malar and maxillary bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.5''', NULL, + '(802.5) Open fracture of malar and maxillary bones', '(802.5) Open fracture of malar and maxillary bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.6) Closed fracture of orbital floor (blow-out)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.6) Closed fracture of orbital floor (blow-out)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''802.6) Closed fracture of orbital floor (blow'' AND ''out''', NULL, + '(802.6) Closed fracture of orbital floor (blow-out)', '(802.6) Closed fracture of orbital floor (blow-out)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.7) Open fracture of orbital floor (blow-out)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.7) Open fracture of orbital floor (blow-out)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''802.7) Open fracture of orbital floor (blow'' AND ''out''', NULL, + '(802.7) Open fracture of orbital floor (blow-out)', '(802.7) Open fracture of orbital floor (blow-out)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.8) Closed fracture of other facial bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.8) Closed fracture of other facial bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.8''', NULL, + '(802.8) Closed fracture of other facial bones', '(802.8) Closed fracture of other facial bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.9) Open fracture of other facial bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\(802.9) Open fracture of other facial bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.9''', NULL, + '(802.9) Open fracture of other facial bones', '(802.9) Open fracture of other facial bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.2''', NULL, + 'Mandible closed fracture (802.2)', 'Mandible closed fracture (802.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.20) Closed fracture of mandible, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.20) Closed fracture of mandible, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.20''', NULL, + '(802.20) Closed fracture of mandible, unspecified site', '(802.20) Closed fracture of mandible, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.21) Closed fracture of mandible, condylar process\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.21) Closed fracture of mandible, condylar process\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.21''', NULL, + '(802.21) Closed fracture of mandible, condylar process', '(802.21) Closed fracture of mandible, condylar process', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.22) Closed fracture of mandible, subcondylar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.22) Closed fracture of mandible, subcondylar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.22''', NULL, + '(802.22) Closed fracture of mandible, subcondylar', '(802.22) Closed fracture of mandible, subcondylar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.23) Closed fracture of mandible, coronoid process\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.23) Closed fracture of mandible, coronoid process\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.23''', NULL, + '(802.23) Closed fracture of mandible, coronoid process', '(802.23) Closed fracture of mandible, coronoid process', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.24) Closed fracture of mandible, ramus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.24) Closed fracture of mandible, ramus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.24''', NULL, + '(802.24) Closed fracture of mandible, ramus, unspecified', '(802.24) Closed fracture of mandible, ramus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.25) Closed fracture of mandible, angle of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.25) Closed fracture of mandible, angle of jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.25''', NULL, + '(802.25) Closed fracture of mandible, angle of jaw', '(802.25) Closed fracture of mandible, angle of jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.26) Closed fracture of mandible, symphysis of body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.26) Closed fracture of mandible, symphysis of body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.26''', NULL, + '(802.26) Closed fracture of mandible, symphysis of body', '(802.26) Closed fracture of mandible, symphysis of body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.27) Closed fracture of mandible, alveolar border of body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.27) Closed fracture of mandible, alveolar border of body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.27''', NULL, + '(802.27) Closed fracture of mandible, alveolar border of body', '(802.27) Closed fracture of mandible, alveolar border of body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.28) Closed fracture of mandible, body, other and unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.28) Closed fracture of mandible, body, other and unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.28''', NULL, + '(802.28) Closed fracture of mandible, body, other and unspecified', '(802.28) Closed fracture of mandible, body, other and unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.29) Closed fracture of mandible, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible closed fracture (802.2)\(802.29) Closed fracture of mandible, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.29''', NULL, + '(802.29) Closed fracture of mandible, multiple sites', '(802.29) Closed fracture of mandible, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.3''', NULL, + 'Mandible open fracture (802.3)', 'Mandible open fracture (802.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.30) Open fracture of mandible, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.30) Open fracture of mandible, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.30''', NULL, + '(802.30) Open fracture of mandible, unspecified site', '(802.30) Open fracture of mandible, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.31) Open fracture of mandible, condylar process\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.31) Open fracture of mandible, condylar process\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.31''', NULL, + '(802.31) Open fracture of mandible, condylar process', '(802.31) Open fracture of mandible, condylar process', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.32) Open fracture of mandible, subcondylar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.32) Open fracture of mandible, subcondylar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.32''', NULL, + '(802.32) Open fracture of mandible, subcondylar', '(802.32) Open fracture of mandible, subcondylar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.33) Open fracture of mandible, coronoid process\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.33) Open fracture of mandible, coronoid process\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.33''', NULL, + '(802.33) Open fracture of mandible, coronoid process', '(802.33) Open fracture of mandible, coronoid process', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.34) Open fracture of mandible, ramus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.34) Open fracture of mandible, ramus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.34''', NULL, + '(802.34) Open fracture of mandible, ramus, unspecified', '(802.34) Open fracture of mandible, ramus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.35) Open fracture of mandible, angle of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.35) Open fracture of mandible, angle of jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.35''', NULL, + '(802.35) Open fracture of mandible, angle of jaw', '(802.35) Open fracture of mandible, angle of jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.36) Open fracture of mandible, symphysis of body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.36) Open fracture of mandible, symphysis of body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.36''', NULL, + '(802.36) Open fracture of mandible, symphysis of body', '(802.36) Open fracture of mandible, symphysis of body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.37) Open fracture of mandible, alveolar border of body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.37) Open fracture of mandible, alveolar border of body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.37''', NULL, + '(802.37) Open fracture of mandible, alveolar border of body', '(802.37) Open fracture of mandible, alveolar border of body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.38) Open fracture of mandible, body, other and unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.38) Open fracture of mandible, body, other and unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.38''', NULL, + '(802.38) Open fracture of mandible, body, other and unspecified', '(802.38) Open fracture of mandible, body, other and unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.39) Open fracture of mandible, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of face bones (802)\Mandible open fracture (802.3)\(802.39) Open fracture of mandible, multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''802.39''', NULL, + '(802.39) Open fracture of mandible, multiple sites', '(802.39) Open fracture of mandible, multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800''', NULL, + 'Fracture of vault of skull (800)', 'Fracture of vault of skull (800)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.1''', NULL, + 'Closed fracture of vault of skull with cerebral laceration and contusion (800.1)', 'Closed fracture of vault of skull with cerebral laceration and contusion (800.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.10) Closed fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.10) Closed fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.10''', NULL, + '(800.10) Closed fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness', '(800.10) Closed fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.11) Closed fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.11) Closed fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.11''', NULL, + '(800.11) Closed fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness', '(800.11) Closed fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.12) Closed fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.12) Closed fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.12''', NULL, + '(800.12) Closed fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', '(800.12) Closed fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.13) Closed fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.13) Closed fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.13''', NULL, + '(800.13) Closed fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', '(800.13) Closed fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.14) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.14) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.14''', NULL, + '(800.14) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(800.14) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.15) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.15) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.15''', NULL, + '(800.15) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(800.15) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.16) Closed fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.16) Closed fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.16''', NULL, + '(800.16) Closed fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration', '(800.16) Closed fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.19) Closed fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\(800.19) Closed fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.19''', NULL, + '(800.19) Closed fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified', '(800.19) Closed fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.4''', NULL, + 'Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)', 'Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.40) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.40) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.40''', NULL, + '(800.40) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness', '(800.40) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.41) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.41) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.41''', NULL, + '(800.41) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness', '(800.41) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.42) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.42) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.42''', NULL, + '(800.42) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', '(800.42) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.43) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.43) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.43''', NULL, + '(800.43) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', '(800.43) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.44) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.44) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.44''', NULL, + '(800.44) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(800.44) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.45) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.45) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.45''', NULL, + '(800.45) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(800.45) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.46) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.46) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.46''', NULL, + '(800.46) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', '(800.46) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.49) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\(800.49) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.49''', NULL, + '(800.49) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified', '(800.49) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.3''', NULL, + 'Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)', 'Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.30) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.30) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.30''', NULL, + '(800.30) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness', '(800.30) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.31) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.31) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.31''', NULL, + '(800.31) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness', '(800.31) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.32) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.32) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.32''', NULL, + '(800.32) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', '(800.32) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.33) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.33) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.33''', NULL, + '(800.33) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', '(800.33) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.34) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.34) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.34''', NULL, + '(800.34) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(800.34) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.35) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.35) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.35''', NULL, + '(800.35) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(800.35) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.36) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.36) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.36''', NULL, + '(800.36) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', '(800.36) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.39) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\(800.39) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.39''', NULL, + '(800.39) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified', '(800.39) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.2''', NULL, + 'Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)', 'Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.20) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.20) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.20''', NULL, + '(800.20) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', '(800.20) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.21) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.21) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.21''', NULL, + '(800.21) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', '(800.21) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.22) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.22) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.22''', NULL, + '(800.22) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', '(800.22) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.23) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.23) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.23''', NULL, + '(800.23) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', '(800.23) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.24) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.24) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.24''', NULL, + '(800.24) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(800.24) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.25) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.25) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.25''', NULL, + '(800.25) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(800.25) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.26) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.26) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.26''', NULL, + '(800.26) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', '(800.26) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.29) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\(800.29) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.29''', NULL, + '(800.29) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', '(800.29) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.0''', NULL, + 'Closed fracture of vault of skull without mention of intracranial injury (800.0)', 'Closed fracture of vault of skull without mention of intracranial injury (800.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.00) Closed fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.00) Closed fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.00''', NULL, + '(800.00) Closed fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness', '(800.00) Closed fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.01) Closed fracture of vault of skull without mention of intracranial injury, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.01) Closed fracture of vault of skull without mention of intracranial injury, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.01''', NULL, + '(800.01) Closed fracture of vault of skull without mention of intracranial injury, with no loss of consciousness', '(800.01) Closed fracture of vault of skull without mention of intracranial injury, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.02) Closed fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.02) Closed fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.02''', NULL, + '(800.02) Closed fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness', '(800.02) Closed fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.03) Closed fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.03) Closed fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.03''', NULL, + '(800.03) Closed fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', '(800.03) Closed fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.04) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.04) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.04''', NULL, + '(800.04) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(800.04) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.05) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.05) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.05''', NULL, + '(800.05) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(800.05) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.06) Closed fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.06) Closed fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.06''', NULL, + '(800.06) Closed fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration', '(800.06) Closed fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.09) Closed fracture of vault of skull without mention of intracranial injury, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Closed fracture of vault of skull without mention of intracranial injury (800.0)\(800.09) Closed fracture of vault of skull without mention of intracranial injury, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.09''', NULL, + '(800.09) Closed fracture of vault of skull without mention of intracranial injury, with concussion, unspecified', '(800.09) Closed fracture of vault of skull without mention of intracranial injury, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.6''', NULL, + 'Open fracture of vault of skull with cerebral laceration and contusion (800.6)', 'Open fracture of vault of skull with cerebral laceration and contusion (800.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.60) Open fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.60) Open fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.60''', NULL, + '(800.60) Open fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness', '(800.60) Open fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.61) Open fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.61) Open fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.61''', NULL, + '(800.61) Open fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness', '(800.61) Open fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.62) Open fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.62) Open fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.62''', NULL, + '(800.62) Open fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', '(800.62) Open fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.63) Open fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.63) Open fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.63''', NULL, + '(800.63) Open fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', '(800.63) Open fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.64) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.64) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.64''', NULL, + '(800.64) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(800.64) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.65) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.65) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.65''', NULL, + '(800.65) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(800.65) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.66) Open fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.66) Open fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.66''', NULL, + '(800.66) Open fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration', '(800.66) Open fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.69) Open fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\(800.69) Open fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.69''', NULL, + '(800.69) Open fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified', '(800.69) Open fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.9''', NULL, + 'Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)', 'Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.90) Open fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.90) Open fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.90''', NULL, + '(800.90) Open fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness', '(800.90) Open fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.91) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.91) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.91''', NULL, + '(800.91) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness', '(800.91) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.92) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.92) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.92''', NULL, + '(800.92) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', '(800.92) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.93) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.93) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.93''', NULL, + '(800.93) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', '(800.93) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.94) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.94) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.94''', NULL, + '(800.94) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(800.94) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.95) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.95) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.95''', NULL, + '(800.95) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(800.95) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.96) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.96) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.96''', NULL, + '(800.96) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', '(800.96) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.99) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\(800.99) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.99''', NULL, + '(800.99) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified', '(800.99) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.8''', NULL, + 'Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)', 'Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.80) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.80) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.80''', NULL, + '(800.80) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness', '(800.80) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.81) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.81) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.81''', NULL, + '(800.81) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness', '(800.81) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.82) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.82) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.82''', NULL, + '(800.82) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', '(800.82) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.83) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.83) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.83''', NULL, + '(800.83) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', '(800.83) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.84) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.84) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.84''', NULL, + '(800.84) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(800.84) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.85) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.85) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.85''', NULL, + '(800.85) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(800.85) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.86) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.86) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.86''', NULL, + '(800.86) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', '(800.86) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.89) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\(800.89) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.89''', NULL, + '(800.89) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified', '(800.89) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.7''', NULL, + 'Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)', 'Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.70) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.70) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.70''', NULL, + '(800.70) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', '(800.70) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.71) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.71) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.71''', NULL, + '(800.71) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', '(800.71) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.72) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.72) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.72''', NULL, + '(800.72) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', '(800.72) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.73) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.73) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.73''', NULL, + '(800.73) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', '(800.73) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.74) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.74) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.74''', NULL, + '(800.74) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(800.74) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.75) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.75) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.75''', NULL, + '(800.75) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(800.75) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.76) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.76) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.76''', NULL, + '(800.76) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', '(800.76) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.79) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\(800.79) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.79''', NULL, + '(800.79) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', '(800.79) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.5''', NULL, + 'Open fracture of vault of skull without mention of intracranial injury (800.5)', 'Open fracture of vault of skull without mention of intracranial injury (800.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.50) Open fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.50) Open fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.50''', NULL, + '(800.50) Open fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness', '(800.50) Open fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.51) Open fracture of vault of skull without mention of intracranial injury, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.51) Open fracture of vault of skull without mention of intracranial injury, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.51''', NULL, + '(800.51) Open fracture of vault of skull without mention of intracranial injury, with no loss of consciousness', '(800.51) Open fracture of vault of skull without mention of intracranial injury, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.52) Open fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.52) Open fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.52''', NULL, + '(800.52) Open fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness', '(800.52) Open fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.53) Open fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.53) Open fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.53''', NULL, + '(800.53) Open fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', '(800.53) Open fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.54) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.54) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.54''', NULL, + '(800.54) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(800.54) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.55) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.55) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.55''', NULL, + '(800.55) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(800.55) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.56) Open fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.56) Open fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.56''', NULL, + '(800.56) Open fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration', '(800.56) Open fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.59) Open fracture of vault of skull without mention of intracranial injury, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Fracture of vault of skull (800)\Open fracture of vault of skull without mention of intracranial injury (800.5)\(800.59) Open fracture of vault of skull without mention of intracranial injury, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''800.59''', NULL, + '(800.59) Open fracture of vault of skull without mention of intracranial injury, with concussion, unspecified', '(800.59) Open fracture of vault of skull without mention of intracranial injury, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804''', NULL, + 'Multiple fractures involving skull or face with other bones (804)', 'Multiple fractures involving skull or face with other bones (804)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.2''', NULL, + 'Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)', 'Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.20) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.20) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.20''', NULL, + '(804.20) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', '(804.20) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.21) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.21) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.21''', NULL, + '(804.21) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', '(804.21) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.22) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.22) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.22''', NULL, + '(804.22) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', '(804.22) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.23) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.23) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.23''', NULL, + '(804.23) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', '(804.23) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.24) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.24) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.24''', NULL, + '(804.24) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(804.24) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.25) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.25) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.25''', NULL, + '(804.25) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(804.25) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.26) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.26) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.26''', NULL, + '(804.26) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', '(804.26) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.29) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\(804.29) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.29''', NULL, + '(804.29) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', '(804.29) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.1''', NULL, + 'Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)', 'Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.10) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.10) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.10''', NULL, + '(804.10) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness', '(804.10) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.11) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.11) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.11''', NULL, + '(804.11) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness', '(804.11) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.12) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.12) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.12''', NULL, + '(804.12) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', '(804.12) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.13) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.13) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.13''', NULL, + '(804.13) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', '(804.13) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.14) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.14) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.14''', NULL, + '(804.14) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(804.14) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.15) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.15) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.15''', NULL, + '(804.15) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(804.15) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.16) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.16) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.16''', NULL, + '(804.16) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration', '(804.16) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.19) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\(804.19) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.19''', NULL, + '(804.19) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified', '(804.19) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.4''', NULL, + 'Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)', 'Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.40) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.40) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.40''', NULL, + '(804.40) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness', '(804.40) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.41) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.41) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.41''', NULL, + '(804.41) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness', '(804.41) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.42) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.42) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.42''', NULL, + '(804.42) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', '(804.42) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.43) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.43) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.43''', NULL, + '(804.43) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', '(804.43) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.44) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.44) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.44''', NULL, + '(804.44) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(804.44) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.45) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.45) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.45''', NULL, + '(804.45) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(804.45) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.46) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.46) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.46''', NULL, + '(804.46) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', '(804.46) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.49) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\(804.49) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.49''', NULL, + '(804.49) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified', '(804.49) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.3''', NULL, + 'Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)', 'Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.30) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.30) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.30''', NULL, + '(804.30) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness', '(804.30) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.31) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.31) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.31''', NULL, + '(804.31) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness', '(804.31) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.32) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.32) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.32''', NULL, + '(804.32) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', '(804.32) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.33) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.33) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.33''', NULL, + '(804.33) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', '(804.33) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.34) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.34) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.34''', NULL, + '(804.34) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level', '(804.34) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.35) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.35) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.35''', NULL, + '(804.35) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(804.35) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.36) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.36) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.36''', NULL, + '(804.36) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', '(804.36) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.39) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\(804.39) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.39''', NULL, + '(804.39) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified', '(804.39) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.0''', NULL, + 'Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)', 'Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.00) Closed fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.00) Closed fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.00''', NULL, + '(804.00) Closed fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness', '(804.00) Closed fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.01) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.01) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.01''', NULL, + '(804.01) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness', '(804.01) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.02) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.02) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.02''', NULL, + '(804.02) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness', '(804.02) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.03) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.03) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.03''', NULL, + '(804.03) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', '(804.03) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.04) Closed fractures involving skull or face with other bones, without mention or intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.04) Closed fractures involving skull or face with other bones, without mention or intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.04''', NULL, + '(804.04) Closed fractures involving skull or face with other bones, without mention or intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(804.04) Closed fractures involving skull or face with other bones, without mention or intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.05) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.05) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.05''', NULL, + '(804.05) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(804.05) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.06) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.06) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.06''', NULL, + '(804.06) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration', '(804.06) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.09) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\(804.09) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.09''', NULL, + '(804.09) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with concussion, unspecified', '(804.09) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.7''', NULL, + 'Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)', 'Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.70) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.70) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.70''', NULL, + '(804.70) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', '(804.70) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.71) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.71) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.71''', NULL, + '(804.71) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', '(804.71) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.72) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.72) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.72''', NULL, + '(804.72) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', '(804.72) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.73) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.73) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.73''', NULL, + '(804.73) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', '(804.73) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.74) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.74) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.74''', NULL, + '(804.74) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(804.74) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.75) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.75) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.75''', NULL, + '(804.75) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(804.75) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.76) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.76) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.76''', NULL, + '(804.76) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', '(804.76) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.79) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\(804.79) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.79''', NULL, + '(804.79) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', '(804.79) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.6''', NULL, + 'Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)', 'Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.60) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.60) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.60''', NULL, + '(804.60) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness', '(804.60) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.61) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.61) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.61''', NULL, + '(804.61) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness', '(804.61) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.62) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.62) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.62''', NULL, + '(804.62) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', '(804.62) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.63) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.63) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.63''', NULL, + '(804.63) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', '(804.63) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.64) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.64) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.64''', NULL, + '(804.64) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(804.64) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.65) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.65) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.65''', NULL, + '(804.65) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(804.65) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.66) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.66) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.66''', NULL, + '(804.66) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration', '(804.66) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.69) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\(804.69) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.69''', NULL, + '(804.69) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified', '(804.69) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.9''', NULL, + 'Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)', 'Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.90) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.90) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.90''', NULL, + '(804.90) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness', '(804.90) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.91) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.91) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.91''', NULL, + '(804.91) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness', '(804.91) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.92) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.92) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.92''', NULL, + '(804.92) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', '(804.92) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.93) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.93) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.93''', NULL, + '(804.93) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', '(804.93) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.94) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.94) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.94''', NULL, + '(804.94) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(804.94) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.95) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.95) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.95''', NULL, + '(804.95) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(804.95) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.96) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.96) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.96''', NULL, + '(804.96) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', '(804.96) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.99) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\(804.99) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.99''', NULL, + '(804.99) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified', '(804.99) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.8''', NULL, + 'Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)', 'Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.80) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.80) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.80''', NULL, + '(804.80) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness', '(804.80) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.81) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.81) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.81''', NULL, + '(804.81) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness', '(804.81) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.82) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.82) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.82''', NULL, + '(804.82) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', '(804.82) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.83) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.83) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.83''', NULL, + '(804.83) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', '(804.83) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.84) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.84) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.84''', NULL, + '(804.84) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(804.84) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.85) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.85) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.85''', NULL, + '(804.85) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss consciousness, without return to pre-existing conscious level', '(804.85) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.86) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.86) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.86''', NULL, + '(804.86) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', '(804.86) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.89) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\(804.89) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.89''', NULL, + '(804.89) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified', '(804.89) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.5''', NULL, + 'Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)', 'Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.50) Open fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.50) Open fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.50''', NULL, + '(804.50) Open fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness', '(804.50) Open fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.51) Open fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.51) Open fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.51''', NULL, + '(804.51) Open fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness', '(804.51) Open fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.52) Open fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.52) Open fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.52''', NULL, + '(804.52) Open fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness', '(804.52) Open fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.53) Open fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.53) Open fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.53''', NULL, + '(804.53) Open fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', '(804.53) Open fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.54) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.54) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.54''', NULL, + '(804.54) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(804.54) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.55) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.55) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.55''', NULL, + '(804.55) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(804.55) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.56) Open fractures involving skull or face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.56) Open fractures involving skull or face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.56''', NULL, + '(804.56) Open fractures involving skull or face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration', '(804.56) Open fractures involving skull or face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.59) Open fractures involving skull or face with other bones, without mention of intracranial injury, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Multiple fractures involving skull or face with other bones (804)\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\(804.59) Open fractures involving skull or face with other bones, without mention of intracranial injury, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''804.59''', NULL, + '(804.59) Open fractures involving skull or face with other bones, without mention of intracranial injury, with concussion, unspecified', '(804.59) Open fractures involving skull or face with other bones, without mention of intracranial injury, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803''', NULL, + 'Other and unqualified skull fractures (803)', 'Other and unqualified skull fractures (803)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.3''', NULL, + 'Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)', 'Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.30) Other closed skull fracture with other and unspecified intracranial hemorrhage, unspecified state of unconsciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.30) Other closed skull fracture with other and unspecified intracranial hemorrhage, unspecified state of unconsciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.30''', NULL, + '(803.30) Other closed skull fracture with other and unspecified intracranial hemorrhage, unspecified state of unconsciousness', '(803.30) Other closed skull fracture with other and unspecified intracranial hemorrhage, unspecified state of unconsciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.31) Other closed skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.31) Other closed skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.31''', NULL, + '(803.31) Other closed skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness', '(803.31) Other closed skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.32) Other closed skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.32) Other closed skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.32''', NULL, + '(803.32) Other closed skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', '(803.32) Other closed skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.33) Other closed skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.33) Other closed skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.33''', NULL, + '(803.33) Other closed skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', '(803.33) Other closed skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.34) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.34) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.34''', NULL, + '(803.34) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(803.34) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.35) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.35) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.35''', NULL, + '(803.35) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(803.35) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.36) Other closed skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.36) Other closed skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.36''', NULL, + '(803.36) Other closed skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', '(803.36) Other closed skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.39) Other closed skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\(803.39) Other closed skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.39''', NULL, + '(803.39) Other closed skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified', '(803.39) Other closed skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.1''', NULL, + 'Other closed skull fracture with cerebral laceration and contusion (803.1)', 'Other closed skull fracture with cerebral laceration and contusion (803.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.10) Other closed skull fracture with cerebral laceration and contusion, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.10) Other closed skull fracture with cerebral laceration and contusion, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.10''', NULL, + '(803.10) Other closed skull fracture with cerebral laceration and contusion, unspecified state of consciousness', '(803.10) Other closed skull fracture with cerebral laceration and contusion, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.11) Other closed skull fracture with cerebral laceration and contusion, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.11) Other closed skull fracture with cerebral laceration and contusion, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.11''', NULL, + '(803.11) Other closed skull fracture with cerebral laceration and contusion, with no loss of consciousness', '(803.11) Other closed skull fracture with cerebral laceration and contusion, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.12) Other closed skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.12) Other closed skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.12''', NULL, + '(803.12) Other closed skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', '(803.12) Other closed skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.13) Other closed skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.13) Other closed skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.13''', NULL, + '(803.13) Other closed skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', '(803.13) Other closed skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.14) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.14) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.14''', NULL, + '(803.14) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(803.14) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.15) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.15) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.15''', NULL, + '(803.15) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(803.15) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.16) Other closed skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.16) Other closed skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.16''', NULL, + '(803.16) Other closed skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration', '(803.16) Other closed skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.19) Other closed skull fracture with cerebral laceration and contusion, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with cerebral laceration and contusion (803.1)\(803.19) Other closed skull fracture with cerebral laceration and contusion, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.19''', NULL, + '(803.19) Other closed skull fracture with cerebral laceration and contusion, with concussion, unspecified', '(803.19) Other closed skull fracture with cerebral laceration and contusion, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.4''', NULL, + 'Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)', 'Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.40) Other closed skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.40) Other closed skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.40''', NULL, + '(803.40) Other closed skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness', '(803.40) Other closed skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.41) Other closed skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.41) Other closed skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.41''', NULL, + '(803.41) Other closed skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness', '(803.41) Other closed skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.42) Other closed skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.42) Other closed skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.42''', NULL, + '(803.42) Other closed skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', '(803.42) Other closed skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.43) Other closed skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.43) Other closed skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.43''', NULL, + '(803.43) Other closed skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', '(803.43) Other closed skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.44) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.44) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.44''', NULL, + '(803.44) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(803.44) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.45) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.45) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.45''', NULL, + '(803.45) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(803.45) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.46) Other closed skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.46) Other closed skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.46''', NULL, + '(803.46) Other closed skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', '(803.46) Other closed skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.49) Other closed skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\(803.49) Other closed skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.49''', NULL, + '(803.49) Other closed skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified', '(803.49) Other closed skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.2''', NULL, + 'Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)', 'Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.20) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.20) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.20''', NULL, + '(803.20) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', '(803.20) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.21) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.21) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.21''', NULL, + '(803.21) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', '(803.21) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.22) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.22) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.22''', NULL, + '(803.22) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', '(803.22) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.23) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.23) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.23''', NULL, + '(803.23) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', '(803.23) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.24) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.24) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.24''', NULL, + '(803.24) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(803.24) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.25) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.25) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.25''', NULL, + '(803.25) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(803.25) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.26) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.26) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.26''', NULL, + '(803.26) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', '(803.26) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.29) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\(803.29) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.29''', NULL, + '(803.29) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', '(803.29) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.0''', NULL, + 'Other closed skull fracture without mention of intracranial injury (803.0)', 'Other closed skull fracture without mention of intracranial injury (803.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.00) Other closed skull fracture without mention of intracranial injury, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.00) Other closed skull fracture without mention of intracranial injury, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.00''', NULL, + '(803.00) Other closed skull fracture without mention of intracranial injury, unspecified state of consciousness', '(803.00) Other closed skull fracture without mention of intracranial injury, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.01) Other closed skull fracture without mention of intracranial injury, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.01) Other closed skull fracture without mention of intracranial injury, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.01''', NULL, + '(803.01) Other closed skull fracture without mention of intracranial injury, with no loss of consciousness', '(803.01) Other closed skull fracture without mention of intracranial injury, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.02) Other closed skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.02) Other closed skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.02''', NULL, + '(803.02) Other closed skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness', '(803.02) Other closed skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.03) Other closed skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.03) Other closed skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.03''', NULL, + '(803.03) Other closed skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', '(803.03) Other closed skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.04) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.04) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.04''', NULL, + '(803.04) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(803.04) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.05) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.05) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.05''', NULL, + '(803.05) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(803.05) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.06) Other closed skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.06) Other closed skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.06''', NULL, + '(803.06) Other closed skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration', '(803.06) Other closed skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.09) Other closed skull fracture without mention of intracranial injury, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other closed skull fracture without mention of intracranial injury (803.0)\(803.09) Other closed skull fracture without mention of intracranial injury, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.09''', NULL, + '(803.09) Other closed skull fracture without mention of intracranial injury, with concussion, unspecified', '(803.09) Other closed skull fracture without mention of intracranial injury, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.6''', NULL, + 'Other open skull fracture with cerebral laceration and contusion (803.6)', 'Other open skull fracture with cerebral laceration and contusion (803.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.60) Other open skull fracture with cerebral laceration and contusion, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.60) Other open skull fracture with cerebral laceration and contusion, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.60''', NULL, + '(803.60) Other open skull fracture with cerebral laceration and contusion, unspecified state of consciousness', '(803.60) Other open skull fracture with cerebral laceration and contusion, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.61) Other open skull fracture with cerebral laceration and contusion, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.61) Other open skull fracture with cerebral laceration and contusion, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.61''', NULL, + '(803.61) Other open skull fracture with cerebral laceration and contusion, with no loss of consciousness', '(803.61) Other open skull fracture with cerebral laceration and contusion, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.62) Other open skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.62) Other open skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.62''', NULL, + '(803.62) Other open skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', '(803.62) Other open skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.63) Other open skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.63) Other open skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.63''', NULL, + '(803.63) Other open skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', '(803.63) Other open skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.64) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.64) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.64''', NULL, + '(803.64) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(803.64) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.65) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.65) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.65''', NULL, + '(803.65) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(803.65) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.66) Other open skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.66) Other open skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.66''', NULL, + '(803.66) Other open skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration', '(803.66) Other open skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.69) Other open skull fracture with cerebral laceration and contusion, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with cerebral laceration and contusion (803.6)\(803.69) Other open skull fracture with cerebral laceration and contusion, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.69''', NULL, + '(803.69) Other open skull fracture with cerebral laceration and contusion, with concussion, unspecified', '(803.69) Other open skull fracture with cerebral laceration and contusion, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.9''', NULL, + 'Other open skull fracture with intracranial injury of other and unspecified nature (803.9)', 'Other open skull fracture with intracranial injury of other and unspecified nature (803.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.90) Other open skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.90) Other open skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.90''', NULL, + '(803.90) Other open skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness', '(803.90) Other open skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.91) Other open skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.91) Other open skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.91''', NULL, + '(803.91) Other open skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness', '(803.91) Other open skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.92) Other open skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.92) Other open skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.92''', NULL, + '(803.92) Other open skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', '(803.92) Other open skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.93) Other open skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.93) Other open skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.93''', NULL, + '(803.93) Other open skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', '(803.93) Other open skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.94) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.94) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.94''', NULL, + '(803.94) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(803.94) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.95) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.95) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.95''', NULL, + '(803.95) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(803.95) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.96) Other open skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.96) Other open skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.96''', NULL, + '(803.96) Other open skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', '(803.96) Other open skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.99) Other open skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\(803.99) Other open skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.99''', NULL, + '(803.99) Other open skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified', '(803.99) Other open skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.8''', NULL, + 'Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)', 'Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.80) Other open skull fracture with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.80) Other open skull fracture with other and unspecified intracranial hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.80''', NULL, + '(803.80) Other open skull fracture with other and unspecified intracranial hemorrhage, unspecified state of consciousness', '(803.80) Other open skull fracture with other and unspecified intracranial hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.81) Other open skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.81) Other open skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.81''', NULL, + '(803.81) Other open skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness', '(803.81) Other open skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.82) Other open skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.82) Other open skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.82''', NULL, + '(803.82) Other open skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', '(803.82) Other open skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.83) Other open skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.83) Other open skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.83''', NULL, + '(803.83) Other open skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', '(803.83) Other open skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.84) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.84) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.84''', NULL, + '(803.84) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(803.84) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.85) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.85) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.85''', NULL, + '(803.85) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(803.85) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.86) Other open skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.86) Other open skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.86''', NULL, + '(803.86) Other open skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', '(803.86) Other open skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.89) Other open skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\(803.89) Other open skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.89''', NULL, + '(803.89) Other open skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified', '(803.89) Other open skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.7''', NULL, + 'Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)', 'Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.70) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.70) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.70''', NULL, + '(803.70) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', '(803.70) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.71) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.71) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.71''', NULL, + '(803.71) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', '(803.71) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.72) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.72) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.72''', NULL, + '(803.72) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', '(803.72) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.73) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.73) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.73''', NULL, + '(803.73) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', '(803.73) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.74) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.74) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.74''', NULL, + '(803.74) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(803.74) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.75) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.75) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.75''', NULL, + '(803.75) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(803.75) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.76) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.76) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.76''', NULL, + '(803.76) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', '(803.76) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.79) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\(803.79) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.79''', NULL, + '(803.79) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', '(803.79) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.5''', NULL, + 'Other open skull fracture without mention of intracranial injury (803.5)', 'Other open skull fracture without mention of intracranial injury (803.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.50) Other open skull fracture without mention of injury, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.50) Other open skull fracture without mention of injury, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.50''', NULL, + '(803.50) Other open skull fracture without mention of injury, unspecified state of consciousness', '(803.50) Other open skull fracture without mention of injury, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.51) Other open skull fracture without mention of intracranial injury, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.51) Other open skull fracture without mention of intracranial injury, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.51''', NULL, + '(803.51) Other open skull fracture without mention of intracranial injury, with no loss of consciousness', '(803.51) Other open skull fracture without mention of intracranial injury, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.52) Other open skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.52) Other open skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.52''', NULL, + '(803.52) Other open skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness', '(803.52) Other open skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.53) Other open skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.53) Other open skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.53''', NULL, + '(803.53) Other open skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', '(803.53) Other open skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.54) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.54) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.54''', NULL, + '(803.54) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(803.54) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.55) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.55) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.55''', NULL, + '(803.55) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', '(803.55) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.56) Other open skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.56) Other open skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.56''', NULL, + '(803.56) Other open skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration', '(803.56) Other open skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.59) Other open skull fracture without mention of intracranial injury, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF SKULL (800-804.99)\Other and unqualified skull fractures (803)\Other open skull fracture without mention of intracranial injury (803.5)\(803.59) Other open skull fracture without mention of intracranial injury, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''803.59''', NULL, + '(803.59) Other open skull fracture without mention of intracranial injury, with concussion, unspecified', '(803.59) Other open skull fracture without mention of intracranial injury, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''810'' AND ''819.99''', NULL, + 'FRACTURE OF UPPER LIMB (810-819.99)', 'FRACTURE OF UPPER LIMB (810-819.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (814''', NULL, + 'Fracture of carpal bone(s) (814)', 'Fracture of carpal bone(s) (814)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.0''', NULL, + 'Closed fractures of carpal bones (814.0)', 'Closed fractures of carpal bones (814.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.00) Closed fracture of carpal bone, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.00) Closed fracture of carpal bone, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.00''', NULL, + '(814.00) Closed fracture of carpal bone, unspecified', '(814.00) Closed fracture of carpal bone, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.01) Closed fracture of navicular [scaphoid] bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.01) Closed fracture of navicular [scaphoid] bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.01''', NULL, + '(814.01) Closed fracture of navicular [scaphoid] bone of wrist', '(814.01) Closed fracture of navicular [scaphoid] bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.02) Closed fracture of lunate [semilunar] bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.02) Closed fracture of lunate [semilunar] bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.02''', NULL, + '(814.02) Closed fracture of lunate [semilunar] bone of wrist', '(814.02) Closed fracture of lunate [semilunar] bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.03) Closed fracture of triquetral [cuneiform] bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.03) Closed fracture of triquetral [cuneiform] bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.03''', NULL, + '(814.03) Closed fracture of triquetral [cuneiform] bone of wrist', '(814.03) Closed fracture of triquetral [cuneiform] bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.04) Closed fracture of pisiform bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.04) Closed fracture of pisiform bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.04''', NULL, + '(814.04) Closed fracture of pisiform bone of wrist', '(814.04) Closed fracture of pisiform bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.05) Closed fracture of trapezium bone [larger multangular] of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.05) Closed fracture of trapezium bone [larger multangular] of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.05''', NULL, + '(814.05) Closed fracture of trapezium bone [larger multangular] of wrist', '(814.05) Closed fracture of trapezium bone [larger multangular] of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.06) Closed fracture of trapezoid bone [smaller multangular] of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.06) Closed fracture of trapezoid bone [smaller multangular] of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.06''', NULL, + '(814.06) Closed fracture of trapezoid bone [smaller multangular] of wrist', '(814.06) Closed fracture of trapezoid bone [smaller multangular] of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.07) Closed fracture of capitate bone [os magnum] of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.07) Closed fracture of capitate bone [os magnum] of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.07''', NULL, + '(814.07) Closed fracture of capitate bone [os magnum] of wrist', '(814.07) Closed fracture of capitate bone [os magnum] of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.08) Closed fracture of hamate [unciform] bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.08) Closed fracture of hamate [unciform] bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.08''', NULL, + '(814.08) Closed fracture of hamate [unciform] bone of wrist', '(814.08) Closed fracture of hamate [unciform] bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.09) Closed fracture of other bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Closed fractures of carpal bones (814.0)\(814.09) Closed fracture of other bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.09''', NULL, + '(814.09) Closed fracture of other bone of wrist', '(814.09) Closed fracture of other bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.1''', NULL, + 'Open fractures of carpal bones (814.1)', 'Open fractures of carpal bones (814.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.10) Open fracture of carpal bone, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.10) Open fracture of carpal bone, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.10''', NULL, + '(814.10) Open fracture of carpal bone, unspecified', '(814.10) Open fracture of carpal bone, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.11) Open fracture of navicular [scaphoid] bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.11) Open fracture of navicular [scaphoid] bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.11''', NULL, + '(814.11) Open fracture of navicular [scaphoid] bone of wrist', '(814.11) Open fracture of navicular [scaphoid] bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.12) Open fracture of lunate [semilunar] bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.12) Open fracture of lunate [semilunar] bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.12''', NULL, + '(814.12) Open fracture of lunate [semilunar] bone of wrist', '(814.12) Open fracture of lunate [semilunar] bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.13) Open fracture of triquetral [cuneiform] bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.13) Open fracture of triquetral [cuneiform] bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.13''', NULL, + '(814.13) Open fracture of triquetral [cuneiform] bone of wrist', '(814.13) Open fracture of triquetral [cuneiform] bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.14) Open fracture of pisiform bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.14) Open fracture of pisiform bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.14''', NULL, + '(814.14) Open fracture of pisiform bone of wrist', '(814.14) Open fracture of pisiform bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.15) Open fracture of trapezium bone [larger multangular] of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.15) Open fracture of trapezium bone [larger multangular] of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.15''', NULL, + '(814.15) Open fracture of trapezium bone [larger multangular] of wrist', '(814.15) Open fracture of trapezium bone [larger multangular] of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.16) Open fracture of trapezoid bone [smaller multangular] of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.16) Open fracture of trapezoid bone [smaller multangular] of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.16''', NULL, + '(814.16) Open fracture of trapezoid bone [smaller multangular] of wrist', '(814.16) Open fracture of trapezoid bone [smaller multangular] of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.17) Open fracture of capitate bone [os magnum] of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.17) Open fracture of capitate bone [os magnum] of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.17''', NULL, + '(814.17) Open fracture of capitate bone [os magnum] of wrist', '(814.17) Open fracture of capitate bone [os magnum] of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.18) Open fracture of hamate [unciform] bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.18) Open fracture of hamate [unciform] bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.18''', NULL, + '(814.18) Open fracture of hamate [unciform] bone of wrist', '(814.18) Open fracture of hamate [unciform] bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.19) Open fracture of other bone of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of carpal bone(s) (814)\Open fractures of carpal bones (814.1)\(814.19) Open fracture of other bone of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''814.19''', NULL, + '(814.19) Open fracture of other bone of wrist', '(814.19) Open fracture of other bone of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''810''', NULL, + 'Fracture of clavicle (810)', 'Fracture of clavicle (810)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''810.0''', NULL, + 'Closed fracture of clavicle (810.0)', 'Closed fracture of clavicle (810.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\(810.00) Closed fracture of clavicle, unspecified part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\(810.00) Closed fracture of clavicle, unspecified part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''810.00''', NULL, + '(810.00) Closed fracture of clavicle, unspecified part', '(810.00) Closed fracture of clavicle, unspecified part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\(810.01) Closed fracture of sternal end of clavicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\(810.01) Closed fracture of sternal end of clavicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''810.01''', NULL, + '(810.01) Closed fracture of sternal end of clavicle', '(810.01) Closed fracture of sternal end of clavicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\(810.02) Closed fracture of shaft of clavicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\(810.02) Closed fracture of shaft of clavicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''810.02''', NULL, + '(810.02) Closed fracture of shaft of clavicle', '(810.02) Closed fracture of shaft of clavicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\(810.03) Closed fracture of acromial end of clavicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Closed fracture of clavicle (810.0)\(810.03) Closed fracture of acromial end of clavicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''810.03''', NULL, + '(810.03) Closed fracture of acromial end of clavicle', '(810.03) Closed fracture of acromial end of clavicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''810.1''', NULL, + 'Open fracture of clavicle (810.1)', 'Open fracture of clavicle (810.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\(810.10) Open fracture of clavicle, unspecified part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\(810.10) Open fracture of clavicle, unspecified part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''810.10''', NULL, + '(810.10) Open fracture of clavicle, unspecified part', '(810.10) Open fracture of clavicle, unspecified part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\(810.11) Open fracture of sternal end of clavicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\(810.11) Open fracture of sternal end of clavicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''810.11''', NULL, + '(810.11) Open fracture of sternal end of clavicle', '(810.11) Open fracture of sternal end of clavicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\(810.12) Open fracture of shaft of clavicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\(810.12) Open fracture of shaft of clavicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''810.12''', NULL, + '(810.12) Open fracture of shaft of clavicle', '(810.12) Open fracture of shaft of clavicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\(810.13) Open fracture of acromial end of clavicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of clavicle (810)\Open fracture of clavicle (810.1)\(810.13) Open fracture of acromial end of clavicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''810.13''', NULL, + '(810.13) Open fracture of acromial end of clavicle', '(810.13) Open fracture of acromial end of clavicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812''', NULL, + 'Fracture of humerus (812)', 'Fracture of humerus (812)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Closed fracture of shaft or unspecified part of humerus (812.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Closed fracture of shaft or unspecified part of humerus (812.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.2''', NULL, + 'Closed fracture of shaft or unspecified part of humerus (812.2)', 'Closed fracture of shaft or unspecified part of humerus (812.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Closed fracture of shaft or unspecified part of humerus (812.2)\(812.20) Closed fracture of unspecified part of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Closed fracture of shaft or unspecified part of humerus (812.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Closed fracture of shaft or unspecified part of humerus (812.2)\(812.20) Closed fracture of unspecified part of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.20''', NULL, + '(812.20) Closed fracture of unspecified part of humerus', '(812.20) Closed fracture of unspecified part of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Closed fracture of shaft or unspecified part of humerus (812.2)\(812.21) Closed fracture of shaft of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Closed fracture of shaft or unspecified part of humerus (812.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Closed fracture of shaft or unspecified part of humerus (812.2)\(812.21) Closed fracture of shaft of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.21''', NULL, + '(812.21) Closed fracture of shaft of humerus', '(812.21) Closed fracture of shaft of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.4''', NULL, + 'Fracture of lower end of humerus, closed (812.4)', 'Fracture of lower end of humerus, closed (812.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.40) Closed fracture of unspecified part of lower end of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.40) Closed fracture of unspecified part of lower end of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.40''', NULL, + '(812.40) Closed fracture of unspecified part of lower end of humerus', '(812.40) Closed fracture of unspecified part of lower end of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.41) Closed supracondylar fracture of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.41) Closed supracondylar fracture of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.41''', NULL, + '(812.41) Closed supracondylar fracture of humerus', '(812.41) Closed supracondylar fracture of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.42) Closed fracture of lateral condyle of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.42) Closed fracture of lateral condyle of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.42''', NULL, + '(812.42) Closed fracture of lateral condyle of humerus', '(812.42) Closed fracture of lateral condyle of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.43) Closed fracture of medial condyle of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.43) Closed fracture of medial condyle of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.43''', NULL, + '(812.43) Closed fracture of medial condyle of humerus', '(812.43) Closed fracture of medial condyle of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.44) Closed fracture of unspecified condyle(s) of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.44) Closed fracture of unspecified condyle(s) of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.44) Closed fracture of unspecified condyle(s''', NULL, + '(812.44) Closed fracture of unspecified condyle(s) of humerus', '(812.44) Closed fracture of unspecified condyle(s) of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.49) Other closed fracture of lower end of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, closed (812.4)\(812.49) Other closed fracture of lower end of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.49''', NULL, + '(812.49) Other closed fracture of lower end of humerus', '(812.49) Other closed fracture of lower end of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.5''', NULL, + 'Fracture of lower end of humerus, open (812.5)', 'Fracture of lower end of humerus, open (812.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.50) Open fracture of unspecified part of lower end of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.50) Open fracture of unspecified part of lower end of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.50''', NULL, + '(812.50) Open fracture of unspecified part of lower end of humerus', '(812.50) Open fracture of unspecified part of lower end of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.51) Open supracondylar fracture of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.51) Open supracondylar fracture of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.51''', NULL, + '(812.51) Open supracondylar fracture of humerus', '(812.51) Open supracondylar fracture of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.52) Open fracture of lateral condyle of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.52) Open fracture of lateral condyle of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.52''', NULL, + '(812.52) Open fracture of lateral condyle of humerus', '(812.52) Open fracture of lateral condyle of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.53) Open fracture of medial condyle of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.53) Open fracture of medial condyle of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.53''', NULL, + '(812.53) Open fracture of medial condyle of humerus', '(812.53) Open fracture of medial condyle of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.54) Open fracture of unspecified condyle(s) of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.54) Open fracture of unspecified condyle(s) of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.54) Open fracture of unspecified condyle(s''', NULL, + '(812.54) Open fracture of unspecified condyle(s) of humerus', '(812.54) Open fracture of unspecified condyle(s) of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.59) Other open fracture of lower end of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of lower end of humerus, open (812.5)\(812.59) Other open fracture of lower end of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.59''', NULL, + '(812.59) Other open fracture of lower end of humerus', '(812.59) Other open fracture of lower end of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of shaft or unspecified part of humerus, open (812.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of shaft or unspecified part of humerus, open (812.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.3''', NULL, + 'Fracture of shaft or unspecified part of humerus, open (812.3)', 'Fracture of shaft or unspecified part of humerus, open (812.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of shaft or unspecified part of humerus, open (812.3)\(812.30) Open fracture of unspecified part of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of shaft or unspecified part of humerus, open (812.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of shaft or unspecified part of humerus, open (812.3)\(812.30) Open fracture of unspecified part of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.30''', NULL, + '(812.30) Open fracture of unspecified part of humerus', '(812.30) Open fracture of unspecified part of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of shaft or unspecified part of humerus, open (812.3)\(812.31) Open fracture of shaft of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of shaft or unspecified part of humerus, open (812.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of shaft or unspecified part of humerus, open (812.3)\(812.31) Open fracture of shaft of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.31''', NULL, + '(812.31) Open fracture of shaft of humerus', '(812.31) Open fracture of shaft of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.0''', NULL, + 'Fracture of upper end of humerus, closed (812.0)', 'Fracture of upper end of humerus, closed (812.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\(812.00) Closed fracture of unspecified part of upper end of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\(812.00) Closed fracture of unspecified part of upper end of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.00''', NULL, + '(812.00) Closed fracture of unspecified part of upper end of humerus', '(812.00) Closed fracture of unspecified part of upper end of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\(812.01) Closed fracture of surgical neck of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\(812.01) Closed fracture of surgical neck of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.01''', NULL, + '(812.01) Closed fracture of surgical neck of humerus', '(812.01) Closed fracture of surgical neck of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\(812.02) Closed fracture of anatomical neck of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\(812.02) Closed fracture of anatomical neck of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.02''', NULL, + '(812.02) Closed fracture of anatomical neck of humerus', '(812.02) Closed fracture of anatomical neck of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\(812.03) Closed fracture of greater tuberosity of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\(812.03) Closed fracture of greater tuberosity of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.03''', NULL, + '(812.03) Closed fracture of greater tuberosity of humerus', '(812.03) Closed fracture of greater tuberosity of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\(812.09) Other closed fracture of upper end of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, closed (812.0)\(812.09) Other closed fracture of upper end of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.09''', NULL, + '(812.09) Other closed fracture of upper end of humerus', '(812.09) Other closed fracture of upper end of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.1''', NULL, + 'Fracture of upper end of humerus, open (812.1)', 'Fracture of upper end of humerus, open (812.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\(812.10) Open fracture of unspecified part of upper end of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\(812.10) Open fracture of unspecified part of upper end of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.10''', NULL, + '(812.10) Open fracture of unspecified part of upper end of humerus', '(812.10) Open fracture of unspecified part of upper end of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\(812.11) Open fracture of surgical neck of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\(812.11) Open fracture of surgical neck of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.11''', NULL, + '(812.11) Open fracture of surgical neck of humerus', '(812.11) Open fracture of surgical neck of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\(812.12) Open fracture of anatomical neck of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\(812.12) Open fracture of anatomical neck of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.12''', NULL, + '(812.12) Open fracture of anatomical neck of humerus', '(812.12) Open fracture of anatomical neck of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\(812.13) Open fracture of greater tuberosity of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\(812.13) Open fracture of greater tuberosity of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.13''', NULL, + '(812.13) Open fracture of greater tuberosity of humerus', '(812.13) Open fracture of greater tuberosity of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\(812.19) Other open fracture of upper end of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of humerus (812)\Fracture of upper end of humerus, open (812.1)\(812.19) Other open fracture of upper end of humerus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''812.19''', NULL, + '(812.19) Other open fracture of upper end of humerus', '(812.19) Other open fracture of upper end of humerus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (815''', NULL, + 'Fracture of metacarpal bone(s) (815)', 'Fracture of metacarpal bone(s) (815)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.0''', NULL, + 'Closed fracture of metacarpal bones (815.0)', 'Closed fracture of metacarpal bones (815.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.00) Closed fracture of metacarpal bone(s), site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.00) Closed fracture of metacarpal bone(s), site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.00) Closed fracture of metacarpal bone(s''', NULL, + '(815.00) Closed fracture of metacarpal bone(s), site unspecified', '(815.00) Closed fracture of metacarpal bone(s), site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.01) Closed fracture of base of thumb [first] metacarpal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.01) Closed fracture of base of thumb [first] metacarpal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.01''', NULL, + '(815.01) Closed fracture of base of thumb [first] metacarpal', '(815.01) Closed fracture of base of thumb [first] metacarpal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.02) Closed fracture of base of other metacarpal bone(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.02) Closed fracture of base of other metacarpal bone(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.02) Closed fracture of base of other metacarpal bone(s''', NULL, + '(815.02) Closed fracture of base of other metacarpal bone(s)', '(815.02) Closed fracture of base of other metacarpal bone(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.03) Closed fracture of shaft of metacarpal bone(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.03) Closed fracture of shaft of metacarpal bone(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.03) Closed fracture of shaft of metacarpal bone(s''', NULL, + '(815.03) Closed fracture of shaft of metacarpal bone(s)', '(815.03) Closed fracture of shaft of metacarpal bone(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.04) Closed fracture of neck of metacarpal bone(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.04) Closed fracture of neck of metacarpal bone(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.04) Closed fracture of neck of metacarpal bone(s''', NULL, + '(815.04) Closed fracture of neck of metacarpal bone(s)', '(815.04) Closed fracture of neck of metacarpal bone(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.09) Closed fracture of multiple sites of metacarpus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Closed fracture of metacarpal bones (815.0)\(815.09) Closed fracture of multiple sites of metacarpus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.09''', NULL, + '(815.09) Closed fracture of multiple sites of metacarpus', '(815.09) Closed fracture of multiple sites of metacarpus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.1''', NULL, + 'Open fracture of metacarpal bones (815.1)', 'Open fracture of metacarpal bones (815.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.10) Open fracture of metacarpal bone(s), site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.10) Open fracture of metacarpal bone(s), site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.10) Open fracture of metacarpal bone(s''', NULL, + '(815.10) Open fracture of metacarpal bone(s), site unspecified', '(815.10) Open fracture of metacarpal bone(s), site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.11) Open fracture of base of thumb [first] metacarpal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.11) Open fracture of base of thumb [first] metacarpal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.11''', NULL, + '(815.11) Open fracture of base of thumb [first] metacarpal', '(815.11) Open fracture of base of thumb [first] metacarpal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.12) Open fracture of base of other metacarpal bone(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.12) Open fracture of base of other metacarpal bone(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.12) Open fracture of base of other metacarpal bone(s''', NULL, + '(815.12) Open fracture of base of other metacarpal bone(s)', '(815.12) Open fracture of base of other metacarpal bone(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.13) Open fracture of shaft of metacarpal bone(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.13) Open fracture of shaft of metacarpal bone(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.13) Open fracture of shaft of metacarpal bone(s''', NULL, + '(815.13) Open fracture of shaft of metacarpal bone(s)', '(815.13) Open fracture of shaft of metacarpal bone(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.14) Open fracture of neck of metacarpal bone(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.14) Open fracture of neck of metacarpal bone(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.14) Open fracture of neck of metacarpal bone(s''', NULL, + '(815.14) Open fracture of neck of metacarpal bone(s)', '(815.14) Open fracture of neck of metacarpal bone(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.19) Open fracture of multiple sites of metacarpus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of metacarpal bone(s) (815)\Open fracture of metacarpal bones (815.1)\(815.19) Open fracture of multiple sites of metacarpus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''815.19''', NULL, + '(815.19) Open fracture of multiple sites of metacarpus', '(815.19) Open fracture of multiple sites of metacarpus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''816''', NULL, + 'Fracture of one or more phalanges of hand (816)', 'Fracture of one or more phalanges of hand (816)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''816.0''', NULL, + 'Closed fracture of one or more phalanges of hand (816.0)', 'Closed fracture of one or more phalanges of hand (816.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\(816.00) Closed fracture of phalanx or phalanges of hand, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\(816.00) Closed fracture of phalanx or phalanges of hand, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''816.00''', NULL, + '(816.00) Closed fracture of phalanx or phalanges of hand, unspecified', '(816.00) Closed fracture of phalanx or phalanges of hand, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\(816.01) Closed fracture of middle or proximal phalanx or phalanges of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\(816.01) Closed fracture of middle or proximal phalanx or phalanges of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''816.01''', NULL, + '(816.01) Closed fracture of middle or proximal phalanx or phalanges of hand', '(816.01) Closed fracture of middle or proximal phalanx or phalanges of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\(816.02) Closed fracture of distal phalanx or phalanges of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\(816.02) Closed fracture of distal phalanx or phalanges of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''816.02''', NULL, + '(816.02) Closed fracture of distal phalanx or phalanges of hand', '(816.02) Closed fracture of distal phalanx or phalanges of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\(816.03) Closed fracture of multiple sites of phalanx or phalanges of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Closed fracture of one or more phalanges of hand (816.0)\(816.03) Closed fracture of multiple sites of phalanx or phalanges of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''816.03''', NULL, + '(816.03) Closed fracture of multiple sites of phalanx or phalanges of hand', '(816.03) Closed fracture of multiple sites of phalanx or phalanges of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''816.1''', NULL, + 'Open fracture of one or more phalanges of hand (816.1)', 'Open fracture of one or more phalanges of hand (816.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\(816.10) Open fracture of phalanx or phalanges of hand, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\(816.10) Open fracture of phalanx or phalanges of hand, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''816.10''', NULL, + '(816.10) Open fracture of phalanx or phalanges of hand, unspecified', '(816.10) Open fracture of phalanx or phalanges of hand, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\(816.11) Open fracture of middle or proximal phalanx or phalanges of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\(816.11) Open fracture of middle or proximal phalanx or phalanges of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''816.11''', NULL, + '(816.11) Open fracture of middle or proximal phalanx or phalanges of hand', '(816.11) Open fracture of middle or proximal phalanx or phalanges of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\(816.12) Open fracture of distal phalanx or phalanges of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\(816.12) Open fracture of distal phalanx or phalanges of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''816.12''', NULL, + '(816.12) Open fracture of distal phalanx or phalanges of hand', '(816.12) Open fracture of distal phalanx or phalanges of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\(816.13) Open fracture of multiple sites of phalanx or phalanges of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of one or more phalanges of hand (816)\Open fracture of one or more phalanges of hand (816.1)\(816.13) Open fracture of multiple sites of phalanx or phalanges of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''816.13''', NULL, + '(816.13) Open fracture of multiple sites of phalanx or phalanges of hand', '(816.13) Open fracture of multiple sites of phalanx or phalanges of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813''', NULL, + 'Fracture of radius and ulna (813)', 'Fracture of radius and ulna (813)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.4''', NULL, + 'Fracture of lower end of radius and ulna, closed (813.4)', 'Fracture of lower end of radius and ulna, closed (813.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.40) Closed fracture of lower end of forearm, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.40) Closed fracture of lower end of forearm, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.40''', NULL, + '(813.40) Closed fracture of lower end of forearm, unspecified', '(813.40) Closed fracture of lower end of forearm, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.41) Closed Colles'' fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.41) Closed Colles'' fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.41''', NULL, + '(813.41) Closed Colles'' fracture', '(813.41) Closed Colles'' fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.42) Other closed fractures of distal end of radius (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.42) Other closed fractures of distal end of radius (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.42) Other closed fractures of distal end of radius (alone''', NULL, + '(813.42) Other closed fractures of distal end of radius (alone)', '(813.42) Other closed fractures of distal end of radius (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.43) Closed fracture of distal end of ulna (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.43) Closed fracture of distal end of ulna (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.43) Closed fracture of distal end of ulna (alone''', NULL, + '(813.43) Closed fracture of distal end of ulna (alone)', '(813.43) Closed fracture of distal end of ulna (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.44) Closed fracture of lower end of radius with ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.44) Closed fracture of lower end of radius with ulna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.44''', NULL, + '(813.44) Closed fracture of lower end of radius with ulna', '(813.44) Closed fracture of lower end of radius with ulna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.45) Torus fracture of radius (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, closed (813.4)\(813.45) Torus fracture of radius (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.45) Torus fracture of radius (alone''', NULL, + '(813.45) Torus fracture of radius (alone)', '(813.45) Torus fracture of radius (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.5''', NULL, + 'Fracture of lower end of radius and ulna, open (813.5)', 'Fracture of lower end of radius and ulna, open (813.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\(813.50) Open fracture of lower end of forearm, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\(813.50) Open fracture of lower end of forearm, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.50''', NULL, + '(813.50) Open fracture of lower end of forearm, unspecified', '(813.50) Open fracture of lower end of forearm, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\(813.51) Open Colles'' fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\(813.51) Open Colles'' fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.51''', NULL, + '(813.51) Open Colles'' fracture', '(813.51) Open Colles'' fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\(813.52) Other open fractures of distal end of radius (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\(813.52) Other open fractures of distal end of radius (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.52) Other open fractures of distal end of radius (alone''', NULL, + '(813.52) Other open fractures of distal end of radius (alone)', '(813.52) Other open fractures of distal end of radius (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\(813.53) Open fracture of distal end of ulna (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\(813.53) Open fracture of distal end of ulna (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.53) Open fracture of distal end of ulna (alone''', NULL, + '(813.53) Open fracture of distal end of ulna (alone)', '(813.53) Open fracture of distal end of ulna (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\(813.54) Open fracture of lower end of radius with ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of lower end of radius and ulna, open (813.5)\(813.54) Open fracture of lower end of radius with ulna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.54''', NULL, + '(813.54) Open fracture of lower end of radius with ulna', '(813.54) Open fracture of lower end of radius with ulna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.2''', NULL, + 'Fracture of shaft of radius and ulna, closed (813.2)', 'Fracture of shaft of radius and ulna, closed (813.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\(813.20) Closed fracture of shaft of radius or ulna, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\(813.20) Closed fracture of shaft of radius or ulna, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.20''', NULL, + '(813.20) Closed fracture of shaft of radius or ulna, unspecified', '(813.20) Closed fracture of shaft of radius or ulna, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\(813.21) Closed fracture of shaft of radius (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\(813.21) Closed fracture of shaft of radius (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.21) Closed fracture of shaft of radius (alone''', NULL, + '(813.21) Closed fracture of shaft of radius (alone)', '(813.21) Closed fracture of shaft of radius (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\(813.22) Closed fracture of shaft of ulna (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\(813.22) Closed fracture of shaft of ulna (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.22) Closed fracture of shaft of ulna (alone''', NULL, + '(813.22) Closed fracture of shaft of ulna (alone)', '(813.22) Closed fracture of shaft of ulna (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\(813.23) Closed fracture of shaft of radius with ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, closed (813.2)\(813.23) Closed fracture of shaft of radius with ulna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.23''', NULL, + '(813.23) Closed fracture of shaft of radius with ulna', '(813.23) Closed fracture of shaft of radius with ulna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.3''', NULL, + 'Fracture of shaft of radius and ulna, open (813.3)', 'Fracture of shaft of radius and ulna, open (813.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\(813.30) Open fracture of shaft of radius or ulna, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\(813.30) Open fracture of shaft of radius or ulna, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.30''', NULL, + '(813.30) Open fracture of shaft of radius or ulna, unspecified', '(813.30) Open fracture of shaft of radius or ulna, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\(813.31) Open fracture of shaft of radius (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\(813.31) Open fracture of shaft of radius (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.31) Open fracture of shaft of radius (alone''', NULL, + '(813.31) Open fracture of shaft of radius (alone)', '(813.31) Open fracture of shaft of radius (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\(813.32) Open fracture of shaft of ulna (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\(813.32) Open fracture of shaft of ulna (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.32) Open fracture of shaft of ulna (alone''', NULL, + '(813.32) Open fracture of shaft of ulna (alone)', '(813.32) Open fracture of shaft of ulna (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\(813.33) Open fracture of shaft of radius with ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of shaft of radius and ulna, open (813.3)\(813.33) Open fracture of shaft of radius with ulna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.33''', NULL, + '(813.33) Open fracture of shaft of radius with ulna', '(813.33) Open fracture of shaft of radius with ulna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.8''', NULL, + 'Fracture of unspecified part of radius with ulna, closed (813.8)', 'Fracture of unspecified part of radius with ulna, closed (813.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\(813.80) Closed fracture of unspecified part of forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\(813.80) Closed fracture of unspecified part of forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.80''', NULL, + '(813.80) Closed fracture of unspecified part of forearm', '(813.80) Closed fracture of unspecified part of forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\(813.81) Closed fracture of unspecified part of radius (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\(813.81) Closed fracture of unspecified part of radius (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.81) Closed fracture of unspecified part of radius (alone''', NULL, + '(813.81) Closed fracture of unspecified part of radius (alone)', '(813.81) Closed fracture of unspecified part of radius (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\(813.82) Closed fracture of unspecified part of ulna (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\(813.82) Closed fracture of unspecified part of ulna (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.82) Closed fracture of unspecified part of ulna (alone''', NULL, + '(813.82) Closed fracture of unspecified part of ulna (alone)', '(813.82) Closed fracture of unspecified part of ulna (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\(813.83) Closed fracture of unspecified part of radius with ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, closed (813.8)\(813.83) Closed fracture of unspecified part of radius with ulna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.83''', NULL, + '(813.83) Closed fracture of unspecified part of radius with ulna', '(813.83) Closed fracture of unspecified part of radius with ulna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.9''', NULL, + 'Fracture of unspecified part of radius with ulna, open (813.9)', 'Fracture of unspecified part of radius with ulna, open (813.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\(813.90) Open fracture of unspecified part of forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\(813.90) Open fracture of unspecified part of forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.90''', NULL, + '(813.90) Open fracture of unspecified part of forearm', '(813.90) Open fracture of unspecified part of forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\(813.91) Open fracture of unspecified part of radius (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\(813.91) Open fracture of unspecified part of radius (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.91) Open fracture of unspecified part of radius (alone''', NULL, + '(813.91) Open fracture of unspecified part of radius (alone)', '(813.91) Open fracture of unspecified part of radius (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\(813.92) Open fracture of unspecified part of ulna (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\(813.92) Open fracture of unspecified part of ulna (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.92) Open fracture of unspecified part of ulna (alone''', NULL, + '(813.92) Open fracture of unspecified part of ulna (alone)', '(813.92) Open fracture of unspecified part of ulna (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\(813.93) Open fracture of unspecified part of radius with ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of unspecified part of radius with ulna, open (813.9)\(813.93) Open fracture of unspecified part of radius with ulna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.93''', NULL, + '(813.93) Open fracture of unspecified part of radius with ulna', '(813.93) Open fracture of unspecified part of radius with ulna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.0''', NULL, + 'Fracture of upper end of radius and ulna, closed (813.0)', 'Fracture of upper end of radius and ulna, closed (813.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.00) Closed fracture of upper end of forearm, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.00) Closed fracture of upper end of forearm, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.00''', NULL, + '(813.00) Closed fracture of upper end of forearm, unspecified', '(813.00) Closed fracture of upper end of forearm, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.01) Closed fracture of olecranon process of ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.01) Closed fracture of olecranon process of ulna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.01''', NULL, + '(813.01) Closed fracture of olecranon process of ulna', '(813.01) Closed fracture of olecranon process of ulna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.02) Closed fracture of coronoid process of ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.02) Closed fracture of coronoid process of ulna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.02''', NULL, + '(813.02) Closed fracture of coronoid process of ulna', '(813.02) Closed fracture of coronoid process of ulna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.03) Closed Monteggia''s fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.03) Closed Monteggia''s fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.03''', NULL, + '(813.03) Closed Monteggia''s fracture', '(813.03) Closed Monteggia''s fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.04) Other and unspecified closed fractures of proximal end of ulna (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.04) Other and unspecified closed fractures of proximal end of ulna (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.04) Other and unspecified closed fractures of proximal end of ulna (alone''', NULL, + '(813.04) Other and unspecified closed fractures of proximal end of ulna (alone)', '(813.04) Other and unspecified closed fractures of proximal end of ulna (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.05) Closed fracture of head of radius\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.05) Closed fracture of head of radius\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.05''', NULL, + '(813.05) Closed fracture of head of radius', '(813.05) Closed fracture of head of radius', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.06) Closed fracture of neck of radius\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.06) Closed fracture of neck of radius\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.06''', NULL, + '(813.06) Closed fracture of neck of radius', '(813.06) Closed fracture of neck of radius', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.07) Other and unspecified closed fractures of proximal end of radius (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.07) Other and unspecified closed fractures of proximal end of radius (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.07) Other and unspecified closed fractures of proximal end of radius (alone''', NULL, + '(813.07) Other and unspecified closed fractures of proximal end of radius (alone)', '(813.07) Other and unspecified closed fractures of proximal end of radius (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.08) Closed fracture of radius with ulna, upper end [any part]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, closed (813.0)\(813.08) Closed fracture of radius with ulna, upper end [any part]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.08''', NULL, + '(813.08) Closed fracture of radius with ulna, upper end [any part]', '(813.08) Closed fracture of radius with ulna, upper end [any part]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.1''', NULL, + 'Fracture of upper end of radius and ulna, open (813.1)', 'Fracture of upper end of radius and ulna, open (813.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.10) Open fracture of upper end of forearm, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.10) Open fracture of upper end of forearm, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.10''', NULL, + '(813.10) Open fracture of upper end of forearm, unspecified', '(813.10) Open fracture of upper end of forearm, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.11) Open fracture of olecranon process of ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.11) Open fracture of olecranon process of ulna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.11''', NULL, + '(813.11) Open fracture of olecranon process of ulna', '(813.11) Open fracture of olecranon process of ulna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.12) Open fracture of coronoid process of ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.12) Open fracture of coronoid process of ulna\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.12''', NULL, + '(813.12) Open fracture of coronoid process of ulna', '(813.12) Open fracture of coronoid process of ulna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.13) Open Monteggia''s fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.13) Open Monteggia''s fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.13''', NULL, + '(813.13) Open Monteggia''s fracture', '(813.13) Open Monteggia''s fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.14) Other and unspecified open fractures of proximal end of ulna (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.14) Other and unspecified open fractures of proximal end of ulna (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.14) Other and unspecified open fractures of proximal end of ulna (alone''', NULL, + '(813.14) Other and unspecified open fractures of proximal end of ulna (alone)', '(813.14) Other and unspecified open fractures of proximal end of ulna (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.15) Open fracture of head of radius\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.15) Open fracture of head of radius\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.15''', NULL, + '(813.15) Open fracture of head of radius', '(813.15) Open fracture of head of radius', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.16) Open fracture of neck of radius\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.16) Open fracture of neck of radius\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.16''', NULL, + '(813.16) Open fracture of neck of radius', '(813.16) Open fracture of neck of radius', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.17) Other and unspecified open fractures of proximal end of radius (alone)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.17) Other and unspecified open fractures of proximal end of radius (alone)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.17) Other and unspecified open fractures of proximal end of radius (alone''', NULL, + '(813.17) Other and unspecified open fractures of proximal end of radius (alone)', '(813.17) Other and unspecified open fractures of proximal end of radius (alone)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.18) Open fracture of radius with ulna, upper end (any part)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of radius and ulna (813)\Fracture of upper end of radius and ulna, open (813.1)\(813.18) Open fracture of radius with ulna, upper end (any part)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''813.18) Open fracture of radius with ulna, upper end (any part''', NULL, + '(813.18) Open fracture of radius with ulna, upper end (any part)', '(813.18) Open fracture of radius with ulna, upper end (any part)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811''', NULL, + 'Fracture of scapula (811)', 'Fracture of scapula (811)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.0''', NULL, + 'Closed fracture of scapula (811.0)', 'Closed fracture of scapula (811.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\(811.00) Closed fracture of scapula, unspecified part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\(811.00) Closed fracture of scapula, unspecified part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.00''', NULL, + '(811.00) Closed fracture of scapula, unspecified part', '(811.00) Closed fracture of scapula, unspecified part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\(811.01) Closed fracture of acromial process of scapula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\(811.01) Closed fracture of acromial process of scapula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.01''', NULL, + '(811.01) Closed fracture of acromial process of scapula', '(811.01) Closed fracture of acromial process of scapula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\(811.02) Closed fracture of coracoid process of scapula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\(811.02) Closed fracture of coracoid process of scapula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.02''', NULL, + '(811.02) Closed fracture of coracoid process of scapula', '(811.02) Closed fracture of coracoid process of scapula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\(811.03) Closed fracture of glenoid cavity and neck of scapula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\(811.03) Closed fracture of glenoid cavity and neck of scapula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.03''', NULL, + '(811.03) Closed fracture of glenoid cavity and neck of scapula', '(811.03) Closed fracture of glenoid cavity and neck of scapula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\(811.09) Closed fracture of scapula, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Closed fracture of scapula (811.0)\(811.09) Closed fracture of scapula, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.09''', NULL, + '(811.09) Closed fracture of scapula, other', '(811.09) Closed fracture of scapula, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.1''', NULL, + 'Open fracture of scapula (811.1)', 'Open fracture of scapula (811.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\(811.10) Open fracture of scapula, unspecified part\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\(811.10) Open fracture of scapula, unspecified part\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.10''', NULL, + '(811.10) Open fracture of scapula, unspecified part', '(811.10) Open fracture of scapula, unspecified part', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\(811.11) Open fracture of acromial process of scapula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\(811.11) Open fracture of acromial process of scapula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.11''', NULL, + '(811.11) Open fracture of acromial process of scapula', '(811.11) Open fracture of acromial process of scapula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\(811.12) Open fracture of coracoid process\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\(811.12) Open fracture of coracoid process\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.12''', NULL, + '(811.12) Open fracture of coracoid process', '(811.12) Open fracture of coracoid process', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\(811.13) Open fracture of glenoid cavity and neck of scapula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\(811.13) Open fracture of glenoid cavity and neck of scapula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.13''', NULL, + '(811.13) Open fracture of glenoid cavity and neck of scapula', '(811.13) Open fracture of glenoid cavity and neck of scapula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\(811.19) Open fracture of scapula, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Fracture of scapula (811)\Open fracture of scapula (811.1)\(811.19) Open fracture of scapula, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''811.19''', NULL, + '(811.19) Open fracture of scapula, other', '(811.19) Open fracture of scapula, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Ill-defined fractures of upper limb (818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Ill-defined fractures of upper limb (818)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''818''', NULL, + 'Ill-defined fractures of upper limb (818)', 'Ill-defined fractures of upper limb (818)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Ill-defined fractures of upper limb (818)\(818.0) Ill-defined closed fractures of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Ill-defined fractures of upper limb (818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Ill-defined fractures of upper limb (818)\(818.0) Ill-defined closed fractures of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''818.0''', NULL, + '(818.0) Ill-defined closed fractures of upper limb', '(818.0) Ill-defined closed fractures of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Ill-defined fractures of upper limb (818)\(818.1) Ill-defined open fractures of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Ill-defined fractures of upper limb (818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Ill-defined fractures of upper limb (818)\(818.1) Ill-defined open fractures of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''818.1''', NULL, + '(818.1) Ill-defined open fractures of upper limb', '(818.1) Ill-defined open fractures of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) and sternum (819''', NULL, + 'Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)', 'Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\(819.0) Multiple closed fractures involving both upper limbs, and upper limb with rib(s) and sternum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\(819.0) Multiple closed fractures involving both upper limbs, and upper limb with rib(s) and sternum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''819.0) Multiple closed fractures involving both upper limbs, and upper limb with rib(s''', NULL, + '(819.0) Multiple closed fractures involving both upper limbs, and upper limb with rib(s) and sternum', '(819.0) Multiple closed fractures involving both upper limbs, and upper limb with rib(s) and sternum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\(819.1) Multiple open fractures involving both upper limbs, and upper limb with rib(s) and sternum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\(819.1) Multiple open fractures involving both upper limbs, and upper limb with rib(s) and sternum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''819.1) Multiple open fractures involving both upper limbs, and upper limb with rib(s''', NULL, + '(819.1) Multiple open fractures involving both upper limbs, and upper limb with rib(s) and sternum', '(819.1) Multiple open fractures involving both upper limbs, and upper limb with rib(s) and sternum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures of hand bones (817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures of hand bones (817)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''817''', NULL, + 'Multiple fractures of hand bones (817)', 'Multiple fractures of hand bones (817)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures of hand bones (817)\(817.0) Multiple closed fractures of hand bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures of hand bones (817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures of hand bones (817)\(817.0) Multiple closed fractures of hand bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''817.0''', NULL, + '(817.0) Multiple closed fractures of hand bones', '(817.0) Multiple closed fractures of hand bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures of hand bones (817)\(817.1) Multiple open fractures of hand bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures of hand bones (817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Fractures (800-829.99)\FRACTURE OF UPPER LIMB (810-819.99)\Multiple fractures of hand bones (817)\(817.1) Multiple open fractures of hand bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''817.1''', NULL, + '(817.1) Multiple open fractures of hand bones', '(817.1) Multiple open fractures of hand bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''900'' AND ''904.99''', NULL, + 'Injury to blood vessels (900-904.99)', 'Injury to blood vessels (900-904.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902''', NULL, + 'Injury to blood vessels of abdomen and pelvis (902)', 'Injury to blood vessels of abdomen and pelvis (902)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\(902.0) Injury to abdominal aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\(902.0) Injury to abdominal aorta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.0''', NULL, + '(902.0) Injury to abdominal aorta', '(902.0) Injury to abdominal aorta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\(902.9) Injury to unspecified blood vessel of abdomen and pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\(902.9) Injury to unspecified blood vessel of abdomen and pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.9''', NULL, + '(902.9) Injury to unspecified blood vessel of abdomen and pelvis', '(902.9) Injury to unspecified blood vessel of abdomen and pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.2''', NULL, + 'Injury to celiac and mesenteric arteries (902.2)', 'Injury to celiac and mesenteric arteries (902.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.20) Injury to celiac and mesenteric arteries, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.20) Injury to celiac and mesenteric arteries, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.20''', NULL, + '(902.20) Injury to celiac and mesenteric arteries, unspecified', '(902.20) Injury to celiac and mesenteric arteries, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.21) Injury to gastric artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.21) Injury to gastric artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.21''', NULL, + '(902.21) Injury to gastric artery', '(902.21) Injury to gastric artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.22) Injury to hepatic artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.22) Injury to hepatic artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.22''', NULL, + '(902.22) Injury to hepatic artery', '(902.22) Injury to hepatic artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.23) Injury to splenic artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.23) Injury to splenic artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.23''', NULL, + '(902.23) Injury to splenic artery', '(902.23) Injury to splenic artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.24) Injury to other specified branches of celiac axis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.24) Injury to other specified branches of celiac axis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.24''', NULL, + '(902.24) Injury to other specified branches of celiac axis', '(902.24) Injury to other specified branches of celiac axis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.25) Injury to superior mesenteric artery (trunk)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.25) Injury to superior mesenteric artery (trunk)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.25) Injury to superior mesenteric artery (trunk''', NULL, + '(902.25) Injury to superior mesenteric artery (trunk)', '(902.25) Injury to superior mesenteric artery (trunk)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.26) Injury to primary branches of superior mesenteric artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.26) Injury to primary branches of superior mesenteric artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.26''', NULL, + '(902.26) Injury to primary branches of superior mesenteric artery', '(902.26) Injury to primary branches of superior mesenteric artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.27) Injury to inferior mesenteric artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.27) Injury to inferior mesenteric artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.27''', NULL, + '(902.27) Injury to inferior mesenteric artery', '(902.27) Injury to inferior mesenteric artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.29) Injury to celiac and mesenteric arteries, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to celiac and mesenteric arteries (902.2)\(902.29) Injury to celiac and mesenteric arteries, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.29''', NULL, + '(902.29) Injury to celiac and mesenteric arteries, other', '(902.29) Injury to celiac and mesenteric arteries, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.5''', NULL, + 'Injury to iliac blood vessels (902.5)', 'Injury to iliac blood vessels (902.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.50) Injury to iliac vessel(s), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.50) Injury to iliac vessel(s), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.50) Injury to iliac vessel(s''', NULL, + '(902.50) Injury to iliac vessel(s), unspecified', '(902.50) Injury to iliac vessel(s), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.51) Injury to hypogastric artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.51) Injury to hypogastric artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.51''', NULL, + '(902.51) Injury to hypogastric artery', '(902.51) Injury to hypogastric artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.52) Injury to hypogastric vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.52) Injury to hypogastric vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.52''', NULL, + '(902.52) Injury to hypogastric vein', '(902.52) Injury to hypogastric vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.53) Injury to iliac artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.53) Injury to iliac artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.53''', NULL, + '(902.53) Injury to iliac artery', '(902.53) Injury to iliac artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.54) Injury to iliac vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.54) Injury to iliac vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.54''', NULL, + '(902.54) Injury to iliac vein', '(902.54) Injury to iliac vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.55) Injury to uterine artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.55) Injury to uterine artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.55''', NULL, + '(902.55) Injury to uterine artery', '(902.55) Injury to uterine artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.56) Injury to uterine vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.56) Injury to uterine vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.56''', NULL, + '(902.56) Injury to uterine vein', '(902.56) Injury to uterine vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.59) Injury to iliac blood vessels, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to iliac blood vessels (902.5)\(902.59) Injury to iliac blood vessels, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.59''', NULL, + '(902.59) Injury to iliac blood vessels, other', '(902.59) Injury to iliac blood vessels, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to inferior vena cava (902.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to inferior vena cava (902.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.1''', NULL, + 'Injury to inferior vena cava (902.1)', 'Injury to inferior vena cava (902.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to inferior vena cava (902.1)\(902.10) Injury to inferior vena cava, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to inferior vena cava (902.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to inferior vena cava (902.1)\(902.10) Injury to inferior vena cava, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.10''', NULL, + '(902.10) Injury to inferior vena cava, unspecified', '(902.10) Injury to inferior vena cava, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to inferior vena cava (902.1)\(902.11) Injury to hepatic veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to inferior vena cava (902.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to inferior vena cava (902.1)\(902.11) Injury to hepatic veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.11''', NULL, + '(902.11) Injury to hepatic veins', '(902.11) Injury to hepatic veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to inferior vena cava (902.1)\(902.19) Injury to inferior vena cava, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to inferior vena cava (902.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to inferior vena cava (902.1)\(902.19) Injury to inferior vena cava, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.19''', NULL, + '(902.19) Injury to inferior vena cava, other', '(902.19) Injury to inferior vena cava, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.8''', NULL, + 'Injury to other specified blood vessels of abdomen and pelvis (902.8)', 'Injury to other specified blood vessels of abdomen and pelvis (902.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\(902.81) Injury to ovarian artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\(902.81) Injury to ovarian artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.81''', NULL, + '(902.81) Injury to ovarian artery', '(902.81) Injury to ovarian artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\(902.82) Injury to ovarian vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\(902.82) Injury to ovarian vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.82''', NULL, + '(902.82) Injury to ovarian vein', '(902.82) Injury to ovarian vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\(902.87) Injury to multiple blood vessels of abdomen and pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\(902.87) Injury to multiple blood vessels of abdomen and pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.87''', NULL, + '(902.87) Injury to multiple blood vessels of abdomen and pelvis', '(902.87) Injury to multiple blood vessels of abdomen and pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\(902.89) Injury to other specified blood vessels of abdomen and pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to other specified blood vessels of abdomen and pelvis (902.8)\(902.89) Injury to other specified blood vessels of abdomen and pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.89''', NULL, + '(902.89) Injury to other specified blood vessels of abdomen and pelvis', '(902.89) Injury to other specified blood vessels of abdomen and pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.3''', NULL, + 'Injury to portal and splenic veins (902.3)', 'Injury to portal and splenic veins (902.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\(902.31) Injury to superior mesenteric vein and primary subdivisions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\(902.31) Injury to superior mesenteric vein and primary subdivisions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.31''', NULL, + '(902.31) Injury to superior mesenteric vein and primary subdivisions', '(902.31) Injury to superior mesenteric vein and primary subdivisions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\(902.32) Injury to inferior mesenteric vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\(902.32) Injury to inferior mesenteric vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.32''', NULL, + '(902.32) Injury to inferior mesenteric vein', '(902.32) Injury to inferior mesenteric vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\(902.33) Injury to portal vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\(902.33) Injury to portal vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.33''', NULL, + '(902.33) Injury to portal vein', '(902.33) Injury to portal vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\(902.34) Injury to splenic vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\(902.34) Injury to splenic vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.34''', NULL, + '(902.34) Injury to splenic vein', '(902.34) Injury to splenic vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\(902.39) Injury to portal and splenic veins, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to portal and splenic veins (902.3)\(902.39) Injury to portal and splenic veins, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.39''', NULL, + '(902.39) Injury to portal and splenic veins, other', '(902.39) Injury to portal and splenic veins, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.4''', NULL, + 'Injury to renal blood vessels (902.4)', 'Injury to renal blood vessels (902.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\(902.40) Injury to renal vessel(s), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\(902.40) Injury to renal vessel(s), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.40) Injury to renal vessel(s''', NULL, + '(902.40) Injury to renal vessel(s), unspecified', '(902.40) Injury to renal vessel(s), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\(902.41) Injury to renal artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\(902.41) Injury to renal artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.41''', NULL, + '(902.41) Injury to renal artery', '(902.41) Injury to renal artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\(902.42) Injury to renal vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\(902.42) Injury to renal vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.42''', NULL, + '(902.42) Injury to renal vein', '(902.42) Injury to renal vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\(902.49) Injury to renal blood vessels, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of abdomen and pelvis (902)\Injury to renal blood vessels (902.4)\(902.49) Injury to renal blood vessels, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''902.49''', NULL, + '(902.49) Injury to renal blood vessels, other', '(902.49) Injury to renal blood vessels, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900''', NULL, + 'Injury to blood vessels of head and neck (900)', 'Injury to blood vessels of head and neck (900)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\(900.1) Injury to internal jugular vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\(900.1) Injury to internal jugular vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900.1''', NULL, + '(900.1) Injury to internal jugular vein', '(900.1) Injury to internal jugular vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\(900.9) Injury to unspecified blood vessel of head and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\(900.9) Injury to unspecified blood vessel of head and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900.9''', NULL, + '(900.9) Injury to unspecified blood vessel of head and neck', '(900.9) Injury to unspecified blood vessel of head and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900.0''', NULL, + 'Injury to carotid artery (900.0)', 'Injury to carotid artery (900.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\(900.00) Injury to carotid artery, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\(900.00) Injury to carotid artery, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900.00''', NULL, + '(900.00) Injury to carotid artery, unspecified', '(900.00) Injury to carotid artery, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\(900.01) Injury to common carotid artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\(900.01) Injury to common carotid artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900.01''', NULL, + '(900.01) Injury to common carotid artery', '(900.01) Injury to common carotid artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\(900.02) Injury to external carotid artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\(900.02) Injury to external carotid artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900.02''', NULL, + '(900.02) Injury to external carotid artery', '(900.02) Injury to external carotid artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\(900.03) Injury to internal carotid artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to carotid artery (900.0)\(900.03) Injury to internal carotid artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900.03''', NULL, + '(900.03) Injury to internal carotid artery', '(900.03) Injury to internal carotid artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to other specified blood vessels of head and neck (900.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to other specified blood vessels of head and neck (900.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900.8''', NULL, + 'Injury to other specified blood vessels of head and neck (900.8)', 'Injury to other specified blood vessels of head and neck (900.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to other specified blood vessels of head and neck (900.8)\(900.81) Injury to external jugular vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to other specified blood vessels of head and neck (900.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to other specified blood vessels of head and neck (900.8)\(900.81) Injury to external jugular vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900.81''', NULL, + '(900.81) Injury to external jugular vein', '(900.81) Injury to external jugular vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to other specified blood vessels of head and neck (900.8)\(900.82) Injury to multiple blood vessels of head and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to other specified blood vessels of head and neck (900.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to other specified blood vessels of head and neck (900.8)\(900.82) Injury to multiple blood vessels of head and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900.82''', NULL, + '(900.82) Injury to multiple blood vessels of head and neck', '(900.82) Injury to multiple blood vessels of head and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to other specified blood vessels of head and neck (900.8)\(900.89) Injury to other specified blood vessels of head and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to other specified blood vessels of head and neck (900.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of head and neck (900)\Injury to other specified blood vessels of head and neck (900.8)\(900.89) Injury to other specified blood vessels of head and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''900.89''', NULL, + '(900.89) Injury to other specified blood vessels of head and neck', '(900.89) Injury to other specified blood vessels of head and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904''', NULL, + 'Injury to blood vessels of lower extremity and unspecified sites (904)', 'Injury to blood vessels of lower extremity and unspecified sites (904)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.0) Injury to common femoral artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.0) Injury to common femoral artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.0''', NULL, + '(904.0) Injury to common femoral artery', '(904.0) Injury to common femoral artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.1) Injury to superficial femoral artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.1) Injury to superficial femoral artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.1''', NULL, + '(904.1) Injury to superficial femoral artery', '(904.1) Injury to superficial femoral artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.2) Injury to femoral veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.2) Injury to femoral veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.2''', NULL, + '(904.2) Injury to femoral veins', '(904.2) Injury to femoral veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.3) Injury to saphenous veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.3) Injury to saphenous veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.3''', NULL, + '(904.3) Injury to saphenous veins', '(904.3) Injury to saphenous veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.6) Injury to deep plantar blood vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.6) Injury to deep plantar blood vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.6''', NULL, + '(904.6) Injury to deep plantar blood vessels', '(904.6) Injury to deep plantar blood vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.7) Injury to other specified blood vessels of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.7) Injury to other specified blood vessels of lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.7''', NULL, + '(904.7) Injury to other specified blood vessels of lower extremity', '(904.7) Injury to other specified blood vessels of lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.8) Injury to unspecified blood vessel of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.8) Injury to unspecified blood vessel of lower extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.8''', NULL, + '(904.8) Injury to unspecified blood vessel of lower extremity', '(904.8) Injury to unspecified blood vessel of lower extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.9) Injury to blood vessels of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\(904.9) Injury to blood vessels of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.9''', NULL, + '(904.9) Injury to blood vessels of unspecified site', '(904.9) Injury to blood vessels of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to popliteal blood vessels (904.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to popliteal blood vessels (904.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.4''', NULL, + 'Injury to popliteal blood vessels (904.4)', 'Injury to popliteal blood vessels (904.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to popliteal blood vessels (904.4)\(904.40) Injury to popliteal vessel(s), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to popliteal blood vessels (904.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to popliteal blood vessels (904.4)\(904.40) Injury to popliteal vessel(s), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.40) Injury to popliteal vessel(s''', NULL, + '(904.40) Injury to popliteal vessel(s), unspecified', '(904.40) Injury to popliteal vessel(s), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to popliteal blood vessels (904.4)\(904.41) Injury to popliteal artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to popliteal blood vessels (904.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to popliteal blood vessels (904.4)\(904.41) Injury to popliteal artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.41''', NULL, + '(904.41) Injury to popliteal artery', '(904.41) Injury to popliteal artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to popliteal blood vessels (904.4)\(904.42) Injury to popliteal vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to popliteal blood vessels (904.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to popliteal blood vessels (904.4)\(904.42) Injury to popliteal vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.42''', NULL, + '(904.42) Injury to popliteal vein', '(904.42) Injury to popliteal vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.5''', NULL, + 'Injury to tibial blood vessels (904.5)', 'Injury to tibial blood vessels (904.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\(904.50) Injury to tibial vessel(s), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\(904.50) Injury to tibial vessel(s), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.50) Injury to tibial vessel(s''', NULL, + '(904.50) Injury to tibial vessel(s), unspecified', '(904.50) Injury to tibial vessel(s), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\(904.51) Injury to anterior tibial artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\(904.51) Injury to anterior tibial artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.51''', NULL, + '(904.51) Injury to anterior tibial artery', '(904.51) Injury to anterior tibial artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\(904.52) Injury to anterior tibial vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\(904.52) Injury to anterior tibial vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.52''', NULL, + '(904.52) Injury to anterior tibial vein', '(904.52) Injury to anterior tibial vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\(904.53) Injury to posterior tibial artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\(904.53) Injury to posterior tibial artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.53''', NULL, + '(904.53) Injury to posterior tibial artery', '(904.53) Injury to posterior tibial artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\(904.54) Injury to posterior tibial vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of lower extremity and unspecified sites (904)\Injury to tibial blood vessels (904.5)\(904.54) Injury to posterior tibial vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''904.54''', NULL, + '(904.54) Injury to posterior tibial vein', '(904.54) Injury to posterior tibial vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901''', NULL, + 'Injury to blood vessels of thorax (901)', 'Injury to blood vessels of thorax (901)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\(901.0) Injury to thoracic aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\(901.0) Injury to thoracic aorta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.0''', NULL, + '(901.0) Injury to thoracic aorta', '(901.0) Injury to thoracic aorta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\(901.1) Injury to innominate and subclavian arteries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\(901.1) Injury to innominate and subclavian arteries\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.1''', NULL, + '(901.1) Injury to innominate and subclavian arteries', '(901.1) Injury to innominate and subclavian arteries', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\(901.2) Injury to superior vena cava\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\(901.2) Injury to superior vena cava\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.2''', NULL, + '(901.2) Injury to superior vena cava', '(901.2) Injury to superior vena cava', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\(901.3) Injury to innominate and subclavian veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\(901.3) Injury to innominate and subclavian veins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.3''', NULL, + '(901.3) Injury to innominate and subclavian veins', '(901.3) Injury to innominate and subclavian veins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\(901.9) Injury to unspecified blood vessel of thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\(901.9) Injury to unspecified blood vessel of thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.9''', NULL, + '(901.9) Injury to unspecified blood vessel of thorax', '(901.9) Injury to unspecified blood vessel of thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.8''', NULL, + 'Injury to other specified blood vessels of thorax (901.8)', 'Injury to other specified blood vessels of thorax (901.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\(901.81) Injury to intercostal artery or vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\(901.81) Injury to intercostal artery or vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.81''', NULL, + '(901.81) Injury to intercostal artery or vein', '(901.81) Injury to intercostal artery or vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\(901.82) Injury to internal mammary artery or vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\(901.82) Injury to internal mammary artery or vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.82''', NULL, + '(901.82) Injury to internal mammary artery or vein', '(901.82) Injury to internal mammary artery or vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\(901.83) Injury to multiple blood vessels of thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\(901.83) Injury to multiple blood vessels of thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.83''', NULL, + '(901.83) Injury to multiple blood vessels of thorax', '(901.83) Injury to multiple blood vessels of thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\(901.89) Injury to other specified blood vessels of thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to other specified blood vessels of thorax (901.8)\(901.89) Injury to other specified blood vessels of thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.89''', NULL, + '(901.89) Injury to other specified blood vessels of thorax', '(901.89) Injury to other specified blood vessels of thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to pulmonary blood vessels (901.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to pulmonary blood vessels (901.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.4''', NULL, + 'Injury to pulmonary blood vessels (901.4)', 'Injury to pulmonary blood vessels (901.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to pulmonary blood vessels (901.4)\(901.40) Injury to pulmonary vessel(s), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to pulmonary blood vessels (901.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to pulmonary blood vessels (901.4)\(901.40) Injury to pulmonary vessel(s), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.40) Injury to pulmonary vessel(s''', NULL, + '(901.40) Injury to pulmonary vessel(s), unspecified', '(901.40) Injury to pulmonary vessel(s), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to pulmonary blood vessels (901.4)\(901.41) Injury to pulmonary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to pulmonary blood vessels (901.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to pulmonary blood vessels (901.4)\(901.41) Injury to pulmonary artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.41''', NULL, + '(901.41) Injury to pulmonary artery', '(901.41) Injury to pulmonary artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to pulmonary blood vessels (901.4)\(901.42) Injury to pulmonary vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to pulmonary blood vessels (901.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of thorax (901)\Injury to pulmonary blood vessels (901.4)\(901.42) Injury to pulmonary vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''901.42''', NULL, + '(901.42) Injury to pulmonary vein', '(901.42) Injury to pulmonary vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903''', NULL, + 'Injury to blood vessels of upper extremity (903)', 'Injury to blood vessels of upper extremity (903)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.1) Injury to brachial blood vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.1) Injury to brachial blood vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903.1''', NULL, + '(903.1) Injury to brachial blood vessels', '(903.1) Injury to brachial blood vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.2) Injury to radial blood vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.2) Injury to radial blood vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903.2''', NULL, + '(903.2) Injury to radial blood vessels', '(903.2) Injury to radial blood vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.3) Injury to ulnar blood vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.3) Injury to ulnar blood vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903.3''', NULL, + '(903.3) Injury to ulnar blood vessels', '(903.3) Injury to ulnar blood vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.4) Injury to palmar artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.4) Injury to palmar artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903.4''', NULL, + '(903.4) Injury to palmar artery', '(903.4) Injury to palmar artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.5) Injury to digital blood vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.5) Injury to digital blood vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903.5''', NULL, + '(903.5) Injury to digital blood vessels', '(903.5) Injury to digital blood vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.8) Injury to other specified blood vessels of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.8) Injury to other specified blood vessels of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903.8''', NULL, + '(903.8) Injury to other specified blood vessels of upper extremity', '(903.8) Injury to other specified blood vessels of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.9) Injury to unspecified blood vessel of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\(903.9) Injury to unspecified blood vessel of upper extremity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903.9''', NULL, + '(903.9) Injury to unspecified blood vessel of upper extremity', '(903.9) Injury to unspecified blood vessel of upper extremity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\Injury to axillary blood vessels (903.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\Injury to axillary blood vessels (903.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903.0''', NULL, + 'Injury to axillary blood vessels (903.0)', 'Injury to axillary blood vessels (903.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\Injury to axillary blood vessels (903.0)\(903.00) Injury to axillary vessel(s), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\Injury to axillary blood vessels (903.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\Injury to axillary blood vessels (903.0)\(903.00) Injury to axillary vessel(s), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903.00) Injury to axillary vessel(s''', NULL, + '(903.00) Injury to axillary vessel(s), unspecified', '(903.00) Injury to axillary vessel(s), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\Injury to axillary blood vessels (903.0)\(903.01) Injury to axillary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\Injury to axillary blood vessels (903.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\Injury to axillary blood vessels (903.0)\(903.01) Injury to axillary artery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903.01''', NULL, + '(903.01) Injury to axillary artery', '(903.01) Injury to axillary artery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\Injury to axillary blood vessels (903.0)\(903.02) Injury to axillary vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\Injury to axillary blood vessels (903.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to blood vessels (900-904.99)\Injury to blood vessels of upper extremity (903)\Injury to axillary blood vessels (903.0)\(903.02) Injury to axillary vein\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''903.02''', NULL, + '(903.02) Injury to axillary vein', '(903.02) Injury to axillary vein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''950'' AND ''957.99''', NULL, + 'Injury to nerves and spinal cord (950-957.99)', 'Injury to nerves and spinal cord (950-957.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''953''', NULL, + 'Injury to nerve roots and spinal plexus (953)', 'Injury to nerve roots and spinal plexus (953)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.0) Injury to cervical nerve root\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.0) Injury to cervical nerve root\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''953.0''', NULL, + '(953.0) Injury to cervical nerve root', '(953.0) Injury to cervical nerve root', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.1) Injury to dorsal nerve root\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.1) Injury to dorsal nerve root\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''953.1''', NULL, + '(953.1) Injury to dorsal nerve root', '(953.1) Injury to dorsal nerve root', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.2) Injury to lumbar nerve root\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.2) Injury to lumbar nerve root\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''953.2''', NULL, + '(953.2) Injury to lumbar nerve root', '(953.2) Injury to lumbar nerve root', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.3) Injury to sacral nerve root\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.3) Injury to sacral nerve root\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''953.3''', NULL, + '(953.3) Injury to sacral nerve root', '(953.3) Injury to sacral nerve root', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.4) Injury to brachial plexus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.4) Injury to brachial plexus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''953.4''', NULL, + '(953.4) Injury to brachial plexus', '(953.4) Injury to brachial plexus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.5) Injury to lumbosacral plexus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.5) Injury to lumbosacral plexus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''953.5''', NULL, + '(953.5) Injury to lumbosacral plexus', '(953.5) Injury to lumbosacral plexus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.8) Injury to multiple sites of nerve roots and spinal plexus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.8) Injury to multiple sites of nerve roots and spinal plexus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''953.8''', NULL, + '(953.8) Injury to multiple sites of nerve roots and spinal plexus', '(953.8) Injury to multiple sites of nerve roots and spinal plexus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.9) Injury to unspecified site of nerve roots and spinal plexus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to nerve roots and spinal plexus (953)\(953.9) Injury to unspecified site of nerve roots and spinal plexus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''953.9''', NULL, + '(953.9) Injury to unspecified site of nerve roots and spinal plexus', '(953.9) Injury to unspecified site of nerve roots and spinal plexus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''950''', NULL, + 'Injury to optic nerve and pathways (950)', 'Injury to optic nerve and pathways (950)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\(950.0) Optic nerve injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\(950.0) Optic nerve injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''950.0''', NULL, + '(950.0) Optic nerve injury', '(950.0) Optic nerve injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\(950.1) Injury to optic chiasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\(950.1) Injury to optic chiasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''950.1''', NULL, + '(950.1) Injury to optic chiasm', '(950.1) Injury to optic chiasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\(950.2) Injury to optic pathways\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\(950.2) Injury to optic pathways\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''950.2''', NULL, + '(950.2) Injury to optic pathways', '(950.2) Injury to optic pathways', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\(950.3) Injury to visual cortex\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\(950.3) Injury to visual cortex\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''950.3''', NULL, + '(950.3) Injury to visual cortex', '(950.3) Injury to visual cortex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\(950.9) Injury to unspecified optic nerve and pathways\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to optic nerve and pathways (950)\(950.9) Injury to unspecified optic nerve and pathways\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''950.9''', NULL, + '(950.9) Injury to unspecified optic nerve and pathways', '(950.9) Injury to unspecified optic nerve and pathways', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''957''', NULL, + 'Injury to other and unspecified nerves (957)', 'Injury to other and unspecified nerves (957)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\(957.0) Injury to superficial nerves of head and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\(957.0) Injury to superficial nerves of head and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''957.0''', NULL, + '(957.0) Injury to superficial nerves of head and neck', '(957.0) Injury to superficial nerves of head and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\(957.1) Injury to other specified nerve(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\(957.1) Injury to other specified nerve(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''957.1) Injury to other specified nerve(s''', NULL, + '(957.1) Injury to other specified nerve(s)', '(957.1) Injury to other specified nerve(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\(957.8) Injury to multiple nerves in several parts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\(957.8) Injury to multiple nerves in several parts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''957.8''', NULL, + '(957.8) Injury to multiple nerves in several parts', '(957.8) Injury to multiple nerves in several parts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\(957.9) Injury to nerves, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other and unspecified nerves (957)\(957.9) Injury to nerves, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''957.9''', NULL, + '(957.9) Injury to nerves, unspecified site', '(957.9) Injury to nerves, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (951''', NULL, + 'Injury to other cranial nerve(s) (951)', 'Injury to other cranial nerve(s) (951)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.0) Injury to oculomotor nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.0) Injury to oculomotor nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''951.0''', NULL, + '(951.0) Injury to oculomotor nerve', '(951.0) Injury to oculomotor nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.1) Injury to trochlear nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.1) Injury to trochlear nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''951.1''', NULL, + '(951.1) Injury to trochlear nerve', '(951.1) Injury to trochlear nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.2) Injury to trigeminal nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.2) Injury to trigeminal nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''951.2''', NULL, + '(951.2) Injury to trigeminal nerve', '(951.2) Injury to trigeminal nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.3) Injury to abducens nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.3) Injury to abducens nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''951.3''', NULL, + '(951.3) Injury to abducens nerve', '(951.3) Injury to abducens nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.4) Injury to facial nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.4) Injury to facial nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''951.4''', NULL, + '(951.4) Injury to facial nerve', '(951.4) Injury to facial nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.5) Injury to acoustic nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.5) Injury to acoustic nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''951.5''', NULL, + '(951.5) Injury to acoustic nerve', '(951.5) Injury to acoustic nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.6) Injury to accessory nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.6) Injury to accessory nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''951.6''', NULL, + '(951.6) Injury to accessory nerve', '(951.6) Injury to accessory nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.7) Injury to hypoglossal nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.7) Injury to hypoglossal nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''951.7''', NULL, + '(951.7) Injury to hypoglossal nerve', '(951.7) Injury to hypoglossal nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.8) Injury to other specified cranial nerves\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.8) Injury to other specified cranial nerves\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''951.8''', NULL, + '(951.8) Injury to other specified cranial nerves', '(951.8) Injury to other specified cranial nerves', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.9) Injury to unspecified cranial nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other cranial nerve(s) (951)\(951.9) Injury to unspecified cranial nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''951.9''', NULL, + '(951.9) Injury to unspecified cranial nerve', '(951.9) Injury to unspecified cranial nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) of trunk, excluding shoulder and pelvic girdles (954''', NULL, + 'Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)', 'Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\(954.0) Injury to cervical sympathetic nerve, excluding shoulder and pelvic girdles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\(954.0) Injury to cervical sympathetic nerve, excluding shoulder and pelvic girdles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''954.0''', NULL, + '(954.0) Injury to cervical sympathetic nerve, excluding shoulder and pelvic girdles', '(954.0) Injury to cervical sympathetic nerve, excluding shoulder and pelvic girdles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\(954.1) Injury to other sympathetic nerve, excluding shoulder and pelvic girdles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\(954.1) Injury to other sympathetic nerve, excluding shoulder and pelvic girdles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''954.1''', NULL, + '(954.1) Injury to other sympathetic nerve, excluding shoulder and pelvic girdles', '(954.1) Injury to other sympathetic nerve, excluding shoulder and pelvic girdles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\(954.8) Injury to other specified nerve(s) of trunk, excluding shoulder and pelvic girdles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\(954.8) Injury to other specified nerve(s) of trunk, excluding shoulder and pelvic girdles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''954.8) Injury to other specified nerve(s''', NULL, + '(954.8) Injury to other specified nerve(s) of trunk, excluding shoulder and pelvic girdles', '(954.8) Injury to other specified nerve(s) of trunk, excluding shoulder and pelvic girdles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\(954.9) Injury to unspecified nerve of trunk, excluding shoulder and pelvic girdles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\(954.9) Injury to unspecified nerve of trunk, excluding shoulder and pelvic girdles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''954.9''', NULL, + '(954.9) Injury to unspecified nerve of trunk, excluding shoulder and pelvic girdles', '(954.9) Injury to unspecified nerve of trunk, excluding shoulder and pelvic girdles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) of pelvic girdle and lower limb (956''', NULL, + 'Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)', 'Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.0) Injury to sciatic nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.0) Injury to sciatic nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''956.0''', NULL, + '(956.0) Injury to sciatic nerve', '(956.0) Injury to sciatic nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.1) Injury to femoral nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.1) Injury to femoral nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''956.1''', NULL, + '(956.1) Injury to femoral nerve', '(956.1) Injury to femoral nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.2) Injury to posterior tibial nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.2) Injury to posterior tibial nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''956.2''', NULL, + '(956.2) Injury to posterior tibial nerve', '(956.2) Injury to posterior tibial nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.3) Injury to peroneal nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.3) Injury to peroneal nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''956.3''', NULL, + '(956.3) Injury to peroneal nerve', '(956.3) Injury to peroneal nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.4) Injury to cutaneous sensory nerve, lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.4) Injury to cutaneous sensory nerve, lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''956.4''', NULL, + '(956.4) Injury to cutaneous sensory nerve, lower limb', '(956.4) Injury to cutaneous sensory nerve, lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.5) Injury to other specified nerve(s) of pelvic girdle and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.5) Injury to other specified nerve(s) of pelvic girdle and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''956.5) Injury to other specified nerve(s''', NULL, + '(956.5) Injury to other specified nerve(s) of pelvic girdle and lower limb', '(956.5) Injury to other specified nerve(s) of pelvic girdle and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.8) Injury to multiple nerves of pelvic girdle and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.8) Injury to multiple nerves of pelvic girdle and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''956.8''', NULL, + '(956.8) Injury to multiple nerves of pelvic girdle and lower limb', '(956.8) Injury to multiple nerves of pelvic girdle and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.9) Injury to unspecified nerve of pelvic girdle and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\(956.9) Injury to unspecified nerve of pelvic girdle and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''956.9''', NULL, + '(956.9) Injury to unspecified nerve of pelvic girdle and lower limb', '(956.9) Injury to unspecified nerve of pelvic girdle and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) of shoulder girdle and upper limb (955''', NULL, + 'Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)', 'Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.0) Injury to axillary nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.0) Injury to axillary nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''955.0''', NULL, + '(955.0) Injury to axillary nerve', '(955.0) Injury to axillary nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.1) Injury to median nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.1) Injury to median nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''955.1''', NULL, + '(955.1) Injury to median nerve', '(955.1) Injury to median nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.2) Injury to ulnar nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.2) Injury to ulnar nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''955.2''', NULL, + '(955.2) Injury to ulnar nerve', '(955.2) Injury to ulnar nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.3) Injury to radial nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.3) Injury to radial nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''955.3''', NULL, + '(955.3) Injury to radial nerve', '(955.3) Injury to radial nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.4) Injury to musculocutaneous nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.4) Injury to musculocutaneous nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''955.4''', NULL, + '(955.4) Injury to musculocutaneous nerve', '(955.4) Injury to musculocutaneous nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.5) Injury to cutaneous sensory nerve, upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.5) Injury to cutaneous sensory nerve, upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''955.5''', NULL, + '(955.5) Injury to cutaneous sensory nerve, upper limb', '(955.5) Injury to cutaneous sensory nerve, upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.6) Injury to digital nerve, upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.6) Injury to digital nerve, upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''955.6''', NULL, + '(955.6) Injury to digital nerve, upper limb', '(955.6) Injury to digital nerve, upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.7) Injury to other specified nerve(s) of shoulder girdle and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.7) Injury to other specified nerve(s) of shoulder girdle and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''955.7) Injury to other specified nerve(s''', NULL, + '(955.7) Injury to other specified nerve(s) of shoulder girdle and upper limb', '(955.7) Injury to other specified nerve(s) of shoulder girdle and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.8) Injury to multiple nerves of shoulder girdle and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.8) Injury to multiple nerves of shoulder girdle and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''955.8''', NULL, + '(955.8) Injury to multiple nerves of shoulder girdle and upper limb', '(955.8) Injury to multiple nerves of shoulder girdle and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.9) Injury to unspecified nerve of shoulder girdle and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\(955.9) Injury to unspecified nerve of shoulder girdle and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''955.9''', NULL, + '(955.9) Injury to unspecified nerve of shoulder girdle and upper limb', '(955.9) Injury to unspecified nerve of shoulder girdle and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952''', NULL, + 'Spinal cord injury without evidence of spinal bone injury (952)', 'Spinal cord injury without evidence of spinal bone injury (952)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\(952.2) Lumbar spinal cord injury without evidence of spinal bone injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\(952.2) Lumbar spinal cord injury without evidence of spinal bone injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.2''', NULL, + '(952.2) Lumbar spinal cord injury without evidence of spinal bone injury', '(952.2) Lumbar spinal cord injury without evidence of spinal bone injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\(952.3) Sacral spinal cord injury without evidence of spinal bone injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\(952.3) Sacral spinal cord injury without evidence of spinal bone injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.3''', NULL, + '(952.3) Sacral spinal cord injury without evidence of spinal bone injury', '(952.3) Sacral spinal cord injury without evidence of spinal bone injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\(952.4) Cauda equina spinal cord injury without evidence of spinal bone injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\(952.4) Cauda equina spinal cord injury without evidence of spinal bone injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.4''', NULL, + '(952.4) Cauda equina spinal cord injury without evidence of spinal bone injury', '(952.4) Cauda equina spinal cord injury without evidence of spinal bone injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\(952.8) Multiple sites of spinal cord injury without evidence of spinal bone injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\(952.8) Multiple sites of spinal cord injury without evidence of spinal bone injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.8''', NULL, + '(952.8) Multiple sites of spinal cord injury without evidence of spinal bone injury', '(952.8) Multiple sites of spinal cord injury without evidence of spinal bone injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\(952.9) Unspecified site of spinal cord injury without evidence of spinal bone injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\(952.9) Unspecified site of spinal cord injury without evidence of spinal bone injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.9''', NULL, + '(952.9) Unspecified site of spinal cord injury without evidence of spinal bone injury', '(952.9) Unspecified site of spinal cord injury without evidence of spinal bone injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.0''', NULL, + 'Cervical spinal cord injury without evidence of spinal bone injury (952.0)', 'Cervical spinal cord injury without evidence of spinal bone injury (952.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.00) C1-C4 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.00) C1-C4 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.00''', NULL, + '(952.00) C1-C4 level with unspecified spinal cord injury', '(952.00) C1-C4 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.01) C1-C4 level with complete lesion of spinal cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.01) C1-C4 level with complete lesion of spinal cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.01''', NULL, + '(952.01) C1-C4 level with complete lesion of spinal cord', '(952.01) C1-C4 level with complete lesion of spinal cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.02) C1-C4 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.02) C1-C4 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.02''', NULL, + '(952.02) C1-C4 level with anterior cord syndrome', '(952.02) C1-C4 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.03) C1-C4 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.03) C1-C4 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.03''', NULL, + '(952.03) C1-C4 level with central cord syndrome', '(952.03) C1-C4 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.04) C1-C4 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.04) C1-C4 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.04''', NULL, + '(952.04) C1-C4 level with other specified spinal cord injury', '(952.04) C1-C4 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.05) C5-C7 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.05) C5-C7 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.05''', NULL, + '(952.05) C5-C7 level with unspecified spinal cord injury', '(952.05) C5-C7 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.06) C5-C7 level with complete lesion of spinal cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.06) C5-C7 level with complete lesion of spinal cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.06''', NULL, + '(952.06) C5-C7 level with complete lesion of spinal cord', '(952.06) C5-C7 level with complete lesion of spinal cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.07) C5-C7 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.07) C5-C7 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.07''', NULL, + '(952.07) C5-C7 level with anterior cord syndrome', '(952.07) C5-C7 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.08) C5-C7 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.08) C5-C7 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.08''', NULL, + '(952.08) C5-C7 level with central cord syndrome', '(952.08) C5-C7 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.09) C5-C7 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\(952.09) C5-C7 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.09''', NULL, + '(952.09) C5-C7 level with other specified spinal cord injury', '(952.09) C5-C7 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.1''', NULL, + 'Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)', 'Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.10) T1-T6 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.10) T1-T6 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.10''', NULL, + '(952.10) T1-T6 level with unspecified spinal cord injury', '(952.10) T1-T6 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.11) T1-T6 level with complete lesion of spinal cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.11) T1-T6 level with complete lesion of spinal cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.11''', NULL, + '(952.11) T1-T6 level with complete lesion of spinal cord', '(952.11) T1-T6 level with complete lesion of spinal cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.12) T1-T6 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.12) T1-T6 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.12''', NULL, + '(952.12) T1-T6 level with anterior cord syndrome', '(952.12) T1-T6 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.13) T1-T6 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.13) T1-T6 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.13''', NULL, + '(952.13) T1-T6 level with central cord syndrome', '(952.13) T1-T6 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.14) T1-T6 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.14) T1-T6 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.14''', NULL, + '(952.14) T1-T6 level with other specified spinal cord injury', '(952.14) T1-T6 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.15) T7-T12 level with unspecified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.15) T7-T12 level with unspecified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.15''', NULL, + '(952.15) T7-T12 level with unspecified spinal cord injury', '(952.15) T7-T12 level with unspecified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.16) T7-T12 level with complete lesion of spinal cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.16) T7-T12 level with complete lesion of spinal cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.16''', NULL, + '(952.16) T7-T12 level with complete lesion of spinal cord', '(952.16) T7-T12 level with complete lesion of spinal cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.17) T7-T12 level with anterior cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.17) T7-T12 level with anterior cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.17''', NULL, + '(952.17) T7-T12 level with anterior cord syndrome', '(952.17) T7-T12 level with anterior cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.18) T7-T12 level with central cord syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.18) T7-T12 level with central cord syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.18''', NULL, + '(952.18) T7-T12 level with central cord syndrome', '(952.18) T7-T12 level with central cord syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.19) T7-T12 level with other specified spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Injury to nerves and spinal cord (950-957.99)\Spinal cord injury without evidence of spinal bone injury (952)\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\(952.19) T7-T12 level with other specified spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''952.19''', NULL, + '(952.19) T7-T12 level with other specified spinal cord injury', '(952.19) T7-T12 level with other specified spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''860'' AND ''869.99''', NULL, + 'Internal injury of thorax, abdomen, and pelvis (860-869.99)', 'Internal injury of thorax, abdomen, and pelvis (860-869.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863''', NULL, + 'Injury to gastrointestinal tract (863)', 'Injury to gastrointestinal tract (863)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\(863.0) Injury to stomach, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\(863.0) Injury to stomach, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.0''', NULL, + '(863.0) Injury to stomach, without mention of open wound into cavity', '(863.0) Injury to stomach, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\(863.1) Injury to stomach, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\(863.1) Injury to stomach, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.1''', NULL, + '(863.1) Injury to stomach, with open wound into cavity', '(863.1) Injury to stomach, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.5''', NULL, + 'Injury to colon or rectum with open wound into cavity (863.5)', 'Injury to colon or rectum with open wound into cavity (863.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.50) Injury to colon, unspecified site, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.50) Injury to colon, unspecified site, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.50''', NULL, + '(863.50) Injury to colon, unspecified site, with open wound into cavity', '(863.50) Injury to colon, unspecified site, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.51) Injury to ascending [right] colon, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.51) Injury to ascending [right] colon, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.51''', NULL, + '(863.51) Injury to ascending [right] colon, with open wound into cavity', '(863.51) Injury to ascending [right] colon, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.52) Injury to transverse colon, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.52) Injury to transverse colon, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.52''', NULL, + '(863.52) Injury to transverse colon, with open wound into cavity', '(863.52) Injury to transverse colon, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.53) Injury to descending [left] colon, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.53) Injury to descending [left] colon, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.53''', NULL, + '(863.53) Injury to descending [left] colon, with open wound into cavity', '(863.53) Injury to descending [left] colon, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.54) Injury to sigmoid colon, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.54) Injury to sigmoid colon, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.54''', NULL, + '(863.54) Injury to sigmoid colon, with open wound into cavity', '(863.54) Injury to sigmoid colon, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.55) Injury to rectum, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.55) Injury to rectum, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.55''', NULL, + '(863.55) Injury to rectum, with open wound into cavity', '(863.55) Injury to rectum, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.56) Injury to multiple sites in colon and rectum, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.56) Injury to multiple sites in colon and rectum, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.56''', NULL, + '(863.56) Injury to multiple sites in colon and rectum, with open wound into cavity', '(863.56) Injury to multiple sites in colon and rectum, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.59) Other injury to colon or rectum, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum with open wound into cavity (863.5)\(863.59) Other injury to colon or rectum, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.59''', NULL, + '(863.59) Other injury to colon or rectum, with open wound into cavity', '(863.59) Other injury to colon or rectum, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.4''', NULL, + 'Injury to colon or rectum without mention of open wound into cavity (863.4)', 'Injury to colon or rectum without mention of open wound into cavity (863.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.40) Injury to colon, unspecified site, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.40) Injury to colon, unspecified site, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.40''', NULL, + '(863.40) Injury to colon, unspecified site, without mention of open wound into cavity', '(863.40) Injury to colon, unspecified site, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.41) Injury to ascending [right] colon, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.41) Injury to ascending [right] colon, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.41''', NULL, + '(863.41) Injury to ascending [right] colon, without mention of open wound into cavity', '(863.41) Injury to ascending [right] colon, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.42) Injury to transverse colon, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.42) Injury to transverse colon, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.42''', NULL, + '(863.42) Injury to transverse colon, without mention of open wound into cavity', '(863.42) Injury to transverse colon, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.43) Injury to descending [left] colon, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.43) Injury to descending [left] colon, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.43''', NULL, + '(863.43) Injury to descending [left] colon, without mention of open wound into cavity', '(863.43) Injury to descending [left] colon, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.44) Injury to sigmoid colon, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.44) Injury to sigmoid colon, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.44''', NULL, + '(863.44) Injury to sigmoid colon, without mention of open wound into cavity', '(863.44) Injury to sigmoid colon, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.45) Injury to rectum, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.45) Injury to rectum, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.45''', NULL, + '(863.45) Injury to rectum, without mention of open wound into cavity', '(863.45) Injury to rectum, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.46) Injury to multiple sites in colon and rectum, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.46) Injury to multiple sites in colon and rectum, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.46''', NULL, + '(863.46) Injury to multiple sites in colon and rectum, without mention of open wound into cavity', '(863.46) Injury to multiple sites in colon and rectum, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.49) Other injury to colon or rectum, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to colon or rectum without mention of open wound into cavity (863.4)\(863.49) Other injury to colon or rectum, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.49''', NULL, + '(863.49) Other injury to colon or rectum, without mention of open wound into cavity', '(863.49) Other injury to colon or rectum, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.8''', NULL, + 'Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)', 'Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.80) Injury to gastrointestinal tract, unspecified site, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.80) Injury to gastrointestinal tract, unspecified site, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.80''', NULL, + '(863.80) Injury to gastrointestinal tract, unspecified site, without mention of open wound into cavity', '(863.80) Injury to gastrointestinal tract, unspecified site, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.81) Injury to pancreas, head, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.81) Injury to pancreas, head, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.81''', NULL, + '(863.81) Injury to pancreas, head, without mention of open wound into cavity', '(863.81) Injury to pancreas, head, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.82) Injury to pancreas, body, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.82) Injury to pancreas, body, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.82''', NULL, + '(863.82) Injury to pancreas, body, without mention of open wound into cavity', '(863.82) Injury to pancreas, body, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.83) Injury to pancreas, tail, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.83) Injury to pancreas, tail, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.83''', NULL, + '(863.83) Injury to pancreas, tail, without mention of open wound into cavity', '(863.83) Injury to pancreas, tail, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.84) Injury to pancreas, multiple and unspecified sites, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.84) Injury to pancreas, multiple and unspecified sites, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.84''', NULL, + '(863.84) Injury to pancreas, multiple and unspecified sites, without mention of open wound into cavity', '(863.84) Injury to pancreas, multiple and unspecified sites, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.85) Injury to appendix, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.85) Injury to appendix, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.85''', NULL, + '(863.85) Injury to appendix, without mention of open wound into cavity', '(863.85) Injury to appendix, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.89) Injury to other gastrointestinal sites, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\(863.89) Injury to other gastrointestinal sites, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.89''', NULL, + '(863.89) Injury to other gastrointestinal sites, without mention of open wound into cavity', '(863.89) Injury to other gastrointestinal sites, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.9''', NULL, + 'Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)', 'Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.90) Injury to gastrointestinal tract, unspecified site, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.90) Injury to gastrointestinal tract, unspecified site, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.90''', NULL, + '(863.90) Injury to gastrointestinal tract, unspecified site, with open wound into cavity', '(863.90) Injury to gastrointestinal tract, unspecified site, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.91) Injury to pancreas, head, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.91) Injury to pancreas, head, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.91''', NULL, + '(863.91) Injury to pancreas, head, with open wound into cavity', '(863.91) Injury to pancreas, head, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.92) Injury to pancreas, body, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.92) Injury to pancreas, body, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.92''', NULL, + '(863.92) Injury to pancreas, body, with open wound into cavity', '(863.92) Injury to pancreas, body, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.93) Injury to pancreas, tail, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.93) Injury to pancreas, tail, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.93''', NULL, + '(863.93) Injury to pancreas, tail, with open wound into cavity', '(863.93) Injury to pancreas, tail, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.94) Injury to pancreas, multiple and unspecified sites, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.94) Injury to pancreas, multiple and unspecified sites, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.94''', NULL, + '(863.94) Injury to pancreas, multiple and unspecified sites, with open wound into cavity', '(863.94) Injury to pancreas, multiple and unspecified sites, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.95) Injury to appendix, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.95) Injury to appendix, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.95''', NULL, + '(863.95) Injury to appendix, with open wound into cavity', '(863.95) Injury to appendix, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.99) Injury to other gastrointestinal sites, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\(863.99) Injury to other gastrointestinal sites, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.99''', NULL, + '(863.99) Injury to other gastrointestinal sites, with open wound into cavity', '(863.99) Injury to other gastrointestinal sites, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine with open wound into cavity (863.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine with open wound into cavity (863.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.3''', NULL, + 'Injury to small intestine with open wound into cavity (863.3)', 'Injury to small intestine with open wound into cavity (863.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine with open wound into cavity (863.3)\(863.30) Injury to small intestine, unspecified site, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine with open wound into cavity (863.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine with open wound into cavity (863.3)\(863.30) Injury to small intestine, unspecified site, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.30''', NULL, + '(863.30) Injury to small intestine, unspecified site, with open wound into cavity', '(863.30) Injury to small intestine, unspecified site, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine with open wound into cavity (863.3)\(863.31) Injury to duodenum, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine with open wound into cavity (863.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine with open wound into cavity (863.3)\(863.31) Injury to duodenum, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.31''', NULL, + '(863.31) Injury to duodenum, with open wound into cavity', '(863.31) Injury to duodenum, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine with open wound into cavity (863.3)\(863.39) Other injury to small intestine, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine with open wound into cavity (863.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine with open wound into cavity (863.3)\(863.39) Other injury to small intestine, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.39''', NULL, + '(863.39) Other injury to small intestine, with open wound into cavity', '(863.39) Other injury to small intestine, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine without mention of open wound into cavity (863.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine without mention of open wound into cavity (863.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.2''', NULL, + 'Injury to small intestine without mention of open wound into cavity (863.2)', 'Injury to small intestine without mention of open wound into cavity (863.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine without mention of open wound into cavity (863.2)\(863.20) Injury to small intestine, unspecified site, without open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine without mention of open wound into cavity (863.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine without mention of open wound into cavity (863.2)\(863.20) Injury to small intestine, unspecified site, without open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.20''', NULL, + '(863.20) Injury to small intestine, unspecified site, without open wound into cavity', '(863.20) Injury to small intestine, unspecified site, without open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine without mention of open wound into cavity (863.2)\(863.21) Injury to duodenum, without open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine without mention of open wound into cavity (863.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine without mention of open wound into cavity (863.2)\(863.21) Injury to duodenum, without open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.21''', NULL, + '(863.21) Injury to duodenum, without open wound into cavity', '(863.21) Injury to duodenum, without open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine without mention of open wound into cavity (863.2)\(863.29) Other injury to small intestine, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine without mention of open wound into cavity (863.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to gastrointestinal tract (863)\Injury to small intestine without mention of open wound into cavity (863.2)\(863.29) Other injury to small intestine, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''863.29''', NULL, + '(863.29) Other injury to small intestine, without mention of open wound into cavity', '(863.29) Other injury to small intestine, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861''', NULL, + 'Injury to heart and lung (861)', 'Injury to heart and lung (861)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.1''', NULL, + 'Heart injury, with open wound into thorax (861.1)', 'Heart injury, with open wound into thorax (861.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\(861.10) Unspecified injury of heart with open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\(861.10) Unspecified injury of heart with open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.10''', NULL, + '(861.10) Unspecified injury of heart with open wound into thorax', '(861.10) Unspecified injury of heart with open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\(861.11) Contusion of heart with open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\(861.11) Contusion of heart with open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.11''', NULL, + '(861.11) Contusion of heart with open wound into thorax', '(861.11) Contusion of heart with open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\(861.12) Laceration of heart without penetration of heart chambers, with open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\(861.12) Laceration of heart without penetration of heart chambers, with open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.12''', NULL, + '(861.12) Laceration of heart without penetration of heart chambers, with open wound into thorax', '(861.12) Laceration of heart without penetration of heart chambers, with open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\(861.13) Laceration of heart with penetration of heart chambers with open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, with open wound into thorax (861.1)\(861.13) Laceration of heart with penetration of heart chambers with open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.13''', NULL, + '(861.13) Laceration of heart with penetration of heart chambers with open wound into thorax', '(861.13) Laceration of heart with penetration of heart chambers with open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.0''', NULL, + 'Heart injury, without mention of open wound into thorax (861.0)', 'Heart injury, without mention of open wound into thorax (861.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\(861.00) Unspecified injury of heart without mention of open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\(861.00) Unspecified injury of heart without mention of open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.00''', NULL, + '(861.00) Unspecified injury of heart without mention of open wound into thorax', '(861.00) Unspecified injury of heart without mention of open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\(861.01) Contusion of heart without mention of open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\(861.01) Contusion of heart without mention of open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.01''', NULL, + '(861.01) Contusion of heart without mention of open wound into thorax', '(861.01) Contusion of heart without mention of open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\(861.02) Laceration of heart without penetration of heart chambers or without mention of open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\(861.02) Laceration of heart without penetration of heart chambers or without mention of open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.02''', NULL, + '(861.02) Laceration of heart without penetration of heart chambers or without mention of open wound into thorax', '(861.02) Laceration of heart without penetration of heart chambers or without mention of open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\(861.03) Laceration of heart with penetration of heart chambers without mention of open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Heart injury, without mention of open wound into thorax (861.0)\(861.03) Laceration of heart with penetration of heart chambers without mention of open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.03''', NULL, + '(861.03) Laceration of heart with penetration of heart chambers without mention of open wound into thorax', '(861.03) Laceration of heart with penetration of heart chambers without mention of open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, with open wound into thorax (861.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, with open wound into thorax (861.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.3''', NULL, + 'Lung injury, with open wound into thorax (861.3)', 'Lung injury, with open wound into thorax (861.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, with open wound into thorax (861.3)\(861.30) Unspecified injury of lung with open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, with open wound into thorax (861.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, with open wound into thorax (861.3)\(861.30) Unspecified injury of lung with open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.30''', NULL, + '(861.30) Unspecified injury of lung with open wound into thorax', '(861.30) Unspecified injury of lung with open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, with open wound into thorax (861.3)\(861.31) Contusion of lung with open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, with open wound into thorax (861.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, with open wound into thorax (861.3)\(861.31) Contusion of lung with open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.31''', NULL, + '(861.31) Contusion of lung with open wound into thorax', '(861.31) Contusion of lung with open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, with open wound into thorax (861.3)\(861.32) Laceration of lung with open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, with open wound into thorax (861.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, with open wound into thorax (861.3)\(861.32) Laceration of lung with open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.32''', NULL, + '(861.32) Laceration of lung with open wound into thorax', '(861.32) Laceration of lung with open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, without mention of open wound into thorax (861.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, without mention of open wound into thorax (861.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.2''', NULL, + 'Lung injury, without mention of open wound into thorax (861.2)', 'Lung injury, without mention of open wound into thorax (861.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, without mention of open wound into thorax (861.2)\(861.20) Unspecified injury of lung without mention of open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, without mention of open wound into thorax (861.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, without mention of open wound into thorax (861.2)\(861.20) Unspecified injury of lung without mention of open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.20''', NULL, + '(861.20) Unspecified injury of lung without mention of open wound into thorax', '(861.20) Unspecified injury of lung without mention of open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, without mention of open wound into thorax (861.2)\(861.21) Contusion of lung without mention of open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, without mention of open wound into thorax (861.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, without mention of open wound into thorax (861.2)\(861.21) Contusion of lung without mention of open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.21''', NULL, + '(861.21) Contusion of lung without mention of open wound into thorax', '(861.21) Contusion of lung without mention of open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, without mention of open wound into thorax (861.2)\(861.22) Laceration of lung without mention of open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, without mention of open wound into thorax (861.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to heart and lung (861)\Lung injury, without mention of open wound into thorax (861.2)\(861.22) Laceration of lung without mention of open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''861.22''', NULL, + '(861.22) Laceration of lung without mention of open wound into thorax', '(861.22) Laceration of lung without mention of open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''866''', NULL, + 'Injury to kidney (866)', 'Injury to kidney (866)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''866.1''', NULL, + 'Injury to kidney with open wound into cavity (866.1)', 'Injury to kidney with open wound into cavity (866.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\(866.10) Injury to kidney with open wound into cavity, unspecified injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\(866.10) Injury to kidney with open wound into cavity, unspecified injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''866.10''', NULL, + '(866.10) Injury to kidney with open wound into cavity, unspecified injury', '(866.10) Injury to kidney with open wound into cavity, unspecified injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\(866.11) Injury to kidney with open wound into cavity, hematoma without rupture of capsule\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\(866.11) Injury to kidney with open wound into cavity, hematoma without rupture of capsule\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''866.11''', NULL, + '(866.11) Injury to kidney with open wound into cavity, hematoma without rupture of capsule', '(866.11) Injury to kidney with open wound into cavity, hematoma without rupture of capsule', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\(866.12) Injury to kidney with open wound into cavity, laceration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\(866.12) Injury to kidney with open wound into cavity, laceration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''866.12''', NULL, + '(866.12) Injury to kidney with open wound into cavity, laceration', '(866.12) Injury to kidney with open wound into cavity, laceration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\(866.13) Injury to kidney with open wound into cavity, complete disruption of kidney parenchyma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney with open wound into cavity (866.1)\(866.13) Injury to kidney with open wound into cavity, complete disruption of kidney parenchyma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''866.13''', NULL, + '(866.13) Injury to kidney with open wound into cavity, complete disruption of kidney parenchyma', '(866.13) Injury to kidney with open wound into cavity, complete disruption of kidney parenchyma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''866.0''', NULL, + 'Injury to kidney without mention of open wound into cavity (866.0)', 'Injury to kidney without mention of open wound into cavity (866.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\(866.00) Injury to kidney without mention of open wound into cavity, unspecified injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\(866.00) Injury to kidney without mention of open wound into cavity, unspecified injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''866.00''', NULL, + '(866.00) Injury to kidney without mention of open wound into cavity, unspecified injury', '(866.00) Injury to kidney without mention of open wound into cavity, unspecified injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\(866.01) Injury to kidney without mention of open wound into cavity, hematoma without rupture of capsule\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\(866.01) Injury to kidney without mention of open wound into cavity, hematoma without rupture of capsule\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''866.01''', NULL, + '(866.01) Injury to kidney without mention of open wound into cavity, hematoma without rupture of capsule', '(866.01) Injury to kidney without mention of open wound into cavity, hematoma without rupture of capsule', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\(866.02) Injury to kidney without mention of open wound into cavity, laceration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\(866.02) Injury to kidney without mention of open wound into cavity, laceration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''866.02''', NULL, + '(866.02) Injury to kidney without mention of open wound into cavity, laceration', '(866.02) Injury to kidney without mention of open wound into cavity, laceration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\(866.03) Injury to kidney without mention of open wound into cavity, complete disruption of kidney parenchyma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to kidney (866)\Injury to kidney without mention of open wound into cavity (866.0)\(866.03) Injury to kidney without mention of open wound into cavity, complete disruption of kidney parenchyma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''866.03''', NULL, + '(866.03) Injury to kidney without mention of open wound into cavity, complete disruption of kidney parenchyma', '(866.03) Injury to kidney without mention of open wound into cavity, complete disruption of kidney parenchyma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864''', NULL, + 'Injury to liver (864)', 'Injury to liver (864)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.1''', NULL, + 'Injury to liver with open wound into cavity (864.1)', 'Injury to liver with open wound into cavity (864.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.10) Injury to liver with open wound into cavity, unspecified injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.10) Injury to liver with open wound into cavity, unspecified injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.10''', NULL, + '(864.10) Injury to liver with open wound into cavity, unspecified injury', '(864.10) Injury to liver with open wound into cavity, unspecified injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.11) Injury to liver with open wound into cavity, hematoma and contusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.11) Injury to liver with open wound into cavity, hematoma and contusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.11''', NULL, + '(864.11) Injury to liver with open wound into cavity, hematoma and contusion', '(864.11) Injury to liver with open wound into cavity, hematoma and contusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.12) Injury to liver with open wound into cavity, laceration, minor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.12) Injury to liver with open wound into cavity, laceration, minor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.12''', NULL, + '(864.12) Injury to liver with open wound into cavity, laceration, minor', '(864.12) Injury to liver with open wound into cavity, laceration, minor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.13) Injury to liver with open wound into cavity, laceration, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.13) Injury to liver with open wound into cavity, laceration, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.13''', NULL, + '(864.13) Injury to liver with open wound into cavity, laceration, moderate', '(864.13) Injury to liver with open wound into cavity, laceration, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.14) Injury to liver with open wound into cavity, laceration, major\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.14) Injury to liver with open wound into cavity, laceration, major\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.14''', NULL, + '(864.14) Injury to liver with open wound into cavity, laceration, major', '(864.14) Injury to liver with open wound into cavity, laceration, major', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.15) Injury to liver with open wound into cavity, laceration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.15) Injury to liver with open wound into cavity, laceration, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.15''', NULL, + '(864.15) Injury to liver with open wound into cavity, laceration, unspecified', '(864.15) Injury to liver with open wound into cavity, laceration, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.19) Other injury to liver with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver with open wound into cavity (864.1)\(864.19) Other injury to liver with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.19''', NULL, + '(864.19) Other injury to liver with open wound into cavity', '(864.19) Other injury to liver with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.0''', NULL, + 'Injury to liver without mention of open wound into cavity (864.0)', 'Injury to liver without mention of open wound into cavity (864.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.00) Injury to liver without mention of open wound into cavity, unspecified injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.00) Injury to liver without mention of open wound into cavity, unspecified injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.00''', NULL, + '(864.00) Injury to liver without mention of open wound into cavity, unspecified injury', '(864.00) Injury to liver without mention of open wound into cavity, unspecified injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.01) Injury to liver without mention of open wound into cavity, hematoma and contusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.01) Injury to liver without mention of open wound into cavity, hematoma and contusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.01''', NULL, + '(864.01) Injury to liver without mention of open wound into cavity, hematoma and contusion', '(864.01) Injury to liver without mention of open wound into cavity, hematoma and contusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.02) Injury to liver without mention of open wound into cavity, laceration, minor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.02) Injury to liver without mention of open wound into cavity, laceration, minor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.02''', NULL, + '(864.02) Injury to liver without mention of open wound into cavity, laceration, minor', '(864.02) Injury to liver without mention of open wound into cavity, laceration, minor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.03) Injury to liver without mention of open wound into cavity, laceration, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.03) Injury to liver without mention of open wound into cavity, laceration, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.03''', NULL, + '(864.03) Injury to liver without mention of open wound into cavity, laceration, moderate', '(864.03) Injury to liver without mention of open wound into cavity, laceration, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.04) Injury to liver without mention of open wound into cavity, laceration, major\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.04) Injury to liver without mention of open wound into cavity, laceration, major\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.04''', NULL, + '(864.04) Injury to liver without mention of open wound into cavity, laceration, major', '(864.04) Injury to liver without mention of open wound into cavity, laceration, major', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.05) Injury to liver without mention of open wound into cavity laceration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.05) Injury to liver without mention of open wound into cavity laceration, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.05''', NULL, + '(864.05) Injury to liver without mention of open wound into cavity laceration, unspecified', '(864.05) Injury to liver without mention of open wound into cavity laceration, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.09) Other injury to liver without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to liver (864)\Injury to liver without mention of open wound into cavity (864.0)\(864.09) Other injury to liver without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''864.09''', NULL, + '(864.09) Other injury to liver without mention of open wound into cavity', '(864.09) Other injury to liver without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862''', NULL, + 'Injury to other and unspecified intrathoracic organs (862)', 'Injury to other and unspecified intrathoracic organs (862)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\(862.0) Injury to diaphragm, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\(862.0) Injury to diaphragm, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.0''', NULL, + '(862.0) Injury to diaphragm, without mention of open wound into cavity', '(862.0) Injury to diaphragm, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\(862.1) Injury to diaphragm, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\(862.1) Injury to diaphragm, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.1''', NULL, + '(862.1) Injury to diaphragm, with open wound into cavity', '(862.1) Injury to diaphragm, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\(862.8) Injury to multiple and unspecified intrathoracic organs, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\(862.8) Injury to multiple and unspecified intrathoracic organs, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.8''', NULL, + '(862.8) Injury to multiple and unspecified intrathoracic organs, without mention of open wound into cavity', '(862.8) Injury to multiple and unspecified intrathoracic organs, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\(862.9) Injury to multiple and unspecified intrathoracic organs, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\(862.9) Injury to multiple and unspecified intrathoracic organs, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.9''', NULL, + '(862.9) Injury to multiple and unspecified intrathoracic organs, with open wound into cavity', '(862.9) Injury to multiple and unspecified intrathoracic organs, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.3''', NULL, + 'Injury to other specified intrathoracic organs with open wound into cavity (862.3)', 'Injury to other specified intrathoracic organs with open wound into cavity (862.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\(862.31) Injury to bronchus with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\(862.31) Injury to bronchus with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.31''', NULL, + '(862.31) Injury to bronchus with open wound into cavity', '(862.31) Injury to bronchus with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\(862.32) Injury to esophagus with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\(862.32) Injury to esophagus with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.32''', NULL, + '(862.32) Injury to esophagus with open wound into cavity', '(862.32) Injury to esophagus with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\(862.39) Injury to other specified intrathoracic organs with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\(862.39) Injury to other specified intrathoracic organs with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.39''', NULL, + '(862.39) Injury to other specified intrathoracic organs with open wound into cavity', '(862.39) Injury to other specified intrathoracic organs with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.2''', NULL, + 'Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)', 'Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\(862.21) Injury to bronchus without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\(862.21) Injury to bronchus without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.21''', NULL, + '(862.21) Injury to bronchus without mention of open wound into cavity', '(862.21) Injury to bronchus without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\(862.22) Injury to esophagus without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\(862.22) Injury to esophagus without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.22''', NULL, + '(862.22) Injury to esophagus without mention of open wound into cavity', '(862.22) Injury to esophagus without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\(862.29) Injury to other specified intrathoracic organs without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other and unspecified intrathoracic organs (862)\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\(862.29) Injury to other specified intrathoracic organs without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''862.29''', NULL, + '(862.29) Injury to other specified intrathoracic organs without mention of open wound into cavity', '(862.29) Injury to other specified intrathoracic organs without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868''', NULL, + 'Injury to other intra-abdominal organs (868)', 'Injury to other intra-abdominal organs (868)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.1''', NULL, + 'Injury to other intra-abdominal organs with open wound into cavity (868.1)', 'Injury to other intra-abdominal organs with open wound into cavity (868.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.10) Injury to other intra-abdominal organs with open wound into cavity, unspecified intra-abdominal organ\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.10) Injury to other intra-abdominal organs with open wound into cavity, unspecified intra-abdominal organ\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.10''', NULL, + '(868.10) Injury to other intra-abdominal organs with open wound into cavity, unspecified intra-abdominal organ', '(868.10) Injury to other intra-abdominal organs with open wound into cavity, unspecified intra-abdominal organ', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.11) Injury to other intra-abdominal organs with open wound into cavity, adrenal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.11) Injury to other intra-abdominal organs with open wound into cavity, adrenal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.11''', NULL, + '(868.11) Injury to other intra-abdominal organs with open wound into cavity, adrenal gland', '(868.11) Injury to other intra-abdominal organs with open wound into cavity, adrenal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.12) Injury to other intra-abdominal organs with open wound into cavity, bile duct and gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.12) Injury to other intra-abdominal organs with open wound into cavity, bile duct and gallbladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.12''', NULL, + '(868.12) Injury to other intra-abdominal organs with open wound into cavity, bile duct and gallbladder', '(868.12) Injury to other intra-abdominal organs with open wound into cavity, bile duct and gallbladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.13) Injury to other intra-abdominal organs with open wound into cavity, peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.13) Injury to other intra-abdominal organs with open wound into cavity, peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.13''', NULL, + '(868.13) Injury to other intra-abdominal organs with open wound into cavity, peritoneum', '(868.13) Injury to other intra-abdominal organs with open wound into cavity, peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.14) Injury to other intra-abdominal organs with open wound into cavity, retroperitoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.14) Injury to other intra-abdominal organs with open wound into cavity, retroperitoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.14''', NULL, + '(868.14) Injury to other intra-abdominal organs with open wound into cavity, retroperitoneum', '(868.14) Injury to other intra-abdominal organs with open wound into cavity, retroperitoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.19) Injury to other and multiple intra-abdominal organs, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs with open wound into cavity (868.1)\(868.19) Injury to other and multiple intra-abdominal organs, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.19''', NULL, + '(868.19) Injury to other and multiple intra-abdominal organs, with open wound into cavity', '(868.19) Injury to other and multiple intra-abdominal organs, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.0''', NULL, + 'Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)', 'Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.00) Injury to other intra-abdominal organs without mention of open wound into cavity, unspecified intra-abdominal organ\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.00) Injury to other intra-abdominal organs without mention of open wound into cavity, unspecified intra-abdominal organ\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.00''', NULL, + '(868.00) Injury to other intra-abdominal organs without mention of open wound into cavity, unspecified intra-abdominal organ', '(868.00) Injury to other intra-abdominal organs without mention of open wound into cavity, unspecified intra-abdominal organ', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.01) Injury to other intra-abdominal organs without mention of open wound into cavity, adrenal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.01) Injury to other intra-abdominal organs without mention of open wound into cavity, adrenal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.01''', NULL, + '(868.01) Injury to other intra-abdominal organs without mention of open wound into cavity, adrenal gland', '(868.01) Injury to other intra-abdominal organs without mention of open wound into cavity, adrenal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.02) Injury to other intra-abdominal organs without mention of open wound into cavity, bile duct and gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.02) Injury to other intra-abdominal organs without mention of open wound into cavity, bile duct and gallbladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.02''', NULL, + '(868.02) Injury to other intra-abdominal organs without mention of open wound into cavity, bile duct and gallbladder', '(868.02) Injury to other intra-abdominal organs without mention of open wound into cavity, bile duct and gallbladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.03) Injury to other intra-abdominal organs without mention of open wound into cavity, peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.03) Injury to other intra-abdominal organs without mention of open wound into cavity, peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.03''', NULL, + '(868.03) Injury to other intra-abdominal organs without mention of open wound into cavity, peritoneum', '(868.03) Injury to other intra-abdominal organs without mention of open wound into cavity, peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.04) Injury to other intra-abdominal organs without mention of open wound into cavity, retroperitoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.04) Injury to other intra-abdominal organs without mention of open wound into cavity, retroperitoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.04''', NULL, + '(868.04) Injury to other intra-abdominal organs without mention of open wound into cavity, retroperitoneum', '(868.04) Injury to other intra-abdominal organs without mention of open wound into cavity, retroperitoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.09) Injury to other and multiple intra-abdominal organs without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to other intra-abdominal organs (868)\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\(868.09) Injury to other and multiple intra-abdominal organs without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''868.09''', NULL, + '(868.09) Injury to other and multiple intra-abdominal organs without mention of open wound into cavity', '(868.09) Injury to other and multiple intra-abdominal organs without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''867''', NULL, + 'Injury to pelvic organs (867)', 'Injury to pelvic organs (867)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.0) Injury to bladder and urethra, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.0) Injury to bladder and urethra, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''867.0''', NULL, + '(867.0) Injury to bladder and urethra, without mention of open wound into cavity', '(867.0) Injury to bladder and urethra, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.1) Injury to bladder and urethra, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.1) Injury to bladder and urethra, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''867.1''', NULL, + '(867.1) Injury to bladder and urethra, with open wound into cavity', '(867.1) Injury to bladder and urethra, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.2) Injury to ureter, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.2) Injury to ureter, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''867.2''', NULL, + '(867.2) Injury to ureter, without mention of open wound into cavity', '(867.2) Injury to ureter, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.3) Injury to ureter, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.3) Injury to ureter, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''867.3''', NULL, + '(867.3) Injury to ureter, with open wound into cavity', '(867.3) Injury to ureter, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.4) Injury to uterus, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.4) Injury to uterus, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''867.4''', NULL, + '(867.4) Injury to uterus, without mention of open wound into cavity', '(867.4) Injury to uterus, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.5) Injury to uterus, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.5) Injury to uterus, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''867.5''', NULL, + '(867.5) Injury to uterus, with open wound into cavity', '(867.5) Injury to uterus, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.6) Injury to other specified pelvic organs, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.6) Injury to other specified pelvic organs, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''867.6''', NULL, + '(867.6) Injury to other specified pelvic organs, without mention of open wound into cavity', '(867.6) Injury to other specified pelvic organs, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.7) Injury to other specified pelvic organs, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.7) Injury to other specified pelvic organs, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''867.7''', NULL, + '(867.7) Injury to other specified pelvic organs, with open wound into cavity', '(867.7) Injury to other specified pelvic organs, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.8) Injury to unspecified pelvic organ, without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.8) Injury to unspecified pelvic organ, without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''867.8''', NULL, + '(867.8) Injury to unspecified pelvic organ, without mention of open wound into cavity', '(867.8) Injury to unspecified pelvic organ, without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.9) Injury to unspecified pelvic organ, with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to pelvic organs (867)\(867.9) Injury to unspecified pelvic organ, with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''867.9''', NULL, + '(867.9) Injury to unspecified pelvic organ, with open wound into cavity', '(867.9) Injury to unspecified pelvic organ, with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865''', NULL, + 'Injury to spleen (865)', 'Injury to spleen (865)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.1''', NULL, + 'Injury to spleen with open wound into cavity (865.1)', 'Injury to spleen with open wound into cavity (865.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.10) Injury to spleen with open wound into cavity, unspecified injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.10) Injury to spleen with open wound into cavity, unspecified injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.10''', NULL, + '(865.10) Injury to spleen with open wound into cavity, unspecified injury', '(865.10) Injury to spleen with open wound into cavity, unspecified injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.11) Injury to spleen with open wound into cavity, hematoma without rupture of capsule\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.11) Injury to spleen with open wound into cavity, hematoma without rupture of capsule\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.11''', NULL, + '(865.11) Injury to spleen with open wound into cavity, hematoma without rupture of capsule', '(865.11) Injury to spleen with open wound into cavity, hematoma without rupture of capsule', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.12) Injury to spleen with open wound into cavity, capsular tears, without major disruption of parenchyma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.12) Injury to spleen with open wound into cavity, capsular tears, without major disruption of parenchyma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.12''', NULL, + '(865.12) Injury to spleen with open wound into cavity, capsular tears, without major disruption of parenchyma', '(865.12) Injury to spleen with open wound into cavity, capsular tears, without major disruption of parenchyma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.13) Injury to spleen with open wound into cavity, laceration extending into parenchyma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.13) Injury to spleen with open wound into cavity, laceration extending into parenchyma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.13''', NULL, + '(865.13) Injury to spleen with open wound into cavity, laceration extending into parenchyma', '(865.13) Injury to spleen with open wound into cavity, laceration extending into parenchyma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.14) Injury to spleen with open wound into cavity, massive parenchyma disruption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.14) Injury to spleen with open wound into cavity, massive parenchyma disruption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.14''', NULL, + '(865.14) Injury to spleen with open wound into cavity, massive parenchyma disruption', '(865.14) Injury to spleen with open wound into cavity, massive parenchyma disruption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.19) Other injury to spleen with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen with open wound into cavity (865.1)\(865.19) Other injury to spleen with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.19''', NULL, + '(865.19) Other injury to spleen with open wound into cavity', '(865.19) Other injury to spleen with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.0''', NULL, + 'Injury to spleen without mention of open wound into cavity (865.0)', 'Injury to spleen without mention of open wound into cavity (865.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.00) Injury to spleen without mention of open wound into cavity, unspecified injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.00) Injury to spleen without mention of open wound into cavity, unspecified injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.00''', NULL, + '(865.00) Injury to spleen without mention of open wound into cavity, unspecified injury', '(865.00) Injury to spleen without mention of open wound into cavity, unspecified injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.01) Injury to spleen without mention of open wound into cavity, hematoma without rupture of capsule\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.01) Injury to spleen without mention of open wound into cavity, hematoma without rupture of capsule\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.01''', NULL, + '(865.01) Injury to spleen without mention of open wound into cavity, hematoma without rupture of capsule', '(865.01) Injury to spleen without mention of open wound into cavity, hematoma without rupture of capsule', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.02) Injury to spleen without mention of open wound into cavity, capsular tears, without major disruption of parenchyma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.02) Injury to spleen without mention of open wound into cavity, capsular tears, without major disruption of parenchyma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.02''', NULL, + '(865.02) Injury to spleen without mention of open wound into cavity, capsular tears, without major disruption of parenchyma', '(865.02) Injury to spleen without mention of open wound into cavity, capsular tears, without major disruption of parenchyma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.03) Injury to spleen without mention of open wound into cavity, laceration extending into parenchyma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.03) Injury to spleen without mention of open wound into cavity, laceration extending into parenchyma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.03''', NULL, + '(865.03) Injury to spleen without mention of open wound into cavity, laceration extending into parenchyma', '(865.03) Injury to spleen without mention of open wound into cavity, laceration extending into parenchyma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.04) Injury to spleen without mention of open wound into cavity, massive parenchymal disruption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.04) Injury to spleen without mention of open wound into cavity, massive parenchymal disruption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.04''', NULL, + '(865.04) Injury to spleen without mention of open wound into cavity, massive parenchymal disruption', '(865.04) Injury to spleen without mention of open wound into cavity, massive parenchymal disruption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.09) Other injury into spleen without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Injury to spleen (865)\Injury to spleen without mention of open wound into cavity (865.0)\(865.09) Other injury into spleen without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''865.09''', NULL, + '(865.09) Other injury into spleen without mention of open wound into cavity', '(865.09) Other injury into spleen without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Internal injury to unspecified or ill-defined organs (869)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Internal injury to unspecified or ill-defined organs (869)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''869''', NULL, + 'Internal injury to unspecified or ill-defined organs (869)', 'Internal injury to unspecified or ill-defined organs (869)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Internal injury to unspecified or ill-defined organs (869)\(869.0) Internal injury to unspecified or ill-defined organs without mention of open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Internal injury to unspecified or ill-defined organs (869)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Internal injury to unspecified or ill-defined organs (869)\(869.0) Internal injury to unspecified or ill-defined organs without mention of open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''869.0''', NULL, + '(869.0) Internal injury to unspecified or ill-defined organs without mention of open wound into cavity', '(869.0) Internal injury to unspecified or ill-defined organs without mention of open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Internal injury to unspecified or ill-defined organs (869)\(869.1) Internal injury to unspecified or ill-defined organs with open wound into cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Internal injury to unspecified or ill-defined organs (869)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Internal injury to unspecified or ill-defined organs (869)\(869.1) Internal injury to unspecified or ill-defined organs with open wound into cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''869.1''', NULL, + '(869.1) Internal injury to unspecified or ill-defined organs with open wound into cavity', '(869.1) Internal injury to unspecified or ill-defined organs with open wound into cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''860''', NULL, + 'Traumatic pneumothorax and hemothorax (860)', 'Traumatic pneumothorax and hemothorax (860)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.0) Traumatic pneumothorax without mention of open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.0) Traumatic pneumothorax without mention of open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''860.0''', NULL, + '(860.0) Traumatic pneumothorax without mention of open wound into thorax', '(860.0) Traumatic pneumothorax without mention of open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.1) Traumatic pneumothorax with open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.1) Traumatic pneumothorax with open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''860.1''', NULL, + '(860.1) Traumatic pneumothorax with open wound into thorax', '(860.1) Traumatic pneumothorax with open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.2) Traumatic hemothorax without mention of open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.2) Traumatic hemothorax without mention of open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''860.2''', NULL, + '(860.2) Traumatic hemothorax without mention of open wound into thorax', '(860.2) Traumatic hemothorax without mention of open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.3) Traumatic hemothorax with open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.3) Traumatic hemothorax with open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''860.3''', NULL, + '(860.3) Traumatic hemothorax with open wound into thorax', '(860.3) Traumatic hemothorax with open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.4) Traumatic pneumohemothorax without mention of open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.4) Traumatic pneumohemothorax without mention of open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''860.4''', NULL, + '(860.4) Traumatic pneumohemothorax without mention of open wound into thorax', '(860.4) Traumatic pneumohemothorax without mention of open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.5) Traumatic pneumohemothorax with open wound into thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Internal injury of thorax, abdomen, and pelvis (860-869.99)\Traumatic pneumothorax and hemothorax (860)\(860.5) Traumatic pneumohemothorax with open wound into thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''860.5''', NULL, + '(860.5) Traumatic pneumohemothorax with open wound into thorax', '(860.5) Traumatic pneumohemothorax with open wound into thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''850'' AND ''854.99''', NULL, + 'Intracranial injury, excluding those with skull fracture (850-854.99)', 'Intracranial injury, excluding those with skull fracture (850-854.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851''', NULL, + 'Cerebral laceration and contusion (851)', 'Cerebral laceration and contusion (851)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.5''', NULL, + 'Cerebellar or brain stem contusion with open intracranial wound (851.5)', 'Cerebellar or brain stem contusion with open intracranial wound (851.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.50) Cerebellar or brain stem contusion with open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.50) Cerebellar or brain stem contusion with open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.50''', NULL, + '(851.50) Cerebellar or brain stem contusion with open intracranial wound, unspecified state of consciousness', '(851.50) Cerebellar or brain stem contusion with open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.51) Cerebellar or brain stem contusion with open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.51) Cerebellar or brain stem contusion with open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.51''', NULL, + '(851.51) Cerebellar or brain stem contusion with open intracranial wound, with no loss of consciousness', '(851.51) Cerebellar or brain stem contusion with open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.52) Cerebellar or brain stem contusion with open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.52) Cerebellar or brain stem contusion with open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.52''', NULL, + '(851.52) Cerebellar or brain stem contusion with open intracranial wound, with brief [less than one hour] loss of consciousness', '(851.52) Cerebellar or brain stem contusion with open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.53) Cerebellar or brain stem contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.53) Cerebellar or brain stem contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.53''', NULL, + '(851.53) Cerebellar or brain stem contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(851.53) Cerebellar or brain stem contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.54) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.54) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.54''', NULL, + '(851.54) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(851.54) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.55) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.55) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.55''', NULL, + '(851.55) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(851.55) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.56) Cerebellar or brain stem contusion with open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.56) Cerebellar or brain stem contusion with open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.56''', NULL, + '(851.56) Cerebellar or brain stem contusion with open intracranial wound, with loss of consciousness of unspecified duration', '(851.56) Cerebellar or brain stem contusion with open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.59) Cerebellar or brain stem contusion with open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion with open intracranial wound (851.5)\(851.59) Cerebellar or brain stem contusion with open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.59''', NULL, + '(851.59) Cerebellar or brain stem contusion with open intracranial wound, with concussion, unspecified', '(851.59) Cerebellar or brain stem contusion with open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.4''', NULL, + 'Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)', 'Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.40) Cerebellar or brain stem contusion without mention of open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.40) Cerebellar or brain stem contusion without mention of open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.40''', NULL, + '(851.40) Cerebellar or brain stem contusion without mention of open intracranial wound, unspecified state of consciousness', '(851.40) Cerebellar or brain stem contusion without mention of open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.41) Cerebellar or brain stem contusion without mention of open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.41) Cerebellar or brain stem contusion without mention of open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.41''', NULL, + '(851.41) Cerebellar or brain stem contusion without mention of open intracranial wound, with no loss of consciousness', '(851.41) Cerebellar or brain stem contusion without mention of open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.42) Cerebellar or brain stem contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.42) Cerebellar or brain stem contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.42''', NULL, + '(851.42) Cerebellar or brain stem contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', '(851.42) Cerebellar or brain stem contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.43) Cerebellar or brain stem contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.43) Cerebellar or brain stem contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.43''', NULL, + '(851.43) Cerebellar or brain stem contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(851.43) Cerebellar or brain stem contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.44) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.44) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.44''', NULL, + '(851.44) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss consciousness and return to pre-existing conscious level', '(851.44) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.45) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.45) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.45''', NULL, + '(851.45) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(851.45) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.46) Cerebellar or brain stem contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.46) Cerebellar or brain stem contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.46''', NULL, + '(851.46) Cerebellar or brain stem contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration', '(851.46) Cerebellar or brain stem contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.49) Cerebellar or brain stem contusion without mention of open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\(851.49) Cerebellar or brain stem contusion without mention of open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.49''', NULL, + '(851.49) Cerebellar or brain stem contusion without mention of open intracranial wound, with concussion, unspecified', '(851.49) Cerebellar or brain stem contusion without mention of open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.7''', NULL, + 'Cerebellar or brain stem laceration with open intracranial wound (851.7)', 'Cerebellar or brain stem laceration with open intracranial wound (851.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.70) Cerebellar or brain stem laceration with open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.70) Cerebellar or brain stem laceration with open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.70''', NULL, + '(851.70) Cerebellar or brain stem laceration with open intracranial wound, unspecified state of consciousness', '(851.70) Cerebellar or brain stem laceration with open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.71) Cerebellar or brain stem laceration with open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.71) Cerebellar or brain stem laceration with open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.71''', NULL, + '(851.71) Cerebellar or brain stem laceration with open intracranial wound, with no loss of consciousness', '(851.71) Cerebellar or brain stem laceration with open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.72) Cerebellar or brain stem laceration with open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.72) Cerebellar or brain stem laceration with open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.72''', NULL, + '(851.72) Cerebellar or brain stem laceration with open intracranial wound, with brief [less than one hour] loss of consciousness', '(851.72) Cerebellar or brain stem laceration with open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.73) Cerebellar or brain stem laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.73) Cerebellar or brain stem laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.73''', NULL, + '(851.73) Cerebellar or brain stem laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(851.73) Cerebellar or brain stem laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.74) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.74) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.74''', NULL, + '(851.74) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(851.74) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.75) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.75) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.75''', NULL, + '(851.75) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(851.75) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.76) Cerebellar or brain stem laceration with open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.76) Cerebellar or brain stem laceration with open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.76''', NULL, + '(851.76) Cerebellar or brain stem laceration with open intracranial wound, with loss of consciousness of unspecified duration', '(851.76) Cerebellar or brain stem laceration with open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.79) Cerebellar or brain stem laceration with open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration with open intracranial wound (851.7)\(851.79) Cerebellar or brain stem laceration with open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.79''', NULL, + '(851.79) Cerebellar or brain stem laceration with open intracranial wound, with concussion, unspecified', '(851.79) Cerebellar or brain stem laceration with open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.6''', NULL, + 'Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)', 'Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.60) Cerebellar or brain stem laceration without mention of open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.60) Cerebellar or brain stem laceration without mention of open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.60''', NULL, + '(851.60) Cerebellar or brain stem laceration without mention of open intracranial wound, unspecified state of consciousness', '(851.60) Cerebellar or brain stem laceration without mention of open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.61) Cerebellar or brain stem laceration without mention of open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.61) Cerebellar or brain stem laceration without mention of open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.61''', NULL, + '(851.61) Cerebellar or brain stem laceration without mention of open intracranial wound, with no loss of consciousness', '(851.61) Cerebellar or brain stem laceration without mention of open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.62) Cerebellar or brain stem laceration without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.62) Cerebellar or brain stem laceration without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.62''', NULL, + '(851.62) Cerebellar or brain stem laceration without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness', '(851.62) Cerebellar or brain stem laceration without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.63) Cerebellar or brain stem laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.63) Cerebellar or brain stem laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.63''', NULL, + '(851.63) Cerebellar or brain stem laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(851.63) Cerebellar or brain stem laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.64) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.64) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.64''', NULL, + '(851.64) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(851.64) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.65) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.65) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.65''', NULL, + '(851.65) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(851.65) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.66) Cerebellar or brain stem laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.66) Cerebellar or brain stem laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.66''', NULL, + '(851.66) Cerebellar or brain stem laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration', '(851.66) Cerebellar or brain stem laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.69) Cerebellar or brain stem laceration without mention of open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\(851.69) Cerebellar or brain stem laceration without mention of open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.69''', NULL, + '(851.69) Cerebellar or brain stem laceration without mention of open intracranial wound, with concussion, unspecified', '(851.69) Cerebellar or brain stem laceration without mention of open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''cerebral) contusion with open intracranial wound (851.1''', NULL, + 'Cortex (cerebral) contusion with open intracranial wound (851.1)', 'Cortex (cerebral) contusion with open intracranial wound (851.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.10) Cortex (cerebral) contusion with open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.10) Cortex (cerebral) contusion with open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.10) Cortex (cerebral''', NULL, + '(851.10) Cortex (cerebral) contusion with open intracranial wound, unspecified state of consciousness', '(851.10) Cortex (cerebral) contusion with open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.11) Cortex (cerebral) contusion with open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.11) Cortex (cerebral) contusion with open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.11) Cortex (cerebral''', NULL, + '(851.11) Cortex (cerebral) contusion with open intracranial wound, with no loss of consciousness', '(851.11) Cortex (cerebral) contusion with open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.12) Cortex (cerebral) contusion with open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.12) Cortex (cerebral) contusion with open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.12) Cortex (cerebral''', NULL, + '(851.12) Cortex (cerebral) contusion with open intracranial wound, with brief [less than one hour] loss of consciousness', '(851.12) Cortex (cerebral) contusion with open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.13) Cortex (cerebral) contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.13) Cortex (cerebral) contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.13) Cortex (cerebral''', NULL, + '(851.13) Cortex (cerebral) contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(851.13) Cortex (cerebral) contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.14) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.14) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.14) Cortex (cerebral''', NULL, + '(851.14) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(851.14) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.15) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.15) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.15) Cortex (cerebral''', NULL, + '(851.15) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(851.15) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.16) Cortex (cerebral) contusion with open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.16) Cortex (cerebral) contusion with open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.16) Cortex (cerebral''', NULL, + '(851.16) Cortex (cerebral) contusion with open intracranial wound, with loss of consciousness of unspecified duration', '(851.16) Cortex (cerebral) contusion with open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.19) Cortex (cerebral) contusion with open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion with open intracranial wound (851.1)\(851.19) Cortex (cerebral) contusion with open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.19) Cortex (cerebral''', NULL, + '(851.19) Cortex (cerebral) contusion with open intracranial wound, with concussion, unspecified', '(851.19) Cortex (cerebral) contusion with open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''cerebral) contusion without mention of open intracranial wound (851.0''', NULL, + 'Cortex (cerebral) contusion without mention of open intracranial wound (851.0)', 'Cortex (cerebral) contusion without mention of open intracranial wound (851.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.00) Cortex (cerebral) contusion without mention of open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.00) Cortex (cerebral) contusion without mention of open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.00) Cortex (cerebral''', NULL, + '(851.00) Cortex (cerebral) contusion without mention of open intracranial wound, unspecified state of consciousness', '(851.00) Cortex (cerebral) contusion without mention of open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.01) Cortex (cerebral) contusion without mention of open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.01) Cortex (cerebral) contusion without mention of open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.01) Cortex (cerebral''', NULL, + '(851.01) Cortex (cerebral) contusion without mention of open intracranial wound, with no loss of consciousness', '(851.01) Cortex (cerebral) contusion without mention of open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.02) Cortex (cerebral) contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.02) Cortex (cerebral) contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.02) Cortex (cerebral''', NULL, + '(851.02) Cortex (cerebral) contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', '(851.02) Cortex (cerebral) contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.03) Cortex (cerebral) contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.03) Cortex (cerebral) contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.03) Cortex (cerebral''', NULL, + '(851.03) Cortex (cerebral) contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(851.03) Cortex (cerebral) contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.04) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.04) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.04) Cortex (cerebral''', NULL, + '(851.04) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(851.04) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.05) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.05) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.05) Cortex (cerebral''', NULL, + '(851.05) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(851.05) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.06) Cortex (cerebral) contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.06) Cortex (cerebral) contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.06) Cortex (cerebral''', NULL, + '(851.06) Cortex (cerebral) contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration', '(851.06) Cortex (cerebral) contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.09) Cortex (cerebral) contusion without mention of open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\(851.09) Cortex (cerebral) contusion without mention of open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.09) Cortex (cerebral''', NULL, + '(851.09) Cortex (cerebral) contusion without mention of open intracranial wound, with concussion, unspecified', '(851.09) Cortex (cerebral) contusion without mention of open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''cerebral) laceration with open intracranial wound (851.3''', NULL, + 'Cortex (cerebral) laceration with open intracranial wound (851.3)', 'Cortex (cerebral) laceration with open intracranial wound (851.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.30) Cortex (cerebral) laceration with open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.30) Cortex (cerebral) laceration with open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.30) Cortex (cerebral''', NULL, + '(851.30) Cortex (cerebral) laceration with open intracranial wound, unspecified state of consciousness', '(851.30) Cortex (cerebral) laceration with open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.31) Cortex (cerebral) laceration with open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.31) Cortex (cerebral) laceration with open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.31) Cortex (cerebral''', NULL, + '(851.31) Cortex (cerebral) laceration with open intracranial wound, with no loss of consciousness', '(851.31) Cortex (cerebral) laceration with open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.32) Cortex (cerebral) laceration with open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.32) Cortex (cerebral) laceration with open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.32) Cortex (cerebral''', NULL, + '(851.32) Cortex (cerebral) laceration with open intracranial wound, with brief [less than one hour] loss of consciousness', '(851.32) Cortex (cerebral) laceration with open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.33) Cortex (cerebral) laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.33) Cortex (cerebral) laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.33) Cortex (cerebral''', NULL, + '(851.33) Cortex (cerebral) laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(851.33) Cortex (cerebral) laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.34) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.34) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.34) Cortex (cerebral''', NULL, + '(851.34) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(851.34) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.35) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.35) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.35) Cortex (cerebral''', NULL, + '(851.35) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(851.35) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.36) Cortex (cerebral) laceration with open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.36) Cortex (cerebral) laceration with open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.36) Cortex (cerebral''', NULL, + '(851.36) Cortex (cerebral) laceration with open intracranial wound, with loss of consciousness of unspecified duration', '(851.36) Cortex (cerebral) laceration with open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.39) Cortex (cerebral) laceration with open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration with open intracranial wound (851.3)\(851.39) Cortex (cerebral) laceration with open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.39) Cortex (cerebral''', NULL, + '(851.39) Cortex (cerebral) laceration with open intracranial wound, with concussion, unspecified', '(851.39) Cortex (cerebral) laceration with open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''cerebral) laceration without mention of open intracranial wound (851.2''', NULL, + 'Cortex (cerebral) laceration without mention of open intracranial wound (851.2)', 'Cortex (cerebral) laceration without mention of open intracranial wound (851.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.20) Cortex (cerebral) laceration without mention of open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.20) Cortex (cerebral) laceration without mention of open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.20) Cortex (cerebral''', NULL, + '(851.20) Cortex (cerebral) laceration without mention of open intracranial wound, unspecified state of consciousness', '(851.20) Cortex (cerebral) laceration without mention of open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.21) Cortex (cerebral) laceration without mention of open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.21) Cortex (cerebral) laceration without mention of open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.21) Cortex (cerebral''', NULL, + '(851.21) Cortex (cerebral) laceration without mention of open intracranial wound, with no loss of consciousness', '(851.21) Cortex (cerebral) laceration without mention of open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.22) Cortex (cerebral) laceration without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.22) Cortex (cerebral) laceration without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.22) Cortex (cerebral''', NULL, + '(851.22) Cortex (cerebral) laceration without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', '(851.22) Cortex (cerebral) laceration without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.23) Cortex (cerebral) laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.23) Cortex (cerebral) laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.23) Cortex (cerebral''', NULL, + '(851.23) Cortex (cerebral) laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(851.23) Cortex (cerebral) laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.24) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.24) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.24) Cortex (cerebral''', NULL, + '(851.24) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(851.24) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.25) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.25) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.25) Cortex (cerebral''', NULL, + '(851.25) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(851.25) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.26) Cortex (cerebral) laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.26) Cortex (cerebral) laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.26) Cortex (cerebral''', NULL, + '(851.26) Cortex (cerebral) laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration', '(851.26) Cortex (cerebral) laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.29) Cortex (cerebral) laceration without mention of open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\(851.29) Cortex (cerebral) laceration without mention of open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.29) Cortex (cerebral''', NULL, + '(851.29) Cortex (cerebral) laceration without mention of open intracranial wound, with concussion, unspecified', '(851.29) Cortex (cerebral) laceration without mention of open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.9''', NULL, + 'Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)', 'Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.90) Other and unspecified cerebral laceration and contusion, with open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.90) Other and unspecified cerebral laceration and contusion, with open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.90''', NULL, + '(851.90) Other and unspecified cerebral laceration and contusion, with open intracranial wound, unspecified state of consciousness', '(851.90) Other and unspecified cerebral laceration and contusion, with open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.91) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.91) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.91''', NULL, + '(851.91) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with no loss of consciousness', '(851.91) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.92) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.92) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.92''', NULL, + '(851.92) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with brief [less than one hour] loss of consciousness', '(851.92) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.93) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.93) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.93''', NULL, + '(851.93) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(851.93) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.94) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.94) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.94''', NULL, + '(851.94) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(851.94) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.95) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.95) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.95''', NULL, + '(851.95) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(851.95) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.96) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.96) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.96''', NULL, + '(851.96) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with loss of consciousness of unspecified duration', '(851.96) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.99) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\(851.99) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.99''', NULL, + '(851.99) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with concussion, unspecified', '(851.99) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.8''', NULL, + 'Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)', 'Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.80) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.80) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.80''', NULL, + '(851.80) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, unspecified state of consciousness', '(851.80) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.81) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.81) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.81''', NULL, + '(851.81) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with no loss of consciousness', '(851.81) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.82) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.82) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.82''', NULL, + '(851.82) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', '(851.82) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.83) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.83) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.83''', NULL, + '(851.83) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(851.83) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.84) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.84) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.84''', NULL, + '(851.84) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level', '(851.84) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.85) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.85) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.85''', NULL, + '(851.85) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(851.85) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.86) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.86) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.86''', NULL, + '(851.86) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with loss of consciousness of unspecified duration', '(851.86) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.89) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Cerebral laceration and contusion (851)\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\(851.89) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''851.89''', NULL, + '(851.89) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with concussion, unspecified', '(851.89) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''850''', NULL, + 'Concussion (850)', 'Concussion (850)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.0) Concussion with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.0) Concussion with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''850.0''', NULL, + '(850.0) Concussion with no loss of consciousness', '(850.0) Concussion with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.2) Concussion with moderate loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.2) Concussion with moderate loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''850.2''', NULL, + '(850.2) Concussion with moderate loss of consciousness', '(850.2) Concussion with moderate loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.3) Concussion with prolonged loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.3) Concussion with prolonged loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''850.3''', NULL, + '(850.3) Concussion with prolonged loss of consciousness and return to pre-existing conscious level', '(850.3) Concussion with prolonged loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.4) Concussion with prolonged loss of consciousness, without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.4) Concussion with prolonged loss of consciousness, without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''850.4''', NULL, + '(850.4) Concussion with prolonged loss of consciousness, without return to pre-existing conscious level', '(850.4) Concussion with prolonged loss of consciousness, without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.5) Concussion with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.5) Concussion with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''850.5''', NULL, + '(850.5) Concussion with loss of consciousness of unspecified duration', '(850.5) Concussion with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.9) Concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\(850.9) Concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''850.9''', NULL, + '(850.9) Concussion, unspecified', '(850.9) Concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\Concussion with brief loss of consciousness (850.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\Concussion with brief loss of consciousness (850.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''850.1''', NULL, + 'Concussion with brief loss of consciousness (850.1)', 'Concussion with brief loss of consciousness (850.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\Concussion with brief loss of consciousness (850.1)\(850.11) Concussion, with loss of consciousness of 30 minutes or less\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\Concussion with brief loss of consciousness (850.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\Concussion with brief loss of consciousness (850.1)\(850.11) Concussion, with loss of consciousness of 30 minutes or less\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''850.11''', NULL, + '(850.11) Concussion, with loss of consciousness of 30 minutes or less', '(850.11) Concussion, with loss of consciousness of 30 minutes or less', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\Concussion with brief loss of consciousness (850.1)\(850.12) Concussion, with loss of consciousness from 31 to 59 minutes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\Concussion with brief loss of consciousness (850.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Concussion (850)\Concussion with brief loss of consciousness (850.1)\(850.12) Concussion, with loss of consciousness from 31 to 59 minutes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''850.12''', NULL, + '(850.12) Concussion, with loss of consciousness from 31 to 59 minutes', '(850.12) Concussion, with loss of consciousness from 31 to 59 minutes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854''', NULL, + 'Intracranial injury of other and unspecified nature (854)', 'Intracranial injury of other and unspecified nature (854)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.1''', NULL, + 'Intracranial injury of other and unspecified nature with open intracranial wound (854.1)', 'Intracranial injury of other and unspecified nature with open intracranial wound (854.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.10) Intracranial injury of other and unspecified nature with open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.10) Intracranial injury of other and unspecified nature with open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.10''', NULL, + '(854.10) Intracranial injury of other and unspecified nature with open intracranial wound, unspecified state of consciousness', '(854.10) Intracranial injury of other and unspecified nature with open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.11) Intracranial injury of other and unspecified nature with open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.11) Intracranial injury of other and unspecified nature with open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.11''', NULL, + '(854.11) Intracranial injury of other and unspecified nature with open intracranial wound, with no loss of consciousness', '(854.11) Intracranial injury of other and unspecified nature with open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.12) Intracranial injury of other and unspecified nature with open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.12) Intracranial injury of other and unspecified nature with open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.12''', NULL, + '(854.12) Intracranial injury of other and unspecified nature with open intracranial wound, with brief [less than one hour] loss of consciousness', '(854.12) Intracranial injury of other and unspecified nature with open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.13) Intracranial injury of other and unspecified nature with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.13) Intracranial injury of other and unspecified nature with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.13''', NULL, + '(854.13) Intracranial injury of other and unspecified nature with open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(854.13) Intracranial injury of other and unspecified nature with open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.14) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.14) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.14''', NULL, + '(854.14) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(854.14) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.15) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.15) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.15''', NULL, + '(854.15) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(854.15) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.16) Intracranial injury of other and unspecified nature with open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.16) Intracranial injury of other and unspecified nature with open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.16''', NULL, + '(854.16) Intracranial injury of other and unspecified nature with open intracranial wound, with loss of consciousness of unspecified duration', '(854.16) Intracranial injury of other and unspecified nature with open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.19) Intracranial injury of other and unspecified nature with open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\(854.19) Intracranial injury of other and unspecified nature with open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.19''', NULL, + '(854.19) Intracranial injury of other and unspecified nature with open intracranial wound, with concussion, unspecified', '(854.19) Intracranial injury of other and unspecified nature with open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.0''', NULL, + 'Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)', 'Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.00) Intracranial injury of other and unspecified nature without mention of open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.00) Intracranial injury of other and unspecified nature without mention of open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.00''', NULL, + '(854.00) Intracranial injury of other and unspecified nature without mention of open intracranial wound, unspecified state of consciousness', '(854.00) Intracranial injury of other and unspecified nature without mention of open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.01) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.01) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.01''', NULL, + '(854.01) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with no loss of consciousness', '(854.01) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.02) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.02) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.02''', NULL, + '(854.02) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', '(854.02) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.03) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.03) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.03''', NULL, + '(854.03) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(854.03) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.04) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.04) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.04''', NULL, + '(854.04) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(854.04) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.05) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.05) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.05''', NULL, + '(854.05) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(854.05) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.06) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.06) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.06''', NULL, + '(854.06) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with loss of consciousness of unspecified duration', '(854.06) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.09) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Intracranial injury of other and unspecified nature (854)\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\(854.09) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''854.09''', NULL, + '(854.09) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with concussion, unspecified', '(854.09) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853''', NULL, + 'Other and unspecified intracranial hemorrhage following injury (853)', 'Other and unspecified intracranial hemorrhage following injury (853)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.1''', NULL, + 'Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)', 'Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.10) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.10) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.10''', NULL, + '(853.10) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, unspecified state of consciousness', '(853.10) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.11) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.11) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.11''', NULL, + '(853.11) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with no loss of consciousness', '(853.11) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.12) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.12) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.12''', NULL, + '(853.12) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness', '(853.12) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.13) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.13) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.13''', NULL, + '(853.13) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(853.13) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.14) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.14) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.14''', NULL, + '(853.14) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(853.14) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.15) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.15) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.15''', NULL, + '(853.15) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(853.15) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.16) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.16) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.16''', NULL, + '(853.16) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration', '(853.16) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.19) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\(853.19) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.19''', NULL, + '(853.19) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with concussion, unspecified', '(853.19) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.0''', NULL, + 'Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)', 'Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.00) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.00) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.00''', NULL, + '(853.00) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness', '(853.00) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.01) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.01) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.01''', NULL, + '(853.01) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness', '(853.01) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.02) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.02) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.02''', NULL, + '(853.02) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', '(853.02) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.03) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.03) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.03''', NULL, + '(853.03) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(853.03) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.04) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.04) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.04''', NULL, + '(853.04) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level', '(853.04) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.05) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.05) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.05''', NULL, + '(853.05) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(853.05) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.06) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.06) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.06''', NULL, + '(853.06) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration', '(853.06) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.09) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Other and unspecified intracranial hemorrhage following injury (853)\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\(853.09) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''853.09''', NULL, + '(853.09) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified', '(853.09) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852''', NULL, + 'Subarachnoid, subdural, and extradural hemorrhage, following injury (852)', 'Subarachnoid, subdural, and extradural hemorrhage, following injury (852)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.5''', NULL, + 'Extradural hemorrhage following injury with open intracranial wound (852.5)', 'Extradural hemorrhage following injury with open intracranial wound (852.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.50) Extradural hemorrhage following injury with open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.50) Extradural hemorrhage following injury with open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.50''', NULL, + '(852.50) Extradural hemorrhage following injury with open intracranial wound, unspecified state of consciousness', '(852.50) Extradural hemorrhage following injury with open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.51) Extradural hemorrhage following injury with open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.51) Extradural hemorrhage following injury with open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.51''', NULL, + '(852.51) Extradural hemorrhage following injury with open intracranial wound, with no loss of consciousness', '(852.51) Extradural hemorrhage following injury with open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.52) Extradural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.52) Extradural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.52''', NULL, + '(852.52) Extradural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness', '(852.52) Extradural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.53) Extradural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.53) Extradural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.53''', NULL, + '(852.53) Extradural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(852.53) Extradural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.54) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.54) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.54''', NULL, + '(852.54) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(852.54) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.55) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.55) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.55''', NULL, + '(852.55) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(852.55) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.56) Extradural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.56) Extradural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.56''', NULL, + '(852.56) Extradural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration', '(852.56) Extradural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.59) Extradural hemorrhage following injury with open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury with open intracranial wound (852.5)\(852.59) Extradural hemorrhage following injury with open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.59''', NULL, + '(852.59) Extradural hemorrhage following injury with open intracranial wound, with concussion, unspecified', '(852.59) Extradural hemorrhage following injury with open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.4''', NULL, + 'Extradural hemorrhage following injury without mention of open intracranial wound (852.4)', 'Extradural hemorrhage following injury without mention of open intracranial wound (852.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.40) Extradural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.40) Extradural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.40''', NULL, + '(852.40) Extradural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness', '(852.40) Extradural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.41) Extradural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.41) Extradural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.41''', NULL, + '(852.41) Extradural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness', '(852.41) Extradural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.42) Extradural hemorrhage following injury without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.42) Extradural hemorrhage following injury without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.42''', NULL, + '(852.42) Extradural hemorrhage following injury without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness', '(852.42) Extradural hemorrhage following injury without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.43) Extradural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.43) Extradural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.43''', NULL, + '(852.43) Extradural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(852.43) Extradural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.44) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.44) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.44''', NULL, + '(852.44) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(852.44) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.45) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.45) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.45''', NULL, + '(852.45) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(852.45) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.46) Extradural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.46) Extradural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.46''', NULL, + '(852.46) Extradural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration', '(852.46) Extradural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.49) Extradural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\(852.49) Extradural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.49''', NULL, + '(852.49) Extradural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified', '(852.49) Extradural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.1''', NULL, + 'Subarachnoid hemorrhage following injury with open intracranial wound (852.1)', 'Subarachnoid hemorrhage following injury with open intracranial wound (852.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.10) Subarachnoid hemorrhage following injury with open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.10) Subarachnoid hemorrhage following injury with open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.10''', NULL, + '(852.10) Subarachnoid hemorrhage following injury with open intracranial wound, unspecified state of consciousness', '(852.10) Subarachnoid hemorrhage following injury with open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.11) Subarachnoid hemorrhage following injury with open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.11) Subarachnoid hemorrhage following injury with open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.11''', NULL, + '(852.11) Subarachnoid hemorrhage following injury with open intracranial wound, with no loss of consciousness', '(852.11) Subarachnoid hemorrhage following injury with open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.12) Subarachnoid hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.12) Subarachnoid hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.12''', NULL, + '(852.12) Subarachnoid hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness', '(852.12) Subarachnoid hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.13) Subarachnoid hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.13) Subarachnoid hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.13''', NULL, + '(852.13) Subarachnoid hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(852.13) Subarachnoid hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.14) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.14) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.14) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours''', NULL, + '(852.14) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level', '(852.14) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.15) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.15) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.15''', NULL, + '(852.15) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(852.15) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.16) Subarachnoid hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.16) Subarachnoid hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.16''', NULL, + '(852.16) Subarachnoid hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration', '(852.16) Subarachnoid hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.19) Subarachnoid hemorrhage following injury with open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\(852.19) Subarachnoid hemorrhage following injury with open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.19''', NULL, + '(852.19) Subarachnoid hemorrhage following injury with open intracranial wound, with concussion, unspecified', '(852.19) Subarachnoid hemorrhage following injury with open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.0''', NULL, + 'Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)', 'Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.00) Subarachnoid hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.00) Subarachnoid hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.00''', NULL, + '(852.00) Subarachnoid hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness', '(852.00) Subarachnoid hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.01) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.01) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.01''', NULL, + '(852.01) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness', '(852.01) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.02) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.02) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.02''', NULL, + '(852.02) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', '(852.02) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.03) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.03) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.03''', NULL, + '(852.03) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(852.03) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.04) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.04) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.04''', NULL, + '(852.04) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(852.04) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.05) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.05) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.05''', NULL, + '(852.05) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(852.05) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.06) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.06) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.06''', NULL, + '(852.06) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration', '(852.06) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.09) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\(852.09) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.09''', NULL, + '(852.09) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified', '(852.09) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.2''', NULL, + 'Subdural hemorrhage following injury without mention of open intracranial wound (852.2)', 'Subdural hemorrhage following injury without mention of open intracranial wound (852.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.20) Subdural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.20) Subdural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.20''', NULL, + '(852.20) Subdural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness', '(852.20) Subdural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.21) Subdural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.21) Subdural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.21''', NULL, + '(852.21) Subdural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness', '(852.21) Subdural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.22) Subdural hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.22) Subdural hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.22''', NULL, + '(852.22) Subdural hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', '(852.22) Subdural hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.23) Subdural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.23) Subdural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.23''', NULL, + '(852.23) Subdural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(852.23) Subdural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.24) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.24) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.24''', NULL, + '(852.24) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(852.24) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.25) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.25) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.25''', NULL, + '(852.25) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(852.25) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.26) Subdural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.26) Subdural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.26''', NULL, + '(852.26) Subdural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration', '(852.26) Subdural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.29) Subdural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\(852.29) Subdural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.29''', NULL, + '(852.29) Subdural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified', '(852.29) Subdural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.3''', NULL, + 'Subdural hemorrhage following injury, with open intracranial wound (852.3)', 'Subdural hemorrhage following injury, with open intracranial wound (852.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.30) Subdural hemorrhage following injury with open intracranial wound, unspecified state of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.30) Subdural hemorrhage following injury with open intracranial wound, unspecified state of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.30''', NULL, + '(852.30) Subdural hemorrhage following injury with open intracranial wound, unspecified state of consciousness', '(852.30) Subdural hemorrhage following injury with open intracranial wound, unspecified state of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.31) Subdural hemorrhage following injury with open intracranial wound, with no loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.31) Subdural hemorrhage following injury with open intracranial wound, with no loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.31''', NULL, + '(852.31) Subdural hemorrhage following injury with open intracranial wound, with no loss of consciousness', '(852.31) Subdural hemorrhage following injury with open intracranial wound, with no loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.32) Subdural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.32) Subdural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.32''', NULL, + '(852.32) Subdural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness', '(852.32) Subdural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.33) Subdural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.33) Subdural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.33''', NULL, + '(852.33) Subdural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness', '(852.33) Subdural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.34) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.34) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.34''', NULL, + '(852.34) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', '(852.34) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.35) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.35) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.35''', NULL, + '(852.35) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', '(852.35) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.36) Subdural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.36) Subdural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.36''', NULL, + '(852.36) Subdural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration', '(852.36) Subdural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.39) Subdural hemorrhage following injury with open intracranial wound, with concussion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Intracranial injury, excluding those with skull fracture (850-854.99)\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\Subdural hemorrhage following injury, with open intracranial wound (852.3)\(852.39) Subdural hemorrhage following injury with open intracranial wound, with concussion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''852.39''', NULL, + '(852.39) Subdural hemorrhage following injury with open intracranial wound, with concussion, unspecified', '(852.39) Subdural hemorrhage following injury with open intracranial wound, with concussion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''905'' AND ''909.99''', NULL, + 'Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)', 'Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''906''', NULL, + 'Late effects of injuries to skin and subcutaneous tissues (906)', 'Late effects of injuries to skin and subcutaneous tissues (906)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.0) Late effect of open wound of head, neck, and trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.0) Late effect of open wound of head, neck, and trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''906.0''', NULL, + '(906.0) Late effect of open wound of head, neck, and trunk', '(906.0) Late effect of open wound of head, neck, and trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.1) Late effect of open wound of extremities without mention of tendon injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.1) Late effect of open wound of extremities without mention of tendon injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''906.1''', NULL, + '(906.1) Late effect of open wound of extremities without mention of tendon injury', '(906.1) Late effect of open wound of extremities without mention of tendon injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.2) Late effect of superficial injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.2) Late effect of superficial injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''906.2''', NULL, + '(906.2) Late effect of superficial injury', '(906.2) Late effect of superficial injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.3) Late effect of contusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.3) Late effect of contusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''906.3''', NULL, + '(906.3) Late effect of contusion', '(906.3) Late effect of contusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.4) Late effect of crushing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.4) Late effect of crushing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''906.4''', NULL, + '(906.4) Late effect of crushing', '(906.4) Late effect of crushing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.5) Late effect of burn of eye, face, head, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.5) Late effect of burn of eye, face, head, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''906.5''', NULL, + '(906.5) Late effect of burn of eye, face, head, and neck', '(906.5) Late effect of burn of eye, face, head, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.6) Late effect of burn of wrist and hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.6) Late effect of burn of wrist and hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''906.6''', NULL, + '(906.6) Late effect of burn of wrist and hand', '(906.6) Late effect of burn of wrist and hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.7) Late effect of burn of other extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.7) Late effect of burn of other extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''906.7''', NULL, + '(906.7) Late effect of burn of other extremities', '(906.7) Late effect of burn of other extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.8) Late effect of burns of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.8) Late effect of burns of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''906.8''', NULL, + '(906.8) Late effect of burns of other specified sites', '(906.8) Late effect of burns of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.9) Late effect of burn of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to skin and subcutaneous tissues (906)\(906.9) Late effect of burn of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''906.9''', NULL, + '(906.9) Late effect of burn of unspecified site', '(906.9) Late effect of burn of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''907''', NULL, + 'Late effects of injuries to the nervous system (907)', 'Late effects of injuries to the nervous system (907)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.0) Late effect of intracranial injury without mention of skull fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.0) Late effect of intracranial injury without mention of skull fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''907.0''', NULL, + '(907.0) Late effect of intracranial injury without mention of skull fracture', '(907.0) Late effect of intracranial injury without mention of skull fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.1) Late effect of injury to cranial nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.1) Late effect of injury to cranial nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''907.1''', NULL, + '(907.1) Late effect of injury to cranial nerve', '(907.1) Late effect of injury to cranial nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.2) Late effect of spinal cord injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.2) Late effect of spinal cord injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''907.2''', NULL, + '(907.2) Late effect of spinal cord injury', '(907.2) Late effect of spinal cord injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.3) Late effect of injury to nerve root(s), spinal plexus(es), and other nerves of trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.3) Late effect of injury to nerve root(s), spinal plexus(es), and other nerves of trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''907.3) Late effect of injury to nerve root(s), spinal plexus(es''', NULL, + '(907.3) Late effect of injury to nerve root(s), spinal plexus(es), and other nerves of trunk', '(907.3) Late effect of injury to nerve root(s), spinal plexus(es), and other nerves of trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.4) Late effect of injury to peripheral nerve of shoulder girdle and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.4) Late effect of injury to peripheral nerve of shoulder girdle and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''907.4''', NULL, + '(907.4) Late effect of injury to peripheral nerve of shoulder girdle and upper limb', '(907.4) Late effect of injury to peripheral nerve of shoulder girdle and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.5) Late effect of injury to peripheral nerve of pelvic girdle and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.5) Late effect of injury to peripheral nerve of pelvic girdle and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''907.5''', NULL, + '(907.5) Late effect of injury to peripheral nerve of pelvic girdle and lower limb', '(907.5) Late effect of injury to peripheral nerve of pelvic girdle and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.9) Late effect of injury to other and unspecified nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of injuries to the nervous system (907)\(907.9) Late effect of injury to other and unspecified nerve\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''907.9''', NULL, + '(907.9) Late effect of injury to other and unspecified nerve', '(907.9) Late effect of injury to other and unspecified nerve', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''905''', NULL, + 'Late effects of musculoskeletal and connective tissue injuries (905)', 'Late effects of musculoskeletal and connective tissue injuries (905)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.0) Late effect of fracture of skull and face bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.0) Late effect of fracture of skull and face bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''905.0''', NULL, + '(905.0) Late effect of fracture of skull and face bones', '(905.0) Late effect of fracture of skull and face bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.1) Late effect of fracture of spine and trunk without mention of spinal cord lesion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.1) Late effect of fracture of spine and trunk without mention of spinal cord lesion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''905.1''', NULL, + '(905.1) Late effect of fracture of spine and trunk without mention of spinal cord lesion', '(905.1) Late effect of fracture of spine and trunk without mention of spinal cord lesion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.2) Late effect of fracture of upper extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.2) Late effect of fracture of upper extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''905.2''', NULL, + '(905.2) Late effect of fracture of upper extremities', '(905.2) Late effect of fracture of upper extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.3) Late effect of fracture of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.3) Late effect of fracture of neck of femur\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''905.3''', NULL, + '(905.3) Late effect of fracture of neck of femur', '(905.3) Late effect of fracture of neck of femur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.4) Late effect of fracture of lower extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.4) Late effect of fracture of lower extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''905.4''', NULL, + '(905.4) Late effect of fracture of lower extremities', '(905.4) Late effect of fracture of lower extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.5) Late effect of fracture of multiple and unspecified bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.5) Late effect of fracture of multiple and unspecified bones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''905.5''', NULL, + '(905.5) Late effect of fracture of multiple and unspecified bones', '(905.5) Late effect of fracture of multiple and unspecified bones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.6) Late effect of dislocation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.6) Late effect of dislocation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''905.6''', NULL, + '(905.6) Late effect of dislocation', '(905.6) Late effect of dislocation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.7) Late effect of sprain and strain without mention of tendon injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.7) Late effect of sprain and strain without mention of tendon injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''905.7''', NULL, + '(905.7) Late effect of sprain and strain without mention of tendon injury', '(905.7) Late effect of sprain and strain without mention of tendon injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.8) Late effect of tendon injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.8) Late effect of tendon injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''905.8''', NULL, + '(905.8) Late effect of tendon injury', '(905.8) Late effect of tendon injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.9) Late effect of traumatic amputation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of musculoskeletal and connective tissue injuries (905)\(905.9) Late effect of traumatic amputation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''905.9''', NULL, + '(905.9) Late effect of traumatic amputation', '(905.9) Late effect of traumatic amputation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''909''', NULL, + 'Late effects of other and unspecified external causes (909)', 'Late effects of other and unspecified external causes (909)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.0) Late effect of poisoning due to drug, medicinal or biological substance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.0) Late effect of poisoning due to drug, medicinal or biological substance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''909.0''', NULL, + '(909.0) Late effect of poisoning due to drug, medicinal or biological substance', '(909.0) Late effect of poisoning due to drug, medicinal or biological substance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.1) Late effect of toxic effects of nonmedical substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.1) Late effect of toxic effects of nonmedical substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''909.1''', NULL, + '(909.1) Late effect of toxic effects of nonmedical substances', '(909.1) Late effect of toxic effects of nonmedical substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.2) Late effect of radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.2) Late effect of radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''909.2''', NULL, + '(909.2) Late effect of radiation', '(909.2) Late effect of radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.3) Late effect of complications of surgical and medical care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.3) Late effect of complications of surgical and medical care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''909.3''', NULL, + '(909.3) Late effect of complications of surgical and medical care', '(909.3) Late effect of complications of surgical and medical care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.4) Late effect of certain other external causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.4) Late effect of certain other external causes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''909.4''', NULL, + '(909.4) Late effect of certain other external causes', '(909.4) Late effect of certain other external causes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.5) Late effect of adverse effect of drug, medicinal or biological substance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.5) Late effect of adverse effect of drug, medicinal or biological substance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''909.5''', NULL, + '(909.5) Late effect of adverse effect of drug, medicinal or biological substance', '(909.5) Late effect of adverse effect of drug, medicinal or biological substance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.9) Late effect of other and unspecified external causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified external causes (909)\(909.9) Late effect of other and unspecified external causes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''909.9''', NULL, + '(909.9) Late effect of other and unspecified external causes', '(909.9) Late effect of other and unspecified external causes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''908''', NULL, + 'Late effects of other and unspecified injuries (908)', 'Late effects of other and unspecified injuries (908)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.0) Late effect of internal injury to chest\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.0) Late effect of internal injury to chest\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''908.0''', NULL, + '(908.0) Late effect of internal injury to chest', '(908.0) Late effect of internal injury to chest', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.1) Late effect of internal injury to intra-abdominal organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.1) Late effect of internal injury to intra-abdominal organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''908.1''', NULL, + '(908.1) Late effect of internal injury to intra-abdominal organs', '(908.1) Late effect of internal injury to intra-abdominal organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.2) Late effect of internal injury to other internal organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.2) Late effect of internal injury to other internal organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''908.2''', NULL, + '(908.2) Late effect of internal injury to other internal organs', '(908.2) Late effect of internal injury to other internal organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.3) Late effect of injury to blood vessel of head, neck, and extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.3) Late effect of injury to blood vessel of head, neck, and extremities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''908.3''', NULL, + '(908.3) Late effect of injury to blood vessel of head, neck, and extremities', '(908.3) Late effect of injury to blood vessel of head, neck, and extremities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.4) Late effect of injury to blood vessel of thorax, abdomen, and pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.4) Late effect of injury to blood vessel of thorax, abdomen, and pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''908.4''', NULL, + '(908.4) Late effect of injury to blood vessel of thorax, abdomen, and pelvis', '(908.4) Late effect of injury to blood vessel of thorax, abdomen, and pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.5) Late effect of foreign body in orifice\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.5) Late effect of foreign body in orifice\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''908.5''', NULL, + '(908.5) Late effect of foreign body in orifice', '(908.5) Late effect of foreign body in orifice', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.6) Late effect of certain complications of trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.6) Late effect of certain complications of trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''908.6''', NULL, + '(908.6) Late effect of certain complications of trauma', '(908.6) Late effect of certain complications of trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.9) Late effect of unspecified injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\Late effects of other and unspecified injuries (908)\(908.9) Late effect of unspecified injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''908.9''', NULL, + '(908.9) Late effect of unspecified injury', '(908.9) Late effect of unspecified injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''870'' AND ''897.99''', NULL, + 'Open wounds (870-897.99)', 'Open wounds (870-897.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''870'' AND ''879.99''', NULL, + 'OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)', 'OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of back (876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of back (876)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''876''', NULL, + 'Open wound of back (876)', 'Open wound of back (876)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of back (876)\(876.0) Open wound of back, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of back (876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of back (876)\(876.0) Open wound of back, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''876.0''', NULL, + '(876.0) Open wound of back, without mention of complication', '(876.0) Open wound of back, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of back (876)\(876.1) Open wound of back, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of back (876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of back (876)\(876.1) Open wound of back, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''876.1''', NULL, + '(876.1) Open wound of back, complicated', '(876.1) Open wound of back, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of buttock (877)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of buttock (877)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''877''', NULL, + 'Open wound of buttock (877)', 'Open wound of buttock (877)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of buttock (877)\(877.0) Open wound of buttock, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of buttock (877)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of buttock (877)\(877.0) Open wound of buttock, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''877.0''', NULL, + '(877.0) Open wound of buttock, without mention of complication', '(877.0) Open wound of buttock, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of buttock (877)\(877.1) Open wound of buttock, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of buttock (877)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of buttock (877)\(877.1) Open wound of buttock, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''877.1''', NULL, + '(877.1) Open wound of buttock, complicated', '(877.1) Open wound of buttock, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of chest (wall) (875)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of chest (wall) (875)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''wall) (875''', NULL, + 'Open wound of chest (wall) (875)', 'Open wound of chest (wall) (875)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of chest (wall) (875)\(875.0) Open wound of chest (wall), without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of chest (wall) (875)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of chest (wall) (875)\(875.0) Open wound of chest (wall), without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''875.0) Open wound of chest (wall''', NULL, + '(875.0) Open wound of chest (wall), without mention of complication', '(875.0) Open wound of chest (wall), without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of chest (wall) (875)\(875.1) Open wound of chest (wall), complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of chest (wall) (875)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of chest (wall) (875)\(875.1) Open wound of chest (wall), complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''875.1) Open wound of chest (wall''', NULL, + '(875.1) Open wound of chest (wall), complicated', '(875.1) Open wound of chest (wall), complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872''', NULL, + 'Open wound of ear (872)', 'Open wound of ear (872)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\(872.8) Open wound of ear, part unspecified, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\(872.8) Open wound of ear, part unspecified, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.8''', NULL, + '(872.8) Open wound of ear, part unspecified, without mention of complication', '(872.8) Open wound of ear, part unspecified, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\(872.9) Open wound of ear, part unspecified, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\(872.9) Open wound of ear, part unspecified, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.9''', NULL, + '(872.9) Open wound of ear, part unspecified, complicated', '(872.9) Open wound of ear, part unspecified, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, complicated (872.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, complicated (872.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.1''', NULL, + 'Open wound of external ear, complicated (872.1)', 'Open wound of external ear, complicated (872.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, complicated (872.1)\(872.10) Open wound of external ear, unspecified site, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, complicated (872.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, complicated (872.1)\(872.10) Open wound of external ear, unspecified site, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.10''', NULL, + '(872.10) Open wound of external ear, unspecified site, complicated', '(872.10) Open wound of external ear, unspecified site, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, complicated (872.1)\(872.11) Open wound of auricle, ear, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, complicated (872.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, complicated (872.1)\(872.11) Open wound of auricle, ear, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.11''', NULL, + '(872.11) Open wound of auricle, ear, complicated', '(872.11) Open wound of auricle, ear, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, complicated (872.1)\(872.12) Open wound of auditory canal, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, complicated (872.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, complicated (872.1)\(872.12) Open wound of auditory canal, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.12''', NULL, + '(872.12) Open wound of auditory canal, complicated', '(872.12) Open wound of auditory canal, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, without mention of complication (872.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, without mention of complication (872.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.0''', NULL, + 'Open wound of external ear, without mention of complication (872.0)', 'Open wound of external ear, without mention of complication (872.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, without mention of complication (872.0)\(872.00) Open wound of external ear, unspecified site, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, without mention of complication (872.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, without mention of complication (872.0)\(872.00) Open wound of external ear, unspecified site, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.00''', NULL, + '(872.00) Open wound of external ear, unspecified site, without mention of complication', '(872.00) Open wound of external ear, unspecified site, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, without mention of complication (872.0)\(872.01) Open wound of auricle, ear, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, without mention of complication (872.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, without mention of complication (872.0)\(872.01) Open wound of auricle, ear, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.01''', NULL, + '(872.01) Open wound of auricle, ear, without mention of complication', '(872.01) Open wound of auricle, ear, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, without mention of complication (872.0)\(872.02) Open wound of auditory canal, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, without mention of complication (872.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of external ear, without mention of complication (872.0)\(872.02) Open wound of auditory canal, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.02''', NULL, + '(872.02) Open wound of auditory canal, without mention of complication', '(872.02) Open wound of auditory canal, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.7''', NULL, + 'Open wound of other specified parts of ear, complicated (872.7)', 'Open wound of other specified parts of ear, complicated (872.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\(872.71) Open wound of ear drum, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\(872.71) Open wound of ear drum, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.71''', NULL, + '(872.71) Open wound of ear drum, complicated', '(872.71) Open wound of ear drum, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\(872.72) Open wound of ossicles, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\(872.72) Open wound of ossicles, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.72''', NULL, + '(872.72) Open wound of ossicles, complicated', '(872.72) Open wound of ossicles, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\(872.73) Open wound of eustachian tube, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\(872.73) Open wound of eustachian tube, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.73''', NULL, + '(872.73) Open wound of eustachian tube, complicated', '(872.73) Open wound of eustachian tube, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\(872.74) Open wound of cochlea, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\(872.74) Open wound of cochlea, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.74''', NULL, + '(872.74) Open wound of cochlea, complicated', '(872.74) Open wound of cochlea, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\(872.79) Open wound of other and multiple sites of ear, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, complicated (872.7)\(872.79) Open wound of other and multiple sites of ear, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.79''', NULL, + '(872.79) Open wound of other and multiple sites of ear, complicated', '(872.79) Open wound of other and multiple sites of ear, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.6''', NULL, + 'Open wound of other specified parts of ear, without mention of complication (872.6)', 'Open wound of other specified parts of ear, without mention of complication (872.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\(872.61) Open wound of ear drum, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\(872.61) Open wound of ear drum, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.61''', NULL, + '(872.61) Open wound of ear drum, without mention of complication', '(872.61) Open wound of ear drum, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\(872.62) Open wound of ossicles, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\(872.62) Open wound of ossicles, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.62''', NULL, + '(872.62) Open wound of ossicles, without mention of complication', '(872.62) Open wound of ossicles, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\(872.63) Open wound of eustachian tube, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\(872.63) Open wound of eustachian tube, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.63''', NULL, + '(872.63) Open wound of eustachian tube, without mention of complication', '(872.63) Open wound of eustachian tube, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\(872.64) Open wound of cochlea, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\(872.64) Open wound of cochlea, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.64''', NULL, + '(872.64) Open wound of cochlea, without mention of complication', '(872.64) Open wound of cochlea, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\(872.69) Open wound of other and multiple sites of ear, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ear (872)\Open wound of other specified parts of ear, without mention of complication (872.6)\(872.69) Open wound of other and multiple sites of ear, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''872.69''', NULL, + '(872.69) Open wound of other and multiple sites of ear, without mention of complication', '(872.69) Open wound of other and multiple sites of ear, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''871''', NULL, + 'Open wound of eyeball (871)', 'Open wound of eyeball (871)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.0) Ocular laceration without prolapse of intraocular tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.0) Ocular laceration without prolapse of intraocular tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''871.0''', NULL, + '(871.0) Ocular laceration without prolapse of intraocular tissue', '(871.0) Ocular laceration without prolapse of intraocular tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.1) Ocular laceration with prolapse or exposure of intraocular tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.1) Ocular laceration with prolapse or exposure of intraocular tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''871.1''', NULL, + '(871.1) Ocular laceration with prolapse or exposure of intraocular tissue', '(871.1) Ocular laceration with prolapse or exposure of intraocular tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.2) Rupture of eye with partial loss of intraocular tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.2) Rupture of eye with partial loss of intraocular tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''871.2''', NULL, + '(871.2) Rupture of eye with partial loss of intraocular tissue', '(871.2) Rupture of eye with partial loss of intraocular tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.3) Avulsion of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.3) Avulsion of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''871.3''', NULL, + '(871.3) Avulsion of eye', '(871.3) Avulsion of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.4) Unspecified laceration of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.4) Unspecified laceration of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''871.4''', NULL, + '(871.4) Unspecified laceration of eye', '(871.4) Unspecified laceration of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.5) Penetration of eyeball with magnetic foreign body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.5) Penetration of eyeball with magnetic foreign body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''871.5''', NULL, + '(871.5) Penetration of eyeball with magnetic foreign body', '(871.5) Penetration of eyeball with magnetic foreign body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.6) Penetration of eyeball with (nonmagnetic) foreign body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.6) Penetration of eyeball with (nonmagnetic) foreign body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''871.6) Penetration of eyeball with (nonmagnetic''', NULL, + '(871.6) Penetration of eyeball with (nonmagnetic) foreign body', '(871.6) Penetration of eyeball with (nonmagnetic) foreign body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.7) Unspecified ocular penetration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.7) Unspecified ocular penetration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''871.7''', NULL, + '(871.7) Unspecified ocular penetration', '(871.7) Unspecified ocular penetration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.9) Unspecified open wound of eyeball\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of eyeball (871)\(871.9) Unspecified open wound of eyeball\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''871.9''', NULL, + '(871.9) Unspecified open wound of eyeball', '(871.9) Unspecified open wound of eyeball', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''external), including traumatic amputation (878''', NULL, + 'Open wound of genital organs (external), including traumatic amputation (878)', 'Open wound of genital organs (external), including traumatic amputation (878)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.0) Open wound of penis, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.0) Open wound of penis, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''878.0''', NULL, + '(878.0) Open wound of penis, without mention of complication', '(878.0) Open wound of penis, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.1) Open wound of penis, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.1) Open wound of penis, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''878.1''', NULL, + '(878.1) Open wound of penis, complicated', '(878.1) Open wound of penis, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.2) Open wound of scrotum and testes, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.2) Open wound of scrotum and testes, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''878.2''', NULL, + '(878.2) Open wound of scrotum and testes, without mention of complication', '(878.2) Open wound of scrotum and testes, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.3) Open wound of scrotum and testes, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.3) Open wound of scrotum and testes, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''878.3''', NULL, + '(878.3) Open wound of scrotum and testes, complicated', '(878.3) Open wound of scrotum and testes, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.4) Open wound of vulva, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.4) Open wound of vulva, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''878.4''', NULL, + '(878.4) Open wound of vulva, without mention of complication', '(878.4) Open wound of vulva, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.5) Open wound of vulva, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.5) Open wound of vulva, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''878.5''', NULL, + '(878.5) Open wound of vulva, complicated', '(878.5) Open wound of vulva, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.6) Open wound of vagina, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.6) Open wound of vagina, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''878.6''', NULL, + '(878.6) Open wound of vagina, without mention of complication', '(878.6) Open wound of vagina, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.7) Open wound of vagina, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.7) Open wound of vagina, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''878.7''', NULL, + '(878.7) Open wound of vagina, complicated', '(878.7) Open wound of vagina, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.8) Open wound of other and unspecified parts of genital organs (external), without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.8) Open wound of other and unspecified parts of genital organs (external), without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''878.8) Open wound of other and unspecified parts of genital organs (external''', NULL, + '(878.8) Open wound of other and unspecified parts of genital organs (external), without mention of complication', '(878.8) Open wound of other and unspecified parts of genital organs (external), without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.9) Open wound of other and unspecified parts of genital organs (external), complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of genital organs (external), including traumatic amputation (878)\(878.9) Open wound of other and unspecified parts of genital organs (external), complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''878.9) Open wound of other and unspecified parts of genital organs (external''', NULL, + '(878.9) Open wound of other and unspecified parts of genital organs (external), complicated', '(878.9) Open wound of other and unspecified parts of genital organs (external), complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874''', NULL, + 'Open wound of neck (874)', 'Open wound of neck (874)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.2) Open wound of thyroid gland, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.2) Open wound of thyroid gland, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.2''', NULL, + '(874.2) Open wound of thyroid gland, without mention of complication', '(874.2) Open wound of thyroid gland, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.3) Open wound of thyroid gland, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.3) Open wound of thyroid gland, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.3''', NULL, + '(874.3) Open wound of thyroid gland, complicated', '(874.3) Open wound of thyroid gland, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.4) Open wound of pharynx, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.4) Open wound of pharynx, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.4''', NULL, + '(874.4) Open wound of pharynx, without mention of complication', '(874.4) Open wound of pharynx, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.5) Open wound of pharynx, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.5) Open wound of pharynx, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.5''', NULL, + '(874.5) Open wound of pharynx, complicated', '(874.5) Open wound of pharynx, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.8) Open wound of other and unspecified parts of neck, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.8) Open wound of other and unspecified parts of neck, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.8''', NULL, + '(874.8) Open wound of other and unspecified parts of neck, without mention of complication', '(874.8) Open wound of other and unspecified parts of neck, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.9) Open wound of other and unspecified parts of neck, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\(874.9) Open wound of other and unspecified parts of neck, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.9''', NULL, + '(874.9) Open wound of other and unspecified parts of neck, complicated', '(874.9) Open wound of other and unspecified parts of neck, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, complicated (874.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, complicated (874.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.1''', NULL, + 'Open wound of larynx and trachea, complicated (874.1)', 'Open wound of larynx and trachea, complicated (874.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, complicated (874.1)\(874.10) Open wound of larynx with trachea, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, complicated (874.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, complicated (874.1)\(874.10) Open wound of larynx with trachea, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.10''', NULL, + '(874.10) Open wound of larynx with trachea, complicated', '(874.10) Open wound of larynx with trachea, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, complicated (874.1)\(874.11) Open wound of larynx, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, complicated (874.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, complicated (874.1)\(874.11) Open wound of larynx, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.11''', NULL, + '(874.11) Open wound of larynx, complicated', '(874.11) Open wound of larynx, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, complicated (874.1)\(874.12) Open wound of trachea, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, complicated (874.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, complicated (874.1)\(874.12) Open wound of trachea, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.12''', NULL, + '(874.12) Open wound of trachea, complicated', '(874.12) Open wound of trachea, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, without mention of complication (874.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, without mention of complication (874.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.0''', NULL, + 'Open wound of larynx and trachea, without mention of complication (874.0)', 'Open wound of larynx and trachea, without mention of complication (874.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, without mention of complication (874.0)\(874.00) Open wound of larynx with trachea, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, without mention of complication (874.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, without mention of complication (874.0)\(874.00) Open wound of larynx with trachea, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.00''', NULL, + '(874.00) Open wound of larynx with trachea, without mention of complication', '(874.00) Open wound of larynx with trachea, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, without mention of complication (874.0)\(874.01) Open wound of larynx, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, without mention of complication (874.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, without mention of complication (874.0)\(874.01) Open wound of larynx, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.01''', NULL, + '(874.01) Open wound of larynx, without mention of complication', '(874.01) Open wound of larynx, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, without mention of complication (874.0)\(874.02) Open wound of trachea, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, without mention of complication (874.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of neck (874)\Open wound of larynx and trachea, without mention of complication (874.0)\(874.02) Open wound of trachea, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''874.02''', NULL, + '(874.02) Open wound of trachea, without mention of complication', '(874.02) Open wound of trachea, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''870''', NULL, + 'Open wound of ocular adnexa (870)', 'Open wound of ocular adnexa (870)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.0) Laceration of skin of eyelid and periocular area\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.0) Laceration of skin of eyelid and periocular area\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''870.0''', NULL, + '(870.0) Laceration of skin of eyelid and periocular area', '(870.0) Laceration of skin of eyelid and periocular area', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.1) Laceration of eyelid, full-thickness, not involving lacrimal passages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.1) Laceration of eyelid, full-thickness, not involving lacrimal passages\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''870.1''', NULL, + '(870.1) Laceration of eyelid, full-thickness, not involving lacrimal passages', '(870.1) Laceration of eyelid, full-thickness, not involving lacrimal passages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.2) Laceration of eyelid involving lacrimal passages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.2) Laceration of eyelid involving lacrimal passages\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''870.2''', NULL, + '(870.2) Laceration of eyelid involving lacrimal passages', '(870.2) Laceration of eyelid involving lacrimal passages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.3) Penetrating wound of orbit, without mention of foreign body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.3) Penetrating wound of orbit, without mention of foreign body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''870.3''', NULL, + '(870.3) Penetrating wound of orbit, without mention of foreign body', '(870.3) Penetrating wound of orbit, without mention of foreign body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.4) Penetrating wound of orbit with foreign body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.4) Penetrating wound of orbit with foreign body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''870.4''', NULL, + '(870.4) Penetrating wound of orbit with foreign body', '(870.4) Penetrating wound of orbit with foreign body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.8) Other specified open wounds of ocular adnexa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.8) Other specified open wounds of ocular adnexa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''870.8''', NULL, + '(870.8) Other specified open wounds of ocular adnexa', '(870.8) Other specified open wounds of ocular adnexa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.9) Unspecified open wound of ocular adnexa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of ocular adnexa (870)\(870.9) Unspecified open wound of ocular adnexa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''870.9''', NULL, + '(870.9) Unspecified open wound of ocular adnexa', '(870.9) Unspecified open wound of ocular adnexa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''879''', NULL, + 'Open wound of other and unspecified sites, except limbs (879)', 'Open wound of other and unspecified sites, except limbs (879)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.0) Open wound of breast, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.0) Open wound of breast, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''879.0''', NULL, + '(879.0) Open wound of breast, without mention of complication', '(879.0) Open wound of breast, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.1) Open wound of breast, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.1) Open wound of breast, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''879.1''', NULL, + '(879.1) Open wound of breast, complicated', '(879.1) Open wound of breast, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.2) Open wound of abdominal wall, anterior, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.2) Open wound of abdominal wall, anterior, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''879.2''', NULL, + '(879.2) Open wound of abdominal wall, anterior, without mention of complication', '(879.2) Open wound of abdominal wall, anterior, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.3) Open wound of abdominal wall, anterior, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.3) Open wound of abdominal wall, anterior, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''879.3''', NULL, + '(879.3) Open wound of abdominal wall, anterior, complicated', '(879.3) Open wound of abdominal wall, anterior, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.4) Open wound of abdominal wall, lateral, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.4) Open wound of abdominal wall, lateral, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''879.4''', NULL, + '(879.4) Open wound of abdominal wall, lateral, without mention of complication', '(879.4) Open wound of abdominal wall, lateral, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.5) Open wound of abdominal wall, lateral, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.5) Open wound of abdominal wall, lateral, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''879.5''', NULL, + '(879.5) Open wound of abdominal wall, lateral, complicated', '(879.5) Open wound of abdominal wall, lateral, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.6) Open wound of other and unspecified parts of trunk, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.6) Open wound of other and unspecified parts of trunk, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''879.6''', NULL, + '(879.6) Open wound of other and unspecified parts of trunk, without mention of complication', '(879.6) Open wound of other and unspecified parts of trunk, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.7) Open wound of other and unspecified parts of trunk, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.7) Open wound of other and unspecified parts of trunk, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''879.7''', NULL, + '(879.7) Open wound of other and unspecified parts of trunk, complicated', '(879.7) Open wound of other and unspecified parts of trunk, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.8) Open wound(s) (multiple) of unspecified site(s), without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.8) Open wound(s) (multiple) of unspecified site(s), without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''879.8) Open wound(s) (multiple) of unspecified site(s''', NULL, + '(879.8) Open wound(s) (multiple) of unspecified site(s), without mention of complication', '(879.8) Open wound(s) (multiple) of unspecified site(s), without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.9) Open wound(s) (multiple) of unspecified site(s), complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Open wound of other and unspecified sites, except limbs (879)\(879.9) Open wound(s) (multiple) of unspecified site(s), complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''879.9) Open wound(s) (multiple) of unspecified site(s''', NULL, + '(879.9) Open wound(s) (multiple) of unspecified site(s), complicated', '(879.9) Open wound(s) (multiple) of unspecified site(s), complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873''', NULL, + 'Other open wound of head (873)', 'Other open wound of head (873)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\(873.0) Open wound of scalp, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\(873.0) Open wound of scalp, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.0''', NULL, + '(873.0) Open wound of scalp, without mention of complication', '(873.0) Open wound of scalp, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\(873.1) Open wound of scalp, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\(873.1) Open wound of scalp, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.1''', NULL, + '(873.1) Open wound of scalp, complicated', '(873.1) Open wound of scalp, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\(873.8) Other and unspecified open wound of head without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\(873.8) Other and unspecified open wound of head without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.8''', NULL, + '(873.8) Other and unspecified open wound of head without mention of complication', '(873.8) Other and unspecified open wound of head without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\(873.9) Other and unspecified open wound of head, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\(873.9) Other and unspecified open wound of head, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.9''', NULL, + '(873.9) Other and unspecified open wound of head, complicated', '(873.9) Other and unspecified open wound of head, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.5''', NULL, + 'Open wound of face, complicated (873.5)', 'Open wound of face, complicated (873.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.50) Open wound of face, unspecified site, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.50) Open wound of face, unspecified site, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.50''', NULL, + '(873.50) Open wound of face, unspecified site, complicated', '(873.50) Open wound of face, unspecified site, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.51) Open wound of cheek, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.51) Open wound of cheek, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.51''', NULL, + '(873.51) Open wound of cheek, complicated', '(873.51) Open wound of cheek, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.52) Open wound of forehead, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.52) Open wound of forehead, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.52''', NULL, + '(873.52) Open wound of forehead, complicated', '(873.52) Open wound of forehead, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.53) Open wound of lip, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.53) Open wound of lip, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.53''', NULL, + '(873.53) Open wound of lip, complicated', '(873.53) Open wound of lip, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.54) Open wound of jaw, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.54) Open wound of jaw, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.54''', NULL, + '(873.54) Open wound of jaw, complicated', '(873.54) Open wound of jaw, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.59) Open wound of other and multiple sites of face, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, complicated (873.5)\(873.59) Open wound of other and multiple sites of face, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.59''', NULL, + '(873.59) Open wound of other and multiple sites of face, complicated', '(873.59) Open wound of other and multiple sites of face, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.4''', NULL, + 'Open wound of face, without mention of complication (873.4)', 'Open wound of face, without mention of complication (873.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.40) Open wound of face, unspecified site, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.40) Open wound of face, unspecified site, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.40''', NULL, + '(873.40) Open wound of face, unspecified site, without mention of complication', '(873.40) Open wound of face, unspecified site, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.41) Open wound of cheek, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.41) Open wound of cheek, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.41''', NULL, + '(873.41) Open wound of cheek, without mention of complication', '(873.41) Open wound of cheek, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.42) Open wound of forehead, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.42) Open wound of forehead, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.42''', NULL, + '(873.42) Open wound of forehead, without mention of complication', '(873.42) Open wound of forehead, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.43) Open wound of lip, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.43) Open wound of lip, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.43''', NULL, + '(873.43) Open wound of lip, without mention of complication', '(873.43) Open wound of lip, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.44) Open wound of jaw, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.44) Open wound of jaw, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.44''', NULL, + '(873.44) Open wound of jaw, without mention of complication', '(873.44) Open wound of jaw, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.49) Open wound of other and multiple sites of face, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of face, without mention of complication (873.4)\(873.49) Open wound of other and multiple sites of face, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.49''', NULL, + '(873.49) Open wound of other and multiple sites of face, without mention of complication', '(873.49) Open wound of other and multiple sites of face, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.7''', NULL, + 'Open wound of internal structure of mouth, complicated (873.7)', 'Open wound of internal structure of mouth, complicated (873.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.70) Open wound of mouth, unspecified site, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.70) Open wound of mouth, unspecified site, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.70''', NULL, + '(873.70) Open wound of mouth, unspecified site, complicated', '(873.70) Open wound of mouth, unspecified site, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.71) Open wound of buccal mucosa, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.71) Open wound of buccal mucosa, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.71''', NULL, + '(873.71) Open wound of buccal mucosa, complicated', '(873.71) Open wound of buccal mucosa, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.72) Open wound of gum (alveolar process), complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.72) Open wound of gum (alveolar process), complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.72) Open wound of gum (alveolar process''', NULL, + '(873.72) Open wound of gum (alveolar process), complicated', '(873.72) Open wound of gum (alveolar process), complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.73) Open wound of tooth (broken) (fractured) (due to trauma), complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.73) Open wound of tooth (broken) (fractured) (due to trauma), complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.73) Open wound of tooth (broken) (fractured) (due to trauma''', NULL, + '(873.73) Open wound of tooth (broken) (fractured) (due to trauma), complicated', '(873.73) Open wound of tooth (broken) (fractured) (due to trauma), complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.74) Open wound of tongue and floor of mouth, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.74) Open wound of tongue and floor of mouth, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.74''', NULL, + '(873.74) Open wound of tongue and floor of mouth, complicated', '(873.74) Open wound of tongue and floor of mouth, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.75) Open wound of palate, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.75) Open wound of palate, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.75''', NULL, + '(873.75) Open wound of palate, complicated', '(873.75) Open wound of palate, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.79) Open wound of other and multiple sites of mouth, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structure of mouth, complicated (873.7)\(873.79) Open wound of other and multiple sites of mouth, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.79''', NULL, + '(873.79) Open wound of other and multiple sites of mouth, complicated', '(873.79) Open wound of other and multiple sites of mouth, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.6''', NULL, + 'Open wound of internal structures of mouth, without mention of complication (873.6)', 'Open wound of internal structures of mouth, without mention of complication (873.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.60) Open wound of mouth, unspecified site, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.60) Open wound of mouth, unspecified site, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.60''', NULL, + '(873.60) Open wound of mouth, unspecified site, without mention of complication', '(873.60) Open wound of mouth, unspecified site, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.61) Open wound of buccal mucosa, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.61) Open wound of buccal mucosa, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.61''', NULL, + '(873.61) Open wound of buccal mucosa, without mention of complication', '(873.61) Open wound of buccal mucosa, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.62) Open wound of gum (alveolar process), without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.62) Open wound of gum (alveolar process), without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.62) Open wound of gum (alveolar process''', NULL, + '(873.62) Open wound of gum (alveolar process), without mention of complication', '(873.62) Open wound of gum (alveolar process), without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.63) Open wound of tooth (broken) (fractured) (due to trauma), without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.63) Open wound of tooth (broken) (fractured) (due to trauma), without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.63) Open wound of tooth (broken) (fractured) (due to trauma''', NULL, + '(873.63) Open wound of tooth (broken) (fractured) (due to trauma), without mention of complication', '(873.63) Open wound of tooth (broken) (fractured) (due to trauma), without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.64) Open wound of tongue and floor of mouth, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.64) Open wound of tongue and floor of mouth, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.64''', NULL, + '(873.64) Open wound of tongue and floor of mouth, without mention of complication', '(873.64) Open wound of tongue and floor of mouth, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.65) Open wound of palate, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.65) Open wound of palate, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.65''', NULL, + '(873.65) Open wound of palate, without mention of complication', '(873.65) Open wound of palate, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.69) Open wound of other and multiple sites of mouth, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of internal structures of mouth, without mention of complication (873.6)\(873.69) Open wound of other and multiple sites of mouth, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.69''', NULL, + '(873.69) Open wound of other and multiple sites of mouth, without mention of complication', '(873.69) Open wound of other and multiple sites of mouth, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.3''', NULL, + 'Open wound of nose, complicated (873.3)', 'Open wound of nose, complicated (873.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\(873.30) Open wound of nose, unspecified site, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\(873.30) Open wound of nose, unspecified site, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.30''', NULL, + '(873.30) Open wound of nose, unspecified site, complicated', '(873.30) Open wound of nose, unspecified site, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\(873.31) Open wound of nasal septum, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\(873.31) Open wound of nasal septum, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.31''', NULL, + '(873.31) Open wound of nasal septum, complicated', '(873.31) Open wound of nasal septum, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\(873.32) Open wound of nasal cavity, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\(873.32) Open wound of nasal cavity, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.32''', NULL, + '(873.32) Open wound of nasal cavity, complicated', '(873.32) Open wound of nasal cavity, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\(873.33) Open wound of nasal sinus, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\(873.33) Open wound of nasal sinus, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.33''', NULL, + '(873.33) Open wound of nasal sinus, complicated', '(873.33) Open wound of nasal sinus, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\(873.39) Open wound of multiple sites of nose, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, complicated (873.3)\(873.39) Open wound of multiple sites of nose, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.39''', NULL, + '(873.39) Open wound of multiple sites of nose, complicated', '(873.39) Open wound of multiple sites of nose, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.2''', NULL, + 'Open wound of nose, without mention of complication (873.2)', 'Open wound of nose, without mention of complication (873.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\(873.20) Open wound of nose, unspecified site, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\(873.20) Open wound of nose, unspecified site, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.20''', NULL, + '(873.20) Open wound of nose, unspecified site, without mention of complication', '(873.20) Open wound of nose, unspecified site, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\(873.21) Open wound of nasal septum, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\(873.21) Open wound of nasal septum, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.21''', NULL, + '(873.21) Open wound of nasal septum, without mention of complication', '(873.21) Open wound of nasal septum, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\(873.22) Open wound of nasal cavity, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\(873.22) Open wound of nasal cavity, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.22''', NULL, + '(873.22) Open wound of nasal cavity, without mention of complication', '(873.22) Open wound of nasal cavity, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\(873.23) Open wound of nasal sinus, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\(873.23) Open wound of nasal sinus, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.23''', NULL, + '(873.23) Open wound of nasal sinus, without mention of complication', '(873.23) Open wound of nasal sinus, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\(873.29) Open wound of multiple sites of nose, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\Other open wound of head (873)\Open wound of nose, without mention of complication (873.2)\(873.29) Open wound of multiple sites of nose, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''873.29''', NULL, + '(873.29) Open wound of multiple sites of nose, without mention of complication', '(873.29) Open wound of multiple sites of nose, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''890'' AND ''897.99''', NULL, + 'OPEN WOUND OF LOWER LIMB (890-897.99)', 'OPEN WOUND OF LOWER LIMB (890-897.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Multiple and unspecified open wound of lower limb (894)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Multiple and unspecified open wound of lower limb (894)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''894''', NULL, + 'Multiple and unspecified open wound of lower limb (894)', 'Multiple and unspecified open wound of lower limb (894)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Multiple and unspecified open wound of lower limb (894)\(894.0) Multiple and unspecified open wound of lower limb, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Multiple and unspecified open wound of lower limb (894)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Multiple and unspecified open wound of lower limb (894)\(894.0) Multiple and unspecified open wound of lower limb, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''894.0''', NULL, + '(894.0) Multiple and unspecified open wound of lower limb, without mention of complication', '(894.0) Multiple and unspecified open wound of lower limb, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Multiple and unspecified open wound of lower limb (894)\(894.1) Multiple and unspecified open wound of lower limb, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Multiple and unspecified open wound of lower limb (894)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Multiple and unspecified open wound of lower limb (894)\(894.1) Multiple and unspecified open wound of lower limb, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''894.1''', NULL, + '(894.1) Multiple and unspecified open wound of lower limb, complicated', '(894.1) Multiple and unspecified open wound of lower limb, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Multiple and unspecified open wound of lower limb (894)\(894.2) Multiple and unspecified open wound of lower limb, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Multiple and unspecified open wound of lower limb (894)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Multiple and unspecified open wound of lower limb (894)\(894.2) Multiple and unspecified open wound of lower limb, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''894.2''', NULL, + '(894.2) Multiple and unspecified open wound of lower limb, with tendon involvement', '(894.2) Multiple and unspecified open wound of lower limb, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of foot except toe(s) alone (892)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of foot except toe(s) alone (892)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) alone (892''', NULL, + 'Open wound of foot except toe(s) alone (892)', 'Open wound of foot except toe(s) alone (892)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of foot except toe(s) alone (892)\(892.0) Open wound of foot except toe(s) alone, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of foot except toe(s) alone (892)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of foot except toe(s) alone (892)\(892.0) Open wound of foot except toe(s) alone, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''892.0) Open wound of foot except toe(s''', NULL, + '(892.0) Open wound of foot except toe(s) alone, without mention of complication', '(892.0) Open wound of foot except toe(s) alone, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of foot except toe(s) alone (892)\(892.1) Open wound of foot except toe(s) alone, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of foot except toe(s) alone (892)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of foot except toe(s) alone (892)\(892.1) Open wound of foot except toe(s) alone, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''892.1) Open wound of foot except toe(s''', NULL, + '(892.1) Open wound of foot except toe(s) alone, complicated', '(892.1) Open wound of foot except toe(s) alone, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of foot except toe(s) alone (892)\(892.2) Open wound of foot except toe(s) alone, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of foot except toe(s) alone (892)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of foot except toe(s) alone (892)\(892.2) Open wound of foot except toe(s) alone, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''892.2) Open wound of foot except toe(s''', NULL, + '(892.2) Open wound of foot except toe(s) alone, with tendon involvement', '(892.2) Open wound of foot except toe(s) alone, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of hip and thigh (890)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of hip and thigh (890)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''890''', NULL, + 'Open wound of hip and thigh (890)', 'Open wound of hip and thigh (890)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of hip and thigh (890)\(890.0) Open wound of hip and thigh, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of hip and thigh (890)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of hip and thigh (890)\(890.0) Open wound of hip and thigh, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''890.0''', NULL, + '(890.0) Open wound of hip and thigh, without mention of complication', '(890.0) Open wound of hip and thigh, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of hip and thigh (890)\(890.1) Open wound of hip and thigh, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of hip and thigh (890)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of hip and thigh (890)\(890.1) Open wound of hip and thigh, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''890.1''', NULL, + '(890.1) Open wound of hip and thigh, complicated', '(890.1) Open wound of hip and thigh, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of hip and thigh (890)\(890.2) Open wound of hip and thigh, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of hip and thigh (890)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of hip and thigh (890)\(890.2) Open wound of hip and thigh, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''890.2''', NULL, + '(890.2) Open wound of hip and thigh, with tendon involvement', '(890.2) Open wound of hip and thigh, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of knee, leg [except thigh], and ankle (891)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of knee, leg [except thigh], and ankle (891)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''891''', NULL, + 'Open wound of knee, leg [except thigh], and ankle (891)', 'Open wound of knee, leg [except thigh], and ankle (891)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of knee, leg [except thigh], and ankle (891)\(891.0) Open wound of knee, leg [except thigh], and ankle, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of knee, leg [except thigh], and ankle (891)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of knee, leg [except thigh], and ankle (891)\(891.0) Open wound of knee, leg [except thigh], and ankle, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''891.0''', NULL, + '(891.0) Open wound of knee, leg [except thigh], and ankle, without mention of complication', '(891.0) Open wound of knee, leg [except thigh], and ankle, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of knee, leg [except thigh], and ankle (891)\(891.1) Open wound of knee, leg [except thigh], and ankle, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of knee, leg [except thigh], and ankle (891)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of knee, leg [except thigh], and ankle (891)\(891.1) Open wound of knee, leg [except thigh], and ankle, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''891.1''', NULL, + '(891.1) Open wound of knee, leg [except thigh], and ankle, complicated', '(891.1) Open wound of knee, leg [except thigh], and ankle, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of knee, leg [except thigh], and ankle (891)\(891.2) Open wound of knee, leg [except thigh], and ankle, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of knee, leg [except thigh], and ankle (891)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of knee, leg [except thigh], and ankle (891)\(891.2) Open wound of knee, leg [except thigh], and ankle, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''891.2''', NULL, + '(891.2) Open wound of knee, leg [except thigh], and ankle, with tendon involvement', '(891.2) Open wound of knee, leg [except thigh], and ankle, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of toe(s) (893)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of toe(s) (893)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (893''', NULL, + 'Open wound of toe(s) (893)', 'Open wound of toe(s) (893)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of toe(s) (893)\(893.0) Open wound of toe(s), without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of toe(s) (893)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of toe(s) (893)\(893.0) Open wound of toe(s), without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''893.0) Open wound of toe(s''', NULL, + '(893.0) Open wound of toe(s), without mention of complication', '(893.0) Open wound of toe(s), without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of toe(s) (893)\(893.1) Open wound of toe(s), complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of toe(s) (893)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of toe(s) (893)\(893.1) Open wound of toe(s), complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''893.1) Open wound of toe(s''', NULL, + '(893.1) Open wound of toe(s), complicated', '(893.1) Open wound of toe(s), complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of toe(s) (893)\(893.2) Open wound of toe(s), with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of toe(s) (893)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Open wound of toe(s) (893)\(893.2) Open wound of toe(s), with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''893.2) Open wound of toe(s''', NULL, + '(893.2) Open wound of toe(s), with tendon involvement', '(893.2) Open wound of toe(s), with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''complete) (partial) (896''', NULL, + 'Traumatic amputation of foot (complete) (partial) (896)', 'Traumatic amputation of foot (complete) (partial) (896)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\(896.0) Traumatic amputation of foot (complete) (partial), unilateral, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\(896.0) Traumatic amputation of foot (complete) (partial), unilateral, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''896.0) Traumatic amputation of foot (complete) (partial''', NULL, + '(896.0) Traumatic amputation of foot (complete) (partial), unilateral, without mention of complication', '(896.0) Traumatic amputation of foot (complete) (partial), unilateral, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\(896.1) Traumatic amputation of foot (complete) (partial), unilateral, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\(896.1) Traumatic amputation of foot (complete) (partial), unilateral, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''896.1) Traumatic amputation of foot (complete) (partial''', NULL, + '(896.1) Traumatic amputation of foot (complete) (partial), unilateral, complicated', '(896.1) Traumatic amputation of foot (complete) (partial), unilateral, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\(896.2) Traumatic amputation of foot (complete) (partial), bilateral, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\(896.2) Traumatic amputation of foot (complete) (partial), bilateral, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''896.2) Traumatic amputation of foot (complete) (partial''', NULL, + '(896.2) Traumatic amputation of foot (complete) (partial), bilateral, without mention of complication', '(896.2) Traumatic amputation of foot (complete) (partial), bilateral, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\(896.3) Traumatic amputation of foot (complete) (partial), bilateral, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of foot (complete) (partial) (896)\(896.3) Traumatic amputation of foot (complete) (partial), bilateral, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''896.3) Traumatic amputation of foot (complete) (partial''', NULL, + '(896.3) Traumatic amputation of foot (complete) (partial), bilateral, complicated', '(896.3) Traumatic amputation of foot (complete) (partial), bilateral, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (complete) (partial) (897''', NULL, + 'Traumatic amputation of leg(s) (complete) (partial) (897)', 'Traumatic amputation of leg(s) (complete) (partial) (897)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.0) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.0) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''897.0) Traumatic amputation of leg(s) (complete) (partial''', NULL, + '(897.0) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, without mention of complication', '(897.0) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.1) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.1) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''897.1) Traumatic amputation of leg(s) (complete) (partial''', NULL, + '(897.1) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, complicated', '(897.1) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.2) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.2) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''897.2) Traumatic amputation of leg(s) (complete) (partial''', NULL, + '(897.2) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, without mention of complication', '(897.2) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.3) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.3) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''897.3) Traumatic amputation of leg(s) (complete) (partial''', NULL, + '(897.3) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, complicated', '(897.3) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.4) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.4) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''897.4) Traumatic amputation of leg(s) (complete) (partial''', NULL, + '(897.4) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, without mention of complication', '(897.4) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.5) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.5) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''897.5) Traumatic amputation of leg(s) (complete) (partial''', NULL, + '(897.5) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, complicated', '(897.5) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.6) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level]), without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.6) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level]), without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''897.6) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level]''', NULL, + '(897.6) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level]), without mention of complication', '(897.6) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level]), without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.7) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level], complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of leg(s) (complete) (partial) (897)\(897.7) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level], complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''897.7) Traumatic amputation of leg(s) (complete) (partial''', NULL, + '(897.7) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level], complicated', '(897.7) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level], complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of toe(s) (complete) (partial) (895)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of toe(s) (complete) (partial) (895)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (complete) (partial) (895''', NULL, + 'Traumatic amputation of toe(s) (complete) (partial) (895)', 'Traumatic amputation of toe(s) (complete) (partial) (895)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of toe(s) (complete) (partial) (895)\(895.0) Traumatic amputation of toe(s) (complete) (partial), without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of toe(s) (complete) (partial) (895)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of toe(s) (complete) (partial) (895)\(895.0) Traumatic amputation of toe(s) (complete) (partial), without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''895.0) Traumatic amputation of toe(s) (complete) (partial''', NULL, + '(895.0) Traumatic amputation of toe(s) (complete) (partial), without mention of complication', '(895.0) Traumatic amputation of toe(s) (complete) (partial), without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of toe(s) (complete) (partial) (895)\(895.1) Traumatic amputation of toe(s) (complete) (partial), complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of toe(s) (complete) (partial) (895)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF LOWER LIMB (890-897.99)\Traumatic amputation of toe(s) (complete) (partial) (895)\(895.1) Traumatic amputation of toe(s) (complete) (partial), complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''895.1) Traumatic amputation of toe(s) (complete) (partial''', NULL, + '(895.1) Traumatic amputation of toe(s) (complete) (partial), complicated', '(895.1) Traumatic amputation of toe(s) (complete) (partial), complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''880'' AND ''887.99''', NULL, + 'OPEN WOUND OF UPPER LIMB (880-887.99)', 'OPEN WOUND OF UPPER LIMB (880-887.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Multiple and unspecified open wound of upper limb (884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Multiple and unspecified open wound of upper limb (884)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''884''', NULL, + 'Multiple and unspecified open wound of upper limb (884)', 'Multiple and unspecified open wound of upper limb (884)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Multiple and unspecified open wound of upper limb (884)\(884.0) Multiple and unspecified open wound of upper limb, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Multiple and unspecified open wound of upper limb (884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Multiple and unspecified open wound of upper limb (884)\(884.0) Multiple and unspecified open wound of upper limb, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''884.0''', NULL, + '(884.0) Multiple and unspecified open wound of upper limb, without mention of complication', '(884.0) Multiple and unspecified open wound of upper limb, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Multiple and unspecified open wound of upper limb (884)\(884.1) Multiple and unspecified open wound of upper limb, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Multiple and unspecified open wound of upper limb (884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Multiple and unspecified open wound of upper limb (884)\(884.1) Multiple and unspecified open wound of upper limb, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''884.1''', NULL, + '(884.1) Multiple and unspecified open wound of upper limb, complicated', '(884.1) Multiple and unspecified open wound of upper limb, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Multiple and unspecified open wound of upper limb (884)\(884.2) Multiple and unspecified open wound of upper limb, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Multiple and unspecified open wound of upper limb (884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Multiple and unspecified open wound of upper limb (884)\(884.2) Multiple and unspecified open wound of upper limb, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''884.2''', NULL, + '(884.2) Multiple and unspecified open wound of upper limb, with tendon involvement', '(884.2) Multiple and unspecified open wound of upper limb, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881''', NULL, + 'Open wound of elbow, forearm, and wrist (881)', 'Open wound of elbow, forearm, and wrist (881)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, complicated (881.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, complicated (881.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.1''', NULL, + 'Open wound of elbow, forearm, and wrist, complicated (881.1)', 'Open wound of elbow, forearm, and wrist, complicated (881.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, complicated (881.1)\(881.10) Open wound of forearm, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, complicated (881.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, complicated (881.1)\(881.10) Open wound of forearm, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.10''', NULL, + '(881.10) Open wound of forearm, complicated', '(881.10) Open wound of forearm, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, complicated (881.1)\(881.11) Open wound of elbow, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, complicated (881.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, complicated (881.1)\(881.11) Open wound of elbow, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.11''', NULL, + '(881.11) Open wound of elbow, complicated', '(881.11) Open wound of elbow, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, complicated (881.1)\(881.12) Open wound of wrist, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, complicated (881.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, complicated (881.1)\(881.12) Open wound of wrist, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.12''', NULL, + '(881.12) Open wound of wrist, complicated', '(881.12) Open wound of wrist, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.2''', NULL, + 'Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)', 'Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\(881.20) Open wound of forearm, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\(881.20) Open wound of forearm, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.20''', NULL, + '(881.20) Open wound of forearm, with tendon involvement', '(881.20) Open wound of forearm, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\(881.21) Open wound of elbow, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\(881.21) Open wound of elbow, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.21''', NULL, + '(881.21) Open wound of elbow, with tendon involvement', '(881.21) Open wound of elbow, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\(881.22) Open wound of wrist, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\(881.22) Open wound of wrist, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.22''', NULL, + '(881.22) Open wound of wrist, with tendon involvement', '(881.22) Open wound of wrist, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.0''', NULL, + 'Open wound of elbow, forearm, and wrist, without mention of complication (881.0)', 'Open wound of elbow, forearm, and wrist, without mention of complication (881.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\(881.00) Open wound of forearm, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\(881.00) Open wound of forearm, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.00''', NULL, + '(881.00) Open wound of forearm, without mention of complication', '(881.00) Open wound of forearm, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\(881.01) Open wound of elbow, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\(881.01) Open wound of elbow, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.01''', NULL, + '(881.01) Open wound of elbow, without mention of complication', '(881.01) Open wound of elbow, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\(881.02) Open wound of wrist, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of elbow, forearm, and wrist (881)\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\(881.02) Open wound of wrist, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''881.02''', NULL, + '(881.02) Open wound of wrist, without mention of complication', '(881.02) Open wound of wrist, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of finger(s) (883)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of finger(s) (883)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (883''', NULL, + 'Open wound of finger(s) (883)', 'Open wound of finger(s) (883)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of finger(s) (883)\(883.0) Open wound of finger(s), without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of finger(s) (883)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of finger(s) (883)\(883.0) Open wound of finger(s), without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''883.0) Open wound of finger(s''', NULL, + '(883.0) Open wound of finger(s), without mention of complication', '(883.0) Open wound of finger(s), without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of finger(s) (883)\(883.1) Open wound of finger(s), complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of finger(s) (883)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of finger(s) (883)\(883.1) Open wound of finger(s), complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''883.1) Open wound of finger(s''', NULL, + '(883.1) Open wound of finger(s), complicated', '(883.1) Open wound of finger(s), complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of finger(s) (883)\(883.2) Open wound of finger(s), with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of finger(s) (883)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of finger(s) (883)\(883.2) Open wound of finger(s), with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''883.2) Open wound of finger(s''', NULL, + '(883.2) Open wound of finger(s), with tendon involvement', '(883.2) Open wound of finger(s), with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of hand except finger(s) alone (882)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of hand except finger(s) alone (882)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) alone (882''', NULL, + 'Open wound of hand except finger(s) alone (882)', 'Open wound of hand except finger(s) alone (882)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of hand except finger(s) alone (882)\(882.0) Open wound of hand except finger(s) alone, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of hand except finger(s) alone (882)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of hand except finger(s) alone (882)\(882.0) Open wound of hand except finger(s) alone, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''882.0) Open wound of hand except finger(s''', NULL, + '(882.0) Open wound of hand except finger(s) alone, without mention of complication', '(882.0) Open wound of hand except finger(s) alone, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of hand except finger(s) alone (882)\(882.1) Open wound of hand except finger(s) alone, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of hand except finger(s) alone (882)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of hand except finger(s) alone (882)\(882.1) Open wound of hand except finger(s) alone, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''882.1) Open wound of hand except finger(s''', NULL, + '(882.1) Open wound of hand except finger(s) alone, complicated', '(882.1) Open wound of hand except finger(s) alone, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of hand except finger(s) alone (882)\(882.2) Open wound of hand except finger(s) alone, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of hand except finger(s) alone (882)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of hand except finger(s) alone (882)\(882.2) Open wound of hand except finger(s) alone, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''882.2) Open wound of hand except finger(s''', NULL, + '(882.2) Open wound of hand except finger(s) alone, with tendon involvement', '(882.2) Open wound of hand except finger(s) alone, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880''', NULL, + 'Open wound of shoulder and upper arm (880)', 'Open wound of shoulder and upper arm (880)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.1''', NULL, + 'Open wound of shoulder and upper arm, complicated (880.1)', 'Open wound of shoulder and upper arm, complicated (880.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\(880.10) Open wound of shoulder region, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\(880.10) Open wound of shoulder region, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.10''', NULL, + '(880.10) Open wound of shoulder region, complicated', '(880.10) Open wound of shoulder region, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\(880.11) Open wound of scapular region, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\(880.11) Open wound of scapular region, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.11''', NULL, + '(880.11) Open wound of scapular region, complicated', '(880.11) Open wound of scapular region, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\(880.12) Open wound of axillary region, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\(880.12) Open wound of axillary region, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.12''', NULL, + '(880.12) Open wound of axillary region, complicated', '(880.12) Open wound of axillary region, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\(880.13) Open wound of upper arm, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\(880.13) Open wound of upper arm, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.13''', NULL, + '(880.13) Open wound of upper arm, complicated', '(880.13) Open wound of upper arm, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\(880.19) Open wound of multiple sites of shoulder and upper arm, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, complicated (880.1)\(880.19) Open wound of multiple sites of shoulder and upper arm, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.19''', NULL, + '(880.19) Open wound of multiple sites of shoulder and upper arm, complicated', '(880.19) Open wound of multiple sites of shoulder and upper arm, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.2''', NULL, + 'Open wound of shoulder and upper arm, with tendon involvement (880.2)', 'Open wound of shoulder and upper arm, with tendon involvement (880.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\(880.20) Open wound of shoulder region, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\(880.20) Open wound of shoulder region, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.20''', NULL, + '(880.20) Open wound of shoulder region, with tendon involvement', '(880.20) Open wound of shoulder region, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\(880.21) Open wound of scapular region, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\(880.21) Open wound of scapular region, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.21''', NULL, + '(880.21) Open wound of scapular region, with tendon involvement', '(880.21) Open wound of scapular region, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\(880.22) Open wound of axillary region, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\(880.22) Open wound of axillary region, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.22''', NULL, + '(880.22) Open wound of axillary region, with tendon involvement', '(880.22) Open wound of axillary region, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\(880.23) Open wound of upper arm, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\(880.23) Open wound of upper arm, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.23''', NULL, + '(880.23) Open wound of upper arm, with tendon involvement', '(880.23) Open wound of upper arm, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\(880.29) Open wound of multiple sites of shoulder and upper arm, with tendon involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, with tendon involvement (880.2)\(880.29) Open wound of multiple sites of shoulder and upper arm, with tendon involvement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.29''', NULL, + '(880.29) Open wound of multiple sites of shoulder and upper arm, with tendon involvement', '(880.29) Open wound of multiple sites of shoulder and upper arm, with tendon involvement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.0''', NULL, + 'Open wound of shoulder and upper arm, without mention of complication (880.0)', 'Open wound of shoulder and upper arm, without mention of complication (880.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\(880.00) Open wound of shoulder region, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\(880.00) Open wound of shoulder region, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.00''', NULL, + '(880.00) Open wound of shoulder region, without mention of complication', '(880.00) Open wound of shoulder region, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\(880.01) Open wound of scapular region, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\(880.01) Open wound of scapular region, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.01''', NULL, + '(880.01) Open wound of scapular region, without mention of complication', '(880.01) Open wound of scapular region, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\(880.02) Open wound of axillary region, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\(880.02) Open wound of axillary region, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.02''', NULL, + '(880.02) Open wound of axillary region, without mention of complication', '(880.02) Open wound of axillary region, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\(880.03) Open wound of upper arm, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\(880.03) Open wound of upper arm, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.03''', NULL, + '(880.03) Open wound of upper arm, without mention of complication', '(880.03) Open wound of upper arm, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\(880.09) Open wound of multiple sites of shoulder and upper arm, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Open wound of shoulder and upper arm (880)\Open wound of shoulder and upper arm, without mention of complication (880.0)\(880.09) Open wound of multiple sites of shoulder and upper arm, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''880.09''', NULL, + '(880.09) Open wound of multiple sites of shoulder and upper arm, without mention of complication', '(880.09) Open wound of multiple sites of shoulder and upper arm, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''complete) (partial) (887''', NULL, + 'Traumatic amputation of arm and hand (complete) (partial) (887)', 'Traumatic amputation of arm and hand (complete) (partial) (887)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.0) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.0) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''887.0) Traumatic amputation of arm and hand (complete) (partial''', NULL, + '(887.0) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, without mention of complication', '(887.0) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.1) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.1) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''887.1) Traumatic amputation of arm and hand (complete) (partial''', NULL, + '(887.1) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, complicated', '(887.1) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.2) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.2) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''887.2) Traumatic amputation of arm and hand (complete) (partial''', NULL, + '(887.2) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, without mention of complication', '(887.2) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.3) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.3) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''887.3) Traumatic amputation of arm and hand (complete) (partial''', NULL, + '(887.3) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, complicated', '(887.3) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.4) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.4) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''887.4) Traumatic amputation of arm and hand (complete) (partial''', NULL, + '(887.4) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, without mention of complication', '(887.4) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.5) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.5) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''887.5) Traumatic amputation of arm and hand (complete) (partial''', NULL, + '(887.5) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, complicated', '(887.5) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.6) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.6) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''887.6) Traumatic amputation of arm and hand (complete) (partial''', NULL, + '(887.6) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], without mention of complication', '(887.6) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.7) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of arm and hand (complete) (partial) (887)\(887.7) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''887.7) Traumatic amputation of arm and hand (complete) (partial''', NULL, + '(887.7) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], complicated', '(887.7) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of other finger(s) (complete) (partial) (886)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of other finger(s) (complete) (partial) (886)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (complete) (partial) (886''', NULL, + 'Traumatic amputation of other finger(s) (complete) (partial) (886)', 'Traumatic amputation of other finger(s) (complete) (partial) (886)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of other finger(s) (complete) (partial) (886)\(886.0) Traumatic amputation of other finger(s) (complete) (partial), without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of other finger(s) (complete) (partial) (886)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of other finger(s) (complete) (partial) (886)\(886.0) Traumatic amputation of other finger(s) (complete) (partial), without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''886.0) Traumatic amputation of other finger(s) (complete) (partial''', NULL, + '(886.0) Traumatic amputation of other finger(s) (complete) (partial), without mention of complication', '(886.0) Traumatic amputation of other finger(s) (complete) (partial), without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of other finger(s) (complete) (partial) (886)\(886.1) Traumatic amputation of other finger(s) (complete) (partial), complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of other finger(s) (complete) (partial) (886)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of other finger(s) (complete) (partial) (886)\(886.1) Traumatic amputation of other finger(s) (complete) (partial), complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''886.1) Traumatic amputation of other finger(s) (complete) (partial''', NULL, + '(886.1) Traumatic amputation of other finger(s) (complete) (partial), complicated', '(886.1) Traumatic amputation of other finger(s) (complete) (partial), complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of thumb (complete) (partial) (885)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of thumb (complete) (partial) (885)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''complete) (partial) (885''', NULL, + 'Traumatic amputation of thumb (complete) (partial) (885)', 'Traumatic amputation of thumb (complete) (partial) (885)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of thumb (complete) (partial) (885)\(885.0) Traumatic amputation of thumb (complete)(partial), without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of thumb (complete) (partial) (885)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of thumb (complete) (partial) (885)\(885.0) Traumatic amputation of thumb (complete)(partial), without mention of complication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''885.0) Traumatic amputation of thumb (complete)(partial''', NULL, + '(885.0) Traumatic amputation of thumb (complete)(partial), without mention of complication', '(885.0) Traumatic amputation of thumb (complete)(partial), without mention of complication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of thumb (complete) (partial) (885)\(885.1) Traumatic amputation of thumb (complete)(partial), complicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of thumb (complete) (partial) (885)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Open wounds (870-897.99)\OPEN WOUND OF UPPER LIMB (880-887.99)\Traumatic amputation of thumb (complete) (partial) (885)\(885.1) Traumatic amputation of thumb (complete)(partial), complicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''885.1) Traumatic amputation of thumb (complete)(partial''', NULL, + '(885.1) Traumatic amputation of thumb (complete)(partial), complicated', '(885.1) Traumatic amputation of thumb (complete)(partial), complicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''990'' AND ''995.99''', NULL, + 'Other and unspecified effects of external causes (990-995.99)', 'Other and unspecified effects of external causes (990-995.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\(990) Effects of radiation, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\(990) Effects of radiation, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''990''', NULL, + '(990) Effects of radiation, unspecified', '(990) Effects of radiation, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995''', NULL, + 'Certain adverse effects not elsewhere classified (995)', 'Certain adverse effects not elsewhere classified (995)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\(995.0) Other anaphylactic reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\(995.0) Other anaphylactic reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.0''', NULL, + '(995.0) Other anaphylactic reaction', '(995.0) Other anaphylactic reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\(995.1) Angioneurotic edema, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\(995.1) Angioneurotic edema, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.1''', NULL, + '(995.1) Angioneurotic edema, not elsewhere classified', '(995.1) Angioneurotic edema, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\(995.3) Allergy, unspecified, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\(995.3) Allergy, unspecified, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.3''', NULL, + '(995.3) Allergy, unspecified, not elsewhere classified', '(995.3) Allergy, unspecified, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\(995.4) Shock due to anesthesia, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\(995.4) Shock due to anesthesia, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.4''', NULL, + '(995.4) Shock due to anesthesia, not elsewhere classified', '(995.4) Shock due to anesthesia, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\(995.7) Other adverse food reactions, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\(995.7) Other adverse food reactions, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.7''', NULL, + '(995.7) Other adverse food reactions, not elsewhere classified', '(995.7) Other adverse food reactions, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.6''', NULL, + 'Anaphylactic reaction due to food (995.6)', 'Anaphylactic reaction due to food (995.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.60) Anaphylactic reaction due to unspecified food\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.60) Anaphylactic reaction due to unspecified food\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.60''', NULL, + '(995.60) Anaphylactic reaction due to unspecified food', '(995.60) Anaphylactic reaction due to unspecified food', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.61) Anaphylactic reaction due to peanuts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.61) Anaphylactic reaction due to peanuts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.61''', NULL, + '(995.61) Anaphylactic reaction due to peanuts', '(995.61) Anaphylactic reaction due to peanuts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.62) Anaphylactic reaction due to crustaceans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.62) Anaphylactic reaction due to crustaceans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.62''', NULL, + '(995.62) Anaphylactic reaction due to crustaceans', '(995.62) Anaphylactic reaction due to crustaceans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.63) Anaphylactic reaction due to fruits and vegetables\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.63) Anaphylactic reaction due to fruits and vegetables\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.63''', NULL, + '(995.63) Anaphylactic reaction due to fruits and vegetables', '(995.63) Anaphylactic reaction due to fruits and vegetables', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.64) Anaphylactic reaction due to tree nuts and seeds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.64) Anaphylactic reaction due to tree nuts and seeds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.64''', NULL, + '(995.64) Anaphylactic reaction due to tree nuts and seeds', '(995.64) Anaphylactic reaction due to tree nuts and seeds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.65) Anaphylactic reaction due to fish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.65) Anaphylactic reaction due to fish\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.65''', NULL, + '(995.65) Anaphylactic reaction due to fish', '(995.65) Anaphylactic reaction due to fish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.66) Anaphylactic reaction due to food additives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.66) Anaphylactic reaction due to food additives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.66''', NULL, + '(995.66) Anaphylactic reaction due to food additives', '(995.66) Anaphylactic reaction due to food additives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.67) Anaphylactic reaction due to milk products\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.67) Anaphylactic reaction due to milk products\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.67''', NULL, + '(995.67) Anaphylactic reaction due to milk products', '(995.67) Anaphylactic reaction due to milk products', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.68) Anaphylactic reaction due to eggs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.68) Anaphylactic reaction due to eggs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.68''', NULL, + '(995.68) Anaphylactic reaction due to eggs', '(995.68) Anaphylactic reaction due to eggs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.69) Anaphylactic reaction due to other specified food\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Anaphylactic reaction due to food (995.6)\(995.69) Anaphylactic reaction due to other specified food\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.69''', NULL, + '(995.69) Anaphylactic reaction due to other specified food', '(995.69) Anaphylactic reaction due to other specified food', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.5''', NULL, + 'Child maltreatment syndrome (995.5)', 'Child maltreatment syndrome (995.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.50) Child abuse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.50) Child abuse, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.50''', NULL, + '(995.50) Child abuse, unspecified', '(995.50) Child abuse, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.51) Child emotional/psychological abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.51) Child emotional/psychological abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.51''', NULL, + '(995.51) Child emotional/psychological abuse', '(995.51) Child emotional/psychological abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.52) Child neglect (nutritional)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.52) Child neglect (nutritional)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.52) Child neglect (nutritional''', NULL, + '(995.52) Child neglect (nutritional)', '(995.52) Child neglect (nutritional)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.53) Child sexual abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.53) Child sexual abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.53''', NULL, + '(995.53) Child sexual abuse', '(995.53) Child sexual abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.54) Child physical abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.54) Child physical abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.54''', NULL, + '(995.54) Child physical abuse', '(995.54) Child physical abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.55) Shaken baby syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.55) Shaken baby syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.55''', NULL, + '(995.55) Shaken baby syndrome', '(995.55) Shaken baby syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.59) Other child abuse and neglect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Child maltreatment syndrome (995.5)\(995.59) Other child abuse and neglect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.59''', NULL, + '(995.59) Other child abuse and neglect', '(995.59) Other child abuse and neglect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.2''', NULL, + 'Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)', 'Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.20) Unspecified adverse effect of unspecified drug, medicinal and biological substance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.20) Unspecified adverse effect of unspecified drug, medicinal and biological substance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.20''', NULL, + '(995.20) Unspecified adverse effect of unspecified drug, medicinal and biological substance', '(995.20) Unspecified adverse effect of unspecified drug, medicinal and biological substance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.21) Arthus phenomenon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.21) Arthus phenomenon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.21''', NULL, + '(995.21) Arthus phenomenon', '(995.21) Arthus phenomenon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.22) Unspecified adverse effect of anesthesia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.22) Unspecified adverse effect of anesthesia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.22''', NULL, + '(995.22) Unspecified adverse effect of anesthesia', '(995.22) Unspecified adverse effect of anesthesia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.23) Unspecified adverse effect of insulin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.23) Unspecified adverse effect of insulin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.23''', NULL, + '(995.23) Unspecified adverse effect of insulin', '(995.23) Unspecified adverse effect of insulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.24) Failed moderate sedation during procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.24) Failed moderate sedation during procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.24''', NULL, + '(995.24) Failed moderate sedation during procedure', '(995.24) Failed moderate sedation during procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.27) Other drug allergy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.27) Other drug allergy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.27''', NULL, + '(995.27) Other drug allergy', '(995.27) Other drug allergy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.29) Unspecified adverse effect of other drug, medicinal and biological substance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\(995.29) Unspecified adverse effect of other drug, medicinal and biological substance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.29''', NULL, + '(995.29) Unspecified adverse effect of other drug, medicinal and biological substance', '(995.29) Unspecified adverse effect of other drug, medicinal and biological substance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.8''', NULL, + 'Other specified adverse effects, not elsewhere classified (995.8)', 'Other specified adverse effects, not elsewhere classified (995.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.80) Adult maltreatment, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.80) Adult maltreatment, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.80''', NULL, + '(995.80) Adult maltreatment, unspecified', '(995.80) Adult maltreatment, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.81) Adult physical abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.81) Adult physical abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.81''', NULL, + '(995.81) Adult physical abuse', '(995.81) Adult physical abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.82) Adult emotional/psychological abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.82) Adult emotional/psychological abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.82''', NULL, + '(995.82) Adult emotional/psychological abuse', '(995.82) Adult emotional/psychological abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.83) Adult sexual abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.83) Adult sexual abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.83''', NULL, + '(995.83) Adult sexual abuse', '(995.83) Adult sexual abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.84) Adult neglect (nutritional)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.84) Adult neglect (nutritional)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.84) Adult neglect (nutritional''', NULL, + '(995.84) Adult neglect (nutritional)', '(995.84) Adult neglect (nutritional)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.85) Other adult abuse and neglect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.85) Other adult abuse and neglect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.85''', NULL, + '(995.85) Other adult abuse and neglect', '(995.85) Other adult abuse and neglect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.86) Malignant hyperthermia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.86) Malignant hyperthermia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.86''', NULL, + '(995.86) Malignant hyperthermia', '(995.86) Malignant hyperthermia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.89) Other specified adverse effects, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Other specified adverse effects, not elsewhere classified (995.8)\(995.89) Other specified adverse effects, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.89''', NULL, + '(995.89) Other specified adverse effects, not elsewhere classified', '(995.89) Other specified adverse effects, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''SIRS) (995.9''', NULL, + 'Systemic inflammatory response syndrome (SIRS) (995.9)', 'Systemic inflammatory response syndrome (SIRS) (995.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\(995.90) Systemic inflammatory response syndrome, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\(995.90) Systemic inflammatory response syndrome, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.90''', NULL, + '(995.90) Systemic inflammatory response syndrome, unspecified', '(995.90) Systemic inflammatory response syndrome, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\(995.91) Sepsis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\(995.91) Sepsis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.91''', NULL, + '(995.91) Sepsis', '(995.91) Sepsis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\(995.92) Severe sepsis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\(995.92) Severe sepsis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.92''', NULL, + '(995.92) Severe sepsis', '(995.92) Severe sepsis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\(995.93) Systemic inflammatory response syndrome due to noninfectious process without acute organ dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\(995.93) Systemic inflammatory response syndrome due to noninfectious process without acute organ dysfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.93''', NULL, + '(995.93) Systemic inflammatory response syndrome due to noninfectious process without acute organ dysfunction', '(995.93) Systemic inflammatory response syndrome due to noninfectious process without acute organ dysfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\(995.94) Systemic inflammatory response syndrome due to noninfectious process with acute organ dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Certain adverse effects not elsewhere classified (995)\Systemic inflammatory response syndrome (SIRS) (995.9)\(995.94) Systemic inflammatory response syndrome due to noninfectious process with acute organ dysfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''995.94''', NULL, + '(995.94) Systemic inflammatory response syndrome due to noninfectious process with acute organ dysfunction', '(995.94) Systemic inflammatory response syndrome due to noninfectious process with acute organ dysfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''993''', NULL, + 'Effects of air pressure (993)', 'Effects of air pressure (993)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.0) Barotrauma, otitic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.0) Barotrauma, otitic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''993.0''', NULL, + '(993.0) Barotrauma, otitic', '(993.0) Barotrauma, otitic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.1) Barotrauma, sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.1) Barotrauma, sinus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''993.1''', NULL, + '(993.1) Barotrauma, sinus', '(993.1) Barotrauma, sinus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.2) Other and unspecified effects of high altitude\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.2) Other and unspecified effects of high altitude\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''993.2''', NULL, + '(993.2) Other and unspecified effects of high altitude', '(993.2) Other and unspecified effects of high altitude', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.3) Caisson disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.3) Caisson disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''993.3''', NULL, + '(993.3) Caisson disease', '(993.3) Caisson disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.4) Effects of air pressure caused by explosion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.4) Effects of air pressure caused by explosion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''993.4''', NULL, + '(993.4) Effects of air pressure caused by explosion', '(993.4) Effects of air pressure caused by explosion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.8) Other specified effects of air pressure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.8) Other specified effects of air pressure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''993.8''', NULL, + '(993.8) Other specified effects of air pressure', '(993.8) Other specified effects of air pressure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.9) Unspecified effect of air pressure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of air pressure (993)\(993.9) Unspecified effect of air pressure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''993.9''', NULL, + '(993.9) Unspecified effect of air pressure', '(993.9) Unspecified effect of air pressure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''992''', NULL, + 'Effects of heat and light (992)', 'Effects of heat and light (992)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.0) Heat stroke and sunstroke\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.0) Heat stroke and sunstroke\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''992.0''', NULL, + '(992.0) Heat stroke and sunstroke', '(992.0) Heat stroke and sunstroke', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.1) Heat syncope\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.1) Heat syncope\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''992.1''', NULL, + '(992.1) Heat syncope', '(992.1) Heat syncope', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.2) Heat cramps\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.2) Heat cramps\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''992.2''', NULL, + '(992.2) Heat cramps', '(992.2) Heat cramps', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.3) Heat exhaustion, anhydrotic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.3) Heat exhaustion, anhydrotic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''992.3''', NULL, + '(992.3) Heat exhaustion, anhydrotic', '(992.3) Heat exhaustion, anhydrotic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.4) Heat exhaustion due to salt depletion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.4) Heat exhaustion due to salt depletion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''992.4''', NULL, + '(992.4) Heat exhaustion due to salt depletion', '(992.4) Heat exhaustion due to salt depletion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.5) Heat exhaustion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.5) Heat exhaustion, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''992.5''', NULL, + '(992.5) Heat exhaustion, unspecified', '(992.5) Heat exhaustion, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.6) Heat fatigue, transient\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.6) Heat fatigue, transient\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''992.6''', NULL, + '(992.6) Heat fatigue, transient', '(992.6) Heat fatigue, transient', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.7) Heat edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.7) Heat edema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''992.7''', NULL, + '(992.7) Heat edema', '(992.7) Heat edema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.8) Other specified heat effects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.8) Other specified heat effects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''992.8''', NULL, + '(992.8) Other specified heat effects', '(992.8) Other specified heat effects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.9) Unspecified effects of heat and light\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of heat and light (992)\(992.9) Unspecified effects of heat and light\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''992.9''', NULL, + '(992.9) Unspecified effects of heat and light', '(992.9) Unspecified effects of heat and light', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''994''', NULL, + 'Effects of other external causes (994)', 'Effects of other external causes (994)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.0) Effects of lightning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.0) Effects of lightning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''994.0''', NULL, + '(994.0) Effects of lightning', '(994.0) Effects of lightning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.1) Drowning and nonfatal submersion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.1) Drowning and nonfatal submersion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''994.1''', NULL, + '(994.1) Drowning and nonfatal submersion', '(994.1) Drowning and nonfatal submersion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.2) Effects of hunger\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.2) Effects of hunger\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''994.2''', NULL, + '(994.2) Effects of hunger', '(994.2) Effects of hunger', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.3) Effects of thirst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.3) Effects of thirst\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''994.3''', NULL, + '(994.3) Effects of thirst', '(994.3) Effects of thirst', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.4) Exhaustion due to exposure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.4) Exhaustion due to exposure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''994.4''', NULL, + '(994.4) Exhaustion due to exposure', '(994.4) Exhaustion due to exposure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.5) Exhaustion due to excessive exertion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.5) Exhaustion due to excessive exertion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''994.5''', NULL, + '(994.5) Exhaustion due to excessive exertion', '(994.5) Exhaustion due to excessive exertion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.6) Motion sickness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.6) Motion sickness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''994.6''', NULL, + '(994.6) Motion sickness', '(994.6) Motion sickness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.7) Asphyxiation and strangulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.7) Asphyxiation and strangulation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''994.7''', NULL, + '(994.7) Asphyxiation and strangulation', '(994.7) Asphyxiation and strangulation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.8) Electrocution and nonfatal effects of electric current\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.8) Electrocution and nonfatal effects of electric current\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''994.8''', NULL, + '(994.8) Electrocution and nonfatal effects of electric current', '(994.8) Electrocution and nonfatal effects of electric current', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.9) Other effects of external causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of other external causes (994)\(994.9) Other effects of external causes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''994.9''', NULL, + '(994.9) Other effects of external causes', '(994.9) Other effects of external causes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''991''', NULL, + 'Effects of reduced temperature (991)', 'Effects of reduced temperature (991)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.0) Frostbite of face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.0) Frostbite of face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''991.0''', NULL, + '(991.0) Frostbite of face', '(991.0) Frostbite of face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.1) Frostbite of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.1) Frostbite of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''991.1''', NULL, + '(991.1) Frostbite of hand', '(991.1) Frostbite of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.2) Frostbite of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.2) Frostbite of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''991.2''', NULL, + '(991.2) Frostbite of foot', '(991.2) Frostbite of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.3) Frostbite of other and unspecified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.3) Frostbite of other and unspecified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''991.3''', NULL, + '(991.3) Frostbite of other and unspecified sites', '(991.3) Frostbite of other and unspecified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.4) Immersion foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.4) Immersion foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''991.4''', NULL, + '(991.4) Immersion foot', '(991.4) Immersion foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.5) Chilblains\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.5) Chilblains\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''991.5''', NULL, + '(991.5) Chilblains', '(991.5) Chilblains', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.6) Hypothermia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.6) Hypothermia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''991.6''', NULL, + '(991.6) Hypothermia', '(991.6) Hypothermia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.8) Other specified effects of reduced temperature\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.8) Other specified effects of reduced temperature\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''991.8''', NULL, + '(991.8) Other specified effects of reduced temperature', '(991.8) Other specified effects of reduced temperature', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.9) Unspecified effect of reduced temperature\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Other and unspecified effects of external causes (990-995.99)\Effects of reduced temperature (991)\(991.9) Unspecified effect of reduced temperature\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''991.9''', NULL, + '(991.9) Unspecified effect of reduced temperature', '(991.9) Unspecified effect of reduced temperature', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''960'' AND ''979.99''', NULL, + 'Poisoning by drugs, medicinal and biological substances (960-979.99)', 'Poisoning by drugs, medicinal and biological substances (960-979.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''975''', NULL, + 'Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)', 'Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.0) Poisoning by oxytocic agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.0) Poisoning by oxytocic agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''975.0''', NULL, + '(975.0) Poisoning by oxytocic agents', '(975.0) Poisoning by oxytocic agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.1) Poisoning by smooth muscle relaxants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.1) Poisoning by smooth muscle relaxants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''975.1''', NULL, + '(975.1) Poisoning by smooth muscle relaxants', '(975.1) Poisoning by smooth muscle relaxants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.2) Poisoning by skeletal muscle relaxants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.2) Poisoning by skeletal muscle relaxants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''975.2''', NULL, + '(975.2) Poisoning by skeletal muscle relaxants', '(975.2) Poisoning by skeletal muscle relaxants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.3) Poisoning by other and unspecified drugs acting on muscles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.3) Poisoning by other and unspecified drugs acting on muscles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''975.3''', NULL, + '(975.3) Poisoning by other and unspecified drugs acting on muscles', '(975.3) Poisoning by other and unspecified drugs acting on muscles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.4) Poisoning by antitussives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.4) Poisoning by antitussives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''975.4''', NULL, + '(975.4) Poisoning by antitussives', '(975.4) Poisoning by antitussives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.5) Poisoning by expectorants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.5) Poisoning by expectorants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''975.5''', NULL, + '(975.5) Poisoning by expectorants', '(975.5) Poisoning by expectorants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.6) Poisoning by anti-common cold drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.6) Poisoning by anti-common cold drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''975.6''', NULL, + '(975.6) Poisoning by anti-common cold drugs', '(975.6) Poisoning by anti-common cold drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.7) Poisoning by antiasthmatics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.7) Poisoning by antiasthmatics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''975.7''', NULL, + '(975.7) Poisoning by antiasthmatics', '(975.7) Poisoning by antiasthmatics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.8) Poisoning by other and unspecified respiratory drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\(975.8) Poisoning by other and unspecified respiratory drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''975.8''', NULL, + '(975.8) Poisoning by other and unspecified respiratory drugs', '(975.8) Poisoning by other and unspecified respiratory drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''964''', NULL, + 'Poisoning by agents primarily affecting blood constituents (964)', 'Poisoning by agents primarily affecting blood constituents (964)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.0) Poisoning by iron and its compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.0) Poisoning by iron and its compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''964.0''', NULL, + '(964.0) Poisoning by iron and its compounds', '(964.0) Poisoning by iron and its compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.1) Poisoning by liver preparations and other antianemic agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.1) Poisoning by liver preparations and other antianemic agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''964.1''', NULL, + '(964.1) Poisoning by liver preparations and other antianemic agents', '(964.1) Poisoning by liver preparations and other antianemic agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.2) Poisoning by anticoagulants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.2) Poisoning by anticoagulants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''964.2''', NULL, + '(964.2) Poisoning by anticoagulants', '(964.2) Poisoning by anticoagulants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.3) Poisoning by vitamin K (phytonadione)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.3) Poisoning by vitamin K (phytonadione)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''964.3) Poisoning by vitamin K (phytonadione''', NULL, + '(964.3) Poisoning by vitamin K (phytonadione)', '(964.3) Poisoning by vitamin K (phytonadione)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.4) Poisoning by fibrinolysis-affecting drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.4) Poisoning by fibrinolysis-affecting drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''964.4''', NULL, + '(964.4) Poisoning by fibrinolysis-affecting drugs', '(964.4) Poisoning by fibrinolysis-affecting drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.5) Poisoning by anticoagulant antagonists and other coagulants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.5) Poisoning by anticoagulant antagonists and other coagulants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''964.5''', NULL, + '(964.5) Poisoning by anticoagulant antagonists and other coagulants', '(964.5) Poisoning by anticoagulant antagonists and other coagulants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.6) Poisoning by gamma globulin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.6) Poisoning by gamma globulin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''964.6''', NULL, + '(964.6) Poisoning by gamma globulin', '(964.6) Poisoning by gamma globulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.7) Poisoning by natural blood and blood products\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.7) Poisoning by natural blood and blood products\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''964.7''', NULL, + '(964.7) Poisoning by natural blood and blood products', '(964.7) Poisoning by natural blood and blood products', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.8) Poisoning by other specified agents affecting blood constituents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.8) Poisoning by other specified agents affecting blood constituents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''964.8''', NULL, + '(964.8) Poisoning by other specified agents affecting blood constituents', '(964.8) Poisoning by other specified agents affecting blood constituents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.9) Poisoning by unspecified agent affecting blood constituents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting blood constituents (964)\(964.9) Poisoning by unspecified agent affecting blood constituents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''964.9''', NULL, + '(964.9) Poisoning by unspecified agent affecting blood constituents', '(964.9) Poisoning by unspecified agent affecting blood constituents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''976''', NULL, + 'Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)', 'Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.0) Poisoning by local anti-infectives and anti-inflammatory drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.0) Poisoning by local anti-infectives and anti-inflammatory drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''976.0''', NULL, + '(976.0) Poisoning by local anti-infectives and anti-inflammatory drugs', '(976.0) Poisoning by local anti-infectives and anti-inflammatory drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.1) Poisoning by antipruritics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.1) Poisoning by antipruritics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''976.1''', NULL, + '(976.1) Poisoning by antipruritics', '(976.1) Poisoning by antipruritics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.2) Poisoning by local astringents and local detergents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.2) Poisoning by local astringents and local detergents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''976.2''', NULL, + '(976.2) Poisoning by local astringents and local detergents', '(976.2) Poisoning by local astringents and local detergents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.3) Poisoning by emollients, demulcents, and protectants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.3) Poisoning by emollients, demulcents, and protectants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''976.3''', NULL, + '(976.3) Poisoning by emollients, demulcents, and protectants', '(976.3) Poisoning by emollients, demulcents, and protectants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.4) Poisoning by keratolytics, keratoplastics, other hair treatment drugs and preparations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.4) Poisoning by keratolytics, keratoplastics, other hair treatment drugs and preparations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''976.4''', NULL, + '(976.4) Poisoning by keratolytics, keratoplastics, other hair treatment drugs and preparations', '(976.4) Poisoning by keratolytics, keratoplastics, other hair treatment drugs and preparations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.5) Poisoning by eye anti-infectives and other eye drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.5) Poisoning by eye anti-infectives and other eye drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''976.5''', NULL, + '(976.5) Poisoning by eye anti-infectives and other eye drugs', '(976.5) Poisoning by eye anti-infectives and other eye drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.6) Poisoning by anti-infectives and other drugs and preparations for ear, nose, and throat\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.6) Poisoning by anti-infectives and other drugs and preparations for ear, nose, and throat\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''976.6''', NULL, + '(976.6) Poisoning by anti-infectives and other drugs and preparations for ear, nose, and throat', '(976.6) Poisoning by anti-infectives and other drugs and preparations for ear, nose, and throat', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.7) Poisoning by dental drugs topically applied\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.7) Poisoning by dental drugs topically applied\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''976.7''', NULL, + '(976.7) Poisoning by dental drugs topically applied', '(976.7) Poisoning by dental drugs topically applied', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.8) Poisoning by other agents primarily affecting skin and mucous membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.8) Poisoning by other agents primarily affecting skin and mucous membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''976.8''', NULL, + '(976.8) Poisoning by other agents primarily affecting skin and mucous membrane', '(976.8) Poisoning by other agents primarily affecting skin and mucous membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.9) Poisoning by unspecified agent primarily affecting skin and mucous membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\(976.9) Poisoning by unspecified agent primarily affecting skin and mucous membrane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''976.9''', NULL, + '(976.9) Poisoning by unspecified agent primarily affecting skin and mucous membrane', '(976.9) Poisoning by unspecified agent primarily affecting skin and mucous membrane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''972''', NULL, + 'Poisoning by agents primarily affecting the cardiovascular system (972)', 'Poisoning by agents primarily affecting the cardiovascular system (972)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.0) Poisoning by cardiac rhythm regulators\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.0) Poisoning by cardiac rhythm regulators\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''972.0''', NULL, + '(972.0) Poisoning by cardiac rhythm regulators', '(972.0) Poisoning by cardiac rhythm regulators', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.1) Poisoning by cardiotonic glycosides and drugs of similar action\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.1) Poisoning by cardiotonic glycosides and drugs of similar action\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''972.1''', NULL, + '(972.1) Poisoning by cardiotonic glycosides and drugs of similar action', '(972.1) Poisoning by cardiotonic glycosides and drugs of similar action', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.2) Poisoning by antilipemic and antiarteriosclerotic drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.2) Poisoning by antilipemic and antiarteriosclerotic drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''972.2''', NULL, + '(972.2) Poisoning by antilipemic and antiarteriosclerotic drugs', '(972.2) Poisoning by antilipemic and antiarteriosclerotic drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.3) Poisoning by ganglion-blocking agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.3) Poisoning by ganglion-blocking agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''972.3''', NULL, + '(972.3) Poisoning by ganglion-blocking agents', '(972.3) Poisoning by ganglion-blocking agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.4) Poisoning by coronary vasodilators\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.4) Poisoning by coronary vasodilators\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''972.4''', NULL, + '(972.4) Poisoning by coronary vasodilators', '(972.4) Poisoning by coronary vasodilators', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.5) Poisoning by other vasodilators\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.5) Poisoning by other vasodilators\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''972.5''', NULL, + '(972.5) Poisoning by other vasodilators', '(972.5) Poisoning by other vasodilators', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.6) Poisoning by other antihypertensive agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.6) Poisoning by other antihypertensive agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''972.6''', NULL, + '(972.6) Poisoning by other antihypertensive agents', '(972.6) Poisoning by other antihypertensive agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.7) Poisoning by antivaricose drugs, including sclerosing agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.7) Poisoning by antivaricose drugs, including sclerosing agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''972.7''', NULL, + '(972.7) Poisoning by antivaricose drugs, including sclerosing agents', '(972.7) Poisoning by antivaricose drugs, including sclerosing agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.8) Poisoning by capillary-active drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.8) Poisoning by capillary-active drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''972.8''', NULL, + '(972.8) Poisoning by capillary-active drugs', '(972.8) Poisoning by capillary-active drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.9) Poisoning by other and unspecified agents primarily affecting the cardiovascular system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the cardiovascular system (972)\(972.9) Poisoning by other and unspecified agents primarily affecting the cardiovascular system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''972.9''', NULL, + '(972.9) Poisoning by other and unspecified agents primarily affecting the cardiovascular system', '(972.9) Poisoning by other and unspecified agents primarily affecting the cardiovascular system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''973''', NULL, + 'Poisoning by agents primarily affecting the gastrointestinal system (973)', 'Poisoning by agents primarily affecting the gastrointestinal system (973)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.0) Poisoning by antacids and antigastric secretion drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.0) Poisoning by antacids and antigastric secretion drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''973.0''', NULL, + '(973.0) Poisoning by antacids and antigastric secretion drugs', '(973.0) Poisoning by antacids and antigastric secretion drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.1) Poisoning by irritant cathartics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.1) Poisoning by irritant cathartics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''973.1''', NULL, + '(973.1) Poisoning by irritant cathartics', '(973.1) Poisoning by irritant cathartics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.2) Poisoning by emollient cathartics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.2) Poisoning by emollient cathartics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''973.2''', NULL, + '(973.2) Poisoning by emollient cathartics', '(973.2) Poisoning by emollient cathartics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.3) Poisoning by other cathartics, including intestinal atonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.3) Poisoning by other cathartics, including intestinal atonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''973.3''', NULL, + '(973.3) Poisoning by other cathartics, including intestinal atonia', '(973.3) Poisoning by other cathartics, including intestinal atonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.4) Poisoning by digestants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.4) Poisoning by digestants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''973.4''', NULL, + '(973.4) Poisoning by digestants', '(973.4) Poisoning by digestants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.5) Poisoning by antidiarrheal drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.5) Poisoning by antidiarrheal drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''973.5''', NULL, + '(973.5) Poisoning by antidiarrheal drugs', '(973.5) Poisoning by antidiarrheal drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.6) Poisoning by emetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.6) Poisoning by emetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''973.6''', NULL, + '(973.6) Poisoning by emetics', '(973.6) Poisoning by emetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.8) Poisoning by other specified agents primarily affecting the gastrointestinal system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.8) Poisoning by other specified agents primarily affecting the gastrointestinal system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''973.8''', NULL, + '(973.8) Poisoning by other specified agents primarily affecting the gastrointestinal system', '(973.8) Poisoning by other specified agents primarily affecting the gastrointestinal system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.9) Poisoning by unspecified agent primarily affecting the gastrointestinal system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by agents primarily affecting the gastrointestinal system (973)\(973.9) Poisoning by unspecified agent primarily affecting the gastrointestinal system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''973.9''', NULL, + '(973.9) Poisoning by unspecified agent primarily affecting the gastrointestinal system', '(973.9) Poisoning by unspecified agent primarily affecting the gastrointestinal system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965''', NULL, + 'Poisoning by analgesics, antipyretics, and antirheumatics (965)', 'Poisoning by analgesics, antipyretics, and antirheumatics (965)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.1) Poisoning by salicylates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.1) Poisoning by salicylates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.1''', NULL, + '(965.1) Poisoning by salicylates', '(965.1) Poisoning by salicylates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.4) Poisoning by aromatic analgesics, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.4) Poisoning by aromatic analgesics, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.4''', NULL, + '(965.4) Poisoning by aromatic analgesics, not elsewhere classified', '(965.4) Poisoning by aromatic analgesics, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.5) Poisoning by pyrazole derivatives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.5) Poisoning by pyrazole derivatives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.5''', NULL, + '(965.5) Poisoning by pyrazole derivatives', '(965.5) Poisoning by pyrazole derivatives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.7) Poisoning by other non-narcotic analgesics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.7) Poisoning by other non-narcotic analgesics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.7''', NULL, + '(965.7) Poisoning by other non-narcotic analgesics', '(965.7) Poisoning by other non-narcotic analgesics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.8) Poisoning by other specified analgesics and antipyretics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.8) Poisoning by other specified analgesics and antipyretics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.8''', NULL, + '(965.8) Poisoning by other specified analgesics and antipyretics', '(965.8) Poisoning by other specified analgesics and antipyretics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.9) Poisoning by unspecified analgesic and antipyretic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\(965.9) Poisoning by unspecified analgesic and antipyretic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.9''', NULL, + '(965.9) Poisoning by unspecified analgesic and antipyretic', '(965.9) Poisoning by unspecified analgesic and antipyretic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by antirheumatics [antiphlogistics] (965.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by antirheumatics [antiphlogistics] (965.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.6''', NULL, + 'Poisoning by antirheumatics [antiphlogistics] (965.6)', 'Poisoning by antirheumatics [antiphlogistics] (965.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by antirheumatics [antiphlogistics] (965.6)\(965.61) Poisoning by propionic acid derivatives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by antirheumatics [antiphlogistics] (965.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by antirheumatics [antiphlogistics] (965.6)\(965.61) Poisoning by propionic acid derivatives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.61''', NULL, + '(965.61) Poisoning by propionic acid derivatives', '(965.61) Poisoning by propionic acid derivatives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by antirheumatics [antiphlogistics] (965.6)\(965.69) Poisoning by other antirheumatics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by antirheumatics [antiphlogistics] (965.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by antirheumatics [antiphlogistics] (965.6)\(965.69) Poisoning by other antirheumatics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.69''', NULL, + '(965.69) Poisoning by other antirheumatics', '(965.69) Poisoning by other antirheumatics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.0''', NULL, + 'Poisoning by opiates and related narcotics (965.0)', 'Poisoning by opiates and related narcotics (965.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\(965.00) Poisoning by opium (alkaloids), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\(965.00) Poisoning by opium (alkaloids), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.00) Poisoning by opium (alkaloids''', NULL, + '(965.00) Poisoning by opium (alkaloids), unspecified', '(965.00) Poisoning by opium (alkaloids), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\(965.01) Poisoning by heroin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\(965.01) Poisoning by heroin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.01''', NULL, + '(965.01) Poisoning by heroin', '(965.01) Poisoning by heroin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\(965.02) Poisoning by methadone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\(965.02) Poisoning by methadone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.02''', NULL, + '(965.02) Poisoning by methadone', '(965.02) Poisoning by methadone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\(965.09) Poisoning by other opiates and related narcotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by analgesics, antipyretics, and antirheumatics (965)\Poisoning by opiates and related narcotics (965.0)\(965.09) Poisoning by other opiates and related narcotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''965.09''', NULL, + '(965.09) Poisoning by other opiates and related narcotics', '(965.09) Poisoning by other opiates and related narcotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''960''', NULL, + 'Poisoning by antibiotics (960)', 'Poisoning by antibiotics (960)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.0) Poisoning by penicillins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.0) Poisoning by penicillins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''960.0''', NULL, + '(960.0) Poisoning by penicillins', '(960.0) Poisoning by penicillins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.1) Poisoning by antifungal antibiotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.1) Poisoning by antifungal antibiotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''960.1''', NULL, + '(960.1) Poisoning by antifungal antibiotics', '(960.1) Poisoning by antifungal antibiotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.2) Poisoning by chloramphenicol group\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.2) Poisoning by chloramphenicol group\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''960.2''', NULL, + '(960.2) Poisoning by chloramphenicol group', '(960.2) Poisoning by chloramphenicol group', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.3) Poisoning by erythromycin and other macrolides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.3) Poisoning by erythromycin and other macrolides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''960.3''', NULL, + '(960.3) Poisoning by erythromycin and other macrolides', '(960.3) Poisoning by erythromycin and other macrolides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.4) Poisoning by tetracycline group\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.4) Poisoning by tetracycline group\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''960.4''', NULL, + '(960.4) Poisoning by tetracycline group', '(960.4) Poisoning by tetracycline group', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.5) Poisoning of cephalosporin group\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.5) Poisoning of cephalosporin group\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''960.5''', NULL, + '(960.5) Poisoning of cephalosporin group', '(960.5) Poisoning of cephalosporin group', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.6) Poisoning of antimycobacterial antibiotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.6) Poisoning of antimycobacterial antibiotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''960.6''', NULL, + '(960.6) Poisoning of antimycobacterial antibiotics', '(960.6) Poisoning of antimycobacterial antibiotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.7) Poisoning by antineoplastic antibiotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.7) Poisoning by antineoplastic antibiotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''960.7''', NULL, + '(960.7) Poisoning by antineoplastic antibiotics', '(960.7) Poisoning by antineoplastic antibiotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.8) Poisoning by other specified antibiotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.8) Poisoning by other specified antibiotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''960.8''', NULL, + '(960.8) Poisoning by other specified antibiotics', '(960.8) Poisoning by other specified antibiotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.9) Poisoning by unspecified antibiotic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by antibiotics (960)\(960.9) Poisoning by unspecified antibiotic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''960.9''', NULL, + '(960.9) Poisoning by unspecified antibiotic', '(960.9) Poisoning by unspecified antibiotic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''966''', NULL, + 'Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)', 'Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\(966.0) Poisoning by oxazolidine derivatives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\(966.0) Poisoning by oxazolidine derivatives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''966.0''', NULL, + '(966.0) Poisoning by oxazolidine derivatives', '(966.0) Poisoning by oxazolidine derivatives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\(966.1) Poisoning by hydantoin derivatives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\(966.1) Poisoning by hydantoin derivatives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''966.1''', NULL, + '(966.1) Poisoning by hydantoin derivatives', '(966.1) Poisoning by hydantoin derivatives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\(966.2) Poisoning by succinimides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\(966.2) Poisoning by succinimides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''966.2''', NULL, + '(966.2) Poisoning by succinimides', '(966.2) Poisoning by succinimides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\(966.3) Poisoning by other and unspecified anticonvulsants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\(966.3) Poisoning by other and unspecified anticonvulsants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''966.3''', NULL, + '(966.3) Poisoning by other and unspecified anticonvulsants', '(966.3) Poisoning by other and unspecified anticonvulsants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\(966.4) Poisoning by anti-Parkinsonism drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\(966.4) Poisoning by anti-Parkinsonism drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''966.4''', NULL, + '(966.4) Poisoning by anti-Parkinsonism drugs', '(966.4) Poisoning by anti-Parkinsonism drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''978''', NULL, + 'Poisoning by bacterial vaccines (978)', 'Poisoning by bacterial vaccines (978)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.0) Poisoning by BCG vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.0) Poisoning by BCG vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''978.0''', NULL, + '(978.0) Poisoning by BCG vaccine', '(978.0) Poisoning by BCG vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.1) Poisoning by typhoid and paratyphoid vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.1) Poisoning by typhoid and paratyphoid vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''978.1''', NULL, + '(978.1) Poisoning by typhoid and paratyphoid vaccine', '(978.1) Poisoning by typhoid and paratyphoid vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.2) Poisoning by cholera vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.2) Poisoning by cholera vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''978.2''', NULL, + '(978.2) Poisoning by cholera vaccine', '(978.2) Poisoning by cholera vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.3) Poisoning by plague vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.3) Poisoning by plague vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''978.3''', NULL, + '(978.3) Poisoning by plague vaccine', '(978.3) Poisoning by plague vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.4) Poisoning by tetanus vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.4) Poisoning by tetanus vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''978.4''', NULL, + '(978.4) Poisoning by tetanus vaccine', '(978.4) Poisoning by tetanus vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.5) Poisoning by diphtheria vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.5) Poisoning by diphtheria vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''978.5''', NULL, + '(978.5) Poisoning by diphtheria vaccine', '(978.5) Poisoning by diphtheria vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.6) Poisoning by pertussis vaccine, including combinations with a pertussis component\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.6) Poisoning by pertussis vaccine, including combinations with a pertussis component\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''978.6''', NULL, + '(978.6) Poisoning by pertussis vaccine, including combinations with a pertussis component', '(978.6) Poisoning by pertussis vaccine, including combinations with a pertussis component', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.8) Poisoning by other and unspecified bacterial vaccines\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.8) Poisoning by other and unspecified bacterial vaccines\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''978.8''', NULL, + '(978.8) Poisoning by other and unspecified bacterial vaccines', '(978.8) Poisoning by other and unspecified bacterial vaccines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.9) Poisoning by mixed bacterial vaccines, except combinations with a pertussis component\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by bacterial vaccines (978)\(978.9) Poisoning by mixed bacterial vaccines, except combinations with a pertussis component\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''978.9''', NULL, + '(978.9) Poisoning by mixed bacterial vaccines, except combinations with a pertussis component', '(978.9) Poisoning by mixed bacterial vaccines, except combinations with a pertussis component', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''970''', NULL, + 'Poisoning by central nervous system stimulants (970)', 'Poisoning by central nervous system stimulants (970)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\(970.0) Poisoning by analeptics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\(970.0) Poisoning by analeptics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''970.0''', NULL, + '(970.0) Poisoning by analeptics', '(970.0) Poisoning by analeptics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\(970.1) Poisoning by opiate antagonists\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\(970.1) Poisoning by opiate antagonists\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''970.1''', NULL, + '(970.1) Poisoning by opiate antagonists', '(970.1) Poisoning by opiate antagonists', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\(970.9) Poisoning by unspecified central nervous system stimulant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\(970.9) Poisoning by unspecified central nervous system stimulant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''970.9''', NULL, + '(970.9) Poisoning by unspecified central nervous system stimulant', '(970.9) Poisoning by unspecified central nervous system stimulant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\Poisoning by other specified central nervous system stimulants (970.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\Poisoning by other specified central nervous system stimulants (970.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''970.8''', NULL, + 'Poisoning by other specified central nervous system stimulants (970.8)', 'Poisoning by other specified central nervous system stimulants (970.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\Poisoning by other specified central nervous system stimulants (970.8)\(970.81) Poisoning by cocaine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\Poisoning by other specified central nervous system stimulants (970.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by central nervous system stimulants (970)\Poisoning by other specified central nervous system stimulants (970.8)\(970.81) Poisoning by cocaine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''970.81''', NULL, + '(970.81) Poisoning by cocaine', '(970.81) Poisoning by cocaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''971''', NULL, + 'Poisoning by drugs primarily affecting the autonomic nervous system (971)', 'Poisoning by drugs primarily affecting the autonomic nervous system (971)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\(971.0) Poisoning by parasympathomimetics (cholinergics)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\(971.0) Poisoning by parasympathomimetics (cholinergics)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''971.0) Poisoning by parasympathomimetics (cholinergics''', NULL, + '(971.0) Poisoning by parasympathomimetics (cholinergics)', '(971.0) Poisoning by parasympathomimetics (cholinergics)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\(971.1) Poisoning by parasympatholytics (anticholinergics and antimuscarinics) and spasmolytics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\(971.1) Poisoning by parasympatholytics (anticholinergics and antimuscarinics) and spasmolytics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''971.1) Poisoning by parasympatholytics (anticholinergics and antimuscarinics''', NULL, + '(971.1) Poisoning by parasympatholytics (anticholinergics and antimuscarinics) and spasmolytics', '(971.1) Poisoning by parasympatholytics (anticholinergics and antimuscarinics) and spasmolytics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\(971.2) Poisoning by sympathomimetics [adrenergics]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\(971.2) Poisoning by sympathomimetics [adrenergics]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''971.2''', NULL, + '(971.2) Poisoning by sympathomimetics [adrenergics]', '(971.2) Poisoning by sympathomimetics [adrenergics]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\(971.3) Poisoning by sympatholytics [antiadrenergics]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\(971.3) Poisoning by sympatholytics [antiadrenergics]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''971.3''', NULL, + '(971.3) Poisoning by sympatholytics [antiadrenergics]', '(971.3) Poisoning by sympatholytics [antiadrenergics]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\(971.9) Poisoning by unspecified drug primarily affecting autonomic nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by drugs primarily affecting the autonomic nervous system (971)\(971.9) Poisoning by unspecified drug primarily affecting autonomic nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''971.9''', NULL, + '(971.9) Poisoning by unspecified drug primarily affecting autonomic nervous system', '(971.9) Poisoning by unspecified drug primarily affecting autonomic nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''962''', NULL, + 'Poisoning by hormones and synthetic substitutes (962)', 'Poisoning by hormones and synthetic substitutes (962)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.0) Poisoning by adrenal cortical steroids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.0) Poisoning by adrenal cortical steroids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''962.0''', NULL, + '(962.0) Poisoning by adrenal cortical steroids', '(962.0) Poisoning by adrenal cortical steroids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.1) Poisoning by androgens and anabolic congeners\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.1) Poisoning by androgens and anabolic congeners\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''962.1''', NULL, + '(962.1) Poisoning by androgens and anabolic congeners', '(962.1) Poisoning by androgens and anabolic congeners', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.2) Poisoning by ovarian hormones and synthetic substitutes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.2) Poisoning by ovarian hormones and synthetic substitutes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''962.2''', NULL, + '(962.2) Poisoning by ovarian hormones and synthetic substitutes', '(962.2) Poisoning by ovarian hormones and synthetic substitutes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.3) Poisoning by insulins and antidiabetic agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.3) Poisoning by insulins and antidiabetic agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''962.3''', NULL, + '(962.3) Poisoning by insulins and antidiabetic agents', '(962.3) Poisoning by insulins and antidiabetic agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.4) Poisoning by anterior pituitary hormones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.4) Poisoning by anterior pituitary hormones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''962.4''', NULL, + '(962.4) Poisoning by anterior pituitary hormones', '(962.4) Poisoning by anterior pituitary hormones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.5) Poisoning by posterior pituitary hormones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.5) Poisoning by posterior pituitary hormones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''962.5''', NULL, + '(962.5) Poisoning by posterior pituitary hormones', '(962.5) Poisoning by posterior pituitary hormones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.6) Poisoning by parathyroid and parathyroid derivatives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.6) Poisoning by parathyroid and parathyroid derivatives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''962.6''', NULL, + '(962.6) Poisoning by parathyroid and parathyroid derivatives', '(962.6) Poisoning by parathyroid and parathyroid derivatives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.7) Poisoning by thyroid and thyroid derivatives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.7) Poisoning by thyroid and thyroid derivatives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''962.7''', NULL, + '(962.7) Poisoning by thyroid and thyroid derivatives', '(962.7) Poisoning by thyroid and thyroid derivatives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.8) Poisoning by antithyroid agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.8) Poisoning by antithyroid agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''962.8''', NULL, + '(962.8) Poisoning by antithyroid agents', '(962.8) Poisoning by antithyroid agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.9) Poisoning by other and unspecified hormones and synthetic substitutes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by hormones and synthetic substitutes (962)\(962.9) Poisoning by other and unspecified hormones and synthetic substitutes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''962.9''', NULL, + '(962.9) Poisoning by other and unspecified hormones and synthetic substitutes', '(962.9) Poisoning by other and unspecified hormones and synthetic substitutes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''977''', NULL, + 'Poisoning by other and unspecified drugs and medicinal substances (977)', 'Poisoning by other and unspecified drugs and medicinal substances (977)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.0) Poisoning by dietetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.0) Poisoning by dietetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''977.0''', NULL, + '(977.0) Poisoning by dietetics', '(977.0) Poisoning by dietetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.1) Poisoning by lipotropic drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.1) Poisoning by lipotropic drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''977.1''', NULL, + '(977.1) Poisoning by lipotropic drugs', '(977.1) Poisoning by lipotropic drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.2) Poisoning by antidotes and chelating agents, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.2) Poisoning by antidotes and chelating agents, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''977.2''', NULL, + '(977.2) Poisoning by antidotes and chelating agents, not elsewhere classified', '(977.2) Poisoning by antidotes and chelating agents, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.3) Poisoning by alcohol deterrents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.3) Poisoning by alcohol deterrents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''977.3''', NULL, + '(977.3) Poisoning by alcohol deterrents', '(977.3) Poisoning by alcohol deterrents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.4) Poisoning by pharmaceutical excipients\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.4) Poisoning by pharmaceutical excipients\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''977.4''', NULL, + '(977.4) Poisoning by pharmaceutical excipients', '(977.4) Poisoning by pharmaceutical excipients', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.8) Poisoning by other specified drugs and medicinal substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.8) Poisoning by other specified drugs and medicinal substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''977.8''', NULL, + '(977.8) Poisoning by other specified drugs and medicinal substances', '(977.8) Poisoning by other specified drugs and medicinal substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.9) Poisoning by unspecified drug or medicinal substance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other and unspecified drugs and medicinal substances (977)\(977.9) Poisoning by unspecified drug or medicinal substance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''977.9''', NULL, + '(977.9) Poisoning by unspecified drug or medicinal substance', '(977.9) Poisoning by unspecified drug or medicinal substance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''961''', NULL, + 'Poisoning by other anti-infectives (961)', 'Poisoning by other anti-infectives (961)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.0) Poisoning by sulfonamides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.0) Poisoning by sulfonamides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''961.0''', NULL, + '(961.0) Poisoning by sulfonamides', '(961.0) Poisoning by sulfonamides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.1) Poisoning by arsenical anti-infectives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.1) Poisoning by arsenical anti-infectives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''961.1''', NULL, + '(961.1) Poisoning by arsenical anti-infectives', '(961.1) Poisoning by arsenical anti-infectives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.2) Poisoning by heavy metal anti-infectives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.2) Poisoning by heavy metal anti-infectives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''961.2''', NULL, + '(961.2) Poisoning by heavy metal anti-infectives', '(961.2) Poisoning by heavy metal anti-infectives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.3) Poisoning by quinoline and hydroxyquinoline derivatives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.3) Poisoning by quinoline and hydroxyquinoline derivatives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''961.3''', NULL, + '(961.3) Poisoning by quinoline and hydroxyquinoline derivatives', '(961.3) Poisoning by quinoline and hydroxyquinoline derivatives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.4) Poisoning by antimalarials and drugs acting on other blood protozoa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.4) Poisoning by antimalarials and drugs acting on other blood protozoa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''961.4''', NULL, + '(961.4) Poisoning by antimalarials and drugs acting on other blood protozoa', '(961.4) Poisoning by antimalarials and drugs acting on other blood protozoa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.5) Poisoning by other antiprotozoal drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.5) Poisoning by other antiprotozoal drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''961.5''', NULL, + '(961.5) Poisoning by other antiprotozoal drugs', '(961.5) Poisoning by other antiprotozoal drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.6) Poisoning by anthelmintics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.6) Poisoning by anthelmintics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''961.6''', NULL, + '(961.6) Poisoning by anthelmintics', '(961.6) Poisoning by anthelmintics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.7) Poisoning by antiviral drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.7) Poisoning by antiviral drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''961.7''', NULL, + '(961.7) Poisoning by antiviral drugs', '(961.7) Poisoning by antiviral drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.8) Poisoning by other antimycobacterial drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.8) Poisoning by other antimycobacterial drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''961.8''', NULL, + '(961.8) Poisoning by other antimycobacterial drugs', '(961.8) Poisoning by other antimycobacterial drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.9) Poisoning by other and unspecified anti-infectives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other anti-infectives (961)\(961.9) Poisoning by other and unspecified anti-infectives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''961.9''', NULL, + '(961.9) Poisoning by other and unspecified anti-infectives', '(961.9) Poisoning by other and unspecified anti-infectives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''968''', NULL, + 'Poisoning by other central nervous system depressants and anesthetics (968)', 'Poisoning by other central nervous system depressants and anesthetics (968)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.0) Poisoning by central nervous system muscle-tone depressants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.0) Poisoning by central nervous system muscle-tone depressants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''968.0''', NULL, + '(968.0) Poisoning by central nervous system muscle-tone depressants', '(968.0) Poisoning by central nervous system muscle-tone depressants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.1) Poisoning by halothane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.1) Poisoning by halothane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''968.1''', NULL, + '(968.1) Poisoning by halothane', '(968.1) Poisoning by halothane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.2) Poisoning by other gaseous anesthetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.2) Poisoning by other gaseous anesthetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''968.2''', NULL, + '(968.2) Poisoning by other gaseous anesthetics', '(968.2) Poisoning by other gaseous anesthetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.3) Poisoning by intravenous anesthetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.3) Poisoning by intravenous anesthetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''968.3''', NULL, + '(968.3) Poisoning by intravenous anesthetics', '(968.3) Poisoning by intravenous anesthetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.4) Poisoning by other and unspecified general anesthetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.4) Poisoning by other and unspecified general anesthetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''968.4''', NULL, + '(968.4) Poisoning by other and unspecified general anesthetics', '(968.4) Poisoning by other and unspecified general anesthetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.5) Surface (topical) and infiltration anesthetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.5) Surface (topical) and infiltration anesthetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''968.5) Surface (topical''', NULL, + '(968.5) Surface (topical) and infiltration anesthetics', '(968.5) Surface (topical) and infiltration anesthetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.6) Poisoning by peripheral nerve- and plexus-blocking anesthetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.6) Poisoning by peripheral nerve- and plexus-blocking anesthetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''968.6''', NULL, + '(968.6) Poisoning by peripheral nerve- and plexus-blocking anesthetics', '(968.6) Poisoning by peripheral nerve- and plexus-blocking anesthetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.7) Poisoning by spinal anesthetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.7) Poisoning by spinal anesthetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''968.7''', NULL, + '(968.7) Poisoning by spinal anesthetics', '(968.7) Poisoning by spinal anesthetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.9) Poisoning by other and unspecified local anesthetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other central nervous system depressants and anesthetics (968)\(968.9) Poisoning by other and unspecified local anesthetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''968.9''', NULL, + '(968.9) Poisoning by other and unspecified local anesthetics', '(968.9) Poisoning by other and unspecified local anesthetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''979''', NULL, + 'Poisoning by other vaccines and biological substances (979)', 'Poisoning by other vaccines and biological substances (979)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.0) Poisoning by smallpox vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.0) Poisoning by smallpox vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''979.0''', NULL, + '(979.0) Poisoning by smallpox vaccine', '(979.0) Poisoning by smallpox vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.1) Poisoning by rabies vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.1) Poisoning by rabies vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''979.1''', NULL, + '(979.1) Poisoning by rabies vaccine', '(979.1) Poisoning by rabies vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.2) Poisoning by typhus vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.2) Poisoning by typhus vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''979.2''', NULL, + '(979.2) Poisoning by typhus vaccine', '(979.2) Poisoning by typhus vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.3) Poisoning by yellow fever vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.3) Poisoning by yellow fever vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''979.3''', NULL, + '(979.3) Poisoning by yellow fever vaccine', '(979.3) Poisoning by yellow fever vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.4) Poisoning by measles vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.4) Poisoning by measles vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''979.4''', NULL, + '(979.4) Poisoning by measles vaccine', '(979.4) Poisoning by measles vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.5) Poisoning by poliomyelitis vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.5) Poisoning by poliomyelitis vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''979.5''', NULL, + '(979.5) Poisoning by poliomyelitis vaccine', '(979.5) Poisoning by poliomyelitis vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.6) Poisoning by other and unspecified viral and rickettsial vaccines\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.6) Poisoning by other and unspecified viral and rickettsial vaccines\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''979.6''', NULL, + '(979.6) Poisoning by other and unspecified viral and rickettsial vaccines', '(979.6) Poisoning by other and unspecified viral and rickettsial vaccines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.7) Poisoning by mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.7) Poisoning by mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''979.7''', NULL, + '(979.7) Poisoning by mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component', '(979.7) Poisoning by mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.9) Poisoning by other and unspecified vaccines and biological substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by other vaccines and biological substances (979)\(979.9) Poisoning by other and unspecified vaccines and biological substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''979.9''', NULL, + '(979.9) Poisoning by other and unspecified vaccines and biological substances', '(979.9) Poisoning by other and unspecified vaccines and biological substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''963''', NULL, + 'Poisoning by primarily systemic agents (963)', 'Poisoning by primarily systemic agents (963)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.0) Poisoning by antiallergic and antiemetic drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.0) Poisoning by antiallergic and antiemetic drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''963.0''', NULL, + '(963.0) Poisoning by antiallergic and antiemetic drugs', '(963.0) Poisoning by antiallergic and antiemetic drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.1) Poisoning by antineoplastic and immunosuppressive drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.1) Poisoning by antineoplastic and immunosuppressive drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''963.1''', NULL, + '(963.1) Poisoning by antineoplastic and immunosuppressive drugs', '(963.1) Poisoning by antineoplastic and immunosuppressive drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.2) Poisoning by acidifying agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.2) Poisoning by acidifying agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''963.2''', NULL, + '(963.2) Poisoning by acidifying agents', '(963.2) Poisoning by acidifying agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.3) Poisoning by alkalizing agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.3) Poisoning by alkalizing agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''963.3''', NULL, + '(963.3) Poisoning by alkalizing agents', '(963.3) Poisoning by alkalizing agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.4) Poisoning by enzymes, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.4) Poisoning by enzymes, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''963.4''', NULL, + '(963.4) Poisoning by enzymes, not elsewhere classified', '(963.4) Poisoning by enzymes, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.5) Poisoning by vitamins, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.5) Poisoning by vitamins, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''963.5''', NULL, + '(963.5) Poisoning by vitamins, not elsewhere classified', '(963.5) Poisoning by vitamins, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.8) Poisoning by other specified systemic agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.8) Poisoning by other specified systemic agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''963.8''', NULL, + '(963.8) Poisoning by other specified systemic agents', '(963.8) Poisoning by other specified systemic agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.9) Poisoning by unspecified systemic agent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by primarily systemic agents (963)\(963.9) Poisoning by unspecified systemic agent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''963.9''', NULL, + '(963.9) Poisoning by unspecified systemic agent', '(963.9) Poisoning by unspecified systemic agent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969''', NULL, + 'Poisoning by psychotropic agents (969)', 'Poisoning by psychotropic agents (969)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.1) Poisoning by phenothiazine-based tranquilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.1) Poisoning by phenothiazine-based tranquilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.1''', NULL, + '(969.1) Poisoning by phenothiazine-based tranquilizers', '(969.1) Poisoning by phenothiazine-based tranquilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.2) Poisoning by butyrophenone-based tranquilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.2) Poisoning by butyrophenone-based tranquilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.2''', NULL, + '(969.2) Poisoning by butyrophenone-based tranquilizers', '(969.2) Poisoning by butyrophenone-based tranquilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.3) Poisoning by other antipsychotics, neuroleptics, and major tranquilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.3) Poisoning by other antipsychotics, neuroleptics, and major tranquilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.3''', NULL, + '(969.3) Poisoning by other antipsychotics, neuroleptics, and major tranquilizers', '(969.3) Poisoning by other antipsychotics, neuroleptics, and major tranquilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.4) Poisoning by benzodiazepine-based tranquilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.4) Poisoning by benzodiazepine-based tranquilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.4''', NULL, + '(969.4) Poisoning by benzodiazepine-based tranquilizers', '(969.4) Poisoning by benzodiazepine-based tranquilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.5) Poisoning by other tranquilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.5) Poisoning by other tranquilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.5''', NULL, + '(969.5) Poisoning by other tranquilizers', '(969.5) Poisoning by other tranquilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.6) Poisoning by psychodysleptics (hallucinogens)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.6) Poisoning by psychodysleptics (hallucinogens)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.6) Poisoning by psychodysleptics (hallucinogens''', NULL, + '(969.6) Poisoning by psychodysleptics (hallucinogens)', '(969.6) Poisoning by psychodysleptics (hallucinogens)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.8) Poisoning by other specified psychotropic agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.8) Poisoning by other specified psychotropic agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.8''', NULL, + '(969.8) Poisoning by other specified psychotropic agents', '(969.8) Poisoning by other specified psychotropic agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.9) Poisoning by unspecified psychotropic agent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\(969.9) Poisoning by unspecified psychotropic agent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.9''', NULL, + '(969.9) Poisoning by unspecified psychotropic agent', '(969.9) Poisoning by unspecified psychotropic agent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.0''', NULL, + 'Poisoning by antidepressants (969.0)', 'Poisoning by antidepressants (969.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\(969.00) Poisoning by antidepressant, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\(969.00) Poisoning by antidepressant, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.00''', NULL, + '(969.00) Poisoning by antidepressant, unspecified', '(969.00) Poisoning by antidepressant, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\(969.02) Poisoning by selective serotonin and norepinephrine reuptake inhibitors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\(969.02) Poisoning by selective serotonin and norepinephrine reuptake inhibitors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.02''', NULL, + '(969.02) Poisoning by selective serotonin and norepinephrine reuptake inhibitors', '(969.02) Poisoning by selective serotonin and norepinephrine reuptake inhibitors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\(969.03) Poisoning by selective serotonin reuptake inhibitors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\(969.03) Poisoning by selective serotonin reuptake inhibitors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.03''', NULL, + '(969.03) Poisoning by selective serotonin reuptake inhibitors', '(969.03) Poisoning by selective serotonin reuptake inhibitors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\(969.05) Poisoning by tricyclic antidepressants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\(969.05) Poisoning by tricyclic antidepressants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.05''', NULL, + '(969.05) Poisoning by tricyclic antidepressants', '(969.05) Poisoning by tricyclic antidepressants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\(969.09) Poisoning by other antidepressants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by antidepressants (969.0)\(969.09) Poisoning by other antidepressants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.09''', NULL, + '(969.09) Poisoning by other antidepressants', '(969.09) Poisoning by other antidepressants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by psychostimulants (969.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by psychostimulants (969.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.7''', NULL, + 'Poisoning by psychostimulants (969.7)', 'Poisoning by psychostimulants (969.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by psychostimulants (969.7)\(969.72) Poisoning by amphetamines\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by psychostimulants (969.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by psychotropic agents (969)\Poisoning by psychostimulants (969.7)\(969.72) Poisoning by amphetamines\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''969.72''', NULL, + '(969.72) Poisoning by amphetamines', '(969.72) Poisoning by amphetamines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''967''', NULL, + 'Poisoning by sedatives and hypnotics (967)', 'Poisoning by sedatives and hypnotics (967)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.0) Poisoning by barbiturates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.0) Poisoning by barbiturates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''967.0''', NULL, + '(967.0) Poisoning by barbiturates', '(967.0) Poisoning by barbiturates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.1) Poisoning by chloral hydrate group\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.1) Poisoning by chloral hydrate group\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''967.1''', NULL, + '(967.1) Poisoning by chloral hydrate group', '(967.1) Poisoning by chloral hydrate group', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.2) Poisoning by paraldehyde\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.2) Poisoning by paraldehyde\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''967.2''', NULL, + '(967.2) Poisoning by paraldehyde', '(967.2) Poisoning by paraldehyde', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.3) Poisoning by bromine compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.3) Poisoning by bromine compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''967.3''', NULL, + '(967.3) Poisoning by bromine compounds', '(967.3) Poisoning by bromine compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.4) Poisoning by methaqualone compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.4) Poisoning by methaqualone compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''967.4''', NULL, + '(967.4) Poisoning by methaqualone compounds', '(967.4) Poisoning by methaqualone compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.5) Poisoning by glutethimide group\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.5) Poisoning by glutethimide group\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''967.5''', NULL, + '(967.5) Poisoning by glutethimide group', '(967.5) Poisoning by glutethimide group', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.6) Poisoning by mixed sedatives, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.6) Poisoning by mixed sedatives, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''967.6''', NULL, + '(967.6) Poisoning by mixed sedatives, not elsewhere classified', '(967.6) Poisoning by mixed sedatives, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.8) Poisoning by other sedatives and hypnotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.8) Poisoning by other sedatives and hypnotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''967.8''', NULL, + '(967.8) Poisoning by other sedatives and hypnotics', '(967.8) Poisoning by other sedatives and hypnotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.9) Poisoning by unspecified sedative or hypnotic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by sedatives and hypnotics (967)\(967.9) Poisoning by unspecified sedative or hypnotic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''967.9''', NULL, + '(967.9) Poisoning by unspecified sedative or hypnotic', '(967.9) Poisoning by unspecified sedative or hypnotic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''974''', NULL, + 'Poisoning by water, mineral, and uric acid metabolism drugs (974)', 'Poisoning by water, mineral, and uric acid metabolism drugs (974)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.0) Poisoning by mercurial diuretics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.0) Poisoning by mercurial diuretics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''974.0''', NULL, + '(974.0) Poisoning by mercurial diuretics', '(974.0) Poisoning by mercurial diuretics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.1) Poisoning by purine derivative diuretics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.1) Poisoning by purine derivative diuretics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''974.1''', NULL, + '(974.1) Poisoning by purine derivative diuretics', '(974.1) Poisoning by purine derivative diuretics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.2) Poisoning by carbonic acid anhydrase inhibitors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.2) Poisoning by carbonic acid anhydrase inhibitors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''974.2''', NULL, + '(974.2) Poisoning by carbonic acid anhydrase inhibitors', '(974.2) Poisoning by carbonic acid anhydrase inhibitors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.3) Poisoning by saluretics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.3) Poisoning by saluretics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''974.3''', NULL, + '(974.3) Poisoning by saluretics', '(974.3) Poisoning by saluretics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.4) Poisoning by other diuretics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.4) Poisoning by other diuretics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''974.4''', NULL, + '(974.4) Poisoning by other diuretics', '(974.4) Poisoning by other diuretics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.5) Poisoning by electrolytic, caloric, and water-balance agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.5) Poisoning by electrolytic, caloric, and water-balance agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''974.5''', NULL, + '(974.5) Poisoning by electrolytic, caloric, and water-balance agents', '(974.5) Poisoning by electrolytic, caloric, and water-balance agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.6) Poisoning by other mineral salts, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.6) Poisoning by other mineral salts, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''974.6''', NULL, + '(974.6) Poisoning by other mineral salts, not elsewhere classified', '(974.6) Poisoning by other mineral salts, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.7) Poisoning by uric acid metabolism drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Poisoning by drugs, medicinal and biological substances (960-979.99)\Poisoning by water, mineral, and uric acid metabolism drugs (974)\(974.7) Poisoning by uric acid metabolism drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''974.7''', NULL, + '(974.7) Poisoning by uric acid metabolism drugs', '(974.7) Poisoning by uric acid metabolism drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''840'' AND ''848.99''', NULL, + 'Sprains and strains of joints and adjacent muscles (840-848.99)', 'Sprains and strains of joints and adjacent muscles (840-848.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848''', NULL, + 'Other and ill-defined sprains and strains (848)', 'Other and ill-defined sprains and strains (848)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.0) Sprain of septal cartilage of nose\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.0) Sprain of septal cartilage of nose\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.0''', NULL, + '(848.0) Sprain of septal cartilage of nose', '(848.0) Sprain of septal cartilage of nose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.1) Sprain of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.1) Sprain of jaw\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.1''', NULL, + '(848.1) Sprain of jaw', '(848.1) Sprain of jaw', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.2) Sprain of thyroid region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.2) Sprain of thyroid region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.2''', NULL, + '(848.2) Sprain of thyroid region', '(848.2) Sprain of thyroid region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.3) Sprain of ribs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.3) Sprain of ribs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.3''', NULL, + '(848.3) Sprain of ribs', '(848.3) Sprain of ribs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.5) Sprain of pelvic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.5) Sprain of pelvic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.5''', NULL, + '(848.5) Sprain of pelvic', '(848.5) Sprain of pelvic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.8) Other specified sites of sprains and strains\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.8) Other specified sites of sprains and strains\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.8''', NULL, + '(848.8) Other specified sites of sprains and strains', '(848.8) Other specified sites of sprains and strains', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.9) Unspecified site of sprain and strain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\(848.9) Unspecified site of sprain and strain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.9''', NULL, + '(848.9) Unspecified site of sprain and strain', '(848.9) Unspecified site of sprain and strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.4''', NULL, + 'Sternum sprain (848.4)', 'Sternum sprain (848.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\(848.40) Sprain of sternum, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\(848.40) Sprain of sternum, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.40''', NULL, + '(848.40) Sprain of sternum, unspecified site', '(848.40) Sprain of sternum, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\(848.41) Sprain of sternoclavicular (joint) (ligament)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\(848.41) Sprain of sternoclavicular (joint) (ligament)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.41) Sprain of sternoclavicular (joint) (ligament''', NULL, + '(848.41) Sprain of sternoclavicular (joint) (ligament)', '(848.41) Sprain of sternoclavicular (joint) (ligament)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\(848.42) Sprain of chondrosternal (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\(848.42) Sprain of chondrosternal (joint)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.42) Sprain of chondrosternal (joint''', NULL, + '(848.42) Sprain of chondrosternal (joint)', '(848.42) Sprain of chondrosternal (joint)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\(848.49) Sprain of sternum, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Other and ill-defined sprains and strains (848)\Sternum sprain (848.4)\(848.49) Sprain of sternum, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''848.49''', NULL, + '(848.49) Sprain of sternum, other', '(848.49) Sprain of sternum, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845''', NULL, + 'Sprains and strains of ankle and foot (845)', 'Sprains and strains of ankle and foot (845)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.0''', NULL, + 'Ankle sprain (845.0)', 'Ankle sprain (845.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\(845.00) Sprain of ankle, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\(845.00) Sprain of ankle, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.00''', NULL, + '(845.00) Sprain of ankle, unspecified site', '(845.00) Sprain of ankle, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\(845.01) Sprain of deltoid (ligament), ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\(845.01) Sprain of deltoid (ligament), ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.01) Sprain of deltoid (ligament''', NULL, + '(845.01) Sprain of deltoid (ligament), ankle', '(845.01) Sprain of deltoid (ligament), ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\(845.02) Sprain of calcaneofibular (ligament) of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\(845.02) Sprain of calcaneofibular (ligament) of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.02) Sprain of calcaneofibular (ligament''', NULL, + '(845.02) Sprain of calcaneofibular (ligament) of ankle', '(845.02) Sprain of calcaneofibular (ligament) of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\(845.03) Sprain of tibiofibular (ligament), distal of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\(845.03) Sprain of tibiofibular (ligament), distal of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.03) Sprain of tibiofibular (ligament''', NULL, + '(845.03) Sprain of tibiofibular (ligament), distal of ankle', '(845.03) Sprain of tibiofibular (ligament), distal of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\(845.09) Other sprains and strains of ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Ankle sprain (845.0)\(845.09) Other sprains and strains of ankle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.09''', NULL, + '(845.09) Other sprains and strains of ankle', '(845.09) Other sprains and strains of ankle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.1''', NULL, + 'Foot sprain (845.1)', 'Foot sprain (845.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\(845.10) Sprain of foot, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\(845.10) Sprain of foot, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.10''', NULL, + '(845.10) Sprain of foot, unspecified site', '(845.10) Sprain of foot, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\(845.11) Sprain of tarsometatarsal (joint) (ligament) of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\(845.11) Sprain of tarsometatarsal (joint) (ligament) of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.11) Sprain of tarsometatarsal (joint) (ligament''', NULL, + '(845.11) Sprain of tarsometatarsal (joint) (ligament) of foot', '(845.11) Sprain of tarsometatarsal (joint) (ligament) of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\(845.12) Sprain of metatarsophalangeal (joint) of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\(845.12) Sprain of metatarsophalangeal (joint) of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.12) Sprain of metatarsophalangeal (joint''', NULL, + '(845.12) Sprain of metatarsophalangeal (joint) of foot', '(845.12) Sprain of metatarsophalangeal (joint) of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\(845.13) Sprain of interphalangeal (joint), toe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\(845.13) Sprain of interphalangeal (joint), toe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.13) Sprain of interphalangeal (joint''', NULL, + '(845.13) Sprain of interphalangeal (joint), toe', '(845.13) Sprain of interphalangeal (joint), toe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\(845.19) Other sprain of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of ankle and foot (845)\Foot sprain (845.1)\(845.19) Other sprain of foot\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''845.19''', NULL, + '(845.19) Other sprain of foot', '(845.19) Other sprain of foot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''841''', NULL, + 'Sprains and strains of elbow and forearm (841)', 'Sprains and strains of elbow and forearm (841)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.0) Radial collateral ligament sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.0) Radial collateral ligament sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''841.0''', NULL, + '(841.0) Radial collateral ligament sprain', '(841.0) Radial collateral ligament sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.1) Ulnar collateral ligament sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.1) Ulnar collateral ligament sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''841.1''', NULL, + '(841.1) Ulnar collateral ligament sprain', '(841.1) Ulnar collateral ligament sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.2) Radiohumeral (joint) sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.2) Radiohumeral (joint) sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''841.2) Radiohumeral (joint''', NULL, + '(841.2) Radiohumeral (joint) sprain', '(841.2) Radiohumeral (joint) sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.3) Ulnohumeral (joint) sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.3) Ulnohumeral (joint) sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''841.3) Ulnohumeral (joint''', NULL, + '(841.3) Ulnohumeral (joint) sprain', '(841.3) Ulnohumeral (joint) sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.8) Sprains and strains of other specified sites of elbow and forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.8) Sprains and strains of other specified sites of elbow and forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''841.8''', NULL, + '(841.8) Sprains and strains of other specified sites of elbow and forearm', '(841.8) Sprains and strains of other specified sites of elbow and forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.9) Sprains and strains of unspecified site of elbow and forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of elbow and forearm (841)\(841.9) Sprains and strains of unspecified site of elbow and forearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''841.9''', NULL, + '(841.9) Sprains and strains of unspecified site of elbow and forearm', '(841.9) Sprains and strains of unspecified site of elbow and forearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''843''', NULL, + 'Sprains and strains of hip and thigh (843)', 'Sprains and strains of hip and thigh (843)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\(843.0) Iliofemoral (ligament) sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\(843.0) Iliofemoral (ligament) sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''843.0) Iliofemoral (ligament''', NULL, + '(843.0) Iliofemoral (ligament) sprain', '(843.0) Iliofemoral (ligament) sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\(843.1) Ischiocapsular (ligament) sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\(843.1) Ischiocapsular (ligament) sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''843.1) Ischiocapsular (ligament''', NULL, + '(843.1) Ischiocapsular (ligament) sprain', '(843.1) Ischiocapsular (ligament) sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\(843.8) Sprains and strains of other specified sites of hip and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\(843.8) Sprains and strains of other specified sites of hip and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''843.8''', NULL, + '(843.8) Sprains and strains of other specified sites of hip and thigh', '(843.8) Sprains and strains of other specified sites of hip and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\(843.9) Sprains and strains of unspecified site of hip and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of hip and thigh (843)\(843.9) Sprains and strains of unspecified site of hip and thigh\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''843.9''', NULL, + '(843.9) Sprains and strains of unspecified site of hip and thigh', '(843.9) Sprains and strains of unspecified site of hip and thigh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''844''', NULL, + 'Sprains and strains of knee and leg (844)', 'Sprains and strains of knee and leg (844)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.0) Sprain of lateral collateral ligament of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.0) Sprain of lateral collateral ligament of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''844.0''', NULL, + '(844.0) Sprain of lateral collateral ligament of knee', '(844.0) Sprain of lateral collateral ligament of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.1) Sprain of medial collateral ligament of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.1) Sprain of medial collateral ligament of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''844.1''', NULL, + '(844.1) Sprain of medial collateral ligament of knee', '(844.1) Sprain of medial collateral ligament of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.2) Sprain of cruciate ligament of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.2) Sprain of cruciate ligament of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''844.2''', NULL, + '(844.2) Sprain of cruciate ligament of knee', '(844.2) Sprain of cruciate ligament of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.3) Sprain of tibiofibular (joint) (ligament) superior, of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.3) Sprain of tibiofibular (joint) (ligament) superior, of knee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''844.3) Sprain of tibiofibular (joint) (ligament''', NULL, + '(844.3) Sprain of tibiofibular (joint) (ligament) superior, of knee', '(844.3) Sprain of tibiofibular (joint) (ligament) superior, of knee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.8) Sprains and strains of other specified sites of knee and leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.8) Sprains and strains of other specified sites of knee and leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''844.8''', NULL, + '(844.8) Sprains and strains of other specified sites of knee and leg', '(844.8) Sprains and strains of other specified sites of knee and leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.9) Sprains and strains of unspecified site of knee and leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of knee and leg (844)\(844.9) Sprains and strains of unspecified site of knee and leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''844.9''', NULL, + '(844.9) Sprains and strains of unspecified site of knee and leg', '(844.9) Sprains and strains of unspecified site of knee and leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''847''', NULL, + 'Sprains and strains of other and unspecified parts of back (847)', 'Sprains and strains of other and unspecified parts of back (847)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.0) Sprain of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.0) Sprain of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''847.0''', NULL, + '(847.0) Sprain of neck', '(847.0) Sprain of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.1) Sprain of thoracic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.1) Sprain of thoracic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''847.1''', NULL, + '(847.1) Sprain of thoracic', '(847.1) Sprain of thoracic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.2) Sprain of lumbar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.2) Sprain of lumbar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''847.2''', NULL, + '(847.2) Sprain of lumbar', '(847.2) Sprain of lumbar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.3) Sprain of sacrum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.3) Sprain of sacrum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''847.3''', NULL, + '(847.3) Sprain of sacrum', '(847.3) Sprain of sacrum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.4) Sprain of coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.4) Sprain of coccyx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''847.4''', NULL, + '(847.4) Sprain of coccyx', '(847.4) Sprain of coccyx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.9) Sprain of unspecified site of back\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of other and unspecified parts of back (847)\(847.9) Sprain of unspecified site of back\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''847.9''', NULL, + '(847.9) Sprain of unspecified site of back', '(847.9) Sprain of unspecified site of back', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''846''', NULL, + 'Sprains and strains of sacroiliac region (846)', 'Sprains and strains of sacroiliac region (846)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.0) Sprain of lumbosacral (joint) (ligament)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.0) Sprain of lumbosacral (joint) (ligament)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''846.0) Sprain of lumbosacral (joint) (ligament''', NULL, + '(846.0) Sprain of lumbosacral (joint) (ligament)', '(846.0) Sprain of lumbosacral (joint) (ligament)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.1) Sprain of sacroiliac ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.1) Sprain of sacroiliac ligament\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''846.1''', NULL, + '(846.1) Sprain of sacroiliac ligament', '(846.1) Sprain of sacroiliac ligament', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.2) Sprain of sacrospinatus (ligament)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.2) Sprain of sacrospinatus (ligament)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''846.2) Sprain of sacrospinatus (ligament''', NULL, + '(846.2) Sprain of sacrospinatus (ligament)', '(846.2) Sprain of sacrospinatus (ligament)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.3) Sprain of sacrotuberous (ligament)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.3) Sprain of sacrotuberous (ligament)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''846.3) Sprain of sacrotuberous (ligament''', NULL, + '(846.3) Sprain of sacrotuberous (ligament)', '(846.3) Sprain of sacrotuberous (ligament)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.8) Sprain of other specified sites of sacroiliac region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.8) Sprain of other specified sites of sacroiliac region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''846.8''', NULL, + '(846.8) Sprain of other specified sites of sacroiliac region', '(846.8) Sprain of other specified sites of sacroiliac region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.9) Sprain of unspecified site of sacroiliac region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of sacroiliac region (846)\(846.9) Sprain of unspecified site of sacroiliac region\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''846.9''', NULL, + '(846.9) Sprain of unspecified site of sacroiliac region', '(846.9) Sprain of unspecified site of sacroiliac region', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''840''', NULL, + 'Sprains and strains of shoulder and upper arm (840)', 'Sprains and strains of shoulder and upper arm (840)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.0) Acromioclavicular (joint) (ligament) sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.0) Acromioclavicular (joint) (ligament) sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''840.0) Acromioclavicular (joint) (ligament''', NULL, + '(840.0) Acromioclavicular (joint) (ligament) sprain', '(840.0) Acromioclavicular (joint) (ligament) sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.1) Coracoclavicular (ligament) sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.1) Coracoclavicular (ligament) sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''840.1) Coracoclavicular (ligament''', NULL, + '(840.1) Coracoclavicular (ligament) sprain', '(840.1) Coracoclavicular (ligament) sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.2) Coracohumeral (ligament) sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.2) Coracohumeral (ligament) sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''840.2) Coracohumeral (ligament''', NULL, + '(840.2) Coracohumeral (ligament) sprain', '(840.2) Coracohumeral (ligament) sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.3) Infraspinatus (muscle) (tendon) sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.3) Infraspinatus (muscle) (tendon) sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''840.3) Infraspinatus (muscle) (tendon''', NULL, + '(840.3) Infraspinatus (muscle) (tendon) sprain', '(840.3) Infraspinatus (muscle) (tendon) sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.4) Rotator cuff (capsule) sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.4) Rotator cuff (capsule) sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''840.4) Rotator cuff (capsule''', NULL, + '(840.4) Rotator cuff (capsule) sprain', '(840.4) Rotator cuff (capsule) sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.5) Subscapularis (muscle) sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.5) Subscapularis (muscle) sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''840.5) Subscapularis (muscle''', NULL, + '(840.5) Subscapularis (muscle) sprain', '(840.5) Subscapularis (muscle) sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.6) Supraspinatus (muscle) (tendon) sprain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.6) Supraspinatus (muscle) (tendon) sprain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''840.6) Supraspinatus (muscle) (tendon''', NULL, + '(840.6) Supraspinatus (muscle) (tendon) sprain', '(840.6) Supraspinatus (muscle) (tendon) sprain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.7) Superior glenoid labrum lesion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.7) Superior glenoid labrum lesion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''840.7''', NULL, + '(840.7) Superior glenoid labrum lesion', '(840.7) Superior glenoid labrum lesion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.8) Sprains and strains of other specified sites of shoulder and upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.8) Sprains and strains of other specified sites of shoulder and upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''840.8''', NULL, + '(840.8) Sprains and strains of other specified sites of shoulder and upper arm', '(840.8) Sprains and strains of other specified sites of shoulder and upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.9) Sprains and strains of unspecified site of shoulder and upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of shoulder and upper arm (840)\(840.9) Sprains and strains of unspecified site of shoulder and upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''840.9''', NULL, + '(840.9) Sprains and strains of unspecified site of shoulder and upper arm', '(840.9) Sprains and strains of unspecified site of shoulder and upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842''', NULL, + 'Sprains and strains of wrist and hand (842)', 'Sprains and strains of wrist and hand (842)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842.1''', NULL, + 'Hand sprain (842.1)', 'Hand sprain (842.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\(842.10) Sprain of hand, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\(842.10) Sprain of hand, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842.10''', NULL, + '(842.10) Sprain of hand, unspecified site', '(842.10) Sprain of hand, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\(842.11) Sprain of carpometacarpal (joint) of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\(842.11) Sprain of carpometacarpal (joint) of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842.11) Sprain of carpometacarpal (joint''', NULL, + '(842.11) Sprain of carpometacarpal (joint) of hand', '(842.11) Sprain of carpometacarpal (joint) of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\(842.12) Sprain of metacarpophalangeal (joint) of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\(842.12) Sprain of metacarpophalangeal (joint) of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842.12) Sprain of metacarpophalangeal (joint''', NULL, + '(842.12) Sprain of metacarpophalangeal (joint) of hand', '(842.12) Sprain of metacarpophalangeal (joint) of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\(842.13) Sprain of interphalangeal (joint) of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\(842.13) Sprain of interphalangeal (joint) of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842.13) Sprain of interphalangeal (joint''', NULL, + '(842.13) Sprain of interphalangeal (joint) of hand', '(842.13) Sprain of interphalangeal (joint) of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\(842.19) Other sprains and strains of hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Hand sprain (842.1)\(842.19) Other sprains and strains of hand\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842.19''', NULL, + '(842.19) Other sprains and strains of hand', '(842.19) Other sprains and strains of hand', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842.0''', NULL, + 'Wrist sprain (842.0)', 'Wrist sprain (842.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\(842.00) Sprain of wrist, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\(842.00) Sprain of wrist, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842.00''', NULL, + '(842.00) Sprain of wrist, unspecified site', '(842.00) Sprain of wrist, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\(842.01) Sprain of carpal (joint) of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\(842.01) Sprain of carpal (joint) of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842.01) Sprain of carpal (joint''', NULL, + '(842.01) Sprain of carpal (joint) of wrist', '(842.01) Sprain of carpal (joint) of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\(842.02) Sprain of radiocarpal (joint) (ligament) of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\(842.02) Sprain of radiocarpal (joint) (ligament) of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842.02) Sprain of radiocarpal (joint) (ligament''', NULL, + '(842.02) Sprain of radiocarpal (joint) (ligament) of wrist', '(842.02) Sprain of radiocarpal (joint) (ligament) of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\(842.09) Other sprains and strains of wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Sprains and strains of joints and adjacent muscles (840-848.99)\Sprains and strains of wrist and hand (842)\Wrist sprain (842.0)\(842.09) Other sprains and strains of wrist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''842.09''', NULL, + '(842.09) Other sprains and strains of wrist', '(842.09) Other sprains and strains of wrist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''910'' AND ''919.99''', NULL, + 'Superficial injury (910-919.99)', 'Superficial injury (910-919.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''913''', NULL, + 'Superficial injury of elbow, forearm, and wrist (913)', 'Superficial injury of elbow, forearm, and wrist (913)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.0) Abrasion or friction burn of elbow, forearm, and wrist, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.0) Abrasion or friction burn of elbow, forearm, and wrist, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''913.0''', NULL, + '(913.0) Abrasion or friction burn of elbow, forearm, and wrist, without mention of infection', '(913.0) Abrasion or friction burn of elbow, forearm, and wrist, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.1) Abrasion or friction burn of elbow, forearm, and wrist, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.1) Abrasion or friction burn of elbow, forearm, and wrist, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''913.1''', NULL, + '(913.1) Abrasion or friction burn of elbow, forearm, and wrist, infected', '(913.1) Abrasion or friction burn of elbow, forearm, and wrist, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.2) Blister of elbow, forearm, and wrist, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.2) Blister of elbow, forearm, and wrist, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''913.2''', NULL, + '(913.2) Blister of elbow, forearm, and wrist, without mention of infection', '(913.2) Blister of elbow, forearm, and wrist, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.3) Blister of elbow, forearm, and wrist, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.3) Blister of elbow, forearm, and wrist, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''913.3''', NULL, + '(913.3) Blister of elbow, forearm, and wrist, infected', '(913.3) Blister of elbow, forearm, and wrist, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.4) Insect bite, nonvenomous of elbow, forearm, and wrist, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.4) Insect bite, nonvenomous of elbow, forearm, and wrist, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''913.4''', NULL, + '(913.4) Insect bite, nonvenomous of elbow, forearm, and wrist, without mention of infection', '(913.4) Insect bite, nonvenomous of elbow, forearm, and wrist, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.5) Insect bite, nonvenomous, of elbow, forearm, and wrist, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.5) Insect bite, nonvenomous, of elbow, forearm, and wrist, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''913.5''', NULL, + '(913.5) Insect bite, nonvenomous, of elbow, forearm, and wrist, infected', '(913.5) Insect bite, nonvenomous, of elbow, forearm, and wrist, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.6) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound and without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.6) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound and without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''913.6) Superficial foreign body (splinter''', NULL, + '(913.6) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound and without mention of infection', '(913.6) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound and without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.7) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.7) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''913.7) Superficial foreign body (splinter''', NULL, + '(913.7) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound, infected', '(913.7) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.8) Other and unspecified superficial injury of elbow, forearm, and wrist, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.8) Other and unspecified superficial injury of elbow, forearm, and wrist, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''913.8''', NULL, + '(913.8) Other and unspecified superficial injury of elbow, forearm, and wrist, without mention of infection', '(913.8) Other and unspecified superficial injury of elbow, forearm, and wrist, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.9) Other and unspecified superficial injury of elbow, forearm, and wrist, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of elbow, forearm, and wrist (913)\(913.9) Other and unspecified superficial injury of elbow, forearm, and wrist, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''913.9''', NULL, + '(913.9) Other and unspecified superficial injury of elbow, forearm, and wrist, infected', '(913.9) Other and unspecified superficial injury of elbow, forearm, and wrist, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''918''', NULL, + 'Superficial injury of eye and adnexa (918)', 'Superficial injury of eye and adnexa (918)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\(918.0) Superficial injury of eyelids and periocular area\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\(918.0) Superficial injury of eyelids and periocular area\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''918.0''', NULL, + '(918.0) Superficial injury of eyelids and periocular area', '(918.0) Superficial injury of eyelids and periocular area', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\(918.1) Superficial injury of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\(918.1) Superficial injury of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''918.1''', NULL, + '(918.1) Superficial injury of cornea', '(918.1) Superficial injury of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\(918.2) Superficial injury of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\(918.2) Superficial injury of conjunctiva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''918.2''', NULL, + '(918.2) Superficial injury of conjunctiva', '(918.2) Superficial injury of conjunctiva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\(918.9) Other and unspecified superficial injuries of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of eye and adnexa (918)\(918.9) Other and unspecified superficial injuries of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''918.9''', NULL, + '(918.9) Other and unspecified superficial injuries of eye', '(918.9) Other and unspecified superficial injuries of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''910''', NULL, + 'Superficial injury of face, neck, and scalp except eye (910)', 'Superficial injury of face, neck, and scalp except eye (910)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.0) Abrasion or friction burn of face, neck, and scalp except eye, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.0) Abrasion or friction burn of face, neck, and scalp except eye, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''910.0''', NULL, + '(910.0) Abrasion or friction burn of face, neck, and scalp except eye, without mention of infection', '(910.0) Abrasion or friction burn of face, neck, and scalp except eye, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.1) Abrasion or friction burn of face, neck, and scalp except eye, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.1) Abrasion or friction burn of face, neck, and scalp except eye, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''910.1''', NULL, + '(910.1) Abrasion or friction burn of face, neck, and scalp except eye, infected', '(910.1) Abrasion or friction burn of face, neck, and scalp except eye, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.2) Blister of face, neck, and scalp except eye, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.2) Blister of face, neck, and scalp except eye, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''910.2''', NULL, + '(910.2) Blister of face, neck, and scalp except eye, without mention of infection', '(910.2) Blister of face, neck, and scalp except eye, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.3) Blister of face, neck, and scalp except eye, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.3) Blister of face, neck, and scalp except eye, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''910.3''', NULL, + '(910.3) Blister of face, neck, and scalp except eye, infected', '(910.3) Blister of face, neck, and scalp except eye, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.4) Insect bite, nonvenomous of face, neck, and scalp except eye, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.4) Insect bite, nonvenomous of face, neck, and scalp except eye, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''910.4''', NULL, + '(910.4) Insect bite, nonvenomous of face, neck, and scalp except eye, without mention of infection', '(910.4) Insect bite, nonvenomous of face, neck, and scalp except eye, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.5) Insect bite, nonvenomous of face, neck, and scalp except eye, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.5) Insect bite, nonvenomous of face, neck, and scalp except eye, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''910.5''', NULL, + '(910.5) Insect bite, nonvenomous of face, neck, and scalp except eye, infected', '(910.5) Insect bite, nonvenomous of face, neck, and scalp except eye, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.6) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound and without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.6) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound and without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''910.6) Superficial foreign body (splinter''', NULL, + '(910.6) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound and without mention of infection', '(910.6) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound and without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.7) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.7) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''910.7) Superficial foreign body (splinter''', NULL, + '(910.7) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound, infected', '(910.7) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.8) Other and unspecified superficial injury of face, neck, and scalp, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.8) Other and unspecified superficial injury of face, neck, and scalp, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''910.8''', NULL, + '(910.8) Other and unspecified superficial injury of face, neck, and scalp, without mention of infection', '(910.8) Other and unspecified superficial injury of face, neck, and scalp, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.9) Other and unspecified superficial injury of face, neck, and scalp, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of face, neck, and scalp except eye (910)\(910.9) Other and unspecified superficial injury of face, neck, and scalp, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''910.9''', NULL, + '(910.9) Other and unspecified superficial injury of face, neck, and scalp, infected', '(910.9) Other and unspecified superficial injury of face, neck, and scalp, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (915''', NULL, + 'Superficial injury of finger(s) (915)', 'Superficial injury of finger(s) (915)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.0) Abrasion or friction burn of finger(s), without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.0) Abrasion or friction burn of finger(s), without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''915.0) Abrasion or friction burn of finger(s''', NULL, + '(915.0) Abrasion or friction burn of finger(s), without mention of infection', '(915.0) Abrasion or friction burn of finger(s), without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.1) Abrasion or friction burn of finger(s), infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.1) Abrasion or friction burn of finger(s), infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''915.1) Abrasion or friction burn of finger(s''', NULL, + '(915.1) Abrasion or friction burn of finger(s), infected', '(915.1) Abrasion or friction burn of finger(s), infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.2) Blister of finger(s), without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.2) Blister of finger(s), without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''915.2) Blister of finger(s''', NULL, + '(915.2) Blister of finger(s), without mention of infection', '(915.2) Blister of finger(s), without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.3) Blister of finger(s), infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.3) Blister of finger(s), infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''915.3) Blister of finger(s''', NULL, + '(915.3) Blister of finger(s), infected', '(915.3) Blister of finger(s), infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.4) Insect bite, nonvenomous, of finger(s), without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.4) Insect bite, nonvenomous, of finger(s), without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''915.4) Insect bite, nonvenomous, of finger(s''', NULL, + '(915.4) Insect bite, nonvenomous, of finger(s), without mention of infection', '(915.4) Insect bite, nonvenomous, of finger(s), without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.5) Insect bite, nonvenomous of finger(s), infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.5) Insect bite, nonvenomous of finger(s), infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''915.5) Insect bite, nonvenomous of finger(s''', NULL, + '(915.5) Insect bite, nonvenomous of finger(s), infected', '(915.5) Insect bite, nonvenomous of finger(s), infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.6) Superficial foreign body (splinter) of finger(s), without major open wound and without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.6) Superficial foreign body (splinter) of finger(s), without major open wound and without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''915.6) Superficial foreign body (splinter) of finger(s''', NULL, + '(915.6) Superficial foreign body (splinter) of finger(s), without major open wound and without mention of infection', '(915.6) Superficial foreign body (splinter) of finger(s), without major open wound and without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.7) Superficial foreign body (splinter) of finger(s), without major open wound, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.7) Superficial foreign body (splinter) of finger(s), without major open wound, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''915.7) Superficial foreign body (splinter) of finger(s''', NULL, + '(915.7) Superficial foreign body (splinter) of finger(s), without major open wound, infected', '(915.7) Superficial foreign body (splinter) of finger(s), without major open wound, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.8) Other and unspecified superficial injury of fingers without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.8) Other and unspecified superficial injury of fingers without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''915.8''', NULL, + '(915.8) Other and unspecified superficial injury of fingers without mention of infection', '(915.8) Other and unspecified superficial injury of fingers without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.9) Other and unspecified superficial injury of fingers, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of finger(s) (915)\(915.9) Other and unspecified superficial injury of fingers, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''915.9''', NULL, + '(915.9) Other and unspecified superficial injury of fingers, infected', '(915.9) Other and unspecified superficial injury of fingers, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) (917''', NULL, + 'Superficial injury of foot and toe(s) (917)', 'Superficial injury of foot and toe(s) (917)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.0) Abrasion or friction burn of foot and toe(s), without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.0) Abrasion or friction burn of foot and toe(s), without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''917.0) Abrasion or friction burn of foot and toe(s''', NULL, + '(917.0) Abrasion or friction burn of foot and toe(s), without mention of infection', '(917.0) Abrasion or friction burn of foot and toe(s), without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.1) Abrasion or friction burn of foot and toe(s), infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.1) Abrasion or friction burn of foot and toe(s), infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''917.1) Abrasion or friction burn of foot and toe(s''', NULL, + '(917.1) Abrasion or friction burn of foot and toe(s), infected', '(917.1) Abrasion or friction burn of foot and toe(s), infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.2) Blister of foot and toe(s), without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.2) Blister of foot and toe(s), without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''917.2) Blister of foot and toe(s''', NULL, + '(917.2) Blister of foot and toe(s), without mention of infection', '(917.2) Blister of foot and toe(s), without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.3) Blister of foot and toe(s), infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.3) Blister of foot and toe(s), infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''917.3) Blister of foot and toe(s''', NULL, + '(917.3) Blister of foot and toe(s), infected', '(917.3) Blister of foot and toe(s), infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.4) Insect bite, nonvenomous, of foot and toe(s), without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.4) Insect bite, nonvenomous, of foot and toe(s), without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''917.4) Insect bite, nonvenomous, of foot and toe(s''', NULL, + '(917.4) Insect bite, nonvenomous, of foot and toe(s), without mention of infection', '(917.4) Insect bite, nonvenomous, of foot and toe(s), without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.5) Insect bite, nonvenomous, of foot and toe(s), infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.5) Insect bite, nonvenomous, of foot and toe(s), infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''917.5) Insect bite, nonvenomous, of foot and toe(s''', NULL, + '(917.5) Insect bite, nonvenomous, of foot and toe(s), infected', '(917.5) Insect bite, nonvenomous, of foot and toe(s), infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.6) Superficial foreign body (splinter) of foot and toe(s), without major open wound and without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.6) Superficial foreign body (splinter) of foot and toe(s), without major open wound and without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''917.6) Superficial foreign body (splinter) of foot and toe(s''', NULL, + '(917.6) Superficial foreign body (splinter) of foot and toe(s), without major open wound and without mention of infection', '(917.6) Superficial foreign body (splinter) of foot and toe(s), without major open wound and without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.7) Superficial foreign body (splinter) of foot and toe(s), without major open wound, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.7) Superficial foreign body (splinter) of foot and toe(s), without major open wound, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''917.7) Superficial foreign body (splinter) of foot and toe(s''', NULL, + '(917.7) Superficial foreign body (splinter) of foot and toe(s), without major open wound, infected', '(917.7) Superficial foreign body (splinter) of foot and toe(s), without major open wound, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.8) Other and unspecified superficial injury of foot and toes, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.8) Other and unspecified superficial injury of foot and toes, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''917.8''', NULL, + '(917.8) Other and unspecified superficial injury of foot and toes, without mention of infection', '(917.8) Other and unspecified superficial injury of foot and toes, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.9) Other and unspecified superficial injury of foot and toes, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of foot and toe(s) (917)\(917.9) Other and unspecified superficial injury of foot and toes, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''917.9''', NULL, + '(917.9) Other and unspecified superficial injury of foot and toes, infected', '(917.9) Other and unspecified superficial injury of foot and toes, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''s) except finger(s) alone (914''', NULL, + 'Superficial injury of hand(s) except finger(s) alone (914)', 'Superficial injury of hand(s) except finger(s) alone (914)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.0) Abrasion or friction burn of hand(s) except finger(s) alone, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.0) Abrasion or friction burn of hand(s) except finger(s) alone, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''914.0) Abrasion or friction burn of hand(s) except finger(s''', NULL, + '(914.0) Abrasion or friction burn of hand(s) except finger(s) alone, without mention of infection', '(914.0) Abrasion or friction burn of hand(s) except finger(s) alone, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.1) Abrasion or friction burn of hand(s) except finger(s) alone, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.1) Abrasion or friction burn of hand(s) except finger(s) alone, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''914.1) Abrasion or friction burn of hand(s) except finger(s''', NULL, + '(914.1) Abrasion or friction burn of hand(s) except finger(s) alone, infected', '(914.1) Abrasion or friction burn of hand(s) except finger(s) alone, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.2) Blister of hand(s) except finger(s) alone, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.2) Blister of hand(s) except finger(s) alone, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''914.2) Blister of hand(s) except finger(s''', NULL, + '(914.2) Blister of hand(s) except finger(s) alone, without mention of infection', '(914.2) Blister of hand(s) except finger(s) alone, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.3) Blister of hand(s) except finger(s) alone, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.3) Blister of hand(s) except finger(s) alone, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''914.3) Blister of hand(s) except finger(s''', NULL, + '(914.3) Blister of hand(s) except finger(s) alone, infected', '(914.3) Blister of hand(s) except finger(s) alone, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.4) Insect bite, nonvenomous, of hand(s) except finger(s) alone, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.4) Insect bite, nonvenomous, of hand(s) except finger(s) alone, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''914.4) Insect bite, nonvenomous, of hand(s) except finger(s''', NULL, + '(914.4) Insect bite, nonvenomous, of hand(s) except finger(s) alone, without mention of infection', '(914.4) Insect bite, nonvenomous, of hand(s) except finger(s) alone, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.5) Insect bite, nonvenomous, of hand(s) except finger(s) alone, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.5) Insect bite, nonvenomous, of hand(s) except finger(s) alone, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''914.5) Insect bite, nonvenomous, of hand(s) except finger(s''', NULL, + '(914.5) Insect bite, nonvenomous, of hand(s) except finger(s) alone, infected', '(914.5) Insect bite, nonvenomous, of hand(s) except finger(s) alone, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.6) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound and without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.6) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound and without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''914.6) Superficial foreign body (splinter) of hand(s) except finger(s''', NULL, + '(914.6) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound and without mention of infection', '(914.6) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound and without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.7) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.7) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''914.7) Superficial foreign body (splinter) of hand(s) except finger(s''', NULL, + '(914.7) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound, infected', '(914.7) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.8) Other and unspecified superficial injury of hand(s) except finger(s) alone, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.8) Other and unspecified superficial injury of hand(s) except finger(s) alone, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''914.8) Other and unspecified superficial injury of hand(s) except finger(s''', NULL, + '(914.8) Other and unspecified superficial injury of hand(s) except finger(s) alone, without mention of infection', '(914.8) Other and unspecified superficial injury of hand(s) except finger(s) alone, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.9) Other and unspecified superficial injury of hand(s) except finger(s) alone, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hand(s) except finger(s) alone (914)\(914.9) Other and unspecified superficial injury of hand(s) except finger(s) alone, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''914.9) Other and unspecified superficial injury of hand(s) except finger(s''', NULL, + '(914.9) Other and unspecified superficial injury of hand(s) except finger(s) alone, infected', '(914.9) Other and unspecified superficial injury of hand(s) except finger(s) alone, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''916''', NULL, + 'Superficial injury of hip, thigh, leg, and ankle (916)', 'Superficial injury of hip, thigh, leg, and ankle (916)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.0) Abrasion or friction burn of hip, thigh, leg, and ankle, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.0) Abrasion or friction burn of hip, thigh, leg, and ankle, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''916.0''', NULL, + '(916.0) Abrasion or friction burn of hip, thigh, leg, and ankle, without mention of infection', '(916.0) Abrasion or friction burn of hip, thigh, leg, and ankle, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.1) Abrasion or friction burn of hip, thigh, leg, and ankle, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.1) Abrasion or friction burn of hip, thigh, leg, and ankle, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''916.1''', NULL, + '(916.1) Abrasion or friction burn of hip, thigh, leg, and ankle, infected', '(916.1) Abrasion or friction burn of hip, thigh, leg, and ankle, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.2) Blister of hip, thigh, leg, and ankle, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.2) Blister of hip, thigh, leg, and ankle, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''916.2''', NULL, + '(916.2) Blister of hip, thigh, leg, and ankle, without mention of infection', '(916.2) Blister of hip, thigh, leg, and ankle, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.3) Blister of hip, thigh, leg, and ankle, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.3) Blister of hip, thigh, leg, and ankle, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''916.3''', NULL, + '(916.3) Blister of hip, thigh, leg, and ankle, infected', '(916.3) Blister of hip, thigh, leg, and ankle, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.4) Insect bite, nonvenomous, of hip, thigh, leg, and ankle, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.4) Insect bite, nonvenomous, of hip, thigh, leg, and ankle, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''916.4''', NULL, + '(916.4) Insect bite, nonvenomous, of hip, thigh, leg, and ankle, without mention of infection', '(916.4) Insect bite, nonvenomous, of hip, thigh, leg, and ankle, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.5) Insect bite, nonvenomous of hip, thigh, leg, and ankle, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.5) Insect bite, nonvenomous of hip, thigh, leg, and ankle, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''916.5''', NULL, + '(916.5) Insect bite, nonvenomous of hip, thigh, leg, and ankle, infected', '(916.5) Insect bite, nonvenomous of hip, thigh, leg, and ankle, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.6) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound and without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.6) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound and without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''916.6) Superficial foreign body (splinter''', NULL, + '(916.6) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound and without mention of infection', '(916.6) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound and without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.7) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.7) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''916.7) Superficial foreign body (splinter''', NULL, + '(916.7) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound, infected', '(916.7) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.8) Other and unspecified superficial injury of hip, thigh, leg, and ankle, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.8) Other and unspecified superficial injury of hip, thigh, leg, and ankle, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''916.8''', NULL, + '(916.8) Other and unspecified superficial injury of hip, thigh, leg, and ankle, without mention of infection', '(916.8) Other and unspecified superficial injury of hip, thigh, leg, and ankle, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.9) Other and unspecified superficial injury of hip, thigh, leg, and ankle, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of hip, thigh, leg, and ankle (916)\(916.9) Other and unspecified superficial injury of hip, thigh, leg, and ankle, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''916.9''', NULL, + '(916.9) Other and unspecified superficial injury of hip, thigh, leg, and ankle, infected', '(916.9) Other and unspecified superficial injury of hip, thigh, leg, and ankle, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''919''', NULL, + 'Superficial injury of other, multiple, and unspecified sites (919)', 'Superficial injury of other, multiple, and unspecified sites (919)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.0) Abrasion or friction burn of other, multiple, and unspecified sites, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.0) Abrasion or friction burn of other, multiple, and unspecified sites, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''919.0''', NULL, + '(919.0) Abrasion or friction burn of other, multiple, and unspecified sites, without mention of infection', '(919.0) Abrasion or friction burn of other, multiple, and unspecified sites, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.1) Abrasion or friction burn of other, multiple, and unspecified sites, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.1) Abrasion or friction burn of other, multiple, and unspecified sites, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''919.1''', NULL, + '(919.1) Abrasion or friction burn of other, multiple, and unspecified sites, infected', '(919.1) Abrasion or friction burn of other, multiple, and unspecified sites, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.2) Blister of other, multiple, and unspecified sites, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.2) Blister of other, multiple, and unspecified sites, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''919.2''', NULL, + '(919.2) Blister of other, multiple, and unspecified sites, without mention of infection', '(919.2) Blister of other, multiple, and unspecified sites, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.3) Blister of other, multiple, and unspecified sites, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.3) Blister of other, multiple, and unspecified sites, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''919.3''', NULL, + '(919.3) Blister of other, multiple, and unspecified sites, infected', '(919.3) Blister of other, multiple, and unspecified sites, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.4) Insect bite, nonvenomous, of other, multiple, and unspecified sites, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.4) Insect bite, nonvenomous, of other, multiple, and unspecified sites, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''919.4''', NULL, + '(919.4) Insect bite, nonvenomous, of other, multiple, and unspecified sites, without mention of infection', '(919.4) Insect bite, nonvenomous, of other, multiple, and unspecified sites, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.5) Insect bite, nonvenomous, of other, multiple, and unspecified sites, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.5) Insect bite, nonvenomous, of other, multiple, and unspecified sites, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''919.5''', NULL, + '(919.5) Insect bite, nonvenomous, of other, multiple, and unspecified sites, infected', '(919.5) Insect bite, nonvenomous, of other, multiple, and unspecified sites, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.6) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound and without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.6) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound and without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''919.6) Superficial foreign body (splinter''', NULL, + '(919.6) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound and without mention of infection', '(919.6) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound and without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.7) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.7) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''919.7) Superficial foreign body (splinter''', NULL, + '(919.7) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound, infected', '(919.7) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.8) Other and unspecified superficial injury of other, multiple, and unspecified sites, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.8) Other and unspecified superficial injury of other, multiple, and unspecified sites, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''919.8''', NULL, + '(919.8) Other and unspecified superficial injury of other, multiple, and unspecified sites, without mention of infection', '(919.8) Other and unspecified superficial injury of other, multiple, and unspecified sites, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.9) Other and unspecified superficial injury of other, multiple, and unspecified sites, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of other, multiple, and unspecified sites (919)\(919.9) Other and unspecified superficial injury of other, multiple, and unspecified sites, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''919.9''', NULL, + '(919.9) Other and unspecified superficial injury of other, multiple, and unspecified sites, infected', '(919.9) Other and unspecified superficial injury of other, multiple, and unspecified sites, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''912''', NULL, + 'Superficial injury of shoulder and upper arm (912)', 'Superficial injury of shoulder and upper arm (912)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.0) Abrasion or friction burn of shoulder and upper arm, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.0) Abrasion or friction burn of shoulder and upper arm, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''912.0''', NULL, + '(912.0) Abrasion or friction burn of shoulder and upper arm, without mention of infection', '(912.0) Abrasion or friction burn of shoulder and upper arm, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.1) Abrasion or friction burn of shoulder and upper arm, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.1) Abrasion or friction burn of shoulder and upper arm, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''912.1''', NULL, + '(912.1) Abrasion or friction burn of shoulder and upper arm, infected', '(912.1) Abrasion or friction burn of shoulder and upper arm, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.2) Blister of shoulder and upper arm, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.2) Blister of shoulder and upper arm, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''912.2''', NULL, + '(912.2) Blister of shoulder and upper arm, without mention of infection', '(912.2) Blister of shoulder and upper arm, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.3) Blister of shoulder and upper arm, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.3) Blister of shoulder and upper arm, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''912.3''', NULL, + '(912.3) Blister of shoulder and upper arm, infected', '(912.3) Blister of shoulder and upper arm, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.4) Insect bite, nonvenomous of shoulder and upper arm, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.4) Insect bite, nonvenomous of shoulder and upper arm, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''912.4''', NULL, + '(912.4) Insect bite, nonvenomous of shoulder and upper arm, without mention of infection', '(912.4) Insect bite, nonvenomous of shoulder and upper arm, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.5) Insect bite, nonvenomous of shoulder and upper arm, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.5) Insect bite, nonvenomous of shoulder and upper arm, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''912.5''', NULL, + '(912.5) Insect bite, nonvenomous of shoulder and upper arm, infected', '(912.5) Insect bite, nonvenomous of shoulder and upper arm, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.6) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound and without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.6) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound and without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''912.6) Superficial foreign body (splinter''', NULL, + '(912.6) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound and without mention of infection', '(912.6) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound and without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.7) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.7) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''912.7) Superficial foreign body (splinter''', NULL, + '(912.7) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound, infected', '(912.7) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.8) Other and unspecified superficial injury of shoulder and upper arm, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.8) Other and unspecified superficial injury of shoulder and upper arm, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''912.8''', NULL, + '(912.8) Other and unspecified superficial injury of shoulder and upper arm, without mention of infection', '(912.8) Other and unspecified superficial injury of shoulder and upper arm, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.9) Other and unspecified superficial injury of shoulder and upper arm, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of shoulder and upper arm (912)\(912.9) Other and unspecified superficial injury of shoulder and upper arm, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''912.9''', NULL, + '(912.9) Other and unspecified superficial injury of shoulder and upper arm, infected', '(912.9) Other and unspecified superficial injury of shoulder and upper arm, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''911''', NULL, + 'Superficial injury of trunk (911)', 'Superficial injury of trunk (911)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.0) Abrasion or friction burn of trunk, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.0) Abrasion or friction burn of trunk, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''911.0''', NULL, + '(911.0) Abrasion or friction burn of trunk, without mention of infection', '(911.0) Abrasion or friction burn of trunk, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.1) Abrasion or friction burn of trunk, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.1) Abrasion or friction burn of trunk, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''911.1''', NULL, + '(911.1) Abrasion or friction burn of trunk, infected', '(911.1) Abrasion or friction burn of trunk, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.2) Blister of trunk, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.2) Blister of trunk, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''911.2''', NULL, + '(911.2) Blister of trunk, without mention of infection', '(911.2) Blister of trunk, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.3) Blister of trunk, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.3) Blister of trunk, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''911.3''', NULL, + '(911.3) Blister of trunk, infected', '(911.3) Blister of trunk, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.4) Insect bite, nonvenomous of trunk, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.4) Insect bite, nonvenomous of trunk, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''911.4''', NULL, + '(911.4) Insect bite, nonvenomous of trunk, without mention of infection', '(911.4) Insect bite, nonvenomous of trunk, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.5) Insect bite, nonvenomous of trunk, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.5) Insect bite, nonvenomous of trunk, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''911.5''', NULL, + '(911.5) Insect bite, nonvenomous of trunk, infected', '(911.5) Insect bite, nonvenomous of trunk, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.6) Superficial foreign body (splinter) of trunk, without major open wound and without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.6) Superficial foreign body (splinter) of trunk, without major open wound and without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''911.6) Superficial foreign body (splinter''', NULL, + '(911.6) Superficial foreign body (splinter) of trunk, without major open wound and without mention of infection', '(911.6) Superficial foreign body (splinter) of trunk, without major open wound and without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.7) Superficial foreign body (splinter) of trunk, without major open wound, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.7) Superficial foreign body (splinter) of trunk, without major open wound, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''911.7) Superficial foreign body (splinter''', NULL, + '(911.7) Superficial foreign body (splinter) of trunk, without major open wound, infected', '(911.7) Superficial foreign body (splinter) of trunk, without major open wound, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.8) Other and unspecified superficial injury of trunk, without mention of infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.8) Other and unspecified superficial injury of trunk, without mention of infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''911.8''', NULL, + '(911.8) Other and unspecified superficial injury of trunk, without mention of infection', '(911.8) Other and unspecified superficial injury of trunk, without mention of infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.9) Other and unspecified superficial injury of trunk, infected\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Superficial injury (910-919.99)\Superficial injury of trunk (911)\(911.9) Other and unspecified superficial injury of trunk, infected\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''911.9''', NULL, + '(911.9) Other and unspecified superficial injury of trunk, infected', '(911.9) Other and unspecified superficial injury of trunk, infected', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''980'' AND ''989.99''', NULL, + 'Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)', 'Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\(981) Toxic effect of petroleum products\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\(981) Toxic effect of petroleum products\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''981''', NULL, + '(981) Toxic effect of petroleum products', '(981) Toxic effect of petroleum products', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\(986) Toxic effect of carbon monoxide\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\(986) Toxic effect of carbon monoxide\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''986''', NULL, + '(986) Toxic effect of carbon monoxide', '(986) Toxic effect of carbon monoxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''980''', NULL, + 'Toxic effect of alcohol (980)', 'Toxic effect of alcohol (980)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.0) Toxic effect of ethyl alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.0) Toxic effect of ethyl alcohol\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''980.0''', NULL, + '(980.0) Toxic effect of ethyl alcohol', '(980.0) Toxic effect of ethyl alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.1) Toxic effect of methyl alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.1) Toxic effect of methyl alcohol\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''980.1''', NULL, + '(980.1) Toxic effect of methyl alcohol', '(980.1) Toxic effect of methyl alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.2) Toxic effect of isopropyl alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.2) Toxic effect of isopropyl alcohol\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''980.2''', NULL, + '(980.2) Toxic effect of isopropyl alcohol', '(980.2) Toxic effect of isopropyl alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.3) Toxic effect of fusel oil\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.3) Toxic effect of fusel oil\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''980.3''', NULL, + '(980.3) Toxic effect of fusel oil', '(980.3) Toxic effect of fusel oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.8) Toxic effect of other specified alcohols\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.8) Toxic effect of other specified alcohols\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''980.8''', NULL, + '(980.8) Toxic effect of other specified alcohols', '(980.8) Toxic effect of other specified alcohols', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.9) Toxic effect of unspecified alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of alcohol (980)\(980.9) Toxic effect of unspecified alcohol\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''980.9''', NULL, + '(980.9) Toxic effect of unspecified alcohol', '(980.9) Toxic effect of unspecified alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''983''', NULL, + 'Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)', 'Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\(983.0) Toxic effect of corrosive aromatics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\(983.0) Toxic effect of corrosive aromatics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''983.0''', NULL, + '(983.0) Toxic effect of corrosive aromatics', '(983.0) Toxic effect of corrosive aromatics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\(983.1) Toxic effect of acids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\(983.1) Toxic effect of acids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''983.1''', NULL, + '(983.1) Toxic effect of acids', '(983.1) Toxic effect of acids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\(983.2) Toxic effect of caustic alkalis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\(983.2) Toxic effect of caustic alkalis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''983.2''', NULL, + '(983.2) Toxic effect of caustic alkalis', '(983.2) Toxic effect of caustic alkalis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\(983.9) Toxic effect of caustic, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\(983.9) Toxic effect of caustic, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''983.9''', NULL, + '(983.9) Toxic effect of caustic, unspecified', '(983.9) Toxic effect of caustic, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''including fumes) (984''', NULL, + 'Toxic effect of lead and its compounds (including fumes) (984)', 'Toxic effect of lead and its compounds (including fumes) (984)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\(984.0) Toxic effect of inorganic lead compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\(984.0) Toxic effect of inorganic lead compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''984.0''', NULL, + '(984.0) Toxic effect of inorganic lead compounds', '(984.0) Toxic effect of inorganic lead compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\(984.1) Toxic effect of organic lead compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\(984.1) Toxic effect of organic lead compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''984.1''', NULL, + '(984.1) Toxic effect of organic lead compounds', '(984.1) Toxic effect of organic lead compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\(984.8) Toxic effect of other lead compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\(984.8) Toxic effect of other lead compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''984.8''', NULL, + '(984.8) Toxic effect of other lead compounds', '(984.8) Toxic effect of other lead compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\(984.9) Toxic effect of unspecified lead compound\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of lead and its compounds (including fumes) (984)\(984.9) Toxic effect of unspecified lead compound\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''984.9''', NULL, + '(984.9) Toxic effect of unspecified lead compound', '(984.9) Toxic effect of unspecified lead compound', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''988''', NULL, + 'Toxic effect of noxious substances eaten as food (988)', 'Toxic effect of noxious substances eaten as food (988)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\(988.0) Toxic effect of fish and shellfish eaten as food\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\(988.0) Toxic effect of fish and shellfish eaten as food\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''988.0''', NULL, + '(988.0) Toxic effect of fish and shellfish eaten as food', '(988.0) Toxic effect of fish and shellfish eaten as food', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\(988.1) Toxic effect of mushrooms eaten as food\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\(988.1) Toxic effect of mushrooms eaten as food\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''988.1''', NULL, + '(988.1) Toxic effect of mushrooms eaten as food', '(988.1) Toxic effect of mushrooms eaten as food', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\(988.2) Toxic effect of berries and other plants eaten as food\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\(988.2) Toxic effect of berries and other plants eaten as food\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''988.2''', NULL, + '(988.2) Toxic effect of berries and other plants eaten as food', '(988.2) Toxic effect of berries and other plants eaten as food', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\(988.8) Toxic effect of other specified noxious substances eaten as food\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\(988.8) Toxic effect of other specified noxious substances eaten as food\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''988.8''', NULL, + '(988.8) Toxic effect of other specified noxious substances eaten as food', '(988.8) Toxic effect of other specified noxious substances eaten as food', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\(988.9) Toxic effect of unspecified noxious substance eaten as food\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of noxious substances eaten as food (988)\(988.9) Toxic effect of unspecified noxious substance eaten as food\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''988.9''', NULL, + '(988.9) Toxic effect of unspecified noxious substance eaten as food', '(988.9) Toxic effect of unspecified noxious substance eaten as food', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''987''', NULL, + 'Toxic effect of other gases, fumes, or vapors (987)', 'Toxic effect of other gases, fumes, or vapors (987)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.0) Toxic effect of liquefied petroleum gases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.0) Toxic effect of liquefied petroleum gases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''987.0''', NULL, + '(987.0) Toxic effect of liquefied petroleum gases', '(987.0) Toxic effect of liquefied petroleum gases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.1) Toxic effect of other hydrocarbon gas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.1) Toxic effect of other hydrocarbon gas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''987.1''', NULL, + '(987.1) Toxic effect of other hydrocarbon gas', '(987.1) Toxic effect of other hydrocarbon gas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.2) Toxic effect of nitrogen oxides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.2) Toxic effect of nitrogen oxides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''987.2''', NULL, + '(987.2) Toxic effect of nitrogen oxides', '(987.2) Toxic effect of nitrogen oxides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.3) Toxic effect of sulfur dioxide\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.3) Toxic effect of sulfur dioxide\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''987.3''', NULL, + '(987.3) Toxic effect of sulfur dioxide', '(987.3) Toxic effect of sulfur dioxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.4) Toxic effect of freon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.4) Toxic effect of freon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''987.4''', NULL, + '(987.4) Toxic effect of freon', '(987.4) Toxic effect of freon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.5) Toxic effect of lacrimogenic gas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.5) Toxic effect of lacrimogenic gas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''987.5''', NULL, + '(987.5) Toxic effect of lacrimogenic gas', '(987.5) Toxic effect of lacrimogenic gas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.6) Toxic effect of chlorine gas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.6) Toxic effect of chlorine gas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''987.6''', NULL, + '(987.6) Toxic effect of chlorine gas', '(987.6) Toxic effect of chlorine gas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.7) Toxic effect of hydrocyanic acid gas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.7) Toxic effect of hydrocyanic acid gas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''987.7''', NULL, + '(987.7) Toxic effect of hydrocyanic acid gas', '(987.7) Toxic effect of hydrocyanic acid gas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.8) Toxic effect of other specified gases, fumes, or vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.8) Toxic effect of other specified gases, fumes, or vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''987.8''', NULL, + '(987.8) Toxic effect of other specified gases, fumes, or vapors', '(987.8) Toxic effect of other specified gases, fumes, or vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.9) Toxic effect of unspecified gas, fume, or vapor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other gases, fumes, or vapors (987)\(987.9) Toxic effect of unspecified gas, fume, or vapor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''987.9''', NULL, + '(987.9) Toxic effect of unspecified gas, fume, or vapor', '(987.9) Toxic effect of unspecified gas, fume, or vapor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''985''', NULL, + 'Toxic effect of other metals (985)', 'Toxic effect of other metals (985)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.0) Toxic effect of mercury and its compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.0) Toxic effect of mercury and its compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''985.0''', NULL, + '(985.0) Toxic effect of mercury and its compounds', '(985.0) Toxic effect of mercury and its compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.1) Toxic effect of arsenic and its compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.1) Toxic effect of arsenic and its compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''985.1''', NULL, + '(985.1) Toxic effect of arsenic and its compounds', '(985.1) Toxic effect of arsenic and its compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.2) Toxic effect of manganese and its compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.2) Toxic effect of manganese and its compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''985.2''', NULL, + '(985.2) Toxic effect of manganese and its compounds', '(985.2) Toxic effect of manganese and its compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.3) Toxic effect of beryllium and its compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.3) Toxic effect of beryllium and its compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''985.3''', NULL, + '(985.3) Toxic effect of beryllium and its compounds', '(985.3) Toxic effect of beryllium and its compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.4) Toxic effect of antimony and its compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.4) Toxic effect of antimony and its compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''985.4''', NULL, + '(985.4) Toxic effect of antimony and its compounds', '(985.4) Toxic effect of antimony and its compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.5) Toxic effect of cadmium and its compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.5) Toxic effect of cadmium and its compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''985.5''', NULL, + '(985.5) Toxic effect of cadmium and its compounds', '(985.5) Toxic effect of cadmium and its compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.6) Toxic effect of chromium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.6) Toxic effect of chromium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''985.6''', NULL, + '(985.6) Toxic effect of chromium', '(985.6) Toxic effect of chromium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.8) Toxic effect of other specified metals\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.8) Toxic effect of other specified metals\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''985.8''', NULL, + '(985.8) Toxic effect of other specified metals', '(985.8) Toxic effect of other specified metals', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.9) Toxic effect of unspecified metal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other metals (985)\(985.9) Toxic effect of unspecified metal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''985.9''', NULL, + '(985.9) Toxic effect of unspecified metal', '(985.9) Toxic effect of unspecified metal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989''', NULL, + 'Toxic effect of other substances, chiefly nonmedicinal as to source (989)', 'Toxic effect of other substances, chiefly nonmedicinal as to source (989)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.0) Toxic effect of hydrocyanic acid and cyanides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.0) Toxic effect of hydrocyanic acid and cyanides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.0''', NULL, + '(989.0) Toxic effect of hydrocyanic acid and cyanides', '(989.0) Toxic effect of hydrocyanic acid and cyanides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.1) Toxic effect of strychnine and salts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.1) Toxic effect of strychnine and salts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.1''', NULL, + '(989.1) Toxic effect of strychnine and salts', '(989.1) Toxic effect of strychnine and salts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.2) Toxic effect of chlorinated hydrocarbons\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.2) Toxic effect of chlorinated hydrocarbons\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.2''', NULL, + '(989.2) Toxic effect of chlorinated hydrocarbons', '(989.2) Toxic effect of chlorinated hydrocarbons', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.3) Toxic effect of organophosphate and carbamate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.3) Toxic effect of organophosphate and carbamate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.3''', NULL, + '(989.3) Toxic effect of organophosphate and carbamate', '(989.3) Toxic effect of organophosphate and carbamate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.4) Toxic effect of other pesticides, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.4) Toxic effect of other pesticides, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.4''', NULL, + '(989.4) Toxic effect of other pesticides, not elsewhere classified', '(989.4) Toxic effect of other pesticides, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.5) Toxic effect of venom\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.5) Toxic effect of venom\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.5''', NULL, + '(989.5) Toxic effect of venom', '(989.5) Toxic effect of venom', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.6) Toxic effect of soaps and detergents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.6) Toxic effect of soaps and detergents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.6''', NULL, + '(989.6) Toxic effect of soaps and detergents', '(989.6) Toxic effect of soaps and detergents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.7) Toxic effect of aflatoxin and other mycotoxin (food contaminants)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.7) Toxic effect of aflatoxin and other mycotoxin (food contaminants)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.7) Toxic effect of aflatoxin and other mycotoxin (food contaminants''', NULL, + '(989.7) Toxic effect of aflatoxin and other mycotoxin (food contaminants)', '(989.7) Toxic effect of aflatoxin and other mycotoxin (food contaminants)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.9) Toxic effect of unspecified substance, chiefly nonmedicinal as to source\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\(989.9) Toxic effect of unspecified substance, chiefly nonmedicinal as to source\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.9''', NULL, + '(989.9) Toxic effect of unspecified substance, chiefly nonmedicinal as to source', '(989.9) Toxic effect of unspecified substance, chiefly nonmedicinal as to source', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.8''', NULL, + 'Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)', 'Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\(989.81) Toxic effect of asbestos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\(989.81) Toxic effect of asbestos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.81''', NULL, + '(989.81) Toxic effect of asbestos', '(989.81) Toxic effect of asbestos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\(989.82) Toxic effect of latex\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\(989.82) Toxic effect of latex\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.82''', NULL, + '(989.82) Toxic effect of latex', '(989.82) Toxic effect of latex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\(989.83) Toxic effect of silicone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\(989.83) Toxic effect of silicone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.83''', NULL, + '(989.83) Toxic effect of silicone', '(989.83) Toxic effect of silicone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\(989.84) Toxic effect of tobacco\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\(989.84) Toxic effect of tobacco\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.84''', NULL, + '(989.84) Toxic effect of tobacco', '(989.84) Toxic effect of tobacco', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\(989.89) Toxic effect of other substance, chiefly nonmedicinal as to source, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\(989.89) Toxic effect of other substance, chiefly nonmedicinal as to source, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''989.89''', NULL, + '(989.89) Toxic effect of other substance, chiefly nonmedicinal as to source, not elsewhere classified', '(989.89) Toxic effect of other substance, chiefly nonmedicinal as to source, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''982''', NULL, + 'Toxic effect of solvents other than petroleum based (982)', 'Toxic effect of solvents other than petroleum based (982)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.0) Toxic effect of benzene and homologues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.0) Toxic effect of benzene and homologues\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''982.0''', NULL, + '(982.0) Toxic effect of benzene and homologues', '(982.0) Toxic effect of benzene and homologues', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.1) Toxic effect of carbon tetrachloride\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.1) Toxic effect of carbon tetrachloride\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''982.1''', NULL, + '(982.1) Toxic effect of carbon tetrachloride', '(982.1) Toxic effect of carbon tetrachloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.2) Toxic effect of carbon disulfide\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.2) Toxic effect of carbon disulfide\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''982.2''', NULL, + '(982.2) Toxic effect of carbon disulfide', '(982.2) Toxic effect of carbon disulfide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.3) Toxic effect of other chlorinated hydrocarbon solvents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.3) Toxic effect of other chlorinated hydrocarbon solvents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''982.3''', NULL, + '(982.3) Toxic effect of other chlorinated hydrocarbon solvents', '(982.3) Toxic effect of other chlorinated hydrocarbon solvents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.4) Toxic effect of nitroglycol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.4) Toxic effect of nitroglycol\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''982.4''', NULL, + '(982.4) Toxic effect of nitroglycol', '(982.4) Toxic effect of nitroglycol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.8) Toxic effect of other nonpetroleum-based solvents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Injury and poisoning (800-999.99)\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\Toxic effect of solvents other than petroleum based (982)\(982.8) Toxic effect of other nonpetroleum-based solvents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''982.8''', NULL, + '(982.8) Toxic effect of other nonpetroleum-based solvents', '(982.8) Toxic effect of other nonpetroleum-based solvents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''290'' AND ''319.99''', NULL, + 'Mental, behavioral and neurodevelopmental disorders (290-319.99)', 'Mental, behavioral and neurodevelopmental disorders (290-319.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''317'' AND ''319.99''', NULL, + 'Intellectual disabilities (317-319.99)', 'Intellectual disabilities (317-319.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\(317) Mild intellectual disabilities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\(317) Mild intellectual disabilities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''317''', NULL, + '(317) Mild intellectual disabilities', '(317) Mild intellectual disabilities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\(319) Unspecified intellectual disabilities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\(319) Unspecified intellectual disabilities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''319''', NULL, + '(319) Unspecified intellectual disabilities', '(319) Unspecified intellectual disabilities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\Other specified intellectual disabilities (318)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\Other specified intellectual disabilities (318)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''318''', NULL, + 'Other specified intellectual disabilities (318)', 'Other specified intellectual disabilities (318)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\Other specified intellectual disabilities (318)\(318.0) Moderate intellectual disabilities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\Other specified intellectual disabilities (318)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\Other specified intellectual disabilities (318)\(318.0) Moderate intellectual disabilities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''318.0''', NULL, + '(318.0) Moderate intellectual disabilities', '(318.0) Moderate intellectual disabilities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\Other specified intellectual disabilities (318)\(318.1) Severe intellectual disabilities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\Other specified intellectual disabilities (318)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\Other specified intellectual disabilities (318)\(318.1) Severe intellectual disabilities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''318.1''', NULL, + '(318.1) Severe intellectual disabilities', '(318.1) Severe intellectual disabilities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\Other specified intellectual disabilities (318)\(318.2) Profound intellectual disabilities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\Other specified intellectual disabilities (318)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Intellectual disabilities (317-319.99)\Other specified intellectual disabilities (318)\(318.2) Profound intellectual disabilities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''318.2''', NULL, + '(318.2) Profound intellectual disabilities', '(318.2) Profound intellectual disabilities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''300'' AND ''316.99''', NULL, + 'Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)', 'Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\(311) Depressive disorder, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\(311) Depressive disorder, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''311''', NULL, + '(311) Depressive disorder, not elsewhere classified', '(311) Depressive disorder, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\(316) Psychic factors associated with diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\(316) Psychic factors associated with diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''316''', NULL, + '(316) Psychic factors associated with diseases classified elsewhere', '(316) Psychic factors associated with diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''308''', NULL, + 'Acute reaction to stress (308)', 'Acute reaction to stress (308)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.0) Predominant disturbance of emotions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.0) Predominant disturbance of emotions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''308.0''', NULL, + '(308.0) Predominant disturbance of emotions', '(308.0) Predominant disturbance of emotions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.1) Predominant disturbance of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.1) Predominant disturbance of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''308.1''', NULL, + '(308.1) Predominant disturbance of consciousness', '(308.1) Predominant disturbance of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.2) Predominant psychomotor disturbance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.2) Predominant psychomotor disturbance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''308.2''', NULL, + '(308.2) Predominant psychomotor disturbance', '(308.2) Predominant psychomotor disturbance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.3) Other acute reactions to stress\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.3) Other acute reactions to stress\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''308.3''', NULL, + '(308.3) Other acute reactions to stress', '(308.3) Other acute reactions to stress', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.4) Mixed disorders as reaction to stress\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.4) Mixed disorders as reaction to stress\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''308.4''', NULL, + '(308.4) Mixed disorders as reaction to stress', '(308.4) Mixed disorders as reaction to stress', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.9) Unspecified acute reaction to stress\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Acute reaction to stress (308)\(308.9) Unspecified acute reaction to stress\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''308.9''', NULL, + '(308.9) Unspecified acute reaction to stress', '(308.9) Unspecified acute reaction to stress', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309''', NULL, + 'Adjustment reaction (309)', 'Adjustment reaction (309)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\(309.0) Adjustment disorder with depressed mood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\(309.0) Adjustment disorder with depressed mood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.0''', NULL, + '(309.0) Adjustment disorder with depressed mood', '(309.0) Adjustment disorder with depressed mood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\(309.1) Prolonged depressive reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\(309.1) Prolonged depressive reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.1''', NULL, + '(309.1) Prolonged depressive reaction', '(309.1) Prolonged depressive reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\(309.3) Adjustment disorder with disturbance of conduct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\(309.3) Adjustment disorder with disturbance of conduct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.3''', NULL, + '(309.3) Adjustment disorder with disturbance of conduct', '(309.3) Adjustment disorder with disturbance of conduct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\(309.4) Adjustment disorder with mixed disturbance of emotions and conduct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\(309.4) Adjustment disorder with mixed disturbance of emotions and conduct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.4''', NULL, + '(309.4) Adjustment disorder with mixed disturbance of emotions and conduct', '(309.4) Adjustment disorder with mixed disturbance of emotions and conduct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\(309.9) Unspecified adjustment reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\(309.9) Unspecified adjustment reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.9''', NULL, + '(309.9) Unspecified adjustment reaction', '(309.9) Unspecified adjustment reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.2''', NULL, + 'Adjustment reaction with predominant disturbance of other emotions (309.2)', 'Adjustment reaction with predominant disturbance of other emotions (309.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.21) Separation anxiety disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.21) Separation anxiety disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.21''', NULL, + '(309.21) Separation anxiety disorder', '(309.21) Separation anxiety disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.22) Emancipation disorder of adolescence and early adult life\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.22) Emancipation disorder of adolescence and early adult life\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.22''', NULL, + '(309.22) Emancipation disorder of adolescence and early adult life', '(309.22) Emancipation disorder of adolescence and early adult life', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.23) Specific academic or work inhibition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.23) Specific academic or work inhibition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.23''', NULL, + '(309.23) Specific academic or work inhibition', '(309.23) Specific academic or work inhibition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.24) Adjustment disorder with anxiety\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.24) Adjustment disorder with anxiety\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.24''', NULL, + '(309.24) Adjustment disorder with anxiety', '(309.24) Adjustment disorder with anxiety', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.28) Adjustment disorder with mixed anxiety and depressed mood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.28) Adjustment disorder with mixed anxiety and depressed mood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.28''', NULL, + '(309.28) Adjustment disorder with mixed anxiety and depressed mood', '(309.28) Adjustment disorder with mixed anxiety and depressed mood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.29) Other adjustment reactions with predominant disturbance of other emotions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Adjustment reaction with predominant disturbance of other emotions (309.2)\(309.29) Other adjustment reactions with predominant disturbance of other emotions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.29''', NULL, + '(309.29) Other adjustment reactions with predominant disturbance of other emotions', '(309.29) Other adjustment reactions with predominant disturbance of other emotions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.8''', NULL, + 'Other specified adjustment reactions (309.8)', 'Other specified adjustment reactions (309.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\(309.81) Posttraumatic stress disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\(309.81) Posttraumatic stress disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.81''', NULL, + '(309.81) Posttraumatic stress disorder', '(309.81) Posttraumatic stress disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\(309.82) Adjustment reaction with physical symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\(309.82) Adjustment reaction with physical symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.82''', NULL, + '(309.82) Adjustment reaction with physical symptoms', '(309.82) Adjustment reaction with physical symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\(309.83) Adjustment reaction with withdrawal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\(309.83) Adjustment reaction with withdrawal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.83''', NULL, + '(309.83) Adjustment reaction with withdrawal', '(309.83) Adjustment reaction with withdrawal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\(309.89) Other specified adjustment reactions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Adjustment reaction (309)\Other specified adjustment reactions (309.8)\(309.89) Other specified adjustment reactions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''309.89''', NULL, + '(309.89) Other specified adjustment reactions', '(309.89) Other specified adjustment reactions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''303''', NULL, + 'Alcohol dependence syndrome (303)', 'Alcohol dependence syndrome (303)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''303.0''', NULL, + 'Acute alcoholic intoxication (303.0)', 'Acute alcoholic intoxication (303.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\(303.00) Acute alcoholic intoxication in alcoholism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\(303.00) Acute alcoholic intoxication in alcoholism, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''303.00''', NULL, + '(303.00) Acute alcoholic intoxication in alcoholism, unspecified', '(303.00) Acute alcoholic intoxication in alcoholism, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\(303.01) Acute alcoholic intoxication in alcoholism, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\(303.01) Acute alcoholic intoxication in alcoholism, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''303.01''', NULL, + '(303.01) Acute alcoholic intoxication in alcoholism, continuous', '(303.01) Acute alcoholic intoxication in alcoholism, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\(303.02) Acute alcoholic intoxication in alcoholism, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\(303.02) Acute alcoholic intoxication in alcoholism, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''303.02''', NULL, + '(303.02) Acute alcoholic intoxication in alcoholism, episodic', '(303.02) Acute alcoholic intoxication in alcoholism, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\(303.03) Acute alcoholic intoxication in alcoholism, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Acute alcoholic intoxication (303.0)\(303.03) Acute alcoholic intoxication in alcoholism, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''303.03''', NULL, + '(303.03) Acute alcoholic intoxication in alcoholism, in remission', '(303.03) Acute alcoholic intoxication in alcoholism, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''303.9''', NULL, + 'Other and unspecified alcohol dependence (303.9)', 'Other and unspecified alcohol dependence (303.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\(303.90) Other and unspecified alcohol dependence, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\(303.90) Other and unspecified alcohol dependence, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''303.90''', NULL, + '(303.90) Other and unspecified alcohol dependence, unspecified', '(303.90) Other and unspecified alcohol dependence, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\(303.91) Other and unspecified alcohol dependence, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\(303.91) Other and unspecified alcohol dependence, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''303.91''', NULL, + '(303.91) Other and unspecified alcohol dependence, continuous', '(303.91) Other and unspecified alcohol dependence, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\(303.92) Other and unspecified alcohol dependence, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\(303.92) Other and unspecified alcohol dependence, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''303.92''', NULL, + '(303.92) Other and unspecified alcohol dependence, episodic', '(303.92) Other and unspecified alcohol dependence, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\(303.93) Other and unspecified alcohol dependence, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Alcohol dependence syndrome (303)\Other and unspecified alcohol dependence (303.9)\(303.93) Other and unspecified alcohol dependence, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''303.93''', NULL, + '(303.93) Other and unspecified alcohol dependence, in remission', '(303.93) Other and unspecified alcohol dependence, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300''', NULL, + 'Anxiety, dissociative and somatoform disorders (300)', 'Anxiety, dissociative and somatoform disorders (300)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.3) Obsessive-compulsive disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.3) Obsessive-compulsive disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.3''', NULL, + '(300.3) Obsessive-compulsive disorders', '(300.3) Obsessive-compulsive disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.4) Dysthymic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.4) Dysthymic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.4''', NULL, + '(300.4) Dysthymic disorder', '(300.4) Dysthymic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.5) Neurasthenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.5) Neurasthenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.5''', NULL, + '(300.5) Neurasthenia', '(300.5) Neurasthenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.6) Depersonalization disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.6) Depersonalization disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.6''', NULL, + '(300.6) Depersonalization disorder', '(300.6) Depersonalization disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.7) Hypochondriasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.7) Hypochondriasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.7''', NULL, + '(300.7) Hypochondriasis', '(300.7) Hypochondriasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.9) Unspecified nonpsychotic mental disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\(300.9) Unspecified nonpsychotic mental disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.9''', NULL, + '(300.9) Unspecified nonpsychotic mental disorder', '(300.9) Unspecified nonpsychotic mental disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.0''', NULL, + 'Anxiety states (300.0)', 'Anxiety states (300.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\(300.00) Anxiety state, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\(300.00) Anxiety state, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.00''', NULL, + '(300.00) Anxiety state, unspecified', '(300.00) Anxiety state, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\(300.01) Panic disorder without agoraphobia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\(300.01) Panic disorder without agoraphobia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.01''', NULL, + '(300.01) Panic disorder without agoraphobia', '(300.01) Panic disorder without agoraphobia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\(300.02) Generalized anxiety disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\(300.02) Generalized anxiety disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.02''', NULL, + '(300.02) Generalized anxiety disorder', '(300.02) Generalized anxiety disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\(300.09) Other anxiety states\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Anxiety states (300.0)\(300.09) Other anxiety states\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.09''', NULL, + '(300.09) Other anxiety states', '(300.09) Other anxiety states', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.1''', NULL, + 'Dissociative, conversion and factitious disorders (300.1)', 'Dissociative, conversion and factitious disorders (300.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.10) Hysteria, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.10) Hysteria, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.10''', NULL, + '(300.10) Hysteria, unspecified', '(300.10) Hysteria, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.11) Conversion disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.11) Conversion disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.11''', NULL, + '(300.11) Conversion disorder', '(300.11) Conversion disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.12) Dissociative amnesia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.12) Dissociative amnesia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.12''', NULL, + '(300.12) Dissociative amnesia', '(300.12) Dissociative amnesia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.13) Dissociative fugue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.13) Dissociative fugue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.13''', NULL, + '(300.13) Dissociative fugue', '(300.13) Dissociative fugue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.14) Dissociative identity disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.14) Dissociative identity disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.14''', NULL, + '(300.14) Dissociative identity disorder', '(300.14) Dissociative identity disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.15) Dissociative disorder or reaction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.15) Dissociative disorder or reaction, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.15''', NULL, + '(300.15) Dissociative disorder or reaction, unspecified', '(300.15) Dissociative disorder or reaction, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.16) Factitious disorder with predominantly psychological signs and symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.16) Factitious disorder with predominantly psychological signs and symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.16''', NULL, + '(300.16) Factitious disorder with predominantly psychological signs and symptoms', '(300.16) Factitious disorder with predominantly psychological signs and symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.19) Other and unspecified factitious illness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Dissociative, conversion and factitious disorders (300.1)\(300.19) Other and unspecified factitious illness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.19''', NULL, + '(300.19) Other and unspecified factitious illness', '(300.19) Other and unspecified factitious illness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.2''', NULL, + 'Phobic disorders (300.2)', 'Phobic disorders (300.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\(300.20) Phobia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\(300.20) Phobia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.20''', NULL, + '(300.20) Phobia, unspecified', '(300.20) Phobia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\(300.21) Agoraphobia with panic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\(300.21) Agoraphobia with panic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.21''', NULL, + '(300.21) Agoraphobia with panic disorder', '(300.21) Agoraphobia with panic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\(300.22) Agoraphobia without mention of panic attacks\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\(300.22) Agoraphobia without mention of panic attacks\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.22''', NULL, + '(300.22) Agoraphobia without mention of panic attacks', '(300.22) Agoraphobia without mention of panic attacks', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\(300.23) Social phobia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\(300.23) Social phobia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.23''', NULL, + '(300.23) Social phobia', '(300.23) Social phobia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\(300.29) Other isolated or specific phobias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Phobic disorders (300.2)\(300.29) Other isolated or specific phobias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.29''', NULL, + '(300.29) Other isolated or specific phobias', '(300.29) Other isolated or specific phobias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Somatoform disorders (300.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Somatoform disorders (300.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.8''', NULL, + 'Somatoform disorders (300.8)', 'Somatoform disorders (300.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Somatoform disorders (300.8)\(300.81) Somatization disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Somatoform disorders (300.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Somatoform disorders (300.8)\(300.81) Somatization disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.81''', NULL, + '(300.81) Somatization disorder', '(300.81) Somatization disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Somatoform disorders (300.8)\(300.82) Undifferentiated somatoform disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Somatoform disorders (300.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Somatoform disorders (300.8)\(300.82) Undifferentiated somatoform disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.82''', NULL, + '(300.82) Undifferentiated somatoform disorder', '(300.82) Undifferentiated somatoform disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Somatoform disorders (300.8)\(300.89) Other somatoform disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Somatoform disorders (300.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Anxiety, dissociative and somatoform disorders (300)\Somatoform disorders (300.8)\(300.89) Other somatoform disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''300.89''', NULL, + '(300.89) Other somatoform disorders', '(300.89) Other somatoform disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312''', NULL, + 'Disturbance of conduct, not elsewhere classified (312)', 'Disturbance of conduct, not elsewhere classified (312)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\(312.4) Mixed disturbance of conduct and emotions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\(312.4) Mixed disturbance of conduct and emotions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.4''', NULL, + '(312.4) Mixed disturbance of conduct and emotions', '(312.4) Mixed disturbance of conduct and emotions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\(312.9) Unspecified disturbance of conduct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\(312.9) Unspecified disturbance of conduct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.9''', NULL, + '(312.9) Unspecified disturbance of conduct', '(312.9) Unspecified disturbance of conduct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.3''', NULL, + 'Disorders of impulse control, not elsewhere classified (312.3)', 'Disorders of impulse control, not elsewhere classified (312.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.30) Impulse control disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.30) Impulse control disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.30''', NULL, + '(312.30) Impulse control disorder, unspecified', '(312.30) Impulse control disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.31) Pathological gambling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.31) Pathological gambling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.31''', NULL, + '(312.31) Pathological gambling', '(312.31) Pathological gambling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.32) Kleptomania\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.32) Kleptomania\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.32''', NULL, + '(312.32) Kleptomania', '(312.32) Kleptomania', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.33) Pyromania\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.33) Pyromania\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.33''', NULL, + '(312.33) Pyromania', '(312.33) Pyromania', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.34) Intermittent explosive disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.34) Intermittent explosive disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.34''', NULL, + '(312.34) Intermittent explosive disorder', '(312.34) Intermittent explosive disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.35) Isolated explosive disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.35) Isolated explosive disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.35''', NULL, + '(312.35) Isolated explosive disorder', '(312.35) Isolated explosive disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.39) Other disorders of impulse control\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Disorders of impulse control, not elsewhere classified (312.3)\(312.39) Other disorders of impulse control\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.39''', NULL, + '(312.39) Other disorders of impulse control', '(312.39) Other disorders of impulse control', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Other specified disturbances of conduct, not elsewhere classified (312.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Other specified disturbances of conduct, not elsewhere classified (312.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.8''', NULL, + 'Other specified disturbances of conduct, not elsewhere classified (312.8)', 'Other specified disturbances of conduct, not elsewhere classified (312.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Other specified disturbances of conduct, not elsewhere classified (312.8)\(312.81) Conduct disorder, childhood onset type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Other specified disturbances of conduct, not elsewhere classified (312.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Other specified disturbances of conduct, not elsewhere classified (312.8)\(312.81) Conduct disorder, childhood onset type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.81''', NULL, + '(312.81) Conduct disorder, childhood onset type', '(312.81) Conduct disorder, childhood onset type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Other specified disturbances of conduct, not elsewhere classified (312.8)\(312.82) Conduct disorder, adolescent onset type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Other specified disturbances of conduct, not elsewhere classified (312.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Other specified disturbances of conduct, not elsewhere classified (312.8)\(312.82) Conduct disorder, adolescent onset type\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.82''', NULL, + '(312.82) Conduct disorder, adolescent onset type', '(312.82) Conduct disorder, adolescent onset type', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Other specified disturbances of conduct, not elsewhere classified (312.8)\(312.89) Other conduct disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Other specified disturbances of conduct, not elsewhere classified (312.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Other specified disturbances of conduct, not elsewhere classified (312.8)\(312.89) Other conduct disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.89''', NULL, + '(312.89) Other conduct disorder', '(312.89) Other conduct disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.2''', NULL, + 'Socialized conduct disorder (312.2)', 'Socialized conduct disorder (312.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\(312.20) Socialized conduct disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\(312.20) Socialized conduct disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.20''', NULL, + '(312.20) Socialized conduct disorder, unspecified', '(312.20) Socialized conduct disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\(312.21) Socialized conduct disorder, mild\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\(312.21) Socialized conduct disorder, mild\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.21''', NULL, + '(312.21) Socialized conduct disorder, mild', '(312.21) Socialized conduct disorder, mild', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\(312.22) Socialized conduct disorder, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\(312.22) Socialized conduct disorder, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.22''', NULL, + '(312.22) Socialized conduct disorder, moderate', '(312.22) Socialized conduct disorder, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\(312.23) Socialized conduct disorder, severe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Socialized conduct disorder (312.2)\(312.23) Socialized conduct disorder, severe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.23''', NULL, + '(312.23) Socialized conduct disorder, severe', '(312.23) Socialized conduct disorder, severe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.0''', NULL, + 'Undersocialized conduct disorder, aggressive type (312.0)', 'Undersocialized conduct disorder, aggressive type (312.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\(312.00) Undersocialized conduct disorder, aggressive type, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\(312.00) Undersocialized conduct disorder, aggressive type, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.00''', NULL, + '(312.00) Undersocialized conduct disorder, aggressive type, unspecified', '(312.00) Undersocialized conduct disorder, aggressive type, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\(312.01) Undersocialized conduct disorder, aggressive type, mild\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\(312.01) Undersocialized conduct disorder, aggressive type, mild\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.01''', NULL, + '(312.01) Undersocialized conduct disorder, aggressive type, mild', '(312.01) Undersocialized conduct disorder, aggressive type, mild', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\(312.02) Undersocialized conduct disorder, aggressive type, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\(312.02) Undersocialized conduct disorder, aggressive type, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.02''', NULL, + '(312.02) Undersocialized conduct disorder, aggressive type, moderate', '(312.02) Undersocialized conduct disorder, aggressive type, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\(312.03) Undersocialized conduct disorder, aggressive type, severe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, aggressive type (312.0)\(312.03) Undersocialized conduct disorder, aggressive type, severe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.03''', NULL, + '(312.03) Undersocialized conduct disorder, aggressive type, severe', '(312.03) Undersocialized conduct disorder, aggressive type, severe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.1''', NULL, + 'Undersocialized conduct disorder, unaggressive type (312.1)', 'Undersocialized conduct disorder, unaggressive type (312.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\(312.10) Undersocialized conduct disorder, unaggressive type, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\(312.10) Undersocialized conduct disorder, unaggressive type, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.10''', NULL, + '(312.10) Undersocialized conduct disorder, unaggressive type, unspecified', '(312.10) Undersocialized conduct disorder, unaggressive type, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\(312.11) Undersocialized conduct disorder, unaggressive type, mild\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\(312.11) Undersocialized conduct disorder, unaggressive type, mild\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.11''', NULL, + '(312.11) Undersocialized conduct disorder, unaggressive type, mild', '(312.11) Undersocialized conduct disorder, unaggressive type, mild', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\(312.12) Undersocialized conduct disorder, unaggressive type, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\(312.12) Undersocialized conduct disorder, unaggressive type, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.12''', NULL, + '(312.12) Undersocialized conduct disorder, unaggressive type, moderate', '(312.12) Undersocialized conduct disorder, unaggressive type, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\(312.13) Undersocialized conduct disorder, unaggressive type, severe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of conduct, not elsewhere classified (312)\Undersocialized conduct disorder, unaggressive type (312.1)\(312.13) Undersocialized conduct disorder, unaggressive type, severe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''312.13''', NULL, + '(312.13) Undersocialized conduct disorder, unaggressive type, severe', '(312.13) Undersocialized conduct disorder, unaggressive type, severe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313''', NULL, + 'Disturbance of emotions specific to childhood and adolescence (313)', 'Disturbance of emotions specific to childhood and adolescence (313)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\(313.0) Overanxious disorder specific to childhood and adolescence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\(313.0) Overanxious disorder specific to childhood and adolescence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.0''', NULL, + '(313.0) Overanxious disorder specific to childhood and adolescence', '(313.0) Overanxious disorder specific to childhood and adolescence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\(313.1) Misery and unhappiness disorder specific to childhood and adolescence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\(313.1) Misery and unhappiness disorder specific to childhood and adolescence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.1''', NULL, + '(313.1) Misery and unhappiness disorder specific to childhood and adolescence', '(313.1) Misery and unhappiness disorder specific to childhood and adolescence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\(313.3) Relationship problems specific to childhood and adolescence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\(313.3) Relationship problems specific to childhood and adolescence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.3''', NULL, + '(313.3) Relationship problems specific to childhood and adolescence', '(313.3) Relationship problems specific to childhood and adolescence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\(313.9) Unspecified emotional disturbance of childhood or adolescence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\(313.9) Unspecified emotional disturbance of childhood or adolescence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.9''', NULL, + '(313.9) Unspecified emotional disturbance of childhood or adolescence', '(313.9) Unspecified emotional disturbance of childhood or adolescence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.8''', NULL, + 'Other or mixed emotional disturbances of childhood or adolescence (313.8)', 'Other or mixed emotional disturbances of childhood or adolescence (313.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\(313.81) Oppositional defiant disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\(313.81) Oppositional defiant disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.81''', NULL, + '(313.81) Oppositional defiant disorder', '(313.81) Oppositional defiant disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\(313.82) Identity disorder of childhood or adolescence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\(313.82) Identity disorder of childhood or adolescence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.82''', NULL, + '(313.82) Identity disorder of childhood or adolescence', '(313.82) Identity disorder of childhood or adolescence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\(313.83) Academic underachievement disorder of childhood or adolescence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\(313.83) Academic underachievement disorder of childhood or adolescence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.83''', NULL, + '(313.83) Academic underachievement disorder of childhood or adolescence', '(313.83) Academic underachievement disorder of childhood or adolescence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\(313.89) Other emotional disturbances of childhood or adolescence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Other or mixed emotional disturbances of childhood or adolescence (313.8)\(313.89) Other emotional disturbances of childhood or adolescence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.89''', NULL, + '(313.89) Other emotional disturbances of childhood or adolescence', '(313.89) Other emotional disturbances of childhood or adolescence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.2''', NULL, + 'Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)', 'Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\(313.21) Shyness disorder of childhood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\(313.21) Shyness disorder of childhood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.21''', NULL, + '(313.21) Shyness disorder of childhood', '(313.21) Shyness disorder of childhood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\(313.22) Introverted disorder of childhood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\(313.22) Introverted disorder of childhood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.22''', NULL, + '(313.22) Introverted disorder of childhood', '(313.22) Introverted disorder of childhood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\(313.23) Selective mutism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Disturbance of emotions specific to childhood and adolescence (313)\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\(313.23) Selective mutism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''313.23''', NULL, + '(313.23) Selective mutism', '(313.23) Selective mutism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304''', NULL, + 'Drug dependence (304)', 'Drug dependence (304)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.4''', NULL, + 'Amphetamine and other psychostimulant dependence (304.4)', 'Amphetamine and other psychostimulant dependence (304.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\(304.40) Amphetamine and other psychostimulant dependence, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\(304.40) Amphetamine and other psychostimulant dependence, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.40''', NULL, + '(304.40) Amphetamine and other psychostimulant dependence, unspecified', '(304.40) Amphetamine and other psychostimulant dependence, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\(304.41) Amphetamine and other psychostimulant dependence, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\(304.41) Amphetamine and other psychostimulant dependence, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.41''', NULL, + '(304.41) Amphetamine and other psychostimulant dependence, continuous', '(304.41) Amphetamine and other psychostimulant dependence, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\(304.42) Amphetamine and other psychostimulant dependence, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\(304.42) Amphetamine and other psychostimulant dependence, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.42''', NULL, + '(304.42) Amphetamine and other psychostimulant dependence, episodic', '(304.42) Amphetamine and other psychostimulant dependence, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\(304.43) Amphetamine and other psychostimulant dependence, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Amphetamine and other psychostimulant dependence (304.4)\(304.43) Amphetamine and other psychostimulant dependence, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.43''', NULL, + '(304.43) Amphetamine and other psychostimulant dependence, in remission', '(304.43) Amphetamine and other psychostimulant dependence, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.3''', NULL, + 'Cannabis dependence (304.3)', 'Cannabis dependence (304.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\(304.30) Cannabis dependence, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\(304.30) Cannabis dependence, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.30''', NULL, + '(304.30) Cannabis dependence, unspecified', '(304.30) Cannabis dependence, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\(304.31) Cannabis dependence, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\(304.31) Cannabis dependence, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.31''', NULL, + '(304.31) Cannabis dependence, continuous', '(304.31) Cannabis dependence, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\(304.32) Cannabis dependence, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\(304.32) Cannabis dependence, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.32''', NULL, + '(304.32) Cannabis dependence, episodic', '(304.32) Cannabis dependence, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\(304.33) Cannabis dependence, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cannabis dependence (304.3)\(304.33) Cannabis dependence, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.33''', NULL, + '(304.33) Cannabis dependence, in remission', '(304.33) Cannabis dependence, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.2''', NULL, + 'Cocaine dependence (304.2)', 'Cocaine dependence (304.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\(304.20) Cocaine dependence, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\(304.20) Cocaine dependence, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.20''', NULL, + '(304.20) Cocaine dependence, unspecified', '(304.20) Cocaine dependence, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\(304.21) Cocaine dependence, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\(304.21) Cocaine dependence, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.21''', NULL, + '(304.21) Cocaine dependence, continuous', '(304.21) Cocaine dependence, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\(304.22) Cocaine dependence, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\(304.22) Cocaine dependence, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.22''', NULL, + '(304.22) Cocaine dependence, episodic', '(304.22) Cocaine dependence, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\(304.23) Cocaine dependence, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Cocaine dependence (304.2)\(304.23) Cocaine dependence, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.23''', NULL, + '(304.23) Cocaine dependence, in remission', '(304.23) Cocaine dependence, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.8''', NULL, + 'Combinations of drug dependence excluding opioid type drug (304.8)', 'Combinations of drug dependence excluding opioid type drug (304.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\(304.80) Combinations of drug dependence excluding opioid type drug, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\(304.80) Combinations of drug dependence excluding opioid type drug, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.80''', NULL, + '(304.80) Combinations of drug dependence excluding opioid type drug, unspecified', '(304.80) Combinations of drug dependence excluding opioid type drug, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\(304.81) Combinations of drug dependence excluding opioid type drug, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\(304.81) Combinations of drug dependence excluding opioid type drug, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.81''', NULL, + '(304.81) Combinations of drug dependence excluding opioid type drug, continuous', '(304.81) Combinations of drug dependence excluding opioid type drug, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\(304.82) Combinations of drug dependence excluding opioid type drug, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\(304.82) Combinations of drug dependence excluding opioid type drug, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.82''', NULL, + '(304.82) Combinations of drug dependence excluding opioid type drug, episodic', '(304.82) Combinations of drug dependence excluding opioid type drug, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\(304.83) Combinations of drug dependence excluding opioid type drug, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of drug dependence excluding opioid type drug (304.8)\(304.83) Combinations of drug dependence excluding opioid type drug, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.83''', NULL, + '(304.83) Combinations of drug dependence excluding opioid type drug, in remission', '(304.83) Combinations of drug dependence excluding opioid type drug, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.7''', NULL, + 'Combinations of opioid type drug with any other drug dependence (304.7)', 'Combinations of opioid type drug with any other drug dependence (304.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\(304.70) Combinations of opioid type drug with any other drug dependence, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\(304.70) Combinations of opioid type drug with any other drug dependence, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.70''', NULL, + '(304.70) Combinations of opioid type drug with any other drug dependence, unspecified', '(304.70) Combinations of opioid type drug with any other drug dependence, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\(304.71) Combinations of opioid type drug with any other drug dependence, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\(304.71) Combinations of opioid type drug with any other drug dependence, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.71''', NULL, + '(304.71) Combinations of opioid type drug with any other drug dependence, continuous', '(304.71) Combinations of opioid type drug with any other drug dependence, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\(304.72) Combinations of opioid type drug with any other drug dependence, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\(304.72) Combinations of opioid type drug with any other drug dependence, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.72''', NULL, + '(304.72) Combinations of opioid type drug with any other drug dependence, episodic', '(304.72) Combinations of opioid type drug with any other drug dependence, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\(304.73) Combinations of opioid type drug with any other drug dependence, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Combinations of opioid type drug with any other drug dependence (304.7)\(304.73) Combinations of opioid type drug with any other drug dependence, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.73''', NULL, + '(304.73) Combinations of opioid type drug with any other drug dependence, in remission', '(304.73) Combinations of opioid type drug with any other drug dependence, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.5''', NULL, + 'Hallucinogen dependence (304.5)', 'Hallucinogen dependence (304.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\(304.50) Hallucinogen dependence, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\(304.50) Hallucinogen dependence, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.50''', NULL, + '(304.50) Hallucinogen dependence, unspecified', '(304.50) Hallucinogen dependence, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\(304.51) Hallucinogen dependence, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\(304.51) Hallucinogen dependence, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.51''', NULL, + '(304.51) Hallucinogen dependence, continuous', '(304.51) Hallucinogen dependence, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\(304.52) Hallucinogen dependence, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\(304.52) Hallucinogen dependence, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.52''', NULL, + '(304.52) Hallucinogen dependence, episodic', '(304.52) Hallucinogen dependence, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\(304.53) Hallucinogen dependence, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Hallucinogen dependence (304.5)\(304.53) Hallucinogen dependence, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.53''', NULL, + '(304.53) Hallucinogen dependence, in remission', '(304.53) Hallucinogen dependence, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.0''', NULL, + 'Opioid type dependence (304.0)', 'Opioid type dependence (304.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\(304.00) Opioid type dependence, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\(304.00) Opioid type dependence, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.00''', NULL, + '(304.00) Opioid type dependence, unspecified', '(304.00) Opioid type dependence, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\(304.01) Opioid type dependence, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\(304.01) Opioid type dependence, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.01''', NULL, + '(304.01) Opioid type dependence, continuous', '(304.01) Opioid type dependence, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\(304.02) Opioid type dependence, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\(304.02) Opioid type dependence, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.02''', NULL, + '(304.02) Opioid type dependence, episodic', '(304.02) Opioid type dependence, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\(304.03) Opioid type dependence, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Opioid type dependence (304.0)\(304.03) Opioid type dependence, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.03''', NULL, + '(304.03) Opioid type dependence, in remission', '(304.03) Opioid type dependence, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.6''', NULL, + 'Other specified drug dependence (304.6)', 'Other specified drug dependence (304.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\(304.60) Other specified drug dependence, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\(304.60) Other specified drug dependence, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.60''', NULL, + '(304.60) Other specified drug dependence, unspecified', '(304.60) Other specified drug dependence, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\(304.61) Other specified drug dependence, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\(304.61) Other specified drug dependence, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.61''', NULL, + '(304.61) Other specified drug dependence, continuous', '(304.61) Other specified drug dependence, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\(304.62) Other specified drug dependence, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\(304.62) Other specified drug dependence, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.62''', NULL, + '(304.62) Other specified drug dependence, episodic', '(304.62) Other specified drug dependence, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\(304.63) Other specified drug dependence, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Other specified drug dependence (304.6)\(304.63) Other specified drug dependence, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.63''', NULL, + '(304.63) Other specified drug dependence, in remission', '(304.63) Other specified drug dependence, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.1''', NULL, + 'Sedative, hypnotic or anxiolytic dependence (304.1)', 'Sedative, hypnotic or anxiolytic dependence (304.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\(304.10) Sedative, hypnotic or anxiolytic dependence, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\(304.10) Sedative, hypnotic or anxiolytic dependence, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.10''', NULL, + '(304.10) Sedative, hypnotic or anxiolytic dependence, unspecified', '(304.10) Sedative, hypnotic or anxiolytic dependence, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\(304.11) Sedative, hypnotic or anxiolytic dependence, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\(304.11) Sedative, hypnotic or anxiolytic dependence, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.11''', NULL, + '(304.11) Sedative, hypnotic or anxiolytic dependence, continuous', '(304.11) Sedative, hypnotic or anxiolytic dependence, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\(304.12) Sedative, hypnotic or anxiolytic dependence, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\(304.12) Sedative, hypnotic or anxiolytic dependence, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.12''', NULL, + '(304.12) Sedative, hypnotic or anxiolytic dependence, episodic', '(304.12) Sedative, hypnotic or anxiolytic dependence, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\(304.13) Sedative, hypnotic or anxiolytic dependence, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Sedative, hypnotic or anxiolytic dependence (304.1)\(304.13) Sedative, hypnotic or anxiolytic dependence, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.13''', NULL, + '(304.13) Sedative, hypnotic or anxiolytic dependence, in remission', '(304.13) Sedative, hypnotic or anxiolytic dependence, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.9''', NULL, + 'Unspecified drug dependence (304.9)', 'Unspecified drug dependence (304.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\(304.90) Unspecified drug dependence, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\(304.90) Unspecified drug dependence, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.90''', NULL, + '(304.90) Unspecified drug dependence, unspecified', '(304.90) Unspecified drug dependence, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\(304.91) Unspecified drug dependence, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\(304.91) Unspecified drug dependence, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.91''', NULL, + '(304.91) Unspecified drug dependence, continuous', '(304.91) Unspecified drug dependence, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\(304.92) Unspecified drug dependence, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\(304.92) Unspecified drug dependence, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.92''', NULL, + '(304.92) Unspecified drug dependence, episodic', '(304.92) Unspecified drug dependence, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\(304.93) Unspecified drug dependence, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Drug dependence (304)\Unspecified drug dependence (304.9)\(304.93) Unspecified drug dependence, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''304.93''', NULL, + '(304.93) Unspecified drug dependence, in remission', '(304.93) Unspecified drug dependence, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''314''', NULL, + 'Hyperkinetic syndrome of childhood (314)', 'Hyperkinetic syndrome of childhood (314)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\(314.1) Hyperkinesis with developmental delay\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\(314.1) Hyperkinesis with developmental delay\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''314.1''', NULL, + '(314.1) Hyperkinesis with developmental delay', '(314.1) Hyperkinesis with developmental delay', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\(314.2) Hyperkinetic conduct disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\(314.2) Hyperkinetic conduct disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''314.2''', NULL, + '(314.2) Hyperkinetic conduct disorder', '(314.2) Hyperkinetic conduct disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\(314.8) Other specified manifestations of hyperkinetic syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\(314.8) Other specified manifestations of hyperkinetic syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''314.8''', NULL, + '(314.8) Other specified manifestations of hyperkinetic syndrome', '(314.8) Other specified manifestations of hyperkinetic syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\(314.9) Unspecified hyperkinetic syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\(314.9) Unspecified hyperkinetic syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''314.9''', NULL, + '(314.9) Unspecified hyperkinetic syndrome', '(314.9) Unspecified hyperkinetic syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\Attention deficit disorder of childhood (314.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\Attention deficit disorder of childhood (314.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''314.0''', NULL, + 'Attention deficit disorder of childhood (314.0)', 'Attention deficit disorder of childhood (314.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\Attention deficit disorder of childhood (314.0)\(314.00) Attention deficit disorder without mention of hyperactivity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\Attention deficit disorder of childhood (314.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\Attention deficit disorder of childhood (314.0)\(314.00) Attention deficit disorder without mention of hyperactivity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''314.00''', NULL, + '(314.00) Attention deficit disorder without mention of hyperactivity', '(314.00) Attention deficit disorder without mention of hyperactivity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\Attention deficit disorder of childhood (314.0)\(314.01) Attention deficit disorder with hyperactivity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\Attention deficit disorder of childhood (314.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Hyperkinetic syndrome of childhood (314)\Attention deficit disorder of childhood (314.0)\(314.01) Attention deficit disorder with hyperactivity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''314.01''', NULL, + '(314.01) Attention deficit disorder with hyperactivity', '(314.01) Attention deficit disorder with hyperactivity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305''', NULL, + 'Nondependent abuse of drugs (305)', 'Nondependent abuse of drugs (305)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\(305.1) Tobacco use disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\(305.1) Tobacco use disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.1''', NULL, + '(305.1) Tobacco use disorder', '(305.1) Tobacco use disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.0''', NULL, + 'Alcohol abuse (305.0)', 'Alcohol abuse (305.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\(305.00) Alcohol abuse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\(305.00) Alcohol abuse, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.00''', NULL, + '(305.00) Alcohol abuse, unspecified', '(305.00) Alcohol abuse, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\(305.01) Alcohol abuse, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\(305.01) Alcohol abuse, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.01''', NULL, + '(305.01) Alcohol abuse, continuous', '(305.01) Alcohol abuse, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\(305.02) Alcohol abuse, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\(305.02) Alcohol abuse, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.02''', NULL, + '(305.02) Alcohol abuse, episodic', '(305.02) Alcohol abuse, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\(305.03) Alcohol abuse, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Alcohol abuse (305.0)\(305.03) Alcohol abuse, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.03''', NULL, + '(305.03) Alcohol abuse, in remission', '(305.03) Alcohol abuse, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.7''', NULL, + 'Amphetamine or related acting sympathomimetic abuse (305.7)', 'Amphetamine or related acting sympathomimetic abuse (305.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\(305.70) Amphetamine or related acting sympathomimetic abuse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\(305.70) Amphetamine or related acting sympathomimetic abuse, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.70''', NULL, + '(305.70) Amphetamine or related acting sympathomimetic abuse, unspecified', '(305.70) Amphetamine or related acting sympathomimetic abuse, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\(305.71) Amphetamine or related acting sympathomimetic abuse, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\(305.71) Amphetamine or related acting sympathomimetic abuse, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.71''', NULL, + '(305.71) Amphetamine or related acting sympathomimetic abuse, continuous', '(305.71) Amphetamine or related acting sympathomimetic abuse, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\(305.72) Amphetamine or related acting sympathomimetic abuse, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\(305.72) Amphetamine or related acting sympathomimetic abuse, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.72''', NULL, + '(305.72) Amphetamine or related acting sympathomimetic abuse, episodic', '(305.72) Amphetamine or related acting sympathomimetic abuse, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\(305.73) Amphetamine or related acting sympathomimetic abuse, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Amphetamine or related acting sympathomimetic abuse (305.7)\(305.73) Amphetamine or related acting sympathomimetic abuse, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.73''', NULL, + '(305.73) Amphetamine or related acting sympathomimetic abuse, in remission', '(305.73) Amphetamine or related acting sympathomimetic abuse, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.8''', NULL, + 'Antidepressant type abuse (305.8)', 'Antidepressant type abuse (305.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\(305.80) Antidepressant type abuse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\(305.80) Antidepressant type abuse, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.80''', NULL, + '(305.80) Antidepressant type abuse, unspecified', '(305.80) Antidepressant type abuse, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\(305.81) Antidepressant type abuse, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\(305.81) Antidepressant type abuse, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.81''', NULL, + '(305.81) Antidepressant type abuse, continuous', '(305.81) Antidepressant type abuse, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\(305.82) Antidepressant type abuse, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\(305.82) Antidepressant type abuse, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.82''', NULL, + '(305.82) Antidepressant type abuse, episodic', '(305.82) Antidepressant type abuse, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\(305.83) Antidepressant type abuse, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Antidepressant type abuse (305.8)\(305.83) Antidepressant type abuse, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.83''', NULL, + '(305.83) Antidepressant type abuse, in remission', '(305.83) Antidepressant type abuse, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.2''', NULL, + 'Cannabis abuse (305.2)', 'Cannabis abuse (305.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\(305.20) Cannabis abuse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\(305.20) Cannabis abuse, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.20''', NULL, + '(305.20) Cannabis abuse, unspecified', '(305.20) Cannabis abuse, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\(305.21) Cannabis abuse, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\(305.21) Cannabis abuse, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.21''', NULL, + '(305.21) Cannabis abuse, continuous', '(305.21) Cannabis abuse, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\(305.22) Cannabis abuse, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\(305.22) Cannabis abuse, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.22''', NULL, + '(305.22) Cannabis abuse, episodic', '(305.22) Cannabis abuse, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\(305.23) Cannabis abuse, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cannabis abuse (305.2)\(305.23) Cannabis abuse, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.23''', NULL, + '(305.23) Cannabis abuse, in remission', '(305.23) Cannabis abuse, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.6''', NULL, + 'Cocaine abuse (305.6)', 'Cocaine abuse (305.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\(305.60) Cocaine abuse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\(305.60) Cocaine abuse, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.60''', NULL, + '(305.60) Cocaine abuse, unspecified', '(305.60) Cocaine abuse, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\(305.61) Cocaine abuse, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\(305.61) Cocaine abuse, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.61''', NULL, + '(305.61) Cocaine abuse, continuous', '(305.61) Cocaine abuse, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\(305.62) Cocaine abuse, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\(305.62) Cocaine abuse, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.62''', NULL, + '(305.62) Cocaine abuse, episodic', '(305.62) Cocaine abuse, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\(305.63) Cocaine abuse, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Cocaine abuse (305.6)\(305.63) Cocaine abuse, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.63''', NULL, + '(305.63) Cocaine abuse, in remission', '(305.63) Cocaine abuse, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.3''', NULL, + 'Hallucinogen abuse (305.3)', 'Hallucinogen abuse (305.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\(305.30) Hallucinogen abuse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\(305.30) Hallucinogen abuse, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.30''', NULL, + '(305.30) Hallucinogen abuse, unspecified', '(305.30) Hallucinogen abuse, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\(305.31) Hallucinogen abuse, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\(305.31) Hallucinogen abuse, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.31''', NULL, + '(305.31) Hallucinogen abuse, continuous', '(305.31) Hallucinogen abuse, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\(305.32) Hallucinogen abuse, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\(305.32) Hallucinogen abuse, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.32''', NULL, + '(305.32) Hallucinogen abuse, episodic', '(305.32) Hallucinogen abuse, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\(305.33) Hallucinogen abuse, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Hallucinogen abuse (305.3)\(305.33) Hallucinogen abuse, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.33''', NULL, + '(305.33) Hallucinogen abuse, in remission', '(305.33) Hallucinogen abuse, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.5''', NULL, + 'Opioid abuse (305.5)', 'Opioid abuse (305.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\(305.50) Opioid abuse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\(305.50) Opioid abuse, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.50''', NULL, + '(305.50) Opioid abuse, unspecified', '(305.50) Opioid abuse, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\(305.51) Opioid abuse, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\(305.51) Opioid abuse, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.51''', NULL, + '(305.51) Opioid abuse, continuous', '(305.51) Opioid abuse, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\(305.52) Opioid abuse, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\(305.52) Opioid abuse, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.52''', NULL, + '(305.52) Opioid abuse, episodic', '(305.52) Opioid abuse, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\(305.53) Opioid abuse, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Opioid abuse (305.5)\(305.53) Opioid abuse, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.53''', NULL, + '(305.53) Opioid abuse, in remission', '(305.53) Opioid abuse, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.9''', NULL, + 'Other, mixed, or unspecified drug abuse (305.9)', 'Other, mixed, or unspecified drug abuse (305.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\(305.90) Other, mixed, or unspecified drug abuse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\(305.90) Other, mixed, or unspecified drug abuse, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.90''', NULL, + '(305.90) Other, mixed, or unspecified drug abuse, unspecified', '(305.90) Other, mixed, or unspecified drug abuse, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\(305.91) Other, mixed, or unspecified drug abuse, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\(305.91) Other, mixed, or unspecified drug abuse, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.91''', NULL, + '(305.91) Other, mixed, or unspecified drug abuse, continuous', '(305.91) Other, mixed, or unspecified drug abuse, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\(305.92) Other, mixed, or unspecified drug abuse, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\(305.92) Other, mixed, or unspecified drug abuse, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.92''', NULL, + '(305.92) Other, mixed, or unspecified drug abuse, episodic', '(305.92) Other, mixed, or unspecified drug abuse, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\(305.93) Other, mixed, or unspecified drug abuse, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Other, mixed, or unspecified drug abuse (305.9)\(305.93) Other, mixed, or unspecified drug abuse, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.93''', NULL, + '(305.93) Other, mixed, or unspecified drug abuse, in remission', '(305.93) Other, mixed, or unspecified drug abuse, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.4''', NULL, + 'Sedative, hypnotic or anxiolytic abuse (305.4)', 'Sedative, hypnotic or anxiolytic abuse (305.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\(305.40) Sedative, hypnotic or anxiolytic abuse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\(305.40) Sedative, hypnotic or anxiolytic abuse, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.40''', NULL, + '(305.40) Sedative, hypnotic or anxiolytic abuse, unspecified', '(305.40) Sedative, hypnotic or anxiolytic abuse, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\(305.41) Sedative, hypnotic or anxiolytic abuse, continuous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\(305.41) Sedative, hypnotic or anxiolytic abuse, continuous\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.41''', NULL, + '(305.41) Sedative, hypnotic or anxiolytic abuse, continuous', '(305.41) Sedative, hypnotic or anxiolytic abuse, continuous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\(305.42) Sedative, hypnotic or anxiolytic abuse, episodic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\(305.42) Sedative, hypnotic or anxiolytic abuse, episodic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.42''', NULL, + '(305.42) Sedative, hypnotic or anxiolytic abuse, episodic', '(305.42) Sedative, hypnotic or anxiolytic abuse, episodic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\(305.43) Sedative, hypnotic or anxiolytic abuse, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Nondependent abuse of drugs (305)\Sedative, hypnotic or anxiolytic abuse (305.4)\(305.43) Sedative, hypnotic or anxiolytic abuse, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''305.43''', NULL, + '(305.43) Sedative, hypnotic or anxiolytic abuse, in remission', '(305.43) Sedative, hypnotic or anxiolytic abuse, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301''', NULL, + 'Personality disorders (301)', 'Personality disorders (301)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.0) Paranoid personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.0) Paranoid personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.0''', NULL, + '(301.0) Paranoid personality disorder', '(301.0) Paranoid personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.3) Explosive personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.3) Explosive personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.3''', NULL, + '(301.3) Explosive personality disorder', '(301.3) Explosive personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.4) Obsessive-compulsive personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.4) Obsessive-compulsive personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.4''', NULL, + '(301.4) Obsessive-compulsive personality disorder', '(301.4) Obsessive-compulsive personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.6) Dependent personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.6) Dependent personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.6''', NULL, + '(301.6) Dependent personality disorder', '(301.6) Dependent personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.7) Antisocial personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.7) Antisocial personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.7''', NULL, + '(301.7) Antisocial personality disorder', '(301.7) Antisocial personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.9) Unspecified personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\(301.9) Unspecified personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.9''', NULL, + '(301.9) Unspecified personality disorder', '(301.9) Unspecified personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.1''', NULL, + 'Affective personality disorder (301.1)', 'Affective personality disorder (301.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\(301.10) Affective personality disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\(301.10) Affective personality disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.10''', NULL, + '(301.10) Affective personality disorder, unspecified', '(301.10) Affective personality disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\(301.11) Chronic hypomanic personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\(301.11) Chronic hypomanic personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.11''', NULL, + '(301.11) Chronic hypomanic personality disorder', '(301.11) Chronic hypomanic personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\(301.12) Chronic depressive personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\(301.12) Chronic depressive personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.12''', NULL, + '(301.12) Chronic depressive personality disorder', '(301.12) Chronic depressive personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\(301.13) Cyclothymic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Affective personality disorder (301.1)\(301.13) Cyclothymic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.13''', NULL, + '(301.13) Cyclothymic disorder', '(301.13) Cyclothymic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Histrionic personality disorder (301.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Histrionic personality disorder (301.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.5''', NULL, + 'Histrionic personality disorder (301.5)', 'Histrionic personality disorder (301.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Histrionic personality disorder (301.5)\(301.50) Histrionic personality disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Histrionic personality disorder (301.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Histrionic personality disorder (301.5)\(301.50) Histrionic personality disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.50''', NULL, + '(301.50) Histrionic personality disorder, unspecified', '(301.50) Histrionic personality disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Histrionic personality disorder (301.5)\(301.51) Chronic factitious illness with physical symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Histrionic personality disorder (301.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Histrionic personality disorder (301.5)\(301.51) Chronic factitious illness with physical symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.51''', NULL, + '(301.51) Chronic factitious illness with physical symptoms', '(301.51) Chronic factitious illness with physical symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Histrionic personality disorder (301.5)\(301.59) Other histrionic personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Histrionic personality disorder (301.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Histrionic personality disorder (301.5)\(301.59) Other histrionic personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.59''', NULL, + '(301.59) Other histrionic personality disorder', '(301.59) Other histrionic personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.8''', NULL, + 'Other personality disorders (301.8)', 'Other personality disorders (301.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\(301.81) Narcissistic personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\(301.81) Narcissistic personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.81''', NULL, + '(301.81) Narcissistic personality disorder', '(301.81) Narcissistic personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\(301.82) Avoidant personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\(301.82) Avoidant personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.82''', NULL, + '(301.82) Avoidant personality disorder', '(301.82) Avoidant personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\(301.83) Borderline personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\(301.83) Borderline personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.83''', NULL, + '(301.83) Borderline personality disorder', '(301.83) Borderline personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\(301.84) Passive-aggressive personality\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\(301.84) Passive-aggressive personality\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.84''', NULL, + '(301.84) Passive-aggressive personality', '(301.84) Passive-aggressive personality', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\(301.89) Other personality disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Other personality disorders (301.8)\(301.89) Other personality disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.89''', NULL, + '(301.89) Other personality disorders', '(301.89) Other personality disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Schizoid personality disorder (301.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Schizoid personality disorder (301.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.2''', NULL, + 'Schizoid personality disorder (301.2)', 'Schizoid personality disorder (301.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Schizoid personality disorder (301.2)\(301.20) Schizoid personality disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Schizoid personality disorder (301.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Schizoid personality disorder (301.2)\(301.20) Schizoid personality disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.20''', NULL, + '(301.20) Schizoid personality disorder, unspecified', '(301.20) Schizoid personality disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Schizoid personality disorder (301.2)\(301.21) Introverted personality\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Schizoid personality disorder (301.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Schizoid personality disorder (301.2)\(301.21) Introverted personality\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.21''', NULL, + '(301.21) Introverted personality', '(301.21) Introverted personality', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Schizoid personality disorder (301.2)\(301.22) Schizotypal personality disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Schizoid personality disorder (301.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Personality disorders (301)\Schizoid personality disorder (301.2)\(301.22) Schizotypal personality disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''301.22''', NULL, + '(301.22) Schizotypal personality disorder', '(301.22) Schizotypal personality disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306''', NULL, + 'Physiological malfunction arising from mental factors (306)', 'Physiological malfunction arising from mental factors (306)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.0) Musculoskeletal malfunction arising from mental factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.0) Musculoskeletal malfunction arising from mental factors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.0''', NULL, + '(306.0) Musculoskeletal malfunction arising from mental factors', '(306.0) Musculoskeletal malfunction arising from mental factors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.1) Respiratory malfunction arising from mental factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.1) Respiratory malfunction arising from mental factors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.1''', NULL, + '(306.1) Respiratory malfunction arising from mental factors', '(306.1) Respiratory malfunction arising from mental factors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.2) Cardiovascular malfunction arising from mental factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.2) Cardiovascular malfunction arising from mental factors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.2''', NULL, + '(306.2) Cardiovascular malfunction arising from mental factors', '(306.2) Cardiovascular malfunction arising from mental factors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.3) Skin disorder arising from mental factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.3) Skin disorder arising from mental factors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.3''', NULL, + '(306.3) Skin disorder arising from mental factors', '(306.3) Skin disorder arising from mental factors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.4) Gastrointestinal malfunction arising from mental factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.4) Gastrointestinal malfunction arising from mental factors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.4''', NULL, + '(306.4) Gastrointestinal malfunction arising from mental factors', '(306.4) Gastrointestinal malfunction arising from mental factors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.6) Endocrine disorder arising from mental factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.6) Endocrine disorder arising from mental factors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.6''', NULL, + '(306.6) Endocrine disorder arising from mental factors', '(306.6) Endocrine disorder arising from mental factors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.7) Disorder of organs of special sense arising from mental factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.7) Disorder of organs of special sense arising from mental factors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.7''', NULL, + '(306.7) Disorder of organs of special sense arising from mental factors', '(306.7) Disorder of organs of special sense arising from mental factors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.8) Other specified psychophysiological malfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.8) Other specified psychophysiological malfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.8''', NULL, + '(306.8) Other specified psychophysiological malfunction', '(306.8) Other specified psychophysiological malfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.9) Unspecified psychophysiological malfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\(306.9) Unspecified psychophysiological malfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.9''', NULL, + '(306.9) Unspecified psychophysiological malfunction', '(306.9) Unspecified psychophysiological malfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.5''', NULL, + 'Genitourinary malfunction arising from mental factors (306.5)', 'Genitourinary malfunction arising from mental factors (306.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\(306.50) Psychogenic genitourinary malfunction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\(306.50) Psychogenic genitourinary malfunction, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.50''', NULL, + '(306.50) Psychogenic genitourinary malfunction, unspecified', '(306.50) Psychogenic genitourinary malfunction, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\(306.51) Psychogenic vaginismus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\(306.51) Psychogenic vaginismus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.51''', NULL, + '(306.51) Psychogenic vaginismus', '(306.51) Psychogenic vaginismus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\(306.52) Psychogenic dysmenorrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\(306.52) Psychogenic dysmenorrhea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.52''', NULL, + '(306.52) Psychogenic dysmenorrhea', '(306.52) Psychogenic dysmenorrhea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\(306.53) Psychogenic dysuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\(306.53) Psychogenic dysuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.53''', NULL, + '(306.53) Psychogenic dysuria', '(306.53) Psychogenic dysuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\(306.59) Other genitourinary malfunction arising from mental factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Physiological malfunction arising from mental factors (306)\Genitourinary malfunction arising from mental factors (306.5)\(306.59) Other genitourinary malfunction arising from mental factors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''306.59''', NULL, + '(306.59) Other genitourinary malfunction arising from mental factors', '(306.59) Other genitourinary malfunction arising from mental factors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302''', NULL, + 'Sexual and gender identity disorders (302)', 'Sexual and gender identity disorders (302)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.0) Ego-dystonic sexual orientation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.0) Ego-dystonic sexual orientation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.0''', NULL, + '(302.0) Ego-dystonic sexual orientation', '(302.0) Ego-dystonic sexual orientation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.1) Zoophilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.1) Zoophilia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.1''', NULL, + '(302.1) Zoophilia', '(302.1) Zoophilia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.2) Pedophilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.2) Pedophilia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.2''', NULL, + '(302.2) Pedophilia', '(302.2) Pedophilia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.3) Transvestic fetishism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.3) Transvestic fetishism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.3''', NULL, + '(302.3) Transvestic fetishism', '(302.3) Transvestic fetishism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.4) Exhibitionism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.4) Exhibitionism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.4''', NULL, + '(302.4) Exhibitionism', '(302.4) Exhibitionism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.6) Gender identity disorder in children\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.6) Gender identity disorder in children\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.6''', NULL, + '(302.6) Gender identity disorder in children', '(302.6) Gender identity disorder in children', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.9) Unspecified psychosexual disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\(302.9) Unspecified psychosexual disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.9''', NULL, + '(302.9) Unspecified psychosexual disorder', '(302.9) Unspecified psychosexual disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.8''', NULL, + 'Other specified psychosexual disorders (302.8)', 'Other specified psychosexual disorders (302.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.81) Fetishism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.81) Fetishism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.81''', NULL, + '(302.81) Fetishism', '(302.81) Fetishism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.82) Voyeurism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.82) Voyeurism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.82''', NULL, + '(302.82) Voyeurism', '(302.82) Voyeurism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.83) Sexual masochism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.83) Sexual masochism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.83''', NULL, + '(302.83) Sexual masochism', '(302.83) Sexual masochism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.84) Sexual sadism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.84) Sexual sadism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.84''', NULL, + '(302.84) Sexual sadism', '(302.84) Sexual sadism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.85) Gender identity disorder in adolescents or adults\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.85) Gender identity disorder in adolescents or adults\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.85''', NULL, + '(302.85) Gender identity disorder in adolescents or adults', '(302.85) Gender identity disorder in adolescents or adults', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.89) Other specified psychosexual disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Other specified psychosexual disorders (302.8)\(302.89) Other specified psychosexual disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.89''', NULL, + '(302.89) Other specified psychosexual disorders', '(302.89) Other specified psychosexual disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.7''', NULL, + 'Psychosexual dysfunction (302.7)', 'Psychosexual dysfunction (302.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.70) Psychosexual dysfunction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.70) Psychosexual dysfunction, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.70''', NULL, + '(302.70) Psychosexual dysfunction, unspecified', '(302.70) Psychosexual dysfunction, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.71) Hypoactive sexual desire disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.71) Hypoactive sexual desire disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.71''', NULL, + '(302.71) Hypoactive sexual desire disorder', '(302.71) Hypoactive sexual desire disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.72) Psychosexual dysfunction with inhibited sexual excitement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.72) Psychosexual dysfunction with inhibited sexual excitement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.72''', NULL, + '(302.72) Psychosexual dysfunction with inhibited sexual excitement', '(302.72) Psychosexual dysfunction with inhibited sexual excitement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.73) Female orgasmic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.73) Female orgasmic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.73''', NULL, + '(302.73) Female orgasmic disorder', '(302.73) Female orgasmic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.74) Male orgasmic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.74) Male orgasmic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.74''', NULL, + '(302.74) Male orgasmic disorder', '(302.74) Male orgasmic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.75) Premature ejaculation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.75) Premature ejaculation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.75''', NULL, + '(302.75) Premature ejaculation', '(302.75) Premature ejaculation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.76) Dyspareunia, psychogenic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.76) Dyspareunia, psychogenic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.76''', NULL, + '(302.76) Dyspareunia, psychogenic', '(302.76) Dyspareunia, psychogenic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.79) Psychosexual dysfunction with other specified psychosexual dysfunctions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Psychosexual dysfunction (302.7)\(302.79) Psychosexual dysfunction with other specified psychosexual dysfunctions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.79''', NULL, + '(302.79) Psychosexual dysfunction with other specified psychosexual dysfunctions', '(302.79) Psychosexual dysfunction with other specified psychosexual dysfunctions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.5''', NULL, + 'Trans-sexualism (302.5)', 'Trans-sexualism (302.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\(302.50) Trans-sexualism with unspecified sexual history\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\(302.50) Trans-sexualism with unspecified sexual history\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.50''', NULL, + '(302.50) Trans-sexualism with unspecified sexual history', '(302.50) Trans-sexualism with unspecified sexual history', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\(302.51) Trans-sexualism with asexual history\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\(302.51) Trans-sexualism with asexual history\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.51''', NULL, + '(302.51) Trans-sexualism with asexual history', '(302.51) Trans-sexualism with asexual history', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\(302.52) Trans-sexualism with homosexual history\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\(302.52) Trans-sexualism with homosexual history\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.52''', NULL, + '(302.52) Trans-sexualism with homosexual history', '(302.52) Trans-sexualism with homosexual history', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\(302.53) Trans-sexualism with heterosexual history\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Sexual and gender identity disorders (302)\Trans-sexualism (302.5)\(302.53) Trans-sexualism with heterosexual history\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''302.53''', NULL, + '(302.53) Trans-sexualism with heterosexual history', '(302.53) Trans-sexualism with heterosexual history', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307''', NULL, + 'Special symptoms or syndromes, not elsewhere classified (307)', 'Special symptoms or syndromes, not elsewhere classified (307)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.0) Adult onset fluency disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.0) Adult onset fluency disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.0''', NULL, + '(307.0) Adult onset fluency disorder', '(307.0) Adult onset fluency disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.1) Anorexia nervosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.1) Anorexia nervosa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.1''', NULL, + '(307.1) Anorexia nervosa', '(307.1) Anorexia nervosa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.3) Stereotypic movement disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.3) Stereotypic movement disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.3''', NULL, + '(307.3) Stereotypic movement disorder', '(307.3) Stereotypic movement disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.6) Enuresis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.6) Enuresis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.6''', NULL, + '(307.6) Enuresis', '(307.6) Enuresis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.7) Encopresis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.7) Encopresis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.7''', NULL, + '(307.7) Encopresis', '(307.7) Encopresis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.9) Other and unspecified special symptoms or syndromes, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\(307.9) Other and unspecified special symptoms or syndromes, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.9''', NULL, + '(307.9) Other and unspecified special symptoms or syndromes, not elsewhere classified', '(307.9) Other and unspecified special symptoms or syndromes, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.5''', NULL, + 'Other and unspecified disorders of eating (307.5)', 'Other and unspecified disorders of eating (307.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.50) Eating disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.50) Eating disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.50''', NULL, + '(307.50) Eating disorder, unspecified', '(307.50) Eating disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.51) Bulimia nervosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.51) Bulimia nervosa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.51''', NULL, + '(307.51) Bulimia nervosa', '(307.51) Bulimia nervosa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.52) Pica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.52) Pica\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.52''', NULL, + '(307.52) Pica', '(307.52) Pica', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.53) Rumination disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.53) Rumination disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.53''', NULL, + '(307.53) Rumination disorder', '(307.53) Rumination disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.54) Psychogenic vomiting\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.54) Psychogenic vomiting\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.54''', NULL, + '(307.54) Psychogenic vomiting', '(307.54) Psychogenic vomiting', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.59) Other disorders of eating\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Other and unspecified disorders of eating (307.5)\(307.59) Other disorders of eating\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.59''', NULL, + '(307.59) Other disorders of eating', '(307.59) Other disorders of eating', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Pain disorders related to psychological factors (307.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Pain disorders related to psychological factors (307.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.8''', NULL, + 'Pain disorders related to psychological factors (307.8)', 'Pain disorders related to psychological factors (307.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Pain disorders related to psychological factors (307.8)\(307.80) Psychogenic pain, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Pain disorders related to psychological factors (307.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Pain disorders related to psychological factors (307.8)\(307.80) Psychogenic pain, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.80''', NULL, + '(307.80) Psychogenic pain, site unspecified', '(307.80) Psychogenic pain, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Pain disorders related to psychological factors (307.8)\(307.81) Tension headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Pain disorders related to psychological factors (307.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Pain disorders related to psychological factors (307.8)\(307.81) Tension headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.81''', NULL, + '(307.81) Tension headache', '(307.81) Tension headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Pain disorders related to psychological factors (307.8)\(307.89) Other pain disorders related to psychological factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Pain disorders related to psychological factors (307.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Pain disorders related to psychological factors (307.8)\(307.89) Other pain disorders related to psychological factors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.89''', NULL, + '(307.89) Other pain disorders related to psychological factors', '(307.89) Other pain disorders related to psychological factors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.4''', NULL, + 'Specific disorders of sleep of nonorganic origin (307.4)', 'Specific disorders of sleep of nonorganic origin (307.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.40) Nonorganic sleep disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.40) Nonorganic sleep disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.40''', NULL, + '(307.40) Nonorganic sleep disorder, unspecified', '(307.40) Nonorganic sleep disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.41) Transient disorder of initiating or maintaining sleep\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.41) Transient disorder of initiating or maintaining sleep\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.41''', NULL, + '(307.41) Transient disorder of initiating or maintaining sleep', '(307.41) Transient disorder of initiating or maintaining sleep', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.42) Persistent disorder of initiating or maintaining sleep\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.42) Persistent disorder of initiating or maintaining sleep\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.42''', NULL, + '(307.42) Persistent disorder of initiating or maintaining sleep', '(307.42) Persistent disorder of initiating or maintaining sleep', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.43) Transient disorder of initiating or maintaining wakefulness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.43) Transient disorder of initiating or maintaining wakefulness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.43''', NULL, + '(307.43) Transient disorder of initiating or maintaining wakefulness', '(307.43) Transient disorder of initiating or maintaining wakefulness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.44) Persistent disorder of initiating or maintaining wakefulness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.44) Persistent disorder of initiating or maintaining wakefulness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.44''', NULL, + '(307.44) Persistent disorder of initiating or maintaining wakefulness', '(307.44) Persistent disorder of initiating or maintaining wakefulness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.45) Circadian rhythm sleep disorder of nonorganic origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.45) Circadian rhythm sleep disorder of nonorganic origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.45''', NULL, + '(307.45) Circadian rhythm sleep disorder of nonorganic origin', '(307.45) Circadian rhythm sleep disorder of nonorganic origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.46) Sleep arousal disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.46) Sleep arousal disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.46''', NULL, + '(307.46) Sleep arousal disorder', '(307.46) Sleep arousal disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.47) Other dysfunctions of sleep stages or arousal from sleep\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.47) Other dysfunctions of sleep stages or arousal from sleep\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.47''', NULL, + '(307.47) Other dysfunctions of sleep stages or arousal from sleep', '(307.47) Other dysfunctions of sleep stages or arousal from sleep', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.48) Repetitive intrusions of sleep\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.48) Repetitive intrusions of sleep\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.48''', NULL, + '(307.48) Repetitive intrusions of sleep', '(307.48) Repetitive intrusions of sleep', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.49) Other specific disorders of sleep of nonorganic origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Specific disorders of sleep of nonorganic origin (307.4)\(307.49) Other specific disorders of sleep of nonorganic origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.49''', NULL, + '(307.49) Other specific disorders of sleep of nonorganic origin', '(307.49) Other specific disorders of sleep of nonorganic origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.2''', NULL, + 'Tics (307.2)', 'Tics (307.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\(307.20) Tic disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\(307.20) Tic disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.20''', NULL, + '(307.20) Tic disorder, unspecified', '(307.20) Tic disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\(307.21) Transient tic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\(307.21) Transient tic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.21''', NULL, + '(307.21) Transient tic disorder', '(307.21) Transient tic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\(307.22) Chronic motor or vocal tic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\(307.22) Chronic motor or vocal tic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.22''', NULL, + '(307.22) Chronic motor or vocal tic disorder', '(307.22) Chronic motor or vocal tic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\(307.23) Tourette''s disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Special symptoms or syndromes, not elsewhere classified (307)\Tics (307.2)\(307.23) Tourette''s disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''307.23''', NULL, + '(307.23) Tourette''s disorder', '(307.23) Tourette''s disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315''', NULL, + 'Specific delays in development (315)', 'Specific delays in development (315)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.1) Mathematics disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.1) Mathematics disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.1''', NULL, + '(315.1) Mathematics disorder', '(315.1) Mathematics disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.2) Other specific developmental learning difficulties\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.2) Other specific developmental learning difficulties\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.2''', NULL, + '(315.2) Other specific developmental learning difficulties', '(315.2) Other specific developmental learning difficulties', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.4) Developmental coordination disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.4) Developmental coordination disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.4''', NULL, + '(315.4) Developmental coordination disorder', '(315.4) Developmental coordination disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.5) Mixed development disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.5) Mixed development disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.5''', NULL, + '(315.5) Mixed development disorder', '(315.5) Mixed development disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.8) Other specified delays in development\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.8) Other specified delays in development\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.8''', NULL, + '(315.8) Other specified delays in development', '(315.8) Other specified delays in development', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.9) Unspecified delay in development\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\(315.9) Unspecified delay in development\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.9''', NULL, + '(315.9) Unspecified delay in development', '(315.9) Unspecified delay in development', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.0''', NULL, + 'Developmental reading disorder (315.0)', 'Developmental reading disorder (315.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\(315.00) Developmental reading disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\(315.00) Developmental reading disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.00''', NULL, + '(315.00) Developmental reading disorder, unspecified', '(315.00) Developmental reading disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\(315.01) Alexia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\(315.01) Alexia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.01''', NULL, + '(315.01) Alexia', '(315.01) Alexia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\(315.02) Developmental dyslexia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\(315.02) Developmental dyslexia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.02''', NULL, + '(315.02) Developmental dyslexia', '(315.02) Developmental dyslexia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\(315.09) Other specific developmental reading disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental reading disorder (315.0)\(315.09) Other specific developmental reading disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.09''', NULL, + '(315.09) Other specific developmental reading disorder', '(315.09) Other specific developmental reading disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.3''', NULL, + 'Developmental speech or language disorder (315.3)', 'Developmental speech or language disorder (315.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\(315.31) Expressive language disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\(315.31) Expressive language disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.31''', NULL, + '(315.31) Expressive language disorder', '(315.31) Expressive language disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\(315.32) Mixed receptive-expressive language disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\(315.32) Mixed receptive-expressive language disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.32''', NULL, + '(315.32) Mixed receptive-expressive language disorder', '(315.32) Mixed receptive-expressive language disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\(315.34) Speech and language developmental delay due to hearing loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\(315.34) Speech and language developmental delay due to hearing loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.34''', NULL, + '(315.34) Speech and language developmental delay due to hearing loss', '(315.34) Speech and language developmental delay due to hearing loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\(315.35) Childhood onset fluency disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\(315.35) Childhood onset fluency disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.35''', NULL, + '(315.35) Childhood onset fluency disorder', '(315.35) Childhood onset fluency disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\(315.39) Other developmental speech or language disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific delays in development (315)\Developmental speech or language disorder (315.3)\(315.39) Other developmental speech or language disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''315.39''', NULL, + '(315.39) Other developmental speech or language disorder', '(315.39) Other developmental speech or language disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''310''', NULL, + 'Specific nonpsychotic mental disorders due to brain damage (310)', 'Specific nonpsychotic mental disorders due to brain damage (310)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\(310.0) Frontal lobe syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\(310.0) Frontal lobe syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''310.0''', NULL, + '(310.0) Frontal lobe syndrome', '(310.0) Frontal lobe syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\(310.1) Personality change due to conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\(310.1) Personality change due to conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''310.1''', NULL, + '(310.1) Personality change due to conditions classified elsewhere', '(310.1) Personality change due to conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\(310.2) Postconcussion syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\(310.2) Postconcussion syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''310.2''', NULL, + '(310.2) Postconcussion syndrome', '(310.2) Postconcussion syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\(310.9) Unspecified nonpsychotic mental disorder following organic brain damage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\(310.9) Unspecified nonpsychotic mental disorder following organic brain damage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''310.9''', NULL, + '(310.9) Unspecified nonpsychotic mental disorder following organic brain damage', '(310.9) Unspecified nonpsychotic mental disorder following organic brain damage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\Other specified nonpsychotic mental disorders following organic brain damage (310.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\Other specified nonpsychotic mental disorders following organic brain damage (310.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''310.8''', NULL, + 'Other specified nonpsychotic mental disorders following organic brain damage (310.8)', 'Other specified nonpsychotic mental disorders following organic brain damage (310.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\Other specified nonpsychotic mental disorders following organic brain damage (310.8)\(310.89) Other specified nonpsychotic mental disorders following organic brain damage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\Other specified nonpsychotic mental disorders following organic brain damage (310.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\Specific nonpsychotic mental disorders due to brain damage (310)\Other specified nonpsychotic mental disorders following organic brain damage (310.8)\(310.89) Other specified nonpsychotic mental disorders following organic brain damage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''310.89''', NULL, + '(310.89) Other specified nonpsychotic mental disorders following organic brain damage', '(310.89) Other specified nonpsychotic mental disorders following organic brain damage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''290'' AND ''299.99''', NULL, + 'Psychoses (290-299.99)', 'Psychoses (290-299.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''290'' AND ''294.99''', NULL, + 'ORGANIC PSYCHOTIC CONDITIONS (290-294.99)', 'ORGANIC PSYCHOTIC CONDITIONS (290-294.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291''', NULL, + 'Alcohol-induced mental disorders (291)', 'Alcohol-induced mental disorders (291)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.0) Alcohol withdrawal delirium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.0) Alcohol withdrawal delirium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291.0''', NULL, + '(291.0) Alcohol withdrawal delirium', '(291.0) Alcohol withdrawal delirium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.1) Alcohol-induced persisting amnestic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.1) Alcohol-induced persisting amnestic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291.1''', NULL, + '(291.1) Alcohol-induced persisting amnestic disorder', '(291.1) Alcohol-induced persisting amnestic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.2) Alcohol-induced persisting dementia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.2) Alcohol-induced persisting dementia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291.2''', NULL, + '(291.2) Alcohol-induced persisting dementia', '(291.2) Alcohol-induced persisting dementia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.3) Alcohol-induced psychotic disorder with hallucinations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.3) Alcohol-induced psychotic disorder with hallucinations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291.3''', NULL, + '(291.3) Alcohol-induced psychotic disorder with hallucinations', '(291.3) Alcohol-induced psychotic disorder with hallucinations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.4) Idiosyncratic alcohol intoxication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.4) Idiosyncratic alcohol intoxication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291.4''', NULL, + '(291.4) Idiosyncratic alcohol intoxication', '(291.4) Idiosyncratic alcohol intoxication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.5) Alcohol-induced psychotic disorder with delusions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.5) Alcohol-induced psychotic disorder with delusions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291.5''', NULL, + '(291.5) Alcohol-induced psychotic disorder with delusions', '(291.5) Alcohol-induced psychotic disorder with delusions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.9) Unspecified alcohol-induced mental disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\(291.9) Unspecified alcohol-induced mental disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291.9''', NULL, + '(291.9) Unspecified alcohol-induced mental disorders', '(291.9) Unspecified alcohol-induced mental disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\Other specified alcohol-induced mental disorders (291.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\Other specified alcohol-induced mental disorders (291.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291.8''', NULL, + 'Other specified alcohol-induced mental disorders (291.8)', 'Other specified alcohol-induced mental disorders (291.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\Other specified alcohol-induced mental disorders (291.8)\(291.81) Alcohol withdrawal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\Other specified alcohol-induced mental disorders (291.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\Other specified alcohol-induced mental disorders (291.8)\(291.81) Alcohol withdrawal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291.81''', NULL, + '(291.81) Alcohol withdrawal', '(291.81) Alcohol withdrawal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\Other specified alcohol-induced mental disorders (291.8)\(291.82) Alcohol induced sleep disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\Other specified alcohol-induced mental disorders (291.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\Other specified alcohol-induced mental disorders (291.8)\(291.82) Alcohol induced sleep disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291.82''', NULL, + '(291.82) Alcohol induced sleep disorders', '(291.82) Alcohol induced sleep disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\Other specified alcohol-induced mental disorders (291.8)\(291.89) Other alcohol-induced mental disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\Other specified alcohol-induced mental disorders (291.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Alcohol-induced mental disorders (291)\Other specified alcohol-induced mental disorders (291.8)\(291.89) Other alcohol-induced mental disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''291.89''', NULL, + '(291.89) Other alcohol-induced mental disorders', '(291.89) Other alcohol-induced mental disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290''', NULL, + 'Dementias (290)', 'Dementias (290)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\(290.0) Senile dementia, uncomplicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\(290.0) Senile dementia, uncomplicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.0''', NULL, + '(290.0) Senile dementia, uncomplicated', '(290.0) Senile dementia, uncomplicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\(290.3) Senile dementia with delirium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\(290.3) Senile dementia with delirium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.3''', NULL, + '(290.3) Senile dementia with delirium', '(290.3) Senile dementia with delirium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\(290.8) Other specified senile psychotic conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\(290.8) Other specified senile psychotic conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.8''', NULL, + '(290.8) Other specified senile psychotic conditions', '(290.8) Other specified senile psychotic conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\(290.9) Unspecified senile psychotic condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\(290.9) Unspecified senile psychotic condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.9''', NULL, + '(290.9) Unspecified senile psychotic condition', '(290.9) Unspecified senile psychotic condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.1''', NULL, + 'Presenile dementia (290.1)', 'Presenile dementia (290.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\(290.10) Presenile dementia, uncomplicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\(290.10) Presenile dementia, uncomplicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.10''', NULL, + '(290.10) Presenile dementia, uncomplicated', '(290.10) Presenile dementia, uncomplicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\(290.11) Presenile dementia with delirium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\(290.11) Presenile dementia with delirium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.11''', NULL, + '(290.11) Presenile dementia with delirium', '(290.11) Presenile dementia with delirium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\(290.12) Presenile dementia with delusional features\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\(290.12) Presenile dementia with delusional features\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.12''', NULL, + '(290.12) Presenile dementia with delusional features', '(290.12) Presenile dementia with delusional features', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\(290.13) Presenile dementia with depressive features\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Presenile dementia (290.1)\(290.13) Presenile dementia with depressive features\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.13''', NULL, + '(290.13) Presenile dementia with depressive features', '(290.13) Presenile dementia with depressive features', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Senile dementia with delusional or depressive features (290.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Senile dementia with delusional or depressive features (290.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.2''', NULL, + 'Senile dementia with delusional or depressive features (290.2)', 'Senile dementia with delusional or depressive features (290.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Senile dementia with delusional or depressive features (290.2)\(290.20) Senile dementia with delusional features\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Senile dementia with delusional or depressive features (290.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Senile dementia with delusional or depressive features (290.2)\(290.20) Senile dementia with delusional features\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.20''', NULL, + '(290.20) Senile dementia with delusional features', '(290.20) Senile dementia with delusional features', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Senile dementia with delusional or depressive features (290.2)\(290.21) Senile dementia with depressive features\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Senile dementia with delusional or depressive features (290.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Senile dementia with delusional or depressive features (290.2)\(290.21) Senile dementia with depressive features\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.21''', NULL, + '(290.21) Senile dementia with depressive features', '(290.21) Senile dementia with depressive features', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.4''', NULL, + 'Vascular dementia (290.4)', 'Vascular dementia (290.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\(290.40) Vascular dementia, uncomplicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\(290.40) Vascular dementia, uncomplicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.40''', NULL, + '(290.40) Vascular dementia, uncomplicated', '(290.40) Vascular dementia, uncomplicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\(290.41) Vascular dementia, with delirium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\(290.41) Vascular dementia, with delirium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.41''', NULL, + '(290.41) Vascular dementia, with delirium', '(290.41) Vascular dementia, with delirium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\(290.42) Vascular dementia, with delusions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\(290.42) Vascular dementia, with delusions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.42''', NULL, + '(290.42) Vascular dementia, with delusions', '(290.42) Vascular dementia, with delusions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\(290.43) Vascular dementia, with depressed mood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Dementias (290)\Vascular dementia (290.4)\(290.43) Vascular dementia, with depressed mood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''290.43''', NULL, + '(290.43) Vascular dementia, with depressed mood', '(290.43) Vascular dementia, with depressed mood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292''', NULL, + 'Drug-induced mental disorders (292)', 'Drug-induced mental disorders (292)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\(292.0) Drug withdrawal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\(292.0) Drug withdrawal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.0''', NULL, + '(292.0) Drug withdrawal', '(292.0) Drug withdrawal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\(292.2) Pathological drug intoxication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\(292.2) Pathological drug intoxication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.2''', NULL, + '(292.2) Pathological drug intoxication', '(292.2) Pathological drug intoxication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\(292.9) Unspecified drug-induced mental disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\(292.9) Unspecified drug-induced mental disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.9''', NULL, + '(292.9) Unspecified drug-induced mental disorder', '(292.9) Unspecified drug-induced mental disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Drug-induced psychotic disorders (292.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Drug-induced psychotic disorders (292.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.1''', NULL, + 'Drug-induced psychotic disorders (292.1)', 'Drug-induced psychotic disorders (292.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Drug-induced psychotic disorders (292.1)\(292.11) Drug-induced psychotic disorder with delusions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Drug-induced psychotic disorders (292.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Drug-induced psychotic disorders (292.1)\(292.11) Drug-induced psychotic disorder with delusions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.11''', NULL, + '(292.11) Drug-induced psychotic disorder with delusions', '(292.11) Drug-induced psychotic disorder with delusions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Drug-induced psychotic disorders (292.1)\(292.12) Drug-induced psychotic disorder with hallucinations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Drug-induced psychotic disorders (292.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Drug-induced psychotic disorders (292.1)\(292.12) Drug-induced psychotic disorder with hallucinations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.12''', NULL, + '(292.12) Drug-induced psychotic disorder with hallucinations', '(292.12) Drug-induced psychotic disorder with hallucinations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.8''', NULL, + 'Other specified drug-induced mental disorders (292.8)', 'Other specified drug-induced mental disorders (292.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.81) Drug-induced delirium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.81) Drug-induced delirium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.81''', NULL, + '(292.81) Drug-induced delirium', '(292.81) Drug-induced delirium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.82) Drug-induced persisting dementia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.82) Drug-induced persisting dementia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.82''', NULL, + '(292.82) Drug-induced persisting dementia', '(292.82) Drug-induced persisting dementia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.83) Drug-induced persisting amnestic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.83) Drug-induced persisting amnestic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.83''', NULL, + '(292.83) Drug-induced persisting amnestic disorder', '(292.83) Drug-induced persisting amnestic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.84) Drug-induced mood disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.84) Drug-induced mood disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.84''', NULL, + '(292.84) Drug-induced mood disorder', '(292.84) Drug-induced mood disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.85) Drug induced sleep disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.85) Drug induced sleep disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.85''', NULL, + '(292.85) Drug induced sleep disorders', '(292.85) Drug induced sleep disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.89) Other specified drug-induced mental disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Drug-induced mental disorders (292)\Other specified drug-induced mental disorders (292.8)\(292.89) Other specified drug-induced mental disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''292.89''', NULL, + '(292.89) Other specified drug-induced mental disorders', '(292.89) Other specified drug-induced mental disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''294''', NULL, + 'Persistent mental disorders due to conditions classified elsewhere (294)', 'Persistent mental disorders due to conditions classified elsewhere (294)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\(294.0) Amnestic disorder in conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\(294.0) Amnestic disorder in conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''294.0''', NULL, + '(294.0) Amnestic disorder in conditions classified elsewhere', '(294.0) Amnestic disorder in conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\(294.8) Other persistent mental disorders due to conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\(294.8) Other persistent mental disorders due to conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''294.8''', NULL, + '(294.8) Other persistent mental disorders due to conditions classified elsewhere', '(294.8) Other persistent mental disorders due to conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\(294.9) Unspecified persistent mental disorders due to conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\(294.9) Unspecified persistent mental disorders due to conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''294.9''', NULL, + '(294.9) Unspecified persistent mental disorders due to conditions classified elsewhere', '(294.9) Unspecified persistent mental disorders due to conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia in conditions classified elsewhere (294.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia in conditions classified elsewhere (294.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''294.1''', NULL, + 'Dementia in conditions classified elsewhere (294.1)', 'Dementia in conditions classified elsewhere (294.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia in conditions classified elsewhere (294.1)\(294.10) Dementia in conditions classified elsewhere without behavioral disturbance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia in conditions classified elsewhere (294.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia in conditions classified elsewhere (294.1)\(294.10) Dementia in conditions classified elsewhere without behavioral disturbance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''294.10''', NULL, + '(294.10) Dementia in conditions classified elsewhere without behavioral disturbance', '(294.10) Dementia in conditions classified elsewhere without behavioral disturbance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia in conditions classified elsewhere (294.1)\(294.11) Dementia in conditions classified elsewhere with behavioral disturbance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia in conditions classified elsewhere (294.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia in conditions classified elsewhere (294.1)\(294.11) Dementia in conditions classified elsewhere with behavioral disturbance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''294.11''', NULL, + '(294.11) Dementia in conditions classified elsewhere with behavioral disturbance', '(294.11) Dementia in conditions classified elsewhere with behavioral disturbance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia, unspecified (294.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia, unspecified (294.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''294.2''', NULL, + 'Dementia, unspecified (294.2)', 'Dementia, unspecified (294.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia, unspecified (294.2)\(294.20) Dementia, unspecified, without behavioral disturbance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia, unspecified (294.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia, unspecified (294.2)\(294.20) Dementia, unspecified, without behavioral disturbance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''294.20''', NULL, + '(294.20) Dementia, unspecified, without behavioral disturbance', '(294.20) Dementia, unspecified, without behavioral disturbance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia, unspecified (294.2)\(294.21) Dementia, unspecified, with behavioral disturbance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia, unspecified (294.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Persistent mental disorders due to conditions classified elsewhere (294)\Dementia, unspecified (294.2)\(294.21) Dementia, unspecified, with behavioral disturbance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''294.21''', NULL, + '(294.21) Dementia, unspecified, with behavioral disturbance', '(294.21) Dementia, unspecified, with behavioral disturbance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''293''', NULL, + 'Transient mental disorders due to conditions classified elsewhere (293)', 'Transient mental disorders due to conditions classified elsewhere (293)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\(293.0) Delirium due to conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\(293.0) Delirium due to conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''293.0''', NULL, + '(293.0) Delirium due to conditions classified elsewhere', '(293.0) Delirium due to conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\(293.1) Subacute delirium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\(293.1) Subacute delirium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''293.1''', NULL, + '(293.1) Subacute delirium', '(293.1) Subacute delirium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\(293.9) Unspecified transient mental disorder in conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\(293.9) Unspecified transient mental disorder in conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''293.9''', NULL, + '(293.9) Unspecified transient mental disorder in conditions classified elsewhere', '(293.9) Unspecified transient mental disorder in conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''293.8''', NULL, + 'Other specified transient mental disorders due to conditions classified elsewhere (293.8)', 'Other specified transient mental disorders due to conditions classified elsewhere (293.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\(293.81) Psychotic disorder with delusions in conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\(293.81) Psychotic disorder with delusions in conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''293.81''', NULL, + '(293.81) Psychotic disorder with delusions in conditions classified elsewhere', '(293.81) Psychotic disorder with delusions in conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\(293.82) Psychotic disorder with hallucinations in conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\(293.82) Psychotic disorder with hallucinations in conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''293.82''', NULL, + '(293.82) Psychotic disorder with hallucinations in conditions classified elsewhere', '(293.82) Psychotic disorder with hallucinations in conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\(293.83) Mood disorder in conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\(293.83) Mood disorder in conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''293.83''', NULL, + '(293.83) Mood disorder in conditions classified elsewhere', '(293.83) Mood disorder in conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\(293.84) Anxiety disorder in conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\(293.84) Anxiety disorder in conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''293.84''', NULL, + '(293.84) Anxiety disorder in conditions classified elsewhere', '(293.84) Anxiety disorder in conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\(293.89) Other specified transient mental disorders due to conditions classified elsewhere, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\Transient mental disorders due to conditions classified elsewhere (293)\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\(293.89) Other specified transient mental disorders due to conditions classified elsewhere, other\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''293.89''', NULL, + '(293.89) Other specified transient mental disorders due to conditions classified elsewhere, other', '(293.89) Other specified transient mental disorders due to conditions classified elsewhere, other', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''295'' AND ''299.99''', NULL, + 'OTHER PSYCHOSES (295-299.99)', 'OTHER PSYCHOSES (295-299.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296''', NULL, + 'Episodic mood disorders (296)', 'Episodic mood disorders (296)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\(296.7) Bipolar I disorder, most recent episode (or current) unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\(296.7) Bipolar I disorder, most recent episode (or current) unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.7) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.7) Bipolar I disorder, most recent episode (or current) unspecified', '(296.7) Bipolar I disorder, most recent episode (or current) unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''or current) depressed (296.5''', NULL, + 'Bipolar I disorder, most recent episode (or current) depressed (296.5)', 'Bipolar I disorder, most recent episode (or current) depressed (296.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.50) Bipolar I disorder, most recent episode (or current) depressed, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.50) Bipolar I disorder, most recent episode (or current) depressed, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.50) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.50) Bipolar I disorder, most recent episode (or current) depressed, unspecified', '(296.50) Bipolar I disorder, most recent episode (or current) depressed, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.51) Bipolar I disorder, most recent episode (or current) depressed, mild\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.51) Bipolar I disorder, most recent episode (or current) depressed, mild\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.51) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.51) Bipolar I disorder, most recent episode (or current) depressed, mild', '(296.51) Bipolar I disorder, most recent episode (or current) depressed, mild', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.52) Bipolar I disorder, most recent episode (or current) depressed, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.52) Bipolar I disorder, most recent episode (or current) depressed, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.52) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.52) Bipolar I disorder, most recent episode (or current) depressed, moderate', '(296.52) Bipolar I disorder, most recent episode (or current) depressed, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.53) Bipolar I disorder, most recent episode (or current) depressed, severe, without mention of psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.53) Bipolar I disorder, most recent episode (or current) depressed, severe, without mention of psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.53) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.53) Bipolar I disorder, most recent episode (or current) depressed, severe, without mention of psychotic behavior', '(296.53) Bipolar I disorder, most recent episode (or current) depressed, severe, without mention of psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.54) Bipolar I disorder, most recent episode (or current) depressed, severe, specified as with psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.54) Bipolar I disorder, most recent episode (or current) depressed, severe, specified as with psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.54) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.54) Bipolar I disorder, most recent episode (or current) depressed, severe, specified as with psychotic behavior', '(296.54) Bipolar I disorder, most recent episode (or current) depressed, severe, specified as with psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.55) Bipolar I disorder, most recent episode (or current) depressed, in partial or unspecified remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.55) Bipolar I disorder, most recent episode (or current) depressed, in partial or unspecified remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.55) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.55) Bipolar I disorder, most recent episode (or current) depressed, in partial or unspecified remission', '(296.55) Bipolar I disorder, most recent episode (or current) depressed, in partial or unspecified remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.56) Bipolar I disorder, most recent episode (or current) depressed, in full remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) depressed (296.5)\(296.56) Bipolar I disorder, most recent episode (or current) depressed, in full remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.56) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.56) Bipolar I disorder, most recent episode (or current) depressed, in full remission', '(296.56) Bipolar I disorder, most recent episode (or current) depressed, in full remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''or current) manic (296.4''', NULL, + 'Bipolar I disorder, most recent episode (or current) manic (296.4)', 'Bipolar I disorder, most recent episode (or current) manic (296.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.40) Bipolar I disorder, most recent episode (or current) manic, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.40) Bipolar I disorder, most recent episode (or current) manic, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.40) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.40) Bipolar I disorder, most recent episode (or current) manic, unspecified', '(296.40) Bipolar I disorder, most recent episode (or current) manic, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.41) Bipolar I disorder, most recent episode (or current) manic, mild\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.41) Bipolar I disorder, most recent episode (or current) manic, mild\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.41) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.41) Bipolar I disorder, most recent episode (or current) manic, mild', '(296.41) Bipolar I disorder, most recent episode (or current) manic, mild', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.42) Bipolar I disorder, most recent episode (or current) manic, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.42) Bipolar I disorder, most recent episode (or current) manic, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.42) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.42) Bipolar I disorder, most recent episode (or current) manic, moderate', '(296.42) Bipolar I disorder, most recent episode (or current) manic, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.43) Bipolar I disorder, most recent episode (or current) manic, severe, without mention of psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.43) Bipolar I disorder, most recent episode (or current) manic, severe, without mention of psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.43) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.43) Bipolar I disorder, most recent episode (or current) manic, severe, without mention of psychotic behavior', '(296.43) Bipolar I disorder, most recent episode (or current) manic, severe, without mention of psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.44) Bipolar I disorder, most recent episode (or current) manic, severe, specified as with psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.44) Bipolar I disorder, most recent episode (or current) manic, severe, specified as with psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.44) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.44) Bipolar I disorder, most recent episode (or current) manic, severe, specified as with psychotic behavior', '(296.44) Bipolar I disorder, most recent episode (or current) manic, severe, specified as with psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.45) Bipolar I disorder, most recent episode (or current) manic, in partial or unspecified remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.45) Bipolar I disorder, most recent episode (or current) manic, in partial or unspecified remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.45) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.45) Bipolar I disorder, most recent episode (or current) manic, in partial or unspecified remission', '(296.45) Bipolar I disorder, most recent episode (or current) manic, in partial or unspecified remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.46) Bipolar I disorder, most recent episode (or current) manic, in full remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) manic (296.4)\(296.46) Bipolar I disorder, most recent episode (or current) manic, in full remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.46) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.46) Bipolar I disorder, most recent episode (or current) manic, in full remission', '(296.46) Bipolar I disorder, most recent episode (or current) manic, in full remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''or current) mixed (296.6''', NULL, + 'Bipolar I disorder, most recent episode (or current) mixed (296.6)', 'Bipolar I disorder, most recent episode (or current) mixed (296.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.60) Bipolar I disorder, most recent episode (or current) mixed, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.60) Bipolar I disorder, most recent episode (or current) mixed, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.60) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.60) Bipolar I disorder, most recent episode (or current) mixed, unspecified', '(296.60) Bipolar I disorder, most recent episode (or current) mixed, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.61) Bipolar I disorder, most recent episode (or current) mixed, mild\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.61) Bipolar I disorder, most recent episode (or current) mixed, mild\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.61) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.61) Bipolar I disorder, most recent episode (or current) mixed, mild', '(296.61) Bipolar I disorder, most recent episode (or current) mixed, mild', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.62) Bipolar I disorder, most recent episode (or current) mixed, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.62) Bipolar I disorder, most recent episode (or current) mixed, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.62) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.62) Bipolar I disorder, most recent episode (or current) mixed, moderate', '(296.62) Bipolar I disorder, most recent episode (or current) mixed, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.63) Bipolar I disorder, most recent episode (or current) mixed, severe, without mention of psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.63) Bipolar I disorder, most recent episode (or current) mixed, severe, without mention of psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.63) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.63) Bipolar I disorder, most recent episode (or current) mixed, severe, without mention of psychotic behavior', '(296.63) Bipolar I disorder, most recent episode (or current) mixed, severe, without mention of psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.64) Bipolar I disorder, most recent episode (or current) mixed, severe, specified as with psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.64) Bipolar I disorder, most recent episode (or current) mixed, severe, specified as with psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.64) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.64) Bipolar I disorder, most recent episode (or current) mixed, severe, specified as with psychotic behavior', '(296.64) Bipolar I disorder, most recent episode (or current) mixed, severe, specified as with psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.65) Bipolar I disorder, most recent episode (or current) mixed, in partial or unspecified remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.65) Bipolar I disorder, most recent episode (or current) mixed, in partial or unspecified remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.65) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.65) Bipolar I disorder, most recent episode (or current) mixed, in partial or unspecified remission', '(296.65) Bipolar I disorder, most recent episode (or current) mixed, in partial or unspecified remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.66) Bipolar I disorder, most recent episode (or current) mixed, in full remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, most recent episode (or current) mixed (296.6)\(296.66) Bipolar I disorder, most recent episode (or current) mixed, in full remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.66) Bipolar I disorder, most recent episode (or current''', NULL, + '(296.66) Bipolar I disorder, most recent episode (or current) mixed, in full remission', '(296.66) Bipolar I disorder, most recent episode (or current) mixed, in full remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.0''', NULL, + 'Bipolar I disorder, single manic episode (296.0)', 'Bipolar I disorder, single manic episode (296.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.00) Bipolar I disorder, single manic episode, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.00) Bipolar I disorder, single manic episode, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.00''', NULL, + '(296.00) Bipolar I disorder, single manic episode, unspecified', '(296.00) Bipolar I disorder, single manic episode, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.01) Bipolar I disorder, single manic episode, mild\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.01) Bipolar I disorder, single manic episode, mild\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.01''', NULL, + '(296.01) Bipolar I disorder, single manic episode, mild', '(296.01) Bipolar I disorder, single manic episode, mild', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.02) Bipolar I disorder, single manic episode, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.02) Bipolar I disorder, single manic episode, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.02''', NULL, + '(296.02) Bipolar I disorder, single manic episode, moderate', '(296.02) Bipolar I disorder, single manic episode, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.03) Bipolar I disorder, single manic episode, severe, without mention of psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.03) Bipolar I disorder, single manic episode, severe, without mention of psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.03''', NULL, + '(296.03) Bipolar I disorder, single manic episode, severe, without mention of psychotic behavior', '(296.03) Bipolar I disorder, single manic episode, severe, without mention of psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.04) Bipolar I disorder, single manic episode, severe, specified as with psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.04) Bipolar I disorder, single manic episode, severe, specified as with psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.04''', NULL, + '(296.04) Bipolar I disorder, single manic episode, severe, specified as with psychotic behavior', '(296.04) Bipolar I disorder, single manic episode, severe, specified as with psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.05) Bipolar I disorder, single manic episode, in partial or unspecified remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.05) Bipolar I disorder, single manic episode, in partial or unspecified remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.05''', NULL, + '(296.05) Bipolar I disorder, single manic episode, in partial or unspecified remission', '(296.05) Bipolar I disorder, single manic episode, in partial or unspecified remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.06) Bipolar I disorder, single manic episode, in full remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Bipolar I disorder, single manic episode (296.0)\(296.06) Bipolar I disorder, single manic episode, in full remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.06''', NULL, + '(296.06) Bipolar I disorder, single manic episode, in full remission', '(296.06) Bipolar I disorder, single manic episode, in full remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.3''', NULL, + 'Major depressive disorder, recurrent episode (296.3)', 'Major depressive disorder, recurrent episode (296.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.30) Major depressive affective disorder, recurrent episode, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.30) Major depressive affective disorder, recurrent episode, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.30''', NULL, + '(296.30) Major depressive affective disorder, recurrent episode, unspecified', '(296.30) Major depressive affective disorder, recurrent episode, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.31) Major depressive affective disorder, recurrent episode, mild\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.31) Major depressive affective disorder, recurrent episode, mild\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.31''', NULL, + '(296.31) Major depressive affective disorder, recurrent episode, mild', '(296.31) Major depressive affective disorder, recurrent episode, mild', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.32) Major depressive affective disorder, recurrent episode, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.32) Major depressive affective disorder, recurrent episode, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.32''', NULL, + '(296.32) Major depressive affective disorder, recurrent episode, moderate', '(296.32) Major depressive affective disorder, recurrent episode, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.33) Major depressive affective disorder, recurrent episode, severe, without mention of psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.33) Major depressive affective disorder, recurrent episode, severe, without mention of psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.33''', NULL, + '(296.33) Major depressive affective disorder, recurrent episode, severe, without mention of psychotic behavior', '(296.33) Major depressive affective disorder, recurrent episode, severe, without mention of psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.34) Major depressive affective disorder, recurrent episode, severe, specified as with psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.34) Major depressive affective disorder, recurrent episode, severe, specified as with psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.34''', NULL, + '(296.34) Major depressive affective disorder, recurrent episode, severe, specified as with psychotic behavior', '(296.34) Major depressive affective disorder, recurrent episode, severe, specified as with psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.35) Major depressive affective disorder, recurrent episode, in partial or unspecified remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.35) Major depressive affective disorder, recurrent episode, in partial or unspecified remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.35''', NULL, + '(296.35) Major depressive affective disorder, recurrent episode, in partial or unspecified remission', '(296.35) Major depressive affective disorder, recurrent episode, in partial or unspecified remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.36) Major depressive affective disorder, recurrent episode, in full remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, recurrent episode (296.3)\(296.36) Major depressive affective disorder, recurrent episode, in full remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.36''', NULL, + '(296.36) Major depressive affective disorder, recurrent episode, in full remission', '(296.36) Major depressive affective disorder, recurrent episode, in full remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.2''', NULL, + 'Major depressive disorder, single episode (296.2)', 'Major depressive disorder, single episode (296.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.20) Major depressive affective disorder, single episode, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.20) Major depressive affective disorder, single episode, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.20''', NULL, + '(296.20) Major depressive affective disorder, single episode, unspecified', '(296.20) Major depressive affective disorder, single episode, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.21) Major depressive affective disorder, single episode, mild\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.21) Major depressive affective disorder, single episode, mild\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.21''', NULL, + '(296.21) Major depressive affective disorder, single episode, mild', '(296.21) Major depressive affective disorder, single episode, mild', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.22) Major depressive affective disorder, single episode, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.22) Major depressive affective disorder, single episode, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.22''', NULL, + '(296.22) Major depressive affective disorder, single episode, moderate', '(296.22) Major depressive affective disorder, single episode, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.23) Major depressive affective disorder, single episode, severe, without mention of psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.23) Major depressive affective disorder, single episode, severe, without mention of psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.23''', NULL, + '(296.23) Major depressive affective disorder, single episode, severe, without mention of psychotic behavior', '(296.23) Major depressive affective disorder, single episode, severe, without mention of psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.24) Major depressive affective disorder, single episode, severe, specified as with psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.24) Major depressive affective disorder, single episode, severe, specified as with psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.24''', NULL, + '(296.24) Major depressive affective disorder, single episode, severe, specified as with psychotic behavior', '(296.24) Major depressive affective disorder, single episode, severe, specified as with psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.25) Major depressive affective disorder, single episode, in partial or unspecified remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.25) Major depressive affective disorder, single episode, in partial or unspecified remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.25''', NULL, + '(296.25) Major depressive affective disorder, single episode, in partial or unspecified remission', '(296.25) Major depressive affective disorder, single episode, in partial or unspecified remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.26) Major depressive affective disorder, single episode, in full remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Major depressive disorder, single episode (296.2)\(296.26) Major depressive affective disorder, single episode, in full remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.26''', NULL, + '(296.26) Major depressive affective disorder, single episode, in full remission', '(296.26) Major depressive affective disorder, single episode, in full remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.1''', NULL, + 'Manic disorder, recurrent episode (296.1)', 'Manic disorder, recurrent episode (296.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.10) Manic affective disorder, recurrent episode, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.10) Manic affective disorder, recurrent episode, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.10''', NULL, + '(296.10) Manic affective disorder, recurrent episode, unspecified', '(296.10) Manic affective disorder, recurrent episode, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.11) Manic affective disorder, recurrent episode, mild\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.11) Manic affective disorder, recurrent episode, mild\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.11''', NULL, + '(296.11) Manic affective disorder, recurrent episode, mild', '(296.11) Manic affective disorder, recurrent episode, mild', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.12) Manic affective disorder, recurrent episode, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.12) Manic affective disorder, recurrent episode, moderate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.12''', NULL, + '(296.12) Manic affective disorder, recurrent episode, moderate', '(296.12) Manic affective disorder, recurrent episode, moderate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.13) Manic affective disorder, recurrent episode, severe, without mention of psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.13) Manic affective disorder, recurrent episode, severe, without mention of psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.13''', NULL, + '(296.13) Manic affective disorder, recurrent episode, severe, without mention of psychotic behavior', '(296.13) Manic affective disorder, recurrent episode, severe, without mention of psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.14) Manic affective disorder, recurrent episode, severe, specified as with psychotic behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.14) Manic affective disorder, recurrent episode, severe, specified as with psychotic behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.14''', NULL, + '(296.14) Manic affective disorder, recurrent episode, severe, specified as with psychotic behavior', '(296.14) Manic affective disorder, recurrent episode, severe, specified as with psychotic behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.15) Manic affective disorder, recurrent episode, in partial or unspecified remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.15) Manic affective disorder, recurrent episode, in partial or unspecified remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.15''', NULL, + '(296.15) Manic affective disorder, recurrent episode, in partial or unspecified remission', '(296.15) Manic affective disorder, recurrent episode, in partial or unspecified remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.16) Manic affective disorder, recurrent episode, in full remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Manic disorder, recurrent episode (296.1)\(296.16) Manic affective disorder, recurrent episode, in full remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.16''', NULL, + '(296.16) Manic affective disorder, recurrent episode, in full remission', '(296.16) Manic affective disorder, recurrent episode, in full remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.8''', NULL, + 'Other and unspecified bipolar disorders (296.8)', 'Other and unspecified bipolar disorders (296.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\(296.80) Bipolar disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\(296.80) Bipolar disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.80''', NULL, + '(296.80) Bipolar disorder, unspecified', '(296.80) Bipolar disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\(296.81) Atypical manic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\(296.81) Atypical manic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.81''', NULL, + '(296.81) Atypical manic disorder', '(296.81) Atypical manic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\(296.82) Atypical depressive disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\(296.82) Atypical depressive disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.82''', NULL, + '(296.82) Atypical depressive disorder', '(296.82) Atypical depressive disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\(296.89) Other bipolar disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified bipolar disorders (296.8)\(296.89) Other bipolar disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.89''', NULL, + '(296.89) Other bipolar disorders', '(296.89) Other bipolar disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified episodic mood disorder (296.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified episodic mood disorder (296.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.9''', NULL, + 'Other and unspecified episodic mood disorder (296.9)', 'Other and unspecified episodic mood disorder (296.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified episodic mood disorder (296.9)\(296.90) Unspecified episodic mood disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified episodic mood disorder (296.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified episodic mood disorder (296.9)\(296.90) Unspecified episodic mood disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.90''', NULL, + '(296.90) Unspecified episodic mood disorder', '(296.90) Unspecified episodic mood disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified episodic mood disorder (296.9)\(296.99) Other specified episodic mood disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified episodic mood disorder (296.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Episodic mood disorders (296)\Other and unspecified episodic mood disorder (296.9)\(296.99) Other specified episodic mood disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''296.99''', NULL, + '(296.99) Other specified episodic mood disorder', '(296.99) Other specified episodic mood disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''298''', NULL, + 'Other nonorganic psychoses (298)', 'Other nonorganic psychoses (298)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.0) Depressive type psychosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.0) Depressive type psychosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''298.0''', NULL, + '(298.0) Depressive type psychosis', '(298.0) Depressive type psychosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.1) Excitative type psychosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.1) Excitative type psychosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''298.1''', NULL, + '(298.1) Excitative type psychosis', '(298.1) Excitative type psychosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.2) Reactive confusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.2) Reactive confusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''298.2''', NULL, + '(298.2) Reactive confusion', '(298.2) Reactive confusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.3) Acute paranoid reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.3) Acute paranoid reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''298.3''', NULL, + '(298.3) Acute paranoid reaction', '(298.3) Acute paranoid reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.4) Psychogenic paranoid psychosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.4) Psychogenic paranoid psychosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''298.4''', NULL, + '(298.4) Psychogenic paranoid psychosis', '(298.4) Psychogenic paranoid psychosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.8) Other and unspecified reactive psychosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.8) Other and unspecified reactive psychosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''298.8''', NULL, + '(298.8) Other and unspecified reactive psychosis', '(298.8) Other and unspecified reactive psychosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.9) Unspecified psychosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Other nonorganic psychoses (298)\(298.9) Unspecified psychosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''298.9''', NULL, + '(298.9) Unspecified psychosis', '(298.9) Unspecified psychosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''Delusional disorders) (297''', NULL, + 'Paranoid states (Delusional disorders) (297)', 'Paranoid states (Delusional disorders) (297)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.0) Paranoid state, simple\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.0) Paranoid state, simple\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''297.0''', NULL, + '(297.0) Paranoid state, simple', '(297.0) Paranoid state, simple', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.1) Delusional disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.1) Delusional disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''297.1''', NULL, + '(297.1) Delusional disorder', '(297.1) Delusional disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.2) Paraphrenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.2) Paraphrenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''297.2''', NULL, + '(297.2) Paraphrenia', '(297.2) Paraphrenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.3) Shared psychotic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.3) Shared psychotic disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''297.3''', NULL, + '(297.3) Shared psychotic disorder', '(297.3) Shared psychotic disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.8) Other specified paranoid states\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.8) Other specified paranoid states\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''297.8''', NULL, + '(297.8) Other specified paranoid states', '(297.8) Other specified paranoid states', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.9) Unspecified paranoid state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Paranoid states (Delusional disorders) (297)\(297.9) Unspecified paranoid state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''297.9''', NULL, + '(297.9) Unspecified paranoid state', '(297.9) Unspecified paranoid state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299''', NULL, + 'Pervasive developmental disorders (299)', 'Pervasive developmental disorders (299)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Autistic disorder (299.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Autistic disorder (299.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.0''', NULL, + 'Autistic disorder (299.0)', 'Autistic disorder (299.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Autistic disorder (299.0)\(299.00) Autistic disorder, current or active state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Autistic disorder (299.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Autistic disorder (299.0)\(299.00) Autistic disorder, current or active state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.00''', NULL, + '(299.00) Autistic disorder, current or active state', '(299.00) Autistic disorder, current or active state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Autistic disorder (299.0)\(299.01) Autistic disorder, residual state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Autistic disorder (299.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Autistic disorder (299.0)\(299.01) Autistic disorder, residual state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.01''', NULL, + '(299.01) Autistic disorder, residual state', '(299.01) Autistic disorder, residual state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Childhood disintegrative disorder (299.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Childhood disintegrative disorder (299.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.1''', NULL, + 'Childhood disintegrative disorder (299.1)', 'Childhood disintegrative disorder (299.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Childhood disintegrative disorder (299.1)\(299.10) Childhood disintegrative disorder, current or active state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Childhood disintegrative disorder (299.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Childhood disintegrative disorder (299.1)\(299.10) Childhood disintegrative disorder, current or active state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.10''', NULL, + '(299.10) Childhood disintegrative disorder, current or active state', '(299.10) Childhood disintegrative disorder, current or active state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Childhood disintegrative disorder (299.1)\(299.11) Childhood disintegrative disorder, residual state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Childhood disintegrative disorder (299.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Childhood disintegrative disorder (299.1)\(299.11) Childhood disintegrative disorder, residual state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.11''', NULL, + '(299.11) Childhood disintegrative disorder, residual state', '(299.11) Childhood disintegrative disorder, residual state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Other specified pervasive developmental disorders (299.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Other specified pervasive developmental disorders (299.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.8''', NULL, + 'Other specified pervasive developmental disorders (299.8)', 'Other specified pervasive developmental disorders (299.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Other specified pervasive developmental disorders (299.8)\(299.80) Other specified pervasive developmental disorders, current or active state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Other specified pervasive developmental disorders (299.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Other specified pervasive developmental disorders (299.8)\(299.80) Other specified pervasive developmental disorders, current or active state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.80''', NULL, + '(299.80) Other specified pervasive developmental disorders, current or active state', '(299.80) Other specified pervasive developmental disorders, current or active state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Other specified pervasive developmental disorders (299.8)\(299.81) Other specified pervasive developmental disorders, residual state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Other specified pervasive developmental disorders (299.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Other specified pervasive developmental disorders (299.8)\(299.81) Other specified pervasive developmental disorders, residual state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.81''', NULL, + '(299.81) Other specified pervasive developmental disorders, residual state', '(299.81) Other specified pervasive developmental disorders, residual state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Unspecified pervasive developmental disorder (299.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Unspecified pervasive developmental disorder (299.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.9''', NULL, + 'Unspecified pervasive developmental disorder (299.9)', 'Unspecified pervasive developmental disorder (299.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Unspecified pervasive developmental disorder (299.9)\(299.90) Unspecified pervasive developmental disorder, current or active state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Unspecified pervasive developmental disorder (299.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Unspecified pervasive developmental disorder (299.9)\(299.90) Unspecified pervasive developmental disorder, current or active state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.90''', NULL, + '(299.90) Unspecified pervasive developmental disorder, current or active state', '(299.90) Unspecified pervasive developmental disorder, current or active state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Unspecified pervasive developmental disorder (299.9)\(299.91) Unspecified pervasive developmental disorder, residual state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Unspecified pervasive developmental disorder (299.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Pervasive developmental disorders (299)\Unspecified pervasive developmental disorder (299.9)\(299.91) Unspecified pervasive developmental disorder, residual state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''299.91''', NULL, + '(299.91) Unspecified pervasive developmental disorder, residual state', '(299.91) Unspecified pervasive developmental disorder, residual state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295''', NULL, + 'Schizophrenic disorders (295)', 'Schizophrenic disorders (295)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.2''', NULL, + 'Catatonic type schizophrenia (295.2)', 'Catatonic type schizophrenia (295.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.20) Catatonic type schizophrenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.20) Catatonic type schizophrenia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.20''', NULL, + '(295.20) Catatonic type schizophrenia, unspecified', '(295.20) Catatonic type schizophrenia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.21) Catatonic type schizophrenia, subchronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.21) Catatonic type schizophrenia, subchronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.21''', NULL, + '(295.21) Catatonic type schizophrenia, subchronic', '(295.21) Catatonic type schizophrenia, subchronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.22) Catatonic type schizophrenia, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.22) Catatonic type schizophrenia, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.22''', NULL, + '(295.22) Catatonic type schizophrenia, chronic', '(295.22) Catatonic type schizophrenia, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.23) Catatonic type schizophrenia, subchronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.23) Catatonic type schizophrenia, subchronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.23''', NULL, + '(295.23) Catatonic type schizophrenia, subchronic with acute exacerbation', '(295.23) Catatonic type schizophrenia, subchronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.24) Catatonic type schizophrenia, chronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.24) Catatonic type schizophrenia, chronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.24''', NULL, + '(295.24) Catatonic type schizophrenia, chronic with acute exacerbation', '(295.24) Catatonic type schizophrenia, chronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.25) Catatonic type schizophrenia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Catatonic type schizophrenia (295.2)\(295.25) Catatonic type schizophrenia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.25''', NULL, + '(295.25) Catatonic type schizophrenia, in remission', '(295.25) Catatonic type schizophrenia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.1''', NULL, + 'Disorganized type schizophrenia (295.1)', 'Disorganized type schizophrenia (295.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.10) Disorganized type schizophrenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.10) Disorganized type schizophrenia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.10''', NULL, + '(295.10) Disorganized type schizophrenia, unspecified', '(295.10) Disorganized type schizophrenia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.11) Disorganized type schizophrenia, subchronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.11) Disorganized type schizophrenia, subchronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.11''', NULL, + '(295.11) Disorganized type schizophrenia, subchronic', '(295.11) Disorganized type schizophrenia, subchronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.12) Disorganized type schizophrenia, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.12) Disorganized type schizophrenia, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.12''', NULL, + '(295.12) Disorganized type schizophrenia, chronic', '(295.12) Disorganized type schizophrenia, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.13) Disorganized type schizophrenia, subchronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.13) Disorganized type schizophrenia, subchronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.13''', NULL, + '(295.13) Disorganized type schizophrenia, subchronic with acute exacerbation', '(295.13) Disorganized type schizophrenia, subchronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.14) Disorganized type schizophrenia, chronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.14) Disorganized type schizophrenia, chronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.14''', NULL, + '(295.14) Disorganized type schizophrenia, chronic with acute exacerbation', '(295.14) Disorganized type schizophrenia, chronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.15) Disorganized type schizophrenia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Disorganized type schizophrenia (295.1)\(295.15) Disorganized type schizophrenia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.15''', NULL, + '(295.15) Disorganized type schizophrenia, in remission', '(295.15) Disorganized type schizophrenia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.5''', NULL, + 'Latent schizophrenia (295.5)', 'Latent schizophrenia (295.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.50) Latent schizophrenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.50) Latent schizophrenia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.50''', NULL, + '(295.50) Latent schizophrenia, unspecified', '(295.50) Latent schizophrenia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.51) Latent schizophrenia, subchronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.51) Latent schizophrenia, subchronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.51''', NULL, + '(295.51) Latent schizophrenia, subchronic', '(295.51) Latent schizophrenia, subchronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.52) Latent schizophrenia, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.52) Latent schizophrenia, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.52''', NULL, + '(295.52) Latent schizophrenia, chronic', '(295.52) Latent schizophrenia, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.53) Latent schizophrenia, subchronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.53) Latent schizophrenia, subchronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.53''', NULL, + '(295.53) Latent schizophrenia, subchronic with acute exacerbation', '(295.53) Latent schizophrenia, subchronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.54) Latent schizophrenia, chronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.54) Latent schizophrenia, chronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.54''', NULL, + '(295.54) Latent schizophrenia, chronic with acute exacerbation', '(295.54) Latent schizophrenia, chronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.55) Latent schizophrenia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Latent schizophrenia (295.5)\(295.55) Latent schizophrenia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.55''', NULL, + '(295.55) Latent schizophrenia, in remission', '(295.55) Latent schizophrenia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.8''', NULL, + 'Other specified types of schizophrenia (295.8)', 'Other specified types of schizophrenia (295.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.80) Other specified types of schizophrenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.80) Other specified types of schizophrenia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.80''', NULL, + '(295.80) Other specified types of schizophrenia, unspecified', '(295.80) Other specified types of schizophrenia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.81) Other specified types of schizophrenia, subchronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.81) Other specified types of schizophrenia, subchronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.81''', NULL, + '(295.81) Other specified types of schizophrenia, subchronic', '(295.81) Other specified types of schizophrenia, subchronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.82) Other specified types of schizophrenia, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.82) Other specified types of schizophrenia, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.82''', NULL, + '(295.82) Other specified types of schizophrenia, chronic', '(295.82) Other specified types of schizophrenia, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.83) Other specified types of schizophrenia, subchronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.83) Other specified types of schizophrenia, subchronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.83''', NULL, + '(295.83) Other specified types of schizophrenia, subchronic with acute exacerbation', '(295.83) Other specified types of schizophrenia, subchronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.84) Other specified types of schizophrenia, chronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.84) Other specified types of schizophrenia, chronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.84''', NULL, + '(295.84) Other specified types of schizophrenia, chronic with acute exacerbation', '(295.84) Other specified types of schizophrenia, chronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.85) Other specified types of schizophrenia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Other specified types of schizophrenia (295.8)\(295.85) Other specified types of schizophrenia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.85''', NULL, + '(295.85) Other specified types of schizophrenia, in remission', '(295.85) Other specified types of schizophrenia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.3''', NULL, + 'Paranoid type schizophrenia (295.3)', 'Paranoid type schizophrenia (295.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.30) Paranoid type schizophrenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.30) Paranoid type schizophrenia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.30''', NULL, + '(295.30) Paranoid type schizophrenia, unspecified', '(295.30) Paranoid type schizophrenia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.31) Paranoid type schizophrenia, subchronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.31) Paranoid type schizophrenia, subchronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.31''', NULL, + '(295.31) Paranoid type schizophrenia, subchronic', '(295.31) Paranoid type schizophrenia, subchronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.32) Paranoid type schizophrenia, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.32) Paranoid type schizophrenia, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.32''', NULL, + '(295.32) Paranoid type schizophrenia, chronic', '(295.32) Paranoid type schizophrenia, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.33) Paranoid type schizophrenia, subchronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.33) Paranoid type schizophrenia, subchronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.33''', NULL, + '(295.33) Paranoid type schizophrenia, subchronic with acute exacerbation', '(295.33) Paranoid type schizophrenia, subchronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.34) Paranoid type schizophrenia, chronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.34) Paranoid type schizophrenia, chronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.34''', NULL, + '(295.34) Paranoid type schizophrenia, chronic with acute exacerbation', '(295.34) Paranoid type schizophrenia, chronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.35) Paranoid type schizophrenia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Paranoid type schizophrenia (295.3)\(295.35) Paranoid type schizophrenia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.35''', NULL, + '(295.35) Paranoid type schizophrenia, in remission', '(295.35) Paranoid type schizophrenia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.6''', NULL, + 'Residual type schizophrenic disorders (295.6)', 'Residual type schizophrenic disorders (295.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.60) Schizophrenic disorders, residual type, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.60) Schizophrenic disorders, residual type, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.60''', NULL, + '(295.60) Schizophrenic disorders, residual type, unspecified', '(295.60) Schizophrenic disorders, residual type, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.61) Schizophrenic disorders, residual type, subchronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.61) Schizophrenic disorders, residual type, subchronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.61''', NULL, + '(295.61) Schizophrenic disorders, residual type, subchronic', '(295.61) Schizophrenic disorders, residual type, subchronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.62) Schizophrenic disorders, residual type, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.62) Schizophrenic disorders, residual type, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.62''', NULL, + '(295.62) Schizophrenic disorders, residual type, chronic', '(295.62) Schizophrenic disorders, residual type, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.63) Schizophrenic disorders, residual type, subchronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.63) Schizophrenic disorders, residual type, subchronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.63''', NULL, + '(295.63) Schizophrenic disorders, residual type, subchronic with acute exacerbation', '(295.63) Schizophrenic disorders, residual type, subchronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.64) Schizophrenic disorders, residual type, chronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.64) Schizophrenic disorders, residual type, chronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.64''', NULL, + '(295.64) Schizophrenic disorders, residual type, chronic with acute exacerbation', '(295.64) Schizophrenic disorders, residual type, chronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.65) Schizophrenic disorders, residual type, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Residual type schizophrenic disorders (295.6)\(295.65) Schizophrenic disorders, residual type, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.65''', NULL, + '(295.65) Schizophrenic disorders, residual type, in remission', '(295.65) Schizophrenic disorders, residual type, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.7''', NULL, + 'Schizoaffective disorder (295.7)', 'Schizoaffective disorder (295.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.70) Schizoaffective disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.70) Schizoaffective disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.70''', NULL, + '(295.70) Schizoaffective disorder, unspecified', '(295.70) Schizoaffective disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.71) Schizoaffective disorder, subchronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.71) Schizoaffective disorder, subchronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.71''', NULL, + '(295.71) Schizoaffective disorder, subchronic', '(295.71) Schizoaffective disorder, subchronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.72) Schizoaffective disorder, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.72) Schizoaffective disorder, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.72''', NULL, + '(295.72) Schizoaffective disorder, chronic', '(295.72) Schizoaffective disorder, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.73) Schizoaffective disorder, subchronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.73) Schizoaffective disorder, subchronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.73''', NULL, + '(295.73) Schizoaffective disorder, subchronic with acute exacerbation', '(295.73) Schizoaffective disorder, subchronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.74) Schizoaffective disorder, chronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.74) Schizoaffective disorder, chronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.74''', NULL, + '(295.74) Schizoaffective disorder, chronic with acute exacerbation', '(295.74) Schizoaffective disorder, chronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.75) Schizoaffective disorder, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizoaffective disorder (295.7)\(295.75) Schizoaffective disorder, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.75''', NULL, + '(295.75) Schizoaffective disorder, in remission', '(295.75) Schizoaffective disorder, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.4''', NULL, + 'Schizophreniform disorder (295.4)', 'Schizophreniform disorder (295.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.40) Schizophreniform disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.40) Schizophreniform disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.40''', NULL, + '(295.40) Schizophreniform disorder, unspecified', '(295.40) Schizophreniform disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.41) Schizophreniform disorder, subchronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.41) Schizophreniform disorder, subchronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.41''', NULL, + '(295.41) Schizophreniform disorder, subchronic', '(295.41) Schizophreniform disorder, subchronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.42) Schizophreniform disorder, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.42) Schizophreniform disorder, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.42''', NULL, + '(295.42) Schizophreniform disorder, chronic', '(295.42) Schizophreniform disorder, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.43) Schizophreniform disorder, subchronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.43) Schizophreniform disorder, subchronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.43''', NULL, + '(295.43) Schizophreniform disorder, subchronic with acute exacerbation', '(295.43) Schizophreniform disorder, subchronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.44) Schizophreniform disorder, chronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.44) Schizophreniform disorder, chronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.44''', NULL, + '(295.44) Schizophreniform disorder, chronic with acute exacerbation', '(295.44) Schizophreniform disorder, chronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.45) Schizophreniform disorder, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Schizophreniform disorder (295.4)\(295.45) Schizophreniform disorder, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.45''', NULL, + '(295.45) Schizophreniform disorder, in remission', '(295.45) Schizophreniform disorder, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.0''', NULL, + 'Simple type schizophrenia (295.0)', 'Simple type schizophrenia (295.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.00) Simple type schizophrenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.00) Simple type schizophrenia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.00''', NULL, + '(295.00) Simple type schizophrenia, unspecified', '(295.00) Simple type schizophrenia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.01) Simple type schizophrenia, subchronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.01) Simple type schizophrenia, subchronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.01''', NULL, + '(295.01) Simple type schizophrenia, subchronic', '(295.01) Simple type schizophrenia, subchronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.02) Simple type schizophrenia, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.02) Simple type schizophrenia, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.02''', NULL, + '(295.02) Simple type schizophrenia, chronic', '(295.02) Simple type schizophrenia, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.03) Simple type schizophrenia, subchronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.03) Simple type schizophrenia, subchronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.03''', NULL, + '(295.03) Simple type schizophrenia, subchronic with acute exacerbation', '(295.03) Simple type schizophrenia, subchronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.04) Simple type schizophrenia, chronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.04) Simple type schizophrenia, chronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.04''', NULL, + '(295.04) Simple type schizophrenia, chronic with acute exacerbation', '(295.04) Simple type schizophrenia, chronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.05) Simple type schizophrenia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Simple type schizophrenia (295.0)\(295.05) Simple type schizophrenia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.05''', NULL, + '(295.05) Simple type schizophrenia, in remission', '(295.05) Simple type schizophrenia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.9''', NULL, + 'Unspecified schizophrenia (295.9)', 'Unspecified schizophrenia (295.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.90) Unspecified schizophrenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.90) Unspecified schizophrenia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.90''', NULL, + '(295.90) Unspecified schizophrenia, unspecified', '(295.90) Unspecified schizophrenia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.91) Unspecified schizophrenia, subchronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.91) Unspecified schizophrenia, subchronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.91''', NULL, + '(295.91) Unspecified schizophrenia, subchronic', '(295.91) Unspecified schizophrenia, subchronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.92) Unspecified schizophrenia, chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.92) Unspecified schizophrenia, chronic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.92''', NULL, + '(295.92) Unspecified schizophrenia, chronic', '(295.92) Unspecified schizophrenia, chronic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.93) Unspecified schizophrenia, subchronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.93) Unspecified schizophrenia, subchronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.93''', NULL, + '(295.93) Unspecified schizophrenia, subchronic with acute exacerbation', '(295.93) Unspecified schizophrenia, subchronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.94) Unspecified schizophrenia, chronic with acute exacerbation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.94) Unspecified schizophrenia, chronic with acute exacerbation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.94''', NULL, + '(295.94) Unspecified schizophrenia, chronic with acute exacerbation', '(295.94) Unspecified schizophrenia, chronic with acute exacerbation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.95) Unspecified schizophrenia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Mental, behavioral and neurodevelopmental disorders (290-319.99)\Psychoses (290-299.99)\OTHER PSYCHOSES (295-299.99)\Schizophrenic disorders (295)\Unspecified schizophrenia (295.9)\(295.95) Unspecified schizophrenia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''295.95''', NULL, + '(295.95) Unspecified schizophrenia, in remission', '(295.95) Unspecified schizophrenia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''140'' AND ''239.99''', NULL, + 'Neoplasms (140-239.99)', 'Neoplasms (140-239.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''210'' AND ''229.99''', NULL, + 'Benign neoplasms (210-229.99)', 'Benign neoplasms (210-229.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\(217) Benign neoplasm of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\(217) Benign neoplasm of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''217''', NULL, + '(217) Benign neoplasm of breast', '(217) Benign neoplasm of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\(220) Benign neoplasm of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\(220) Benign neoplasm of ovary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''220''', NULL, + '(220) Benign neoplasm of ovary', '(220) Benign neoplasm of ovary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\(226) Benign neoplasm of thyroid glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\(226) Benign neoplasm of thyroid glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''226''', NULL, + '(226) Benign neoplasm of thyroid glands', '(226) Benign neoplasm of thyroid glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''213''', NULL, + 'Benign neoplasm of bone and articular cartilage (213)', 'Benign neoplasm of bone and articular cartilage (213)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.0) Benign neoplasm of bones of skull and face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.0) Benign neoplasm of bones of skull and face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''213.0''', NULL, + '(213.0) Benign neoplasm of bones of skull and face', '(213.0) Benign neoplasm of bones of skull and face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.1) Benign neoplasm of lower jaw bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.1) Benign neoplasm of lower jaw bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''213.1''', NULL, + '(213.1) Benign neoplasm of lower jaw bone', '(213.1) Benign neoplasm of lower jaw bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.2) Benign neoplasm of vertebral column, excluding sacrum and coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.2) Benign neoplasm of vertebral column, excluding sacrum and coccyx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''213.2''', NULL, + '(213.2) Benign neoplasm of vertebral column, excluding sacrum and coccyx', '(213.2) Benign neoplasm of vertebral column, excluding sacrum and coccyx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.3) Benign neoplasm of ribs, sternum, and clavicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.3) Benign neoplasm of ribs, sternum, and clavicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''213.3''', NULL, + '(213.3) Benign neoplasm of ribs, sternum, and clavicle', '(213.3) Benign neoplasm of ribs, sternum, and clavicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.4) Benign neoplasm of scapula and long bones of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.4) Benign neoplasm of scapula and long bones of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''213.4''', NULL, + '(213.4) Benign neoplasm of scapula and long bones of upper limb', '(213.4) Benign neoplasm of scapula and long bones of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.5) Benign neoplasm of short bones of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.5) Benign neoplasm of short bones of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''213.5''', NULL, + '(213.5) Benign neoplasm of short bones of upper limb', '(213.5) Benign neoplasm of short bones of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.6) Benign neoplasm of pelvic bones, sacrum, and coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.6) Benign neoplasm of pelvic bones, sacrum, and coccyx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''213.6''', NULL, + '(213.6) Benign neoplasm of pelvic bones, sacrum, and coccyx', '(213.6) Benign neoplasm of pelvic bones, sacrum, and coccyx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.7) Benign neoplasm of long bones of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.7) Benign neoplasm of long bones of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''213.7''', NULL, + '(213.7) Benign neoplasm of long bones of lower limb', '(213.7) Benign neoplasm of long bones of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.8) Benign neoplasm of short bones of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.8) Benign neoplasm of short bones of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''213.8''', NULL, + '(213.8) Benign neoplasm of short bones of lower limb', '(213.8) Benign neoplasm of short bones of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.9) Benign neoplasm of bone and articular cartilage, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of bone and articular cartilage (213)\(213.9) Benign neoplasm of bone and articular cartilage, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''213.9''', NULL, + '(213.9) Benign neoplasm of bone and articular cartilage, site unspecified', '(213.9) Benign neoplasm of bone and articular cartilage, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''225''', NULL, + 'Benign neoplasm of brain and other parts of nervous system (225)', 'Benign neoplasm of brain and other parts of nervous system (225)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.0) Benign neoplasm of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.0) Benign neoplasm of brain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''225.0''', NULL, + '(225.0) Benign neoplasm of brain', '(225.0) Benign neoplasm of brain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.1) Benign neoplasm of cranial nerves\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.1) Benign neoplasm of cranial nerves\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''225.1''', NULL, + '(225.1) Benign neoplasm of cranial nerves', '(225.1) Benign neoplasm of cranial nerves', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.2) Benign neoplasm of cerebral meninges\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.2) Benign neoplasm of cerebral meninges\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''225.2''', NULL, + '(225.2) Benign neoplasm of cerebral meninges', '(225.2) Benign neoplasm of cerebral meninges', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.3) Benign neoplasm of spinal cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.3) Benign neoplasm of spinal cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''225.3''', NULL, + '(225.3) Benign neoplasm of spinal cord', '(225.3) Benign neoplasm of spinal cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.4) Benign neoplasm of spinal meninges\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.4) Benign neoplasm of spinal meninges\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''225.4''', NULL, + '(225.4) Benign neoplasm of spinal meninges', '(225.4) Benign neoplasm of spinal meninges', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.8) Benign neoplasm of other specified sites of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.8) Benign neoplasm of other specified sites of nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''225.8''', NULL, + '(225.8) Benign neoplasm of other specified sites of nervous system', '(225.8) Benign neoplasm of other specified sites of nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.9) Benign neoplasm of nervous system, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of brain and other parts of nervous system (225)\(225.9) Benign neoplasm of nervous system, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''225.9''', NULL, + '(225.9) Benign neoplasm of nervous system, part unspecified', '(225.9) Benign neoplasm of nervous system, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''224''', NULL, + 'Benign neoplasm of eye (224)', 'Benign neoplasm of eye (224)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.0) Benign neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.0) Benign neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''224.0''', NULL, + '(224.0) Benign neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid', '(224.0) Benign neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.1) Benign neoplasm of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.1) Benign neoplasm of orbit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''224.1''', NULL, + '(224.1) Benign neoplasm of orbit', '(224.1) Benign neoplasm of orbit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.2) Benign neoplasm of lacrimal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.2) Benign neoplasm of lacrimal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''224.2''', NULL, + '(224.2) Benign neoplasm of lacrimal gland', '(224.2) Benign neoplasm of lacrimal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.3) Benign neoplasm of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.3) Benign neoplasm of conjunctiva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''224.3''', NULL, + '(224.3) Benign neoplasm of conjunctiva', '(224.3) Benign neoplasm of conjunctiva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.4) Benign neoplasm of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.4) Benign neoplasm of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''224.4''', NULL, + '(224.4) Benign neoplasm of cornea', '(224.4) Benign neoplasm of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.5) Benign neoplasm of retina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.5) Benign neoplasm of retina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''224.5''', NULL, + '(224.5) Benign neoplasm of retina', '(224.5) Benign neoplasm of retina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.6) Benign neoplasm of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.6) Benign neoplasm of choroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''224.6''', NULL, + '(224.6) Benign neoplasm of choroid', '(224.6) Benign neoplasm of choroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.7) Benign neoplasm of lacrimal duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.7) Benign neoplasm of lacrimal duct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''224.7''', NULL, + '(224.7) Benign neoplasm of lacrimal duct', '(224.7) Benign neoplasm of lacrimal duct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.8) Benign neoplasm of other specified parts of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.8) Benign neoplasm of other specified parts of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''224.8''', NULL, + '(224.8) Benign neoplasm of other specified parts of eye', '(224.8) Benign neoplasm of other specified parts of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.9) Benign neoplasm of eye, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of eye (224)\(224.9) Benign neoplasm of eye, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''224.9''', NULL, + '(224.9) Benign neoplasm of eye, part unspecified', '(224.9) Benign neoplasm of eye, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''223''', NULL, + 'Benign neoplasm of kidney and other urinary organs (223)', 'Benign neoplasm of kidney and other urinary organs (223)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\(223.0) Benign neoplasm of kidney, except pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\(223.0) Benign neoplasm of kidney, except pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''223.0''', NULL, + '(223.0) Benign neoplasm of kidney, except pelvis', '(223.0) Benign neoplasm of kidney, except pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\(223.1) Benign neoplasm of renal pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\(223.1) Benign neoplasm of renal pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''223.1''', NULL, + '(223.1) Benign neoplasm of renal pelvis', '(223.1) Benign neoplasm of renal pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\(223.2) Benign neoplasm of ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\(223.2) Benign neoplasm of ureter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''223.2''', NULL, + '(223.2) Benign neoplasm of ureter', '(223.2) Benign neoplasm of ureter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\(223.3) Benign neoplasm of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\(223.3) Benign neoplasm of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''223.3''', NULL, + '(223.3) Benign neoplasm of bladder', '(223.3) Benign neoplasm of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\(223.9) Benign neoplasm of urinary organ, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\(223.9) Benign neoplasm of urinary organ, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''223.9''', NULL, + '(223.9) Benign neoplasm of urinary organ, site unspecified', '(223.9) Benign neoplasm of urinary organ, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\Benign neoplasm of other specified sites of urinary organs (223.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\Benign neoplasm of other specified sites of urinary organs (223.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''223.8''', NULL, + 'Benign neoplasm of other specified sites of urinary organs (223.8)', 'Benign neoplasm of other specified sites of urinary organs (223.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\Benign neoplasm of other specified sites of urinary organs (223.8)\(223.81) Benign neoplasm of urethra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\Benign neoplasm of other specified sites of urinary organs (223.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\Benign neoplasm of other specified sites of urinary organs (223.8)\(223.81) Benign neoplasm of urethra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''223.81''', NULL, + '(223.81) Benign neoplasm of urethra', '(223.81) Benign neoplasm of urethra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\Benign neoplasm of other specified sites of urinary organs (223.8)\(223.89) Benign neoplasm of other specified sites of urinary organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\Benign neoplasm of other specified sites of urinary organs (223.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of kidney and other urinary organs (223)\Benign neoplasm of other specified sites of urinary organs (223.8)\(223.89) Benign neoplasm of other specified sites of urinary organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''223.89''', NULL, + '(223.89) Benign neoplasm of other specified sites of urinary organs', '(223.89) Benign neoplasm of other specified sites of urinary organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''210''', NULL, + 'Benign neoplasm of lip, oral cavity, and pharynx (210)', 'Benign neoplasm of lip, oral cavity, and pharynx (210)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.0) Benign neoplasm of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.0) Benign neoplasm of lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''210.0''', NULL, + '(210.0) Benign neoplasm of lip', '(210.0) Benign neoplasm of lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.1) Benign neoplasm of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.1) Benign neoplasm of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''210.1''', NULL, + '(210.1) Benign neoplasm of tongue', '(210.1) Benign neoplasm of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.2) Benign neoplasm of major salivary glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.2) Benign neoplasm of major salivary glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''210.2''', NULL, + '(210.2) Benign neoplasm of major salivary glands', '(210.2) Benign neoplasm of major salivary glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.3) Benign neoplasm of floor of mouth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.3) Benign neoplasm of floor of mouth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''210.3''', NULL, + '(210.3) Benign neoplasm of floor of mouth', '(210.3) Benign neoplasm of floor of mouth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.4) Benign neoplasm of other and unspecified parts of mouth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.4) Benign neoplasm of other and unspecified parts of mouth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''210.4''', NULL, + '(210.4) Benign neoplasm of other and unspecified parts of mouth', '(210.4) Benign neoplasm of other and unspecified parts of mouth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.5) Benign neoplasm of tonsil\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.5) Benign neoplasm of tonsil\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''210.5''', NULL, + '(210.5) Benign neoplasm of tonsil', '(210.5) Benign neoplasm of tonsil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.6) Benign neoplasm of other parts of oropharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.6) Benign neoplasm of other parts of oropharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''210.6''', NULL, + '(210.6) Benign neoplasm of other parts of oropharynx', '(210.6) Benign neoplasm of other parts of oropharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.7) Benign neoplasm of nasopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.7) Benign neoplasm of nasopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''210.7''', NULL, + '(210.7) Benign neoplasm of nasopharynx', '(210.7) Benign neoplasm of nasopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.8) Benign neoplasm of hypopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.8) Benign neoplasm of hypopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''210.8''', NULL, + '(210.8) Benign neoplasm of hypopharynx', '(210.8) Benign neoplasm of hypopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.9) Benign neoplasm of pharynx, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of lip, oral cavity, and pharynx (210)\(210.9) Benign neoplasm of pharynx, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''210.9''', NULL, + '(210.9) Benign neoplasm of pharynx, unspecified', '(210.9) Benign neoplasm of pharynx, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''222''', NULL, + 'Benign neoplasm of male genital organs (222)', 'Benign neoplasm of male genital organs (222)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.0) Benign neoplasm of testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.0) Benign neoplasm of testis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''222.0''', NULL, + '(222.0) Benign neoplasm of testis', '(222.0) Benign neoplasm of testis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.1) Benign neoplasm of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.1) Benign neoplasm of penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''222.1''', NULL, + '(222.1) Benign neoplasm of penis', '(222.1) Benign neoplasm of penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.2) Benign neoplasm of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.2) Benign neoplasm of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''222.2''', NULL, + '(222.2) Benign neoplasm of prostate', '(222.2) Benign neoplasm of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.3) Benign neoplasm of epididymis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.3) Benign neoplasm of epididymis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''222.3''', NULL, + '(222.3) Benign neoplasm of epididymis', '(222.3) Benign neoplasm of epididymis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.4) Benign neoplasm of scrotum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.4) Benign neoplasm of scrotum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''222.4''', NULL, + '(222.4) Benign neoplasm of scrotum', '(222.4) Benign neoplasm of scrotum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.8) Benign neoplasm of other specified sites of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.8) Benign neoplasm of other specified sites of male genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''222.8''', NULL, + '(222.8) Benign neoplasm of other specified sites of male genital organs', '(222.8) Benign neoplasm of other specified sites of male genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.9) Benign neoplasm of male genital organ, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of male genital organs (222)\(222.9) Benign neoplasm of male genital organ, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''222.9''', NULL, + '(222.9) Benign neoplasm of male genital organ, site unspecified', '(222.9) Benign neoplasm of male genital organ, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other and unspecified sites (229)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other and unspecified sites (229)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''229''', NULL, + 'Benign neoplasm of other and unspecified sites (229)', 'Benign neoplasm of other and unspecified sites (229)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other and unspecified sites (229)\(229.0) Benign neoplasm of lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other and unspecified sites (229)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other and unspecified sites (229)\(229.0) Benign neoplasm of lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''229.0''', NULL, + '(229.0) Benign neoplasm of lymph nodes', '(229.0) Benign neoplasm of lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other and unspecified sites (229)\(229.8) Benign neoplasm of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other and unspecified sites (229)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other and unspecified sites (229)\(229.8) Benign neoplasm of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''229.8''', NULL, + '(229.8) Benign neoplasm of other specified sites', '(229.8) Benign neoplasm of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other and unspecified sites (229)\(229.9) Benign neoplasm of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other and unspecified sites (229)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other and unspecified sites (229)\(229.9) Benign neoplasm of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''229.9''', NULL, + '(229.9) Benign neoplasm of unspecified site', '(229.9) Benign neoplasm of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''227''', NULL, + 'Benign neoplasm of other endocrine glands and related structures (227)', 'Benign neoplasm of other endocrine glands and related structures (227)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.0) Benign neoplasm of adrenal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.0) Benign neoplasm of adrenal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''227.0''', NULL, + '(227.0) Benign neoplasm of adrenal gland', '(227.0) Benign neoplasm of adrenal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.1) Benign neoplasm of parathyroid gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.1) Benign neoplasm of parathyroid gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''227.1''', NULL, + '(227.1) Benign neoplasm of parathyroid gland', '(227.1) Benign neoplasm of parathyroid gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.3) Benign neoplasm of pituitary gland and craniopharyngeal duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.3) Benign neoplasm of pituitary gland and craniopharyngeal duct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''227.3''', NULL, + '(227.3) Benign neoplasm of pituitary gland and craniopharyngeal duct', '(227.3) Benign neoplasm of pituitary gland and craniopharyngeal duct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.4) Benign neoplasm of pineal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.4) Benign neoplasm of pineal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''227.4''', NULL, + '(227.4) Benign neoplasm of pineal gland', '(227.4) Benign neoplasm of pineal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.5) Benign neoplasm of carotid body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.5) Benign neoplasm of carotid body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''227.5''', NULL, + '(227.5) Benign neoplasm of carotid body', '(227.5) Benign neoplasm of carotid body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.6) Benign neoplasm of aortic body and other paraganglia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.6) Benign neoplasm of aortic body and other paraganglia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''227.6''', NULL, + '(227.6) Benign neoplasm of aortic body and other paraganglia', '(227.6) Benign neoplasm of aortic body and other paraganglia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.8) Benign neoplasm of other endocrine glands and related structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.8) Benign neoplasm of other endocrine glands and related structures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''227.8''', NULL, + '(227.8) Benign neoplasm of other endocrine glands and related structures', '(227.8) Benign neoplasm of other endocrine glands and related structures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.9) Benign neoplasm of endocrine gland, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other endocrine glands and related structures (227)\(227.9) Benign neoplasm of endocrine gland, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''227.9''', NULL, + '(227.9) Benign neoplasm of endocrine gland, site unspecified', '(227.9) Benign neoplasm of endocrine gland, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''221''', NULL, + 'Benign neoplasm of other female genital organs (221)', 'Benign neoplasm of other female genital organs (221)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\(221.0) Benign neoplasm of fallopian tube and uterine ligaments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\(221.0) Benign neoplasm of fallopian tube and uterine ligaments\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''221.0''', NULL, + '(221.0) Benign neoplasm of fallopian tube and uterine ligaments', '(221.0) Benign neoplasm of fallopian tube and uterine ligaments', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\(221.1) Benign neoplasm of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\(221.1) Benign neoplasm of vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''221.1''', NULL, + '(221.1) Benign neoplasm of vagina', '(221.1) Benign neoplasm of vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\(221.2) Benign neoplasm of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\(221.2) Benign neoplasm of vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''221.2''', NULL, + '(221.2) Benign neoplasm of vulva', '(221.2) Benign neoplasm of vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\(221.8) Benign neoplasm of other specified sites of female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\(221.8) Benign neoplasm of other specified sites of female genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''221.8''', NULL, + '(221.8) Benign neoplasm of other specified sites of female genital organs', '(221.8) Benign neoplasm of other specified sites of female genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\(221.9) Benign neoplasm of female genital organ, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other female genital organs (221)\(221.9) Benign neoplasm of female genital organ, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''221.9''', NULL, + '(221.9) Benign neoplasm of female genital organ, site unspecified', '(221.9) Benign neoplasm of female genital organ, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''211''', NULL, + 'Benign neoplasm of other parts of digestive system (211)', 'Benign neoplasm of other parts of digestive system (211)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.0) Benign neoplasm of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.0) Benign neoplasm of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''211.0''', NULL, + '(211.0) Benign neoplasm of esophagus', '(211.0) Benign neoplasm of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.1) Benign neoplasm of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.1) Benign neoplasm of stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''211.1''', NULL, + '(211.1) Benign neoplasm of stomach', '(211.1) Benign neoplasm of stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.2) Benign neoplasm of duodenum, jejunum, and ileum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.2) Benign neoplasm of duodenum, jejunum, and ileum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''211.2''', NULL, + '(211.2) Benign neoplasm of duodenum, jejunum, and ileum', '(211.2) Benign neoplasm of duodenum, jejunum, and ileum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.3) Benign neoplasm of colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.3) Benign neoplasm of colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''211.3''', NULL, + '(211.3) Benign neoplasm of colon', '(211.3) Benign neoplasm of colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.4) Benign neoplasm of rectum and anal canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.4) Benign neoplasm of rectum and anal canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''211.4''', NULL, + '(211.4) Benign neoplasm of rectum and anal canal', '(211.4) Benign neoplasm of rectum and anal canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.5) Benign neoplasm of liver and biliary passages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.5) Benign neoplasm of liver and biliary passages\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''211.5''', NULL, + '(211.5) Benign neoplasm of liver and biliary passages', '(211.5) Benign neoplasm of liver and biliary passages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.6) Benign neoplasm of pancreas, except islets of Langerhans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.6) Benign neoplasm of pancreas, except islets of Langerhans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''211.6''', NULL, + '(211.6) Benign neoplasm of pancreas, except islets of Langerhans', '(211.6) Benign neoplasm of pancreas, except islets of Langerhans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.7) Benign neoplasm of islets of Langerhans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.7) Benign neoplasm of islets of Langerhans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''211.7''', NULL, + '(211.7) Benign neoplasm of islets of Langerhans', '(211.7) Benign neoplasm of islets of Langerhans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.8) Benign neoplasm of retroperitoneum and peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.8) Benign neoplasm of retroperitoneum and peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''211.8''', NULL, + '(211.8) Benign neoplasm of retroperitoneum and peritoneum', '(211.8) Benign neoplasm of retroperitoneum and peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.9) Benign neoplasm of other and unspecified site in the digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of other parts of digestive system (211)\(211.9) Benign neoplasm of other and unspecified site in the digestive system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''211.9''', NULL, + '(211.9) Benign neoplasm of other and unspecified site in the digestive system', '(211.9) Benign neoplasm of other and unspecified site in the digestive system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''212''', NULL, + 'Benign neoplasm of respiratory and intrathoracic organs (212)', 'Benign neoplasm of respiratory and intrathoracic organs (212)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.0) Benign neoplasm of nasal cavities, middle ear, and accessory sinuses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.0) Benign neoplasm of nasal cavities, middle ear, and accessory sinuses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''212.0''', NULL, + '(212.0) Benign neoplasm of nasal cavities, middle ear, and accessory sinuses', '(212.0) Benign neoplasm of nasal cavities, middle ear, and accessory sinuses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.1) Benign neoplasm of larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.1) Benign neoplasm of larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''212.1''', NULL, + '(212.1) Benign neoplasm of larynx', '(212.1) Benign neoplasm of larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.2) Benign neoplasm of trachea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.2) Benign neoplasm of trachea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''212.2''', NULL, + '(212.2) Benign neoplasm of trachea', '(212.2) Benign neoplasm of trachea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.3) Benign neoplasm of bronchus and lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.3) Benign neoplasm of bronchus and lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''212.3''', NULL, + '(212.3) Benign neoplasm of bronchus and lung', '(212.3) Benign neoplasm of bronchus and lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.4) Benign neoplasm of pleura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.4) Benign neoplasm of pleura\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''212.4''', NULL, + '(212.4) Benign neoplasm of pleura', '(212.4) Benign neoplasm of pleura', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.5) Benign neoplasm of mediastinum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.5) Benign neoplasm of mediastinum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''212.5''', NULL, + '(212.5) Benign neoplasm of mediastinum', '(212.5) Benign neoplasm of mediastinum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.6) Benign neoplasm of thymus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.6) Benign neoplasm of thymus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''212.6''', NULL, + '(212.6) Benign neoplasm of thymus', '(212.6) Benign neoplasm of thymus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.7) Benign neoplasm of heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.7) Benign neoplasm of heart\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''212.7''', NULL, + '(212.7) Benign neoplasm of heart', '(212.7) Benign neoplasm of heart', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.8) Benign neoplasm of other specified sites of respiratory and intrathoracic organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.8) Benign neoplasm of other specified sites of respiratory and intrathoracic organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''212.8''', NULL, + '(212.8) Benign neoplasm of other specified sites of respiratory and intrathoracic organs', '(212.8) Benign neoplasm of other specified sites of respiratory and intrathoracic organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.9) Benign neoplasm of respiratory and intrathoracic organs, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of respiratory and intrathoracic organs (212)\(212.9) Benign neoplasm of respiratory and intrathoracic organs, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''212.9''', NULL, + '(212.9) Benign neoplasm of respiratory and intrathoracic organs, site unspecified', '(212.9) Benign neoplasm of respiratory and intrathoracic organs, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''216''', NULL, + 'Benign neoplasm of skin (216)', 'Benign neoplasm of skin (216)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.0) Benign neoplasm of skin of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.0) Benign neoplasm of skin of lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''216.0''', NULL, + '(216.0) Benign neoplasm of skin of lip', '(216.0) Benign neoplasm of skin of lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.1) Benign neoplasm of eyelid, including canthus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.1) Benign neoplasm of eyelid, including canthus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''216.1''', NULL, + '(216.1) Benign neoplasm of eyelid, including canthus', '(216.1) Benign neoplasm of eyelid, including canthus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.2) Benign neoplasm of ear and external auditory canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.2) Benign neoplasm of ear and external auditory canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''216.2''', NULL, + '(216.2) Benign neoplasm of ear and external auditory canal', '(216.2) Benign neoplasm of ear and external auditory canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.3) Benign neoplasm of skin of other and unspecified parts of face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.3) Benign neoplasm of skin of other and unspecified parts of face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''216.3''', NULL, + '(216.3) Benign neoplasm of skin of other and unspecified parts of face', '(216.3) Benign neoplasm of skin of other and unspecified parts of face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.4) Benign neoplasm of scalp and skin of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.4) Benign neoplasm of scalp and skin of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''216.4''', NULL, + '(216.4) Benign neoplasm of scalp and skin of neck', '(216.4) Benign neoplasm of scalp and skin of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.5) Benign neoplasm of skin of trunk, except scrotum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.5) Benign neoplasm of skin of trunk, except scrotum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''216.5''', NULL, + '(216.5) Benign neoplasm of skin of trunk, except scrotum', '(216.5) Benign neoplasm of skin of trunk, except scrotum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.6) Benign neoplasm of skin of upper limb, including shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.6) Benign neoplasm of skin of upper limb, including shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''216.6''', NULL, + '(216.6) Benign neoplasm of skin of upper limb, including shoulder', '(216.6) Benign neoplasm of skin of upper limb, including shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.7) Benign neoplasm of skin of lower limb, including hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.7) Benign neoplasm of skin of lower limb, including hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''216.7''', NULL, + '(216.7) Benign neoplasm of skin of lower limb, including hip', '(216.7) Benign neoplasm of skin of lower limb, including hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.8) Benign neoplasm of other specified sites of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.8) Benign neoplasm of other specified sites of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''216.8''', NULL, + '(216.8) Benign neoplasm of other specified sites of skin', '(216.8) Benign neoplasm of other specified sites of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.9) Benign neoplasm of skin, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Benign neoplasm of skin (216)\(216.9) Benign neoplasm of skin, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''216.9''', NULL, + '(216.9) Benign neoplasm of skin, site unspecified', '(216.9) Benign neoplasm of skin, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''228''', NULL, + 'Hemangioma and lymphangioma, any site (228)', 'Hemangioma and lymphangioma, any site (228)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\(228.1) Lymphangioma, any site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\(228.1) Lymphangioma, any site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''228.1''', NULL, + '(228.1) Lymphangioma, any site', '(228.1) Lymphangioma, any site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''228.0''', NULL, + 'Hemangioma, any site (228.0)', 'Hemangioma, any site (228.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.00) Hemangioma of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.00) Hemangioma of unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''228.00''', NULL, + '(228.00) Hemangioma of unspecified site', '(228.00) Hemangioma of unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.01) Hemangioma of skin and subcutaneous tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.01) Hemangioma of skin and subcutaneous tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''228.01''', NULL, + '(228.01) Hemangioma of skin and subcutaneous tissue', '(228.01) Hemangioma of skin and subcutaneous tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.02) Hemangioma of intracranial structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.02) Hemangioma of intracranial structures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''228.02''', NULL, + '(228.02) Hemangioma of intracranial structures', '(228.02) Hemangioma of intracranial structures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.03) Hemangioma of retina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.03) Hemangioma of retina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''228.03''', NULL, + '(228.03) Hemangioma of retina', '(228.03) Hemangioma of retina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.04) Hemangioma of intra-abdominal structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.04) Hemangioma of intra-abdominal structures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''228.04''', NULL, + '(228.04) Hemangioma of intra-abdominal structures', '(228.04) Hemangioma of intra-abdominal structures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.09) Hemangioma of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Hemangioma and lymphangioma, any site (228)\Hemangioma, any site (228.0)\(228.09) Hemangioma of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''228.09''', NULL, + '(228.09) Hemangioma of other sites', '(228.09) Hemangioma of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''214''', NULL, + 'Lipoma (214)', 'Lipoma (214)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.0) Lipoma of skin and subcutaneous tissue of face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.0) Lipoma of skin and subcutaneous tissue of face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''214.0''', NULL, + '(214.0) Lipoma of skin and subcutaneous tissue of face', '(214.0) Lipoma of skin and subcutaneous tissue of face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.1) Lipoma of other skin and subcutaneous tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.1) Lipoma of other skin and subcutaneous tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''214.1''', NULL, + '(214.1) Lipoma of other skin and subcutaneous tissue', '(214.1) Lipoma of other skin and subcutaneous tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.2) Lipoma of intrathoracic organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.2) Lipoma of intrathoracic organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''214.2''', NULL, + '(214.2) Lipoma of intrathoracic organs', '(214.2) Lipoma of intrathoracic organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.3) Lipoma of intra-abdominal organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.3) Lipoma of intra-abdominal organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''214.3''', NULL, + '(214.3) Lipoma of intra-abdominal organs', '(214.3) Lipoma of intra-abdominal organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.4) Lipoma of spermatic cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.4) Lipoma of spermatic cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''214.4''', NULL, + '(214.4) Lipoma of spermatic cord', '(214.4) Lipoma of spermatic cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.8) Lipoma of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.8) Lipoma of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''214.8''', NULL, + '(214.8) Lipoma of other specified sites', '(214.8) Lipoma of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.9) Lipoma, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Lipoma (214)\(214.9) Lipoma, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''214.9''', NULL, + '(214.9) Lipoma, unspecified site', '(214.9) Lipoma, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''215''', NULL, + 'Other benign neoplasm of connective and other soft tissue (215)', 'Other benign neoplasm of connective and other soft tissue (215)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.0) Other benign neoplasm of connective and other soft tissue of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.0) Other benign neoplasm of connective and other soft tissue of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''215.0''', NULL, + '(215.0) Other benign neoplasm of connective and other soft tissue of head, face, and neck', '(215.0) Other benign neoplasm of connective and other soft tissue of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.2) Other benign neoplasm of connective and other soft tissue of upper limb, including shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.2) Other benign neoplasm of connective and other soft tissue of upper limb, including shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''215.2''', NULL, + '(215.2) Other benign neoplasm of connective and other soft tissue of upper limb, including shoulder', '(215.2) Other benign neoplasm of connective and other soft tissue of upper limb, including shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.3) Other benign neoplasm of connective and other soft tissue of lower limb, including hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.3) Other benign neoplasm of connective and other soft tissue of lower limb, including hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''215.3''', NULL, + '(215.3) Other benign neoplasm of connective and other soft tissue of lower limb, including hip', '(215.3) Other benign neoplasm of connective and other soft tissue of lower limb, including hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.4) Other benign neoplasm of connective and other soft tissue of thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.4) Other benign neoplasm of connective and other soft tissue of thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''215.4''', NULL, + '(215.4) Other benign neoplasm of connective and other soft tissue of thorax', '(215.4) Other benign neoplasm of connective and other soft tissue of thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.5) Other benign neoplasm of connective and other soft tissue of abdomen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.5) Other benign neoplasm of connective and other soft tissue of abdomen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''215.5''', NULL, + '(215.5) Other benign neoplasm of connective and other soft tissue of abdomen', '(215.5) Other benign neoplasm of connective and other soft tissue of abdomen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.6) Other benign neoplasm of connective and other soft tissue of pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.6) Other benign neoplasm of connective and other soft tissue of pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''215.6''', NULL, + '(215.6) Other benign neoplasm of connective and other soft tissue of pelvis', '(215.6) Other benign neoplasm of connective and other soft tissue of pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.7) Other benign neoplasm of connective and other soft tissue of trunk, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.7) Other benign neoplasm of connective and other soft tissue of trunk, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''215.7''', NULL, + '(215.7) Other benign neoplasm of connective and other soft tissue of trunk, unspecified', '(215.7) Other benign neoplasm of connective and other soft tissue of trunk, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.8) Other benign neoplasm of connective and other soft tissue of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.8) Other benign neoplasm of connective and other soft tissue of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''215.8''', NULL, + '(215.8) Other benign neoplasm of connective and other soft tissue of other specified sites', '(215.8) Other benign neoplasm of connective and other soft tissue of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.9) Other benign neoplasm of connective and other soft tissue, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of connective and other soft tissue (215)\(215.9) Other benign neoplasm of connective and other soft tissue, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''215.9''', NULL, + '(215.9) Other benign neoplasm of connective and other soft tissue, site unspecified', '(215.9) Other benign neoplasm of connective and other soft tissue, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''219''', NULL, + 'Other benign neoplasm of uterus (219)', 'Other benign neoplasm of uterus (219)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\(219.0) Benign neoplasm of cervix uteri\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\(219.0) Benign neoplasm of cervix uteri\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''219.0''', NULL, + '(219.0) Benign neoplasm of cervix uteri', '(219.0) Benign neoplasm of cervix uteri', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\(219.1) Benign neoplasm of corpus uteri\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\(219.1) Benign neoplasm of corpus uteri\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''219.1''', NULL, + '(219.1) Benign neoplasm of corpus uteri', '(219.1) Benign neoplasm of corpus uteri', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\(219.8) Benign neoplasm of other specified parts of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\(219.8) Benign neoplasm of other specified parts of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''219.8''', NULL, + '(219.8) Benign neoplasm of other specified parts of uterus', '(219.8) Benign neoplasm of other specified parts of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\(219.9) Benign neoplasm of uterus, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Other benign neoplasm of uterus (219)\(219.9) Benign neoplasm of uterus, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''219.9''', NULL, + '(219.9) Benign neoplasm of uterus, part unspecified', '(219.9) Benign neoplasm of uterus, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''218''', NULL, + 'Uterine leiomyoma (218)', 'Uterine leiomyoma (218)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\(218.0) Submucous leiomyoma of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\(218.0) Submucous leiomyoma of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''218.0''', NULL, + '(218.0) Submucous leiomyoma of uterus', '(218.0) Submucous leiomyoma of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\(218.1) Intramural leiomyoma of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\(218.1) Intramural leiomyoma of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''218.1''', NULL, + '(218.1) Intramural leiomyoma of uterus', '(218.1) Intramural leiomyoma of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\(218.2) Subserous leiomyoma of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\(218.2) Subserous leiomyoma of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''218.2''', NULL, + '(218.2) Subserous leiomyoma of uterus', '(218.2) Subserous leiomyoma of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\(218.9) Leiomyoma of uterus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Benign neoplasms (210-229.99)\Uterine leiomyoma (218)\(218.9) Leiomyoma of uterus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''218.9''', NULL, + '(218.9) Leiomyoma of uterus, unspecified', '(218.9) Leiomyoma of uterus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''230'' AND ''234.99''', NULL, + 'Carcinoma in situ (230-234.99)', 'Carcinoma in situ (230-234.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233''', NULL, + 'Carcinoma in situ of breast and genitourinary system (233)', 'Carcinoma in situ of breast and genitourinary system (233)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.0) Carcinoma in situ of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.0) Carcinoma in situ of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.0''', NULL, + '(233.0) Carcinoma in situ of breast', '(233.0) Carcinoma in situ of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.1) Carcinoma in situ of cervix uteri\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.1) Carcinoma in situ of cervix uteri\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.1''', NULL, + '(233.1) Carcinoma in situ of cervix uteri', '(233.1) Carcinoma in situ of cervix uteri', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.2) Carcinoma in situ of other and unspecified parts of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.2) Carcinoma in situ of other and unspecified parts of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.2''', NULL, + '(233.2) Carcinoma in situ of other and unspecified parts of uterus', '(233.2) Carcinoma in situ of other and unspecified parts of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.4) Carcinoma in situ of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.4) Carcinoma in situ of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.4''', NULL, + '(233.4) Carcinoma in situ of prostate', '(233.4) Carcinoma in situ of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.5) Carcinoma in situ of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.5) Carcinoma in situ of penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.5''', NULL, + '(233.5) Carcinoma in situ of penis', '(233.5) Carcinoma in situ of penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.6) Carcinoma in situ of other and unspecified male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.6) Carcinoma in situ of other and unspecified male genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.6''', NULL, + '(233.6) Carcinoma in situ of other and unspecified male genital organs', '(233.6) Carcinoma in situ of other and unspecified male genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.7) Carcinoma in situ of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.7) Carcinoma in situ of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.7''', NULL, + '(233.7) Carcinoma in situ of bladder', '(233.7) Carcinoma in situ of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.9) Carcinoma in situ of other and unspecified urinary organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\(233.9) Carcinoma in situ of other and unspecified urinary organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.9''', NULL, + '(233.9) Carcinoma in situ of other and unspecified urinary organs', '(233.9) Carcinoma in situ of other and unspecified urinary organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.3''', NULL, + 'Carcinoma in situ of other and unspecified female genital organs (233.3)', 'Carcinoma in situ of other and unspecified female genital organs (233.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\(233.30) Carcinoma in situ, unspecified female genital organ\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\(233.30) Carcinoma in situ, unspecified female genital organ\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.30''', NULL, + '(233.30) Carcinoma in situ, unspecified female genital organ', '(233.30) Carcinoma in situ, unspecified female genital organ', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\(233.31) Carcinoma in situ, vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\(233.31) Carcinoma in situ, vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.31''', NULL, + '(233.31) Carcinoma in situ, vagina', '(233.31) Carcinoma in situ, vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\(233.32) Carcinoma in situ, vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\(233.32) Carcinoma in situ, vulva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.32''', NULL, + '(233.32) Carcinoma in situ, vulva', '(233.32) Carcinoma in situ, vulva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\(233.39) Carcinoma in situ, other female genital organ\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of breast and genitourinary system (233)\Carcinoma in situ of other and unspecified female genital organs (233.3)\(233.39) Carcinoma in situ, other female genital organ\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''233.39''', NULL, + '(233.39) Carcinoma in situ, other female genital organ', '(233.39) Carcinoma in situ, other female genital organ', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''230''', NULL, + 'Carcinoma in situ of digestive organs (230)', 'Carcinoma in situ of digestive organs (230)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.0) Carcinoma in situ of lip, oral cavity, and pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.0) Carcinoma in situ of lip, oral cavity, and pharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''230.0''', NULL, + '(230.0) Carcinoma in situ of lip, oral cavity, and pharynx', '(230.0) Carcinoma in situ of lip, oral cavity, and pharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.1) Carcinoma in situ of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.1) Carcinoma in situ of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''230.1''', NULL, + '(230.1) Carcinoma in situ of esophagus', '(230.1) Carcinoma in situ of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.2) Carcinoma in situ of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.2) Carcinoma in situ of stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''230.2''', NULL, + '(230.2) Carcinoma in situ of stomach', '(230.2) Carcinoma in situ of stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.3) Carcinoma in situ of colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.3) Carcinoma in situ of colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''230.3''', NULL, + '(230.3) Carcinoma in situ of colon', '(230.3) Carcinoma in situ of colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.4) Carcinoma in situ of rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.4) Carcinoma in situ of rectum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''230.4''', NULL, + '(230.4) Carcinoma in situ of rectum', '(230.4) Carcinoma in situ of rectum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.5) Carcinoma in situ of anal canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.5) Carcinoma in situ of anal canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''230.5''', NULL, + '(230.5) Carcinoma in situ of anal canal', '(230.5) Carcinoma in situ of anal canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.6) Carcinoma in situ of anus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.6) Carcinoma in situ of anus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''230.6''', NULL, + '(230.6) Carcinoma in situ of anus, unspecified', '(230.6) Carcinoma in situ of anus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.7) Carcinoma in situ of other and unspecified parts of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.7) Carcinoma in situ of other and unspecified parts of intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''230.7''', NULL, + '(230.7) Carcinoma in situ of other and unspecified parts of intestine', '(230.7) Carcinoma in situ of other and unspecified parts of intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.8) Carcinoma in situ of liver and biliary system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.8) Carcinoma in situ of liver and biliary system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''230.8''', NULL, + '(230.8) Carcinoma in situ of liver and biliary system', '(230.8) Carcinoma in situ of liver and biliary system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.9) Carcinoma in situ of other and unspecified digestive organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of digestive organs (230)\(230.9) Carcinoma in situ of other and unspecified digestive organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''230.9''', NULL, + '(230.9) Carcinoma in situ of other and unspecified digestive organs', '(230.9) Carcinoma in situ of other and unspecified digestive organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of other and unspecified sites (234)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of other and unspecified sites (234)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''234''', NULL, + 'Carcinoma in situ of other and unspecified sites (234)', 'Carcinoma in situ of other and unspecified sites (234)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of other and unspecified sites (234)\(234.0) Carcinoma in situ of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of other and unspecified sites (234)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of other and unspecified sites (234)\(234.0) Carcinoma in situ of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''234.0''', NULL, + '(234.0) Carcinoma in situ of eye', '(234.0) Carcinoma in situ of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of other and unspecified sites (234)\(234.8) Carcinoma in situ of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of other and unspecified sites (234)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of other and unspecified sites (234)\(234.8) Carcinoma in situ of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''234.8''', NULL, + '(234.8) Carcinoma in situ of other specified sites', '(234.8) Carcinoma in situ of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of other and unspecified sites (234)\(234.9) Carcinoma in situ, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of other and unspecified sites (234)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of other and unspecified sites (234)\(234.9) Carcinoma in situ, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''234.9''', NULL, + '(234.9) Carcinoma in situ, site unspecified', '(234.9) Carcinoma in situ, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''231''', NULL, + 'Carcinoma in situ of respiratory system (231)', 'Carcinoma in situ of respiratory system (231)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\(231.0) Carcinoma in situ of larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\(231.0) Carcinoma in situ of larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''231.0''', NULL, + '(231.0) Carcinoma in situ of larynx', '(231.0) Carcinoma in situ of larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\(231.1) Carcinoma in situ of trachea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\(231.1) Carcinoma in situ of trachea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''231.1''', NULL, + '(231.1) Carcinoma in situ of trachea', '(231.1) Carcinoma in situ of trachea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\(231.2) Carcinoma in situ of bronchus and lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\(231.2) Carcinoma in situ of bronchus and lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''231.2''', NULL, + '(231.2) Carcinoma in situ of bronchus and lung', '(231.2) Carcinoma in situ of bronchus and lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\(231.8) Carcinoma in situ of other specified parts of respiratory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\(231.8) Carcinoma in situ of other specified parts of respiratory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''231.8''', NULL, + '(231.8) Carcinoma in situ of other specified parts of respiratory system', '(231.8) Carcinoma in situ of other specified parts of respiratory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\(231.9) Carcinoma in situ of respiratory system, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of respiratory system (231)\(231.9) Carcinoma in situ of respiratory system, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''231.9''', NULL, + '(231.9) Carcinoma in situ of respiratory system, part unspecified', '(231.9) Carcinoma in situ of respiratory system, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''232''', NULL, + 'Carcinoma in situ of skin (232)', 'Carcinoma in situ of skin (232)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.0) Carcinoma in situ of skin of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.0) Carcinoma in situ of skin of lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''232.0''', NULL, + '(232.0) Carcinoma in situ of skin of lip', '(232.0) Carcinoma in situ of skin of lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.1) Carcinoma in situ of eyelid, including canthus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.1) Carcinoma in situ of eyelid, including canthus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''232.1''', NULL, + '(232.1) Carcinoma in situ of eyelid, including canthus', '(232.1) Carcinoma in situ of eyelid, including canthus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.2) Carcinoma in situ of skin of ear and external auditory canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.2) Carcinoma in situ of skin of ear and external auditory canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''232.2''', NULL, + '(232.2) Carcinoma in situ of skin of ear and external auditory canal', '(232.2) Carcinoma in situ of skin of ear and external auditory canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.3) Carcinoma in situ of skin of other and unspecified parts of face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.3) Carcinoma in situ of skin of other and unspecified parts of face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''232.3''', NULL, + '(232.3) Carcinoma in situ of skin of other and unspecified parts of face', '(232.3) Carcinoma in situ of skin of other and unspecified parts of face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.4) Carcinoma in situ of scalp and skin of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.4) Carcinoma in situ of scalp and skin of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''232.4''', NULL, + '(232.4) Carcinoma in situ of scalp and skin of neck', '(232.4) Carcinoma in situ of scalp and skin of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.5) Carcinoma in situ of skin of trunk, except scrotum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.5) Carcinoma in situ of skin of trunk, except scrotum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''232.5''', NULL, + '(232.5) Carcinoma in situ of skin of trunk, except scrotum', '(232.5) Carcinoma in situ of skin of trunk, except scrotum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.6) Carcinoma in situ of skin of upper limb, including shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.6) Carcinoma in situ of skin of upper limb, including shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''232.6''', NULL, + '(232.6) Carcinoma in situ of skin of upper limb, including shoulder', '(232.6) Carcinoma in situ of skin of upper limb, including shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.7) Carcinoma in situ of skin of lower limb, including hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.7) Carcinoma in situ of skin of lower limb, including hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''232.7''', NULL, + '(232.7) Carcinoma in situ of skin of lower limb, including hip', '(232.7) Carcinoma in situ of skin of lower limb, including hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.8) Carcinoma in situ of other specified sites of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.8) Carcinoma in situ of other specified sites of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''232.8''', NULL, + '(232.8) Carcinoma in situ of other specified sites of skin', '(232.8) Carcinoma in situ of other specified sites of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.9) Carcinoma in situ of skin, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Carcinoma in situ (230-234.99)\Carcinoma in situ of skin (232)\(232.9) Carcinoma in situ of skin, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''232.9''', NULL, + '(232.9) Carcinoma in situ of skin, site unspecified', '(232.9) Carcinoma in situ of skin, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''170'' AND ''176.99''', NULL, + 'Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)', 'Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''176''', NULL, + 'Kaposi''s sarcoma (176)', 'Kaposi''s sarcoma (176)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.0) Kaposi''s sarcoma, skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.0) Kaposi''s sarcoma, skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''176.0''', NULL, + '(176.0) Kaposi''s sarcoma, skin', '(176.0) Kaposi''s sarcoma, skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.1) Kaposi''s sarcoma, soft tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.1) Kaposi''s sarcoma, soft tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''176.1''', NULL, + '(176.1) Kaposi''s sarcoma, soft tissue', '(176.1) Kaposi''s sarcoma, soft tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.2) Kaposi''s sarcoma, palate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.2) Kaposi''s sarcoma, palate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''176.2''', NULL, + '(176.2) Kaposi''s sarcoma, palate', '(176.2) Kaposi''s sarcoma, palate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.3) Kaposi''s sarcoma, gastrointestinal sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.3) Kaposi''s sarcoma, gastrointestinal sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''176.3''', NULL, + '(176.3) Kaposi''s sarcoma, gastrointestinal sites', '(176.3) Kaposi''s sarcoma, gastrointestinal sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.4) Kaposi''s sarcoma, lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.4) Kaposi''s sarcoma, lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''176.4''', NULL, + '(176.4) Kaposi''s sarcoma, lung', '(176.4) Kaposi''s sarcoma, lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.5) Kaposi''s sarcoma, lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.5) Kaposi''s sarcoma, lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''176.5''', NULL, + '(176.5) Kaposi''s sarcoma, lymph nodes', '(176.5) Kaposi''s sarcoma, lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.8) Kaposi''s sarcoma, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.8) Kaposi''s sarcoma, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''176.8''', NULL, + '(176.8) Kaposi''s sarcoma, other specified sites', '(176.8) Kaposi''s sarcoma, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.9) Kaposi''s sarcoma, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Kaposi''s sarcoma (176)\(176.9) Kaposi''s sarcoma, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''176.9''', NULL, + '(176.9) Kaposi''s sarcoma, unspecified site', '(176.9) Kaposi''s sarcoma, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''172''', NULL, + 'Malignant melanoma of skin (172)', 'Malignant melanoma of skin (172)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.0) Malignant melanoma of skin of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.0) Malignant melanoma of skin of lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''172.0''', NULL, + '(172.0) Malignant melanoma of skin of lip', '(172.0) Malignant melanoma of skin of lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.1) Malignant melanoma of skin of eyelid, including canthus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.1) Malignant melanoma of skin of eyelid, including canthus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''172.1''', NULL, + '(172.1) Malignant melanoma of skin of eyelid, including canthus', '(172.1) Malignant melanoma of skin of eyelid, including canthus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.2) Malignant melanoma of skin of ear and external auditory canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.2) Malignant melanoma of skin of ear and external auditory canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''172.2''', NULL, + '(172.2) Malignant melanoma of skin of ear and external auditory canal', '(172.2) Malignant melanoma of skin of ear and external auditory canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.3) Malignant melanoma of skin of other and unspecified parts of face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.3) Malignant melanoma of skin of other and unspecified parts of face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''172.3''', NULL, + '(172.3) Malignant melanoma of skin of other and unspecified parts of face', '(172.3) Malignant melanoma of skin of other and unspecified parts of face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.4) Malignant melanoma of skin of scalp and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.4) Malignant melanoma of skin of scalp and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''172.4''', NULL, + '(172.4) Malignant melanoma of skin of scalp and neck', '(172.4) Malignant melanoma of skin of scalp and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.5) Malignant melanoma of skin of trunk, except scrotum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.5) Malignant melanoma of skin of trunk, except scrotum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''172.5''', NULL, + '(172.5) Malignant melanoma of skin of trunk, except scrotum', '(172.5) Malignant melanoma of skin of trunk, except scrotum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.6) Malignant melanoma of skin of upper limb, including shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.6) Malignant melanoma of skin of upper limb, including shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''172.6''', NULL, + '(172.6) Malignant melanoma of skin of upper limb, including shoulder', '(172.6) Malignant melanoma of skin of upper limb, including shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.7) Malignant melanoma of skin of lower limb, including hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.7) Malignant melanoma of skin of lower limb, including hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''172.7''', NULL, + '(172.7) Malignant melanoma of skin of lower limb, including hip', '(172.7) Malignant melanoma of skin of lower limb, including hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.8) Malignant melanoma of other specified sites of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.8) Malignant melanoma of other specified sites of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''172.8''', NULL, + '(172.8) Malignant melanoma of other specified sites of skin', '(172.8) Malignant melanoma of other specified sites of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.9) Melanoma of skin, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant melanoma of skin (172)\(172.9) Melanoma of skin, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''172.9''', NULL, + '(172.9) Melanoma of skin, site unspecified', '(172.9) Melanoma of skin, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''170''', NULL, + 'Malignant neoplasm of bone and articular cartilage (170)', 'Malignant neoplasm of bone and articular cartilage (170)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.0) Malignant neoplasm of bones of skull and face, except mandible\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.0) Malignant neoplasm of bones of skull and face, except mandible\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''170.0''', NULL, + '(170.0) Malignant neoplasm of bones of skull and face, except mandible', '(170.0) Malignant neoplasm of bones of skull and face, except mandible', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.1) Malignant neoplasm of mandible\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.1) Malignant neoplasm of mandible\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''170.1''', NULL, + '(170.1) Malignant neoplasm of mandible', '(170.1) Malignant neoplasm of mandible', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.2) Malignant neoplasm of vertebral column, excluding sacrum and coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.2) Malignant neoplasm of vertebral column, excluding sacrum and coccyx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''170.2''', NULL, + '(170.2) Malignant neoplasm of vertebral column, excluding sacrum and coccyx', '(170.2) Malignant neoplasm of vertebral column, excluding sacrum and coccyx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.3) Malignant neoplasm of ribs, sternum, and clavicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.3) Malignant neoplasm of ribs, sternum, and clavicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''170.3''', NULL, + '(170.3) Malignant neoplasm of ribs, sternum, and clavicle', '(170.3) Malignant neoplasm of ribs, sternum, and clavicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.4) Malignant neoplasm of scapula and long bones of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.4) Malignant neoplasm of scapula and long bones of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''170.4''', NULL, + '(170.4) Malignant neoplasm of scapula and long bones of upper limb', '(170.4) Malignant neoplasm of scapula and long bones of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.5) Malignant neoplasm of short bones of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.5) Malignant neoplasm of short bones of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''170.5''', NULL, + '(170.5) Malignant neoplasm of short bones of upper limb', '(170.5) Malignant neoplasm of short bones of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.6) Malignant neoplasm of pelvic bones, sacrum, and coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.6) Malignant neoplasm of pelvic bones, sacrum, and coccyx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''170.6''', NULL, + '(170.6) Malignant neoplasm of pelvic bones, sacrum, and coccyx', '(170.6) Malignant neoplasm of pelvic bones, sacrum, and coccyx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.7) Malignant neoplasm of long bones of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.7) Malignant neoplasm of long bones of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''170.7''', NULL, + '(170.7) Malignant neoplasm of long bones of lower limb', '(170.7) Malignant neoplasm of long bones of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.8) Malignant neoplasm of short bones of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.8) Malignant neoplasm of short bones of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''170.8''', NULL, + '(170.8) Malignant neoplasm of short bones of lower limb', '(170.8) Malignant neoplasm of short bones of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.9) Malignant neoplasm of bone and articular cartilage, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of bone and articular cartilage (170)\(170.9) Malignant neoplasm of bone and articular cartilage, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''170.9''', NULL, + '(170.9) Malignant neoplasm of bone and articular cartilage, site unspecified', '(170.9) Malignant neoplasm of bone and articular cartilage, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''171''', NULL, + 'Malignant neoplasm of connective and other soft tissue (171)', 'Malignant neoplasm of connective and other soft tissue (171)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.0) Malignant neoplasm of connective and other soft tissue of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.0) Malignant neoplasm of connective and other soft tissue of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''171.0''', NULL, + '(171.0) Malignant neoplasm of connective and other soft tissue of head, face, and neck', '(171.0) Malignant neoplasm of connective and other soft tissue of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.2) Malignant neoplasm of connective and other soft tissue of upper limb, including shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.2) Malignant neoplasm of connective and other soft tissue of upper limb, including shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''171.2''', NULL, + '(171.2) Malignant neoplasm of connective and other soft tissue of upper limb, including shoulder', '(171.2) Malignant neoplasm of connective and other soft tissue of upper limb, including shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.3) Malignant neoplasm of connective and other soft tissue of lower limb, including hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.3) Malignant neoplasm of connective and other soft tissue of lower limb, including hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''171.3''', NULL, + '(171.3) Malignant neoplasm of connective and other soft tissue of lower limb, including hip', '(171.3) Malignant neoplasm of connective and other soft tissue of lower limb, including hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.4) Malignant neoplasm of connective and other soft tissue of thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.4) Malignant neoplasm of connective and other soft tissue of thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''171.4''', NULL, + '(171.4) Malignant neoplasm of connective and other soft tissue of thorax', '(171.4) Malignant neoplasm of connective and other soft tissue of thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.5) Malignant neoplasm of connective and other soft tissue of abdomen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.5) Malignant neoplasm of connective and other soft tissue of abdomen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''171.5''', NULL, + '(171.5) Malignant neoplasm of connective and other soft tissue of abdomen', '(171.5) Malignant neoplasm of connective and other soft tissue of abdomen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.6) Malignant neoplasm of connective and other soft tissue of pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.6) Malignant neoplasm of connective and other soft tissue of pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''171.6''', NULL, + '(171.6) Malignant neoplasm of connective and other soft tissue of pelvis', '(171.6) Malignant neoplasm of connective and other soft tissue of pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.7) Malignant neoplasm of connective and other soft tissue of trunk, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.7) Malignant neoplasm of connective and other soft tissue of trunk, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''171.7''', NULL, + '(171.7) Malignant neoplasm of connective and other soft tissue of trunk, unspecified', '(171.7) Malignant neoplasm of connective and other soft tissue of trunk, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.8) Malignant neoplasm of other specified sites of connective and other soft tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.8) Malignant neoplasm of other specified sites of connective and other soft tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''171.8''', NULL, + '(171.8) Malignant neoplasm of other specified sites of connective and other soft tissue', '(171.8) Malignant neoplasm of other specified sites of connective and other soft tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.9) Malignant neoplasm of connective and other soft tissue, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of connective and other soft tissue (171)\(171.9) Malignant neoplasm of connective and other soft tissue, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''171.9''', NULL, + '(171.9) Malignant neoplasm of connective and other soft tissue, site unspecified', '(171.9) Malignant neoplasm of connective and other soft tissue, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''174''', NULL, + 'Malignant neoplasm of female breast (174)', 'Malignant neoplasm of female breast (174)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.0) Malignant neoplasm of nipple and areola of female breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.0) Malignant neoplasm of nipple and areola of female breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''174.0''', NULL, + '(174.0) Malignant neoplasm of nipple and areola of female breast', '(174.0) Malignant neoplasm of nipple and areola of female breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.1) Malignant neoplasm of central portion of female breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.1) Malignant neoplasm of central portion of female breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''174.1''', NULL, + '(174.1) Malignant neoplasm of central portion of female breast', '(174.1) Malignant neoplasm of central portion of female breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.2) Malignant neoplasm of upper-inner quadrant of female breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.2) Malignant neoplasm of upper-inner quadrant of female breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''174.2''', NULL, + '(174.2) Malignant neoplasm of upper-inner quadrant of female breast', '(174.2) Malignant neoplasm of upper-inner quadrant of female breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.3) Malignant neoplasm of lower-inner quadrant of female breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.3) Malignant neoplasm of lower-inner quadrant of female breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''174.3''', NULL, + '(174.3) Malignant neoplasm of lower-inner quadrant of female breast', '(174.3) Malignant neoplasm of lower-inner quadrant of female breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.4) Malignant neoplasm of upper-outer quadrant of female breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.4) Malignant neoplasm of upper-outer quadrant of female breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''174.4''', NULL, + '(174.4) Malignant neoplasm of upper-outer quadrant of female breast', '(174.4) Malignant neoplasm of upper-outer quadrant of female breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.5) Malignant neoplasm of lower-outer quadrant of female breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.5) Malignant neoplasm of lower-outer quadrant of female breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''174.5''', NULL, + '(174.5) Malignant neoplasm of lower-outer quadrant of female breast', '(174.5) Malignant neoplasm of lower-outer quadrant of female breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.6) Malignant neoplasm of axillary tail of female breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.6) Malignant neoplasm of axillary tail of female breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''174.6''', NULL, + '(174.6) Malignant neoplasm of axillary tail of female breast', '(174.6) Malignant neoplasm of axillary tail of female breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.8) Malignant neoplasm of other specified sites of female breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.8) Malignant neoplasm of other specified sites of female breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''174.8''', NULL, + '(174.8) Malignant neoplasm of other specified sites of female breast', '(174.8) Malignant neoplasm of other specified sites of female breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.9) Malignant neoplasm of breast (female), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of female breast (174)\(174.9) Malignant neoplasm of breast (female), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''174.9) Malignant neoplasm of breast (female''', NULL, + '(174.9) Malignant neoplasm of breast (female), unspecified', '(174.9) Malignant neoplasm of breast (female), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of male breast (175)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of male breast (175)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''175''', NULL, + 'Malignant neoplasm of male breast (175)', 'Malignant neoplasm of male breast (175)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of male breast (175)\(175.0) Malignant neoplasm of nipple and areola of male breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of male breast (175)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of male breast (175)\(175.0) Malignant neoplasm of nipple and areola of male breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''175.0''', NULL, + '(175.0) Malignant neoplasm of nipple and areola of male breast', '(175.0) Malignant neoplasm of nipple and areola of male breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of male breast (175)\(175.9) Malignant neoplasm of other and unspecified sites of male breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of male breast (175)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Malignant neoplasm of male breast (175)\(175.9) Malignant neoplasm of other and unspecified sites of male breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''175.9''', NULL, + '(175.9) Malignant neoplasm of other and unspecified sites of male breast', '(175.9) Malignant neoplasm of other and unspecified sites of male breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173''', NULL, + 'Other and unspecified malignant neoplasm of skin (173)', 'Other and unspecified malignant neoplasm of skin (173)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.8''', NULL, + 'Other and unspecified malignant neoplasm of other specified sites of skin (173.8)', 'Other and unspecified malignant neoplasm of other specified sites of skin (173.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\(173.80) Unspecified malignant neoplasm of other specified sites of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\(173.80) Unspecified malignant neoplasm of other specified sites of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.80''', NULL, + '(173.80) Unspecified malignant neoplasm of other specified sites of skin', '(173.80) Unspecified malignant neoplasm of other specified sites of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\(173.81) Basal cell carcinoma of other specified sites of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\(173.81) Basal cell carcinoma of other specified sites of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.81''', NULL, + '(173.81) Basal cell carcinoma of other specified sites of skin', '(173.81) Basal cell carcinoma of other specified sites of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\(173.82) Squamous cell carcinoma of other specified sites of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\(173.82) Squamous cell carcinoma of other specified sites of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.82''', NULL, + '(173.82) Squamous cell carcinoma of other specified sites of skin', '(173.82) Squamous cell carcinoma of other specified sites of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\(173.89) Other specified malignant neoplasm of other specified sites of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\(173.89) Other specified malignant neoplasm of other specified sites of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.89''', NULL, + '(173.89) Other specified malignant neoplasm of other specified sites of skin', '(173.89) Other specified malignant neoplasm of other specified sites of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.4''', NULL, + 'Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)', 'Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\(173.40) Unspecified malignant neoplasm of scalp and skin of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\(173.40) Unspecified malignant neoplasm of scalp and skin of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.40''', NULL, + '(173.40) Unspecified malignant neoplasm of scalp and skin of neck', '(173.40) Unspecified malignant neoplasm of scalp and skin of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\(173.41) Basal cell carcinoma of scalp and skin of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\(173.41) Basal cell carcinoma of scalp and skin of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.41''', NULL, + '(173.41) Basal cell carcinoma of scalp and skin of neck', '(173.41) Basal cell carcinoma of scalp and skin of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\(173.42) Squamous cell carcinoma of scalp and skin of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\(173.42) Squamous cell carcinoma of scalp and skin of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.42''', NULL, + '(173.42) Squamous cell carcinoma of scalp and skin of neck', '(173.42) Squamous cell carcinoma of scalp and skin of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\(173.49) Other specified malignant neoplasm of scalp and skin of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\(173.49) Other specified malignant neoplasm of scalp and skin of neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.49''', NULL, + '(173.49) Other specified malignant neoplasm of scalp and skin of neck', '(173.49) Other specified malignant neoplasm of scalp and skin of neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.2''', NULL, + 'Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)', 'Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\(173.20) Unspecified malignant neoplasm of skin of ear and external auditory canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\(173.20) Unspecified malignant neoplasm of skin of ear and external auditory canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.20''', NULL, + '(173.20) Unspecified malignant neoplasm of skin of ear and external auditory canal', '(173.20) Unspecified malignant neoplasm of skin of ear and external auditory canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\(173.21) Basal cell carcinoma of skin of ear and external auditory canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\(173.21) Basal cell carcinoma of skin of ear and external auditory canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.21''', NULL, + '(173.21) Basal cell carcinoma of skin of ear and external auditory canal', '(173.21) Basal cell carcinoma of skin of ear and external auditory canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\(173.22) Squamous cell carcinoma of skin of ear and external auditory canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\(173.22) Squamous cell carcinoma of skin of ear and external auditory canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.22''', NULL, + '(173.22) Squamous cell carcinoma of skin of ear and external auditory canal', '(173.22) Squamous cell carcinoma of skin of ear and external auditory canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\(173.29) Other specified malignant neoplasm of skin of ear and external auditory canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\(173.29) Other specified malignant neoplasm of skin of ear and external auditory canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.29''', NULL, + '(173.29) Other specified malignant neoplasm of skin of ear and external auditory canal', '(173.29) Other specified malignant neoplasm of skin of ear and external auditory canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.1''', NULL, + 'Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)', 'Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\(173.10) Unspecified malignant neoplasm of eyelid, including canthus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\(173.10) Unspecified malignant neoplasm of eyelid, including canthus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.10''', NULL, + '(173.10) Unspecified malignant neoplasm of eyelid, including canthus', '(173.10) Unspecified malignant neoplasm of eyelid, including canthus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\(173.11) Basal cell carcinoma of eyelid, including canthus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\(173.11) Basal cell carcinoma of eyelid, including canthus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.11''', NULL, + '(173.11) Basal cell carcinoma of eyelid, including canthus', '(173.11) Basal cell carcinoma of eyelid, including canthus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\(173.12) Squamous cell carcinoma of eyelid, including canthus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\(173.12) Squamous cell carcinoma of eyelid, including canthus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.12''', NULL, + '(173.12) Squamous cell carcinoma of eyelid, including canthus', '(173.12) Squamous cell carcinoma of eyelid, including canthus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.7''', NULL, + 'Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)', 'Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\(173.70) Unspecified malignant neoplasm of skin of lower limb, including hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\(173.70) Unspecified malignant neoplasm of skin of lower limb, including hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.70''', NULL, + '(173.70) Unspecified malignant neoplasm of skin of lower limb, including hip', '(173.70) Unspecified malignant neoplasm of skin of lower limb, including hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\(173.71) Basal cell carcinoma of skin of lower limb, including hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\(173.71) Basal cell carcinoma of skin of lower limb, including hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.71''', NULL, + '(173.71) Basal cell carcinoma of skin of lower limb, including hip', '(173.71) Basal cell carcinoma of skin of lower limb, including hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\(173.72) Squamous cell carcinoma of skin of lower limb, including hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\(173.72) Squamous cell carcinoma of skin of lower limb, including hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.72''', NULL, + '(173.72) Squamous cell carcinoma of skin of lower limb, including hip', '(173.72) Squamous cell carcinoma of skin of lower limb, including hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\(173.79) Other specified malignant neoplasm of skin of lower limb, including hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\(173.79) Other specified malignant neoplasm of skin of lower limb, including hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.79''', NULL, + '(173.79) Other specified malignant neoplasm of skin of lower limb, including hip', '(173.79) Other specified malignant neoplasm of skin of lower limb, including hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.3''', NULL, + 'Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)', 'Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\(173.30) Unspecified malignant neoplasm of skin of other and unspecified parts of face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\(173.30) Unspecified malignant neoplasm of skin of other and unspecified parts of face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.30''', NULL, + '(173.30) Unspecified malignant neoplasm of skin of other and unspecified parts of face', '(173.30) Unspecified malignant neoplasm of skin of other and unspecified parts of face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\(173.31) Basal cell carcinoma of skin of other and unspecified parts of face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\(173.31) Basal cell carcinoma of skin of other and unspecified parts of face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.31''', NULL, + '(173.31) Basal cell carcinoma of skin of other and unspecified parts of face', '(173.31) Basal cell carcinoma of skin of other and unspecified parts of face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\(173.32) Squamous cell carcinoma of skin of other and unspecified parts of face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\(173.32) Squamous cell carcinoma of skin of other and unspecified parts of face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.32''', NULL, + '(173.32) Squamous cell carcinoma of skin of other and unspecified parts of face', '(173.32) Squamous cell carcinoma of skin of other and unspecified parts of face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\(173.39) Other specified malignant neoplasm of skin of other and unspecified parts of face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\(173.39) Other specified malignant neoplasm of skin of other and unspecified parts of face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.39''', NULL, + '(173.39) Other specified malignant neoplasm of skin of other and unspecified parts of face', '(173.39) Other specified malignant neoplasm of skin of other and unspecified parts of face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.5''', NULL, + 'Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)', 'Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\(173.50) Unspecified malignant neoplasm of skin of trunk, except scrotum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\(173.50) Unspecified malignant neoplasm of skin of trunk, except scrotum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.50''', NULL, + '(173.50) Unspecified malignant neoplasm of skin of trunk, except scrotum', '(173.50) Unspecified malignant neoplasm of skin of trunk, except scrotum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\(173.51) Basal cell carcinoma of skin of trunk, except scrotum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\(173.51) Basal cell carcinoma of skin of trunk, except scrotum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.51''', NULL, + '(173.51) Basal cell carcinoma of skin of trunk, except scrotum', '(173.51) Basal cell carcinoma of skin of trunk, except scrotum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\(173.52) Squamous cell carcinoma of skin of trunk, except scrotum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\(173.52) Squamous cell carcinoma of skin of trunk, except scrotum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.52''', NULL, + '(173.52) Squamous cell carcinoma of skin of trunk, except scrotum', '(173.52) Squamous cell carcinoma of skin of trunk, except scrotum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\(173.59) Other specified malignant neoplasm of skin of trunk, except scrotum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\(173.59) Other specified malignant neoplasm of skin of trunk, except scrotum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.59''', NULL, + '(173.59) Other specified malignant neoplasm of skin of trunk, except scrotum', '(173.59) Other specified malignant neoplasm of skin of trunk, except scrotum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.6''', NULL, + 'Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)', 'Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\(173.60) Unspecified malignant neoplasm of skin of upper limb, including shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\(173.60) Unspecified malignant neoplasm of skin of upper limb, including shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.60''', NULL, + '(173.60) Unspecified malignant neoplasm of skin of upper limb, including shoulder', '(173.60) Unspecified malignant neoplasm of skin of upper limb, including shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\(173.61) Basal cell carcinoma of skin of upper limb, including shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\(173.61) Basal cell carcinoma of skin of upper limb, including shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.61''', NULL, + '(173.61) Basal cell carcinoma of skin of upper limb, including shoulder', '(173.61) Basal cell carcinoma of skin of upper limb, including shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\(173.62) Squamous cell carcinoma of skin of upper limb, including shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\(173.62) Squamous cell carcinoma of skin of upper limb, including shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.62''', NULL, + '(173.62) Squamous cell carcinoma of skin of upper limb, including shoulder', '(173.62) Squamous cell carcinoma of skin of upper limb, including shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\(173.69) Other specified malignant neoplasm of skin of upper limb, including shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\(173.69) Other specified malignant neoplasm of skin of upper limb, including shoulder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.69''', NULL, + '(173.69) Other specified malignant neoplasm of skin of upper limb, including shoulder', '(173.69) Other specified malignant neoplasm of skin of upper limb, including shoulder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.9''', NULL, + 'Other and unspecified malignant neoplasm of skin, site unspecified (173.9)', 'Other and unspecified malignant neoplasm of skin, site unspecified (173.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\(173.90) Unspecified malignant neoplasm of skin, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\(173.90) Unspecified malignant neoplasm of skin, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.90''', NULL, + '(173.90) Unspecified malignant neoplasm of skin, site unspecified', '(173.90) Unspecified malignant neoplasm of skin, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\(173.91) Basal cell carcinoma of skin, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\(173.91) Basal cell carcinoma of skin, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.91''', NULL, + '(173.91) Basal cell carcinoma of skin, site unspecified', '(173.91) Basal cell carcinoma of skin, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\(173.92) Squamous cell carcinoma of skin, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\(173.92) Squamous cell carcinoma of skin, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.92''', NULL, + '(173.92) Squamous cell carcinoma of skin, site unspecified', '(173.92) Squamous cell carcinoma of skin, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\(173.99) Other specified malignant neoplasm of skin, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\(173.99) Other specified malignant neoplasm of skin, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.99''', NULL, + '(173.99) Other specified malignant neoplasm of skin, site unspecified', '(173.99) Other specified malignant neoplasm of skin, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.0''', NULL, + 'Other malignant neoplasm of skin of lip (173.0)', 'Other malignant neoplasm of skin of lip (173.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\(173.00) Unspecified malignant neoplasm of skin of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\(173.00) Unspecified malignant neoplasm of skin of lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.00''', NULL, + '(173.00) Unspecified malignant neoplasm of skin of lip', '(173.00) Unspecified malignant neoplasm of skin of lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\(173.01) Basal cell carcinoma of skin of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\(173.01) Basal cell carcinoma of skin of lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.01''', NULL, + '(173.01) Basal cell carcinoma of skin of lip', '(173.01) Basal cell carcinoma of skin of lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\(173.02) Squamous cell carcinoma of skin of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\(173.02) Squamous cell carcinoma of skin of lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.02''', NULL, + '(173.02) Squamous cell carcinoma of skin of lip', '(173.02) Squamous cell carcinoma of skin of lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\(173.09) Other specified malignant neoplasm of skin of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\Other and unspecified malignant neoplasm of skin (173)\Other malignant neoplasm of skin of lip (173.0)\(173.09) Other specified malignant neoplasm of skin of lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''173.09''', NULL, + '(173.09) Other specified malignant neoplasm of skin of lip', '(173.09) Other specified malignant neoplasm of skin of lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''150'' AND ''159.99''', NULL, + 'Malignant neoplasm of digestive organs and peritoneum (150-159.99)', 'Malignant neoplasm of digestive organs and peritoneum (150-159.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''153''', NULL, + 'Malignant neoplasm of colon (153)', 'Malignant neoplasm of colon (153)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.0) Malignant neoplasm of hepatic flexure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.0) Malignant neoplasm of hepatic flexure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''153.0''', NULL, + '(153.0) Malignant neoplasm of hepatic flexure', '(153.0) Malignant neoplasm of hepatic flexure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.1) Malignant neoplasm of transverse colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.1) Malignant neoplasm of transverse colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''153.1''', NULL, + '(153.1) Malignant neoplasm of transverse colon', '(153.1) Malignant neoplasm of transverse colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.2) Malignant neoplasm of descending colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.2) Malignant neoplasm of descending colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''153.2''', NULL, + '(153.2) Malignant neoplasm of descending colon', '(153.2) Malignant neoplasm of descending colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.3) Malignant neoplasm of sigmoid colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.3) Malignant neoplasm of sigmoid colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''153.3''', NULL, + '(153.3) Malignant neoplasm of sigmoid colon', '(153.3) Malignant neoplasm of sigmoid colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.4) Malignant neoplasm of cecum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.4) Malignant neoplasm of cecum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''153.4''', NULL, + '(153.4) Malignant neoplasm of cecum', '(153.4) Malignant neoplasm of cecum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.5) Malignant neoplasm of appendix vermiformis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.5) Malignant neoplasm of appendix vermiformis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''153.5''', NULL, + '(153.5) Malignant neoplasm of appendix vermiformis', '(153.5) Malignant neoplasm of appendix vermiformis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.6) Malignant neoplasm of ascending colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.6) Malignant neoplasm of ascending colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''153.6''', NULL, + '(153.6) Malignant neoplasm of ascending colon', '(153.6) Malignant neoplasm of ascending colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.7) Malignant neoplasm of splenic flexure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.7) Malignant neoplasm of splenic flexure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''153.7''', NULL, + '(153.7) Malignant neoplasm of splenic flexure', '(153.7) Malignant neoplasm of splenic flexure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.8) Malignant neoplasm of other specified sites of large intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.8) Malignant neoplasm of other specified sites of large intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''153.8''', NULL, + '(153.8) Malignant neoplasm of other specified sites of large intestine', '(153.8) Malignant neoplasm of other specified sites of large intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.9) Malignant neoplasm of colon, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of colon (153)\(153.9) Malignant neoplasm of colon, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''153.9''', NULL, + '(153.9) Malignant neoplasm of colon, unspecified site', '(153.9) Malignant neoplasm of colon, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''150''', NULL, + 'Malignant neoplasm of esophagus (150)', 'Malignant neoplasm of esophagus (150)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.0) Malignant neoplasm of cervical esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.0) Malignant neoplasm of cervical esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''150.0''', NULL, + '(150.0) Malignant neoplasm of cervical esophagus', '(150.0) Malignant neoplasm of cervical esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.1) Malignant neoplasm of thoracic esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.1) Malignant neoplasm of thoracic esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''150.1''', NULL, + '(150.1) Malignant neoplasm of thoracic esophagus', '(150.1) Malignant neoplasm of thoracic esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.2) Malignant neoplasm of abdominal esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.2) Malignant neoplasm of abdominal esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''150.2''', NULL, + '(150.2) Malignant neoplasm of abdominal esophagus', '(150.2) Malignant neoplasm of abdominal esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.3) Malignant neoplasm of upper third of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.3) Malignant neoplasm of upper third of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''150.3''', NULL, + '(150.3) Malignant neoplasm of upper third of esophagus', '(150.3) Malignant neoplasm of upper third of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.4) Malignant neoplasm of middle third of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.4) Malignant neoplasm of middle third of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''150.4''', NULL, + '(150.4) Malignant neoplasm of middle third of esophagus', '(150.4) Malignant neoplasm of middle third of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.5) Malignant neoplasm of lower third of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.5) Malignant neoplasm of lower third of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''150.5''', NULL, + '(150.5) Malignant neoplasm of lower third of esophagus', '(150.5) Malignant neoplasm of lower third of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.8) Malignant neoplasm of other specified part of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.8) Malignant neoplasm of other specified part of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''150.8''', NULL, + '(150.8) Malignant neoplasm of other specified part of esophagus', '(150.8) Malignant neoplasm of other specified part of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.9) Malignant neoplasm of esophagus, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of esophagus (150)\(150.9) Malignant neoplasm of esophagus, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''150.9''', NULL, + '(150.9) Malignant neoplasm of esophagus, unspecified site', '(150.9) Malignant neoplasm of esophagus, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''156''', NULL, + 'Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)', 'Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\(156.0) Malignant neoplasm of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\(156.0) Malignant neoplasm of gallbladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''156.0''', NULL, + '(156.0) Malignant neoplasm of gallbladder', '(156.0) Malignant neoplasm of gallbladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\(156.1) Malignant neoplasm of extrahepatic bile ducts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\(156.1) Malignant neoplasm of extrahepatic bile ducts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''156.1''', NULL, + '(156.1) Malignant neoplasm of extrahepatic bile ducts', '(156.1) Malignant neoplasm of extrahepatic bile ducts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\(156.2) Malignant neoplasm of ampulla of vater\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\(156.2) Malignant neoplasm of ampulla of vater\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''156.2''', NULL, + '(156.2) Malignant neoplasm of ampulla of vater', '(156.2) Malignant neoplasm of ampulla of vater', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\(156.8) Malignant neoplasm of other specified sites of gallbladder and extrahepatic bile ducts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\(156.8) Malignant neoplasm of other specified sites of gallbladder and extrahepatic bile ducts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''156.8''', NULL, + '(156.8) Malignant neoplasm of other specified sites of gallbladder and extrahepatic bile ducts', '(156.8) Malignant neoplasm of other specified sites of gallbladder and extrahepatic bile ducts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\(156.9) Malignant neoplasm of biliary tract, part unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\(156.9) Malignant neoplasm of biliary tract, part unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''156.9''', NULL, + '(156.9) Malignant neoplasm of biliary tract, part unspecified site', '(156.9) Malignant neoplasm of biliary tract, part unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of liver and intrahepatic bile ducts (155)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of liver and intrahepatic bile ducts (155)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''155''', NULL, + 'Malignant neoplasm of liver and intrahepatic bile ducts (155)', 'Malignant neoplasm of liver and intrahepatic bile ducts (155)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of liver and intrahepatic bile ducts (155)\(155.0) Malignant neoplasm of liver, primary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of liver and intrahepatic bile ducts (155)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of liver and intrahepatic bile ducts (155)\(155.0) Malignant neoplasm of liver, primary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''155.0''', NULL, + '(155.0) Malignant neoplasm of liver, primary', '(155.0) Malignant neoplasm of liver, primary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of liver and intrahepatic bile ducts (155)\(155.1) Malignant neoplasm of intrahepatic bile ducts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of liver and intrahepatic bile ducts (155)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of liver and intrahepatic bile ducts (155)\(155.1) Malignant neoplasm of intrahepatic bile ducts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''155.1''', NULL, + '(155.1) Malignant neoplasm of intrahepatic bile ducts', '(155.1) Malignant neoplasm of intrahepatic bile ducts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of liver and intrahepatic bile ducts (155)\(155.2) Malignant neoplasm of liver, not specified as primary or secondary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of liver and intrahepatic bile ducts (155)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of liver and intrahepatic bile ducts (155)\(155.2) Malignant neoplasm of liver, not specified as primary or secondary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''155.2''', NULL, + '(155.2) Malignant neoplasm of liver, not specified as primary or secondary', '(155.2) Malignant neoplasm of liver, not specified as primary or secondary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''159''', NULL, + 'Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)', 'Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\(159.0) Malignant neoplasm of intestinal tract, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\(159.0) Malignant neoplasm of intestinal tract, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''159.0''', NULL, + '(159.0) Malignant neoplasm of intestinal tract, part unspecified', '(159.0) Malignant neoplasm of intestinal tract, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\(159.1) Malignant neoplasm of spleen, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\(159.1) Malignant neoplasm of spleen, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''159.1''', NULL, + '(159.1) Malignant neoplasm of spleen, not elsewhere classified', '(159.1) Malignant neoplasm of spleen, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\(159.8) Malignant neoplasm of other sites of digestive system and intra-abdominal organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\(159.8) Malignant neoplasm of other sites of digestive system and intra-abdominal organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''159.8''', NULL, + '(159.8) Malignant neoplasm of other sites of digestive system and intra-abdominal organs', '(159.8) Malignant neoplasm of other sites of digestive system and intra-abdominal organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\(159.9) Malignant neoplasm of ill-defined sites within the digestive organs and peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\(159.9) Malignant neoplasm of ill-defined sites within the digestive organs and peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''159.9''', NULL, + '(159.9) Malignant neoplasm of ill-defined sites within the digestive organs and peritoneum', '(159.9) Malignant neoplasm of ill-defined sites within the digestive organs and peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''157''', NULL, + 'Malignant neoplasm of pancreas (157)', 'Malignant neoplasm of pancreas (157)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.0) Malignant neoplasm of head of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.0) Malignant neoplasm of head of pancreas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''157.0''', NULL, + '(157.0) Malignant neoplasm of head of pancreas', '(157.0) Malignant neoplasm of head of pancreas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.1) Malignant neoplasm of body of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.1) Malignant neoplasm of body of pancreas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''157.1''', NULL, + '(157.1) Malignant neoplasm of body of pancreas', '(157.1) Malignant neoplasm of body of pancreas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.2) Malignant neoplasm of tail of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.2) Malignant neoplasm of tail of pancreas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''157.2''', NULL, + '(157.2) Malignant neoplasm of tail of pancreas', '(157.2) Malignant neoplasm of tail of pancreas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.3) Malignant neoplasm of pancreatic duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.3) Malignant neoplasm of pancreatic duct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''157.3''', NULL, + '(157.3) Malignant neoplasm of pancreatic duct', '(157.3) Malignant neoplasm of pancreatic duct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.4) Malignant neoplasm of islets of langerhans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.4) Malignant neoplasm of islets of langerhans\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''157.4''', NULL, + '(157.4) Malignant neoplasm of islets of langerhans', '(157.4) Malignant neoplasm of islets of langerhans', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.8) Malignant neoplasm of other specified sites of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.8) Malignant neoplasm of other specified sites of pancreas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''157.8''', NULL, + '(157.8) Malignant neoplasm of other specified sites of pancreas', '(157.8) Malignant neoplasm of other specified sites of pancreas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.9) Malignant neoplasm of pancreas, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of pancreas (157)\(157.9) Malignant neoplasm of pancreas, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''157.9''', NULL, + '(157.9) Malignant neoplasm of pancreas, part unspecified', '(157.9) Malignant neoplasm of pancreas, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''154''', NULL, + 'Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)', 'Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\(154.0) Malignant neoplasm of rectosigmoid junction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\(154.0) Malignant neoplasm of rectosigmoid junction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''154.0''', NULL, + '(154.0) Malignant neoplasm of rectosigmoid junction', '(154.0) Malignant neoplasm of rectosigmoid junction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\(154.1) Malignant neoplasm of rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\(154.1) Malignant neoplasm of rectum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''154.1''', NULL, + '(154.1) Malignant neoplasm of rectum', '(154.1) Malignant neoplasm of rectum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\(154.2) Malignant neoplasm of anal canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\(154.2) Malignant neoplasm of anal canal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''154.2''', NULL, + '(154.2) Malignant neoplasm of anal canal', '(154.2) Malignant neoplasm of anal canal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\(154.3) Malignant neoplasm of anus, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\(154.3) Malignant neoplasm of anus, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''154.3''', NULL, + '(154.3) Malignant neoplasm of anus, unspecified site', '(154.3) Malignant neoplasm of anus, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\(154.8) Malignant neoplasm of other sites of rectum, rectosigmoid junction, and anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\(154.8) Malignant neoplasm of other sites of rectum, rectosigmoid junction, and anus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''154.8''', NULL, + '(154.8) Malignant neoplasm of other sites of rectum, rectosigmoid junction, and anus', '(154.8) Malignant neoplasm of other sites of rectum, rectosigmoid junction, and anus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of retroperitoneum and peritoneum (158)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of retroperitoneum and peritoneum (158)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''158''', NULL, + 'Malignant neoplasm of retroperitoneum and peritoneum (158)', 'Malignant neoplasm of retroperitoneum and peritoneum (158)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of retroperitoneum and peritoneum (158)\(158.0) Malignant neoplasm of retroperitoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of retroperitoneum and peritoneum (158)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of retroperitoneum and peritoneum (158)\(158.0) Malignant neoplasm of retroperitoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''158.0''', NULL, + '(158.0) Malignant neoplasm of retroperitoneum', '(158.0) Malignant neoplasm of retroperitoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of retroperitoneum and peritoneum (158)\(158.8) Malignant neoplasm of specified parts of peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of retroperitoneum and peritoneum (158)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of retroperitoneum and peritoneum (158)\(158.8) Malignant neoplasm of specified parts of peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''158.8''', NULL, + '(158.8) Malignant neoplasm of specified parts of peritoneum', '(158.8) Malignant neoplasm of specified parts of peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of retroperitoneum and peritoneum (158)\(158.9) Malignant neoplasm of peritoneum, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of retroperitoneum and peritoneum (158)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of retroperitoneum and peritoneum (158)\(158.9) Malignant neoplasm of peritoneum, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''158.9''', NULL, + '(158.9) Malignant neoplasm of peritoneum, unspecified', '(158.9) Malignant neoplasm of peritoneum, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''152''', NULL, + 'Malignant neoplasm of small intestine, including duodenum (152)', 'Malignant neoplasm of small intestine, including duodenum (152)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.0) Malignant neoplasm of duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.0) Malignant neoplasm of duodenum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''152.0''', NULL, + '(152.0) Malignant neoplasm of duodenum', '(152.0) Malignant neoplasm of duodenum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.1) Malignant neoplasm of jejunum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.1) Malignant neoplasm of jejunum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''152.1''', NULL, + '(152.1) Malignant neoplasm of jejunum', '(152.1) Malignant neoplasm of jejunum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.2) Malignant neoplasm of ileum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.2) Malignant neoplasm of ileum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''152.2''', NULL, + '(152.2) Malignant neoplasm of ileum', '(152.2) Malignant neoplasm of ileum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.3) Malignant neoplasm of Meckel''s diverticulum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.3) Malignant neoplasm of Meckel''s diverticulum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''152.3''', NULL, + '(152.3) Malignant neoplasm of Meckel''s diverticulum', '(152.3) Malignant neoplasm of Meckel''s diverticulum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.8) Malignant neoplasm of other specified sites of small intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.8) Malignant neoplasm of other specified sites of small intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''152.8''', NULL, + '(152.8) Malignant neoplasm of other specified sites of small intestine', '(152.8) Malignant neoplasm of other specified sites of small intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.9) Malignant neoplasm of small intestine, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of small intestine, including duodenum (152)\(152.9) Malignant neoplasm of small intestine, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''152.9''', NULL, + '(152.9) Malignant neoplasm of small intestine, unspecified site', '(152.9) Malignant neoplasm of small intestine, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''151''', NULL, + 'Malignant neoplasm of stomach (151)', 'Malignant neoplasm of stomach (151)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.0) Malignant neoplasm of cardia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.0) Malignant neoplasm of cardia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''151.0''', NULL, + '(151.0) Malignant neoplasm of cardia', '(151.0) Malignant neoplasm of cardia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.1) Malignant neoplasm of pylorus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.1) Malignant neoplasm of pylorus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''151.1''', NULL, + '(151.1) Malignant neoplasm of pylorus', '(151.1) Malignant neoplasm of pylorus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.2) Malignant neoplasm of pyloric antrum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.2) Malignant neoplasm of pyloric antrum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''151.2''', NULL, + '(151.2) Malignant neoplasm of pyloric antrum', '(151.2) Malignant neoplasm of pyloric antrum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.3) Malignant neoplasm of fundus of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.3) Malignant neoplasm of fundus of stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''151.3''', NULL, + '(151.3) Malignant neoplasm of fundus of stomach', '(151.3) Malignant neoplasm of fundus of stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.4) Malignant neoplasm of body of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.4) Malignant neoplasm of body of stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''151.4''', NULL, + '(151.4) Malignant neoplasm of body of stomach', '(151.4) Malignant neoplasm of body of stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.5) Malignant neoplasm of lesser curvature of stomach, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.5) Malignant neoplasm of lesser curvature of stomach, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''151.5''', NULL, + '(151.5) Malignant neoplasm of lesser curvature of stomach, unspecified', '(151.5) Malignant neoplasm of lesser curvature of stomach, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.6) Malignant neoplasm of greater curvature of stomach, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.6) Malignant neoplasm of greater curvature of stomach, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''151.6''', NULL, + '(151.6) Malignant neoplasm of greater curvature of stomach, unspecified', '(151.6) Malignant neoplasm of greater curvature of stomach, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.8) Malignant neoplasm of other specified sites of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.8) Malignant neoplasm of other specified sites of stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''151.8''', NULL, + '(151.8) Malignant neoplasm of other specified sites of stomach', '(151.8) Malignant neoplasm of other specified sites of stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.9) Malignant neoplasm of stomach, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\Malignant neoplasm of stomach (151)\(151.9) Malignant neoplasm of stomach, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''151.9''', NULL, + '(151.9) Malignant neoplasm of stomach, unspecified site', '(151.9) Malignant neoplasm of stomach, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''179'' AND ''189.99''', NULL, + 'Malignant neoplasm of genitourinary organs (179-189.99)', 'Malignant neoplasm of genitourinary organs (179-189.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\(179) Malignant neoplasm of uterus, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\(179) Malignant neoplasm of uterus, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''179''', NULL, + '(179) Malignant neoplasm of uterus, part unspecified', '(179) Malignant neoplasm of uterus, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\(181) Malignant neoplasm of placenta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\(181) Malignant neoplasm of placenta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''181''', NULL, + '(181) Malignant neoplasm of placenta', '(181) Malignant neoplasm of placenta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\(185) Malignant neoplasm of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\(185) Malignant neoplasm of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''185''', NULL, + '(185) Malignant neoplasm of prostate', '(185) Malignant neoplasm of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''188''', NULL, + 'Malignant neoplasm of bladder (188)', 'Malignant neoplasm of bladder (188)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.0) Malignant neoplasm of trigone of urinary bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.0) Malignant neoplasm of trigone of urinary bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''188.0''', NULL, + '(188.0) Malignant neoplasm of trigone of urinary bladder', '(188.0) Malignant neoplasm of trigone of urinary bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.1) Malignant neoplasm of dome of urinary bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.1) Malignant neoplasm of dome of urinary bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''188.1''', NULL, + '(188.1) Malignant neoplasm of dome of urinary bladder', '(188.1) Malignant neoplasm of dome of urinary bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.2) Malignant neoplasm of lateral wall of urinary bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.2) Malignant neoplasm of lateral wall of urinary bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''188.2''', NULL, + '(188.2) Malignant neoplasm of lateral wall of urinary bladder', '(188.2) Malignant neoplasm of lateral wall of urinary bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.3) Malignant neoplasm of anterior wall of urinary bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.3) Malignant neoplasm of anterior wall of urinary bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''188.3''', NULL, + '(188.3) Malignant neoplasm of anterior wall of urinary bladder', '(188.3) Malignant neoplasm of anterior wall of urinary bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.4) Malignant neoplasm of posterior wall of urinary bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.4) Malignant neoplasm of posterior wall of urinary bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''188.4''', NULL, + '(188.4) Malignant neoplasm of posterior wall of urinary bladder', '(188.4) Malignant neoplasm of posterior wall of urinary bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.5) Malignant neoplasm of bladder neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.5) Malignant neoplasm of bladder neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''188.5''', NULL, + '(188.5) Malignant neoplasm of bladder neck', '(188.5) Malignant neoplasm of bladder neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.6) Malignant neoplasm of ureteric orifice\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.6) Malignant neoplasm of ureteric orifice\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''188.6''', NULL, + '(188.6) Malignant neoplasm of ureteric orifice', '(188.6) Malignant neoplasm of ureteric orifice', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.7) Malignant neoplasm of urachus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.7) Malignant neoplasm of urachus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''188.7''', NULL, + '(188.7) Malignant neoplasm of urachus', '(188.7) Malignant neoplasm of urachus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.8) Malignant neoplasm of other specified sites of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.8) Malignant neoplasm of other specified sites of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''188.8''', NULL, + '(188.8) Malignant neoplasm of other specified sites of bladder', '(188.8) Malignant neoplasm of other specified sites of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.9) Malignant neoplasm of bladder, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of bladder (188)\(188.9) Malignant neoplasm of bladder, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''188.9''', NULL, + '(188.9) Malignant neoplasm of bladder, part unspecified', '(188.9) Malignant neoplasm of bladder, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of body of uterus (182)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of body of uterus (182)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''182''', NULL, + 'Malignant neoplasm of body of uterus (182)', 'Malignant neoplasm of body of uterus (182)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of body of uterus (182)\(182.0) Malignant neoplasm of corpus uteri, except isthmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of body of uterus (182)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of body of uterus (182)\(182.0) Malignant neoplasm of corpus uteri, except isthmus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''182.0''', NULL, + '(182.0) Malignant neoplasm of corpus uteri, except isthmus', '(182.0) Malignant neoplasm of corpus uteri, except isthmus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of body of uterus (182)\(182.1) Malignant neoplasm of isthmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of body of uterus (182)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of body of uterus (182)\(182.1) Malignant neoplasm of isthmus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''182.1''', NULL, + '(182.1) Malignant neoplasm of isthmus', '(182.1) Malignant neoplasm of isthmus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of body of uterus (182)\(182.8) Malignant neoplasm of other specified sites of body of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of body of uterus (182)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of body of uterus (182)\(182.8) Malignant neoplasm of other specified sites of body of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''182.8''', NULL, + '(182.8) Malignant neoplasm of other specified sites of body of uterus', '(182.8) Malignant neoplasm of other specified sites of body of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''180''', NULL, + 'Malignant neoplasm of cervix uteri (180)', 'Malignant neoplasm of cervix uteri (180)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\(180.0) Malignant neoplasm of endocervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\(180.0) Malignant neoplasm of endocervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''180.0''', NULL, + '(180.0) Malignant neoplasm of endocervix', '(180.0) Malignant neoplasm of endocervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\(180.1) Malignant neoplasm of exocervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\(180.1) Malignant neoplasm of exocervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''180.1''', NULL, + '(180.1) Malignant neoplasm of exocervix', '(180.1) Malignant neoplasm of exocervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\(180.8) Malignant neoplasm of other specified sites of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\(180.8) Malignant neoplasm of other specified sites of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''180.8''', NULL, + '(180.8) Malignant neoplasm of other specified sites of cervix', '(180.8) Malignant neoplasm of other specified sites of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\(180.9) Malignant neoplasm of cervix uteri, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of cervix uteri (180)\(180.9) Malignant neoplasm of cervix uteri, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''180.9''', NULL, + '(180.9) Malignant neoplasm of cervix uteri, unspecified site', '(180.9) Malignant neoplasm of cervix uteri, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''189''', NULL, + 'Malignant neoplasm of kidney and other and unspecified urinary organs (189)', 'Malignant neoplasm of kidney and other and unspecified urinary organs (189)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.0) Malignant neoplasm of kidney, except pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.0) Malignant neoplasm of kidney, except pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''189.0''', NULL, + '(189.0) Malignant neoplasm of kidney, except pelvis', '(189.0) Malignant neoplasm of kidney, except pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.1) Malignant neoplasm of renal pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.1) Malignant neoplasm of renal pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''189.1''', NULL, + '(189.1) Malignant neoplasm of renal pelvis', '(189.1) Malignant neoplasm of renal pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.2) Malignant neoplasm of ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.2) Malignant neoplasm of ureter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''189.2''', NULL, + '(189.2) Malignant neoplasm of ureter', '(189.2) Malignant neoplasm of ureter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.3) Malignant neoplasm of urethra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.3) Malignant neoplasm of urethra\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''189.3''', NULL, + '(189.3) Malignant neoplasm of urethra', '(189.3) Malignant neoplasm of urethra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.4) Malignant neoplasm of paraurethral glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.4) Malignant neoplasm of paraurethral glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''189.4''', NULL, + '(189.4) Malignant neoplasm of paraurethral glands', '(189.4) Malignant neoplasm of paraurethral glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.8) Malignant neoplasm of other specified sites of urinary organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.8) Malignant neoplasm of other specified sites of urinary organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''189.8''', NULL, + '(189.8) Malignant neoplasm of other specified sites of urinary organs', '(189.8) Malignant neoplasm of other specified sites of urinary organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.9) Malignant neoplasm of urinary organ, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\(189.9) Malignant neoplasm of urinary organ, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''189.9''', NULL, + '(189.9) Malignant neoplasm of urinary organ, site unspecified', '(189.9) Malignant neoplasm of urinary organ, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''184''', NULL, + 'Malignant neoplasm of other and unspecified female genital organs (184)', 'Malignant neoplasm of other and unspecified female genital organs (184)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.0) Malignant neoplasm of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.0) Malignant neoplasm of vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''184.0''', NULL, + '(184.0) Malignant neoplasm of vagina', '(184.0) Malignant neoplasm of vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.1) Malignant neoplasm of labia majora\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.1) Malignant neoplasm of labia majora\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''184.1''', NULL, + '(184.1) Malignant neoplasm of labia majora', '(184.1) Malignant neoplasm of labia majora', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.2) Malignant neoplasm of labia minora\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.2) Malignant neoplasm of labia minora\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''184.2''', NULL, + '(184.2) Malignant neoplasm of labia minora', '(184.2) Malignant neoplasm of labia minora', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.3) Malignant neoplasm of clitoris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.3) Malignant neoplasm of clitoris\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''184.3''', NULL, + '(184.3) Malignant neoplasm of clitoris', '(184.3) Malignant neoplasm of clitoris', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.4) Malignant neoplasm of vulva, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.4) Malignant neoplasm of vulva, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''184.4''', NULL, + '(184.4) Malignant neoplasm of vulva, unspecified site', '(184.4) Malignant neoplasm of vulva, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.8) Malignant neoplasm of other specified sites of female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.8) Malignant neoplasm of other specified sites of female genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''184.8''', NULL, + '(184.8) Malignant neoplasm of other specified sites of female genital organs', '(184.8) Malignant neoplasm of other specified sites of female genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.9) Malignant neoplasm of female genital organ, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of other and unspecified female genital organs (184)\(184.9) Malignant neoplasm of female genital organ, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''184.9''', NULL, + '(184.9) Malignant neoplasm of female genital organ, site unspecified', '(184.9) Malignant neoplasm of female genital organ, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''183''', NULL, + 'Malignant neoplasm of ovary and other uterine adnexa (183)', 'Malignant neoplasm of ovary and other uterine adnexa (183)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.0) Malignant neoplasm of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.0) Malignant neoplasm of ovary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''183.0''', NULL, + '(183.0) Malignant neoplasm of ovary', '(183.0) Malignant neoplasm of ovary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.2) Malignant neoplasm of fallopian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.2) Malignant neoplasm of fallopian tube\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''183.2''', NULL, + '(183.2) Malignant neoplasm of fallopian tube', '(183.2) Malignant neoplasm of fallopian tube', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.3) Malignant neoplasm of broad ligament of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.3) Malignant neoplasm of broad ligament of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''183.3''', NULL, + '(183.3) Malignant neoplasm of broad ligament of uterus', '(183.3) Malignant neoplasm of broad ligament of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.4) Malignant neoplasm of parametrium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.4) Malignant neoplasm of parametrium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''183.4''', NULL, + '(183.4) Malignant neoplasm of parametrium', '(183.4) Malignant neoplasm of parametrium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.5) Malignant neoplasm of round ligament of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.5) Malignant neoplasm of round ligament of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''183.5''', NULL, + '(183.5) Malignant neoplasm of round ligament of uterus', '(183.5) Malignant neoplasm of round ligament of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.8) Malignant neoplasm of other specified sites of uterine adnexa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.8) Malignant neoplasm of other specified sites of uterine adnexa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''183.8''', NULL, + '(183.8) Malignant neoplasm of other specified sites of uterine adnexa', '(183.8) Malignant neoplasm of other specified sites of uterine adnexa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.9) Malignant neoplasm of uterine adnexa, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of ovary and other uterine adnexa (183)\(183.9) Malignant neoplasm of uterine adnexa, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''183.9''', NULL, + '(183.9) Malignant neoplasm of uterine adnexa, unspecified site', '(183.9) Malignant neoplasm of uterine adnexa, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''187''', NULL, + 'Malignant neoplasm of penis and other male genital organs (187)', 'Malignant neoplasm of penis and other male genital organs (187)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.1) Malignant neoplasm of prepuce\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.1) Malignant neoplasm of prepuce\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''187.1''', NULL, + '(187.1) Malignant neoplasm of prepuce', '(187.1) Malignant neoplasm of prepuce', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.2) Malignant neoplasm of glans penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.2) Malignant neoplasm of glans penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''187.2''', NULL, + '(187.2) Malignant neoplasm of glans penis', '(187.2) Malignant neoplasm of glans penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.3) Malignant neoplasm of body of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.3) Malignant neoplasm of body of penis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''187.3''', NULL, + '(187.3) Malignant neoplasm of body of penis', '(187.3) Malignant neoplasm of body of penis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.4) Malignant neoplasm of penis, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.4) Malignant neoplasm of penis, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''187.4''', NULL, + '(187.4) Malignant neoplasm of penis, part unspecified', '(187.4) Malignant neoplasm of penis, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.5) Malignant neoplasm of epididymis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.5) Malignant neoplasm of epididymis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''187.5''', NULL, + '(187.5) Malignant neoplasm of epididymis', '(187.5) Malignant neoplasm of epididymis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.6) Malignant neoplasm of spermatic cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.6) Malignant neoplasm of spermatic cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''187.6''', NULL, + '(187.6) Malignant neoplasm of spermatic cord', '(187.6) Malignant neoplasm of spermatic cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.7) Malignant neoplasm of scrotum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.7) Malignant neoplasm of scrotum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''187.7''', NULL, + '(187.7) Malignant neoplasm of scrotum', '(187.7) Malignant neoplasm of scrotum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.8) Malignant neoplasm of other specified sites of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.8) Malignant neoplasm of other specified sites of male genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''187.8''', NULL, + '(187.8) Malignant neoplasm of other specified sites of male genital organs', '(187.8) Malignant neoplasm of other specified sites of male genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.9) Malignant neoplasm of male genital organ, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of penis and other male genital organs (187)\(187.9) Malignant neoplasm of male genital organ, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''187.9''', NULL, + '(187.9) Malignant neoplasm of male genital organ, site unspecified', '(187.9) Malignant neoplasm of male genital organ, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of testis (186)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of testis (186)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''186''', NULL, + 'Malignant neoplasm of testis (186)', 'Malignant neoplasm of testis (186)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of testis (186)\(186.0) Malignant neoplasm of undescended testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of testis (186)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of testis (186)\(186.0) Malignant neoplasm of undescended testis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''186.0''', NULL, + '(186.0) Malignant neoplasm of undescended testis', '(186.0) Malignant neoplasm of undescended testis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of testis (186)\(186.9) Malignant neoplasm of other and unspecified testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of testis (186)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of genitourinary organs (179-189.99)\Malignant neoplasm of testis (186)\(186.9) Malignant neoplasm of other and unspecified testis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''186.9''', NULL, + '(186.9) Malignant neoplasm of other and unspecified testis', '(186.9) Malignant neoplasm of other and unspecified testis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''140'' AND ''149.99''', NULL, + 'Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)', 'Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''144''', NULL, + 'Malignant neoplasm of floor of mouth (144)', 'Malignant neoplasm of floor of mouth (144)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\(144.0) Malignant neoplasm of anterior portion of floor of mouth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\(144.0) Malignant neoplasm of anterior portion of floor of mouth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''144.0''', NULL, + '(144.0) Malignant neoplasm of anterior portion of floor of mouth', '(144.0) Malignant neoplasm of anterior portion of floor of mouth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\(144.1) Malignant neoplasm of lateral portion of floor of mouth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\(144.1) Malignant neoplasm of lateral portion of floor of mouth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''144.1''', NULL, + '(144.1) Malignant neoplasm of lateral portion of floor of mouth', '(144.1) Malignant neoplasm of lateral portion of floor of mouth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\(144.8) Malignant neoplasm of other sites of floor of mouth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\(144.8) Malignant neoplasm of other sites of floor of mouth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''144.8''', NULL, + '(144.8) Malignant neoplasm of other sites of floor of mouth', '(144.8) Malignant neoplasm of other sites of floor of mouth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\(144.9) Malignant neoplasm of floor of mouth, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of floor of mouth (144)\(144.9) Malignant neoplasm of floor of mouth, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''144.9''', NULL, + '(144.9) Malignant neoplasm of floor of mouth, part unspecified', '(144.9) Malignant neoplasm of floor of mouth, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''143''', NULL, + 'Malignant neoplasm of gum (143)', 'Malignant neoplasm of gum (143)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\(143.0) Malignant neoplasm of upper gum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\(143.0) Malignant neoplasm of upper gum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''143.0''', NULL, + '(143.0) Malignant neoplasm of upper gum', '(143.0) Malignant neoplasm of upper gum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\(143.1) Malignant neoplasm of lower gum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\(143.1) Malignant neoplasm of lower gum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''143.1''', NULL, + '(143.1) Malignant neoplasm of lower gum', '(143.1) Malignant neoplasm of lower gum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\(143.8) Malignant neoplasm of other sites of gum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\(143.8) Malignant neoplasm of other sites of gum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''143.8''', NULL, + '(143.8) Malignant neoplasm of other sites of gum', '(143.8) Malignant neoplasm of other sites of gum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\(143.9) Malignant neoplasm of gum, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of gum (143)\(143.9) Malignant neoplasm of gum, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''143.9''', NULL, + '(143.9) Malignant neoplasm of gum, unspecified', '(143.9) Malignant neoplasm of gum, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''148''', NULL, + 'Malignant neoplasm of hypopharynx (148)', 'Malignant neoplasm of hypopharynx (148)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.0) Malignant neoplasm of postcricoid region of hypopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.0) Malignant neoplasm of postcricoid region of hypopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''148.0''', NULL, + '(148.0) Malignant neoplasm of postcricoid region of hypopharynx', '(148.0) Malignant neoplasm of postcricoid region of hypopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.1) Malignant neoplasm of pyriform sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.1) Malignant neoplasm of pyriform sinus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''148.1''', NULL, + '(148.1) Malignant neoplasm of pyriform sinus', '(148.1) Malignant neoplasm of pyriform sinus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.2) Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.2) Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''148.2''', NULL, + '(148.2) Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect', '(148.2) Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.3) Malignant neoplasm of posterior hypopharyngeal wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.3) Malignant neoplasm of posterior hypopharyngeal wall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''148.3''', NULL, + '(148.3) Malignant neoplasm of posterior hypopharyngeal wall', '(148.3) Malignant neoplasm of posterior hypopharyngeal wall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.8) Malignant neoplasm of other specified sites of hypopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.8) Malignant neoplasm of other specified sites of hypopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''148.8''', NULL, + '(148.8) Malignant neoplasm of other specified sites of hypopharynx', '(148.8) Malignant neoplasm of other specified sites of hypopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.9) Malignant neoplasm of hypopharynx, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of hypopharynx (148)\(148.9) Malignant neoplasm of hypopharynx, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''148.9''', NULL, + '(148.9) Malignant neoplasm of hypopharynx, unspecified site', '(148.9) Malignant neoplasm of hypopharynx, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''140''', NULL, + 'Malignant neoplasm of lip (140)', 'Malignant neoplasm of lip (140)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.0) Malignant neoplasm of upper lip, vermilion border\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.0) Malignant neoplasm of upper lip, vermilion border\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''140.0''', NULL, + '(140.0) Malignant neoplasm of upper lip, vermilion border', '(140.0) Malignant neoplasm of upper lip, vermilion border', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.1) Malignant neoplasm of lower lip, vermilion border\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.1) Malignant neoplasm of lower lip, vermilion border\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''140.1''', NULL, + '(140.1) Malignant neoplasm of lower lip, vermilion border', '(140.1) Malignant neoplasm of lower lip, vermilion border', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.3) Malignant neoplasm of upper lip, inner aspect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.3) Malignant neoplasm of upper lip, inner aspect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''140.3''', NULL, + '(140.3) Malignant neoplasm of upper lip, inner aspect', '(140.3) Malignant neoplasm of upper lip, inner aspect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.4) Malignant neoplasm of lower lip, inner aspect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.4) Malignant neoplasm of lower lip, inner aspect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''140.4''', NULL, + '(140.4) Malignant neoplasm of lower lip, inner aspect', '(140.4) Malignant neoplasm of lower lip, inner aspect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.5) Malignant neoplasm of lip, unspecified, inner aspect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.5) Malignant neoplasm of lip, unspecified, inner aspect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''140.5''', NULL, + '(140.5) Malignant neoplasm of lip, unspecified, inner aspect', '(140.5) Malignant neoplasm of lip, unspecified, inner aspect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.6) Malignant neoplasm of commissure of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.6) Malignant neoplasm of commissure of lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''140.6''', NULL, + '(140.6) Malignant neoplasm of commissure of lip', '(140.6) Malignant neoplasm of commissure of lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.8) Malignant neoplasm of other sites of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.8) Malignant neoplasm of other sites of lip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''140.8''', NULL, + '(140.8) Malignant neoplasm of other sites of lip', '(140.8) Malignant neoplasm of other sites of lip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.9) Malignant neoplasm of lip, unspecified, vermilion border\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of lip (140)\(140.9) Malignant neoplasm of lip, unspecified, vermilion border\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''140.9''', NULL, + '(140.9) Malignant neoplasm of lip, unspecified, vermilion border', '(140.9) Malignant neoplasm of lip, unspecified, vermilion border', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''142''', NULL, + 'Malignant neoplasm of major salivary glands (142)', 'Malignant neoplasm of major salivary glands (142)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\(142.0) Malignant neoplasm of parotid gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\(142.0) Malignant neoplasm of parotid gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''142.0''', NULL, + '(142.0) Malignant neoplasm of parotid gland', '(142.0) Malignant neoplasm of parotid gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\(142.1) Malignant neoplasm of submandibular gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\(142.1) Malignant neoplasm of submandibular gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''142.1''', NULL, + '(142.1) Malignant neoplasm of submandibular gland', '(142.1) Malignant neoplasm of submandibular gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\(142.2) Malignant neoplasm of sublingual gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\(142.2) Malignant neoplasm of sublingual gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''142.2''', NULL, + '(142.2) Malignant neoplasm of sublingual gland', '(142.2) Malignant neoplasm of sublingual gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\(142.8) Malignant neoplasm of other major salivary glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\(142.8) Malignant neoplasm of other major salivary glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''142.8''', NULL, + '(142.8) Malignant neoplasm of other major salivary glands', '(142.8) Malignant neoplasm of other major salivary glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\(142.9) Malignant neoplasm of salivary gland, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of major salivary glands (142)\(142.9) Malignant neoplasm of salivary gland, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''142.9''', NULL, + '(142.9) Malignant neoplasm of salivary gland, unspecified', '(142.9) Malignant neoplasm of salivary gland, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''147''', NULL, + 'Malignant neoplasm of nasopharynx (147)', 'Malignant neoplasm of nasopharynx (147)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.0) Malignant neoplasm of superior wall of nasopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.0) Malignant neoplasm of superior wall of nasopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''147.0''', NULL, + '(147.0) Malignant neoplasm of superior wall of nasopharynx', '(147.0) Malignant neoplasm of superior wall of nasopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.1) Malignant neoplasm of posterior wall of nasopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.1) Malignant neoplasm of posterior wall of nasopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''147.1''', NULL, + '(147.1) Malignant neoplasm of posterior wall of nasopharynx', '(147.1) Malignant neoplasm of posterior wall of nasopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.2) Malignant neoplasm of lateral wall of nasopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.2) Malignant neoplasm of lateral wall of nasopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''147.2''', NULL, + '(147.2) Malignant neoplasm of lateral wall of nasopharynx', '(147.2) Malignant neoplasm of lateral wall of nasopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.3) Malignant neoplasm of anterior wall of nasopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.3) Malignant neoplasm of anterior wall of nasopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''147.3''', NULL, + '(147.3) Malignant neoplasm of anterior wall of nasopharynx', '(147.3) Malignant neoplasm of anterior wall of nasopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.8) Malignant neoplasm of other specified sites of nasopharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.8) Malignant neoplasm of other specified sites of nasopharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''147.8''', NULL, + '(147.8) Malignant neoplasm of other specified sites of nasopharynx', '(147.8) Malignant neoplasm of other specified sites of nasopharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.9) Malignant neoplasm of nasopharynx, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of nasopharynx (147)\(147.9) Malignant neoplasm of nasopharynx, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''147.9''', NULL, + '(147.9) Malignant neoplasm of nasopharynx, unspecified site', '(147.9) Malignant neoplasm of nasopharynx, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''146''', NULL, + 'Malignant neoplasm of oropharynx (146)', 'Malignant neoplasm of oropharynx (146)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.0) Malignant neoplasm of tonsil\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.0) Malignant neoplasm of tonsil\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''146.0''', NULL, + '(146.0) Malignant neoplasm of tonsil', '(146.0) Malignant neoplasm of tonsil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.1) Malignant neoplasm of tonsillar fossa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.1) Malignant neoplasm of tonsillar fossa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''146.1''', NULL, + '(146.1) Malignant neoplasm of tonsillar fossa', '(146.1) Malignant neoplasm of tonsillar fossa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.2) Malignant neoplasm of tonsillar pillars (anterior) (posterior)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.2) Malignant neoplasm of tonsillar pillars (anterior) (posterior)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''146.2) Malignant neoplasm of tonsillar pillars (anterior) (posterior''', NULL, + '(146.2) Malignant neoplasm of tonsillar pillars (anterior) (posterior)', '(146.2) Malignant neoplasm of tonsillar pillars (anterior) (posterior)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.3) Malignant neoplasm of vallecula epiglottica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.3) Malignant neoplasm of vallecula epiglottica\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''146.3''', NULL, + '(146.3) Malignant neoplasm of vallecula epiglottica', '(146.3) Malignant neoplasm of vallecula epiglottica', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.4) Malignant neoplasm of anterior aspect of epiglottis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.4) Malignant neoplasm of anterior aspect of epiglottis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''146.4''', NULL, + '(146.4) Malignant neoplasm of anterior aspect of epiglottis', '(146.4) Malignant neoplasm of anterior aspect of epiglottis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.5) Malignant neoplasm of junctional region of oropharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.5) Malignant neoplasm of junctional region of oropharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''146.5''', NULL, + '(146.5) Malignant neoplasm of junctional region of oropharynx', '(146.5) Malignant neoplasm of junctional region of oropharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.6) Malignant neoplasm of lateral wall of oropharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.6) Malignant neoplasm of lateral wall of oropharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''146.6''', NULL, + '(146.6) Malignant neoplasm of lateral wall of oropharynx', '(146.6) Malignant neoplasm of lateral wall of oropharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.7) Malignant neoplasm of posterior wall of oropharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.7) Malignant neoplasm of posterior wall of oropharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''146.7''', NULL, + '(146.7) Malignant neoplasm of posterior wall of oropharynx', '(146.7) Malignant neoplasm of posterior wall of oropharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.8) Malignant neoplasm of other specified sites of oropharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.8) Malignant neoplasm of other specified sites of oropharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''146.8''', NULL, + '(146.8) Malignant neoplasm of other specified sites of oropharynx', '(146.8) Malignant neoplasm of other specified sites of oropharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.9) Malignant neoplasm of oropharynx, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of oropharynx (146)\(146.9) Malignant neoplasm of oropharynx, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''146.9''', NULL, + '(146.9) Malignant neoplasm of oropharynx, unspecified site', '(146.9) Malignant neoplasm of oropharynx, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''149''', NULL, + 'Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)', 'Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\(149.0) Malignant neoplasm of pharynx, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\(149.0) Malignant neoplasm of pharynx, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''149.0''', NULL, + '(149.0) Malignant neoplasm of pharynx, unspecified', '(149.0) Malignant neoplasm of pharynx, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\(149.1) Malignant neoplasm of waldeyer''s ring\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\(149.1) Malignant neoplasm of waldeyer''s ring\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''149.1''', NULL, + '(149.1) Malignant neoplasm of waldeyer''s ring', '(149.1) Malignant neoplasm of waldeyer''s ring', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\(149.8) Malignant neoplasm of other sites within the lip and oral cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\(149.8) Malignant neoplasm of other sites within the lip and oral cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''149.8''', NULL, + '(149.8) Malignant neoplasm of other sites within the lip and oral cavity', '(149.8) Malignant neoplasm of other sites within the lip and oral cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\(149.9) Malignant neoplasm of ill-defined sites within the lip and oral cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\(149.9) Malignant neoplasm of ill-defined sites within the lip and oral cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''149.9''', NULL, + '(149.9) Malignant neoplasm of ill-defined sites within the lip and oral cavity', '(149.9) Malignant neoplasm of ill-defined sites within the lip and oral cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''145''', NULL, + 'Malignant neoplasm of other and unspecified parts of mouth (145)', 'Malignant neoplasm of other and unspecified parts of mouth (145)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.0) Malignant neoplasm of cheek mucosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.0) Malignant neoplasm of cheek mucosa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''145.0''', NULL, + '(145.0) Malignant neoplasm of cheek mucosa', '(145.0) Malignant neoplasm of cheek mucosa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.1) Malignant neoplasm of vestibule of mouth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.1) Malignant neoplasm of vestibule of mouth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''145.1''', NULL, + '(145.1) Malignant neoplasm of vestibule of mouth', '(145.1) Malignant neoplasm of vestibule of mouth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.2) Malignant neoplasm of hard palate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.2) Malignant neoplasm of hard palate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''145.2''', NULL, + '(145.2) Malignant neoplasm of hard palate', '(145.2) Malignant neoplasm of hard palate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.3) Malignant neoplasm of soft palate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.3) Malignant neoplasm of soft palate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''145.3''', NULL, + '(145.3) Malignant neoplasm of soft palate', '(145.3) Malignant neoplasm of soft palate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.4) Malignant neoplasm of uvula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.4) Malignant neoplasm of uvula\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''145.4''', NULL, + '(145.4) Malignant neoplasm of uvula', '(145.4) Malignant neoplasm of uvula', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.5) Malignant neoplasm of palate, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.5) Malignant neoplasm of palate, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''145.5''', NULL, + '(145.5) Malignant neoplasm of palate, unspecified', '(145.5) Malignant neoplasm of palate, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.6) Malignant neoplasm of retromolar area\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.6) Malignant neoplasm of retromolar area\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''145.6''', NULL, + '(145.6) Malignant neoplasm of retromolar area', '(145.6) Malignant neoplasm of retromolar area', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.8) Malignant neoplasm of other specified parts of mouth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.8) Malignant neoplasm of other specified parts of mouth\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''145.8''', NULL, + '(145.8) Malignant neoplasm of other specified parts of mouth', '(145.8) Malignant neoplasm of other specified parts of mouth', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.9) Malignant neoplasm of mouth, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of other and unspecified parts of mouth (145)\(145.9) Malignant neoplasm of mouth, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''145.9''', NULL, + '(145.9) Malignant neoplasm of mouth, unspecified', '(145.9) Malignant neoplasm of mouth, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''141''', NULL, + 'Malignant neoplasm of tongue (141)', 'Malignant neoplasm of tongue (141)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.0) Malignant neoplasm of base of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.0) Malignant neoplasm of base of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''141.0''', NULL, + '(141.0) Malignant neoplasm of base of tongue', '(141.0) Malignant neoplasm of base of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.1) Malignant neoplasm of dorsal surface of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.1) Malignant neoplasm of dorsal surface of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''141.1''', NULL, + '(141.1) Malignant neoplasm of dorsal surface of tongue', '(141.1) Malignant neoplasm of dorsal surface of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.2) Malignant neoplasm of tip and lateral border of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.2) Malignant neoplasm of tip and lateral border of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''141.2''', NULL, + '(141.2) Malignant neoplasm of tip and lateral border of tongue', '(141.2) Malignant neoplasm of tip and lateral border of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.3) Malignant neoplasm of ventral surface of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.3) Malignant neoplasm of ventral surface of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''141.3''', NULL, + '(141.3) Malignant neoplasm of ventral surface of tongue', '(141.3) Malignant neoplasm of ventral surface of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.4) Malignant neoplasm of anterior two-thirds of tongue, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.4) Malignant neoplasm of anterior two-thirds of tongue, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''141.4''', NULL, + '(141.4) Malignant neoplasm of anterior two-thirds of tongue, part unspecified', '(141.4) Malignant neoplasm of anterior two-thirds of tongue, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.5) Malignant neoplasm of junctional zone of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.5) Malignant neoplasm of junctional zone of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''141.5''', NULL, + '(141.5) Malignant neoplasm of junctional zone of tongue', '(141.5) Malignant neoplasm of junctional zone of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.6) Malignant neoplasm of lingual tonsil\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.6) Malignant neoplasm of lingual tonsil\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''141.6''', NULL, + '(141.6) Malignant neoplasm of lingual tonsil', '(141.6) Malignant neoplasm of lingual tonsil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.8) Malignant neoplasm of other sites of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.8) Malignant neoplasm of other sites of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''141.8''', NULL, + '(141.8) Malignant neoplasm of other sites of tongue', '(141.8) Malignant neoplasm of other sites of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.9) Malignant neoplasm of tongue, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\Malignant neoplasm of tongue (141)\(141.9) Malignant neoplasm of tongue, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''141.9''', NULL, + '(141.9) Malignant neoplasm of tongue, unspecified', '(141.9) Malignant neoplasm of tongue, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''200'' AND ''208.99''', NULL, + 'Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)', 'Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201''', NULL, + 'Hodgkin''s disease (201)', 'Hodgkin''s disease (201)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.7''', NULL, + 'Hodgkin''s disease, lymphocytic depletion (201.7)', 'Hodgkin''s disease, lymphocytic depletion (201.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.70) Hodgkin''s disease, lymphocytic depletion, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.70) Hodgkin''s disease, lymphocytic depletion, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.70''', NULL, + '(201.70) Hodgkin''s disease, lymphocytic depletion, unspecified site, extranodal and solid organ sites', '(201.70) Hodgkin''s disease, lymphocytic depletion, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.71) Hodgkin''s disease, lymphocytic depletion, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.71) Hodgkin''s disease, lymphocytic depletion, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.71''', NULL, + '(201.71) Hodgkin''s disease, lymphocytic depletion, lymph nodes of head, face, and neck', '(201.71) Hodgkin''s disease, lymphocytic depletion, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.72) Hodgkin''s disease, lymphocytic depletion, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.72) Hodgkin''s disease, lymphocytic depletion, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.72''', NULL, + '(201.72) Hodgkin''s disease, lymphocytic depletion, intrathoracic lymph nodes', '(201.72) Hodgkin''s disease, lymphocytic depletion, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.73) Hodgkin''s disease, lymphocytic depletion, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.73) Hodgkin''s disease, lymphocytic depletion, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.73''', NULL, + '(201.73) Hodgkin''s disease, lymphocytic depletion, intra-abdominal lymph nodes', '(201.73) Hodgkin''s disease, lymphocytic depletion, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.74) Hodgkin''s disease, lymphocytic depletion, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.74) Hodgkin''s disease, lymphocytic depletion, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.74''', NULL, + '(201.74) Hodgkin''s disease, lymphocytic depletion, lymph nodes of axilla and upper limb', '(201.74) Hodgkin''s disease, lymphocytic depletion, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.75) Hodgkin''s disease, lymphocytic depletion, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.75) Hodgkin''s disease, lymphocytic depletion, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.75''', NULL, + '(201.75) Hodgkin''s disease, lymphocytic depletion, lymph nodes of inguinal region and lower limb', '(201.75) Hodgkin''s disease, lymphocytic depletion, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.76) Hodgkin''s disease, lymphocytic depletion, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.76) Hodgkin''s disease, lymphocytic depletion, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.76''', NULL, + '(201.76) Hodgkin''s disease, lymphocytic depletion, intrapelvic lymph nodes', '(201.76) Hodgkin''s disease, lymphocytic depletion, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.77) Hodgkin''s disease, lymphocytic depletion, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.77) Hodgkin''s disease, lymphocytic depletion, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.77''', NULL, + '(201.77) Hodgkin''s disease, lymphocytic depletion, spleen', '(201.77) Hodgkin''s disease, lymphocytic depletion, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.78) Hodgkin''s disease, lymphocytic depletion, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic depletion (201.7)\(201.78) Hodgkin''s disease, lymphocytic depletion, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.78''', NULL, + '(201.78) Hodgkin''s disease, lymphocytic depletion, lymph nodes of multiple sites', '(201.78) Hodgkin''s disease, lymphocytic depletion, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.4''', NULL, + 'Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)', 'Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.40) Hodgkin''s disease, lymphocytic-histiocytic predominance, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.40) Hodgkin''s disease, lymphocytic-histiocytic predominance, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.40''', NULL, + '(201.40) Hodgkin''s disease, lymphocytic-histiocytic predominance, unspecified site, extranodal and solid organ sites', '(201.40) Hodgkin''s disease, lymphocytic-histiocytic predominance, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.41) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.41) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.41''', NULL, + '(201.41) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of head, face, and neck', '(201.41) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.42) Hodgkin''s disease, lymphocytic-histiocytic predominance, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.42) Hodgkin''s disease, lymphocytic-histiocytic predominance, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.42''', NULL, + '(201.42) Hodgkin''s disease, lymphocytic-histiocytic predominance, intrathoracic lymph nodes', '(201.42) Hodgkin''s disease, lymphocytic-histiocytic predominance, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.43) Hodgkin''s disease, lymphocytic-histiocytic predominance, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.43) Hodgkin''s disease, lymphocytic-histiocytic predominance, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.43''', NULL, + '(201.43) Hodgkin''s disease, lymphocytic-histiocytic predominance, intra-abdominal lymph nodes', '(201.43) Hodgkin''s disease, lymphocytic-histiocytic predominance, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.44) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.44) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.44''', NULL, + '(201.44) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of axilla and upper limb', '(201.44) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.45) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.45) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.45''', NULL, + '(201.45) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of inguinal region and lower limb', '(201.45) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.46) Hodgkin''s disease, lymphocytic-histiocytic predominance, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.46) Hodgkin''s disease, lymphocytic-histiocytic predominance, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.46''', NULL, + '(201.46) Hodgkin''s disease, lymphocytic-histiocytic predominance, intrapelvic lymph nodes', '(201.46) Hodgkin''s disease, lymphocytic-histiocytic predominance, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.47) Hodgkin''s disease, lymphocytic-histiocytic predominance, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.47) Hodgkin''s disease, lymphocytic-histiocytic predominance, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.47''', NULL, + '(201.47) Hodgkin''s disease, lymphocytic-histiocytic predominance, spleen', '(201.47) Hodgkin''s disease, lymphocytic-histiocytic predominance, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.48) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, lymphocytic-histiocytic predominance (201.4)\(201.48) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.48''', NULL, + '(201.48) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of multiple sites', '(201.48) Hodgkin''s disease, lymphocytic-histiocytic predominance, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.6''', NULL, + 'Hodgkin''s disease, mixed cellularity (201.6)', 'Hodgkin''s disease, mixed cellularity (201.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.60) Hodgkin''s disease, mixed cellularity, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.60) Hodgkin''s disease, mixed cellularity, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.60''', NULL, + '(201.60) Hodgkin''s disease, mixed cellularity, unspecified site, extranodal and solid organ sites', '(201.60) Hodgkin''s disease, mixed cellularity, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.61) Hodgkin''s disease, mixed cellularity, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.61) Hodgkin''s disease, mixed cellularity, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.61''', NULL, + '(201.61) Hodgkin''s disease, mixed cellularity, lymph nodes of head, face, and neck', '(201.61) Hodgkin''s disease, mixed cellularity, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.62) Hodgkin''s disease, mixed cellularity, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.62) Hodgkin''s disease, mixed cellularity, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.62''', NULL, + '(201.62) Hodgkin''s disease, mixed cellularity, intrathoracic lymph nodes', '(201.62) Hodgkin''s disease, mixed cellularity, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.63) Hodgkin''s disease, mixed cellularity, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.63) Hodgkin''s disease, mixed cellularity, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.63''', NULL, + '(201.63) Hodgkin''s disease, mixed cellularity, intra-abdominal lymph nodes', '(201.63) Hodgkin''s disease, mixed cellularity, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.64) Hodgkin''s disease, mixed cellularity, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.64) Hodgkin''s disease, mixed cellularity, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.64''', NULL, + '(201.64) Hodgkin''s disease, mixed cellularity, lymph nodes of axilla and upper limb', '(201.64) Hodgkin''s disease, mixed cellularity, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.65) Hodgkin''s disease, mixed cellularity, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.65) Hodgkin''s disease, mixed cellularity, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.65''', NULL, + '(201.65) Hodgkin''s disease, mixed cellularity, lymph nodes of inguinal region and lower limb', '(201.65) Hodgkin''s disease, mixed cellularity, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.66) Hodgkin''s disease, mixed cellularity, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.66) Hodgkin''s disease, mixed cellularity, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.66''', NULL, + '(201.66) Hodgkin''s disease, mixed cellularity, intrapelvic lymph nodes', '(201.66) Hodgkin''s disease, mixed cellularity, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.67) Hodgkin''s disease, mixed cellularity, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.67) Hodgkin''s disease, mixed cellularity, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.67''', NULL, + '(201.67) Hodgkin''s disease, mixed cellularity, spleen', '(201.67) Hodgkin''s disease, mixed cellularity, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.68) Hodgkin''s disease, mixed cellularity, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, mixed cellularity (201.6)\(201.68) Hodgkin''s disease, mixed cellularity, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.68''', NULL, + '(201.68) Hodgkin''s disease, mixed cellularity, lymph nodes of multiple sites', '(201.68) Hodgkin''s disease, mixed cellularity, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.5''', NULL, + 'Hodgkin''s disease, nodular sclerosis (201.5)', 'Hodgkin''s disease, nodular sclerosis (201.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.50) Hodgkin''s disease, nodular sclerosis, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.50) Hodgkin''s disease, nodular sclerosis, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.50''', NULL, + '(201.50) Hodgkin''s disease, nodular sclerosis, unspecified site, extranodal and solid organ sites', '(201.50) Hodgkin''s disease, nodular sclerosis, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.51) Hodgkin''s disease, nodular sclerosis, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.51) Hodgkin''s disease, nodular sclerosis, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.51''', NULL, + '(201.51) Hodgkin''s disease, nodular sclerosis, lymph nodes of head, face, and neck', '(201.51) Hodgkin''s disease, nodular sclerosis, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.52) Hodgkin''s disease, nodular sclerosis, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.52) Hodgkin''s disease, nodular sclerosis, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.52''', NULL, + '(201.52) Hodgkin''s disease, nodular sclerosis, intrathoracic lymph nodes', '(201.52) Hodgkin''s disease, nodular sclerosis, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.53) Hodgkin''s disease, nodular sclerosis, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.53) Hodgkin''s disease, nodular sclerosis, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.53''', NULL, + '(201.53) Hodgkin''s disease, nodular sclerosis, intra-abdominal lymph nodes', '(201.53) Hodgkin''s disease, nodular sclerosis, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.54) Hodgkin''s disease, nodular sclerosis, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.54) Hodgkin''s disease, nodular sclerosis, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.54''', NULL, + '(201.54) Hodgkin''s disease, nodular sclerosis, lymph nodes of axilla and upper limb', '(201.54) Hodgkin''s disease, nodular sclerosis, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.55) Hodgkin''s disease, nodular sclerosis, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.55) Hodgkin''s disease, nodular sclerosis, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.55''', NULL, + '(201.55) Hodgkin''s disease, nodular sclerosis, lymph nodes of inguinal region and lower limb', '(201.55) Hodgkin''s disease, nodular sclerosis, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.56) Hodgkin''s disease, nodular sclerosis, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.56) Hodgkin''s disease, nodular sclerosis, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.56''', NULL, + '(201.56) Hodgkin''s disease, nodular sclerosis, intrapelvic lymph nodes', '(201.56) Hodgkin''s disease, nodular sclerosis, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.57) Hodgkin''s disease, nodular sclerosis, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.57) Hodgkin''s disease, nodular sclerosis, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.57''', NULL, + '(201.57) Hodgkin''s disease, nodular sclerosis, spleen', '(201.57) Hodgkin''s disease, nodular sclerosis, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.58) Hodgkin''s disease, nodular sclerosis, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, nodular sclerosis (201.5)\(201.58) Hodgkin''s disease, nodular sclerosis, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.58''', NULL, + '(201.58) Hodgkin''s disease, nodular sclerosis, lymph nodes of multiple sites', '(201.58) Hodgkin''s disease, nodular sclerosis, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.9''', NULL, + 'Hodgkin''s disease, unspecified type (201.9)', 'Hodgkin''s disease, unspecified type (201.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.90) Hodgkin''s disease, unspecified type, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.90) Hodgkin''s disease, unspecified type, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.90''', NULL, + '(201.90) Hodgkin''s disease, unspecified type, unspecified site, extranodal and solid organ sites', '(201.90) Hodgkin''s disease, unspecified type, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.91) Hodgkin''s disease, unspecified type, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.91) Hodgkin''s disease, unspecified type, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.91''', NULL, + '(201.91) Hodgkin''s disease, unspecified type, lymph nodes of head, face, and neck', '(201.91) Hodgkin''s disease, unspecified type, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.92) Hodgkin''s disease, unspecified type, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.92) Hodgkin''s disease, unspecified type, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.92''', NULL, + '(201.92) Hodgkin''s disease, unspecified type, intrathoracic lymph nodes', '(201.92) Hodgkin''s disease, unspecified type, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.93) Hodgkin''s disease, unspecified type, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.93) Hodgkin''s disease, unspecified type, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.93''', NULL, + '(201.93) Hodgkin''s disease, unspecified type, intra-abdominal lymph nodes', '(201.93) Hodgkin''s disease, unspecified type, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.94) Hodgkin''s disease, unspecified type, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.94) Hodgkin''s disease, unspecified type, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.94''', NULL, + '(201.94) Hodgkin''s disease, unspecified type, lymph nodes of axilla and upper limb', '(201.94) Hodgkin''s disease, unspecified type, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.95) Hodgkin''s disease, unspecified type, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.95) Hodgkin''s disease, unspecified type, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.95''', NULL, + '(201.95) Hodgkin''s disease, unspecified type, lymph nodes of inguinal region and lower limb', '(201.95) Hodgkin''s disease, unspecified type, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.96) Hodgkin''s disease, unspecified type, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.96) Hodgkin''s disease, unspecified type, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.96''', NULL, + '(201.96) Hodgkin''s disease, unspecified type, intrapelvic lymph nodes', '(201.96) Hodgkin''s disease, unspecified type, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.97) Hodgkin''s disease, unspecified type, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.97) Hodgkin''s disease, unspecified type, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.97''', NULL, + '(201.97) Hodgkin''s disease, unspecified type, spleen', '(201.97) Hodgkin''s disease, unspecified type, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.98) Hodgkin''s disease, unspecified type, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s disease, unspecified type (201.9)\(201.98) Hodgkin''s disease, unspecified type, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.98''', NULL, + '(201.98) Hodgkin''s disease, unspecified type, lymph nodes of multiple sites', '(201.98) Hodgkin''s disease, unspecified type, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.1''', NULL, + 'Hodgkin''s granuloma (201.1)', 'Hodgkin''s granuloma (201.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.10) Hodgkin''s granuloma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.10) Hodgkin''s granuloma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.10''', NULL, + '(201.10) Hodgkin''s granuloma, unspecified site, extranodal and solid organ sites', '(201.10) Hodgkin''s granuloma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.11) Hodgkin''s granuloma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.11) Hodgkin''s granuloma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.11''', NULL, + '(201.11) Hodgkin''s granuloma, lymph nodes of head, face, and neck', '(201.11) Hodgkin''s granuloma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.12) Hodgkin''s granuloma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.12) Hodgkin''s granuloma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.12''', NULL, + '(201.12) Hodgkin''s granuloma, intrathoracic lymph nodes', '(201.12) Hodgkin''s granuloma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.13) Hodgkin''s granuloma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.13) Hodgkin''s granuloma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.13''', NULL, + '(201.13) Hodgkin''s granuloma, intra-abdominal lymph nodes', '(201.13) Hodgkin''s granuloma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.14) Hodgkin''s granuloma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.14) Hodgkin''s granuloma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.14''', NULL, + '(201.14) Hodgkin''s granuloma, lymph nodes of axilla and upper limb', '(201.14) Hodgkin''s granuloma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.15) Hodgkin''s granuloma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.15) Hodgkin''s granuloma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.15''', NULL, + '(201.15) Hodgkin''s granuloma, lymph nodes of inguinal region and lower limb', '(201.15) Hodgkin''s granuloma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.16) Hodgkin''s granuloma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.16) Hodgkin''s granuloma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.16''', NULL, + '(201.16) Hodgkin''s granuloma, intrapelvic lymph nodes', '(201.16) Hodgkin''s granuloma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.17) Hodgkin''s granuloma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.17) Hodgkin''s granuloma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.17''', NULL, + '(201.17) Hodgkin''s granuloma, spleen', '(201.17) Hodgkin''s granuloma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.18) Hodgkin''s granuloma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s granuloma (201.1)\(201.18) Hodgkin''s granuloma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.18''', NULL, + '(201.18) Hodgkin''s granuloma, lymph nodes of multiple sites', '(201.18) Hodgkin''s granuloma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.0''', NULL, + 'Hodgkin''s paragranuloma (201.0)', 'Hodgkin''s paragranuloma (201.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.00) Hodgkin''s paragranuloma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.00) Hodgkin''s paragranuloma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.00''', NULL, + '(201.00) Hodgkin''s paragranuloma, unspecified site, extranodal and solid organ sites', '(201.00) Hodgkin''s paragranuloma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.01) Hodgkin''s paragranuloma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.01) Hodgkin''s paragranuloma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.01''', NULL, + '(201.01) Hodgkin''s paragranuloma, lymph nodes of head, face, and neck', '(201.01) Hodgkin''s paragranuloma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.02) Hodgkin''s paragranuloma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.02) Hodgkin''s paragranuloma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.02''', NULL, + '(201.02) Hodgkin''s paragranuloma, intrathoracic lymph nodes', '(201.02) Hodgkin''s paragranuloma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.03) Hodgkin''s paragranuloma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.03) Hodgkin''s paragranuloma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.03''', NULL, + '(201.03) Hodgkin''s paragranuloma, intra-abdominal lymph nodes', '(201.03) Hodgkin''s paragranuloma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.04) Hodgkin''s paragranuloma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.04) Hodgkin''s paragranuloma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.04''', NULL, + '(201.04) Hodgkin''s paragranuloma, lymph nodes of axilla and upper limb', '(201.04) Hodgkin''s paragranuloma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.05) Hodgkin''s paragranuloma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.05) Hodgkin''s paragranuloma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.05''', NULL, + '(201.05) Hodgkin''s paragranuloma, lymph nodes of inguinal region and lower limb', '(201.05) Hodgkin''s paragranuloma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.06) Hodgkin''s paragranuloma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.06) Hodgkin''s paragranuloma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.06''', NULL, + '(201.06) Hodgkin''s paragranuloma, intrapelvic lymph nodes', '(201.06) Hodgkin''s paragranuloma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.07) Hodgkin''s paragranuloma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.07) Hodgkin''s paragranuloma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.07''', NULL, + '(201.07) Hodgkin''s paragranuloma, spleen', '(201.07) Hodgkin''s paragranuloma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.08) Hodgkin''s paragranuloma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s paragranuloma (201.0)\(201.08) Hodgkin''s paragranuloma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.08''', NULL, + '(201.08) Hodgkin''s paragranuloma, lymph nodes of multiple sites', '(201.08) Hodgkin''s paragranuloma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.2''', NULL, + 'Hodgkin''s sarcoma (201.2)', 'Hodgkin''s sarcoma (201.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.20) Hodgkin''s sarcoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.20) Hodgkin''s sarcoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.20''', NULL, + '(201.20) Hodgkin''s sarcoma, unspecified site, extranodal and solid organ sites', '(201.20) Hodgkin''s sarcoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.21) Hodgkin''s sarcoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.21) Hodgkin''s sarcoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.21''', NULL, + '(201.21) Hodgkin''s sarcoma, lymph nodes of head, face, and neck', '(201.21) Hodgkin''s sarcoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.22) Hodgkin''s sarcoma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.22) Hodgkin''s sarcoma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.22''', NULL, + '(201.22) Hodgkin''s sarcoma, intrathoracic lymph nodes', '(201.22) Hodgkin''s sarcoma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.23) Hodgkin''s sarcoma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.23) Hodgkin''s sarcoma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.23''', NULL, + '(201.23) Hodgkin''s sarcoma, intra-abdominal lymph nodes', '(201.23) Hodgkin''s sarcoma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.24) Hodgkin''s sarcoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.24) Hodgkin''s sarcoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.24''', NULL, + '(201.24) Hodgkin''s sarcoma, lymph nodes of axilla and upper limb', '(201.24) Hodgkin''s sarcoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.25) Hodgkin''s sarcoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.25) Hodgkin''s sarcoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.25''', NULL, + '(201.25) Hodgkin''s sarcoma, lymph nodes of inguinal region and lower limb', '(201.25) Hodgkin''s sarcoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.26) Hodgkin''s sarcoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.26) Hodgkin''s sarcoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.26''', NULL, + '(201.26) Hodgkin''s sarcoma, intrapelvic lymph nodes', '(201.26) Hodgkin''s sarcoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.27) Hodgkin''s sarcoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.27) Hodgkin''s sarcoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.27''', NULL, + '(201.27) Hodgkin''s sarcoma, spleen', '(201.27) Hodgkin''s sarcoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.28) Hodgkin''s sarcoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Hodgkin''s disease (201)\Hodgkin''s sarcoma (201.2)\(201.28) Hodgkin''s sarcoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''201.28''', NULL, + '(201.28) Hodgkin''s sarcoma, lymph nodes of multiple sites', '(201.28) Hodgkin''s sarcoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208''', NULL, + 'Leukemia of unspecified cell type (208)', 'Leukemia of unspecified cell type (208)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, acute (208.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, acute (208.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.0''', NULL, + 'Leukemia of unspecified cell type, acute (208.0)', 'Leukemia of unspecified cell type, acute (208.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, acute (208.0)\(208.00) Acute leukemia of unspecified cell type, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, acute (208.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, acute (208.0)\(208.00) Acute leukemia of unspecified cell type, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.00''', NULL, + '(208.00) Acute leukemia of unspecified cell type, without mention of having achieved remission', '(208.00) Acute leukemia of unspecified cell type, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, acute (208.0)\(208.01) Acute leukemia of unspecified cell type, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, acute (208.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, acute (208.0)\(208.01) Acute leukemia of unspecified cell type, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.01''', NULL, + '(208.01) Acute leukemia of unspecified cell type, in remission', '(208.01) Acute leukemia of unspecified cell type, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, acute (208.0)\(208.02) Acute leukemia of unspecified cell type, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, acute (208.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, acute (208.0)\(208.02) Acute leukemia of unspecified cell type, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.02''', NULL, + '(208.02) Acute leukemia of unspecified cell type, in relapse', '(208.02) Acute leukemia of unspecified cell type, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, chronic (208.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, chronic (208.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.1''', NULL, + 'Leukemia of unspecified cell type, chronic (208.1)', 'Leukemia of unspecified cell type, chronic (208.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, chronic (208.1)\(208.10) Chronic leukemia of unspecified cell type, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, chronic (208.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, chronic (208.1)\(208.10) Chronic leukemia of unspecified cell type, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.10''', NULL, + '(208.10) Chronic leukemia of unspecified cell type, without mention of having achieved remission', '(208.10) Chronic leukemia of unspecified cell type, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, chronic (208.1)\(208.11) Chronic leukemia of unspecified cell type, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, chronic (208.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, chronic (208.1)\(208.11) Chronic leukemia of unspecified cell type, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.11''', NULL, + '(208.11) Chronic leukemia of unspecified cell type, in remission', '(208.11) Chronic leukemia of unspecified cell type, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, chronic (208.1)\(208.12) Chronic leukemia of unspecified cell type, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, chronic (208.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, chronic (208.1)\(208.12) Chronic leukemia of unspecified cell type, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.12''', NULL, + '(208.12) Chronic leukemia of unspecified cell type, in relapse', '(208.12) Chronic leukemia of unspecified cell type, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, subacute (208.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, subacute (208.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.2''', NULL, + 'Leukemia of unspecified cell type, subacute (208.2)', 'Leukemia of unspecified cell type, subacute (208.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, subacute (208.2)\(208.20) Subacute leukemia of unspecified cell type, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, subacute (208.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, subacute (208.2)\(208.20) Subacute leukemia of unspecified cell type, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.20''', NULL, + '(208.20) Subacute leukemia of unspecified cell type, without mention of having achieved remission', '(208.20) Subacute leukemia of unspecified cell type, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, subacute (208.2)\(208.21) Subacute leukemia of unspecified cell type, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, subacute (208.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, subacute (208.2)\(208.21) Subacute leukemia of unspecified cell type, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.21''', NULL, + '(208.21) Subacute leukemia of unspecified cell type, in remission', '(208.21) Subacute leukemia of unspecified cell type, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, subacute (208.2)\(208.22) Subacute leukemia of unspecified cell type, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, subacute (208.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Leukemia of unspecified cell type, subacute (208.2)\(208.22) Subacute leukemia of unspecified cell type, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.22''', NULL, + '(208.22) Subacute leukemia of unspecified cell type, in relapse', '(208.22) Subacute leukemia of unspecified cell type, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Other leukemia of unspecified cell type (208.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Other leukemia of unspecified cell type (208.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.8''', NULL, + 'Other leukemia of unspecified cell type (208.8)', 'Other leukemia of unspecified cell type (208.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Other leukemia of unspecified cell type (208.8)\(208.80) Other leukemia of unspecified cell type, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Other leukemia of unspecified cell type (208.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Other leukemia of unspecified cell type (208.8)\(208.80) Other leukemia of unspecified cell type, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.80''', NULL, + '(208.80) Other leukemia of unspecified cell type, without mention of having achieved remission', '(208.80) Other leukemia of unspecified cell type, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Other leukemia of unspecified cell type (208.8)\(208.81) Other leukemia of unspecified cell type, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Other leukemia of unspecified cell type (208.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Other leukemia of unspecified cell type (208.8)\(208.81) Other leukemia of unspecified cell type, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.81''', NULL, + '(208.81) Other leukemia of unspecified cell type, in remission', '(208.81) Other leukemia of unspecified cell type, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Other leukemia of unspecified cell type (208.8)\(208.82) Other leukemia of unspecified cell type, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Other leukemia of unspecified cell type (208.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Other leukemia of unspecified cell type (208.8)\(208.82) Other leukemia of unspecified cell type, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.82''', NULL, + '(208.82) Other leukemia of unspecified cell type, in relapse', '(208.82) Other leukemia of unspecified cell type, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Unspecified leukemia (208.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Unspecified leukemia (208.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.9''', NULL, + 'Unspecified leukemia (208.9)', 'Unspecified leukemia (208.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Unspecified leukemia (208.9)\(208.90) Unspecified leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Unspecified leukemia (208.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Unspecified leukemia (208.9)\(208.90) Unspecified leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.90''', NULL, + '(208.90) Unspecified leukemia, without mention of having achieved remission', '(208.90) Unspecified leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Unspecified leukemia (208.9)\(208.91) Unspecified leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Unspecified leukemia (208.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Unspecified leukemia (208.9)\(208.91) Unspecified leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.91''', NULL, + '(208.91) Unspecified leukemia, in remission', '(208.91) Unspecified leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Unspecified leukemia (208.9)\(208.92) Unspecified leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Unspecified leukemia (208.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Leukemia of unspecified cell type (208)\Unspecified leukemia (208.9)\(208.92) Unspecified leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''208.92''', NULL, + '(208.92) Unspecified leukemia, in relapse', '(208.92) Unspecified leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204''', NULL, + 'Lymphoid leukemia (204)', 'Lymphoid leukemia (204)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, acute (204.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, acute (204.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.0''', NULL, + 'Lymphoid leukemia, acute (204.0)', 'Lymphoid leukemia, acute (204.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, acute (204.0)\(204.00) Acute lymphoid leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, acute (204.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, acute (204.0)\(204.00) Acute lymphoid leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.00''', NULL, + '(204.00) Acute lymphoid leukemia, without mention of having achieved remission', '(204.00) Acute lymphoid leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, acute (204.0)\(204.01) Acute lymphoid leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, acute (204.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, acute (204.0)\(204.01) Acute lymphoid leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.01''', NULL, + '(204.01) Acute lymphoid leukemia, in remission', '(204.01) Acute lymphoid leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, acute (204.0)\(204.02) Acute lymphoid leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, acute (204.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, acute (204.0)\(204.02) Acute lymphoid leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.02''', NULL, + '(204.02) Acute lymphoid leukemia, in relapse', '(204.02) Acute lymphoid leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, chronic (204.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, chronic (204.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.1''', NULL, + 'Lymphoid leukemia, chronic (204.1)', 'Lymphoid leukemia, chronic (204.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, chronic (204.1)\(204.10) Chronic lymphoid leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, chronic (204.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, chronic (204.1)\(204.10) Chronic lymphoid leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.10''', NULL, + '(204.10) Chronic lymphoid leukemia, without mention of having achieved remission', '(204.10) Chronic lymphoid leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, chronic (204.1)\(204.11) Chronic lymphoid leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, chronic (204.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, chronic (204.1)\(204.11) Chronic lymphoid leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.11''', NULL, + '(204.11) Chronic lymphoid leukemia, in remission', '(204.11) Chronic lymphoid leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, chronic (204.1)\(204.12) Chronic lymphoid leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, chronic (204.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, chronic (204.1)\(204.12) Chronic lymphoid leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.12''', NULL, + '(204.12) Chronic lymphoid leukemia, in relapse', '(204.12) Chronic lymphoid leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, subacute (204.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, subacute (204.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.2''', NULL, + 'Lymphoid leukemia, subacute (204.2)', 'Lymphoid leukemia, subacute (204.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, subacute (204.2)\(204.20) Subacute lymphoid leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, subacute (204.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, subacute (204.2)\(204.20) Subacute lymphoid leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.20''', NULL, + '(204.20) Subacute lymphoid leukemia, without mention of having achieved remission', '(204.20) Subacute lymphoid leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, subacute (204.2)\(204.21) Subacute lymphoid leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, subacute (204.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Lymphoid leukemia, subacute (204.2)\(204.21) Subacute lymphoid leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.21''', NULL, + '(204.21) Subacute lymphoid leukemia, in remission', '(204.21) Subacute lymphoid leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Other lymphoid leukemia (204.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Other lymphoid leukemia (204.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.8''', NULL, + 'Other lymphoid leukemia (204.8)', 'Other lymphoid leukemia (204.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Other lymphoid leukemia (204.8)\(204.80) Other lymphoid leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Other lymphoid leukemia (204.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Other lymphoid leukemia (204.8)\(204.80) Other lymphoid leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.80''', NULL, + '(204.80) Other lymphoid leukemia, without mention of having achieved remission', '(204.80) Other lymphoid leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Other lymphoid leukemia (204.8)\(204.81) Other lymphoid leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Other lymphoid leukemia (204.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Other lymphoid leukemia (204.8)\(204.81) Other lymphoid leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.81''', NULL, + '(204.81) Other lymphoid leukemia, in remission', '(204.81) Other lymphoid leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Other lymphoid leukemia (204.8)\(204.82) Other lymphoid leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Other lymphoid leukemia (204.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Other lymphoid leukemia (204.8)\(204.82) Other lymphoid leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.82''', NULL, + '(204.82) Other lymphoid leukemia, in relapse', '(204.82) Other lymphoid leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Unspecified lymphoid leukemia (204.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Unspecified lymphoid leukemia (204.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.9''', NULL, + 'Unspecified lymphoid leukemia (204.9)', 'Unspecified lymphoid leukemia (204.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Unspecified lymphoid leukemia (204.9)\(204.90) Unspecified lymphoid leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Unspecified lymphoid leukemia (204.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Unspecified lymphoid leukemia (204.9)\(204.90) Unspecified lymphoid leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.90''', NULL, + '(204.90) Unspecified lymphoid leukemia, without mention of having achieved remission', '(204.90) Unspecified lymphoid leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Unspecified lymphoid leukemia (204.9)\(204.91) Unspecified lymphoid leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Unspecified lymphoid leukemia (204.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Unspecified lymphoid leukemia (204.9)\(204.91) Unspecified lymphoid leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.91''', NULL, + '(204.91) Unspecified lymphoid leukemia, in remission', '(204.91) Unspecified lymphoid leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Unspecified lymphoid leukemia (204.9)\(204.92) Unspecified lymphoid leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Unspecified lymphoid leukemia (204.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphoid leukemia (204)\Unspecified lymphoid leukemia (204.9)\(204.92) Unspecified lymphoid leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''204.92''', NULL, + '(204.92) Unspecified lymphoid leukemia, in relapse', '(204.92) Unspecified lymphoid leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200''', NULL, + 'Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)', 'Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.6''', NULL, + 'Anaplastic large cell lymphoma (200.6)', 'Anaplastic large cell lymphoma (200.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.60) Anaplastic large cell lymphoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.60) Anaplastic large cell lymphoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.60''', NULL, + '(200.60) Anaplastic large cell lymphoma, unspecified site, extranodal and solid organ sites', '(200.60) Anaplastic large cell lymphoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.61) Anaplastic large cell lymphoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.61) Anaplastic large cell lymphoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.61''', NULL, + '(200.61) Anaplastic large cell lymphoma, lymph nodes of head, face, and neck', '(200.61) Anaplastic large cell lymphoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.62) Anaplastic large cell lymphoma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.62) Anaplastic large cell lymphoma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.62''', NULL, + '(200.62) Anaplastic large cell lymphoma, intrathoracic lymph nodes', '(200.62) Anaplastic large cell lymphoma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.63) Anaplastic large cell lymphoma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.63) Anaplastic large cell lymphoma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.63''', NULL, + '(200.63) Anaplastic large cell lymphoma, intra-abdominal lymph nodes', '(200.63) Anaplastic large cell lymphoma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.64) Anaplastic large cell lymphoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.64) Anaplastic large cell lymphoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.64''', NULL, + '(200.64) Anaplastic large cell lymphoma, lymph nodes of axilla and upper limb', '(200.64) Anaplastic large cell lymphoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.65) Anaplastic large cell lymphoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.65) Anaplastic large cell lymphoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.65''', NULL, + '(200.65) Anaplastic large cell lymphoma, lymph nodes of inguinal region and lower limb', '(200.65) Anaplastic large cell lymphoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.66) Anaplastic large cell lymphoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.66) Anaplastic large cell lymphoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.66''', NULL, + '(200.66) Anaplastic large cell lymphoma, intrapelvic lymph nodes', '(200.66) Anaplastic large cell lymphoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.67) Anaplastic large cell lymphoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.67) Anaplastic large cell lymphoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.67''', NULL, + '(200.67) Anaplastic large cell lymphoma, spleen', '(200.67) Anaplastic large cell lymphoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.68) Anaplastic large cell lymphoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Anaplastic large cell lymphoma (200.6)\(200.68) Anaplastic large cell lymphoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.68''', NULL, + '(200.68) Anaplastic large cell lymphoma, lymph nodes of multiple sites', '(200.68) Anaplastic large cell lymphoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.2''', NULL, + 'Burkitt''s tumor or lymphoma (200.2)', 'Burkitt''s tumor or lymphoma (200.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.20) Burkitt''s tumor or lymphoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.20) Burkitt''s tumor or lymphoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.20''', NULL, + '(200.20) Burkitt''s tumor or lymphoma, unspecified site, extranodal and solid organ sites', '(200.20) Burkitt''s tumor or lymphoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.21) Burkitt''s tumor or lymphoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.21) Burkitt''s tumor or lymphoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.21''', NULL, + '(200.21) Burkitt''s tumor or lymphoma, lymph nodes of head, face, and neck', '(200.21) Burkitt''s tumor or lymphoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.22) Burkitt''s tumor or lymphoma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.22) Burkitt''s tumor or lymphoma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.22''', NULL, + '(200.22) Burkitt''s tumor or lymphoma, intrathoracic lymph nodes', '(200.22) Burkitt''s tumor or lymphoma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.23) Burkitt''s tumor or lymphoma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.23) Burkitt''s tumor or lymphoma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.23''', NULL, + '(200.23) Burkitt''s tumor or lymphoma, intra-abdominal lymph nodes', '(200.23) Burkitt''s tumor or lymphoma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.24) Burkitt''s tumor or lymphoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.24) Burkitt''s tumor or lymphoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.24''', NULL, + '(200.24) Burkitt''s tumor or lymphoma, lymph nodes of axilla and upper limb', '(200.24) Burkitt''s tumor or lymphoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.25) Burkitt''s tumor or lymphoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.25) Burkitt''s tumor or lymphoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.25''', NULL, + '(200.25) Burkitt''s tumor or lymphoma, lymph nodes of inguinal region and lower limb', '(200.25) Burkitt''s tumor or lymphoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.26) Burkitt''s tumor or lymphoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.26) Burkitt''s tumor or lymphoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.26''', NULL, + '(200.26) Burkitt''s tumor or lymphoma, intrapelvic lymph nodes', '(200.26) Burkitt''s tumor or lymphoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.27) Burkitt''s tumor or lymphoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.27) Burkitt''s tumor or lymphoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.27''', NULL, + '(200.27) Burkitt''s tumor or lymphoma, spleen', '(200.27) Burkitt''s tumor or lymphoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.28) Burkitt''s tumor or lymphoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Burkitt''s tumor or lymphoma (200.2)\(200.28) Burkitt''s tumor or lymphoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.28''', NULL, + '(200.28) Burkitt''s tumor or lymphoma, lymph nodes of multiple sites', '(200.28) Burkitt''s tumor or lymphoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.7''', NULL, + 'Large cell lymphoma (200.7)', 'Large cell lymphoma (200.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.70) Large cell lymphoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.70) Large cell lymphoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.70''', NULL, + '(200.70) Large cell lymphoma, unspecified site, extranodal and solid organ sites', '(200.70) Large cell lymphoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.71) Large cell lymphoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.71) Large cell lymphoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.71''', NULL, + '(200.71) Large cell lymphoma, lymph nodes of head, face, and neck', '(200.71) Large cell lymphoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.72) Large cell lymphoma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.72) Large cell lymphoma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.72''', NULL, + '(200.72) Large cell lymphoma, intrathoracic lymph nodes', '(200.72) Large cell lymphoma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.73) Large cell lymphoma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.73) Large cell lymphoma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.73''', NULL, + '(200.73) Large cell lymphoma, intra-abdominal lymph nodes', '(200.73) Large cell lymphoma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.74) Large cell lymphoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.74) Large cell lymphoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.74''', NULL, + '(200.74) Large cell lymphoma, lymph nodes of axilla and upper limb', '(200.74) Large cell lymphoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.75) Large cell lymphoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.75) Large cell lymphoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.75''', NULL, + '(200.75) Large cell lymphoma, lymph nodes of inguinal region and lower limb', '(200.75) Large cell lymphoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.76) Large cell lymphoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.76) Large cell lymphoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.76''', NULL, + '(200.76) Large cell lymphoma, intrapelvic lymph nodes', '(200.76) Large cell lymphoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.77) Large cell lymphoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.77) Large cell lymphoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.77''', NULL, + '(200.77) Large cell lymphoma, spleen', '(200.77) Large cell lymphoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.78) Large cell lymphoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Large cell lymphoma (200.7)\(200.78) Large cell lymphoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.78''', NULL, + '(200.78) Large cell lymphoma, lymph nodes of multiple sites', '(200.78) Large cell lymphoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.1''', NULL, + 'Lymphosarcoma (200.1)', 'Lymphosarcoma (200.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.10) Lymphosarcoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.10) Lymphosarcoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.10''', NULL, + '(200.10) Lymphosarcoma, unspecified site, extranodal and solid organ sites', '(200.10) Lymphosarcoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.11) Lymphosarcoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.11) Lymphosarcoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.11''', NULL, + '(200.11) Lymphosarcoma, lymph nodes of head, face, and neck', '(200.11) Lymphosarcoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.12) Lymphosarcoma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.12) Lymphosarcoma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.12''', NULL, + '(200.12) Lymphosarcoma, intrathoracic lymph nodes', '(200.12) Lymphosarcoma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.13) Lymphosarcoma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.13) Lymphosarcoma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.13''', NULL, + '(200.13) Lymphosarcoma, intra-abdominal lymph nodes', '(200.13) Lymphosarcoma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.14) Lymphosarcoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.14) Lymphosarcoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.14''', NULL, + '(200.14) Lymphosarcoma, lymph nodes of axilla and upper limb', '(200.14) Lymphosarcoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.15) Lymphosarcoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.15) Lymphosarcoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.15''', NULL, + '(200.15) Lymphosarcoma, lymph nodes of inguinal region and lower limb', '(200.15) Lymphosarcoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.16) Lymphosarcoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.16) Lymphosarcoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.16''', NULL, + '(200.16) Lymphosarcoma, intrapelvic lymph nodes', '(200.16) Lymphosarcoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.17) Lymphosarcoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.17) Lymphosarcoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.17''', NULL, + '(200.17) Lymphosarcoma, spleen', '(200.17) Lymphosarcoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.18) Lymphosarcoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Lymphosarcoma (200.1)\(200.18) Lymphosarcoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.18''', NULL, + '(200.18) Lymphosarcoma, lymph nodes of multiple sites', '(200.18) Lymphosarcoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.4''', NULL, + 'Mantle cell lymphoma (200.4)', 'Mantle cell lymphoma (200.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.40) Mantle cell lymphoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.40) Mantle cell lymphoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.40''', NULL, + '(200.40) Mantle cell lymphoma, unspecified site, extranodal and solid organ sites', '(200.40) Mantle cell lymphoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.41) Mantle cell lymphoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.41) Mantle cell lymphoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.41''', NULL, + '(200.41) Mantle cell lymphoma, lymph nodes of head, face, and neck', '(200.41) Mantle cell lymphoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.42) Mantle cell lymphoma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.42) Mantle cell lymphoma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.42''', NULL, + '(200.42) Mantle cell lymphoma, intrathoracic lymph nodes', '(200.42) Mantle cell lymphoma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.43) Mantle cell lymphoma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.43) Mantle cell lymphoma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.43''', NULL, + '(200.43) Mantle cell lymphoma, intra-abdominal lymph nodes', '(200.43) Mantle cell lymphoma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.44) Mantle cell lymphoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.44) Mantle cell lymphoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.44''', NULL, + '(200.44) Mantle cell lymphoma, lymph nodes of axilla and upper limb', '(200.44) Mantle cell lymphoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.45) Mantle cell lymphoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.45) Mantle cell lymphoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.45''', NULL, + '(200.45) Mantle cell lymphoma, lymph nodes of inguinal region and lower limb', '(200.45) Mantle cell lymphoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.46) Mantle cell lymphoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.46) Mantle cell lymphoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.46''', NULL, + '(200.46) Mantle cell lymphoma, intrapelvic lymph nodes', '(200.46) Mantle cell lymphoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.47) Mantle cell lymphoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.47) Mantle cell lymphoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.47''', NULL, + '(200.47) Mantle cell lymphoma, spleen', '(200.47) Mantle cell lymphoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.48) Mantle cell lymphoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Mantle cell lymphoma (200.4)\(200.48) Mantle cell lymphoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.48''', NULL, + '(200.48) Mantle cell lymphoma, lymph nodes of multiple sites', '(200.48) Mantle cell lymphoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.3''', NULL, + 'Marginal zone lymphoma (200.3)', 'Marginal zone lymphoma (200.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.30) Marginal zone lymphoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.30) Marginal zone lymphoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.30''', NULL, + '(200.30) Marginal zone lymphoma, unspecified site, extranodal and solid organ sites', '(200.30) Marginal zone lymphoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.31) Marginal zone lymphoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.31) Marginal zone lymphoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.31''', NULL, + '(200.31) Marginal zone lymphoma, lymph nodes of head, face, and neck', '(200.31) Marginal zone lymphoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.32) Marginal zone lymphoma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.32) Marginal zone lymphoma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.32''', NULL, + '(200.32) Marginal zone lymphoma, intrathoracic lymph nodes', '(200.32) Marginal zone lymphoma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.33) Marginal zone lymphoma, intraabdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.33) Marginal zone lymphoma, intraabdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.33''', NULL, + '(200.33) Marginal zone lymphoma, intraabdominal lymph nodes', '(200.33) Marginal zone lymphoma, intraabdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.34) Marginal zone lymphoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.34) Marginal zone lymphoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.34''', NULL, + '(200.34) Marginal zone lymphoma, lymph nodes of axilla and upper limb', '(200.34) Marginal zone lymphoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.35) Marginal zone lymphoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.35) Marginal zone lymphoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.35''', NULL, + '(200.35) Marginal zone lymphoma, lymph nodes of inguinal region and lower limb', '(200.35) Marginal zone lymphoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.36) Marginal zone lymphoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.36) Marginal zone lymphoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.36''', NULL, + '(200.36) Marginal zone lymphoma, intrapelvic lymph nodes', '(200.36) Marginal zone lymphoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.37) Marginal zone lymphoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.37) Marginal zone lymphoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.37''', NULL, + '(200.37) Marginal zone lymphoma, spleen', '(200.37) Marginal zone lymphoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.38) Marginal zone lymphoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Marginal zone lymphoma (200.3)\(200.38) Marginal zone lymphoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.38''', NULL, + '(200.38) Marginal zone lymphoma, lymph nodes of multiple sites', '(200.38) Marginal zone lymphoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.8''', NULL, + 'Other named variants of lymphosarcoma and reticulosarcoma (200.8)', 'Other named variants of lymphosarcoma and reticulosarcoma (200.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.80) Other named variants of lymphosarcoma and reticulosarcoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.80) Other named variants of lymphosarcoma and reticulosarcoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.80''', NULL, + '(200.80) Other named variants of lymphosarcoma and reticulosarcoma, unspecified site, extranodal and solid organ sites', '(200.80) Other named variants of lymphosarcoma and reticulosarcoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.81) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.81) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.81''', NULL, + '(200.81) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of head, face, and neck', '(200.81) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.82) Other named variants of lymphosarcoma and reticulosarcoma,intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.82) Other named variants of lymphosarcoma and reticulosarcoma,intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.82''', NULL, + '(200.82) Other named variants of lymphosarcoma and reticulosarcoma,intrathoracic lymph nodes', '(200.82) Other named variants of lymphosarcoma and reticulosarcoma,intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.83) Other named variants of lymphosarcoma and reticulosarcoma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.83) Other named variants of lymphosarcoma and reticulosarcoma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.83''', NULL, + '(200.83) Other named variants of lymphosarcoma and reticulosarcoma, intra-abdominal lymph nodes', '(200.83) Other named variants of lymphosarcoma and reticulosarcoma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.84) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.84) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.84''', NULL, + '(200.84) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of axilla and upper limb', '(200.84) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.85) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.85) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.85''', NULL, + '(200.85) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of inguinal region and lower limb', '(200.85) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.86) Other named variants of lymphosarcoma and reticulosarcoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.86) Other named variants of lymphosarcoma and reticulosarcoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.86''', NULL, + '(200.86) Other named variants of lymphosarcoma and reticulosarcoma, intrapelvic lymph nodes', '(200.86) Other named variants of lymphosarcoma and reticulosarcoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.87) Other named variants of lymphosarcoma and reticulosarcoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.87) Other named variants of lymphosarcoma and reticulosarcoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.87''', NULL, + '(200.87) Other named variants of lymphosarcoma and reticulosarcoma, spleen', '(200.87) Other named variants of lymphosarcoma and reticulosarcoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.88) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\(200.88) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.88''', NULL, + '(200.88) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of multiple sites', '(200.88) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.5''', NULL, + 'Primary central nervous system lymphoma (200.5)', 'Primary central nervous system lymphoma (200.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.50) Primary central nervous system lymphoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.50) Primary central nervous system lymphoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.50''', NULL, + '(200.50) Primary central nervous system lymphoma, unspecified site, extranodal and solid organ sites', '(200.50) Primary central nervous system lymphoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.51) Primary central nervous system lymphoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.51) Primary central nervous system lymphoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.51''', NULL, + '(200.51) Primary central nervous system lymphoma, lymph nodes of head, face, and neck', '(200.51) Primary central nervous system lymphoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.52) Primary central nervous system lymphoma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.52) Primary central nervous system lymphoma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.52''', NULL, + '(200.52) Primary central nervous system lymphoma, intrathoracic lymph nodes', '(200.52) Primary central nervous system lymphoma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.53) Primary central nervous system lymphoma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.53) Primary central nervous system lymphoma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.53''', NULL, + '(200.53) Primary central nervous system lymphoma, intra-abdominal lymph nodes', '(200.53) Primary central nervous system lymphoma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.54) Primary central nervous system lymphoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.54) Primary central nervous system lymphoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.54''', NULL, + '(200.54) Primary central nervous system lymphoma, lymph nodes of axilla and upper limb', '(200.54) Primary central nervous system lymphoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.55) Primary central nervous system lymphoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.55) Primary central nervous system lymphoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.55''', NULL, + '(200.55) Primary central nervous system lymphoma, lymph nodes of inguinal region and lower limb', '(200.55) Primary central nervous system lymphoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.56) Primary central nervous system lymphoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.56) Primary central nervous system lymphoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.56''', NULL, + '(200.56) Primary central nervous system lymphoma, intrapelvic lymph nodes', '(200.56) Primary central nervous system lymphoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.57) Primary central nervous system lymphoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.57) Primary central nervous system lymphoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.57''', NULL, + '(200.57) Primary central nervous system lymphoma, spleen', '(200.57) Primary central nervous system lymphoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.58) Primary central nervous system lymphoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Primary central nervous system lymphoma (200.5)\(200.58) Primary central nervous system lymphoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.58''', NULL, + '(200.58) Primary central nervous system lymphoma, lymph nodes of multiple sites', '(200.58) Primary central nervous system lymphoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.0''', NULL, + 'Reticulosarcoma (200.0)', 'Reticulosarcoma (200.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.00) Reticulosarcoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.00) Reticulosarcoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.00''', NULL, + '(200.00) Reticulosarcoma, unspecified site, extranodal and solid organ sites', '(200.00) Reticulosarcoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.01) Reticulosarcoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.01) Reticulosarcoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.01''', NULL, + '(200.01) Reticulosarcoma, lymph nodes of head, face, and neck', '(200.01) Reticulosarcoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.02) Reticulosarcoma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.02) Reticulosarcoma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.02''', NULL, + '(200.02) Reticulosarcoma, intrathoracic lymph nodes', '(200.02) Reticulosarcoma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.03) Reticulosarcoma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.03) Reticulosarcoma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.03''', NULL, + '(200.03) Reticulosarcoma, intra-abdominal lymph nodes', '(200.03) Reticulosarcoma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.04) Reticulosarcoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.04) Reticulosarcoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.04''', NULL, + '(200.04) Reticulosarcoma, lymph nodes of axilla and upper limb', '(200.04) Reticulosarcoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.05) Reticulosarcoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.05) Reticulosarcoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.05''', NULL, + '(200.05) Reticulosarcoma, lymph nodes of inguinal region and lower limb', '(200.05) Reticulosarcoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.06) Reticulosarcoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.06) Reticulosarcoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.06''', NULL, + '(200.06) Reticulosarcoma, intrapelvic lymph nodes', '(200.06) Reticulosarcoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.07) Reticulosarcoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.07) Reticulosarcoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.07''', NULL, + '(200.07) Reticulosarcoma, spleen', '(200.07) Reticulosarcoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.08) Reticulosarcoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\Reticulosarcoma (200.0)\(200.08) Reticulosarcoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''200.08''', NULL, + '(200.08) Reticulosarcoma, lymph nodes of multiple sites', '(200.08) Reticulosarcoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206''', NULL, + 'Monocytic leukemia (206)', 'Monocytic leukemia (206)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, acute (206.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, acute (206.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.0''', NULL, + 'Monocytic leukemia, acute (206.0)', 'Monocytic leukemia, acute (206.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, acute (206.0)\(206.00) Acute monocytic leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, acute (206.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, acute (206.0)\(206.00) Acute monocytic leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.00''', NULL, + '(206.00) Acute monocytic leukemia, without mention of having achieved remission', '(206.00) Acute monocytic leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, acute (206.0)\(206.01) Acute monocytic leukemia,in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, acute (206.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, acute (206.0)\(206.01) Acute monocytic leukemia,in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.01''', NULL, + '(206.01) Acute monocytic leukemia,in remission', '(206.01) Acute monocytic leukemia,in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, acute (206.0)\(206.02) Acute monocytic leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, acute (206.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, acute (206.0)\(206.02) Acute monocytic leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.02''', NULL, + '(206.02) Acute monocytic leukemia, in relapse', '(206.02) Acute monocytic leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, chronic (206.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, chronic (206.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.1''', NULL, + 'Monocytic leukemia, chronic (206.1)', 'Monocytic leukemia, chronic (206.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, chronic (206.1)\(206.10) Chronic monocytic leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, chronic (206.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, chronic (206.1)\(206.10) Chronic monocytic leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.10''', NULL, + '(206.10) Chronic monocytic leukemia, without mention of having achieved remission', '(206.10) Chronic monocytic leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, chronic (206.1)\(206.11) Chronic monocytic leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, chronic (206.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, chronic (206.1)\(206.11) Chronic monocytic leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.11''', NULL, + '(206.11) Chronic monocytic leukemia, in remission', '(206.11) Chronic monocytic leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, chronic (206.1)\(206.12) Chronic monocytic leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, chronic (206.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, chronic (206.1)\(206.12) Chronic monocytic leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.12''', NULL, + '(206.12) Chronic monocytic leukemia, in relapse', '(206.12) Chronic monocytic leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, subacute (206.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, subacute (206.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.2''', NULL, + 'Monocytic leukemia, subacute (206.2)', 'Monocytic leukemia, subacute (206.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, subacute (206.2)\(206.20) Subacute monocytic leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, subacute (206.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, subacute (206.2)\(206.20) Subacute monocytic leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.20''', NULL, + '(206.20) Subacute monocytic leukemia, without mention of having achieved remission', '(206.20) Subacute monocytic leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, subacute (206.2)\(206.21) Subacute monocytic leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, subacute (206.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Monocytic leukemia, subacute (206.2)\(206.21) Subacute monocytic leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.21''', NULL, + '(206.21) Subacute monocytic leukemia, in remission', '(206.21) Subacute monocytic leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Other monocytic leukemia (206.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Other monocytic leukemia (206.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.8''', NULL, + 'Other monocytic leukemia (206.8)', 'Other monocytic leukemia (206.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Other monocytic leukemia (206.8)\(206.80) Other monocytic leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Other monocytic leukemia (206.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Other monocytic leukemia (206.8)\(206.80) Other monocytic leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.80''', NULL, + '(206.80) Other monocytic leukemia, without mention of having achieved remission', '(206.80) Other monocytic leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Other monocytic leukemia (206.8)\(206.81) Other monocytic leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Other monocytic leukemia (206.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Other monocytic leukemia (206.8)\(206.81) Other monocytic leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.81''', NULL, + '(206.81) Other monocytic leukemia, in remission', '(206.81) Other monocytic leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Other monocytic leukemia (206.8)\(206.82) Other monocytic leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Other monocytic leukemia (206.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Other monocytic leukemia (206.8)\(206.82) Other monocytic leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.82''', NULL, + '(206.82) Other monocytic leukemia, in relapse', '(206.82) Other monocytic leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Unspecified monocytic leukemia (206.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Unspecified monocytic leukemia (206.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.9''', NULL, + 'Unspecified monocytic leukemia (206.9)', 'Unspecified monocytic leukemia (206.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Unspecified monocytic leukemia (206.9)\(206.90) Unspecified monocytic leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Unspecified monocytic leukemia (206.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Unspecified monocytic leukemia (206.9)\(206.90) Unspecified monocytic leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.90''', NULL, + '(206.90) Unspecified monocytic leukemia, without mention of having achieved remission', '(206.90) Unspecified monocytic leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Unspecified monocytic leukemia (206.9)\(206.91) Unspecified monocytic leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Unspecified monocytic leukemia (206.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Monocytic leukemia (206)\Unspecified monocytic leukemia (206.9)\(206.91) Unspecified monocytic leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''206.91''', NULL, + '(206.91) Unspecified monocytic leukemia, in remission', '(206.91) Unspecified monocytic leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203''', NULL, + 'Multiple myeloma and immunoproliferative neoplasms (203)', 'Multiple myeloma and immunoproliferative neoplasms (203)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Multiple myeloma (203.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Multiple myeloma (203.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.0''', NULL, + 'Multiple myeloma (203.0)', 'Multiple myeloma (203.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Multiple myeloma (203.0)\(203.00) Multiple myeloma, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Multiple myeloma (203.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Multiple myeloma (203.0)\(203.00) Multiple myeloma, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.00''', NULL, + '(203.00) Multiple myeloma, without mention of having achieved remission', '(203.00) Multiple myeloma, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Multiple myeloma (203.0)\(203.01) Multiple myeloma, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Multiple myeloma (203.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Multiple myeloma (203.0)\(203.01) Multiple myeloma, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.01''', NULL, + '(203.01) Multiple myeloma, in remission', '(203.01) Multiple myeloma, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Multiple myeloma (203.0)\(203.02) Multiple myeloma, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Multiple myeloma (203.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Multiple myeloma (203.0)\(203.02) Multiple myeloma, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.02''', NULL, + '(203.02) Multiple myeloma, in relapse', '(203.02) Multiple myeloma, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Other immunoproliferative neoplasms (203.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Other immunoproliferative neoplasms (203.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.8''', NULL, + 'Other immunoproliferative neoplasms (203.8)', 'Other immunoproliferative neoplasms (203.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Other immunoproliferative neoplasms (203.8)\(203.80) Other immunoproliferative neoplasms, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Other immunoproliferative neoplasms (203.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Other immunoproliferative neoplasms (203.8)\(203.80) Other immunoproliferative neoplasms, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.80''', NULL, + '(203.80) Other immunoproliferative neoplasms, without mention of having achieved remission', '(203.80) Other immunoproliferative neoplasms, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Other immunoproliferative neoplasms (203.8)\(203.81) Other immunoproliferative neoplasms, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Other immunoproliferative neoplasms (203.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Other immunoproliferative neoplasms (203.8)\(203.81) Other immunoproliferative neoplasms, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.81''', NULL, + '(203.81) Other immunoproliferative neoplasms, in remission', '(203.81) Other immunoproliferative neoplasms, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Other immunoproliferative neoplasms (203.8)\(203.82) Other immunoproliferative neoplasms, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Other immunoproliferative neoplasms (203.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Other immunoproliferative neoplasms (203.8)\(203.82) Other immunoproliferative neoplasms, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.82''', NULL, + '(203.82) Other immunoproliferative neoplasms, in relapse', '(203.82) Other immunoproliferative neoplasms, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Plasma cell leukemia (203.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Plasma cell leukemia (203.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.1''', NULL, + 'Plasma cell leukemia (203.1)', 'Plasma cell leukemia (203.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Plasma cell leukemia (203.1)\(203.10) Plasma cell leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Plasma cell leukemia (203.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Plasma cell leukemia (203.1)\(203.10) Plasma cell leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.10''', NULL, + '(203.10) Plasma cell leukemia, without mention of having achieved remission', '(203.10) Plasma cell leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Plasma cell leukemia (203.1)\(203.11) Plasma cell leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Plasma cell leukemia (203.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Plasma cell leukemia (203.1)\(203.11) Plasma cell leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.11''', NULL, + '(203.11) Plasma cell leukemia, in remission', '(203.11) Plasma cell leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Plasma cell leukemia (203.1)\(203.12) Plasma cell leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Plasma cell leukemia (203.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Multiple myeloma and immunoproliferative neoplasms (203)\Plasma cell leukemia (203.1)\(203.12) Plasma cell leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''203.12''', NULL, + '(203.12) Plasma cell leukemia, in relapse', '(203.12) Plasma cell leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205''', NULL, + 'Myeloid leukemia (205)', 'Myeloid leukemia (205)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, acute (205.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, acute (205.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.0''', NULL, + 'Myeloid leukemia, acute (205.0)', 'Myeloid leukemia, acute (205.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, acute (205.0)\(205.00) Acute myeloid leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, acute (205.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, acute (205.0)\(205.00) Acute myeloid leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.00''', NULL, + '(205.00) Acute myeloid leukemia, without mention of having achieved remission', '(205.00) Acute myeloid leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, acute (205.0)\(205.01) Acute myeloid leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, acute (205.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, acute (205.0)\(205.01) Acute myeloid leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.01''', NULL, + '(205.01) Acute myeloid leukemia, in remission', '(205.01) Acute myeloid leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, acute (205.0)\(205.02) Acute myeloid leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, acute (205.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, acute (205.0)\(205.02) Acute myeloid leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.02''', NULL, + '(205.02) Acute myeloid leukemia, in relapse', '(205.02) Acute myeloid leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, chronic (205.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, chronic (205.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.1''', NULL, + 'Myeloid leukemia, chronic (205.1)', 'Myeloid leukemia, chronic (205.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, chronic (205.1)\(205.10) Chronic myeloid leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, chronic (205.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, chronic (205.1)\(205.10) Chronic myeloid leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.10''', NULL, + '(205.10) Chronic myeloid leukemia, without mention of having achieved remission', '(205.10) Chronic myeloid leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, chronic (205.1)\(205.11) Chronic myeloid leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, chronic (205.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, chronic (205.1)\(205.11) Chronic myeloid leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.11''', NULL, + '(205.11) Chronic myeloid leukemia, in remission', '(205.11) Chronic myeloid leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, chronic (205.1)\(205.12) Chronic myeloid leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, chronic (205.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, chronic (205.1)\(205.12) Chronic myeloid leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.12''', NULL, + '(205.12) Chronic myeloid leukemia, in relapse', '(205.12) Chronic myeloid leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, subacute (205.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, subacute (205.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.2''', NULL, + 'Myeloid leukemia, subacute (205.2)', 'Myeloid leukemia, subacute (205.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, subacute (205.2)\(205.20) Subacute myeloid leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, subacute (205.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, subacute (205.2)\(205.20) Subacute myeloid leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.20''', NULL, + '(205.20) Subacute myeloid leukemia, without mention of having achieved remission', '(205.20) Subacute myeloid leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, subacute (205.2)\(205.21) Subacute myeloid leukemia,in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, subacute (205.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid leukemia, subacute (205.2)\(205.21) Subacute myeloid leukemia,in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.21''', NULL, + '(205.21) Subacute myeloid leukemia,in remission', '(205.21) Subacute myeloid leukemia,in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid sarcoma (205.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid sarcoma (205.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.3''', NULL, + 'Myeloid sarcoma (205.3)', 'Myeloid sarcoma (205.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid sarcoma (205.3)\(205.30) Myeloid sarcoma, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid sarcoma (205.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid sarcoma (205.3)\(205.30) Myeloid sarcoma, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.30''', NULL, + '(205.30) Myeloid sarcoma, without mention of having achieved remission', '(205.30) Myeloid sarcoma, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid sarcoma (205.3)\(205.31) Myeloid sarcoma, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid sarcoma (205.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid sarcoma (205.3)\(205.31) Myeloid sarcoma, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.31''', NULL, + '(205.31) Myeloid sarcoma, in remission', '(205.31) Myeloid sarcoma, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid sarcoma (205.3)\(205.32) Myeloid sarcoma, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid sarcoma (205.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Myeloid sarcoma (205.3)\(205.32) Myeloid sarcoma, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.32''', NULL, + '(205.32) Myeloid sarcoma, in relapse', '(205.32) Myeloid sarcoma, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Other myeloid leukemia (205.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Other myeloid leukemia (205.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.8''', NULL, + 'Other myeloid leukemia (205.8)', 'Other myeloid leukemia (205.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Other myeloid leukemia (205.8)\(205.80) Other myeloid leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Other myeloid leukemia (205.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Other myeloid leukemia (205.8)\(205.80) Other myeloid leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.80''', NULL, + '(205.80) Other myeloid leukemia, without mention of having achieved remission', '(205.80) Other myeloid leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Other myeloid leukemia (205.8)\(205.81) Other myeloid leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Other myeloid leukemia (205.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Other myeloid leukemia (205.8)\(205.81) Other myeloid leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.81''', NULL, + '(205.81) Other myeloid leukemia, in remission', '(205.81) Other myeloid leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Other myeloid leukemia (205.8)\(205.82) Other myeloid leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Other myeloid leukemia (205.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Other myeloid leukemia (205.8)\(205.82) Other myeloid leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.82''', NULL, + '(205.82) Other myeloid leukemia, in relapse', '(205.82) Other myeloid leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Unspecified myeloid leukemia (205.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Unspecified myeloid leukemia (205.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.9''', NULL, + 'Unspecified myeloid leukemia (205.9)', 'Unspecified myeloid leukemia (205.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Unspecified myeloid leukemia (205.9)\(205.90) Unspecified myeloid leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Unspecified myeloid leukemia (205.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Unspecified myeloid leukemia (205.9)\(205.90) Unspecified myeloid leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.90''', NULL, + '(205.90) Unspecified myeloid leukemia, without mention of having achieved remission', '(205.90) Unspecified myeloid leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Unspecified myeloid leukemia (205.9)\(205.91) Unspecified myeloid leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Unspecified myeloid leukemia (205.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Unspecified myeloid leukemia (205.9)\(205.91) Unspecified myeloid leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.91''', NULL, + '(205.91) Unspecified myeloid leukemia, in remission', '(205.91) Unspecified myeloid leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Unspecified myeloid leukemia (205.9)\(205.92) Unspecified myeloid leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Unspecified myeloid leukemia (205.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Myeloid leukemia (205)\Unspecified myeloid leukemia (205.9)\(205.92) Unspecified myeloid leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''205.92''', NULL, + '(205.92) Unspecified myeloid leukemia, in relapse', '(205.92) Unspecified myeloid leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202''', NULL, + 'Other malignant neoplasms of lymphoid and histiocytic tissue (202)', 'Other malignant neoplasms of lymphoid and histiocytic tissue (202)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.5''', NULL, + 'Letterer-Siwe disease (202.5)', 'Letterer-Siwe disease (202.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.50) Letterer-siwe disease, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.50) Letterer-siwe disease, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.50''', NULL, + '(202.50) Letterer-siwe disease, unspecified site, extranodal and solid organ sites', '(202.50) Letterer-siwe disease, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.51) Letterer-siwe disease, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.51) Letterer-siwe disease, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.51''', NULL, + '(202.51) Letterer-siwe disease, lymph nodes of head, face, and neck', '(202.51) Letterer-siwe disease, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.52) Letterer-siwe disease, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.52) Letterer-siwe disease, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.52''', NULL, + '(202.52) Letterer-siwe disease, intrathoracic lymph nodes', '(202.52) Letterer-siwe disease, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.53) Letterer-siwe disease, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.53) Letterer-siwe disease, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.53''', NULL, + '(202.53) Letterer-siwe disease, intra-abdominal lymph nodes', '(202.53) Letterer-siwe disease, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.54) Letterer-siwe disease, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.54) Letterer-siwe disease, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.54''', NULL, + '(202.54) Letterer-siwe disease, lymph nodes of axilla and upper limb', '(202.54) Letterer-siwe disease, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.55) Letterer-siwe disease, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.55) Letterer-siwe disease, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.55''', NULL, + '(202.55) Letterer-siwe disease, lymph nodes of inguinal region and lower limb', '(202.55) Letterer-siwe disease, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.56) Letterer-siwe disease, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.56) Letterer-siwe disease, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.56''', NULL, + '(202.56) Letterer-siwe disease, intrapelvic lymph nodes', '(202.56) Letterer-siwe disease, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.57) Letterer-siwe disease, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.57) Letterer-siwe disease, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.57''', NULL, + '(202.57) Letterer-siwe disease, spleen', '(202.57) Letterer-siwe disease, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.58) Letterer-siwe disease, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Letterer-Siwe disease (202.5)\(202.58) Letterer-siwe disease, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.58''', NULL, + '(202.58) Letterer-siwe disease, lymph nodes of multiple sites', '(202.58) Letterer-siwe disease, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.4''', NULL, + 'Leukemic reticuloendotheliosis (202.4)', 'Leukemic reticuloendotheliosis (202.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.40) Leukemic reticuloendotheliosis, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.40) Leukemic reticuloendotheliosis, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.40''', NULL, + '(202.40) Leukemic reticuloendotheliosis, unspecified site, extranodal and solid organ sites', '(202.40) Leukemic reticuloendotheliosis, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.41) Leukemic reticuloendotheliosis, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.41) Leukemic reticuloendotheliosis, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.41''', NULL, + '(202.41) Leukemic reticuloendotheliosis, lymph nodes of head, face, and neck', '(202.41) Leukemic reticuloendotheliosis, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.42) Leukemic reticuloendotheliosis, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.42) Leukemic reticuloendotheliosis, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.42''', NULL, + '(202.42) Leukemic reticuloendotheliosis, intrathoracic lymph nodes', '(202.42) Leukemic reticuloendotheliosis, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.43) Leukemic reticuloendotheliosis, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.43) Leukemic reticuloendotheliosis, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.43''', NULL, + '(202.43) Leukemic reticuloendotheliosis, intra-abdominal lymph nodes', '(202.43) Leukemic reticuloendotheliosis, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.44) Leukemic reticuloendotheliosis, lymph nodes of axilla and upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.44) Leukemic reticuloendotheliosis, lymph nodes of axilla and upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.44''', NULL, + '(202.44) Leukemic reticuloendotheliosis, lymph nodes of axilla and upper arm', '(202.44) Leukemic reticuloendotheliosis, lymph nodes of axilla and upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.45) Leukemic reticuloendotheliosis, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.45) Leukemic reticuloendotheliosis, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.45''', NULL, + '(202.45) Leukemic reticuloendotheliosis, lymph nodes of inguinal region and lower limb', '(202.45) Leukemic reticuloendotheliosis, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.46) Leukemic reticuloendotheliosis, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.46) Leukemic reticuloendotheliosis, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.46''', NULL, + '(202.46) Leukemic reticuloendotheliosis, intrapelvic lymph nodes', '(202.46) Leukemic reticuloendotheliosis, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.47) Leukemic reticuloendotheliosis, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.47) Leukemic reticuloendotheliosis, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.47''', NULL, + '(202.47) Leukemic reticuloendotheliosis, spleen', '(202.47) Leukemic reticuloendotheliosis, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.48) Leukemic reticuloendotheliosis, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Leukemic reticuloendotheliosis (202.4)\(202.48) Leukemic reticuloendotheliosis, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.48''', NULL, + '(202.48) Leukemic reticuloendotheliosis, lymph nodes of multiple sites', '(202.48) Leukemic reticuloendotheliosis, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.3''', NULL, + 'Malignant histiocytosis (202.3)', 'Malignant histiocytosis (202.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.30) Malignant histiocytosis, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.30) Malignant histiocytosis, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.30''', NULL, + '(202.30) Malignant histiocytosis, unspecified site, extranodal and solid organ sites', '(202.30) Malignant histiocytosis, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.31) Malignant histiocytosis, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.31) Malignant histiocytosis, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.31''', NULL, + '(202.31) Malignant histiocytosis, lymph nodes of head, face, and neck', '(202.31) Malignant histiocytosis, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.32) Malignant histiocytosis, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.32) Malignant histiocytosis, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.32''', NULL, + '(202.32) Malignant histiocytosis, intrathoracic lymph nodes', '(202.32) Malignant histiocytosis, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.33) Malignant histiocytosis, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.33) Malignant histiocytosis, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.33''', NULL, + '(202.33) Malignant histiocytosis, intra-abdominal lymph nodes', '(202.33) Malignant histiocytosis, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.34) Malignant histiocytosis, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.34) Malignant histiocytosis, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.34''', NULL, + '(202.34) Malignant histiocytosis, lymph nodes of axilla and upper limb', '(202.34) Malignant histiocytosis, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.35) Malignant histiocytosis, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.35) Malignant histiocytosis, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.35''', NULL, + '(202.35) Malignant histiocytosis, lymph nodes of inguinal region and lower limb', '(202.35) Malignant histiocytosis, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.36) Malignant histiocytosis, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.36) Malignant histiocytosis, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.36''', NULL, + '(202.36) Malignant histiocytosis, intrapelvic lymph nodes', '(202.36) Malignant histiocytosis, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.37) Malignant histiocytosis, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.37) Malignant histiocytosis, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.37''', NULL, + '(202.37) Malignant histiocytosis, spleen', '(202.37) Malignant histiocytosis, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.38) Malignant histiocytosis, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant histiocytosis (202.3)\(202.38) Malignant histiocytosis, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.38''', NULL, + '(202.38) Malignant histiocytosis, lymph nodes of multiple sites', '(202.38) Malignant histiocytosis, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.6''', NULL, + 'Malignant mast cell tumors (202.6)', 'Malignant mast cell tumors (202.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.60) Malignant mast cell tumors, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.60) Malignant mast cell tumors, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.60''', NULL, + '(202.60) Malignant mast cell tumors, unspecified site, extranodal and solid organ sites', '(202.60) Malignant mast cell tumors, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.61) Malignant mast cell tumors, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.61) Malignant mast cell tumors, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.61''', NULL, + '(202.61) Malignant mast cell tumors, lymph nodes of head, face, and neck', '(202.61) Malignant mast cell tumors, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.62) Malignant mast cell tumors, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.62) Malignant mast cell tumors, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.62''', NULL, + '(202.62) Malignant mast cell tumors, intrathoracic lymph nodes', '(202.62) Malignant mast cell tumors, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.63) Malignant mast cell tumors, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.63) Malignant mast cell tumors, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.63''', NULL, + '(202.63) Malignant mast cell tumors, intra-abdominal lymph nodes', '(202.63) Malignant mast cell tumors, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.64) Malignant mast cell tumors, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.64) Malignant mast cell tumors, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.64''', NULL, + '(202.64) Malignant mast cell tumors, lymph nodes of axilla and upper limb', '(202.64) Malignant mast cell tumors, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.65) Malignant mast cell tumors, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.65) Malignant mast cell tumors, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.65''', NULL, + '(202.65) Malignant mast cell tumors, lymph nodes of inguinal region and lower limb', '(202.65) Malignant mast cell tumors, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.66) Malignant mast cell tumors, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.66) Malignant mast cell tumors, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.66''', NULL, + '(202.66) Malignant mast cell tumors, intrapelvic lymph nodes', '(202.66) Malignant mast cell tumors, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.67) Malignant mast cell tumors, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.67) Malignant mast cell tumors, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.67''', NULL, + '(202.67) Malignant mast cell tumors, spleen', '(202.67) Malignant mast cell tumors, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.68) Malignant mast cell tumors, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Malignant mast cell tumors (202.6)\(202.68) Malignant mast cell tumors, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.68''', NULL, + '(202.68) Malignant mast cell tumors, lymph nodes of multiple sites', '(202.68) Malignant mast cell tumors, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.1''', NULL, + 'Mycosis fungoides (202.1)', 'Mycosis fungoides (202.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.10) Mycosis fungoides, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.10) Mycosis fungoides, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.10''', NULL, + '(202.10) Mycosis fungoides, unspecified site, extranodal and solid organ sites', '(202.10) Mycosis fungoides, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.11) Mycosis fungoides, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.11) Mycosis fungoides, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.11''', NULL, + '(202.11) Mycosis fungoides, lymph nodes of head, face, and neck', '(202.11) Mycosis fungoides, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.12) Mycosis fungoides, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.12) Mycosis fungoides, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.12''', NULL, + '(202.12) Mycosis fungoides, intrathoracic lymph nodes', '(202.12) Mycosis fungoides, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.13) Mycosis fungoides, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.13) Mycosis fungoides, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.13''', NULL, + '(202.13) Mycosis fungoides, intra-abdominal lymph nodes', '(202.13) Mycosis fungoides, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.14) Mycosis fungoides, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.14) Mycosis fungoides, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.14''', NULL, + '(202.14) Mycosis fungoides, lymph nodes of axilla and upper limb', '(202.14) Mycosis fungoides, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.15) Mycosis fungoides, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.15) Mycosis fungoides, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.15''', NULL, + '(202.15) Mycosis fungoides, lymph nodes of inguinal region and lower limb', '(202.15) Mycosis fungoides, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.16) Mycosis fungoides, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.16) Mycosis fungoides, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.16''', NULL, + '(202.16) Mycosis fungoides, intrapelvic lymph nodes', '(202.16) Mycosis fungoides, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.17) Mycosis fungoides, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.17) Mycosis fungoides, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.17''', NULL, + '(202.17) Mycosis fungoides, spleen', '(202.17) Mycosis fungoides, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.18) Mycosis fungoides, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Mycosis fungoides (202.1)\(202.18) Mycosis fungoides, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.18''', NULL, + '(202.18) Mycosis fungoides, lymph nodes of multiple sites', '(202.18) Mycosis fungoides, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.0''', NULL, + 'Nodular lymphoma (202.0)', 'Nodular lymphoma (202.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.00) Nodular lymphoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.00) Nodular lymphoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.00''', NULL, + '(202.00) Nodular lymphoma, unspecified site, extranodal and solid organ sites', '(202.00) Nodular lymphoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.01) Nodular lymphoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.01) Nodular lymphoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.01''', NULL, + '(202.01) Nodular lymphoma, lymph nodes of head, face, and neck', '(202.01) Nodular lymphoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.02) Nodular lymphoma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.02) Nodular lymphoma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.02''', NULL, + '(202.02) Nodular lymphoma, intrathoracic lymph nodes', '(202.02) Nodular lymphoma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.03) Nodular lymphoma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.03) Nodular lymphoma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.03''', NULL, + '(202.03) Nodular lymphoma, intra-abdominal lymph nodes', '(202.03) Nodular lymphoma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.04) Nodular lymphoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.04) Nodular lymphoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.04''', NULL, + '(202.04) Nodular lymphoma, lymph nodes of axilla and upper limb', '(202.04) Nodular lymphoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.05) Nodular lymphoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.05) Nodular lymphoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.05''', NULL, + '(202.05) Nodular lymphoma, lymph nodes of inguinal region and lower limb', '(202.05) Nodular lymphoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.06) Nodular lymphoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.06) Nodular lymphoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.06''', NULL, + '(202.06) Nodular lymphoma, intrapelvic lymph nodes', '(202.06) Nodular lymphoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.07) Nodular lymphoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.07) Nodular lymphoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.07''', NULL, + '(202.07) Nodular lymphoma, spleen', '(202.07) Nodular lymphoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.08) Nodular lymphoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Nodular lymphoma (202.0)\(202.08) Nodular lymphoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.08''', NULL, + '(202.08) Nodular lymphoma, lymph nodes of multiple sites', '(202.08) Nodular lymphoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.9''', NULL, + 'Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)', 'Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.90) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.90) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.90''', NULL, + '(202.90) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, unspecified site, extranodal and solid organ sites', '(202.90) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.91) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.91) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.91''', NULL, + '(202.91) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of head, face, and neck', '(202.91) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.92) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.92) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.92''', NULL, + '(202.92) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrathoracic lymph nodes', '(202.92) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.93) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.93) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.93''', NULL, + '(202.93) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intra-abdominal lymph nodes', '(202.93) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.94) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.94) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.94''', NULL, + '(202.94) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of axilla and upper limb', '(202.94) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.95) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.95) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.95''', NULL, + '(202.95) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of inguinal region and lower limb', '(202.95) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.96) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.96) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.96''', NULL, + '(202.96) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrapelvic lymph nodes', '(202.96) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.97) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.97) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.97''', NULL, + '(202.97) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, spleen', '(202.97) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.98) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\(202.98) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.98''', NULL, + '(202.98) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of multiple sites', '(202.98) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.8''', NULL, + 'Other malignant lymphomas (202.8)', 'Other malignant lymphomas (202.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.80) Other malignant lymphomas, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.80) Other malignant lymphomas, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.80''', NULL, + '(202.80) Other malignant lymphomas, unspecified site, extranodal and solid organ sites', '(202.80) Other malignant lymphomas, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.81) Other malignant lymphomas, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.81) Other malignant lymphomas, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.81''', NULL, + '(202.81) Other malignant lymphomas, lymph nodes of head, face, and neck', '(202.81) Other malignant lymphomas, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.82) Other malignant lymphomas, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.82) Other malignant lymphomas, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.82''', NULL, + '(202.82) Other malignant lymphomas, intrathoracic lymph nodes', '(202.82) Other malignant lymphomas, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.83) Other malignant lymphomas, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.83) Other malignant lymphomas, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.83''', NULL, + '(202.83) Other malignant lymphomas, intra-abdominal lymph nodes', '(202.83) Other malignant lymphomas, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.84) Other malignant lymphomas, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.84) Other malignant lymphomas, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.84''', NULL, + '(202.84) Other malignant lymphomas, lymph nodes of axilla and upper limb', '(202.84) Other malignant lymphomas, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.85) Other malignant lymphomas, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.85) Other malignant lymphomas, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.85''', NULL, + '(202.85) Other malignant lymphomas, lymph nodes of inguinal region and lower limb', '(202.85) Other malignant lymphomas, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.86) Other malignant lymphomas, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.86) Other malignant lymphomas, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.86''', NULL, + '(202.86) Other malignant lymphomas, intrapelvic lymph nodes', '(202.86) Other malignant lymphomas, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.87) Other malignant lymphomas, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.87) Other malignant lymphomas, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.87''', NULL, + '(202.87) Other malignant lymphomas, spleen', '(202.87) Other malignant lymphomas, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.88) Other malignant lymphomas, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Other malignant lymphomas (202.8)\(202.88) Other malignant lymphomas, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.88''', NULL, + '(202.88) Other malignant lymphomas, lymph nodes of multiple sites', '(202.88) Other malignant lymphomas, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.7''', NULL, + 'Peripheral T-cell lymphoma (202.7)', 'Peripheral T-cell lymphoma (202.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.70) Peripheral T cell lymphoma, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.70) Peripheral T cell lymphoma, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.70''', NULL, + '(202.70) Peripheral T cell lymphoma, unspecified site, extranodal and solid organ sites', '(202.70) Peripheral T cell lymphoma, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.71) Peripheral T cell lymphoma, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.71) Peripheral T cell lymphoma, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.71''', NULL, + '(202.71) Peripheral T cell lymphoma, lymph nodes of head, face, and neck', '(202.71) Peripheral T cell lymphoma, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.72) Peripheral T cell lymphoma, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.72) Peripheral T cell lymphoma, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.72''', NULL, + '(202.72) Peripheral T cell lymphoma, intrathoracic lymph nodes', '(202.72) Peripheral T cell lymphoma, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.73) Peripheral T cell lymphoma, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.73) Peripheral T cell lymphoma, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.73''', NULL, + '(202.73) Peripheral T cell lymphoma, intra-abdominal lymph nodes', '(202.73) Peripheral T cell lymphoma, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.74) Peripheral T cell lymphoma, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.74) Peripheral T cell lymphoma, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.74''', NULL, + '(202.74) Peripheral T cell lymphoma, lymph nodes of axilla and upper limb', '(202.74) Peripheral T cell lymphoma, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.75) Peripheral T cell lymphoma, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.75) Peripheral T cell lymphoma, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.75''', NULL, + '(202.75) Peripheral T cell lymphoma, lymph nodes of inguinal region and lower limb', '(202.75) Peripheral T cell lymphoma, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.76) Peripheral T cell lymphoma, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.76) Peripheral T cell lymphoma, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.76''', NULL, + '(202.76) Peripheral T cell lymphoma, intrapelvic lymph nodes', '(202.76) Peripheral T cell lymphoma, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.77) Peripheral T cell lymphoma, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.77) Peripheral T cell lymphoma, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.77''', NULL, + '(202.77) Peripheral T cell lymphoma, spleen', '(202.77) Peripheral T cell lymphoma, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.78) Peripheral T cell lymphoma, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Peripheral T-cell lymphoma (202.7)\(202.78) Peripheral T cell lymphoma, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.78''', NULL, + '(202.78) Peripheral T cell lymphoma, lymph nodes of multiple sites', '(202.78) Peripheral T cell lymphoma, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.2''', NULL, + 'Sezary''s disease (202.2)', 'Sezary''s disease (202.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.20) Sezary''s disease, unspecified site, extranodal and solid organ sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.20) Sezary''s disease, unspecified site, extranodal and solid organ sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.20''', NULL, + '(202.20) Sezary''s disease, unspecified site, extranodal and solid organ sites', '(202.20) Sezary''s disease, unspecified site, extranodal and solid organ sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.21) Sezary''s disease, lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.21) Sezary''s disease, lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.21''', NULL, + '(202.21) Sezary''s disease, lymph nodes of head, face, and neck', '(202.21) Sezary''s disease, lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.22) Sezary''s disease, intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.22) Sezary''s disease, intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.22''', NULL, + '(202.22) Sezary''s disease, intrathoracic lymph nodes', '(202.22) Sezary''s disease, intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.23) Sezary''s disease, intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.23) Sezary''s disease, intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.23''', NULL, + '(202.23) Sezary''s disease, intra-abdominal lymph nodes', '(202.23) Sezary''s disease, intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.24) Sezary''s disease, lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.24) Sezary''s disease, lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.24''', NULL, + '(202.24) Sezary''s disease, lymph nodes of axilla and upper limb', '(202.24) Sezary''s disease, lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.25) Sezary''s disease, lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.25) Sezary''s disease, lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.25''', NULL, + '(202.25) Sezary''s disease, lymph nodes of inguinal region and lower limb', '(202.25) Sezary''s disease, lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.26) Sezary''s disease, intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.26) Sezary''s disease, intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.26''', NULL, + '(202.26) Sezary''s disease, intrapelvic lymph nodes', '(202.26) Sezary''s disease, intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.27) Sezary''s disease, spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.27) Sezary''s disease, spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.27''', NULL, + '(202.27) Sezary''s disease, spleen', '(202.27) Sezary''s disease, spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.28) Sezary''s disease, lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\Sezary''s disease (202.2)\(202.28) Sezary''s disease, lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''202.28''', NULL, + '(202.28) Sezary''s disease, lymph nodes of multiple sites', '(202.28) Sezary''s disease, lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207''', NULL, + 'Other specified leukemia (207)', 'Other specified leukemia (207)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Acute erythremia and erythroleukemia (207.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Acute erythremia and erythroleukemia (207.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.0''', NULL, + 'Acute erythremia and erythroleukemia (207.0)', 'Acute erythremia and erythroleukemia (207.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Acute erythremia and erythroleukemia (207.0)\(207.00) Acute erythremia and erythroleukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Acute erythremia and erythroleukemia (207.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Acute erythremia and erythroleukemia (207.0)\(207.00) Acute erythremia and erythroleukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.00''', NULL, + '(207.00) Acute erythremia and erythroleukemia, without mention of having achieved remission', '(207.00) Acute erythremia and erythroleukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Acute erythremia and erythroleukemia (207.0)\(207.01) Acute erythremia and erythroleukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Acute erythremia and erythroleukemia (207.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Acute erythremia and erythroleukemia (207.0)\(207.01) Acute erythremia and erythroleukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.01''', NULL, + '(207.01) Acute erythremia and erythroleukemia, in remission', '(207.01) Acute erythremia and erythroleukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Acute erythremia and erythroleukemia (207.0)\(207.02) Acute erythremia and erythroleukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Acute erythremia and erythroleukemia (207.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Acute erythremia and erythroleukemia (207.0)\(207.02) Acute erythremia and erythroleukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.02''', NULL, + '(207.02) Acute erythremia and erythroleukemia, in relapse', '(207.02) Acute erythremia and erythroleukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Chronic erythremia (207.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Chronic erythremia (207.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.1''', NULL, + 'Chronic erythremia (207.1)', 'Chronic erythremia (207.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Chronic erythremia (207.1)\(207.10) Chronic erythremia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Chronic erythremia (207.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Chronic erythremia (207.1)\(207.10) Chronic erythremia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.10''', NULL, + '(207.10) Chronic erythremia, without mention of having achieved remission', '(207.10) Chronic erythremia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Chronic erythremia (207.1)\(207.11) Chronic erythremia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Chronic erythremia (207.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Chronic erythremia (207.1)\(207.11) Chronic erythremia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.11''', NULL, + '(207.11) Chronic erythremia, in remission', '(207.11) Chronic erythremia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Megakaryocytic leukemia (207.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Megakaryocytic leukemia (207.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.2''', NULL, + 'Megakaryocytic leukemia (207.2)', 'Megakaryocytic leukemia (207.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Megakaryocytic leukemia (207.2)\(207.20) Megakaryocytic leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Megakaryocytic leukemia (207.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Megakaryocytic leukemia (207.2)\(207.20) Megakaryocytic leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.20''', NULL, + '(207.20) Megakaryocytic leukemia, without mention of having achieved remission', '(207.20) Megakaryocytic leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Megakaryocytic leukemia (207.2)\(207.21) Megakaryocytic leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Megakaryocytic leukemia (207.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Megakaryocytic leukemia (207.2)\(207.21) Megakaryocytic leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.21''', NULL, + '(207.21) Megakaryocytic leukemia, in remission', '(207.21) Megakaryocytic leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Other specified leukemia (207.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Other specified leukemia (207.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.8''', NULL, + 'Other specified leukemia (207.8)', 'Other specified leukemia (207.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Other specified leukemia (207.8)\(207.80) Other specified leukemia, without mention of having achieved remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Other specified leukemia (207.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Other specified leukemia (207.8)\(207.80) Other specified leukemia, without mention of having achieved remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.80''', NULL, + '(207.80) Other specified leukemia, without mention of having achieved remission', '(207.80) Other specified leukemia, without mention of having achieved remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Other specified leukemia (207.8)\(207.81) Other specified leukemia, in remission\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Other specified leukemia (207.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Other specified leukemia (207.8)\(207.81) Other specified leukemia, in remission\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.81''', NULL, + '(207.81) Other specified leukemia, in remission', '(207.81) Other specified leukemia, in remission', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Other specified leukemia (207.8)\(207.82) Other specified leukemia, in relapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Other specified leukemia (207.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\Other specified leukemia (207)\Other specified leukemia (207.8)\(207.82) Other specified leukemia, in relapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''207.82''', NULL, + '(207.82) Other specified leukemia, in relapse', '(207.82) Other specified leukemia, in relapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''190'' AND ''199.99''', NULL, + 'Malignant neoplasm of other and unspecified sites (190-199.99)', 'Malignant neoplasm of other and unspecified sites (190-199.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\(193) Malignant neoplasm of thyroid gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\(193) Malignant neoplasm of thyroid gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''193''', NULL, + '(193) Malignant neoplasm of thyroid gland', '(193) Malignant neoplasm of thyroid gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''191''', NULL, + 'Malignant neoplasm of brain (191)', 'Malignant neoplasm of brain (191)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.0) Malignant neoplasm of cerebrum, except lobes and ventricles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.0) Malignant neoplasm of cerebrum, except lobes and ventricles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''191.0''', NULL, + '(191.0) Malignant neoplasm of cerebrum, except lobes and ventricles', '(191.0) Malignant neoplasm of cerebrum, except lobes and ventricles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.1) Malignant neoplasm of frontal lobe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.1) Malignant neoplasm of frontal lobe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''191.1''', NULL, + '(191.1) Malignant neoplasm of frontal lobe', '(191.1) Malignant neoplasm of frontal lobe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.2) Malignant neoplasm of temporal lobe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.2) Malignant neoplasm of temporal lobe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''191.2''', NULL, + '(191.2) Malignant neoplasm of temporal lobe', '(191.2) Malignant neoplasm of temporal lobe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.3) Malignant neoplasm of parietal lobe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.3) Malignant neoplasm of parietal lobe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''191.3''', NULL, + '(191.3) Malignant neoplasm of parietal lobe', '(191.3) Malignant neoplasm of parietal lobe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.4) Malignant neoplasm of occipital lobe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.4) Malignant neoplasm of occipital lobe\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''191.4''', NULL, + '(191.4) Malignant neoplasm of occipital lobe', '(191.4) Malignant neoplasm of occipital lobe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.5) Malignant neoplasm of ventricles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.5) Malignant neoplasm of ventricles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''191.5''', NULL, + '(191.5) Malignant neoplasm of ventricles', '(191.5) Malignant neoplasm of ventricles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.6) Malignant neoplasm of cerebellum nos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.6) Malignant neoplasm of cerebellum nos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''191.6''', NULL, + '(191.6) Malignant neoplasm of cerebellum nos', '(191.6) Malignant neoplasm of cerebellum nos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.7) Malignant neoplasm of brain stem\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.7) Malignant neoplasm of brain stem\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''191.7''', NULL, + '(191.7) Malignant neoplasm of brain stem', '(191.7) Malignant neoplasm of brain stem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.8) Malignant neoplasm of other parts of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.8) Malignant neoplasm of other parts of brain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''191.8''', NULL, + '(191.8) Malignant neoplasm of other parts of brain', '(191.8) Malignant neoplasm of other parts of brain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.9) Malignant neoplasm of brain, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of brain (191)\(191.9) Malignant neoplasm of brain, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''191.9''', NULL, + '(191.9) Malignant neoplasm of brain, unspecified', '(191.9) Malignant neoplasm of brain, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''190''', NULL, + 'Malignant neoplasm of eye (190)', 'Malignant neoplasm of eye (190)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.0) Malignant neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.0) Malignant neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''190.0''', NULL, + '(190.0) Malignant neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid', '(190.0) Malignant neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.1) Malignant neoplasm of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.1) Malignant neoplasm of orbit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''190.1''', NULL, + '(190.1) Malignant neoplasm of orbit', '(190.1) Malignant neoplasm of orbit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.2) Malignant neoplasm of lacrimal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.2) Malignant neoplasm of lacrimal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''190.2''', NULL, + '(190.2) Malignant neoplasm of lacrimal gland', '(190.2) Malignant neoplasm of lacrimal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.3) Malignant neoplasm of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.3) Malignant neoplasm of conjunctiva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''190.3''', NULL, + '(190.3) Malignant neoplasm of conjunctiva', '(190.3) Malignant neoplasm of conjunctiva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.4) Malignant neoplasm of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.4) Malignant neoplasm of cornea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''190.4''', NULL, + '(190.4) Malignant neoplasm of cornea', '(190.4) Malignant neoplasm of cornea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.5) Malignant neoplasm of retina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.5) Malignant neoplasm of retina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''190.5''', NULL, + '(190.5) Malignant neoplasm of retina', '(190.5) Malignant neoplasm of retina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.6) Malignant neoplasm of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.6) Malignant neoplasm of choroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''190.6''', NULL, + '(190.6) Malignant neoplasm of choroid', '(190.6) Malignant neoplasm of choroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.7) Malignant neoplasm of lacrimal duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.7) Malignant neoplasm of lacrimal duct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''190.7''', NULL, + '(190.7) Malignant neoplasm of lacrimal duct', '(190.7) Malignant neoplasm of lacrimal duct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.8) Malignant neoplasm of other specified sites of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.8) Malignant neoplasm of other specified sites of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''190.8''', NULL, + '(190.8) Malignant neoplasm of other specified sites of eye', '(190.8) Malignant neoplasm of other specified sites of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.9) Malignant neoplasm of eye, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of eye (190)\(190.9) Malignant neoplasm of eye, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''190.9''', NULL, + '(190.9) Malignant neoplasm of eye, part unspecified', '(190.9) Malignant neoplasm of eye, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''195''', NULL, + 'Malignant neoplasm of other and ill-defined sites (195)', 'Malignant neoplasm of other and ill-defined sites (195)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.0) Malignant neoplasm of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.0) Malignant neoplasm of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''195.0''', NULL, + '(195.0) Malignant neoplasm of head, face, and neck', '(195.0) Malignant neoplasm of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.1) Malignant neoplasm of thorax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.1) Malignant neoplasm of thorax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''195.1''', NULL, + '(195.1) Malignant neoplasm of thorax', '(195.1) Malignant neoplasm of thorax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.2) Malignant neoplasm of abdomen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.2) Malignant neoplasm of abdomen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''195.2''', NULL, + '(195.2) Malignant neoplasm of abdomen', '(195.2) Malignant neoplasm of abdomen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.3) Malignant neoplasm of pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.3) Malignant neoplasm of pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''195.3''', NULL, + '(195.3) Malignant neoplasm of pelvis', '(195.3) Malignant neoplasm of pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.4) Malignant neoplasm of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.4) Malignant neoplasm of upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''195.4''', NULL, + '(195.4) Malignant neoplasm of upper limb', '(195.4) Malignant neoplasm of upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.5) Malignant neoplasm of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.5) Malignant neoplasm of lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''195.5''', NULL, + '(195.5) Malignant neoplasm of lower limb', '(195.5) Malignant neoplasm of lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.8) Malignant neoplasm of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and ill-defined sites (195)\(195.8) Malignant neoplasm of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''195.8''', NULL, + '(195.8) Malignant neoplasm of other specified sites', '(195.8) Malignant neoplasm of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''192''', NULL, + 'Malignant neoplasm of other and unspecified parts of nervous system (192)', 'Malignant neoplasm of other and unspecified parts of nervous system (192)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.0) Malignant neoplasm of cranial nerves\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.0) Malignant neoplasm of cranial nerves\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''192.0''', NULL, + '(192.0) Malignant neoplasm of cranial nerves', '(192.0) Malignant neoplasm of cranial nerves', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.1) Malignant neoplasm of cerebral meninges\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.1) Malignant neoplasm of cerebral meninges\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''192.1''', NULL, + '(192.1) Malignant neoplasm of cerebral meninges', '(192.1) Malignant neoplasm of cerebral meninges', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.2) Malignant neoplasm of spinal cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.2) Malignant neoplasm of spinal cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''192.2''', NULL, + '(192.2) Malignant neoplasm of spinal cord', '(192.2) Malignant neoplasm of spinal cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.3) Malignant neoplasm of spinal meninges\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.3) Malignant neoplasm of spinal meninges\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''192.3''', NULL, + '(192.3) Malignant neoplasm of spinal meninges', '(192.3) Malignant neoplasm of spinal meninges', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.8) Malignant neoplasm of other specified sites of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.8) Malignant neoplasm of other specified sites of nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''192.8''', NULL, + '(192.8) Malignant neoplasm of other specified sites of nervous system', '(192.8) Malignant neoplasm of other specified sites of nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.9) Malignant neoplasm of nervous system, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other and unspecified parts of nervous system (192)\(192.9) Malignant neoplasm of nervous system, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''192.9''', NULL, + '(192.9) Malignant neoplasm of nervous system, part unspecified', '(192.9) Malignant neoplasm of nervous system, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''194''', NULL, + 'Malignant neoplasm of other endocrine glands and related structures (194)', 'Malignant neoplasm of other endocrine glands and related structures (194)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.0) Malignant neoplasm of adrenal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.0) Malignant neoplasm of adrenal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''194.0''', NULL, + '(194.0) Malignant neoplasm of adrenal gland', '(194.0) Malignant neoplasm of adrenal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.1) Malignant neoplasm of parathyroid gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.1) Malignant neoplasm of parathyroid gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''194.1''', NULL, + '(194.1) Malignant neoplasm of parathyroid gland', '(194.1) Malignant neoplasm of parathyroid gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.3) Malignant neoplasm of pituitary gland and craniopharyngeal duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.3) Malignant neoplasm of pituitary gland and craniopharyngeal duct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''194.3''', NULL, + '(194.3) Malignant neoplasm of pituitary gland and craniopharyngeal duct', '(194.3) Malignant neoplasm of pituitary gland and craniopharyngeal duct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.4) Malignant neoplasm of pineal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.4) Malignant neoplasm of pineal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''194.4''', NULL, + '(194.4) Malignant neoplasm of pineal gland', '(194.4) Malignant neoplasm of pineal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.5) Malignant neoplasm of carotid body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.5) Malignant neoplasm of carotid body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''194.5''', NULL, + '(194.5) Malignant neoplasm of carotid body', '(194.5) Malignant neoplasm of carotid body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.6) Malignant neoplasm of aortic body and other paraganglia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.6) Malignant neoplasm of aortic body and other paraganglia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''194.6''', NULL, + '(194.6) Malignant neoplasm of aortic body and other paraganglia', '(194.6) Malignant neoplasm of aortic body and other paraganglia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.8) Malignant neoplasm of other endocrine glands and related structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.8) Malignant neoplasm of other endocrine glands and related structures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''194.8''', NULL, + '(194.8) Malignant neoplasm of other endocrine glands and related structures', '(194.8) Malignant neoplasm of other endocrine glands and related structures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.9) Malignant neoplasm of endocrine gland, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm of other endocrine glands and related structures (194)\(194.9) Malignant neoplasm of endocrine gland, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''194.9''', NULL, + '(194.9) Malignant neoplasm of endocrine gland, site unspecified', '(194.9) Malignant neoplasm of endocrine gland, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm without specification of site (199)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm without specification of site (199)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''199''', NULL, + 'Malignant neoplasm without specification of site (199)', 'Malignant neoplasm without specification of site (199)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm without specification of site (199)\(199.0) Disseminated malignant neoplasm without specification of site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm without specification of site (199)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm without specification of site (199)\(199.0) Disseminated malignant neoplasm without specification of site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''199.0''', NULL, + '(199.0) Disseminated malignant neoplasm without specification of site', '(199.0) Disseminated malignant neoplasm without specification of site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm without specification of site (199)\(199.1) Other malignant neoplasm without specification of site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm without specification of site (199)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm without specification of site (199)\(199.1) Other malignant neoplasm without specification of site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''199.1''', NULL, + '(199.1) Other malignant neoplasm without specification of site', '(199.1) Other malignant neoplasm without specification of site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm without specification of site (199)\(199.2) Malignant neoplasm associated with transplant organ\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm without specification of site (199)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Malignant neoplasm without specification of site (199)\(199.2) Malignant neoplasm associated with transplant organ\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''199.2''', NULL, + '(199.2) Malignant neoplasm associated with transplant organ', '(199.2) Malignant neoplasm associated with transplant organ', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''196''', NULL, + 'Secondary and unspecified malignant neoplasm of lymph nodes (196)', 'Secondary and unspecified malignant neoplasm of lymph nodes (196)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.0) Secondary and unspecified malignant neoplasm of lymph nodes of head, face, and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.0) Secondary and unspecified malignant neoplasm of lymph nodes of head, face, and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''196.0''', NULL, + '(196.0) Secondary and unspecified malignant neoplasm of lymph nodes of head, face, and neck', '(196.0) Secondary and unspecified malignant neoplasm of lymph nodes of head, face, and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.1) Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.1) Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''196.1''', NULL, + '(196.1) Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes', '(196.1) Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.2) Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.2) Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''196.2''', NULL, + '(196.2) Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes', '(196.2) Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.3) Secondary and unspecified malignant neoplasm of lymph nodes of axilla and upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.3) Secondary and unspecified malignant neoplasm of lymph nodes of axilla and upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''196.3''', NULL, + '(196.3) Secondary and unspecified malignant neoplasm of lymph nodes of axilla and upper limb', '(196.3) Secondary and unspecified malignant neoplasm of lymph nodes of axilla and upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.5) Secondary and unspecified malignant neoplasm of lymph nodes of inguinal region and lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.5) Secondary and unspecified malignant neoplasm of lymph nodes of inguinal region and lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''196.5''', NULL, + '(196.5) Secondary and unspecified malignant neoplasm of lymph nodes of inguinal region and lower limb', '(196.5) Secondary and unspecified malignant neoplasm of lymph nodes of inguinal region and lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.6) Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.6) Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''196.6''', NULL, + '(196.6) Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes', '(196.6) Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.8) Secondary and unspecified malignant neoplasm of lymph nodes of multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.8) Secondary and unspecified malignant neoplasm of lymph nodes of multiple sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''196.8''', NULL, + '(196.8) Secondary and unspecified malignant neoplasm of lymph nodes of multiple sites', '(196.8) Secondary and unspecified malignant neoplasm of lymph nodes of multiple sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.9) Secondary and unspecified malignant neoplasm of lymph nodes, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary and unspecified malignant neoplasm of lymph nodes (196)\(196.9) Secondary and unspecified malignant neoplasm of lymph nodes, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''196.9''', NULL, + '(196.9) Secondary and unspecified malignant neoplasm of lymph nodes, site unspecified', '(196.9) Secondary and unspecified malignant neoplasm of lymph nodes, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198''', NULL, + 'Secondary malignant neoplasm of other specified sites (198)', 'Secondary malignant neoplasm of other specified sites (198)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.0) Secondary malignant neoplasm of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.0) Secondary malignant neoplasm of kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.0''', NULL, + '(198.0) Secondary malignant neoplasm of kidney', '(198.0) Secondary malignant neoplasm of kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.1) Secondary malignant neoplasm of other urinary organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.1) Secondary malignant neoplasm of other urinary organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.1''', NULL, + '(198.1) Secondary malignant neoplasm of other urinary organs', '(198.1) Secondary malignant neoplasm of other urinary organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.2) Secondary malignant neoplasm of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.2) Secondary malignant neoplasm of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.2''', NULL, + '(198.2) Secondary malignant neoplasm of skin', '(198.2) Secondary malignant neoplasm of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.3) Secondary malignant neoplasm of brain and spinal cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.3) Secondary malignant neoplasm of brain and spinal cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.3''', NULL, + '(198.3) Secondary malignant neoplasm of brain and spinal cord', '(198.3) Secondary malignant neoplasm of brain and spinal cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.4) Secondary malignant neoplasm of other parts of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.4) Secondary malignant neoplasm of other parts of nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.4''', NULL, + '(198.4) Secondary malignant neoplasm of other parts of nervous system', '(198.4) Secondary malignant neoplasm of other parts of nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.5) Secondary malignant neoplasm of bone and bone marrow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.5) Secondary malignant neoplasm of bone and bone marrow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.5''', NULL, + '(198.5) Secondary malignant neoplasm of bone and bone marrow', '(198.5) Secondary malignant neoplasm of bone and bone marrow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.6) Secondary malignant neoplasm of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.6) Secondary malignant neoplasm of ovary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.6''', NULL, + '(198.6) Secondary malignant neoplasm of ovary', '(198.6) Secondary malignant neoplasm of ovary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.7) Secondary malignant neoplasm of adrenal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\(198.7) Secondary malignant neoplasm of adrenal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.7''', NULL, + '(198.7) Secondary malignant neoplasm of adrenal gland', '(198.7) Secondary malignant neoplasm of adrenal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\Secondary malignant neoplasm of other specified sites (198.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\Secondary malignant neoplasm of other specified sites (198.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.8''', NULL, + 'Secondary malignant neoplasm of other specified sites (198.8)', 'Secondary malignant neoplasm of other specified sites (198.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\Secondary malignant neoplasm of other specified sites (198.8)\(198.81) Secondary malignant neoplasm of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\Secondary malignant neoplasm of other specified sites (198.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\Secondary malignant neoplasm of other specified sites (198.8)\(198.81) Secondary malignant neoplasm of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.81''', NULL, + '(198.81) Secondary malignant neoplasm of breast', '(198.81) Secondary malignant neoplasm of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\Secondary malignant neoplasm of other specified sites (198.8)\(198.82) Secondary malignant neoplasm of genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\Secondary malignant neoplasm of other specified sites (198.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\Secondary malignant neoplasm of other specified sites (198.8)\(198.82) Secondary malignant neoplasm of genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.82''', NULL, + '(198.82) Secondary malignant neoplasm of genital organs', '(198.82) Secondary malignant neoplasm of genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\Secondary malignant neoplasm of other specified sites (198.8)\(198.89) Secondary malignant neoplasm of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\Secondary malignant neoplasm of other specified sites (198.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of other specified sites (198)\Secondary malignant neoplasm of other specified sites (198.8)\(198.89) Secondary malignant neoplasm of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''198.89''', NULL, + '(198.89) Secondary malignant neoplasm of other specified sites', '(198.89) Secondary malignant neoplasm of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''197''', NULL, + 'Secondary malignant neoplasm of respiratory and digestive systems (197)', 'Secondary malignant neoplasm of respiratory and digestive systems (197)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.0) Secondary malignant neoplasm of lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.0) Secondary malignant neoplasm of lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''197.0''', NULL, + '(197.0) Secondary malignant neoplasm of lung', '(197.0) Secondary malignant neoplasm of lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.1) Secondary malignant neoplasm of mediastinum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.1) Secondary malignant neoplasm of mediastinum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''197.1''', NULL, + '(197.1) Secondary malignant neoplasm of mediastinum', '(197.1) Secondary malignant neoplasm of mediastinum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.2) Secondary malignant neoplasm of pleura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.2) Secondary malignant neoplasm of pleura\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''197.2''', NULL, + '(197.2) Secondary malignant neoplasm of pleura', '(197.2) Secondary malignant neoplasm of pleura', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.3) Secondary malignant neoplasm of other respiratory organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.3) Secondary malignant neoplasm of other respiratory organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''197.3''', NULL, + '(197.3) Secondary malignant neoplasm of other respiratory organs', '(197.3) Secondary malignant neoplasm of other respiratory organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.4) Secondary malignant neoplasm of small intestine including duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.4) Secondary malignant neoplasm of small intestine including duodenum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''197.4''', NULL, + '(197.4) Secondary malignant neoplasm of small intestine including duodenum', '(197.4) Secondary malignant neoplasm of small intestine including duodenum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.5) Secondary malignant neoplasm of large intestine and rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.5) Secondary malignant neoplasm of large intestine and rectum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''197.5''', NULL, + '(197.5) Secondary malignant neoplasm of large intestine and rectum', '(197.5) Secondary malignant neoplasm of large intestine and rectum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.6) Secondary malignant neoplasm of retroperitoneum and peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.6) Secondary malignant neoplasm of retroperitoneum and peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''197.6''', NULL, + '(197.6) Secondary malignant neoplasm of retroperitoneum and peritoneum', '(197.6) Secondary malignant neoplasm of retroperitoneum and peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.7) Malignant neoplasm of liver, secondary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.7) Malignant neoplasm of liver, secondary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''197.7''', NULL, + '(197.7) Malignant neoplasm of liver, secondary', '(197.7) Malignant neoplasm of liver, secondary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.8) Secondary malignant neoplasm of other digestive organs and spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of other and unspecified sites (190-199.99)\Secondary malignant neoplasm of respiratory and digestive systems (197)\(197.8) Secondary malignant neoplasm of other digestive organs and spleen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''197.8''', NULL, + '(197.8) Secondary malignant neoplasm of other digestive organs and spleen', '(197.8) Secondary malignant neoplasm of other digestive organs and spleen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''160'' AND ''165.99''', NULL, + 'Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)', 'Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''161''', NULL, + 'Malignant neoplasm of larynx (161)', 'Malignant neoplasm of larynx (161)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.0) Malignant neoplasm of glottis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.0) Malignant neoplasm of glottis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''161.0''', NULL, + '(161.0) Malignant neoplasm of glottis', '(161.0) Malignant neoplasm of glottis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.1) Malignant neoplasm of supraglottis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.1) Malignant neoplasm of supraglottis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''161.1''', NULL, + '(161.1) Malignant neoplasm of supraglottis', '(161.1) Malignant neoplasm of supraglottis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.2) Malignant neoplasm of subglottis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.2) Malignant neoplasm of subglottis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''161.2''', NULL, + '(161.2) Malignant neoplasm of subglottis', '(161.2) Malignant neoplasm of subglottis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.3) Malignant neoplasm of laryngeal cartilages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.3) Malignant neoplasm of laryngeal cartilages\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''161.3''', NULL, + '(161.3) Malignant neoplasm of laryngeal cartilages', '(161.3) Malignant neoplasm of laryngeal cartilages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.8) Malignant neoplasm of other specified sites of larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.8) Malignant neoplasm of other specified sites of larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''161.8''', NULL, + '(161.8) Malignant neoplasm of other specified sites of larynx', '(161.8) Malignant neoplasm of other specified sites of larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.9) Malignant neoplasm of larynx, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of larynx (161)\(161.9) Malignant neoplasm of larynx, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''161.9''', NULL, + '(161.9) Malignant neoplasm of larynx, unspecified', '(161.9) Malignant neoplasm of larynx, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''160''', NULL, + 'Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)', 'Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.0) Malignant neoplasm of nasal cavities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.0) Malignant neoplasm of nasal cavities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''160.0''', NULL, + '(160.0) Malignant neoplasm of nasal cavities', '(160.0) Malignant neoplasm of nasal cavities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.1) Malignant neoplasm of auditory tube, middle ear, and mastoid air cells\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.1) Malignant neoplasm of auditory tube, middle ear, and mastoid air cells\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''160.1''', NULL, + '(160.1) Malignant neoplasm of auditory tube, middle ear, and mastoid air cells', '(160.1) Malignant neoplasm of auditory tube, middle ear, and mastoid air cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.2) Malignant neoplasm of maxillary sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.2) Malignant neoplasm of maxillary sinus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''160.2''', NULL, + '(160.2) Malignant neoplasm of maxillary sinus', '(160.2) Malignant neoplasm of maxillary sinus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.3) Malignant neoplasm of ethmoidal sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.3) Malignant neoplasm of ethmoidal sinus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''160.3''', NULL, + '(160.3) Malignant neoplasm of ethmoidal sinus', '(160.3) Malignant neoplasm of ethmoidal sinus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.4) Malignant neoplasm of frontal sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.4) Malignant neoplasm of frontal sinus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''160.4''', NULL, + '(160.4) Malignant neoplasm of frontal sinus', '(160.4) Malignant neoplasm of frontal sinus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.5) Malignant neoplasm of sphenoidal sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.5) Malignant neoplasm of sphenoidal sinus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''160.5''', NULL, + '(160.5) Malignant neoplasm of sphenoidal sinus', '(160.5) Malignant neoplasm of sphenoidal sinus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.8) Malignant neoplasm of other accessory sinuses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.8) Malignant neoplasm of other accessory sinuses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''160.8''', NULL, + '(160.8) Malignant neoplasm of other accessory sinuses', '(160.8) Malignant neoplasm of other accessory sinuses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.9) Malignant neoplasm of accessory sinus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\(160.9) Malignant neoplasm of accessory sinus, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''160.9''', NULL, + '(160.9) Malignant neoplasm of accessory sinus, unspecified', '(160.9) Malignant neoplasm of accessory sinus, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''165''', NULL, + 'Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)', 'Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\(165.0) Malignant neoplasm of upper respiratory tract, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\(165.0) Malignant neoplasm of upper respiratory tract, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''165.0''', NULL, + '(165.0) Malignant neoplasm of upper respiratory tract, part unspecified', '(165.0) Malignant neoplasm of upper respiratory tract, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\(165.8) Malignant neoplasm of other sites within the respiratory system and intrathoracic organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\(165.8) Malignant neoplasm of other sites within the respiratory system and intrathoracic organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''165.8''', NULL, + '(165.8) Malignant neoplasm of other sites within the respiratory system and intrathoracic organs', '(165.8) Malignant neoplasm of other sites within the respiratory system and intrathoracic organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\(165.9) Malignant neoplasm of ill-defined sites within the respiratory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\(165.9) Malignant neoplasm of ill-defined sites within the respiratory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''165.9''', NULL, + '(165.9) Malignant neoplasm of ill-defined sites within the respiratory system', '(165.9) Malignant neoplasm of ill-defined sites within the respiratory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''163''', NULL, + 'Malignant neoplasm of pleura (163)', 'Malignant neoplasm of pleura (163)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\(163.0) Malignant neoplasm of parietal pleura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\(163.0) Malignant neoplasm of parietal pleura\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''163.0''', NULL, + '(163.0) Malignant neoplasm of parietal pleura', '(163.0) Malignant neoplasm of parietal pleura', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\(163.1) Malignant neoplasm of visceral pleura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\(163.1) Malignant neoplasm of visceral pleura\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''163.1''', NULL, + '(163.1) Malignant neoplasm of visceral pleura', '(163.1) Malignant neoplasm of visceral pleura', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\(163.8) Malignant neoplasm of other specified sites of pleura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\(163.8) Malignant neoplasm of other specified sites of pleura\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''163.8''', NULL, + '(163.8) Malignant neoplasm of other specified sites of pleura', '(163.8) Malignant neoplasm of other specified sites of pleura', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\(163.9) Malignant neoplasm of pleura, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of pleura (163)\(163.9) Malignant neoplasm of pleura, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''163.9''', NULL, + '(163.9) Malignant neoplasm of pleura, unspecified', '(163.9) Malignant neoplasm of pleura, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''164''', NULL, + 'Malignant neoplasm of thymus, heart, and mediastinum (164)', 'Malignant neoplasm of thymus, heart, and mediastinum (164)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.0) Malignant neoplasm of thymus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.0) Malignant neoplasm of thymus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''164.0''', NULL, + '(164.0) Malignant neoplasm of thymus', '(164.0) Malignant neoplasm of thymus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.1) Malignant neoplasm of heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.1) Malignant neoplasm of heart\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''164.1''', NULL, + '(164.1) Malignant neoplasm of heart', '(164.1) Malignant neoplasm of heart', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.2) Malignant neoplasm of anterior mediastinum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.2) Malignant neoplasm of anterior mediastinum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''164.2''', NULL, + '(164.2) Malignant neoplasm of anterior mediastinum', '(164.2) Malignant neoplasm of anterior mediastinum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.3) Malignant neoplasm of posterior mediastinum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.3) Malignant neoplasm of posterior mediastinum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''164.3''', NULL, + '(164.3) Malignant neoplasm of posterior mediastinum', '(164.3) Malignant neoplasm of posterior mediastinum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.8) Malignant neoplasm of other parts of mediastinum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.8) Malignant neoplasm of other parts of mediastinum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''164.8''', NULL, + '(164.8) Malignant neoplasm of other parts of mediastinum', '(164.8) Malignant neoplasm of other parts of mediastinum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.9) Malignant neoplasm of mediastinum, part unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of thymus, heart, and mediastinum (164)\(164.9) Malignant neoplasm of mediastinum, part unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''164.9''', NULL, + '(164.9) Malignant neoplasm of mediastinum, part unspecified', '(164.9) Malignant neoplasm of mediastinum, part unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''162''', NULL, + 'Malignant neoplasm of trachea, bronchus, and lung (162)', 'Malignant neoplasm of trachea, bronchus, and lung (162)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.0) Malignant neoplasm of trachea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.0) Malignant neoplasm of trachea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''162.0''', NULL, + '(162.0) Malignant neoplasm of trachea', '(162.0) Malignant neoplasm of trachea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.2) Malignant neoplasm of main bronchus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.2) Malignant neoplasm of main bronchus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''162.2''', NULL, + '(162.2) Malignant neoplasm of main bronchus', '(162.2) Malignant neoplasm of main bronchus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.3) Malignant neoplasm of upper lobe, bronchus or lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.3) Malignant neoplasm of upper lobe, bronchus or lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''162.3''', NULL, + '(162.3) Malignant neoplasm of upper lobe, bronchus or lung', '(162.3) Malignant neoplasm of upper lobe, bronchus or lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.4) Malignant neoplasm of middle lobe, bronchus or lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.4) Malignant neoplasm of middle lobe, bronchus or lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''162.4''', NULL, + '(162.4) Malignant neoplasm of middle lobe, bronchus or lung', '(162.4) Malignant neoplasm of middle lobe, bronchus or lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.5) Malignant neoplasm of lower lobe, bronchus or lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.5) Malignant neoplasm of lower lobe, bronchus or lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''162.5''', NULL, + '(162.5) Malignant neoplasm of lower lobe, bronchus or lung', '(162.5) Malignant neoplasm of lower lobe, bronchus or lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.8) Malignant neoplasm of other parts of bronchus or lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.8) Malignant neoplasm of other parts of bronchus or lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''162.8''', NULL, + '(162.8) Malignant neoplasm of other parts of bronchus or lung', '(162.8) Malignant neoplasm of other parts of bronchus or lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.9) Malignant neoplasm of bronchus and lung, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\Malignant neoplasm of trachea, bronchus, and lung (162)\(162.9) Malignant neoplasm of bronchus and lung, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''162.9''', NULL, + '(162.9) Malignant neoplasm of bronchus and lung, unspecified', '(162.9) Malignant neoplasm of bronchus and lung, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''235'' AND ''238.99''', NULL, + 'Neoplasms of uncertain behavior (235-238.99)', 'Neoplasms of uncertain behavior (235-238.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''235''', NULL, + 'Neoplasm of uncertain behavior of digestive and respiratory systems (235)', 'Neoplasm of uncertain behavior of digestive and respiratory systems (235)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.0) Neoplasm of uncertain behavior of major salivary glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.0) Neoplasm of uncertain behavior of major salivary glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''235.0''', NULL, + '(235.0) Neoplasm of uncertain behavior of major salivary glands', '(235.0) Neoplasm of uncertain behavior of major salivary glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.1) Neoplasm of uncertain behavior of lip, oral cavity, and pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.1) Neoplasm of uncertain behavior of lip, oral cavity, and pharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''235.1''', NULL, + '(235.1) Neoplasm of uncertain behavior of lip, oral cavity, and pharynx', '(235.1) Neoplasm of uncertain behavior of lip, oral cavity, and pharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.2) Neoplasm of uncertain behavior of stomach, intestines, and rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.2) Neoplasm of uncertain behavior of stomach, intestines, and rectum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''235.2''', NULL, + '(235.2) Neoplasm of uncertain behavior of stomach, intestines, and rectum', '(235.2) Neoplasm of uncertain behavior of stomach, intestines, and rectum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.3) Neoplasm of uncertain behavior of liver and biliary passages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.3) Neoplasm of uncertain behavior of liver and biliary passages\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''235.3''', NULL, + '(235.3) Neoplasm of uncertain behavior of liver and biliary passages', '(235.3) Neoplasm of uncertain behavior of liver and biliary passages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.4) Neoplasm of uncertain behavior of retroperitoneum and peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.4) Neoplasm of uncertain behavior of retroperitoneum and peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''235.4''', NULL, + '(235.4) Neoplasm of uncertain behavior of retroperitoneum and peritoneum', '(235.4) Neoplasm of uncertain behavior of retroperitoneum and peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.5) Neoplasm of uncertain behavior of other and unspecified digestive organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.5) Neoplasm of uncertain behavior of other and unspecified digestive organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''235.5''', NULL, + '(235.5) Neoplasm of uncertain behavior of other and unspecified digestive organs', '(235.5) Neoplasm of uncertain behavior of other and unspecified digestive organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.6) Neoplasm of uncertain behavior of larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.6) Neoplasm of uncertain behavior of larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''235.6''', NULL, + '(235.6) Neoplasm of uncertain behavior of larynx', '(235.6) Neoplasm of uncertain behavior of larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.7) Neoplasm of uncertain behavior of trachea, bronchus, and lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.7) Neoplasm of uncertain behavior of trachea, bronchus, and lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''235.7''', NULL, + '(235.7) Neoplasm of uncertain behavior of trachea, bronchus, and lung', '(235.7) Neoplasm of uncertain behavior of trachea, bronchus, and lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.8) Neoplasm of uncertain behavior of pleura, thymus, and mediastinum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.8) Neoplasm of uncertain behavior of pleura, thymus, and mediastinum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''235.8''', NULL, + '(235.8) Neoplasm of uncertain behavior of pleura, thymus, and mediastinum', '(235.8) Neoplasm of uncertain behavior of pleura, thymus, and mediastinum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.9) Neoplasm of uncertain behavior of other and unspecified respiratory organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\(235.9) Neoplasm of uncertain behavior of other and unspecified respiratory organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''235.9''', NULL, + '(235.9) Neoplasm of uncertain behavior of other and unspecified respiratory organs', '(235.9) Neoplasm of uncertain behavior of other and unspecified respiratory organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237''', NULL, + 'Neoplasm of uncertain behavior of endocrine glands and nervous system (237)', 'Neoplasm of uncertain behavior of endocrine glands and nervous system (237)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.0) Neoplasm of uncertain behavior of pituitary gland and craniopharyngeal duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.0) Neoplasm of uncertain behavior of pituitary gland and craniopharyngeal duct\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.0''', NULL, + '(237.0) Neoplasm of uncertain behavior of pituitary gland and craniopharyngeal duct', '(237.0) Neoplasm of uncertain behavior of pituitary gland and craniopharyngeal duct', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.1) Neoplasm of uncertain behavior of pineal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.1) Neoplasm of uncertain behavior of pineal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.1''', NULL, + '(237.1) Neoplasm of uncertain behavior of pineal gland', '(237.1) Neoplasm of uncertain behavior of pineal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.2) Neoplasm of uncertain behavior of adrenal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.2) Neoplasm of uncertain behavior of adrenal gland\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.2''', NULL, + '(237.2) Neoplasm of uncertain behavior of adrenal gland', '(237.2) Neoplasm of uncertain behavior of adrenal gland', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.3) Neoplasm of uncertain behavior of paraganglia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.3) Neoplasm of uncertain behavior of paraganglia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.3''', NULL, + '(237.3) Neoplasm of uncertain behavior of paraganglia', '(237.3) Neoplasm of uncertain behavior of paraganglia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.4) Neoplasm of uncertain behavior of other and unspecified endocrine glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.4) Neoplasm of uncertain behavior of other and unspecified endocrine glands\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.4''', NULL, + '(237.4) Neoplasm of uncertain behavior of other and unspecified endocrine glands', '(237.4) Neoplasm of uncertain behavior of other and unspecified endocrine glands', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.5) Neoplasm of uncertain behavior of brain and spinal cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.5) Neoplasm of uncertain behavior of brain and spinal cord\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.5''', NULL, + '(237.5) Neoplasm of uncertain behavior of brain and spinal cord', '(237.5) Neoplasm of uncertain behavior of brain and spinal cord', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.6) Neoplasm of uncertain behavior of meninges\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.6) Neoplasm of uncertain behavior of meninges\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.6''', NULL, + '(237.6) Neoplasm of uncertain behavior of meninges', '(237.6) Neoplasm of uncertain behavior of meninges', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.9) Neoplasm of uncertain behavior of other and unspecified parts of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\(237.9) Neoplasm of uncertain behavior of other and unspecified parts of nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.9''', NULL, + '(237.9) Neoplasm of uncertain behavior of other and unspecified parts of nervous system', '(237.9) Neoplasm of uncertain behavior of other and unspecified parts of nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.7''', NULL, + 'Neurofibromatosis (237.7)', 'Neurofibromatosis (237.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\(237.70) Neurofibromatosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\(237.70) Neurofibromatosis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.70''', NULL, + '(237.70) Neurofibromatosis, unspecified', '(237.70) Neurofibromatosis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\(237.71) Neurofibromatosis, type 1 [von recklinghausen''s disease]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\(237.71) Neurofibromatosis, type 1 [von recklinghausen''s disease]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.71''', NULL, + '(237.71) Neurofibromatosis, type 1 [von recklinghausen''s disease]', '(237.71) Neurofibromatosis, type 1 [von recklinghausen''s disease]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\(237.72) Neurofibromatosis, type 2 [acoustic neurofibromatosis]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\(237.72) Neurofibromatosis, type 2 [acoustic neurofibromatosis]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.72''', NULL, + '(237.72) Neurofibromatosis, type 2 [acoustic neurofibromatosis]', '(237.72) Neurofibromatosis, type 2 [acoustic neurofibromatosis]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\(237.73) Schwannomatosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\(237.73) Schwannomatosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.73''', NULL, + '(237.73) Schwannomatosis', '(237.73) Schwannomatosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\(237.79) Other neurofibromatosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\Neurofibromatosis (237.7)\(237.79) Other neurofibromatosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''237.79''', NULL, + '(237.79) Other neurofibromatosis', '(237.79) Other neurofibromatosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236''', NULL, + 'Neoplasm of uncertain behavior of genitourinary organs (236)', 'Neoplasm of uncertain behavior of genitourinary organs (236)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.0) Neoplasm of uncertain behavior of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.0) Neoplasm of uncertain behavior of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.0''', NULL, + '(236.0) Neoplasm of uncertain behavior of uterus', '(236.0) Neoplasm of uncertain behavior of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.1) Neoplasm of uncertain behavior of placenta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.1) Neoplasm of uncertain behavior of placenta\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.1''', NULL, + '(236.1) Neoplasm of uncertain behavior of placenta', '(236.1) Neoplasm of uncertain behavior of placenta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.2) Neoplasm of uncertain behavior of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.2) Neoplasm of uncertain behavior of ovary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.2''', NULL, + '(236.2) Neoplasm of uncertain behavior of ovary', '(236.2) Neoplasm of uncertain behavior of ovary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.3) Neoplasm of uncertain behavior of other and unspecified female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.3) Neoplasm of uncertain behavior of other and unspecified female genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.3''', NULL, + '(236.3) Neoplasm of uncertain behavior of other and unspecified female genital organs', '(236.3) Neoplasm of uncertain behavior of other and unspecified female genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.4) Neoplasm of uncertain behavior of testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.4) Neoplasm of uncertain behavior of testis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.4''', NULL, + '(236.4) Neoplasm of uncertain behavior of testis', '(236.4) Neoplasm of uncertain behavior of testis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.5) Neoplasm of uncertain behavior of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.5) Neoplasm of uncertain behavior of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.5''', NULL, + '(236.5) Neoplasm of uncertain behavior of prostate', '(236.5) Neoplasm of uncertain behavior of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.6) Neoplasm of uncertain behavior of other and unspecified male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.6) Neoplasm of uncertain behavior of other and unspecified male genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.6''', NULL, + '(236.6) Neoplasm of uncertain behavior of other and unspecified male genital organs', '(236.6) Neoplasm of uncertain behavior of other and unspecified male genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.7) Neoplasm of uncertain behavior of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\(236.7) Neoplasm of uncertain behavior of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.7''', NULL, + '(236.7) Neoplasm of uncertain behavior of bladder', '(236.7) Neoplasm of uncertain behavior of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.9''', NULL, + 'Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)', 'Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\(236.90) Neoplasm of uncertain behavior of urinary organ, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\(236.90) Neoplasm of uncertain behavior of urinary organ, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.90''', NULL, + '(236.90) Neoplasm of uncertain behavior of urinary organ, unspecified', '(236.90) Neoplasm of uncertain behavior of urinary organ, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\(236.91) Neoplasm of uncertain behavior of kidney and ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\(236.91) Neoplasm of uncertain behavior of kidney and ureter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.91''', NULL, + '(236.91) Neoplasm of uncertain behavior of kidney and ureter', '(236.91) Neoplasm of uncertain behavior of kidney and ureter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\(236.99) Neoplasm of uncertain behavior of other and unspecified urinary organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of genitourinary organs (236)\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\(236.99) Neoplasm of uncertain behavior of other and unspecified urinary organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''236.99''', NULL, + '(236.99) Neoplasm of uncertain behavior of other and unspecified urinary organs', '(236.99) Neoplasm of uncertain behavior of other and unspecified urinary organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238''', NULL, + 'Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)', 'Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.0) Neoplasm of uncertain behavior of bone and articular cartilage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.0) Neoplasm of uncertain behavior of bone and articular cartilage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.0''', NULL, + '(238.0) Neoplasm of uncertain behavior of bone and articular cartilage', '(238.0) Neoplasm of uncertain behavior of bone and articular cartilage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.1) Neoplasm of uncertain behavior of connective and other soft tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.1) Neoplasm of uncertain behavior of connective and other soft tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.1''', NULL, + '(238.1) Neoplasm of uncertain behavior of connective and other soft tissue', '(238.1) Neoplasm of uncertain behavior of connective and other soft tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.2) Neoplasm of uncertain behavior of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.2) Neoplasm of uncertain behavior of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.2''', NULL, + '(238.2) Neoplasm of uncertain behavior of skin', '(238.2) Neoplasm of uncertain behavior of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.3) Neoplasm of uncertain behavior of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.3) Neoplasm of uncertain behavior of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.3''', NULL, + '(238.3) Neoplasm of uncertain behavior of breast', '(238.3) Neoplasm of uncertain behavior of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.4) Polycythemia vera\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.4) Polycythemia vera\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.4''', NULL, + '(238.4) Polycythemia vera', '(238.4) Polycythemia vera', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.5) Neoplasm of uncertain behavior of histiocytic and mast cells\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.5) Neoplasm of uncertain behavior of histiocytic and mast cells\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.5''', NULL, + '(238.5) Neoplasm of uncertain behavior of histiocytic and mast cells', '(238.5) Neoplasm of uncertain behavior of histiocytic and mast cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.6) Neoplasm of uncertain behavior of plasma cells\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.6) Neoplasm of uncertain behavior of plasma cells\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.6''', NULL, + '(238.6) Neoplasm of uncertain behavior of plasma cells', '(238.6) Neoplasm of uncertain behavior of plasma cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.8) Neoplasm of uncertain behavior of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.8) Neoplasm of uncertain behavior of other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.8''', NULL, + '(238.8) Neoplasm of uncertain behavior of other specified sites', '(238.8) Neoplasm of uncertain behavior of other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.9) Neoplasm of uncertain behavior, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\(238.9) Neoplasm of uncertain behavior, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.9''', NULL, + '(238.9) Neoplasm of uncertain behavior, site unspecified', '(238.9) Neoplasm of uncertain behavior, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.7''', NULL, + 'Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)', 'Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.71) Essential thrombocythemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.71) Essential thrombocythemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.71''', NULL, + '(238.71) Essential thrombocythemia', '(238.71) Essential thrombocythemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.72) Low grade myelodysplastic syndrome lesions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.72) Low grade myelodysplastic syndrome lesions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.72''', NULL, + '(238.72) Low grade myelodysplastic syndrome lesions', '(238.72) Low grade myelodysplastic syndrome lesions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.73) High grade myelodysplastic syndrome lesions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.73) High grade myelodysplastic syndrome lesions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.73''', NULL, + '(238.73) High grade myelodysplastic syndrome lesions', '(238.73) High grade myelodysplastic syndrome lesions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.74) Myelodysplastic syndrome with 5q deletion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.74) Myelodysplastic syndrome with 5q deletion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.74''', NULL, + '(238.74) Myelodysplastic syndrome with 5q deletion', '(238.74) Myelodysplastic syndrome with 5q deletion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.75) Myelodysplastic syndrome, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.75) Myelodysplastic syndrome, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.75''', NULL, + '(238.75) Myelodysplastic syndrome, unspecified', '(238.75) Myelodysplastic syndrome, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.76) Myelofibrosis with myeloid metaplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.76) Myelofibrosis with myeloid metaplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.76''', NULL, + '(238.76) Myelofibrosis with myeloid metaplasia', '(238.76) Myelofibrosis with myeloid metaplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.77) Post-transplant lymphoproliferative disorder (PTLD)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.77) Post-transplant lymphoproliferative disorder (PTLD)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''238.77) Post'' AND ''transplant lymphoproliferative disorder (PTLD''', NULL, + '(238.77) Post-transplant lymphoproliferative disorder (PTLD)', '(238.77) Post-transplant lymphoproliferative disorder (PTLD)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.79) Other lymphatic and hematopoietic tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of uncertain behavior (235-238.99)\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\(238.79) Other lymphatic and hematopoietic tissues\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''238.79''', NULL, + '(238.79) Other lymphatic and hematopoietic tissues', '(238.79) Other lymphatic and hematopoietic tissues', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''239'' AND ''239.99''', NULL, + 'Neoplasms of unspecified nature (239-239.99)', 'Neoplasms of unspecified nature (239-239.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239''', NULL, + 'Neoplasms of unspecified nature (239)', 'Neoplasms of unspecified nature (239)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.0) Neoplasm of unspecified nature of digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.0) Neoplasm of unspecified nature of digestive system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.0''', NULL, + '(239.0) Neoplasm of unspecified nature of digestive system', '(239.0) Neoplasm of unspecified nature of digestive system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.1) Neoplasm of unspecified nature of respiratory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.1) Neoplasm of unspecified nature of respiratory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.1''', NULL, + '(239.1) Neoplasm of unspecified nature of respiratory system', '(239.1) Neoplasm of unspecified nature of respiratory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.2) Neoplasm of unspecified nature of bone, soft tissue, and skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.2) Neoplasm of unspecified nature of bone, soft tissue, and skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.2''', NULL, + '(239.2) Neoplasm of unspecified nature of bone, soft tissue, and skin', '(239.2) Neoplasm of unspecified nature of bone, soft tissue, and skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.3) Neoplasm of unspecified nature of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.3) Neoplasm of unspecified nature of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.3''', NULL, + '(239.3) Neoplasm of unspecified nature of breast', '(239.3) Neoplasm of unspecified nature of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.4) Neoplasm of unspecified nature of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.4) Neoplasm of unspecified nature of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.4''', NULL, + '(239.4) Neoplasm of unspecified nature of bladder', '(239.4) Neoplasm of unspecified nature of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.5) Neoplasm of unspecified nature of other genitourinary organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.5) Neoplasm of unspecified nature of other genitourinary organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.5''', NULL, + '(239.5) Neoplasm of unspecified nature of other genitourinary organs', '(239.5) Neoplasm of unspecified nature of other genitourinary organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.6) Neoplasm of unspecified nature of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.6) Neoplasm of unspecified nature of brain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.6''', NULL, + '(239.6) Neoplasm of unspecified nature of brain', '(239.6) Neoplasm of unspecified nature of brain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.7) Neoplasm of unspecified nature of endocrine glands and other parts of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.7) Neoplasm of unspecified nature of endocrine glands and other parts of nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.7''', NULL, + '(239.7) Neoplasm of unspecified nature of endocrine glands and other parts of nervous system', '(239.7) Neoplasm of unspecified nature of endocrine glands and other parts of nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.9) Neoplasm of unspecified nature, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\(239.9) Neoplasm of unspecified nature, site unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.9''', NULL, + '(239.9) Neoplasm of unspecified nature, site unspecified', '(239.9) Neoplasm of unspecified nature, site unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\Neoplasm of unspecified nature of other specified sites (239.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\Neoplasm of unspecified nature of other specified sites (239.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.8''', NULL, + 'Neoplasm of unspecified nature of other specified sites (239.8)', 'Neoplasm of unspecified nature of other specified sites (239.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\Neoplasm of unspecified nature of other specified sites (239.8)\(239.81) Neoplasms of unspecified nature, retina and choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\Neoplasm of unspecified nature of other specified sites (239.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\Neoplasm of unspecified nature of other specified sites (239.8)\(239.81) Neoplasms of unspecified nature, retina and choroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.81''', NULL, + '(239.81) Neoplasms of unspecified nature, retina and choroid', '(239.81) Neoplasms of unspecified nature, retina and choroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\Neoplasm of unspecified nature of other specified sites (239.8)\(239.89) Neoplasms of unspecified nature, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\Neoplasm of unspecified nature of other specified sites (239.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neoplasms of unspecified nature (239-239.99)\Neoplasms of unspecified nature (239)\Neoplasm of unspecified nature of other specified sites (239.8)\(239.89) Neoplasms of unspecified nature, other specified sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''239.89''', NULL, + '(239.89) Neoplasms of unspecified nature, other specified sites', '(239.89) Neoplasms of unspecified nature, other specified sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''209'' AND ''209.99''', NULL, + 'Neuroendocrine tumors (209-209.99)', 'Neuroendocrine tumors (209-209.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209''', NULL, + 'Neuroendocrine tumors (209)', 'Neuroendocrine tumors (209)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.6''', NULL, + 'Benign carcinoid tumors of other and unspecified sites (209.6)', 'Benign carcinoid tumors of other and unspecified sites (209.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.60) Benign carcinoid tumor of unknown primary site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.60) Benign carcinoid tumor of unknown primary site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.60''', NULL, + '(209.60) Benign carcinoid tumor of unknown primary site', '(209.60) Benign carcinoid tumor of unknown primary site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.61) Benign carcinoid tumor of the bronchus and lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.61) Benign carcinoid tumor of the bronchus and lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.61''', NULL, + '(209.61) Benign carcinoid tumor of the bronchus and lung', '(209.61) Benign carcinoid tumor of the bronchus and lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.62) Benign carcinoid tumor of the thymus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.62) Benign carcinoid tumor of the thymus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.62''', NULL, + '(209.62) Benign carcinoid tumor of the thymus', '(209.62) Benign carcinoid tumor of the thymus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.63) Benign carcinoid tumor of the stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.63) Benign carcinoid tumor of the stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.63''', NULL, + '(209.63) Benign carcinoid tumor of the stomach', '(209.63) Benign carcinoid tumor of the stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.64) Benign carcinoid tumor of the kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.64) Benign carcinoid tumor of the kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.64''', NULL, + '(209.64) Benign carcinoid tumor of the kidney', '(209.64) Benign carcinoid tumor of the kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.69) Benign carcinoid tumor of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of other and unspecified sites (209.6)\(209.69) Benign carcinoid tumor of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.69''', NULL, + '(209.69) Benign carcinoid tumor of other sites', '(209.69) Benign carcinoid tumor of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.5''', NULL, + 'Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)', 'Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\(209.50) Benign carcinoid tumor of the large intestine, unspecified portion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\(209.50) Benign carcinoid tumor of the large intestine, unspecified portion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.50''', NULL, + '(209.50) Benign carcinoid tumor of the large intestine, unspecified portion', '(209.50) Benign carcinoid tumor of the large intestine, unspecified portion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\(209.51) Benign carcinoid tumor of the appendix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\(209.51) Benign carcinoid tumor of the appendix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.51''', NULL, + '(209.51) Benign carcinoid tumor of the appendix', '(209.51) Benign carcinoid tumor of the appendix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\(209.52) Benign carcinoid tumor of the cecum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\(209.52) Benign carcinoid tumor of the cecum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.52''', NULL, + '(209.52) Benign carcinoid tumor of the cecum', '(209.52) Benign carcinoid tumor of the cecum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\(209.57) Benign carcinoid tumor of the rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\(209.57) Benign carcinoid tumor of the rectum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.57''', NULL, + '(209.57) Benign carcinoid tumor of the rectum', '(209.57) Benign carcinoid tumor of the rectum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the small intestine (209.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the small intestine (209.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.4''', NULL, + 'Benign carcinoid tumors of the small intestine (209.4)', 'Benign carcinoid tumors of the small intestine (209.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the small intestine (209.4)\(209.40) Benign carcinoid tumor of the small intestine, unspecified portion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the small intestine (209.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the small intestine (209.4)\(209.40) Benign carcinoid tumor of the small intestine, unspecified portion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.40''', NULL, + '(209.40) Benign carcinoid tumor of the small intestine, unspecified portion', '(209.40) Benign carcinoid tumor of the small intestine, unspecified portion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the small intestine (209.4)\(209.41) Benign carcinoid tumor of the duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the small intestine (209.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the small intestine (209.4)\(209.41) Benign carcinoid tumor of the duodenum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.41''', NULL, + '(209.41) Benign carcinoid tumor of the duodenum', '(209.41) Benign carcinoid tumor of the duodenum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the small intestine (209.4)\(209.43) Benign carcinoid tumor of the ileum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the small intestine (209.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Benign carcinoid tumors of the small intestine (209.4)\(209.43) Benign carcinoid tumor of the ileum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.43''', NULL, + '(209.43) Benign carcinoid tumor of the ileum', '(209.43) Benign carcinoid tumor of the ileum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.2''', NULL, + 'Malignant carcinoid tumors of other and unspecified sites (209.2)', 'Malignant carcinoid tumors of other and unspecified sites (209.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.20) Malignant carcinoid tumor of unknown primary site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.20) Malignant carcinoid tumor of unknown primary site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.20''', NULL, + '(209.20) Malignant carcinoid tumor of unknown primary site', '(209.20) Malignant carcinoid tumor of unknown primary site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.21) Malignant carcinoid tumor of the bronchus and lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.21) Malignant carcinoid tumor of the bronchus and lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.21''', NULL, + '(209.21) Malignant carcinoid tumor of the bronchus and lung', '(209.21) Malignant carcinoid tumor of the bronchus and lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.22) Malignant carcinoid tumor of the thymus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.22) Malignant carcinoid tumor of the thymus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.22''', NULL, + '(209.22) Malignant carcinoid tumor of the thymus', '(209.22) Malignant carcinoid tumor of the thymus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.23) Malignant carcinoid tumor of the stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.23) Malignant carcinoid tumor of the stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.23''', NULL, + '(209.23) Malignant carcinoid tumor of the stomach', '(209.23) Malignant carcinoid tumor of the stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.24) Malignant carcinoid tumor of the kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.24) Malignant carcinoid tumor of the kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.24''', NULL, + '(209.24) Malignant carcinoid tumor of the kidney', '(209.24) Malignant carcinoid tumor of the kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.25) Malignant carcinoid tumor of foregut, not otherwise specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.25) Malignant carcinoid tumor of foregut, not otherwise specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.25''', NULL, + '(209.25) Malignant carcinoid tumor of foregut, not otherwise specified', '(209.25) Malignant carcinoid tumor of foregut, not otherwise specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.26) Malignant carcinoid tumor of midgut, not otherwise specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.26) Malignant carcinoid tumor of midgut, not otherwise specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.26''', NULL, + '(209.26) Malignant carcinoid tumor of midgut, not otherwise specified', '(209.26) Malignant carcinoid tumor of midgut, not otherwise specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.27) Malignant carcinoid tumor of hindgut, not otherwise specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.27) Malignant carcinoid tumor of hindgut, not otherwise specified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.27''', NULL, + '(209.27) Malignant carcinoid tumor of hindgut, not otherwise specified', '(209.27) Malignant carcinoid tumor of hindgut, not otherwise specified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.29) Malignant carcinoid tumor of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of other and unspecified sites (209.2)\(209.29) Malignant carcinoid tumor of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.29''', NULL, + '(209.29) Malignant carcinoid tumor of other sites', '(209.29) Malignant carcinoid tumor of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.1''', NULL, + 'Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)', 'Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.10) Malignant carcinoid tumor of the large intestine, unspecified portion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.10) Malignant carcinoid tumor of the large intestine, unspecified portion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.10''', NULL, + '(209.10) Malignant carcinoid tumor of the large intestine, unspecified portion', '(209.10) Malignant carcinoid tumor of the large intestine, unspecified portion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.11) Malignant carcinoid tumor of the appendix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.11) Malignant carcinoid tumor of the appendix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.11''', NULL, + '(209.11) Malignant carcinoid tumor of the appendix', '(209.11) Malignant carcinoid tumor of the appendix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.12) Malignant carcinoid tumor of the cecum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.12) Malignant carcinoid tumor of the cecum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.12''', NULL, + '(209.12) Malignant carcinoid tumor of the cecum', '(209.12) Malignant carcinoid tumor of the cecum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.13) Malignant carcinoid tumor of the ascending colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.13) Malignant carcinoid tumor of the ascending colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.13''', NULL, + '(209.13) Malignant carcinoid tumor of the ascending colon', '(209.13) Malignant carcinoid tumor of the ascending colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.15) Malignant carcinoid tumor of the descending colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.15) Malignant carcinoid tumor of the descending colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.15''', NULL, + '(209.15) Malignant carcinoid tumor of the descending colon', '(209.15) Malignant carcinoid tumor of the descending colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.16) Malignant carcinoid tumor of the sigmoid colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.16) Malignant carcinoid tumor of the sigmoid colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.16''', NULL, + '(209.16) Malignant carcinoid tumor of the sigmoid colon', '(209.16) Malignant carcinoid tumor of the sigmoid colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.17) Malignant carcinoid tumor of the rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\(209.17) Malignant carcinoid tumor of the rectum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.17''', NULL, + '(209.17) Malignant carcinoid tumor of the rectum', '(209.17) Malignant carcinoid tumor of the rectum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.0''', NULL, + 'Malignant carcinoid tumors of the small intestine (209.0)', 'Malignant carcinoid tumors of the small intestine (209.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\(209.00) Malignant carcinoid tumor of the small intestine, unspecified portion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\(209.00) Malignant carcinoid tumor of the small intestine, unspecified portion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.00''', NULL, + '(209.00) Malignant carcinoid tumor of the small intestine, unspecified portion', '(209.00) Malignant carcinoid tumor of the small intestine, unspecified portion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\(209.01) Malignant carcinoid tumor of the duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\(209.01) Malignant carcinoid tumor of the duodenum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.01''', NULL, + '(209.01) Malignant carcinoid tumor of the duodenum', '(209.01) Malignant carcinoid tumor of the duodenum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\(209.02) Malignant carcinoid tumor of the jejunum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\(209.02) Malignant carcinoid tumor of the jejunum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.02''', NULL, + '(209.02) Malignant carcinoid tumor of the jejunum', '(209.02) Malignant carcinoid tumor of the jejunum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\(209.03) Malignant carcinoid tumor of the ileum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant carcinoid tumors of the small intestine (209.0)\(209.03) Malignant carcinoid tumor of the ileum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.03''', NULL, + '(209.03) Malignant carcinoid tumor of the ileum', '(209.03) Malignant carcinoid tumor of the ileum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.3''', NULL, + 'Malignant poorly differentiated neuroendocrine tumors (209.3)', 'Malignant poorly differentiated neuroendocrine tumors (209.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.30) Malignant poorly differentiated neuroendocrine carcinoma, any site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.30) Malignant poorly differentiated neuroendocrine carcinoma, any site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.30''', NULL, + '(209.30) Malignant poorly differentiated neuroendocrine carcinoma, any site', '(209.30) Malignant poorly differentiated neuroendocrine carcinoma, any site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.31) Merkel cell carcinoma of the face\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.31) Merkel cell carcinoma of the face\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.31''', NULL, + '(209.31) Merkel cell carcinoma of the face', '(209.31) Merkel cell carcinoma of the face', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.32) Merkel cell carcinoma of the scalp and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.32) Merkel cell carcinoma of the scalp and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.32''', NULL, + '(209.32) Merkel cell carcinoma of the scalp and neck', '(209.32) Merkel cell carcinoma of the scalp and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.33) Merkel cell carcinoma of the upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.33) Merkel cell carcinoma of the upper limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.33''', NULL, + '(209.33) Merkel cell carcinoma of the upper limb', '(209.33) Merkel cell carcinoma of the upper limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.34) Merkel cell carcinoma of the lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.34) Merkel cell carcinoma of the lower limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.34''', NULL, + '(209.34) Merkel cell carcinoma of the lower limb', '(209.34) Merkel cell carcinoma of the lower limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.35) Merkel cell carcinoma of the trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.35) Merkel cell carcinoma of the trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.35''', NULL, + '(209.35) Merkel cell carcinoma of the trunk', '(209.35) Merkel cell carcinoma of the trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.36) Merkel cell carcinoma of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Malignant poorly differentiated neuroendocrine tumors (209.3)\(209.36) Merkel cell carcinoma of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.36''', NULL, + '(209.36) Merkel cell carcinoma of other sites', '(209.36) Merkel cell carcinoma of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.7''', NULL, + 'Secondary neuroendocrine tumors (209.7)', 'Secondary neuroendocrine tumors (209.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.70) Secondary neuroendocrine tumor, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.70) Secondary neuroendocrine tumor, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.70''', NULL, + '(209.70) Secondary neuroendocrine tumor, unspecified site', '(209.70) Secondary neuroendocrine tumor, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.71) Secondary neuroendocrine tumor of distant lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.71) Secondary neuroendocrine tumor of distant lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.71''', NULL, + '(209.71) Secondary neuroendocrine tumor of distant lymph nodes', '(209.71) Secondary neuroendocrine tumor of distant lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.72) Secondary neuroendocrine tumor of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.72) Secondary neuroendocrine tumor of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.72''', NULL, + '(209.72) Secondary neuroendocrine tumor of liver', '(209.72) Secondary neuroendocrine tumor of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.73) Secondary neuroendocrine tumor of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.73) Secondary neuroendocrine tumor of bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.73''', NULL, + '(209.73) Secondary neuroendocrine tumor of bone', '(209.73) Secondary neuroendocrine tumor of bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.74) Secondary neuroendocrine tumor of peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.74) Secondary neuroendocrine tumor of peritoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.74''', NULL, + '(209.74) Secondary neuroendocrine tumor of peritoneum', '(209.74) Secondary neuroendocrine tumor of peritoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.75) Secondary Merkel cell carcinoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.75) Secondary Merkel cell carcinoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.75''', NULL, + '(209.75) Secondary Merkel cell carcinoma', '(209.75) Secondary Merkel cell carcinoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.79) Secondary neuroendocrine tumor of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Neoplasms (140-239.99)\Neuroendocrine tumors (209-209.99)\Neuroendocrine tumors (209)\Secondary neuroendocrine tumors (209.7)\(209.79) Secondary neuroendocrine tumor of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''209.79''', NULL, + '(209.79) Secondary neuroendocrine tumor of other sites', '(209.79) Secondary neuroendocrine tumor of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E000'' AND ''E999.9''', NULL, + 'Supplementary classification of external causes of injury and poisoning (E000-E999.9)', 'Supplementary classification of external causes of injury and poisoning (E000-E999.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E880'' AND ''E888.9''', NULL, + 'Accidental falls (E880-E888.9)', 'Accidental falls (E880-E888.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\(E882) Accidental fall from or out of building or other structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\(E882) Accidental fall from or out of building or other structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E882''', NULL, + '(E882) Accidental fall from or out of building or other structure', '(E882) Accidental fall from or out of building or other structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\(E887) Fracture, cause unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\(E887) Fracture, cause unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E887''', NULL, + '(E887) Fracture, cause unspecified', '(E887) Fracture, cause unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E883''', NULL, + 'Accidental fall into hole or other opening in surface (E883)', 'Accidental fall into hole or other opening in surface (E883)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\(E883.0) Accident from diving or jumping into water [swimming pool]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\(E883.0) Accident from diving or jumping into water [swimming pool]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E883.0''', NULL, + '(E883.0) Accident from diving or jumping into water [swimming pool]', '(E883.0) Accident from diving or jumping into water [swimming pool]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\(E883.1) Accidental fall into well\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\(E883.1) Accidental fall into well\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E883.1''', NULL, + '(E883.1) Accidental fall into well', '(E883.1) Accidental fall into well', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\(E883.2) Accidental fall into storm drain or manhole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\(E883.2) Accidental fall into storm drain or manhole\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E883.2''', NULL, + '(E883.2) Accidental fall into storm drain or manhole', '(E883.2) Accidental fall into storm drain or manhole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\(E883.9) Accidental fall into other hole or other opening in surface\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall into hole or other opening in surface (E883)\(E883.9) Accidental fall into other hole or other opening in surface\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E883.9''', NULL, + '(E883.9) Accidental fall into other hole or other opening in surface', '(E883.9) Accidental fall into other hole or other opening in surface', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from ladders or scaffolding (E881)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from ladders or scaffolding (E881)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E881''', NULL, + 'Accidental fall on or from ladders or scaffolding (E881)', 'Accidental fall on or from ladders or scaffolding (E881)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from ladders or scaffolding (E881)\(E881.0) Accidental fall from ladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from ladders or scaffolding (E881)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from ladders or scaffolding (E881)\(E881.0) Accidental fall from ladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E881.0''', NULL, + '(E881.0) Accidental fall from ladder', '(E881.0) Accidental fall from ladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from ladders or scaffolding (E881)\(E881.1) Accidental fall from scaffolding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from ladders or scaffolding (E881)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from ladders or scaffolding (E881)\(E881.1) Accidental fall from scaffolding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E881.1''', NULL, + '(E881.1) Accidental fall from scaffolding', '(E881.1) Accidental fall from scaffolding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from stairs or steps (E880)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from stairs or steps (E880)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E880''', NULL, + 'Accidental fall on or from stairs or steps (E880)', 'Accidental fall on or from stairs or steps (E880)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from stairs or steps (E880)\(E880.0) Accidental fall on or from escalator\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from stairs or steps (E880)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from stairs or steps (E880)\(E880.0) Accidental fall on or from escalator\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E880.0''', NULL, + '(E880.0) Accidental fall on or from escalator', '(E880.0) Accidental fall on or from escalator', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from stairs or steps (E880)\(E880.1) Accidental fall on or from sidewalk curb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from stairs or steps (E880)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from stairs or steps (E880)\(E880.1) Accidental fall on or from sidewalk curb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E880.1''', NULL, + '(E880.1) Accidental fall on or from sidewalk curb', '(E880.1) Accidental fall on or from sidewalk curb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from stairs or steps (E880)\(E880.9) Accidental fall on or from other stairs or steps\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from stairs or steps (E880)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Accidental fall on or from stairs or steps (E880)\(E880.9) Accidental fall on or from other stairs or steps\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E880.9''', NULL, + '(E880.9) Accidental fall on or from other stairs or steps', '(E880.9) Accidental fall on or from other stairs or steps', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E886''', NULL, + 'Fall on same level from collision, pushing, or shoving, by or with other person (E886)', 'Fall on same level from collision, pushing, or shoving, by or with other person (E886)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\(E886.0) Fall on same level from collision, pushing, or shoving, by or with other person in sports\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\(E886.0) Fall on same level from collision, pushing, or shoving, by or with other person in sports\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E886.0''', NULL, + '(E886.0) Fall on same level from collision, pushing, or shoving, by or with other person in sports', '(E886.0) Fall on same level from collision, pushing, or shoving, by or with other person in sports', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\(E886.9) Other and unspecified falls on same level from collision, pushing, or shoving, by or with other person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\(E886.9) Other and unspecified falls on same level from collision, pushing, or shoving, by or with other person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E886.9''', NULL, + '(E886.9) Other and unspecified falls on same level from collision, pushing, or shoving, by or with other person', '(E886.9) Other and unspecified falls on same level from collision, pushing, or shoving, by or with other person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E885''', NULL, + 'Fall on same level from slipping, tripping, or stumbling (E885)', 'Fall on same level from slipping, tripping, or stumbling (E885)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.0) Fall from (nonmotorized) scooter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.0) Fall from (nonmotorized) scooter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E885.0) Fall from (nonmotorized''', NULL, + '(E885.0) Fall from (nonmotorized) scooter', '(E885.0) Fall from (nonmotorized) scooter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.1) Fall from roller skates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.1) Fall from roller skates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E885.1''', NULL, + '(E885.1) Fall from roller skates', '(E885.1) Fall from roller skates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.2) Fall from skateboard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.2) Fall from skateboard\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E885.2''', NULL, + '(E885.2) Fall from skateboard', '(E885.2) Fall from skateboard', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.3) Fall from skis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.3) Fall from skis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E885.3''', NULL, + '(E885.3) Fall from skis', '(E885.3) Fall from skis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.4) Fall from snowboard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.4) Fall from snowboard\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E885.4''', NULL, + '(E885.4) Fall from snowboard', '(E885.4) Fall from snowboard', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.9) Fall from other slipping, tripping, or stumbling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Fall on same level from slipping, tripping, or stumbling (E885)\(E885.9) Fall from other slipping, tripping, or stumbling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E885.9''', NULL, + '(E885.9) Fall from other slipping, tripping, or stumbling', '(E885.9) Fall from other slipping, tripping, or stumbling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E884''', NULL, + 'Other accidental falls from one level to another (E884)', 'Other accidental falls from one level to another (E884)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.0) Accidental fall from playground equipment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.0) Accidental fall from playground equipment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E884.0''', NULL, + '(E884.0) Accidental fall from playground equipment', '(E884.0) Accidental fall from playground equipment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.1) Accidental fall from cliff\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.1) Accidental fall from cliff\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E884.1''', NULL, + '(E884.1) Accidental fall from cliff', '(E884.1) Accidental fall from cliff', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.2) Accidental fall from chair\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.2) Accidental fall from chair\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E884.2''', NULL, + '(E884.2) Accidental fall from chair', '(E884.2) Accidental fall from chair', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.3) Accidental fall from wheelchair\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.3) Accidental fall from wheelchair\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E884.3''', NULL, + '(E884.3) Accidental fall from wheelchair', '(E884.3) Accidental fall from wheelchair', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.4) Accidental fall from bed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.4) Accidental fall from bed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E884.4''', NULL, + '(E884.4) Accidental fall from bed', '(E884.4) Accidental fall from bed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.5) Accidental fall from other furniture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.5) Accidental fall from other furniture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E884.5''', NULL, + '(E884.5) Accidental fall from other furniture', '(E884.5) Accidental fall from other furniture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.6) Accidental fall from commode\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.6) Accidental fall from commode\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E884.6''', NULL, + '(E884.6) Accidental fall from commode', '(E884.6) Accidental fall from commode', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.9) Other accidental fall from one level to another\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other accidental falls from one level to another (E884)\(E884.9) Other accidental fall from one level to another\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E884.9''', NULL, + '(E884.9) Other accidental fall from one level to another', '(E884.9) Other accidental fall from one level to another', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E888''', NULL, + 'Other and unspecified accidental fall (E888)', 'Other and unspecified accidental fall (E888)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\(E888.0) Fall resulting in striking against sharp object\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\(E888.0) Fall resulting in striking against sharp object\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E888.0''', NULL, + '(E888.0) Fall resulting in striking against sharp object', '(E888.0) Fall resulting in striking against sharp object', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\(E888.1) Fall resulting in striking against other object\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\(E888.1) Fall resulting in striking against other object\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E888.1''', NULL, + '(E888.1) Fall resulting in striking against other object', '(E888.1) Fall resulting in striking against other object', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\(E888.8) Other fall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\(E888.8) Other fall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E888.8''', NULL, + '(E888.8) Other fall', '(E888.8) Other fall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\(E888.9) Unspecified fall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental falls (E880-E888.9)\Other and unspecified accidental fall (E888)\(E888.9) Unspecified fall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E888.9''', NULL, + '(E888.9) Unspecified fall', '(E888.9) Unspecified fall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E850'' AND ''E858.9''', NULL, + 'Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)', 'Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\(E851) Accidental poisoning by barbiturates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\(E851) Accidental poisoning by barbiturates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E851''', NULL, + '(E851) Accidental poisoning by barbiturates', '(E851) Accidental poisoning by barbiturates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\(E856) Accidental poisoning by antibiotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\(E856) Accidental poisoning by antibiotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E856''', NULL, + '(E856) Accidental poisoning by antibiotics', '(E856) Accidental poisoning by antibiotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\(E857) Accidental poisoning by other anti-infectives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\(E857) Accidental poisoning by other anti-infectives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E857''', NULL, + '(E857) Accidental poisoning by other anti-infectives', '(E857) Accidental poisoning by other anti-infectives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E850''', NULL, + 'Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)', 'Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.0) Accidental poisoning by heroin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.0) Accidental poisoning by heroin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E850.0''', NULL, + '(E850.0) Accidental poisoning by heroin', '(E850.0) Accidental poisoning by heroin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.1) Accidental poisoning by methadone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.1) Accidental poisoning by methadone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E850.1''', NULL, + '(E850.1) Accidental poisoning by methadone', '(E850.1) Accidental poisoning by methadone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.2) Accidental poisoning by other opiates and related narcotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.2) Accidental poisoning by other opiates and related narcotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E850.2''', NULL, + '(E850.2) Accidental poisoning by other opiates and related narcotics', '(E850.2) Accidental poisoning by other opiates and related narcotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.3) Accidental poisoning by salicylates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.3) Accidental poisoning by salicylates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E850.3''', NULL, + '(E850.3) Accidental poisoning by salicylates', '(E850.3) Accidental poisoning by salicylates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.4) Accidental poisoning by aromatic analgesics, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.4) Accidental poisoning by aromatic analgesics, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E850.4''', NULL, + '(E850.4) Accidental poisoning by aromatic analgesics, not elsewhere classified', '(E850.4) Accidental poisoning by aromatic analgesics, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.5) Accidental poisoning by pyrazole derivatives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.5) Accidental poisoning by pyrazole derivatives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E850.5''', NULL, + '(E850.5) Accidental poisoning by pyrazole derivatives', '(E850.5) Accidental poisoning by pyrazole derivatives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.6) Accidental poisoning by antirheumatics (antiphlogistics)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.6) Accidental poisoning by antirheumatics (antiphlogistics)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E850.6) Accidental poisoning by antirheumatics (antiphlogistics''', NULL, + '(E850.6) Accidental poisoning by antirheumatics (antiphlogistics)', '(E850.6) Accidental poisoning by antirheumatics (antiphlogistics)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.7) Accidental poisoning by other non-narcotic analgesics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.7) Accidental poisoning by other non-narcotic analgesics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E850.7''', NULL, + '(E850.7) Accidental poisoning by other non-narcotic analgesics', '(E850.7) Accidental poisoning by other non-narcotic analgesics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.8) Accidental poisoning by other specified analgesics and antipyretics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.8) Accidental poisoning by other specified analgesics and antipyretics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E850.8''', NULL, + '(E850.8) Accidental poisoning by other specified analgesics and antipyretics', '(E850.8) Accidental poisoning by other specified analgesics and antipyretics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.9) Accidental poisoning by unspecified analgesic or antipyretic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\(E850.9) Accidental poisoning by unspecified analgesic or antipyretic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E850.9''', NULL, + '(E850.9) Accidental poisoning by unspecified analgesic or antipyretic', '(E850.9) Accidental poisoning by unspecified analgesic or antipyretic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E858''', NULL, + 'Accidental poisoning by other drugs (E858)', 'Accidental poisoning by other drugs (E858)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.0) Accidental poisoning by hormones and synthetic substitutes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.0) Accidental poisoning by hormones and synthetic substitutes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E858.0''', NULL, + '(E858.0) Accidental poisoning by hormones and synthetic substitutes', '(E858.0) Accidental poisoning by hormones and synthetic substitutes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.1) Accidental poisoning by primarily systemic agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.1) Accidental poisoning by primarily systemic agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E858.1''', NULL, + '(E858.1) Accidental poisoning by primarily systemic agents', '(E858.1) Accidental poisoning by primarily systemic agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.2) Accidental poisoning by agents primarily affecting blood constituents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.2) Accidental poisoning by agents primarily affecting blood constituents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E858.2''', NULL, + '(E858.2) Accidental poisoning by agents primarily affecting blood constituents', '(E858.2) Accidental poisoning by agents primarily affecting blood constituents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.3) Accidental poisoning by agents primarily affecting cardiovascular system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.3) Accidental poisoning by agents primarily affecting cardiovascular system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E858.3''', NULL, + '(E858.3) Accidental poisoning by agents primarily affecting cardiovascular system', '(E858.3) Accidental poisoning by agents primarily affecting cardiovascular system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.4) Accidental poisoning by agents primarily affecting gastrointestinal system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.4) Accidental poisoning by agents primarily affecting gastrointestinal system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E858.4''', NULL, + '(E858.4) Accidental poisoning by agents primarily affecting gastrointestinal system', '(E858.4) Accidental poisoning by agents primarily affecting gastrointestinal system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.5) Accidental poisoning by water, mineral, and uric acid metabolism drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.5) Accidental poisoning by water, mineral, and uric acid metabolism drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E858.5''', NULL, + '(E858.5) Accidental poisoning by water, mineral, and uric acid metabolism drugs', '(E858.5) Accidental poisoning by water, mineral, and uric acid metabolism drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.6) Accidental poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.6) Accidental poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E858.6''', NULL, + '(E858.6) Accidental poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system', '(E858.6) Accidental poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.7) Accidental poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.7) Accidental poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E858.7''', NULL, + '(E858.7) Accidental poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs', '(E858.7) Accidental poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.8) Accidental poisoning by other specified drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.8) Accidental poisoning by other specified drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E858.8''', NULL, + '(E858.8) Accidental poisoning by other specified drugs', '(E858.8) Accidental poisoning by other specified drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.9) Accidental poisoning by unspecified drug\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs (E858)\(E858.9) Accidental poisoning by unspecified drug\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E858.9''', NULL, + '(E858.9) Accidental poisoning by unspecified drug', '(E858.9) Accidental poisoning by unspecified drug', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E855''', NULL, + 'Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)', 'Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.0) Accidental poisoning by anticonvulsant and anti-parkinsonism drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.0) Accidental poisoning by anticonvulsant and anti-parkinsonism drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E855.0''', NULL, + '(E855.0) Accidental poisoning by anticonvulsant and anti-parkinsonism drugs', '(E855.0) Accidental poisoning by anticonvulsant and anti-parkinsonism drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.1) Accidental poisoning by other central nervous system depressants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.1) Accidental poisoning by other central nervous system depressants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E855.1''', NULL, + '(E855.1) Accidental poisoning by other central nervous system depressants', '(E855.1) Accidental poisoning by other central nervous system depressants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.2) Accidental poisoning by local anesthetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.2) Accidental poisoning by local anesthetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E855.2''', NULL, + '(E855.2) Accidental poisoning by local anesthetics', '(E855.2) Accidental poisoning by local anesthetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.3) Accidental poisoning by parasympathomimetics [cholinergics]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.3) Accidental poisoning by parasympathomimetics [cholinergics]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E855.3''', NULL, + '(E855.3) Accidental poisoning by parasympathomimetics [cholinergics]', '(E855.3) Accidental poisoning by parasympathomimetics [cholinergics]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.4) Accidental poisoning by parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.4) Accidental poisoning by parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E855.4''', NULL, + '(E855.4) Accidental poisoning by parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics', '(E855.4) Accidental poisoning by parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.5) Accidental poisoning by sympathomimetics [adrenergics]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.5) Accidental poisoning by sympathomimetics [adrenergics]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E855.5''', NULL, + '(E855.5) Accidental poisoning by sympathomimetics [adrenergics]', '(E855.5) Accidental poisoning by sympathomimetics [adrenergics]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.6) Accidental poisoning by sympatholytics [antiadrenergics]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.6) Accidental poisoning by sympatholytics [antiadrenergics]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E855.6''', NULL, + '(E855.6) Accidental poisoning by sympatholytics [antiadrenergics]', '(E855.6) Accidental poisoning by sympatholytics [antiadrenergics]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.8) Accidental poisoning by other specified drugs acting on central and autonomic nervous systems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.8) Accidental poisoning by other specified drugs acting on central and autonomic nervous systems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E855.8''', NULL, + '(E855.8) Accidental poisoning by other specified drugs acting on central and autonomic nervous systems', '(E855.8) Accidental poisoning by other specified drugs acting on central and autonomic nervous systems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.9) Accidental poisoning by unspecified drug acting on central and autonomic nervous systems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\(E855.9) Accidental poisoning by unspecified drug acting on central and autonomic nervous systems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E855.9''', NULL, + '(E855.9) Accidental poisoning by unspecified drug acting on central and autonomic nervous systems', '(E855.9) Accidental poisoning by unspecified drug acting on central and autonomic nervous systems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E854''', NULL, + 'Accidental poisoning by other psychotropic agents (E854)', 'Accidental poisoning by other psychotropic agents (E854)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\(E854.0) Accidental poisoning by antidepressants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\(E854.0) Accidental poisoning by antidepressants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E854.0''', NULL, + '(E854.0) Accidental poisoning by antidepressants', '(E854.0) Accidental poisoning by antidepressants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\(E854.1) Accidental poisoning by psychodysleptics [hallucinogens]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\(E854.1) Accidental poisoning by psychodysleptics [hallucinogens]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E854.1''', NULL, + '(E854.1) Accidental poisoning by psychodysleptics [hallucinogens]', '(E854.1) Accidental poisoning by psychodysleptics [hallucinogens]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\(E854.2) Accidental poisoning by psychostimulants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\(E854.2) Accidental poisoning by psychostimulants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E854.2''', NULL, + '(E854.2) Accidental poisoning by psychostimulants', '(E854.2) Accidental poisoning by psychostimulants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\(E854.3) Accidental poisoning by central nervous system stimulants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\(E854.3) Accidental poisoning by central nervous system stimulants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E854.3''', NULL, + '(E854.3) Accidental poisoning by central nervous system stimulants', '(E854.3) Accidental poisoning by central nervous system stimulants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\(E854.8) Accidental poisoning by other psychotropic agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other psychotropic agents (E854)\(E854.8) Accidental poisoning by other psychotropic agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E854.8''', NULL, + '(E854.8) Accidental poisoning by other psychotropic agents', '(E854.8) Accidental poisoning by other psychotropic agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E852''', NULL, + 'Accidental poisoning by other sedatives and hypnotics (E852)', 'Accidental poisoning by other sedatives and hypnotics (E852)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.0) Accidental poisoning by chloral hydrate group\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.0) Accidental poisoning by chloral hydrate group\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E852.0''', NULL, + '(E852.0) Accidental poisoning by chloral hydrate group', '(E852.0) Accidental poisoning by chloral hydrate group', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.1) Accidental poisoning by paraldehyde\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.1) Accidental poisoning by paraldehyde\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E852.1''', NULL, + '(E852.1) Accidental poisoning by paraldehyde', '(E852.1) Accidental poisoning by paraldehyde', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.2) Accidental poisoning by bromine compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.2) Accidental poisoning by bromine compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E852.2''', NULL, + '(E852.2) Accidental poisoning by bromine compounds', '(E852.2) Accidental poisoning by bromine compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.3) Accidental poisoning by methaqualone compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.3) Accidental poisoning by methaqualone compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E852.3''', NULL, + '(E852.3) Accidental poisoning by methaqualone compounds', '(E852.3) Accidental poisoning by methaqualone compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.4) Accidental poisoning by glutethimide group\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.4) Accidental poisoning by glutethimide group\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E852.4''', NULL, + '(E852.4) Accidental poisoning by glutethimide group', '(E852.4) Accidental poisoning by glutethimide group', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.5) Accidental poisoning by mixed sedatives, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.5) Accidental poisoning by mixed sedatives, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E852.5''', NULL, + '(E852.5) Accidental poisoning by mixed sedatives, not elsewhere classified', '(E852.5) Accidental poisoning by mixed sedatives, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.8) Accidental poisoning by other specified sedatives and hypnotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.8) Accidental poisoning by other specified sedatives and hypnotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E852.8''', NULL, + '(E852.8) Accidental poisoning by other specified sedatives and hypnotics', '(E852.8) Accidental poisoning by other specified sedatives and hypnotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.9) Accidental poisoning by unspecified sedative or hypnotic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by other sedatives and hypnotics (E852)\(E852.9) Accidental poisoning by unspecified sedative or hypnotic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E852.9''', NULL, + '(E852.9) Accidental poisoning by unspecified sedative or hypnotic', '(E852.9) Accidental poisoning by unspecified sedative or hypnotic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E853''', NULL, + 'Accidental poisoning by tranquilizers (E853)', 'Accidental poisoning by tranquilizers (E853)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\(E853.0) Accidental poisoning by phenothiazine-based tranquilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\(E853.0) Accidental poisoning by phenothiazine-based tranquilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E853.0''', NULL, + '(E853.0) Accidental poisoning by phenothiazine-based tranquilizers', '(E853.0) Accidental poisoning by phenothiazine-based tranquilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\(E853.1) Accidental poisoning by butyrophenone-based tranquilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\(E853.1) Accidental poisoning by butyrophenone-based tranquilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E853.1''', NULL, + '(E853.1) Accidental poisoning by butyrophenone-based tranquilizers', '(E853.1) Accidental poisoning by butyrophenone-based tranquilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\(E853.2) Accidental poisoning by benzodiazepine-based tranquilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\(E853.2) Accidental poisoning by benzodiazepine-based tranquilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E853.2''', NULL, + '(E853.2) Accidental poisoning by benzodiazepine-based tranquilizers', '(E853.2) Accidental poisoning by benzodiazepine-based tranquilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\(E853.8) Accidental poisoning by other specified tranquilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\(E853.8) Accidental poisoning by other specified tranquilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E853.8''', NULL, + '(E853.8) Accidental poisoning by other specified tranquilizers', '(E853.8) Accidental poisoning by other specified tranquilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\(E853.9) Accidental poisoning by unspecified tranquilizer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\Accidental poisoning by tranquilizers (E853)\(E853.9) Accidental poisoning by unspecified tranquilizer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E853.9''', NULL, + '(E853.9) Accidental poisoning by unspecified tranquilizer', '(E853.9) Accidental poisoning by unspecified tranquilizer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E860'' AND ''E869.9''', NULL, + 'Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)', 'Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\(E867) Accidental poisoning by gas distributed by pipeline\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\(E867) Accidental poisoning by gas distributed by pipeline\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E867''', NULL, + '(E867) Accidental poisoning by gas distributed by pipeline', '(E867) Accidental poisoning by gas distributed by pipeline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E863''', NULL, + 'Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)', 'Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.0) Accidental poisoning by insecticides of organochlorine compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.0) Accidental poisoning by insecticides of organochlorine compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E863.0''', NULL, + '(E863.0) Accidental poisoning by insecticides of organochlorine compounds', '(E863.0) Accidental poisoning by insecticides of organochlorine compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.1) Accidental poisoning by insecticides of organophosphorus compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.1) Accidental poisoning by insecticides of organophosphorus compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E863.1''', NULL, + '(E863.1) Accidental poisoning by insecticides of organophosphorus compounds', '(E863.1) Accidental poisoning by insecticides of organophosphorus compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.2) Accidental poisoning by carbamates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.2) Accidental poisoning by carbamates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E863.2''', NULL, + '(E863.2) Accidental poisoning by carbamates', '(E863.2) Accidental poisoning by carbamates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.3) Accidental poisoning by mixtures of insecticides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.3) Accidental poisoning by mixtures of insecticides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E863.3''', NULL, + '(E863.3) Accidental poisoning by mixtures of insecticides', '(E863.3) Accidental poisoning by mixtures of insecticides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.4) Accidental poisoning by other and unspecified insecticides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.4) Accidental poisoning by other and unspecified insecticides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E863.4''', NULL, + '(E863.4) Accidental poisoning by other and unspecified insecticides', '(E863.4) Accidental poisoning by other and unspecified insecticides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.5) Accidental poisoning by herbicides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.5) Accidental poisoning by herbicides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E863.5''', NULL, + '(E863.5) Accidental poisoning by herbicides', '(E863.5) Accidental poisoning by herbicides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.6) Accidental poisoning by fungicides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.6) Accidental poisoning by fungicides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E863.6''', NULL, + '(E863.6) Accidental poisoning by fungicides', '(E863.6) Accidental poisoning by fungicides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.7) Accidental poisoning by rodenticides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.7) Accidental poisoning by rodenticides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E863.7''', NULL, + '(E863.7) Accidental poisoning by rodenticides', '(E863.7) Accidental poisoning by rodenticides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.8) Accidental poisoning by fumigants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.8) Accidental poisoning by fumigants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E863.8''', NULL, + '(E863.8) Accidental poisoning by fumigants', '(E863.8) Accidental poisoning by fumigants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.9) Accidental poisoning by other and unspecified agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\(E863.9) Accidental poisoning by other and unspecified agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E863.9''', NULL, + '(E863.9) Accidental poisoning by other and unspecified agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers', '(E863.9) Accidental poisoning by other and unspecified agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E860''', NULL, + 'Accidental poisoning by alcohol, not elsewhere classified (E860)', 'Accidental poisoning by alcohol, not elsewhere classified (E860)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.0) Accidental poisoning by alcoholic beverages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.0) Accidental poisoning by alcoholic beverages\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E860.0''', NULL, + '(E860.0) Accidental poisoning by alcoholic beverages', '(E860.0) Accidental poisoning by alcoholic beverages', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.1) Accidental poisoning by other and unspecified ethyl alcohol and its products\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.1) Accidental poisoning by other and unspecified ethyl alcohol and its products\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E860.1''', NULL, + '(E860.1) Accidental poisoning by other and unspecified ethyl alcohol and its products', '(E860.1) Accidental poisoning by other and unspecified ethyl alcohol and its products', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.2) Accidental poisoning by methyl alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.2) Accidental poisoning by methyl alcohol\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E860.2''', NULL, + '(E860.2) Accidental poisoning by methyl alcohol', '(E860.2) Accidental poisoning by methyl alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.3) Accidental poisoning by isopropyl alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.3) Accidental poisoning by isopropyl alcohol\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E860.3''', NULL, + '(E860.3) Accidental poisoning by isopropyl alcohol', '(E860.3) Accidental poisoning by isopropyl alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.4) Accidental poisoning by fusel oil\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.4) Accidental poisoning by fusel oil\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E860.4''', NULL, + '(E860.4) Accidental poisoning by fusel oil', '(E860.4) Accidental poisoning by fusel oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.8) Accidental poisoning by other specified alcohols\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.8) Accidental poisoning by other specified alcohols\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E860.8''', NULL, + '(E860.8) Accidental poisoning by other specified alcohols', '(E860.8) Accidental poisoning by other specified alcohols', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.9) Accidental poisoning by unspecified alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by alcohol, not elsewhere classified (E860)\(E860.9) Accidental poisoning by unspecified alcohol\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E860.9''', NULL, + '(E860.9) Accidental poisoning by unspecified alcohol', '(E860.9) Accidental poisoning by unspecified alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E861''', NULL, + 'Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)', 'Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.0) Accidental poisoning by synthetic detergents and shampoos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.0) Accidental poisoning by synthetic detergents and shampoos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E861.0''', NULL, + '(E861.0) Accidental poisoning by synthetic detergents and shampoos', '(E861.0) Accidental poisoning by synthetic detergents and shampoos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.1) Accidental poisoning by soap products\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.1) Accidental poisoning by soap products\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E861.1''', NULL, + '(E861.1) Accidental poisoning by soap products', '(E861.1) Accidental poisoning by soap products', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.2) Accidental poisoning by polishes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.2) Accidental poisoning by polishes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E861.2''', NULL, + '(E861.2) Accidental poisoning by polishes', '(E861.2) Accidental poisoning by polishes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.3) Accidental poisoning by other cleansing and polishing agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.3) Accidental poisoning by other cleansing and polishing agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E861.3''', NULL, + '(E861.3) Accidental poisoning by other cleansing and polishing agents', '(E861.3) Accidental poisoning by other cleansing and polishing agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.4) Accidental poisoning by disinfectants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.4) Accidental poisoning by disinfectants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E861.4''', NULL, + '(E861.4) Accidental poisoning by disinfectants', '(E861.4) Accidental poisoning by disinfectants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.5) Accidental poisoning by lead paints\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.5) Accidental poisoning by lead paints\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E861.5''', NULL, + '(E861.5) Accidental poisoning by lead paints', '(E861.5) Accidental poisoning by lead paints', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.6) Accidental poisoning by other paints and varnishes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.6) Accidental poisoning by other paints and varnishes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E861.6''', NULL, + '(E861.6) Accidental poisoning by other paints and varnishes', '(E861.6) Accidental poisoning by other paints and varnishes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.9) Accidental poisoning by unspecified cleansing and polishing agents, disinfectants, paints, and varnishes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\(E861.9) Accidental poisoning by unspecified cleansing and polishing agents, disinfectants, paints, and varnishes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E861.9''', NULL, + '(E861.9) Accidental poisoning by unspecified cleansing and polishing agents, disinfectants, paints, and varnishes', '(E861.9) Accidental poisoning by unspecified cleansing and polishing agents, disinfectants, paints, and varnishes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E864''', NULL, + 'Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)', 'Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\(E864.0) Accidental poisoning by corrosive aromatics not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\(E864.0) Accidental poisoning by corrosive aromatics not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E864.0''', NULL, + '(E864.0) Accidental poisoning by corrosive aromatics not elsewhere classified', '(E864.0) Accidental poisoning by corrosive aromatics not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\(E864.1) Accidental poisoning by acids not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\(E864.1) Accidental poisoning by acids not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E864.1''', NULL, + '(E864.1) Accidental poisoning by acids not elsewhere classified', '(E864.1) Accidental poisoning by acids not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\(E864.2) Accidental poisoning by caustic alkalis not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\(E864.2) Accidental poisoning by caustic alkalis not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E864.2''', NULL, + '(E864.2) Accidental poisoning by caustic alkalis not elsewhere classified', '(E864.2) Accidental poisoning by caustic alkalis not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\(E864.3) Accidental poisoning by other specified corrosives and caustics not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\(E864.3) Accidental poisoning by other specified corrosives and caustics not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E864.3''', NULL, + '(E864.3) Accidental poisoning by other specified corrosives and caustics not elsewhere classified', '(E864.3) Accidental poisoning by other specified corrosives and caustics not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\(E864.4) Accidental poisoning by unspecified corrosives and caustics not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\(E864.4) Accidental poisoning by unspecified corrosives and caustics not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E864.4''', NULL, + '(E864.4) Accidental poisoning by unspecified corrosives and caustics not elsewhere classified', '(E864.4) Accidental poisoning by unspecified corrosives and caustics not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E866''', NULL, + 'Accidental poisoning by other and unspecified solid and liquid substances (E866)', 'Accidental poisoning by other and unspecified solid and liquid substances (E866)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.0) Accidental poisoning by lead and its compounds and fumes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.0) Accidental poisoning by lead and its compounds and fumes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E866.0''', NULL, + '(E866.0) Accidental poisoning by lead and its compounds and fumes', '(E866.0) Accidental poisoning by lead and its compounds and fumes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.1) Accidental poisoning by mercury and its compounds and fumes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.1) Accidental poisoning by mercury and its compounds and fumes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E866.1''', NULL, + '(E866.1) Accidental poisoning by mercury and its compounds and fumes', '(E866.1) Accidental poisoning by mercury and its compounds and fumes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.2) Accidental poisoning by antimony and its compounds and fumes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.2) Accidental poisoning by antimony and its compounds and fumes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E866.2''', NULL, + '(E866.2) Accidental poisoning by antimony and its compounds and fumes', '(E866.2) Accidental poisoning by antimony and its compounds and fumes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.3) Accidental poisoning by arsenic and its compounds and fumes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.3) Accidental poisoning by arsenic and its compounds and fumes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E866.3''', NULL, + '(E866.3) Accidental poisoning by arsenic and its compounds and fumes', '(E866.3) Accidental poisoning by arsenic and its compounds and fumes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.4) Accidental poisoning by other metals and their compounds and fumes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.4) Accidental poisoning by other metals and their compounds and fumes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E866.4''', NULL, + '(E866.4) Accidental poisoning by other metals and their compounds and fumes', '(E866.4) Accidental poisoning by other metals and their compounds and fumes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.5) Accidental poisoning by plant foods and fertilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.5) Accidental poisoning by plant foods and fertilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E866.5''', NULL, + '(E866.5) Accidental poisoning by plant foods and fertilizers', '(E866.5) Accidental poisoning by plant foods and fertilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.6) Accidental poisoning by glues and adhesives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.6) Accidental poisoning by glues and adhesives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E866.6''', NULL, + '(E866.6) Accidental poisoning by glues and adhesives', '(E866.6) Accidental poisoning by glues and adhesives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.7) Accidental poisoning by cosmetics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.7) Accidental poisoning by cosmetics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E866.7''', NULL, + '(E866.7) Accidental poisoning by cosmetics', '(E866.7) Accidental poisoning by cosmetics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.8) Accidental poisoning by other specified solid or liquid substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.8) Accidental poisoning by other specified solid or liquid substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E866.8''', NULL, + '(E866.8) Accidental poisoning by other specified solid or liquid substances', '(E866.8) Accidental poisoning by other specified solid or liquid substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.9) Accidental poisoning by unspecified solid or liquid substance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other and unspecified solid and liquid substances (E866)\(E866.9) Accidental poisoning by unspecified solid or liquid substance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E866.9''', NULL, + '(E866.9) Accidental poisoning by unspecified solid or liquid substance', '(E866.9) Accidental poisoning by unspecified solid or liquid substance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E869''', NULL, + 'Accidental poisoning by other gases and vapors (E869)', 'Accidental poisoning by other gases and vapors (E869)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.0) Accidental poisoning by nitrogen oxides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.0) Accidental poisoning by nitrogen oxides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E869.0''', NULL, + '(E869.0) Accidental poisoning by nitrogen oxides', '(E869.0) Accidental poisoning by nitrogen oxides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.1) Accidental poisoning by sulfur dioxide\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.1) Accidental poisoning by sulfur dioxide\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E869.1''', NULL, + '(E869.1) Accidental poisoning by sulfur dioxide', '(E869.1) Accidental poisoning by sulfur dioxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.2) Accidental poisoning by freon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.2) Accidental poisoning by freon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E869.2''', NULL, + '(E869.2) Accidental poisoning by freon', '(E869.2) Accidental poisoning by freon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.3) Accidental poisoning by lacrimogenic gas [tear gas]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.3) Accidental poisoning by lacrimogenic gas [tear gas]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E869.3''', NULL, + '(E869.3) Accidental poisoning by lacrimogenic gas [tear gas]', '(E869.3) Accidental poisoning by lacrimogenic gas [tear gas]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.4) Second hand tobacco smoke\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.4) Second hand tobacco smoke\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E869.4''', NULL, + '(E869.4) Second hand tobacco smoke', '(E869.4) Second hand tobacco smoke', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.8) Accidental poisoning by other specified gases and vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.8) Accidental poisoning by other specified gases and vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E869.8''', NULL, + '(E869.8) Accidental poisoning by other specified gases and vapors', '(E869.8) Accidental poisoning by other specified gases and vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.9) Accidental poisoning by unspecified gases and vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other gases and vapors (E869)\(E869.9) Accidental poisoning by unspecified gases and vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E869.9''', NULL, + '(E869.9) Accidental poisoning by unspecified gases and vapors', '(E869.9) Accidental poisoning by unspecified gases and vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E868''', NULL, + 'Accidental poisoning by other utility gas and other carbon monoxide (E868)', 'Accidental poisoning by other utility gas and other carbon monoxide (E868)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.0) Accidental poisoning by liquefied petroleum gas distributed in mobile containers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.0) Accidental poisoning by liquefied petroleum gas distributed in mobile containers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E868.0''', NULL, + '(E868.0) Accidental poisoning by liquefied petroleum gas distributed in mobile containers', '(E868.0) Accidental poisoning by liquefied petroleum gas distributed in mobile containers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.1) Accidental poisoning by other and unspecified utility gas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.1) Accidental poisoning by other and unspecified utility gas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E868.1''', NULL, + '(E868.1) Accidental poisoning by other and unspecified utility gas', '(E868.1) Accidental poisoning by other and unspecified utility gas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.2) Accidental poisoning by motor vehicle exhaust gas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.2) Accidental poisoning by motor vehicle exhaust gas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E868.2''', NULL, + '(E868.2) Accidental poisoning by motor vehicle exhaust gas', '(E868.2) Accidental poisoning by motor vehicle exhaust gas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.3) Accidental poisoning by carbon monoxide from incomplete combustion of other domestic fuels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.3) Accidental poisoning by carbon monoxide from incomplete combustion of other domestic fuels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E868.3''', NULL, + '(E868.3) Accidental poisoning by carbon monoxide from incomplete combustion of other domestic fuels', '(E868.3) Accidental poisoning by carbon monoxide from incomplete combustion of other domestic fuels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.8) Accidental poisoning by carbon monoxide from other sources\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.8) Accidental poisoning by carbon monoxide from other sources\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E868.8''', NULL, + '(E868.8) Accidental poisoning by carbon monoxide from other sources', '(E868.8) Accidental poisoning by carbon monoxide from other sources', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.9) Accidental poisoning by unspecified carbon monoxide\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by other utility gas and other carbon monoxide (E868)\(E868.9) Accidental poisoning by unspecified carbon monoxide\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E868.9''', NULL, + '(E868.9) Accidental poisoning by unspecified carbon monoxide', '(E868.9) Accidental poisoning by unspecified carbon monoxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E862''', NULL, + 'Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)', 'Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.0) Accidental poisoning by petroleum solvents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.0) Accidental poisoning by petroleum solvents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E862.0''', NULL, + '(E862.0) Accidental poisoning by petroleum solvents', '(E862.0) Accidental poisoning by petroleum solvents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.1) Accidental poisoning by petroleum fuels and cleaners\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.1) Accidental poisoning by petroleum fuels and cleaners\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E862.1''', NULL, + '(E862.1) Accidental poisoning by petroleum fuels and cleaners', '(E862.1) Accidental poisoning by petroleum fuels and cleaners', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.2) Accidental poisoning by lubricating oils\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.2) Accidental poisoning by lubricating oils\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E862.2''', NULL, + '(E862.2) Accidental poisoning by lubricating oils', '(E862.2) Accidental poisoning by lubricating oils', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.3) Accidental poisoning by petroleum solids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.3) Accidental poisoning by petroleum solids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E862.3''', NULL, + '(E862.3) Accidental poisoning by petroleum solids', '(E862.3) Accidental poisoning by petroleum solids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.4) Accidental poisoning by other specified solvents, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.4) Accidental poisoning by other specified solvents, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E862.4''', NULL, + '(E862.4) Accidental poisoning by other specified solvents, not elsewhere classified', '(E862.4) Accidental poisoning by other specified solvents, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.9) Accidental poisoning by unspecified solvent, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\(E862.9) Accidental poisoning by unspecified solvent, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E862.9''', NULL, + '(E862.9) Accidental poisoning by unspecified solvent, not elsewhere classified', '(E862.9) Accidental poisoning by unspecified solvent, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E865''', NULL, + 'Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)', 'Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.0) Accidental poisoning by meat\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.0) Accidental poisoning by meat\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E865.0''', NULL, + '(E865.0) Accidental poisoning by meat', '(E865.0) Accidental poisoning by meat', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.1) Accidental poisoning by shellfish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.1) Accidental poisoning by shellfish\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E865.1''', NULL, + '(E865.1) Accidental poisoning by shellfish', '(E865.1) Accidental poisoning by shellfish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.2) Accidental poisoning from other fish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.2) Accidental poisoning from other fish\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E865.2''', NULL, + '(E865.2) Accidental poisoning from other fish', '(E865.2) Accidental poisoning from other fish', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.3) Accidental poisoning from berries and seeds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.3) Accidental poisoning from berries and seeds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E865.3''', NULL, + '(E865.3) Accidental poisoning from berries and seeds', '(E865.3) Accidental poisoning from berries and seeds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.4) Accidental poisoning from other specified plants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.4) Accidental poisoning from other specified plants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E865.4''', NULL, + '(E865.4) Accidental poisoning from other specified plants', '(E865.4) Accidental poisoning from other specified plants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.5) Accidental poisoning from mushrooms and other fungi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.5) Accidental poisoning from mushrooms and other fungi\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E865.5''', NULL, + '(E865.5) Accidental poisoning from mushrooms and other fungi', '(E865.5) Accidental poisoning from mushrooms and other fungi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.8) Accidental poisoning from other specified foods\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.8) Accidental poisoning from other specified foods\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E865.8''', NULL, + '(E865.8) Accidental poisoning from other specified foods', '(E865.8) Accidental poisoning from other specified foods', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.9) Accidental poisoning from unspecified foodstuff or poisonous plant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\(E865.9) Accidental poisoning from unspecified foodstuff or poisonous plant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E865.9''', NULL, + '(E865.9) Accidental poisoning from unspecified foodstuff or poisonous plant', '(E865.9) Accidental poisoning from unspecified foodstuff or poisonous plant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E890'' AND ''E899.9''', NULL, + 'Accidents caused by fire and flames (E890-E899.9)', 'Accidents caused by fire and flames (E890-E899.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E892) Conflagration not in building or structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E892) Conflagration not in building or structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E892''', NULL, + '(E892) Conflagration not in building or structure', '(E892) Conflagration not in building or structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E894) Ignition of highly inflammable material\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E894) Ignition of highly inflammable material\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E894''', NULL, + '(E894) Ignition of highly inflammable material', '(E894) Ignition of highly inflammable material', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E895) Accident caused by controlled fire in private dwelling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E895) Accident caused by controlled fire in private dwelling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E895''', NULL, + '(E895) Accident caused by controlled fire in private dwelling', '(E895) Accident caused by controlled fire in private dwelling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E896) Accident caused by controlled fire in other and unspecified building or structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E896) Accident caused by controlled fire in other and unspecified building or structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E896''', NULL, + '(E896) Accident caused by controlled fire in other and unspecified building or structure', '(E896) Accident caused by controlled fire in other and unspecified building or structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E897) Accident caused by controlled fire not in building or structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E897) Accident caused by controlled fire not in building or structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E897''', NULL, + '(E897) Accident caused by controlled fire not in building or structure', '(E897) Accident caused by controlled fire not in building or structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E899) Accident caused by unspecified fire\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\(E899) Accident caused by unspecified fire\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E899''', NULL, + '(E899) Accident caused by unspecified fire', '(E899) Accident caused by unspecified fire', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E893''', NULL, + 'Accident caused by ignition of clothing (E893)', 'Accident caused by ignition of clothing (E893)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\(E893.0) Accident caused by ignition of clothing from controlled fire in private dwelling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\(E893.0) Accident caused by ignition of clothing from controlled fire in private dwelling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E893.0''', NULL, + '(E893.0) Accident caused by ignition of clothing from controlled fire in private dwelling', '(E893.0) Accident caused by ignition of clothing from controlled fire in private dwelling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\(E893.1) Accident caused by ignition of clothing from controlled fire in other building or structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\(E893.1) Accident caused by ignition of clothing from controlled fire in other building or structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E893.1''', NULL, + '(E893.1) Accident caused by ignition of clothing from controlled fire in other building or structure', '(E893.1) Accident caused by ignition of clothing from controlled fire in other building or structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\(E893.2) Accident caused by ignition of clothing from controlled fire not in building or structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\(E893.2) Accident caused by ignition of clothing from controlled fire not in building or structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E893.2''', NULL, + '(E893.2) Accident caused by ignition of clothing from controlled fire not in building or structure', '(E893.2) Accident caused by ignition of clothing from controlled fire not in building or structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\(E893.8) Accident caused by ignition of clothing from other specified sources\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\(E893.8) Accident caused by ignition of clothing from other specified sources\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E893.8''', NULL, + '(E893.8) Accident caused by ignition of clothing from other specified sources', '(E893.8) Accident caused by ignition of clothing from other specified sources', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\(E893.9) Accident caused by ignition of clothing by unspecified source\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by ignition of clothing (E893)\(E893.9) Accident caused by ignition of clothing by unspecified source\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E893.9''', NULL, + '(E893.9) Accident caused by ignition of clothing by unspecified source', '(E893.9) Accident caused by ignition of clothing by unspecified source', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by other specified fire and flames (E898)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by other specified fire and flames (E898)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E898''', NULL, + 'Accident caused by other specified fire and flames (E898)', 'Accident caused by other specified fire and flames (E898)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by other specified fire and flames (E898)\(E898.0) Accident caused by burning bedclothes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by other specified fire and flames (E898)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by other specified fire and flames (E898)\(E898.0) Accident caused by burning bedclothes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E898.0''', NULL, + '(E898.0) Accident caused by burning bedclothes', '(E898.0) Accident caused by burning bedclothes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by other specified fire and flames (E898)\(E898.1) Accident caused by other burning materials\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by other specified fire and flames (E898)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Accident caused by other specified fire and flames (E898)\(E898.1) Accident caused by other burning materials\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E898.1''', NULL, + '(E898.1) Accident caused by other burning materials', '(E898.1) Accident caused by other burning materials', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E891''', NULL, + 'Conflagration in other and unspecified building or structure (E891)', 'Conflagration in other and unspecified building or structure (E891)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.0) Explosion caused by conflagration in other and unspecified building or structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.0) Explosion caused by conflagration in other and unspecified building or structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E891.0''', NULL, + '(E891.0) Explosion caused by conflagration in other and unspecified building or structure', '(E891.0) Explosion caused by conflagration in other and unspecified building or structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in other and unspecified building or structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in other and unspecified building or structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E891.1''', NULL, + '(E891.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in other and unspecified building or structure', '(E891.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in other and unspecified building or structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.2) Other smoke and fumes from conflagration in other and unspecified building or structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.2) Other smoke and fumes from conflagration in other and unspecified building or structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E891.2''', NULL, + '(E891.2) Other smoke and fumes from conflagration in other and unspecified building or structure', '(E891.2) Other smoke and fumes from conflagration in other and unspecified building or structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.3) Burning caused by conflagration in other and unspecified building or structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.3) Burning caused by conflagration in other and unspecified building or structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E891.3''', NULL, + '(E891.3) Burning caused by conflagration in other and unspecified building or structure', '(E891.3) Burning caused by conflagration in other and unspecified building or structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.8) Other accident resulting from conflagration in other and unspecified building or structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.8) Other accident resulting from conflagration in other and unspecified building or structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E891.8''', NULL, + '(E891.8) Other accident resulting from conflagration in other and unspecified building or structure', '(E891.8) Other accident resulting from conflagration in other and unspecified building or structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.9) Unspecified accident resulting from conflagration of other and unspecified building or structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in other and unspecified building or structure (E891)\(E891.9) Unspecified accident resulting from conflagration of other and unspecified building or structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E891.9''', NULL, + '(E891.9) Unspecified accident resulting from conflagration of other and unspecified building or structure', '(E891.9) Unspecified accident resulting from conflagration of other and unspecified building or structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E890''', NULL, + 'Conflagration in private dwelling (E890)', 'Conflagration in private dwelling (E890)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.0) Explosion caused by conflagration in private dwelling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.0) Explosion caused by conflagration in private dwelling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E890.0''', NULL, + '(E890.0) Explosion caused by conflagration in private dwelling', '(E890.0) Explosion caused by conflagration in private dwelling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in private dwelling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in private dwelling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E890.1''', NULL, + '(E890.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in private dwelling', '(E890.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in private dwelling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.2) Other smoke and fumes from conflagration in private dwelling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.2) Other smoke and fumes from conflagration in private dwelling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E890.2''', NULL, + '(E890.2) Other smoke and fumes from conflagration in private dwelling', '(E890.2) Other smoke and fumes from conflagration in private dwelling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.3) Burning caused by conflagration in private dwelling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.3) Burning caused by conflagration in private dwelling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E890.3''', NULL, + '(E890.3) Burning caused by conflagration in private dwelling', '(E890.3) Burning caused by conflagration in private dwelling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.8) Other accident resulting from conflagration in private dwelling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.8) Other accident resulting from conflagration in private dwelling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E890.8''', NULL, + '(E890.8) Other accident resulting from conflagration in private dwelling', '(E890.8) Other accident resulting from conflagration in private dwelling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.9) Unspecified accident resulting from conflagration in private dwelling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by fire and flames (E890-E899.9)\Conflagration in private dwelling (E890)\(E890.9) Unspecified accident resulting from conflagration in private dwelling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E890.9''', NULL, + '(E890.9) Unspecified accident resulting from conflagration in private dwelling', '(E890.9) Unspecified accident resulting from conflagration in private dwelling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E910'' AND ''E915.9''', NULL, + 'Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)', 'Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\(E911) Inhalation and ingestion of food causing obstruction of respiratory tract or suffocation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\(E911) Inhalation and ingestion of food causing obstruction of respiratory tract or suffocation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E911''', NULL, + '(E911) Inhalation and ingestion of food causing obstruction of respiratory tract or suffocation', '(E911) Inhalation and ingestion of food causing obstruction of respiratory tract or suffocation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\(E912) Inhalation and ingestion of other object causing obstruction of respiratory tract or suffocation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\(E912) Inhalation and ingestion of other object causing obstruction of respiratory tract or suffocation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E912''', NULL, + '(E912) Inhalation and ingestion of other object causing obstruction of respiratory tract or suffocation', '(E912) Inhalation and ingestion of other object causing obstruction of respiratory tract or suffocation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\(E914) Foreign body accidentally entering eye and adnexa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\(E914) Foreign body accidentally entering eye and adnexa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E914''', NULL, + '(E914) Foreign body accidentally entering eye and adnexa', '(E914) Foreign body accidentally entering eye and adnexa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\(E915) Foreign body accidentally entering other orifice\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\(E915) Foreign body accidentally entering other orifice\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E915''', NULL, + '(E915) Foreign body accidentally entering other orifice', '(E915) Foreign body accidentally entering other orifice', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E910''', NULL, + 'Accidental drowning and submersion (E910)', 'Accidental drowning and submersion (E910)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.0) Accidental drowning and submersion while water-skiing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.0) Accidental drowning and submersion while water-skiing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E910.0''', NULL, + '(E910.0) Accidental drowning and submersion while water-skiing', '(E910.0) Accidental drowning and submersion while water-skiing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.1) Accidental drowning and submersion while engaged in other sport or recreational activity with diving equipment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.1) Accidental drowning and submersion while engaged in other sport or recreational activity with diving equipment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E910.1''', NULL, + '(E910.1) Accidental drowning and submersion while engaged in other sport or recreational activity with diving equipment', '(E910.1) Accidental drowning and submersion while engaged in other sport or recreational activity with diving equipment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.2) Accidental drowning and submersion while engaged in other sport or recreational activity without diving equipment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.2) Accidental drowning and submersion while engaged in other sport or recreational activity without diving equipment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E910.2''', NULL, + '(E910.2) Accidental drowning and submersion while engaged in other sport or recreational activity without diving equipment', '(E910.2) Accidental drowning and submersion while engaged in other sport or recreational activity without diving equipment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.3) Accidental drowning and submersion while swimming or diving for purposes other than recreation or sport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.3) Accidental drowning and submersion while swimming or diving for purposes other than recreation or sport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E910.3''', NULL, + '(E910.3) Accidental drowning and submersion while swimming or diving for purposes other than recreation or sport', '(E910.3) Accidental drowning and submersion while swimming or diving for purposes other than recreation or sport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.4) Accidental drowning and submersion in bathtub\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.4) Accidental drowning and submersion in bathtub\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E910.4''', NULL, + '(E910.4) Accidental drowning and submersion in bathtub', '(E910.4) Accidental drowning and submersion in bathtub', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.8) Other accidental drowning or submersion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.8) Other accidental drowning or submersion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E910.8''', NULL, + '(E910.8) Other accidental drowning or submersion', '(E910.8) Other accidental drowning or submersion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.9) Unspecified accidental drowning or submersion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental drowning and submersion (E910)\(E910.9) Unspecified accidental drowning or submersion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E910.9''', NULL, + '(E910.9) Unspecified accidental drowning or submersion', '(E910.9) Unspecified accidental drowning or submersion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E913''', NULL, + 'Accidental mechanical suffocation (E913)', 'Accidental mechanical suffocation (E913)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.0) Accidental mechanical suffocation in bed or cradle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.0) Accidental mechanical suffocation in bed or cradle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E913.0''', NULL, + '(E913.0) Accidental mechanical suffocation in bed or cradle', '(E913.0) Accidental mechanical suffocation in bed or cradle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.1) Accidental mechanical suffocation by plastic bag\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.1) Accidental mechanical suffocation by plastic bag\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E913.1''', NULL, + '(E913.1) Accidental mechanical suffocation by plastic bag', '(E913.1) Accidental mechanical suffocation by plastic bag', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.2) Accidental mechanical suffocation due to lack of air (in closed place)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.2) Accidental mechanical suffocation due to lack of air (in closed place)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E913.2) Accidental mechanical suffocation due to lack of air (in closed place''', NULL, + '(E913.2) Accidental mechanical suffocation due to lack of air (in closed place)', '(E913.2) Accidental mechanical suffocation due to lack of air (in closed place)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.3) Accidental mechanical suffocation by falling earth or other substance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.3) Accidental mechanical suffocation by falling earth or other substance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E913.3''', NULL, + '(E913.3) Accidental mechanical suffocation by falling earth or other substance', '(E913.3) Accidental mechanical suffocation by falling earth or other substance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.8) Accidental mechanical suffocation by other specified means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.8) Accidental mechanical suffocation by other specified means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E913.8''', NULL, + '(E913.8) Accidental mechanical suffocation by other specified means', '(E913.8) Accidental mechanical suffocation by other specified means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.9) Accidental mechanical suffocation by unspecified means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\Accidental mechanical suffocation (E913)\(E913.9) Accidental mechanical suffocation by unspecified means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E913.9''', NULL, + '(E913.9) Accidental mechanical suffocation by unspecified means', '(E913.9) Accidental mechanical suffocation by unspecified means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E900'' AND ''E909.9''', NULL, + 'Accidents due to natural and environmental factors (E900-E909.9)', 'Accidents due to natural and environmental factors (E900-E909.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\(E903) Accident caused by travel and motion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\(E903) Accident caused by travel and motion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E903''', NULL, + '(E903) Accident caused by travel and motion', '(E903) Accident caused by travel and motion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\(E907) Accident due to lightning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\(E907) Accident due to lightning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E907''', NULL, + '(E907) Accident due to lightning', '(E907) Accident due to lightning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident caused by excessive heat (E900)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident caused by excessive heat (E900)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E900''', NULL, + 'Accident caused by excessive heat (E900)', 'Accident caused by excessive heat (E900)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident caused by excessive heat (E900)\(E900.0) Accident caused by excessive heat due to weather conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident caused by excessive heat (E900)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident caused by excessive heat (E900)\(E900.0) Accident caused by excessive heat due to weather conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E900.0''', NULL, + '(E900.0) Accident caused by excessive heat due to weather conditions', '(E900.0) Accident caused by excessive heat due to weather conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident caused by excessive heat (E900)\(E900.1) Accidents due to excessive heat of man-made origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident caused by excessive heat (E900)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident caused by excessive heat (E900)\(E900.1) Accidents due to excessive heat of man-made origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E900.1''', NULL, + '(E900.1) Accidents due to excessive heat of man-made origin', '(E900.1) Accidents due to excessive heat of man-made origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident caused by excessive heat (E900)\(E900.9) Accidents due to excessive heat of unspecified origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident caused by excessive heat (E900)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident caused by excessive heat (E900)\(E900.9) Accidents due to excessive heat of unspecified origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E900.9''', NULL, + '(E900.9) Accidents due to excessive heat of unspecified origin', '(E900.9) Accidents due to excessive heat of unspecified origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E909''', NULL, + 'Accident due to cataclysmic earth surface movements and eruptions (E909)', 'Accident due to cataclysmic earth surface movements and eruptions (E909)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.0) Earthquakes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.0) Earthquakes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E909.0''', NULL, + '(E909.0) Earthquakes', '(E909.0) Earthquakes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.1) Volcanic eruptions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.1) Volcanic eruptions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E909.1''', NULL, + '(E909.1) Volcanic eruptions', '(E909.1) Volcanic eruptions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.2) Avalanche, landslide, or mudslide\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.2) Avalanche, landslide, or mudslide\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E909.2''', NULL, + '(E909.2) Avalanche, landslide, or mudslide', '(E909.2) Avalanche, landslide, or mudslide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.3) Collapse of dam or man-made structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.3) Collapse of dam or man-made structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E909.3''', NULL, + '(E909.3) Collapse of dam or man-made structure', '(E909.3) Collapse of dam or man-made structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.4) Tidalwave caused by earthquake\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.4) Tidalwave caused by earthquake\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E909.4''', NULL, + '(E909.4) Tidalwave caused by earthquake', '(E909.4) Tidalwave caused by earthquake', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.8) Other cataclysmic earth surface movements and eruptions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.8) Other cataclysmic earth surface movements and eruptions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E909.8''', NULL, + '(E909.8) Other cataclysmic earth surface movements and eruptions', '(E909.8) Other cataclysmic earth surface movements and eruptions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.9) Unspecified cataclysmic earth surface movements and eruptions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic earth surface movements and eruptions (E909)\(E909.9) Unspecified cataclysmic earth surface movements and eruptions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E909.9''', NULL, + '(E909.9) Unspecified cataclysmic earth surface movements and eruptions', '(E909.9) Unspecified cataclysmic earth surface movements and eruptions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E908''', NULL, + 'Accident due to cataclysmic storms, and floods resulting from storms (E908)', 'Accident due to cataclysmic storms, and floods resulting from storms (E908)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.0) Hurricane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.0) Hurricane\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E908.0''', NULL, + '(E908.0) Hurricane', '(E908.0) Hurricane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.1) Tornado\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.1) Tornado\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E908.1''', NULL, + '(E908.1) Tornado', '(E908.1) Tornado', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.2) Floods\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.2) Floods\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E908.2''', NULL, + '(E908.2) Floods', '(E908.2) Floods', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.3) Blizzard (snow) (ice)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.3) Blizzard (snow) (ice)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E908.3) Blizzard (snow) (ice''', NULL, + '(E908.3) Blizzard (snow) (ice)', '(E908.3) Blizzard (snow) (ice)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.4) Dust storm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.4) Dust storm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E908.4''', NULL, + '(E908.4) Dust storm', '(E908.4) Dust storm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.8) Other cataclysmic storms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.8) Other cataclysmic storms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E908.8''', NULL, + '(E908.8) Other cataclysmic storms', '(E908.8) Other cataclysmic storms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.9) Unspecified cataclysmic storms, and floods resulting from storms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to cataclysmic storms, and floods resulting from storms (E908)\(E908.9) Unspecified cataclysmic storms, and floods resulting from storms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E908.9''', NULL, + '(E908.9) Unspecified cataclysmic storms, and floods resulting from storms', '(E908.9) Unspecified cataclysmic storms, and floods resulting from storms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E902''', NULL, + 'Accident due to high and low air pressure and changes in air pressure (E902)', 'Accident due to high and low air pressure and changes in air pressure (E902)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\(E902.0) Accident due to residence or prolonged visit at high altitude\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\(E902.0) Accident due to residence or prolonged visit at high altitude\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E902.0''', NULL, + '(E902.0) Accident due to residence or prolonged visit at high altitude', '(E902.0) Accident due to residence or prolonged visit at high altitude', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\(E902.1) Accident due to changes in air pressure in aircraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\(E902.1) Accident due to changes in air pressure in aircraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E902.1''', NULL, + '(E902.1) Accident due to changes in air pressure in aircraft', '(E902.1) Accident due to changes in air pressure in aircraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\(E902.2) Accident due to changes in air pressure due to diving\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\(E902.2) Accident due to changes in air pressure due to diving\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E902.2''', NULL, + '(E902.2) Accident due to changes in air pressure due to diving', '(E902.2) Accident due to changes in air pressure due to diving', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\(E902.8) Accident due to changes in air pressure due to other specified causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\(E902.8) Accident due to changes in air pressure due to other specified causes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E902.8''', NULL, + '(E902.8) Accident due to changes in air pressure due to other specified causes', '(E902.8) Accident due to changes in air pressure due to other specified causes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\(E902.9) Accident due to changes in air pressure from unspecified cause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accident due to high and low air pressure and changes in air pressure (E902)\(E902.9) Accident due to changes in air pressure from unspecified cause\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E902.9''', NULL, + '(E902.9) Accident due to changes in air pressure from unspecified cause', '(E902.9) Accident due to changes in air pressure from unspecified cause', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E901''', NULL, + 'Accidents due to excessive cold (E901)', 'Accidents due to excessive cold (E901)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\(E901.0) Accident due to excessive cold due to weather conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\(E901.0) Accident due to excessive cold due to weather conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E901.0''', NULL, + '(E901.0) Accident due to excessive cold due to weather conditions', '(E901.0) Accident due to excessive cold due to weather conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\(E901.1) Accident due to excessive cold of man-made origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\(E901.1) Accident due to excessive cold of man-made origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E901.1''', NULL, + '(E901.1) Accident due to excessive cold of man-made origin', '(E901.1) Accident due to excessive cold of man-made origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\(E901.8) Accident due to excessive cold of other specified origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\(E901.8) Accident due to excessive cold of other specified origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E901.8''', NULL, + '(E901.8) Accident due to excessive cold of other specified origin', '(E901.8) Accident due to excessive cold of other specified origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\(E901.9) Accident due to excessive cold of unspecified origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Accidents due to excessive cold (E901)\(E901.9) Accident due to excessive cold of unspecified origin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E901.9''', NULL, + '(E901.9) Accident due to excessive cold of unspecified origin', '(E901.9) Accident due to excessive cold of unspecified origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E904''', NULL, + 'Hunger, thirst, exposure, and neglect (E904)', 'Hunger, thirst, exposure, and neglect (E904)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\(E904.0) Accident due to abandonment or neglect of infants and helpless persons\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\(E904.0) Accident due to abandonment or neglect of infants and helpless persons\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E904.0''', NULL, + '(E904.0) Accident due to abandonment or neglect of infants and helpless persons', '(E904.0) Accident due to abandonment or neglect of infants and helpless persons', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\(E904.1) Accident due to lack of food\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\(E904.1) Accident due to lack of food\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E904.1''', NULL, + '(E904.1) Accident due to lack of food', '(E904.1) Accident due to lack of food', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\(E904.2) Accident due to lack of water\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\(E904.2) Accident due to lack of water\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E904.2''', NULL, + '(E904.2) Accident due to lack of water', '(E904.2) Accident due to lack of water', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\(E904.3) Accident due to exposure (to weather conditions), not elsewhere classifiable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\(E904.3) Accident due to exposure (to weather conditions), not elsewhere classifiable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E904.3) Accident due to exposure (to weather conditions''', NULL, + '(E904.3) Accident due to exposure (to weather conditions), not elsewhere classifiable', '(E904.3) Accident due to exposure (to weather conditions), not elsewhere classifiable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\(E904.9) Accident due to privation, unqualified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Hunger, thirst, exposure, and neglect (E904)\(E904.9) Accident due to privation, unqualified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E904.9''', NULL, + '(E904.9) Accident due to privation, unqualified', '(E904.9) Accident due to privation, unqualified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E906''', NULL, + 'Other injury caused by animals (E906)', 'Other injury caused by animals (E906)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.0) Dog bite\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.0) Dog bite\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E906.0''', NULL, + '(E906.0) Dog bite', '(E906.0) Dog bite', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.1) Rat bite\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.1) Rat bite\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E906.1''', NULL, + '(E906.1) Rat bite', '(E906.1) Rat bite', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.2) Bite of nonvenomous snakes and lizards\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.2) Bite of nonvenomous snakes and lizards\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E906.2''', NULL, + '(E906.2) Bite of nonvenomous snakes and lizards', '(E906.2) Bite of nonvenomous snakes and lizards', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.3) Bite of other animal except arthropod\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.3) Bite of other animal except arthropod\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E906.3''', NULL, + '(E906.3) Bite of other animal except arthropod', '(E906.3) Bite of other animal except arthropod', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.4) Bite of nonvenomous arthropod\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.4) Bite of nonvenomous arthropod\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E906.4''', NULL, + '(E906.4) Bite of nonvenomous arthropod', '(E906.4) Bite of nonvenomous arthropod', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.5) Bite by unspecified animal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.5) Bite by unspecified animal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E906.5''', NULL, + '(E906.5) Bite by unspecified animal', '(E906.5) Bite by unspecified animal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.8) Other specified injury caused by animal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.8) Other specified injury caused by animal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E906.8''', NULL, + '(E906.8) Other specified injury caused by animal', '(E906.8) Other specified injury caused by animal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.9) Unspecified injury caused by animal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Other injury caused by animals (E906)\(E906.9) Unspecified injury caused by animal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E906.9''', NULL, + '(E906.9) Unspecified injury caused by animal', '(E906.9) Unspecified injury caused by animal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E905''', NULL, + 'Venomous animals and plants as the cause of poisoning and toxic reactions (E905)', 'Venomous animals and plants as the cause of poisoning and toxic reactions (E905)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.0) Venomous snakes and lizards causing poisoning and toxic reactions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.0) Venomous snakes and lizards causing poisoning and toxic reactions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E905.0''', NULL, + '(E905.0) Venomous snakes and lizards causing poisoning and toxic reactions', '(E905.0) Venomous snakes and lizards causing poisoning and toxic reactions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.1) Venomous spiders causing poisoning and toxic reactions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.1) Venomous spiders causing poisoning and toxic reactions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E905.1''', NULL, + '(E905.1) Venomous spiders causing poisoning and toxic reactions', '(E905.1) Venomous spiders causing poisoning and toxic reactions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.2) Scorpion sting causing poisoning and toxic reactions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.2) Scorpion sting causing poisoning and toxic reactions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E905.2''', NULL, + '(E905.2) Scorpion sting causing poisoning and toxic reactions', '(E905.2) Scorpion sting causing poisoning and toxic reactions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.3) Sting of hornets, wasps, and bees causing poisoning and toxic reactions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.3) Sting of hornets, wasps, and bees causing poisoning and toxic reactions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E905.3''', NULL, + '(E905.3) Sting of hornets, wasps, and bees causing poisoning and toxic reactions', '(E905.3) Sting of hornets, wasps, and bees causing poisoning and toxic reactions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.4) Centipede and venomous millipede (tropical) bite causing poisoning and toxic reactions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.4) Centipede and venomous millipede (tropical) bite causing poisoning and toxic reactions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E905.4) Centipede and venomous millipede (tropical''', NULL, + '(E905.4) Centipede and venomous millipede (tropical) bite causing poisoning and toxic reactions', '(E905.4) Centipede and venomous millipede (tropical) bite causing poisoning and toxic reactions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.5) Other venomous arthropods causing poisoning and toxic reactions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.5) Other venomous arthropods causing poisoning and toxic reactions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E905.5''', NULL, + '(E905.5) Other venomous arthropods causing poisoning and toxic reactions', '(E905.5) Other venomous arthropods causing poisoning and toxic reactions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.6) Venomous marine animals and plants causing poisoning and toxic reactions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.6) Venomous marine animals and plants causing poisoning and toxic reactions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E905.6''', NULL, + '(E905.6) Venomous marine animals and plants causing poisoning and toxic reactions', '(E905.6) Venomous marine animals and plants causing poisoning and toxic reactions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.7) Poisoning and toxic reactions caused by other plants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.7) Poisoning and toxic reactions caused by other plants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E905.7''', NULL, + '(E905.7) Poisoning and toxic reactions caused by other plants', '(E905.7) Poisoning and toxic reactions caused by other plants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.8) Poisoning and toxic reactions caused by other specified animals and plants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.8) Poisoning and toxic reactions caused by other specified animals and plants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E905.8''', NULL, + '(E905.8) Poisoning and toxic reactions caused by other specified animals and plants', '(E905.8) Poisoning and toxic reactions caused by other specified animals and plants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.9) Poisoning and toxic reactions caused by unspecified animals and plants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Accidents due to natural and environmental factors (E900-E909.9)\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\(E905.9) Poisoning and toxic reactions caused by unspecified animals and plants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E905.9''', NULL, + '(E905.9) Poisoning and toxic reactions caused by unspecified animals and plants', '(E905.9) Poisoning and toxic reactions caused by unspecified animals and plants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E001'' AND ''E030.9''', NULL, + 'Activity (E001-E030.9)', 'Activity (E001-E030.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\(E030) Unspecified activity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\(E030) Unspecified activity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E030''', NULL, + '(E030) Unspecified activity', '(E030) Unspecified activity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving animal care (E019)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving animal care (E019)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E019''', NULL, + 'Activities involving animal care (E019)', 'Activities involving animal care (E019)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving animal care (E019)\(E019.0) Activities involving walking an animal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving animal care (E019)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving animal care (E019)\(E019.0) Activities involving walking an animal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E019.0''', NULL, + '(E019.0) Activities involving walking an animal', '(E019.0) Activities involving walking an animal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving animal care (E019)\(E019.9) Other activity involving animal care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving animal care (E019)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving animal care (E019)\(E019.9) Other activity involving animal care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E019.9''', NULL, + '(E019.9) Other activity involving animal care', '(E019.9) Other activity involving animal care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving climbing, rappelling and jumping off (E004)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving climbing, rappelling and jumping off (E004)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E004''', NULL, + 'Activities involving climbing, rappelling and jumping off (E004)', 'Activities involving climbing, rappelling and jumping off (E004)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving climbing, rappelling and jumping off (E004)\(E004.0) Activities involving mountain climbing, rock climbing and wall climbing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving climbing, rappelling and jumping off (E004)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving climbing, rappelling and jumping off (E004)\(E004.0) Activities involving mountain climbing, rock climbing and wall climbing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E004.0''', NULL, + '(E004.0) Activities involving mountain climbing, rock climbing and wall climbing', '(E004.0) Activities involving mountain climbing, rock climbing and wall climbing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving climbing, rappelling and jumping off (E004)\(E004.9) Other activity involving climbing, rappelling and jumping off\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving climbing, rappelling and jumping off (E004)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving climbing, rappelling and jumping off (E004)\(E004.9) Other activity involving climbing, rappelling and jumping off\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E004.9''', NULL, + '(E004.9) Other activity involving climbing, rappelling and jumping off', '(E004.9) Other activity involving climbing, rappelling and jumping off', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E005''', NULL, + 'Activities involving dancing and other rhythmic movement (E005)', 'Activities involving dancing and other rhythmic movement (E005)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\(E005.0) Activities involving dancing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\(E005.0) Activities involving dancing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E005.0''', NULL, + '(E005.0) Activities involving dancing', '(E005.0) Activities involving dancing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\(E005.2) Activities involving gymnastics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\(E005.2) Activities involving gymnastics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E005.2''', NULL, + '(E005.2) Activities involving gymnastics', '(E005.2) Activities involving gymnastics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\(E005.3) Activities involving trampoline\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\(E005.3) Activities involving trampoline\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E005.3''', NULL, + '(E005.3) Activities involving trampoline', '(E005.3) Activities involving trampoline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\(E005.4) Activities involving cheerleading\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\(E005.4) Activities involving cheerleading\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E005.4''', NULL, + '(E005.4) Activities involving cheerleading', '(E005.4) Activities involving cheerleading', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\(E005.9) Other activity involving dancing and other rhythmic movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving dancing and other rhythmic movement (E005)\(E005.9) Other activity involving dancing and other rhythmic movements\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E005.9''', NULL, + '(E005.9) Other activity involving dancing and other rhythmic movements', '(E005.9) Other activity involving dancing and other rhythmic movements', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E015''', NULL, + 'Activities involving food preparation, cooking and grilling (E015)', 'Activities involving food preparation, cooking and grilling (E015)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\(E015.0) Activities involving food preparation and clean up\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\(E015.0) Activities involving food preparation and clean up\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E015.0''', NULL, + '(E015.0) Activities involving food preparation and clean up', '(E015.0) Activities involving food preparation and clean up', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\(E015.1) Activities involving grilling and smoking food\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\(E015.1) Activities involving grilling and smoking food\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E015.1''', NULL, + '(E015.1) Activities involving grilling and smoking food', '(E015.1) Activities involving grilling and smoking food', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\(E015.2) Activities involving cooking and baking\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\(E015.2) Activities involving cooking and baking\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E015.2''', NULL, + '(E015.2) Activities involving cooking and baking', '(E015.2) Activities involving cooking and baking', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\(E015.9) Other activity involving cooking and grilling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving food preparation, cooking and grilling (E015)\(E015.9) Other activity involving cooking and grilling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E015.9''', NULL, + '(E015.9) Other activity involving cooking and grilling', '(E015.9) Other activity involving cooking and grilling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E003''', NULL, + 'Activities involving ice and snow (E003)', 'Activities involving ice and snow (E003)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\(E003.0) Activities involving ice skating\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\(E003.0) Activities involving ice skating\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E003.0''', NULL, + '(E003.0) Activities involving ice skating', '(E003.0) Activities involving ice skating', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\(E003.1) Activities involving ice hockey\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\(E003.1) Activities involving ice hockey\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E003.1''', NULL, + '(E003.1) Activities involving ice hockey', '(E003.1) Activities involving ice hockey', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\(E003.2) Activities involving snow (alpine) (downhill) skiing, snow boarding, sledding, tobogganing and snow tubing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\(E003.2) Activities involving snow (alpine) (downhill) skiing, snow boarding, sledding, tobogganing and snow tubing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E003.2) Activities involving snow (alpine) (downhill''', NULL, + '(E003.2) Activities involving snow (alpine) (downhill) skiing, snow boarding, sledding, tobogganing and snow tubing', '(E003.2) Activities involving snow (alpine) (downhill) skiing, snow boarding, sledding, tobogganing and snow tubing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\(E003.9) Other activity involving ice and snow\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving ice and snow (E003)\(E003.9) Other activity involving ice and snow\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E003.9''', NULL, + '(E003.9) Other activity involving ice and snow', '(E003.9) Other activity involving ice and snow', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E008''', NULL, + 'Activities involving other specified sports and athletics (E008)', 'Activities involving other specified sports and athletics (E008)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.0) Activities involving boxing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.0) Activities involving boxing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E008.0''', NULL, + '(E008.0) Activities involving boxing', '(E008.0) Activities involving boxing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.1) Activities involving wrestling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.1) Activities involving wrestling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E008.1''', NULL, + '(E008.1) Activities involving wrestling', '(E008.1) Activities involving wrestling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.2) Activities involving racquet and hand sports\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.2) Activities involving racquet and hand sports\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E008.2''', NULL, + '(E008.2) Activities involving racquet and hand sports', '(E008.2) Activities involving racquet and hand sports', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.3) Activities involving frisbee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.3) Activities involving frisbee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E008.3''', NULL, + '(E008.3) Activities involving frisbee', '(E008.3) Activities involving frisbee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.4) Activities involving martial arts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.4) Activities involving martial arts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E008.4''', NULL, + '(E008.4) Activities involving martial arts', '(E008.4) Activities involving martial arts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.9) Other specified sports and athletics activity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other specified sports and athletics (E008)\(E008.9) Other specified sports and athletics activity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E008.9''', NULL, + '(E008.9) Other specified sports and athletics activity', '(E008.9) Other specified sports and athletics activity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E007''', NULL, + 'Activities involving other sports and athletics played as a team or group (E007)', 'Activities involving other sports and athletics played as a team or group (E007)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.0) Activities involving american tackle football\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.0) Activities involving american tackle football\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E007.0''', NULL, + '(E007.0) Activities involving american tackle football', '(E007.0) Activities involving american tackle football', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.1) Activities involving american flag or touch football\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.1) Activities involving american flag or touch football\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E007.1''', NULL, + '(E007.1) Activities involving american flag or touch football', '(E007.1) Activities involving american flag or touch football', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.2) Activities involving rugby\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.2) Activities involving rugby\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E007.2''', NULL, + '(E007.2) Activities involving rugby', '(E007.2) Activities involving rugby', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.3) Activities involving baseball\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.3) Activities involving baseball\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E007.3''', NULL, + '(E007.3) Activities involving baseball', '(E007.3) Activities involving baseball', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.4) Activities involving lacrosse and field hockey\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.4) Activities involving lacrosse and field hockey\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E007.4''', NULL, + '(E007.4) Activities involving lacrosse and field hockey', '(E007.4) Activities involving lacrosse and field hockey', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.5) Activities involving soccer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.5) Activities involving soccer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E007.5''', NULL, + '(E007.5) Activities involving soccer', '(E007.5) Activities involving soccer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.6) Activities involving basketball\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.6) Activities involving basketball\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E007.6''', NULL, + '(E007.6) Activities involving basketball', '(E007.6) Activities involving basketball', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.7) Activities involving volleyball (beach) (court)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.7) Activities involving volleyball (beach) (court)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E007.7) Activities involving volleyball (beach) (court''', NULL, + '(E007.7) Activities involving volleyball (beach) (court)', '(E007.7) Activities involving volleyball (beach) (court)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.8) Activities involving physical games generally associated with school recess, summer camp and children\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.8) Activities involving physical games generally associated with school recess, summer camp and children\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E007.8''', NULL, + '(E007.8) Activities involving physical games generally associated with school recess, summer camp and children', '(E007.8) Activities involving physical games generally associated with school recess, summer camp and children', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.9) Other activity involving other sports and athletes played as a team or group\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played as a team or group (E007)\(E007.9) Other activity involving other sports and athletes played as a team or group\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E007.9''', NULL, + '(E007.9) Other activity involving other sports and athletes played as a team or group', '(E007.9) Other activity involving other sports and athletes played as a team or group', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E006''', NULL, + 'Activities involving other sports and athletics played individually (E006)', 'Activities involving other sports and athletics played individually (E006)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.0) Activities involving roller skating (inline) and skateboarding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.0) Activities involving roller skating (inline) and skateboarding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E006.0) Activities involving roller skating (inline''', NULL, + '(E006.0) Activities involving roller skating (inline) and skateboarding', '(E006.0) Activities involving roller skating (inline) and skateboarding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.1) Activities involving horseback riding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.1) Activities involving horseback riding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E006.1''', NULL, + '(E006.1) Activities involving horseback riding', '(E006.1) Activities involving horseback riding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.2) Activities involving golf\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.2) Activities involving golf\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E006.2''', NULL, + '(E006.2) Activities involving golf', '(E006.2) Activities involving golf', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.3) Activities involving bowling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.3) Activities involving bowling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E006.3''', NULL, + '(E006.3) Activities involving bowling', '(E006.3) Activities involving bowling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.4) Activities involving bike riding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.4) Activities involving bike riding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E006.4''', NULL, + '(E006.4) Activities involving bike riding', '(E006.4) Activities involving bike riding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.9) Other activity involving other sports and athletics played individually\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving other sports and athletics played individually (E006)\(E006.9) Other activity involving other sports and athletics played individually\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E006.9''', NULL, + '(E006.9) Other activity involving other sports and athletics played individually', '(E006.9) Other activity involving other sports and athletics played individually', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving person providing caregiving (E014)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving person providing caregiving (E014)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E014''', NULL, + 'Activities involving person providing caregiving (E014)', 'Activities involving person providing caregiving (E014)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving person providing caregiving (E014)\(E014.1) Caregiving involving lifting\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving person providing caregiving (E014)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving person providing caregiving (E014)\(E014.1) Caregiving involving lifting\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E014.1''', NULL, + '(E014.1) Caregiving involving lifting', '(E014.1) Caregiving involving lifting', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving person providing caregiving (E014)\(E014.9) Other activity involving person providing caregiving\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving person providing caregiving (E014)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving person providing caregiving (E014)\(E014.9) Other activity involving person providing caregiving\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E014.9''', NULL, + '(E014.9) Other activity involving person providing caregiving', '(E014.9) Other activity involving person providing caregiving', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E013''', NULL, + 'Activities involving personal hygiene and household maintenance (E013)', 'Activities involving personal hygiene and household maintenance (E013)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\(E013.0) Activities involving personal bathing and showering\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\(E013.0) Activities involving personal bathing and showering\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E013.0''', NULL, + '(E013.0) Activities involving personal bathing and showering', '(E013.0) Activities involving personal bathing and showering', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\(E013.4) Activities involving floor mopping and cleaning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\(E013.4) Activities involving floor mopping and cleaning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E013.4''', NULL, + '(E013.4) Activities involving floor mopping and cleaning', '(E013.4) Activities involving floor mopping and cleaning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\(E013.5) Activities involving residential relocation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\(E013.5) Activities involving residential relocation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E013.5''', NULL, + '(E013.5) Activities involving residential relocation', '(E013.5) Activities involving residential relocation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\(E013.8) Other personal hygiene activity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\(E013.8) Other personal hygiene activity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E013.8''', NULL, + '(E013.8) Other personal hygiene activity', '(E013.8) Other personal hygiene activity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\(E013.9) Other household maintenance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving personal hygiene and household maintenance (E013)\(E013.9) Other household maintenance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E013.9''', NULL, + '(E013.9) Other household maintenance', '(E013.9) Other household maintenance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E016''', NULL, + 'Activities involving property and land maintenance, building and construction (E016)', 'Activities involving property and land maintenance, building and construction (E016)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\(E016.0) Activities involving digging, shoveling and raking\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\(E016.0) Activities involving digging, shoveling and raking\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E016.0''', NULL, + '(E016.0) Activities involving digging, shoveling and raking', '(E016.0) Activities involving digging, shoveling and raking', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\(E016.1) Activities involving gardening and landscaping\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\(E016.1) Activities involving gardening and landscaping\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E016.1''', NULL, + '(E016.1) Activities involving gardening and landscaping', '(E016.1) Activities involving gardening and landscaping', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\(E016.2) Activities involving building and construction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\(E016.2) Activities involving building and construction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E016.2''', NULL, + '(E016.2) Activities involving building and construction', '(E016.2) Activities involving building and construction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\(E016.9) Other activity involving property and land maintenance, building and construction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving property and land maintenance, building and construction (E016)\(E016.9) Other activity involving property and land maintenance, building and construction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E016.9''', NULL, + '(E016.9) Other activity involving property and land maintenance, building and construction', '(E016.9) Other activity involving property and land maintenance, building and construction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving roller coasters and other types of external motion (E017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving roller coasters and other types of external motion (E017)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E017''', NULL, + 'Activities involving roller coasters and other types of external motion (E017)', 'Activities involving roller coasters and other types of external motion (E017)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving roller coasters and other types of external motion (E017)\(E017.9) Other activity involving external motion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving roller coasters and other types of external motion (E017)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving roller coasters and other types of external motion (E017)\(E017.9) Other activity involving external motion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E017.9''', NULL, + '(E017.9) Other activity involving external motion', '(E017.9) Other activity involving external motion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving walking and running (E001)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving walking and running (E001)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E001''', NULL, + 'Activities involving walking and running (E001)', 'Activities involving walking and running (E001)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving walking and running (E001)\(E001.0) Activities involving walking, marching and hiking\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving walking and running (E001)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving walking and running (E001)\(E001.0) Activities involving walking, marching and hiking\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E001.0''', NULL, + '(E001.0) Activities involving walking, marching and hiking', '(E001.0) Activities involving walking, marching and hiking', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving walking and running (E001)\(E001.1) Activities involving running\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving walking and running (E001)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving walking and running (E001)\(E001.1) Activities involving running\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E001.1''', NULL, + '(E001.1) Activities involving running', '(E001.1) Activities involving running', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E002''', NULL, + 'Activities involving water and water craft (E002)', 'Activities involving water and water craft (E002)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\(E002.0) Activities involving swimming\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\(E002.0) Activities involving swimming\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E002.0''', NULL, + '(E002.0) Activities involving swimming', '(E002.0) Activities involving swimming', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\(E002.5) Activities involving rowing, canoeing, kayaking, rafting and tubing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\(E002.5) Activities involving rowing, canoeing, kayaking, rafting and tubing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E002.5''', NULL, + '(E002.5) Activities involving rowing, canoeing, kayaking, rafting and tubing', '(E002.5) Activities involving rowing, canoeing, kayaking, rafting and tubing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\(E002.6) Activities involving water skiing and wake boarding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\(E002.6) Activities involving water skiing and wake boarding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E002.6''', NULL, + '(E002.6) Activities involving water skiing and wake boarding', '(E002.6) Activities involving water skiing and wake boarding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\(E002.7) Activities involving surfing, windsurfing and boogie boarding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\(E002.7) Activities involving surfing, windsurfing and boogie boarding\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E002.7''', NULL, + '(E002.7) Activities involving surfing, windsurfing and boogie boarding', '(E002.7) Activities involving surfing, windsurfing and boogie boarding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\(E002.9) Other activity involving water and watercraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activities involving water and water craft (E002)\(E002.9) Other activity involving water and watercraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E002.9''', NULL, + '(E002.9) Other activity involving water and watercraft', '(E002.9) Other activity involving water and watercraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other cardiorespiratory exercise (E009)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other cardiorespiratory exercise (E009)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E009''', NULL, + 'Activity involving other cardiorespiratory exercise (E009)', 'Activity involving other cardiorespiratory exercise (E009)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other cardiorespiratory exercise (E009)\(E009.0) Activity involving exercise machines primarily for cardiorespiratory conditioning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other cardiorespiratory exercise (E009)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other cardiorespiratory exercise (E009)\(E009.0) Activity involving exercise machines primarily for cardiorespiratory conditioning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E009.0''', NULL, + '(E009.0) Activity involving exercise machines primarily for cardiorespiratory conditioning', '(E009.0) Activity involving exercise machines primarily for cardiorespiratory conditioning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other muscle strengthening exercises (E010)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other muscle strengthening exercises (E010)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E010''', NULL, + 'Activity involving other muscle strengthening exercises (E010)', 'Activity involving other muscle strengthening exercises (E010)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other muscle strengthening exercises (E010)\(E010.2) Activity involving free weights\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other muscle strengthening exercises (E010)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other muscle strengthening exercises (E010)\(E010.2) Activity involving free weights\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E010.2''', NULL, + '(E010.2) Activity involving free weights', '(E010.2) Activity involving free weights', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other muscle strengthening exercises (E010)\(E010.9) Other activity involving other muscle strengthening exercises\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other muscle strengthening exercises (E010)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Activity involving other muscle strengthening exercises (E010)\(E010.9) Other activity involving other muscle strengthening exercises\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E010.9''', NULL, + '(E010.9) Other activity involving other muscle strengthening exercises', '(E010.9) Other activity involving other muscle strengthening exercises', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Other activity (E029)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Other activity (E029)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E029''', NULL, + 'Other activity (E029)', 'Other activity (E029)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Other activity (E029)\(E029.1) Spectator at an event\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Other activity (E029)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Other activity (E029)\(E029.1) Spectator at an event\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E029.1''', NULL, + '(E029.1) Spectator at an event', '(E029.1) Spectator at an event', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Other activity (E029)\(E029.2) Rough housing and horseplay\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Other activity (E029)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Other activity (E029)\(E029.2) Rough housing and horseplay\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E029.2''', NULL, + '(E029.2) Rough housing and horseplay', '(E029.2) Rough housing and horseplay', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Other activity (E029)\(E029.9) Other activity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Other activity (E029)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Activity (E001-E030.9)\Other activity (E029)\(E029.9) Other activity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E029.9''', NULL, + '(E029.9) Other activity', '(E029.9) Other activity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E930'' AND ''E949.9''', NULL, + 'Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)', 'Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E945''', NULL, + 'Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)', 'Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.0) Oxytocic agents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.0) Oxytocic agents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E945.0''', NULL, + '(E945.0) Oxytocic agents causing adverse effects in therapeutic use', '(E945.0) Oxytocic agents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.1) Smooth muscle relaxants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.1) Smooth muscle relaxants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E945.1''', NULL, + '(E945.1) Smooth muscle relaxants causing adverse effects in therapeutic use', '(E945.1) Smooth muscle relaxants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.2) Skeletal muscle relaxants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.2) Skeletal muscle relaxants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E945.2''', NULL, + '(E945.2) Skeletal muscle relaxants causing adverse effects in therapeutic use', '(E945.2) Skeletal muscle relaxants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.3) Other and unspecified drugs acting on muscles causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.3) Other and unspecified drugs acting on muscles causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E945.3''', NULL, + '(E945.3) Other and unspecified drugs acting on muscles causing adverse effects in therapeutic use', '(E945.3) Other and unspecified drugs acting on muscles causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.4) Antitussives causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.4) Antitussives causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E945.4''', NULL, + '(E945.4) Antitussives causing adverse effects in therapeutic use', '(E945.4) Antitussives causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.5) Expectorants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.5) Expectorants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E945.5''', NULL, + '(E945.5) Expectorants causing adverse effects in therapeutic use', '(E945.5) Expectorants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.6) Anti-common cold drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.6) Anti-common cold drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E945.6''', NULL, + '(E945.6) Anti-common cold drugs causing adverse effects in therapeutic use', '(E945.6) Anti-common cold drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.7) Antiasthmatics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.7) Antiasthmatics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E945.7''', NULL, + '(E945.7) Antiasthmatics causing adverse effects in therapeutic use', '(E945.7) Antiasthmatics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.8) Other and unspecified respiratory drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\(E945.8) Other and unspecified respiratory drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E945.8''', NULL, + '(E945.8) Other and unspecified respiratory drugs causing adverse effects in therapeutic use', '(E945.8) Other and unspecified respiratory drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E934''', NULL, + 'Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)', 'Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.0) Iron and its compounds causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.0) Iron and its compounds causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E934.0''', NULL, + '(E934.0) Iron and its compounds causing adverse effects in therapeutic use', '(E934.0) Iron and its compounds causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.1) Liver preparations and other antianemic agents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.1) Liver preparations and other antianemic agents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E934.1''', NULL, + '(E934.1) Liver preparations and other antianemic agents causing adverse effects in therapeutic use', '(E934.1) Liver preparations and other antianemic agents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.2) Anticoagulants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.2) Anticoagulants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E934.2''', NULL, + '(E934.2) Anticoagulants causing adverse effects in therapeutic use', '(E934.2) Anticoagulants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.3) Vitamin k [phytonadione] causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.3) Vitamin k [phytonadione] causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E934.3''', NULL, + '(E934.3) Vitamin k [phytonadione] causing adverse effects in therapeutic use', '(E934.3) Vitamin k [phytonadione] causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.4) Fibrinolysis-affecting drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.4) Fibrinolysis-affecting drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E934.4''', NULL, + '(E934.4) Fibrinolysis-affecting drugs causing adverse effects in therapeutic use', '(E934.4) Fibrinolysis-affecting drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.5) Anticoagulant antagonists and other coagulants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.5) Anticoagulant antagonists and other coagulants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E934.5''', NULL, + '(E934.5) Anticoagulant antagonists and other coagulants causing adverse effects in therapeutic use', '(E934.5) Anticoagulant antagonists and other coagulants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.6) Gamma globulin causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.6) Gamma globulin causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E934.6''', NULL, + '(E934.6) Gamma globulin causing adverse effects in therapeutic use', '(E934.6) Gamma globulin causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.7) Natural blood and blood products causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.7) Natural blood and blood products causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E934.7''', NULL, + '(E934.7) Natural blood and blood products causing adverse effects in therapeutic use', '(E934.7) Natural blood and blood products causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.8) Other agents affecting blood constituents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.8) Other agents affecting blood constituents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E934.8''', NULL, + '(E934.8) Other agents affecting blood constituents causing adverse effects in therapeutic use', '(E934.8) Other agents affecting blood constituents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.9) Unspecified agent affecting blood constituents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\(E934.9) Unspecified agent affecting blood constituents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E934.9''', NULL, + '(E934.9) Unspecified agent affecting blood constituents causing adverse effects in therapeutic use', '(E934.9) Unspecified agent affecting blood constituents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E943''', NULL, + 'Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)', 'Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.0) Antacids and antigastric secretion drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.0) Antacids and antigastric secretion drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E943.0''', NULL, + '(E943.0) Antacids and antigastric secretion drugs causing adverse effects in therapeutic use', '(E943.0) Antacids and antigastric secretion drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.1) Irritant cathartics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.1) Irritant cathartics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E943.1''', NULL, + '(E943.1) Irritant cathartics causing adverse effects in therapeutic use', '(E943.1) Irritant cathartics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.2) Emollient cathartics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.2) Emollient cathartics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E943.2''', NULL, + '(E943.2) Emollient cathartics causing adverse effects in therapeutic use', '(E943.2) Emollient cathartics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.3) Other cathartics, including intestinal atonia drugs, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.3) Other cathartics, including intestinal atonia drugs, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E943.3''', NULL, + '(E943.3) Other cathartics, including intestinal atonia drugs, causing adverse effects in therapeutic use', '(E943.3) Other cathartics, including intestinal atonia drugs, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.4) Digestants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.4) Digestants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E943.4''', NULL, + '(E943.4) Digestants causing adverse effects in therapeutic use', '(E943.4) Digestants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.5) Antidiarrheal drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.5) Antidiarrheal drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E943.5''', NULL, + '(E943.5) Antidiarrheal drugs causing adverse effects in therapeutic use', '(E943.5) Antidiarrheal drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.6) Emetics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.6) Emetics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E943.6''', NULL, + '(E943.6) Emetics causing adverse effects in therapeutic use', '(E943.6) Emetics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.8) Other specified agents primarily affecting the gastro-intestinal system causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.8) Other specified agents primarily affecting the gastro-intestinal system causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E943.8''', NULL, + '(E943.8) Other specified agents primarily affecting the gastro-intestinal system causing adverse effects in therapeutic use', '(E943.8) Other specified agents primarily affecting the gastro-intestinal system causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.9) Unspecified agent primarily affecting the gastrointestinal system causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\(E943.9) Unspecified agent primarily affecting the gastrointestinal system causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E943.9''', NULL, + '(E943.9) Unspecified agent primarily affecting the gastrointestinal system causing adverse effects in therapeutic use', '(E943.9) Unspecified agent primarily affecting the gastrointestinal system causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E946''', NULL, + 'Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)', 'Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.0) Local anti-infectives and anti-inflammatory drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.0) Local anti-infectives and anti-inflammatory drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E946.0''', NULL, + '(E946.0) Local anti-infectives and anti-inflammatory drugs causing adverse effects in therapeutic use', '(E946.0) Local anti-infectives and anti-inflammatory drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.1) Antipruritics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.1) Antipruritics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E946.1''', NULL, + '(E946.1) Antipruritics causing adverse effects in therapeutic use', '(E946.1) Antipruritics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.2) Local astringents and local detergents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.2) Local astringents and local detergents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E946.2''', NULL, + '(E946.2) Local astringents and local detergents causing adverse effects in therapeutic use', '(E946.2) Local astringents and local detergents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.3) Emollients, demulcents, and protectants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.3) Emollients, demulcents, and protectants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E946.3''', NULL, + '(E946.3) Emollients, demulcents, and protectants causing adverse effects in therapeutic use', '(E946.3) Emollients, demulcents, and protectants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.4) Keratolytics, keratoplastics, other hair treatment drugs and preparations causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.4) Keratolytics, keratoplastics, other hair treatment drugs and preparations causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E946.4''', NULL, + '(E946.4) Keratolytics, keratoplastics, other hair treatment drugs and preparations causing adverse effects in therapeutic use', '(E946.4) Keratolytics, keratoplastics, other hair treatment drugs and preparations causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.5) Eye anti-infectives and other eye drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.5) Eye anti-infectives and other eye drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E946.5''', NULL, + '(E946.5) Eye anti-infectives and other eye drugs causing adverse effects in therapeutic use', '(E946.5) Eye anti-infectives and other eye drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.6) Anti-infectives and other drugs and preparations for ear, nose, and throat causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.6) Anti-infectives and other drugs and preparations for ear, nose, and throat causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E946.6''', NULL, + '(E946.6) Anti-infectives and other drugs and preparations for ear, nose, and throat causing adverse effects in therapeutic use', '(E946.6) Anti-infectives and other drugs and preparations for ear, nose, and throat causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.7) Dental drugs topically applied causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.7) Dental drugs topically applied causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E946.7''', NULL, + '(E946.7) Dental drugs topically applied causing adverse effects in therapeutic use', '(E946.7) Dental drugs topically applied causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.8) Other agents primarily affecting skin and mucous membrane causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.8) Other agents primarily affecting skin and mucous membrane causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E946.8''', NULL, + '(E946.8) Other agents primarily affecting skin and mucous membrane causing adverse effects in therapeutic use', '(E946.8) Other agents primarily affecting skin and mucous membrane causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.9) Unspecified agent primarily affecting skin and mucous membrane causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\(E946.9) Unspecified agent primarily affecting skin and mucous membrane causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E946.9''', NULL, + '(E946.9) Unspecified agent primarily affecting skin and mucous membrane causing adverse effects in therapeutic use', '(E946.9) Unspecified agent primarily affecting skin and mucous membrane causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E942''', NULL, + 'Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)', 'Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.0) Cardiac rhythm regulators causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.0) Cardiac rhythm regulators causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E942.0''', NULL, + '(E942.0) Cardiac rhythm regulators causing adverse effects in therapeutic use', '(E942.0) Cardiac rhythm regulators causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.1) Cardiotonic glycosides and drugs of similar action causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.1) Cardiotonic glycosides and drugs of similar action causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E942.1''', NULL, + '(E942.1) Cardiotonic glycosides and drugs of similar action causing adverse effects in therapeutic use', '(E942.1) Cardiotonic glycosides and drugs of similar action causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.2) Antilipemic and antiarteriosclerotic drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.2) Antilipemic and antiarteriosclerotic drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E942.2''', NULL, + '(E942.2) Antilipemic and antiarteriosclerotic drugs causing adverse effects in therapeutic use', '(E942.2) Antilipemic and antiarteriosclerotic drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.3) Ganglion-blocking agents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.3) Ganglion-blocking agents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E942.3''', NULL, + '(E942.3) Ganglion-blocking agents causing adverse effects in therapeutic use', '(E942.3) Ganglion-blocking agents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.4) Coronary vasodilators causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.4) Coronary vasodilators causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E942.4''', NULL, + '(E942.4) Coronary vasodilators causing adverse effects in therapeutic use', '(E942.4) Coronary vasodilators causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.5) Other vasodilators causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.5) Other vasodilators causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E942.5''', NULL, + '(E942.5) Other vasodilators causing adverse effects in therapeutic use', '(E942.5) Other vasodilators causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.6) Other antihypertensive agents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.6) Other antihypertensive agents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E942.6''', NULL, + '(E942.6) Other antihypertensive agents causing adverse effects in therapeutic use', '(E942.6) Other antihypertensive agents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.7) Antivaricose drugs, including sclerosing agents, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.7) Antivaricose drugs, including sclerosing agents, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E942.7''', NULL, + '(E942.7) Antivaricose drugs, including sclerosing agents, causing adverse effects in therapeutic use', '(E942.7) Antivaricose drugs, including sclerosing agents, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.8) Capillary-active drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.8) Capillary-active drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E942.8''', NULL, + '(E942.8) Capillary-active drugs causing adverse effects in therapeutic use', '(E942.8) Capillary-active drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.9) Other and unspecified agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\(E942.9) Other and unspecified agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E942.9''', NULL, + '(E942.9) Other and unspecified agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use', '(E942.9) Other and unspecified agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E935''', NULL, + 'Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)', 'Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.0) Heroin causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.0) Heroin causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E935.0''', NULL, + '(E935.0) Heroin causing adverse effects in therapeutic use', '(E935.0) Heroin causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.1) Methadone causing averse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.1) Methadone causing averse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E935.1''', NULL, + '(E935.1) Methadone causing averse effects in therapeutic use', '(E935.1) Methadone causing averse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.2) Other opiates and related narcotics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.2) Other opiates and related narcotics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E935.2''', NULL, + '(E935.2) Other opiates and related narcotics causing adverse effects in therapeutic use', '(E935.2) Other opiates and related narcotics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.3) Salicylates causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.3) Salicylates causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E935.3''', NULL, + '(E935.3) Salicylates causing adverse effects in therapeutic use', '(E935.3) Salicylates causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.4) Aromatic analgesics, not elsewhere classified, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.4) Aromatic analgesics, not elsewhere classified, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E935.4''', NULL, + '(E935.4) Aromatic analgesics, not elsewhere classified, causing adverse effects in therapeutic use', '(E935.4) Aromatic analgesics, not elsewhere classified, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.5) Pyrazole derivatives causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.5) Pyrazole derivatives causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E935.5''', NULL, + '(E935.5) Pyrazole derivatives causing adverse effects in therapeutic use', '(E935.5) Pyrazole derivatives causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.6) Antirheumatics [antiphlogistics] causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.6) Antirheumatics [antiphlogistics] causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E935.6''', NULL, + '(E935.6) Antirheumatics [antiphlogistics] causing adverse effects in therapeutic use', '(E935.6) Antirheumatics [antiphlogistics] causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.7) Other non-narcotic analgesics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.7) Other non-narcotic analgesics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E935.7''', NULL, + '(E935.7) Other non-narcotic analgesics causing adverse effects in therapeutic use', '(E935.7) Other non-narcotic analgesics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.8) Other specified analgesics and antipyretics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.8) Other specified analgesics and antipyretics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E935.8''', NULL, + '(E935.8) Other specified analgesics and antipyretics causing adverse effects in therapeutic use', '(E935.8) Other specified analgesics and antipyretics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.9) Unspecified analgesic and antipyretic causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\(E935.9) Unspecified analgesic and antipyretic causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E935.9''', NULL, + '(E935.9) Unspecified analgesic and antipyretic causing adverse effects in therapeutic use', '(E935.9) Unspecified analgesic and antipyretic causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E930''', NULL, + 'Antibiotics causing adverse effects in therapeutic use (E930)', 'Antibiotics causing adverse effects in therapeutic use (E930)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.0) Penicillins causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.0) Penicillins causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E930.0''', NULL, + '(E930.0) Penicillins causing adverse effects in therapeutic use', '(E930.0) Penicillins causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.1) Antifungal antibiotics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.1) Antifungal antibiotics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E930.1''', NULL, + '(E930.1) Antifungal antibiotics causing adverse effects in therapeutic use', '(E930.1) Antifungal antibiotics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.2) Chloramphenicol group causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.2) Chloramphenicol group causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E930.2''', NULL, + '(E930.2) Chloramphenicol group causing adverse effects in therapeutic use', '(E930.2) Chloramphenicol group causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.3) Erythromycin and other macrolides causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.3) Erythromycin and other macrolides causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E930.3''', NULL, + '(E930.3) Erythromycin and other macrolides causing adverse effects in therapeutic use', '(E930.3) Erythromycin and other macrolides causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.4) Tetracycline group causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.4) Tetracycline group causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E930.4''', NULL, + '(E930.4) Tetracycline group causing adverse effects in therapeutic use', '(E930.4) Tetracycline group causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.5) Cephalosporin group causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.5) Cephalosporin group causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E930.5''', NULL, + '(E930.5) Cephalosporin group causing adverse effects in therapeutic use', '(E930.5) Cephalosporin group causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.6) Antimycobacterial antibiotics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.6) Antimycobacterial antibiotics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E930.6''', NULL, + '(E930.6) Antimycobacterial antibiotics causing adverse effects in therapeutic use', '(E930.6) Antimycobacterial antibiotics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.7) Antineoplastic antibiotics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.7) Antineoplastic antibiotics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E930.7''', NULL, + '(E930.7) Antineoplastic antibiotics causing adverse effects in therapeutic use', '(E930.7) Antineoplastic antibiotics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.8) Other specified antibiotics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.8) Other specified antibiotics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E930.8''', NULL, + '(E930.8) Other specified antibiotics causing adverse effects in therapeutic use', '(E930.8) Other specified antibiotics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.9) Unspecified antibiotic causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Antibiotics causing adverse effects in therapeutic use (E930)\(E930.9) Unspecified antibiotic causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E930.9''', NULL, + '(E930.9) Unspecified antibiotic causing adverse effects in therapeutic use', '(E930.9) Unspecified antibiotic causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E936''', NULL, + 'Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)', 'Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\(E936.0) Oxazolidine derivatives causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\(E936.0) Oxazolidine derivatives causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E936.0''', NULL, + '(E936.0) Oxazolidine derivatives causing adverse effects in therapeutic use', '(E936.0) Oxazolidine derivatives causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\(E936.1) Hydantoin derivatives causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\(E936.1) Hydantoin derivatives causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E936.1''', NULL, + '(E936.1) Hydantoin derivatives causing adverse effects in therapeutic use', '(E936.1) Hydantoin derivatives causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\(E936.2) Succinimides causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\(E936.2) Succinimides causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E936.2''', NULL, + '(E936.2) Succinimides causing adverse effects in therapeutic use', '(E936.2) Succinimides causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\(E936.3) Other and unspecified anticonvulsants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\(E936.3) Other and unspecified anticonvulsants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E936.3''', NULL, + '(E936.3) Other and unspecified anticonvulsants causing adverse effects in therapeutic use', '(E936.3) Other and unspecified anticonvulsants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\(E936.4) Anti-parkinsonism drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\(E936.4) Anti-parkinsonism drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E936.4''', NULL, + '(E936.4) Anti-parkinsonism drugs causing adverse effects in therapeutic use', '(E936.4) Anti-parkinsonism drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E948''', NULL, + 'Bacterial vaccines causing adverse effects in therapeutic use (E948)', 'Bacterial vaccines causing adverse effects in therapeutic use (E948)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.0) Bcg vaccine causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.0) Bcg vaccine causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E948.0''', NULL, + '(E948.0) Bcg vaccine causing adverse effects in therapeutic use', '(E948.0) Bcg vaccine causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.1) Typhoid and paratyphoid vaccines causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.1) Typhoid and paratyphoid vaccines causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E948.1''', NULL, + '(E948.1) Typhoid and paratyphoid vaccines causing adverse effects in therapeutic use', '(E948.1) Typhoid and paratyphoid vaccines causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.2) Cholera vaccine causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.2) Cholera vaccine causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E948.2''', NULL, + '(E948.2) Cholera vaccine causing adverse effects in therapeutic use', '(E948.2) Cholera vaccine causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.3) Plague vaccine causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.3) Plague vaccine causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E948.3''', NULL, + '(E948.3) Plague vaccine causing adverse effects in therapeutic use', '(E948.3) Plague vaccine causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.4) Tetanus vaccine causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.4) Tetanus vaccine causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E948.4''', NULL, + '(E948.4) Tetanus vaccine causing adverse effects in therapeutic use', '(E948.4) Tetanus vaccine causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.5) Diphtheria vaccine causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.5) Diphtheria vaccine causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E948.5''', NULL, + '(E948.5) Diphtheria vaccine causing adverse effects in therapeutic use', '(E948.5) Diphtheria vaccine causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.6) Pertussis vaccine, including combinations with a pertussis component, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.6) Pertussis vaccine, including combinations with a pertussis component, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E948.6''', NULL, + '(E948.6) Pertussis vaccine, including combinations with a pertussis component, causing adverse effects in therapeutic use', '(E948.6) Pertussis vaccine, including combinations with a pertussis component, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.8) Other and unspecified bacterial vaccines causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.8) Other and unspecified bacterial vaccines causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E948.8''', NULL, + '(E948.8) Other and unspecified bacterial vaccines causing adverse effects in therapeutic use', '(E948.8) Other and unspecified bacterial vaccines causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.9) Mixed bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Bacterial vaccines causing adverse effects in therapeutic use (E948)\(E948.9) Mixed bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E948.9''', NULL, + '(E948.9) Mixed bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use', '(E948.9) Mixed bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E940''', NULL, + 'Central nervous system stimulants causing adverse effects in therapeutic use (E940)', 'Central nervous system stimulants causing adverse effects in therapeutic use (E940)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\(E940.0) Analeptics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\(E940.0) Analeptics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E940.0''', NULL, + '(E940.0) Analeptics causing adverse effects in therapeutic use', '(E940.0) Analeptics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\(E940.1) Opiate antagonists causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\(E940.1) Opiate antagonists causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E940.1''', NULL, + '(E940.1) Opiate antagonists causing adverse effects in therapeutic use', '(E940.1) Opiate antagonists causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\(E940.8) Other specified central nervous system stimulants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\(E940.8) Other specified central nervous system stimulants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E940.8''', NULL, + '(E940.8) Other specified central nervous system stimulants causing adverse effects in therapeutic use', '(E940.8) Other specified central nervous system stimulants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\(E940.9) Unspecified central nervous system stimulant causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\(E940.9) Unspecified central nervous system stimulant causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E940.9''', NULL, + '(E940.9) Unspecified central nervous system stimulant causing adverse effects in therapeutic use', '(E940.9) Unspecified central nervous system stimulant causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E941''', NULL, + 'Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)', 'Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\(E941.0) Parasympathomimetics [cholinergics] causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\(E941.0) Parasympathomimetics [cholinergics] causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E941.0''', NULL, + '(E941.0) Parasympathomimetics [cholinergics] causing adverse effects in therapeutic use', '(E941.0) Parasympathomimetics [cholinergics] causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\(E941.1) Parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\(E941.1) Parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E941.1''', NULL, + '(E941.1) Parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics causing adverse effects in therapeutic use', '(E941.1) Parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\(E941.2) Sympathomimetics [adrenergics] causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\(E941.2) Sympathomimetics [adrenergics] causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E941.2''', NULL, + '(E941.2) Sympathomimetics [adrenergics] causing adverse effects in therapeutic use', '(E941.2) Sympathomimetics [adrenergics] causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\(E941.3) Sympatholytics [antiadrenergics] causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\(E941.3) Sympatholytics [antiadrenergics] causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E941.3''', NULL, + '(E941.3) Sympatholytics [antiadrenergics] causing adverse effects in therapeutic use', '(E941.3) Sympatholytics [antiadrenergics] causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\(E941.9) Unspecified drug primarily affecting the autonomic nervous system causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\(E941.9) Unspecified drug primarily affecting the autonomic nervous system causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E941.9''', NULL, + '(E941.9) Unspecified drug primarily affecting the autonomic nervous system causing adverse effects in therapeutic use', '(E941.9) Unspecified drug primarily affecting the autonomic nervous system causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E932''', NULL, + 'Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)', 'Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.0) Adrenal cortical steroids causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.0) Adrenal cortical steroids causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E932.0''', NULL, + '(E932.0) Adrenal cortical steroids causing adverse effects in therapeutic use', '(E932.0) Adrenal cortical steroids causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.1) Androgens and anabolic congeners causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.1) Androgens and anabolic congeners causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E932.1''', NULL, + '(E932.1) Androgens and anabolic congeners causing adverse effects in therapeutic use', '(E932.1) Androgens and anabolic congeners causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.2) Ovarian hormones and synthetic substitutes causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.2) Ovarian hormones and synthetic substitutes causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E932.2''', NULL, + '(E932.2) Ovarian hormones and synthetic substitutes causing adverse effects in therapeutic use', '(E932.2) Ovarian hormones and synthetic substitutes causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.3) Insulins and antidiabetic agents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.3) Insulins and antidiabetic agents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E932.3''', NULL, + '(E932.3) Insulins and antidiabetic agents causing adverse effects in therapeutic use', '(E932.3) Insulins and antidiabetic agents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.4) Anterior pituitary hormones causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.4) Anterior pituitary hormones causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E932.4''', NULL, + '(E932.4) Anterior pituitary hormones causing adverse effects in therapeutic use', '(E932.4) Anterior pituitary hormones causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.5) Posterior pituitary hormones causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.5) Posterior pituitary hormones causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E932.5''', NULL, + '(E932.5) Posterior pituitary hormones causing adverse effects in therapeutic use', '(E932.5) Posterior pituitary hormones causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.6) Parathyroid and parathyroid derivatives causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.6) Parathyroid and parathyroid derivatives causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E932.6''', NULL, + '(E932.6) Parathyroid and parathyroid derivatives causing adverse effects in therapeutic use', '(E932.6) Parathyroid and parathyroid derivatives causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.7) Thyroid and thyroid derivatives causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.7) Thyroid and thyroid derivatives causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E932.7''', NULL, + '(E932.7) Thyroid and thyroid derivatives causing adverse effects in therapeutic use', '(E932.7) Thyroid and thyroid derivatives causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.8) Antithyroid agents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.8) Antithyroid agents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E932.8''', NULL, + '(E932.8) Antithyroid agents causing adverse effects in therapeutic use', '(E932.8) Antithyroid agents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.9) Other and unspecified hormones and synthetic substitutes causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\(E932.9) Other and unspecified hormones and synthetic substitutes causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E932.9''', NULL, + '(E932.9) Other and unspecified hormones and synthetic substitutes causing adverse effects in therapeutic use', '(E932.9) Other and unspecified hormones and synthetic substitutes causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E947''', NULL, + 'Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)', 'Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.0) Dietetics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.0) Dietetics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E947.0''', NULL, + '(E947.0) Dietetics causing adverse effects in therapeutic use', '(E947.0) Dietetics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.1) Lipotropic drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.1) Lipotropic drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E947.1''', NULL, + '(E947.1) Lipotropic drugs causing adverse effects in therapeutic use', '(E947.1) Lipotropic drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.2) Antidotes and chelating agents, not elsewhere classified, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.2) Antidotes and chelating agents, not elsewhere classified, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E947.2''', NULL, + '(E947.2) Antidotes and chelating agents, not elsewhere classified, causing adverse effects in therapeutic use', '(E947.2) Antidotes and chelating agents, not elsewhere classified, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.3) Alcohol deterrents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.3) Alcohol deterrents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E947.3''', NULL, + '(E947.3) Alcohol deterrents causing adverse effects in therapeutic use', '(E947.3) Alcohol deterrents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.4) Pharmaceutical excipients causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.4) Pharmaceutical excipients causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E947.4''', NULL, + '(E947.4) Pharmaceutical excipients causing adverse effects in therapeutic use', '(E947.4) Pharmaceutical excipients causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.8) Other drugs and medicinal substances causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.8) Other drugs and medicinal substances causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E947.8''', NULL, + '(E947.8) Other drugs and medicinal substances causing adverse effects in therapeutic use', '(E947.8) Other drugs and medicinal substances causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.9) Unspecified drug or medicinal substance causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\(E947.9) Unspecified drug or medicinal substance causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E947.9''', NULL, + '(E947.9) Unspecified drug or medicinal substance causing adverse effects in therapeutic use', '(E947.9) Unspecified drug or medicinal substance causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E931''', NULL, + 'Other anti-infectives causing adverse effects in therapeutic use (E931)', 'Other anti-infectives causing adverse effects in therapeutic use (E931)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.0) Sulfonamides causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.0) Sulfonamides causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E931.0''', NULL, + '(E931.0) Sulfonamides causing adverse effects in therapeutic use', '(E931.0) Sulfonamides causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.1) Arsenical anti-infectives causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.1) Arsenical anti-infectives causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E931.1''', NULL, + '(E931.1) Arsenical anti-infectives causing adverse effects in therapeutic use', '(E931.1) Arsenical anti-infectives causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.2) Heavy metal anti-infectives causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.2) Heavy metal anti-infectives causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E931.2''', NULL, + '(E931.2) Heavy metal anti-infectives causing adverse effects in therapeutic use', '(E931.2) Heavy metal anti-infectives causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.3) Quinoline and hydroxyquinoline derivatives causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.3) Quinoline and hydroxyquinoline derivatives causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E931.3''', NULL, + '(E931.3) Quinoline and hydroxyquinoline derivatives causing adverse effects in therapeutic use', '(E931.3) Quinoline and hydroxyquinoline derivatives causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.4) Antimalarials and drugs acting on other blood protozoa causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.4) Antimalarials and drugs acting on other blood protozoa causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E931.4''', NULL, + '(E931.4) Antimalarials and drugs acting on other blood protozoa causing adverse effects in therapeutic use', '(E931.4) Antimalarials and drugs acting on other blood protozoa causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.5) Other antiprotozoal drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.5) Other antiprotozoal drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E931.5''', NULL, + '(E931.5) Other antiprotozoal drugs causing adverse effects in therapeutic use', '(E931.5) Other antiprotozoal drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.6) Anthelmintics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.6) Anthelmintics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E931.6''', NULL, + '(E931.6) Anthelmintics causing adverse effects in therapeutic use', '(E931.6) Anthelmintics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.7) Antiviral drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.7) Antiviral drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E931.7''', NULL, + '(E931.7) Antiviral drugs causing adverse effects in therapeutic use', '(E931.7) Antiviral drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.8) Other antimycobacterial drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.8) Other antimycobacterial drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E931.8''', NULL, + '(E931.8) Other antimycobacterial drugs causing adverse effects in therapeutic use', '(E931.8) Other antimycobacterial drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.9) Other and unspecified anti-infectives causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other anti-infectives causing adverse effects in therapeutic use (E931)\(E931.9) Other and unspecified anti-infectives causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E931.9''', NULL, + '(E931.9) Other and unspecified anti-infectives causing adverse effects in therapeutic use', '(E931.9) Other and unspecified anti-infectives causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E938''', NULL, + 'Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)', 'Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.0) Central nervous system muscle-tone depressants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.0) Central nervous system muscle-tone depressants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E938.0''', NULL, + '(E938.0) Central nervous system muscle-tone depressants causing adverse effects in therapeutic use', '(E938.0) Central nervous system muscle-tone depressants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.1) Halothane causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.1) Halothane causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E938.1''', NULL, + '(E938.1) Halothane causing adverse effects in therapeutic use', '(E938.1) Halothane causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.2) Other gaseous anesthetics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.2) Other gaseous anesthetics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E938.2''', NULL, + '(E938.2) Other gaseous anesthetics causing adverse effects in therapeutic use', '(E938.2) Other gaseous anesthetics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.3) Intravenous anesthetics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.3) Intravenous anesthetics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E938.3''', NULL, + '(E938.3) Intravenous anesthetics causing adverse effects in therapeutic use', '(E938.3) Intravenous anesthetics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.4) Other and unspecified general anesthetics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.4) Other and unspecified general anesthetics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E938.4''', NULL, + '(E938.4) Other and unspecified general anesthetics causing adverse effects in therapeutic use', '(E938.4) Other and unspecified general anesthetics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.5) Surface and infiltration anesthetics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.5) Surface and infiltration anesthetics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E938.5''', NULL, + '(E938.5) Surface and infiltration anesthetics causing adverse effects in therapeutic use', '(E938.5) Surface and infiltration anesthetics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.6) Peripheral nerve- and plexus-blocking anesthetics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.6) Peripheral nerve- and plexus-blocking anesthetics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E938.6''', NULL, + '(E938.6) Peripheral nerve- and plexus-blocking anesthetics causing adverse effects in therapeutic use', '(E938.6) Peripheral nerve- and plexus-blocking anesthetics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.7) Spinal anesthetics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.7) Spinal anesthetics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E938.7''', NULL, + '(E938.7) Spinal anesthetics causing adverse effects in therapeutic use', '(E938.7) Spinal anesthetics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.9) Other and unspecified local anesthetics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\(E938.9) Other and unspecified local anesthetics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E938.9''', NULL, + '(E938.9) Other and unspecified local anesthetics causing adverse effects in therapeutic use', '(E938.9) Other and unspecified local anesthetics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E949''', NULL, + 'Other vaccines and biological substances causing adverse effects in therapeutic use (E949)', 'Other vaccines and biological substances causing adverse effects in therapeutic use (E949)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.0) Smallpox vaccine causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.0) Smallpox vaccine causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E949.0''', NULL, + '(E949.0) Smallpox vaccine causing adverse effects in therapeutic use', '(E949.0) Smallpox vaccine causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.1) Rabies vaccine causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.1) Rabies vaccine causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E949.1''', NULL, + '(E949.1) Rabies vaccine causing adverse effects in therapeutic use', '(E949.1) Rabies vaccine causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.2) Typhus vaccine causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.2) Typhus vaccine causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E949.2''', NULL, + '(E949.2) Typhus vaccine causing adverse effects in therapeutic use', '(E949.2) Typhus vaccine causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.3) Yellow fever vaccine causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.3) Yellow fever vaccine causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E949.3''', NULL, + '(E949.3) Yellow fever vaccine causing adverse effects in therapeutic use', '(E949.3) Yellow fever vaccine causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.4) Measles vaccine causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.4) Measles vaccine causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E949.4''', NULL, + '(E949.4) Measles vaccine causing adverse effects in therapeutic use', '(E949.4) Measles vaccine causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.5) Poliomyelitis vaccine causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.5) Poliomyelitis vaccine causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E949.5''', NULL, + '(E949.5) Poliomyelitis vaccine causing adverse effects in therapeutic use', '(E949.5) Poliomyelitis vaccine causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.6) Other and unspecified viral and rickettsial vaccines causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.6) Other and unspecified viral and rickettsial vaccines causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E949.6''', NULL, + '(E949.6) Other and unspecified viral and rickettsial vaccines causing adverse effects in therapeutic use', '(E949.6) Other and unspecified viral and rickettsial vaccines causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.7) Mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.7) Mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E949.7''', NULL, + '(E949.7) Mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use', '(E949.7) Mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.9) Other and unspecified vaccines and biological substances causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\(E949.9) Other and unspecified vaccines and biological substances causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E949.9''', NULL, + '(E949.9) Other and unspecified vaccines and biological substances causing adverse effects in therapeutic use', '(E949.9) Other and unspecified vaccines and biological substances causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E933''', NULL, + 'Primarily systemic agents causing adverse effects in therapeutic use (E933)', 'Primarily systemic agents causing adverse effects in therapeutic use (E933)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.0) Antiallergic and antiemetic drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.0) Antiallergic and antiemetic drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E933.0''', NULL, + '(E933.0) Antiallergic and antiemetic drugs causing adverse effects in therapeutic use', '(E933.0) Antiallergic and antiemetic drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.1) Antineoplastic and immunosuppressive drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.1) Antineoplastic and immunosuppressive drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E933.1''', NULL, + '(E933.1) Antineoplastic and immunosuppressive drugs causing adverse effects in therapeutic use', '(E933.1) Antineoplastic and immunosuppressive drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.2) Acidifying agents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.2) Acidifying agents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E933.2''', NULL, + '(E933.2) Acidifying agents causing adverse effects in therapeutic use', '(E933.2) Acidifying agents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.3) Alkalizing agents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.3) Alkalizing agents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E933.3''', NULL, + '(E933.3) Alkalizing agents causing adverse effects in therapeutic use', '(E933.3) Alkalizing agents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.4) Enzymes, not elsewhere classified, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.4) Enzymes, not elsewhere classified, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E933.4''', NULL, + '(E933.4) Enzymes, not elsewhere classified, causing adverse effects in therapeutic use', '(E933.4) Enzymes, not elsewhere classified, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.5) Vitamins, not elsewhere classified, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.5) Vitamins, not elsewhere classified, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E933.5''', NULL, + '(E933.5) Vitamins, not elsewhere classified, causing adverse effects in therapeutic use', '(E933.5) Vitamins, not elsewhere classified, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.6) Oral bisphosphonates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.6) Oral bisphosphonates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E933.6''', NULL, + '(E933.6) Oral bisphosphonates', '(E933.6) Oral bisphosphonates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.7) Intravenous bisphosphonates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.7) Intravenous bisphosphonates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E933.7''', NULL, + '(E933.7) Intravenous bisphosphonates', '(E933.7) Intravenous bisphosphonates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.8) Other systemic agents, not elsewhere classified, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.8) Other systemic agents, not elsewhere classified, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E933.8''', NULL, + '(E933.8) Other systemic agents, not elsewhere classified, causing adverse effects in therapeutic use', '(E933.8) Other systemic agents, not elsewhere classified, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.9) Unspecified systemic agent causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Primarily systemic agents causing adverse effects in therapeutic use (E933)\(E933.9) Unspecified systemic agent causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E933.9''', NULL, + '(E933.9) Unspecified systemic agent causing adverse effects in therapeutic use', '(E933.9) Unspecified systemic agent causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E939''', NULL, + 'Psychotropic agents causing adverse effects in therapeutic use (E939)', 'Psychotropic agents causing adverse effects in therapeutic use (E939)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.0) Antidepressants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.0) Antidepressants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E939.0''', NULL, + '(E939.0) Antidepressants causing adverse effects in therapeutic use', '(E939.0) Antidepressants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.1) Phenothiazine-based tranquilizers causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.1) Phenothiazine-based tranquilizers causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E939.1''', NULL, + '(E939.1) Phenothiazine-based tranquilizers causing adverse effects in therapeutic use', '(E939.1) Phenothiazine-based tranquilizers causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.2) Butyrophenone-based tranquilizers causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.2) Butyrophenone-based tranquilizers causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E939.2''', NULL, + '(E939.2) Butyrophenone-based tranquilizers causing adverse effects in therapeutic use', '(E939.2) Butyrophenone-based tranquilizers causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.3) Other antipsychotics, neuroleptics, and major tranquilizers causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.3) Other antipsychotics, neuroleptics, and major tranquilizers causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E939.3''', NULL, + '(E939.3) Other antipsychotics, neuroleptics, and major tranquilizers causing adverse effects in therapeutic use', '(E939.3) Other antipsychotics, neuroleptics, and major tranquilizers causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.4) Benzodiazepine-based tranquilizers causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.4) Benzodiazepine-based tranquilizers causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E939.4''', NULL, + '(E939.4) Benzodiazepine-based tranquilizers causing adverse effects in therapeutic use', '(E939.4) Benzodiazepine-based tranquilizers causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.5) Other tranquilizers causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.5) Other tranquilizers causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E939.5''', NULL, + '(E939.5) Other tranquilizers causing adverse effects in therapeutic use', '(E939.5) Other tranquilizers causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.6) Psychodysleptics [hallucinogens] causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.6) Psychodysleptics [hallucinogens] causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E939.6''', NULL, + '(E939.6) Psychodysleptics [hallucinogens] causing adverse effects in therapeutic use', '(E939.6) Psychodysleptics [hallucinogens] causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.7) Psychostimulants causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.7) Psychostimulants causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E939.7''', NULL, + '(E939.7) Psychostimulants causing adverse effects in therapeutic use', '(E939.7) Psychostimulants causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.8) Other psychotropic agents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.8) Other psychotropic agents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E939.8''', NULL, + '(E939.8) Other psychotropic agents causing adverse effects in therapeutic use', '(E939.8) Other psychotropic agents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.9) Unspecified psychotropic agent causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Psychotropic agents causing adverse effects in therapeutic use (E939)\(E939.9) Unspecified psychotropic agent causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E939.9''', NULL, + '(E939.9) Unspecified psychotropic agent causing adverse effects in therapeutic use', '(E939.9) Unspecified psychotropic agent causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E937''', NULL, + 'Sedatives and hypnotics causing adverse effects in therapeutic use (E937)', 'Sedatives and hypnotics causing adverse effects in therapeutic use (E937)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.0) Barbiturates causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.0) Barbiturates causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E937.0''', NULL, + '(E937.0) Barbiturates causing adverse effects in therapeutic use', '(E937.0) Barbiturates causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.1) Chloral hydrate group causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.1) Chloral hydrate group causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E937.1''', NULL, + '(E937.1) Chloral hydrate group causing adverse effects in therapeutic use', '(E937.1) Chloral hydrate group causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.2) Paraldehyde causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.2) Paraldehyde causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E937.2''', NULL, + '(E937.2) Paraldehyde causing adverse effects in therapeutic use', '(E937.2) Paraldehyde causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.3) Bromine compounds causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.3) Bromine compounds causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E937.3''', NULL, + '(E937.3) Bromine compounds causing adverse effects in therapeutic use', '(E937.3) Bromine compounds causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.4) Methaqualone compounds causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.4) Methaqualone compounds causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E937.4''', NULL, + '(E937.4) Methaqualone compounds causing adverse effects in therapeutic use', '(E937.4) Methaqualone compounds causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.5) Glutethimide group causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.5) Glutethimide group causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E937.5''', NULL, + '(E937.5) Glutethimide group causing adverse effects in therapeutic use', '(E937.5) Glutethimide group causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.6) Mixed sedatives, not elsewhere classified, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.6) Mixed sedatives, not elsewhere classified, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E937.6''', NULL, + '(E937.6) Mixed sedatives, not elsewhere classified, causing adverse effects in therapeutic use', '(E937.6) Mixed sedatives, not elsewhere classified, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.8) Other sedatives and hypnotics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.8) Other sedatives and hypnotics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E937.8''', NULL, + '(E937.8) Other sedatives and hypnotics causing adverse effects in therapeutic use', '(E937.8) Other sedatives and hypnotics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.9) Unspecified sedatives and hypnotics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\(E937.9) Unspecified sedatives and hypnotics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E937.9''', NULL, + '(E937.9) Unspecified sedatives and hypnotics causing adverse effects in therapeutic use', '(E937.9) Unspecified sedatives and hypnotics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E944''', NULL, + 'Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)', 'Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.0) Mercurial diuretics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.0) Mercurial diuretics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E944.0''', NULL, + '(E944.0) Mercurial diuretics causing adverse effects in therapeutic use', '(E944.0) Mercurial diuretics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.1) Purine derivative diuretics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.1) Purine derivative diuretics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E944.1''', NULL, + '(E944.1) Purine derivative diuretics causing adverse effects in therapeutic use', '(E944.1) Purine derivative diuretics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.2) Carbonic acid anhydrase inhibitors causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.2) Carbonic acid anhydrase inhibitors causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E944.2''', NULL, + '(E944.2) Carbonic acid anhydrase inhibitors causing adverse effects in therapeutic use', '(E944.2) Carbonic acid anhydrase inhibitors causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.3) Saluretics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.3) Saluretics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E944.3''', NULL, + '(E944.3) Saluretics causing adverse effects in therapeutic use', '(E944.3) Saluretics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.4) Other diuretics causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.4) Other diuretics causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E944.4''', NULL, + '(E944.4) Other diuretics causing adverse effects in therapeutic use', '(E944.4) Other diuretics causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.5) Electrolytic, caloric, and water-balance agents causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.5) Electrolytic, caloric, and water-balance agents causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E944.5''', NULL, + '(E944.5) Electrolytic, caloric, and water-balance agents causing adverse effects in therapeutic use', '(E944.5) Electrolytic, caloric, and water-balance agents causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.6) Other mineral salts, not elsewhere classified, causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.6) Other mineral salts, not elsewhere classified, causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E944.6''', NULL, + '(E944.6) Other mineral salts, not elsewhere classified, causing adverse effects in therapeutic use', '(E944.6) Other mineral salts, not elsewhere classified, causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.7) Uric acid metabolism drugs causing adverse effects in therapeutic use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\(E944.7) Uric acid metabolism drugs causing adverse effects in therapeutic use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E944.7''', NULL, + '(E944.7) Uric acid metabolism drugs causing adverse effects in therapeutic use', '(E944.7) Uric acid metabolism drugs causing adverse effects in therapeutic use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E000'' AND ''E000.9''', NULL, + 'External cause status (E000-E000.9)', 'External cause status (E000-E000.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E000''', NULL, + 'External cause status (E000)', 'External cause status (E000)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\(E000.0) Civilian activity done for income or pay\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\(E000.0) Civilian activity done for income or pay\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E000.0''', NULL, + '(E000.0) Civilian activity done for income or pay', '(E000.0) Civilian activity done for income or pay', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\(E000.2) Volunteer activity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\(E000.2) Volunteer activity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E000.2''', NULL, + '(E000.2) Volunteer activity', '(E000.2) Volunteer activity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\(E000.8) Other external cause status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\(E000.8) Other external cause status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E000.8''', NULL, + '(E000.8) Other external cause status', '(E000.8) Other external cause status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\(E000.9) Unspecified external cause status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\External cause status (E000-E000.9)\External cause status (E000)\(E000.9) Unspecified external cause status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E000.9''', NULL, + '(E000.9) Unspecified external cause status', '(E000.9) Unspecified external cause status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E960'' AND ''E969.9''', NULL, + 'Homicide and injury purposely inflicted by other persons (E960-E969.9)', 'Homicide and injury purposely inflicted by other persons (E960-E969.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\(E961) Assault by corrosive or caustic substance, except poisoning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\(E961) Assault by corrosive or caustic substance, except poisoning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E961''', NULL, + '(E961) Assault by corrosive or caustic substance, except poisoning', '(E961) Assault by corrosive or caustic substance, except poisoning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\(E963) Assault by hanging and strangulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\(E963) Assault by hanging and strangulation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E963''', NULL, + '(E963) Assault by hanging and strangulation', '(E963) Assault by hanging and strangulation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\(E964) Assault by submersion [drowning]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\(E964) Assault by submersion [drowning]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E964''', NULL, + '(E964) Assault by submersion [drowning]', '(E964) Assault by submersion [drowning]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\(E966) Assault by cutting and piercing instrument\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\(E966) Assault by cutting and piercing instrument\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E966''', NULL, + '(E966) Assault by cutting and piercing instrument', '(E966) Assault by cutting and piercing instrument', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\(E969) Late effects of injury purposely inflicted by other person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\(E969) Late effects of injury purposely inflicted by other person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E969''', NULL, + '(E969) Late effects of injury purposely inflicted by other person', '(E969) Late effects of injury purposely inflicted by other person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E965''', NULL, + 'Assault by firearms and explosives (E965)', 'Assault by firearms and explosives (E965)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.0) Assault by handgun\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.0) Assault by handgun\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E965.0''', NULL, + '(E965.0) Assault by handgun', '(E965.0) Assault by handgun', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.1) Assault by shotgun\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.1) Assault by shotgun\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E965.1''', NULL, + '(E965.1) Assault by shotgun', '(E965.1) Assault by shotgun', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.2) Assault by hunting rifle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.2) Assault by hunting rifle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E965.2''', NULL, + '(E965.2) Assault by hunting rifle', '(E965.2) Assault by hunting rifle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.3) Assault by military firearms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.3) Assault by military firearms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E965.3''', NULL, + '(E965.3) Assault by military firearms', '(E965.3) Assault by military firearms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.4) Assault by other and unspecified firearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.4) Assault by other and unspecified firearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E965.4''', NULL, + '(E965.4) Assault by other and unspecified firearm', '(E965.4) Assault by other and unspecified firearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.5) Assault by antipersonnel bomb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.5) Assault by antipersonnel bomb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E965.5''', NULL, + '(E965.5) Assault by antipersonnel bomb', '(E965.5) Assault by antipersonnel bomb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.6) Assault by gasoline bomb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.6) Assault by gasoline bomb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E965.6''', NULL, + '(E965.6) Assault by gasoline bomb', '(E965.6) Assault by gasoline bomb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.7) Assault by letter bomb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.7) Assault by letter bomb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E965.7''', NULL, + '(E965.7) Assault by letter bomb', '(E965.7) Assault by letter bomb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.8) Assault by other specified explosive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.8) Assault by other specified explosive\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E965.8''', NULL, + '(E965.8) Assault by other specified explosive', '(E965.8) Assault by other specified explosive', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.9) Assault by unspecified explosive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by firearms and explosives (E965)\(E965.9) Assault by unspecified explosive\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E965.9''', NULL, + '(E965.9) Assault by unspecified explosive', '(E965.9) Assault by unspecified explosive', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E968''', NULL, + 'Assault by other and unspecified means (E968)', 'Assault by other and unspecified means (E968)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.0) Assault by fire\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.0) Assault by fire\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E968.0''', NULL, + '(E968.0) Assault by fire', '(E968.0) Assault by fire', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.1) Assault by pushing from a high place\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.1) Assault by pushing from a high place\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E968.1''', NULL, + '(E968.1) Assault by pushing from a high place', '(E968.1) Assault by pushing from a high place', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.2) Assault by striking by blunt or thrown object\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.2) Assault by striking by blunt or thrown object\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E968.2''', NULL, + '(E968.2) Assault by striking by blunt or thrown object', '(E968.2) Assault by striking by blunt or thrown object', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.3) Assault by hot liquid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.3) Assault by hot liquid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E968.3''', NULL, + '(E968.3) Assault by hot liquid', '(E968.3) Assault by hot liquid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.4) Assault by criminal neglect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.4) Assault by criminal neglect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E968.4''', NULL, + '(E968.4) Assault by criminal neglect', '(E968.4) Assault by criminal neglect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.5) Assault by transport vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.5) Assault by transport vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E968.5''', NULL, + '(E968.5) Assault by transport vehicle', '(E968.5) Assault by transport vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.6) Assault by air gun\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.6) Assault by air gun\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E968.6''', NULL, + '(E968.6) Assault by air gun', '(E968.6) Assault by air gun', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.7) Assault by human bite\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.7) Assault by human bite\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E968.7''', NULL, + '(E968.7) Assault by human bite', '(E968.7) Assault by human bite', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.8) Assault by other specified means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.8) Assault by other specified means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E968.8''', NULL, + '(E968.8) Assault by other specified means', '(E968.8) Assault by other specified means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.9) Assault by unspecified means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by other and unspecified means (E968)\(E968.9) Assault by unspecified means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E968.9''', NULL, + '(E968.9) Assault by unspecified means', '(E968.9) Assault by unspecified means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E962''', NULL, + 'Assault by poisoning (E962)', 'Assault by poisoning (E962)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\(E962.0) Assault by drugs and medicinal substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\(E962.0) Assault by drugs and medicinal substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E962.0''', NULL, + '(E962.0) Assault by drugs and medicinal substances', '(E962.0) Assault by drugs and medicinal substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\(E962.1) Assault by other solid and liquid substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\(E962.1) Assault by other solid and liquid substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E962.1''', NULL, + '(E962.1) Assault by other solid and liquid substances', '(E962.1) Assault by other solid and liquid substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\(E962.2) Assault by other gases and vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\(E962.2) Assault by other gases and vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E962.2''', NULL, + '(E962.2) Assault by other gases and vapors', '(E962.2) Assault by other gases and vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\(E962.9) Assault by unspecified poisoning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Assault by poisoning (E962)\(E962.9) Assault by unspecified poisoning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E962.9''', NULL, + '(E962.9) Assault by unspecified poisoning', '(E962.9) Assault by unspecified poisoning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Fight, brawl, rape (E960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Fight, brawl, rape (E960)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E960''', NULL, + 'Fight, brawl, rape (E960)', 'Fight, brawl, rape (E960)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Fight, brawl, rape (E960)\(E960.0) Unarmed fight or brawl\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Fight, brawl, rape (E960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Fight, brawl, rape (E960)\(E960.0) Unarmed fight or brawl\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E960.0''', NULL, + '(E960.0) Unarmed fight or brawl', '(E960.0) Unarmed fight or brawl', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Fight, brawl, rape (E960)\(E960.1) Rape\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Fight, brawl, rape (E960)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Fight, brawl, rape (E960)\(E960.1) Rape\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E960.1''', NULL, + '(E960.1) Rape', '(E960.1) Rape', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E967''', NULL, + 'Perpetrator of child and adult abuse (E967)', 'Perpetrator of child and adult abuse (E967)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.0) Perpetrator of child and adult abuse, by father, stepfather, or boyfriend\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.0) Perpetrator of child and adult abuse, by father, stepfather, or boyfriend\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E967.0''', NULL, + '(E967.0) Perpetrator of child and adult abuse, by father, stepfather, or boyfriend', '(E967.0) Perpetrator of child and adult abuse, by father, stepfather, or boyfriend', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.1) Perpetrator of child and adult abuse, by other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.1) Perpetrator of child and adult abuse, by other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E967.1''', NULL, + '(E967.1) Perpetrator of child and adult abuse, by other specified person', '(E967.1) Perpetrator of child and adult abuse, by other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.2) Perpetrator of child and adult abuse, by mother, stepmother, or girlfriend\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.2) Perpetrator of child and adult abuse, by mother, stepmother, or girlfriend\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E967.2''', NULL, + '(E967.2) Perpetrator of child and adult abuse, by mother, stepmother, or girlfriend', '(E967.2) Perpetrator of child and adult abuse, by mother, stepmother, or girlfriend', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.3) Perpetrator of child and adult abuse, by spouse or partner\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.3) Perpetrator of child and adult abuse, by spouse or partner\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E967.3''', NULL, + '(E967.3) Perpetrator of child and adult abuse, by spouse or partner', '(E967.3) Perpetrator of child and adult abuse, by spouse or partner', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.4) Perpetrator of child and adult abuse, by child\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.4) Perpetrator of child and adult abuse, by child\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E967.4''', NULL, + '(E967.4) Perpetrator of child and adult abuse, by child', '(E967.4) Perpetrator of child and adult abuse, by child', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.5) Perpetrator of child and adult abuse, by sibling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.5) Perpetrator of child and adult abuse, by sibling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E967.5''', NULL, + '(E967.5) Perpetrator of child and adult abuse, by sibling', '(E967.5) Perpetrator of child and adult abuse, by sibling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.6) Perpetrator of child and adult abuse, by grandparent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.6) Perpetrator of child and adult abuse, by grandparent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E967.6''', NULL, + '(E967.6) Perpetrator of child and adult abuse, by grandparent', '(E967.6) Perpetrator of child and adult abuse, by grandparent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.7) Perpetrator of child and adult abuse, by other relative\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.7) Perpetrator of child and adult abuse, by other relative\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E967.7''', NULL, + '(E967.7) Perpetrator of child and adult abuse, by other relative', '(E967.7) Perpetrator of child and adult abuse, by other relative', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.8) Perpetrator of child and adult abuse, by non-related caregiver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.8) Perpetrator of child and adult abuse, by non-related caregiver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E967.8''', NULL, + '(E967.8) Perpetrator of child and adult abuse, by non-related caregiver', '(E967.8) Perpetrator of child and adult abuse, by non-related caregiver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.9) Perpetrator of child and adult abuse, by unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Homicide and injury purposely inflicted by other persons (E960-E969.9)\Perpetrator of child and adult abuse (E967)\(E967.9) Perpetrator of child and adult abuse, by unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E967.9''', NULL, + '(E967.9) Perpetrator of child and adult abuse, by unspecified person', '(E967.9) Perpetrator of child and adult abuse, by unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E990'' AND ''E999.9''', NULL, + 'Injury resulting from operations of war (E990-E999.9)', 'Injury resulting from operations of war (E990-E999.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations but occurring after cessation of hostilities (E998)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations but occurring after cessation of hostilities (E998)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E998''', NULL, + 'Injury due to war operations but occurring after cessation of hostilities (E998)', 'Injury due to war operations but occurring after cessation of hostilities (E998)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E991''', NULL, + 'Injury due to war operations by bullets and fragments (E991)', 'Injury due to war operations by bullets and fragments (E991)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\(E991.0) Injury due to war operations from rubber bullets (rifle)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\(E991.0) Injury due to war operations from rubber bullets (rifle)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E991.0) Injury due to war operations from rubber bullets (rifle''', NULL, + '(E991.0) Injury due to war operations from rubber bullets (rifle)', '(E991.0) Injury due to war operations from rubber bullets (rifle)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\(E991.1) Injury due to war operations from pellets (rifle)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\(E991.1) Injury due to war operations from pellets (rifle)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E991.1) Injury due to war operations from pellets (rifle''', NULL, + '(E991.1) Injury due to war operations from pellets (rifle)', '(E991.1) Injury due to war operations from pellets (rifle)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\(E991.2) Injury due to war operations from other bullets\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\(E991.2) Injury due to war operations from other bullets\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E991.2''', NULL, + '(E991.2) Injury due to war operations from other bullets', '(E991.2) Injury due to war operations from other bullets', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\(E991.3) Injury due to war operations from antipersonnel bomb (fragments)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\(E991.3) Injury due to war operations from antipersonnel bomb (fragments)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E991.3) Injury due to war operations from antipersonnel bomb (fragments''', NULL, + '(E991.3) Injury due to war operations from antipersonnel bomb (fragments)', '(E991.3) Injury due to war operations from antipersonnel bomb (fragments)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\(E991.9) Injury due to war operations from other and unspecified fragments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by bullets and fragments (E991)\(E991.9) Injury due to war operations from other and unspecified fragments\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E991.9''', NULL, + '(E991.9) Injury due to war operations from other and unspecified fragments', '(E991.9) Injury due to war operations from other and unspecified fragments', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by destruction of aircraft (E994)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by destruction of aircraft (E994)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E994''', NULL, + 'Injury due to war operations by destruction of aircraft (E994)', 'Injury due to war operations by destruction of aircraft (E994)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by explosion of marine weapons (E992)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by explosion of marine weapons (E992)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E992''', NULL, + 'Injury due to war operations by explosion of marine weapons (E992)', 'Injury due to war operations by explosion of marine weapons (E992)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by fires and conflagrations (E990)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by fires and conflagrations (E990)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E990''', NULL, + 'Injury due to war operations by fires and conflagrations (E990)', 'Injury due to war operations by fires and conflagrations (E990)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by fires and conflagrations (E990)\(E990.0) Injury due to war operations from gasoline bomb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by fires and conflagrations (E990)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by fires and conflagrations (E990)\(E990.0) Injury due to war operations from gasoline bomb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E990.0''', NULL, + '(E990.0) Injury due to war operations from gasoline bomb', '(E990.0) Injury due to war operations from gasoline bomb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by fires and conflagrations (E990)\(E990.9) Injury due to war operations from other and unspecified source\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by fires and conflagrations (E990)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by fires and conflagrations (E990)\(E990.9) Injury due to war operations from other and unspecified source\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E990.9''', NULL, + '(E990.9) Injury due to war operations from other and unspecified source', '(E990.9) Injury due to war operations from other and unspecified source', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by nuclear weapons (E996)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by nuclear weapons (E996)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E996''', NULL, + 'Injury due to war operations by nuclear weapons (E996)', 'Injury due to war operations by nuclear weapons (E996)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other and unspecified forms of conventional warfare (E995)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other and unspecified forms of conventional warfare (E995)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E995''', NULL, + 'Injury due to war operations by other and unspecified forms of conventional warfare (E995)', 'Injury due to war operations by other and unspecified forms of conventional warfare (E995)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other explosion (E993)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other explosion (E993)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E993''', NULL, + 'Injury due to war operations by other explosion (E993)', 'Injury due to war operations by other explosion (E993)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E997''', NULL, + 'Injury due to war operations by other forms of unconventional warfare (E997)', 'Injury due to war operations by other forms of unconventional warfare (E997)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\(E997.0) Injury due to war operations by lasers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\(E997.0) Injury due to war operations by lasers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E997.0''', NULL, + '(E997.0) Injury due to war operations by lasers', '(E997.0) Injury due to war operations by lasers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\(E997.1) Injury due to war operations by biological warfare\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\(E997.1) Injury due to war operations by biological warfare\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E997.1''', NULL, + '(E997.1) Injury due to war operations by biological warfare', '(E997.1) Injury due to war operations by biological warfare', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\(E997.2) Injury due to war operations by gases, fumes, and chemicals\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\(E997.2) Injury due to war operations by gases, fumes, and chemicals\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E997.2''', NULL, + '(E997.2) Injury due to war operations by gases, fumes, and chemicals', '(E997.2) Injury due to war operations by gases, fumes, and chemicals', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\(E997.8) Injury due to other specified forms of unconventional warfare\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\(E997.8) Injury due to other specified forms of unconventional warfare\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E997.8''', NULL, + '(E997.8) Injury due to other specified forms of unconventional warfare', '(E997.8) Injury due to other specified forms of unconventional warfare', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\(E997.9) Injury due to unspecified form of unconventional warfare\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Injury due to war operations by other forms of unconventional warfare (E997)\(E997.9) Injury due to unspecified form of unconventional warfare\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E997.9''', NULL, + '(E997.9) Injury due to unspecified form of unconventional warfare', '(E997.9) Injury due to unspecified form of unconventional warfare', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Late effect of injury due to war operations and terrorism (E999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Late effect of injury due to war operations and terrorism (E999)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E999''', NULL, + 'Late effect of injury due to war operations and terrorism (E999)', 'Late effect of injury due to war operations and terrorism (E999)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Late effect of injury due to war operations and terrorism (E999)\(E999.0) Late effect of injury due to war operations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Late effect of injury due to war operations and terrorism (E999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Late effect of injury due to war operations and terrorism (E999)\(E999.0) Late effect of injury due to war operations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E999.0''', NULL, + '(E999.0) Late effect of injury due to war operations', '(E999.0) Late effect of injury due to war operations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Late effect of injury due to war operations and terrorism (E999)\(E999.1) Late effect of injury due to terrorism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Late effect of injury due to war operations and terrorism (E999)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury resulting from operations of war (E990-E999.9)\Late effect of injury due to war operations and terrorism (E999)\(E999.1) Late effect of injury due to terrorism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E999.1''', NULL, + '(E999.1) Late effect of injury due to terrorism', '(E999.1) Late effect of injury due to terrorism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E980'' AND ''E989.9''', NULL, + 'Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)', 'Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\(E984) Submersion (drowning), undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\(E984) Submersion (drowning), undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E984) Submersion (drowning''', NULL, + '(E984) Submersion (drowning), undetermined whether accidentally or purposely inflicted', '(E984) Submersion (drowning), undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\(E986) Injury by cutting and piercing instruments, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\(E986) Injury by cutting and piercing instruments, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E986''', NULL, + '(E986) Injury by cutting and piercing instruments, undetermined whether accidentally or purposely inflicted', '(E986) Injury by cutting and piercing instruments, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\(E989) Late effects of injury, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\(E989) Late effects of injury, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E989''', NULL, + '(E989) Late effects of injury, undetermined whether accidentally or purposely inflicted', '(E989) Late effects of injury, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E987''', NULL, + 'Falling from high place, undetermined whether accidentally or purposely inflicted (E987)', 'Falling from high place, undetermined whether accidentally or purposely inflicted (E987)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\(E987.0) Falling from residential premises, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\(E987.0) Falling from residential premises, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E987.0''', NULL, + '(E987.0) Falling from residential premises, undetermined whether accidentally or purposely inflicted', '(E987.0) Falling from residential premises, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\(E987.1) Falling from other man-made structures, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\(E987.1) Falling from other man-made structures, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E987.1''', NULL, + '(E987.1) Falling from other man-made structures, undetermined whether accidentally or purposely inflicted', '(E987.1) Falling from other man-made structures, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\(E987.2) Falling from natural sites, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\(E987.2) Falling from natural sites, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E987.2''', NULL, + '(E987.2) Falling from natural sites, undetermined whether accidentally or purposely inflicted', '(E987.2) Falling from natural sites, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\(E987.9) Falling from unspecified site, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\(E987.9) Falling from unspecified site, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E987.9''', NULL, + '(E987.9) Falling from unspecified site, undetermined whether accidentally or purposely inflicted', '(E987.9) Falling from unspecified site, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E983''', NULL, + 'Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)', 'Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\(E983.0) Hanging, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\(E983.0) Hanging, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E983.0''', NULL, + '(E983.0) Hanging, undetermined whether accidentally or purposely inflicted', '(E983.0) Hanging, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\(E983.1) Suffocation by plastic bag, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\(E983.1) Suffocation by plastic bag, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E983.1''', NULL, + '(E983.1) Suffocation by plastic bag, undetermined whether accidentally or purposely inflicted', '(E983.1) Suffocation by plastic bag, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\(E983.8) Strangulation or suffocation by other specified means, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\(E983.8) Strangulation or suffocation by other specified means, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E983.8''', NULL, + '(E983.8) Strangulation or suffocation by other specified means, undetermined whether accidentally or purposely inflicted', '(E983.8) Strangulation or suffocation by other specified means, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\(E983.9) Strangulation or suffocation by unspecified means, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\(E983.9) Strangulation or suffocation by unspecified means, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E983.9''', NULL, + '(E983.9) Strangulation or suffocation by unspecified means, undetermined whether accidentally or purposely inflicted', '(E983.9) Strangulation or suffocation by unspecified means, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E985''', NULL, + 'Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)', 'Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.0) Injury by handgun, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.0) Injury by handgun, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E985.0''', NULL, + '(E985.0) Injury by handgun, undetermined whether accidentally or purposely inflicted', '(E985.0) Injury by handgun, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.1) Injury by shotgun, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.1) Injury by shotgun, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E985.1''', NULL, + '(E985.1) Injury by shotgun, undetermined whether accidentally or purposely inflicted', '(E985.1) Injury by shotgun, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.2) Injury by hunting rifle, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.2) Injury by hunting rifle, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E985.2''', NULL, + '(E985.2) Injury by hunting rifle, undetermined whether accidentally or purposely inflicted', '(E985.2) Injury by hunting rifle, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.3) Injury by military firearms, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.3) Injury by military firearms, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E985.3''', NULL, + '(E985.3) Injury by military firearms, undetermined whether accidentally or purposely inflicted', '(E985.3) Injury by military firearms, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.4) Injury by other and unspecified firearm, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.4) Injury by other and unspecified firearm, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E985.4''', NULL, + '(E985.4) Injury by other and unspecified firearm, undetermined whether accidentally or purposely inflicted', '(E985.4) Injury by other and unspecified firearm, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.5) Injury by explosives, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.5) Injury by explosives, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E985.5''', NULL, + '(E985.5) Injury by explosives, undetermined whether accidentally or purposely inflicted', '(E985.5) Injury by explosives, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.6) Injury by air gun, undetermined whether accidental or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.6) Injury by air gun, undetermined whether accidental or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E985.6''', NULL, + '(E985.6) Injury by air gun, undetermined whether accidental or purposely inflicted', '(E985.6) Injury by air gun, undetermined whether accidental or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.7) Injury by paintball gun, undetermined whether accidental or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\(E985.7) Injury by paintball gun, undetermined whether accidental or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E985.7''', NULL, + '(E985.7) Injury by paintball gun, undetermined whether accidental or purposely inflicted', '(E985.7) Injury by paintball gun, undetermined whether accidental or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E988''', NULL, + 'Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)', 'Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.0) Injury by jumping or lying before moving object, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.0) Injury by jumping or lying before moving object, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E988.0''', NULL, + '(E988.0) Injury by jumping or lying before moving object, undetermined whether accidentally or purposely inflicted', '(E988.0) Injury by jumping or lying before moving object, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.1) Injury by burns or fire, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.1) Injury by burns or fire, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E988.1''', NULL, + '(E988.1) Injury by burns or fire, undetermined whether accidentally or purposely inflicted', '(E988.1) Injury by burns or fire, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.2) Injury by scald, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.2) Injury by scald, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E988.2''', NULL, + '(E988.2) Injury by scald, undetermined whether accidentally or purposely inflicted', '(E988.2) Injury by scald, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.3) Injury by extremes of cold, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.3) Injury by extremes of cold, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E988.3''', NULL, + '(E988.3) Injury by extremes of cold, undetermined whether accidentally or purposely inflicted', '(E988.3) Injury by extremes of cold, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.4) Injury by electrocution, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.4) Injury by electrocution, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E988.4''', NULL, + '(E988.4) Injury by electrocution, undetermined whether accidentally or purposely inflicted', '(E988.4) Injury by electrocution, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.5) Injury by crashing of motor vehicle, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.5) Injury by crashing of motor vehicle, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E988.5''', NULL, + '(E988.5) Injury by crashing of motor vehicle, undetermined whether accidentally or purposely inflicted', '(E988.5) Injury by crashing of motor vehicle, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.6) Injury by crashing of aircraft, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.6) Injury by crashing of aircraft, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E988.6''', NULL, + '(E988.6) Injury by crashing of aircraft, undetermined whether accidentally or purposely inflicted', '(E988.6) Injury by crashing of aircraft, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.7) Injury by caustic substances, except poisoning, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.7) Injury by caustic substances, except poisoning, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E988.7''', NULL, + '(E988.7) Injury by caustic substances, except poisoning, undetermined whether accidentally or purposely inflicted', '(E988.7) Injury by caustic substances, except poisoning, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.8) Injury by other specified means, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.8) Injury by other specified means, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E988.8''', NULL, + '(E988.8) Injury by other specified means, undetermined whether accidentally or purposely inflicted', '(E988.8) Injury by other specified means, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.9) Injury by unspecified means, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\(E988.9) Injury by unspecified means, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E988.9''', NULL, + '(E988.9) Injury by unspecified means, undetermined whether accidentally or purposely inflicted', '(E988.9) Injury by unspecified means, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E981''', NULL, + 'Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)', 'Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\(E981.0) Poisoning by gas distributed by pipeline, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\(E981.0) Poisoning by gas distributed by pipeline, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E981.0''', NULL, + '(E981.0) Poisoning by gas distributed by pipeline, undetermined whether accidentally or purposely inflicted', '(E981.0) Poisoning by gas distributed by pipeline, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\(E981.1) Poisoning by liquefied petroleum gas distributed in mobile containers, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\(E981.1) Poisoning by liquefied petroleum gas distributed in mobile containers, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E981.1''', NULL, + '(E981.1) Poisoning by liquefied petroleum gas distributed in mobile containers, undetermined whether accidentally or purposely inflicted', '(E981.1) Poisoning by liquefied petroleum gas distributed in mobile containers, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\(E981.8) Poisoning by other utility gas, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\(E981.8) Poisoning by other utility gas, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E981.8''', NULL, + '(E981.8) Poisoning by other utility gas, undetermined whether accidentally or purposely inflicted', '(E981.8) Poisoning by other utility gas, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E982''', NULL, + 'Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)', 'Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\(E982.0) Poisoning by motor vehicle exhaust gas, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\(E982.0) Poisoning by motor vehicle exhaust gas, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E982.0''', NULL, + '(E982.0) Poisoning by motor vehicle exhaust gas, undetermined whether accidentally or purposely inflicted', '(E982.0) Poisoning by motor vehicle exhaust gas, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\(E982.1) Poisoning by other carbon monoxide, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\(E982.1) Poisoning by other carbon monoxide, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E982.1''', NULL, + '(E982.1) Poisoning by other carbon monoxide, undetermined whether accidentally or purposely inflicted', '(E982.1) Poisoning by other carbon monoxide, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\(E982.8) Poisoning by other specified gases and vapors, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\(E982.8) Poisoning by other specified gases and vapors, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E982.8''', NULL, + '(E982.8) Poisoning by other specified gases and vapors, undetermined whether accidentally or purposely inflicted', '(E982.8) Poisoning by other specified gases and vapors, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\(E982.9) Poisoning by unspecified gases and vapors, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\(E982.9) Poisoning by unspecified gases and vapors, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E982.9''', NULL, + '(E982.9) Poisoning by unspecified gases and vapors, undetermined whether accidentally or purposely inflicted', '(E982.9) Poisoning by unspecified gases and vapors, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E980''', NULL, + 'Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)', 'Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.0) Poisoning by analgesics, antipyretics, and antirheumatics, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.0) Poisoning by analgesics, antipyretics, and antirheumatics, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E980.0''', NULL, + '(E980.0) Poisoning by analgesics, antipyretics, and antirheumatics, undetermined whether accidentally or purposely inflicted', '(E980.0) Poisoning by analgesics, antipyretics, and antirheumatics, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.1) Poisoning by barbiturates, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.1) Poisoning by barbiturates, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E980.1''', NULL, + '(E980.1) Poisoning by barbiturates, undetermined whether accidentally or purposely inflicted', '(E980.1) Poisoning by barbiturates, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.2) Poisoning by other sedatives and hypnotics, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.2) Poisoning by other sedatives and hypnotics, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E980.2''', NULL, + '(E980.2) Poisoning by other sedatives and hypnotics, undetermined whether accidentally or purposely inflicted', '(E980.2) Poisoning by other sedatives and hypnotics, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.3) Poisoning by tranquilizers and other psychotropic agents, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.3) Poisoning by tranquilizers and other psychotropic agents, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E980.3''', NULL, + '(E980.3) Poisoning by tranquilizers and other psychotropic agents, undetermined whether accidentally or purposely inflicted', '(E980.3) Poisoning by tranquilizers and other psychotropic agents, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.4) Poisoning by other specified drugs and medicinal substances, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.4) Poisoning by other specified drugs and medicinal substances, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E980.4''', NULL, + '(E980.4) Poisoning by other specified drugs and medicinal substances, undetermined whether accidentally or purposely inflicted', '(E980.4) Poisoning by other specified drugs and medicinal substances, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.5) Poisoning by unspecified drug or medicinal substance, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.5) Poisoning by unspecified drug or medicinal substance, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E980.5''', NULL, + '(E980.5) Poisoning by unspecified drug or medicinal substance, undetermined whether accidentally or purposely inflicted', '(E980.5) Poisoning by unspecified drug or medicinal substance, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.6) Poisoning by corrosive and caustic substances, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.6) Poisoning by corrosive and caustic substances, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E980.6''', NULL, + '(E980.6) Poisoning by corrosive and caustic substances, undetermined whether accidentally or purposely inflicted', '(E980.6) Poisoning by corrosive and caustic substances, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.7) Poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.7) Poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E980.7''', NULL, + '(E980.7) Poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers, undetermined whether accidentally or purposely inflicted', '(E980.7) Poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.8) Poisoning by arsenic and its compounds, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.8) Poisoning by arsenic and its compounds, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E980.8''', NULL, + '(E980.8) Poisoning by arsenic and its compounds, undetermined whether accidentally or purposely inflicted', '(E980.8) Poisoning by arsenic and its compounds, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.9) Poisoning by other and unspecified solid and liquid substances, undetermined whether accidentally or purposely inflicted\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\(E980.9) Poisoning by other and unspecified solid and liquid substances, undetermined whether accidentally or purposely inflicted\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E980.9''', NULL, + '(E980.9) Poisoning by other and unspecified solid and liquid substances, undetermined whether accidentally or purposely inflicted', '(E980.9) Poisoning by other and unspecified solid and liquid substances, undetermined whether accidentally or purposely inflicted', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E929'' AND ''E929.9''', NULL, + 'Late effects of accidental injury (E929-E929.9)', 'Late effects of accidental injury (E929-E929.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E929''', NULL, + 'Late effects of accidental injury (E929)', 'Late effects of accidental injury (E929)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.0) Late effects of motor vehicle accident\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.0) Late effects of motor vehicle accident\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E929.0''', NULL, + '(E929.0) Late effects of motor vehicle accident', '(E929.0) Late effects of motor vehicle accident', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.1) Late effects of other transport accident\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.1) Late effects of other transport accident\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E929.1''', NULL, + '(E929.1) Late effects of other transport accident', '(E929.1) Late effects of other transport accident', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.2) Late effects of accidental poisoning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.2) Late effects of accidental poisoning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E929.2''', NULL, + '(E929.2) Late effects of accidental poisoning', '(E929.2) Late effects of accidental poisoning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.3) Late effects of accidental fall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.3) Late effects of accidental fall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E929.3''', NULL, + '(E929.3) Late effects of accidental fall', '(E929.3) Late effects of accidental fall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.4) Late effects of accident caused by fire\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.4) Late effects of accident caused by fire\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E929.4''', NULL, + '(E929.4) Late effects of accident caused by fire', '(E929.4) Late effects of accident caused by fire', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.5) Late effects of accident due to natural and environmental factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.5) Late effects of accident due to natural and environmental factors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E929.5''', NULL, + '(E929.5) Late effects of accident due to natural and environmental factors', '(E929.5) Late effects of accident due to natural and environmental factors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.8) Late effects of other accidents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.8) Late effects of other accidents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E929.8''', NULL, + '(E929.8) Late effects of other accidents', '(E929.8) Late effects of other accidents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.9) Late effects of unspecified accident\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Late effects of accidental injury (E929-E929.9)\Late effects of accidental injury (E929)\(E929.9) Late effects of unspecified accident\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E929.9''', NULL, + '(E929.9) Late effects of unspecified accident', '(E929.9) Late effects of unspecified accident', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E970'' AND ''E978.9''', NULL, + 'Legal intervention (E970-E978.9)', 'Legal intervention (E970-E978.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E970) Injury due to legal intervention by firearms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E970) Injury due to legal intervention by firearms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E970''', NULL, + '(E970) Injury due to legal intervention by firearms', '(E970) Injury due to legal intervention by firearms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E971) Injury due to legal intervention by explosives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E971) Injury due to legal intervention by explosives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E971''', NULL, + '(E971) Injury due to legal intervention by explosives', '(E971) Injury due to legal intervention by explosives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E972) Injury due to legal intervention by gas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E972) Injury due to legal intervention by gas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E972''', NULL, + '(E972) Injury due to legal intervention by gas', '(E972) Injury due to legal intervention by gas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E973) Injury due to legal intervention by blunt object\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E973) Injury due to legal intervention by blunt object\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E973''', NULL, + '(E973) Injury due to legal intervention by blunt object', '(E973) Injury due to legal intervention by blunt object', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E974) Injury due to legal intervention by cutting and piercing instrument\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E974) Injury due to legal intervention by cutting and piercing instrument\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E974''', NULL, + '(E974) Injury due to legal intervention by cutting and piercing instrument', '(E974) Injury due to legal intervention by cutting and piercing instrument', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E975) Injury due to legal intervention by other specified means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E975) Injury due to legal intervention by other specified means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E975''', NULL, + '(E975) Injury due to legal intervention by other specified means', '(E975) Injury due to legal intervention by other specified means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E976) Injury due to legal intervention by unspecified means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E976) Injury due to legal intervention by unspecified means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E976''', NULL, + '(E976) Injury due to legal intervention by unspecified means', '(E976) Injury due to legal intervention by unspecified means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E977) Late effects of injuries due to legal intervention\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E977) Late effects of injuries due to legal intervention\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E977''', NULL, + '(E977) Late effects of injuries due to legal intervention', '(E977) Late effects of injuries due to legal intervention', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E978) Legal execution\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Legal intervention (E970-E978.9)\(E978) Legal execution\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E978''', NULL, + '(E978) Legal execution', '(E978) Legal execution', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E870'' AND ''E876.9''', NULL, + 'Misadventures to patients during surgical and medical care (E870-E876.9)', 'Misadventures to patients during surgical and medical care (E870-E876.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E870''', NULL, + 'Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)', 'Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.0) Accidental cut, puncture, perforation or hemorrhage during surgical operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.0) Accidental cut, puncture, perforation or hemorrhage during surgical operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E870.0''', NULL, + '(E870.0) Accidental cut, puncture, perforation or hemorrhage during surgical operation', '(E870.0) Accidental cut, puncture, perforation or hemorrhage during surgical operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.1) Accidental cut, puncture, perforation or hemorrhage during infusion or transfusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.1) Accidental cut, puncture, perforation or hemorrhage during infusion or transfusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E870.1''', NULL, + '(E870.1) Accidental cut, puncture, perforation or hemorrhage during infusion or transfusion', '(E870.1) Accidental cut, puncture, perforation or hemorrhage during infusion or transfusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.2) Accidental cut, puncture, perforation or hemorrhage during kidney dialysis or other perfusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.2) Accidental cut, puncture, perforation or hemorrhage during kidney dialysis or other perfusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E870.2''', NULL, + '(E870.2) Accidental cut, puncture, perforation or hemorrhage during kidney dialysis or other perfusion', '(E870.2) Accidental cut, puncture, perforation or hemorrhage during kidney dialysis or other perfusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.3) Accidental cut, puncture, perforation or hemorrhage during injection or vaccination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.3) Accidental cut, puncture, perforation or hemorrhage during injection or vaccination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E870.3''', NULL, + '(E870.3) Accidental cut, puncture, perforation or hemorrhage during injection or vaccination', '(E870.3) Accidental cut, puncture, perforation or hemorrhage during injection or vaccination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.4) Accidental cut, puncture, perforation or hemorrhage during endoscopic examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.4) Accidental cut, puncture, perforation or hemorrhage during endoscopic examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E870.4''', NULL, + '(E870.4) Accidental cut, puncture, perforation or hemorrhage during endoscopic examination', '(E870.4) Accidental cut, puncture, perforation or hemorrhage during endoscopic examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.5) Accidental cut, puncture, perforation or hemorrhage during aspiration of fluid or tissue, puncture, and catheterization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.5) Accidental cut, puncture, perforation or hemorrhage during aspiration of fluid or tissue, puncture, and catheterization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E870.5''', NULL, + '(E870.5) Accidental cut, puncture, perforation or hemorrhage during aspiration of fluid or tissue, puncture, and catheterization', '(E870.5) Accidental cut, puncture, perforation or hemorrhage during aspiration of fluid or tissue, puncture, and catheterization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.6) Accidental cut, puncture, perforation or hemorrhage during heart catheterization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.6) Accidental cut, puncture, perforation or hemorrhage during heart catheterization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E870.6''', NULL, + '(E870.6) Accidental cut, puncture, perforation or hemorrhage during heart catheterization', '(E870.6) Accidental cut, puncture, perforation or hemorrhage during heart catheterization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.7) Accidental cut, puncture, perforation or hemorrhage during administration of enema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.7) Accidental cut, puncture, perforation or hemorrhage during administration of enema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E870.7''', NULL, + '(E870.7) Accidental cut, puncture, perforation or hemorrhage during administration of enema', '(E870.7) Accidental cut, puncture, perforation or hemorrhage during administration of enema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.8) Accidental cut, puncture, perforation or hemorrhage during other specified medical care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.8) Accidental cut, puncture, perforation or hemorrhage during other specified medical care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E870.8''', NULL, + '(E870.8) Accidental cut, puncture, perforation or hemorrhage during other specified medical care', '(E870.8) Accidental cut, puncture, perforation or hemorrhage during other specified medical care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.9) Accidental cut, puncture, perforation or hemorrhage during unspecified medical care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\(E870.9) Accidental cut, puncture, perforation or hemorrhage during unspecified medical care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E870.9''', NULL, + '(E870.9) Accidental cut, puncture, perforation or hemorrhage during unspecified medical care', '(E870.9) Accidental cut, puncture, perforation or hemorrhage during unspecified medical care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E875''', NULL, + 'Contaminated or infected blood, other fluid, drug, or biological substance (E875)', 'Contaminated or infected blood, other fluid, drug, or biological substance (E875)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\(E875.0) Contaminated substance transfused or infused\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\(E875.0) Contaminated substance transfused or infused\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E875.0''', NULL, + '(E875.0) Contaminated substance transfused or infused', '(E875.0) Contaminated substance transfused or infused', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\(E875.1) Contaminated substance injected or used for vaccination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\(E875.1) Contaminated substance injected or used for vaccination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E875.1''', NULL, + '(E875.1) Contaminated substance injected or used for vaccination', '(E875.1) Contaminated substance injected or used for vaccination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\(E875.2) Contaminated drug or biological substance administered by other means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\(E875.2) Contaminated drug or biological substance administered by other means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E875.2''', NULL, + '(E875.2) Contaminated drug or biological substance administered by other means', '(E875.2) Contaminated drug or biological substance administered by other means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\(E875.8) Misadventure to patient from other contamination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\(E875.8) Misadventure to patient from other contamination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E875.8''', NULL, + '(E875.8) Misadventure to patient from other contamination', '(E875.8) Misadventure to patient from other contamination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\(E875.9) Misadventure to patient from unspecified contamination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\(E875.9) Misadventure to patient from unspecified contamination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E875.9''', NULL, + '(E875.9) Misadventure to patient from unspecified contamination', '(E875.9) Misadventure to patient from unspecified contamination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E873''', NULL, + 'Failure in dosage (E873)', 'Failure in dosage (E873)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.0) Excessive amount of blood or other fluid during transfusion or infusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.0) Excessive amount of blood or other fluid during transfusion or infusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E873.0''', NULL, + '(E873.0) Excessive amount of blood or other fluid during transfusion or infusion', '(E873.0) Excessive amount of blood or other fluid during transfusion or infusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.1) Incorrect dilution of fluid during infusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.1) Incorrect dilution of fluid during infusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E873.1''', NULL, + '(E873.1) Incorrect dilution of fluid during infusion', '(E873.1) Incorrect dilution of fluid during infusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.2) Overdose of radiation in therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.2) Overdose of radiation in therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E873.2''', NULL, + '(E873.2) Overdose of radiation in therapy', '(E873.2) Overdose of radiation in therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.3) Inadvertent exposure of patient to radiation during medical care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.3) Inadvertent exposure of patient to radiation during medical care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E873.3''', NULL, + '(E873.3) Inadvertent exposure of patient to radiation during medical care', '(E873.3) Inadvertent exposure of patient to radiation during medical care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.4) Failure in dosage in electroshock or insulin-shock therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.4) Failure in dosage in electroshock or insulin-shock therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E873.4''', NULL, + '(E873.4) Failure in dosage in electroshock or insulin-shock therapy', '(E873.4) Failure in dosage in electroshock or insulin-shock therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.5) Inappropriate [too hot or too cold] temperature in local application and packing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.5) Inappropriate [too hot or too cold] temperature in local application and packing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E873.5''', NULL, + '(E873.5) Inappropriate [too hot or too cold] temperature in local application and packing', '(E873.5) Inappropriate [too hot or too cold] temperature in local application and packing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.6) Nonadministration of necessary drug or medicinal substance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.6) Nonadministration of necessary drug or medicinal substance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E873.6''', NULL, + '(E873.6) Nonadministration of necessary drug or medicinal substance', '(E873.6) Nonadministration of necessary drug or medicinal substance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.8) Other specified failure in dosage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.8) Other specified failure in dosage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E873.8''', NULL, + '(E873.8) Other specified failure in dosage', '(E873.8) Other specified failure in dosage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.9) Unspecified failure in dosage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure in dosage (E873)\(E873.9) Unspecified failure in dosage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E873.9''', NULL, + '(E873.9) Unspecified failure in dosage', '(E873.9) Unspecified failure in dosage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E872''', NULL, + 'Failure of sterile precautions during procedure (E872)', 'Failure of sterile precautions during procedure (E872)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.0) Failure of sterile precautions during surgical operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.0) Failure of sterile precautions during surgical operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E872.0''', NULL, + '(E872.0) Failure of sterile precautions during surgical operation', '(E872.0) Failure of sterile precautions during surgical operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.1) Failure of sterile precautions during infusion or transfusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.1) Failure of sterile precautions during infusion or transfusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E872.1''', NULL, + '(E872.1) Failure of sterile precautions during infusion or transfusion', '(E872.1) Failure of sterile precautions during infusion or transfusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.2) Failure of sterile precautions during kidney dialysis and other perfusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.2) Failure of sterile precautions during kidney dialysis and other perfusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E872.2''', NULL, + '(E872.2) Failure of sterile precautions during kidney dialysis and other perfusion', '(E872.2) Failure of sterile precautions during kidney dialysis and other perfusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.3) Failure of sterile precautions during injection or vaccination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.3) Failure of sterile precautions during injection or vaccination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E872.3''', NULL, + '(E872.3) Failure of sterile precautions during injection or vaccination', '(E872.3) Failure of sterile precautions during injection or vaccination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.4) Failure of sterile precautions during endoscopic examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.4) Failure of sterile precautions during endoscopic examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E872.4''', NULL, + '(E872.4) Failure of sterile precautions during endoscopic examination', '(E872.4) Failure of sterile precautions during endoscopic examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.5) Failure of sterile precautions during aspiration of fluid or tissue, puncture, and catheterization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.5) Failure of sterile precautions during aspiration of fluid or tissue, puncture, and catheterization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E872.5''', NULL, + '(E872.5) Failure of sterile precautions during aspiration of fluid or tissue, puncture, and catheterization', '(E872.5) Failure of sterile precautions during aspiration of fluid or tissue, puncture, and catheterization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.6) Failure of sterile precautions during heart catheterization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.6) Failure of sterile precautions during heart catheterization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E872.6''', NULL, + '(E872.6) Failure of sterile precautions during heart catheterization', '(E872.6) Failure of sterile precautions during heart catheterization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.8) Failure of sterile precautions during other specified procedures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.8) Failure of sterile precautions during other specified procedures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E872.8''', NULL, + '(E872.8) Failure of sterile precautions during other specified procedures', '(E872.8) Failure of sterile precautions during other specified procedures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.9) Failure of sterile precautions during unspecified procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Failure of sterile precautions during procedure (E872)\(E872.9) Failure of sterile precautions during unspecified procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E872.9''', NULL, + '(E872.9) Failure of sterile precautions during unspecified procedure', '(E872.9) Failure of sterile precautions during unspecified procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E871''', NULL, + 'Foreign object left in body during procedure (E871)', 'Foreign object left in body during procedure (E871)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.0) Foreign object left in body during surgical operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.0) Foreign object left in body during surgical operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E871.0''', NULL, + '(E871.0) Foreign object left in body during surgical operation', '(E871.0) Foreign object left in body during surgical operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.1) Foreign object left in body during infusion or transfusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.1) Foreign object left in body during infusion or transfusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E871.1''', NULL, + '(E871.1) Foreign object left in body during infusion or transfusion', '(E871.1) Foreign object left in body during infusion or transfusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.2) Foreign object left in body during kidney dialysis or other perfusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.2) Foreign object left in body during kidney dialysis or other perfusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E871.2''', NULL, + '(E871.2) Foreign object left in body during kidney dialysis or other perfusion', '(E871.2) Foreign object left in body during kidney dialysis or other perfusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.3) Foreign object left in body during injection or vaccination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.3) Foreign object left in body during injection or vaccination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E871.3''', NULL, + '(E871.3) Foreign object left in body during injection or vaccination', '(E871.3) Foreign object left in body during injection or vaccination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.4) Foreign object left in body during endoscopic examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.4) Foreign object left in body during endoscopic examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E871.4''', NULL, + '(E871.4) Foreign object left in body during endoscopic examination', '(E871.4) Foreign object left in body during endoscopic examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.5) Foreign object left in body during aspiration of fluid or tissue, puncture, and catheterization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.5) Foreign object left in body during aspiration of fluid or tissue, puncture, and catheterization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E871.5''', NULL, + '(E871.5) Foreign object left in body during aspiration of fluid or tissue, puncture, and catheterization', '(E871.5) Foreign object left in body during aspiration of fluid or tissue, puncture, and catheterization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.6) Foreign object left in body during heart catheterization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.6) Foreign object left in body during heart catheterization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E871.6''', NULL, + '(E871.6) Foreign object left in body during heart catheterization', '(E871.6) Foreign object left in body during heart catheterization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.7) Foreign object left in body during removal of catheter or packing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.7) Foreign object left in body during removal of catheter or packing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E871.7''', NULL, + '(E871.7) Foreign object left in body during removal of catheter or packing', '(E871.7) Foreign object left in body during removal of catheter or packing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.8) Foreign object left in body during other specified procedures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.8) Foreign object left in body during other specified procedures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E871.8''', NULL, + '(E871.8) Foreign object left in body during other specified procedures', '(E871.8) Foreign object left in body during other specified procedures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.9) Foreign object left in body during unspecified procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Foreign object left in body during procedure (E871)\(E871.9) Foreign object left in body during unspecified procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E871.9''', NULL, + '(E871.9) Foreign object left in body during unspecified procedure', '(E871.9) Foreign object left in body during unspecified procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E874''', NULL, + 'Mechanical failure of instrument or apparatus during procedure (E874)', 'Mechanical failure of instrument or apparatus during procedure (E874)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.0) Mechanical failure of instrument or apparatus during surgical operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.0) Mechanical failure of instrument or apparatus during surgical operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E874.0''', NULL, + '(E874.0) Mechanical failure of instrument or apparatus during surgical operation', '(E874.0) Mechanical failure of instrument or apparatus during surgical operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.1) Mechanical failure of instrument or apparatus during infusion and transfusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.1) Mechanical failure of instrument or apparatus during infusion and transfusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E874.1''', NULL, + '(E874.1) Mechanical failure of instrument or apparatus during infusion and transfusion', '(E874.1) Mechanical failure of instrument or apparatus during infusion and transfusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.2) Mechanical failure of instrument or apparatus during kidney dialysis and other perfusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.2) Mechanical failure of instrument or apparatus during kidney dialysis and other perfusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E874.2''', NULL, + '(E874.2) Mechanical failure of instrument or apparatus during kidney dialysis and other perfusion', '(E874.2) Mechanical failure of instrument or apparatus during kidney dialysis and other perfusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.3) Mechanical failure of instrument or apparatus during endoscopic examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.3) Mechanical failure of instrument or apparatus during endoscopic examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E874.3''', NULL, + '(E874.3) Mechanical failure of instrument or apparatus during endoscopic examination', '(E874.3) Mechanical failure of instrument or apparatus during endoscopic examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.4) Mechanical failure of instrument or apparatus during aspiration of fluid or tissue, puncture, and catheterization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.4) Mechanical failure of instrument or apparatus during aspiration of fluid or tissue, puncture, and catheterization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E874.4''', NULL, + '(E874.4) Mechanical failure of instrument or apparatus during aspiration of fluid or tissue, puncture, and catheterization', '(E874.4) Mechanical failure of instrument or apparatus during aspiration of fluid or tissue, puncture, and catheterization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.5) Mechanical failure of instrument or apparatus during heart catheterization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.5) Mechanical failure of instrument or apparatus during heart catheterization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E874.5''', NULL, + '(E874.5) Mechanical failure of instrument or apparatus during heart catheterization', '(E874.5) Mechanical failure of instrument or apparatus during heart catheterization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.8) Mechanical failure of instrument or apparatus during other specified procedures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.8) Mechanical failure of instrument or apparatus during other specified procedures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E874.8''', NULL, + '(E874.8) Mechanical failure of instrument or apparatus during other specified procedures', '(E874.8) Mechanical failure of instrument or apparatus during other specified procedures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.9) Mechanical failure of instrument or apparatus during unspecified procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Mechanical failure of instrument or apparatus during procedure (E874)\(E874.9) Mechanical failure of instrument or apparatus during unspecified procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E874.9''', NULL, + '(E874.9) Mechanical failure of instrument or apparatus during unspecified procedure', '(E874.9) Mechanical failure of instrument or apparatus during unspecified procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E876''', NULL, + 'Other and unspecified misadventures during medical care (E876)', 'Other and unspecified misadventures during medical care (E876)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.0) Mismatched blood in transfusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.0) Mismatched blood in transfusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E876.0''', NULL, + '(E876.0) Mismatched blood in transfusion', '(E876.0) Mismatched blood in transfusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.1) Wrong fluid in infusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.1) Wrong fluid in infusion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E876.1''', NULL, + '(E876.1) Wrong fluid in infusion', '(E876.1) Wrong fluid in infusion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.2) Failure in suture and ligature during surgical operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.2) Failure in suture and ligature during surgical operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E876.2''', NULL, + '(E876.2) Failure in suture and ligature during surgical operation', '(E876.2) Failure in suture and ligature during surgical operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.3) Endotracheal tube wrongly placed during anesthetic procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.3) Endotracheal tube wrongly placed during anesthetic procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E876.3''', NULL, + '(E876.3) Endotracheal tube wrongly placed during anesthetic procedure', '(E876.3) Endotracheal tube wrongly placed during anesthetic procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.4) Failure to introduce or to remove other tube or instrument\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.4) Failure to introduce or to remove other tube or instrument\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E876.4''', NULL, + '(E876.4) Failure to introduce or to remove other tube or instrument', '(E876.4) Failure to introduce or to remove other tube or instrument', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.5) Performance of wrong operation (procedure) on correct patient\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.5) Performance of wrong operation (procedure) on correct patient\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E876.5) Performance of wrong operation (procedure''', NULL, + '(E876.5) Performance of wrong operation (procedure) on correct patient', '(E876.5) Performance of wrong operation (procedure) on correct patient', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.8) Other specified misadventures during medical care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.8) Other specified misadventures during medical care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E876.8''', NULL, + '(E876.8) Other specified misadventures during medical care', '(E876.8) Other specified misadventures during medical care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.9) Unspecified misadventure during medical care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Misadventures to patients during surgical and medical care (E870-E876.9)\Other and unspecified misadventures during medical care (E876)\(E876.9) Unspecified misadventure during medical care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E876.9''', NULL, + '(E876.9) Unspecified misadventure during medical care', '(E876.9) Unspecified misadventure during medical care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E916'' AND ''E928.9''', NULL, + 'Other accidents (E916-E928.9)', 'Other accidents (E916-E928.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\(E916) Struck accidentally by falling object\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\(E916) Struck accidentally by falling object\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E916''', NULL, + '(E916) Struck accidentally by falling object', '(E916) Struck accidentally by falling object', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\(E918) Caught accidentally in or between objects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\(E918) Caught accidentally in or between objects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E918''', NULL, + '(E918) Caught accidentally in or between objects', '(E918) Caught accidentally in or between objects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E925''', NULL, + 'Accident caused by electric current (E925)', 'Accident caused by electric current (E925)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\(E925.0) Accident caused by domestic wiring and appliances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\(E925.0) Accident caused by domestic wiring and appliances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E925.0''', NULL, + '(E925.0) Accident caused by domestic wiring and appliances', '(E925.0) Accident caused by domestic wiring and appliances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\(E925.1) Accident caused by electric current in electric power generating plants, distribution stations, transmission lines\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\(E925.1) Accident caused by electric current in electric power generating plants, distribution stations, transmission lines\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E925.1''', NULL, + '(E925.1) Accident caused by electric current in electric power generating plants, distribution stations, transmission lines', '(E925.1) Accident caused by electric current in electric power generating plants, distribution stations, transmission lines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\(E925.2) Accident caused by industrial wiring, appliances, and electrical machinery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\(E925.2) Accident caused by industrial wiring, appliances, and electrical machinery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E925.2''', NULL, + '(E925.2) Accident caused by industrial wiring, appliances, and electrical machinery', '(E925.2) Accident caused by industrial wiring, appliances, and electrical machinery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\(E925.8) Accident caused by other electric current\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\(E925.8) Accident caused by other electric current\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E925.8''', NULL, + '(E925.8) Accident caused by other electric current', '(E925.8) Accident caused by other electric current', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\(E925.9) Accident caused by unspecified electric current\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by electric current (E925)\(E925.9) Accident caused by unspecified electric current\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E925.9''', NULL, + '(E925.9) Accident caused by unspecified electric current', '(E925.9) Accident caused by unspecified electric current', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E921''', NULL, + 'Accident caused by explosion of pressure vessel (E921)', 'Accident caused by explosion of pressure vessel (E921)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\(E921.0) Accident caused by explosion of boilers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\(E921.0) Accident caused by explosion of boilers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E921.0''', NULL, + '(E921.0) Accident caused by explosion of boilers', '(E921.0) Accident caused by explosion of boilers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\(E921.1) Accident caused by explosion of gas cylinders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\(E921.1) Accident caused by explosion of gas cylinders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E921.1''', NULL, + '(E921.1) Accident caused by explosion of gas cylinders', '(E921.1) Accident caused by explosion of gas cylinders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\(E921.8) Accident caused by explosion of other specified pressure vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\(E921.8) Accident caused by explosion of other specified pressure vessels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E921.8''', NULL, + '(E921.8) Accident caused by explosion of other specified pressure vessels', '(E921.8) Accident caused by explosion of other specified pressure vessels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\(E921.9) Accident caused by explosion of unspecified pressure vessel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosion of pressure vessel (E921)\(E921.9) Accident caused by explosion of unspecified pressure vessel\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E921.9''', NULL, + '(E921.9) Accident caused by explosion of unspecified pressure vessel', '(E921.9) Accident caused by explosion of unspecified pressure vessel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E923''', NULL, + 'Accident caused by explosive material (E923)', 'Accident caused by explosive material (E923)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\(E923.0) Accident caused by fireworks\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\(E923.0) Accident caused by fireworks\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E923.0''', NULL, + '(E923.0) Accident caused by fireworks', '(E923.0) Accident caused by fireworks', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\(E923.1) Accident caused by blasting materials\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\(E923.1) Accident caused by blasting materials\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E923.1''', NULL, + '(E923.1) Accident caused by blasting materials', '(E923.1) Accident caused by blasting materials', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\(E923.2) Accident caused by explosive gases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\(E923.2) Accident caused by explosive gases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E923.2''', NULL, + '(E923.2) Accident caused by explosive gases', '(E923.2) Accident caused by explosive gases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\(E923.8) Accident caused by other explosive materials\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\(E923.8) Accident caused by other explosive materials\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E923.8''', NULL, + '(E923.8) Accident caused by other explosive materials', '(E923.8) Accident caused by other explosive materials', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\(E923.9) Accident caused by unspecified explosive material\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by explosive material (E923)\(E923.9) Accident caused by unspecified explosive material\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E923.9''', NULL, + '(E923.9) Accident caused by unspecified explosive material', '(E923.9) Accident caused by unspecified explosive material', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E922''', NULL, + 'Accident caused by firearm, and air gun missile (E922)', 'Accident caused by firearm, and air gun missile (E922)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.0) Accident caused by handgun\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.0) Accident caused by handgun\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E922.0''', NULL, + '(E922.0) Accident caused by handgun', '(E922.0) Accident caused by handgun', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.1) Accident caused by shotgun (automatic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.1) Accident caused by shotgun (automatic)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E922.1) Accident caused by shotgun (automatic''', NULL, + '(E922.1) Accident caused by shotgun (automatic)', '(E922.1) Accident caused by shotgun (automatic)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.2) Accident caused by hunting rifle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.2) Accident caused by hunting rifle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E922.2''', NULL, + '(E922.2) Accident caused by hunting rifle', '(E922.2) Accident caused by hunting rifle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.3) Accident caused by military firearms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.3) Accident caused by military firearms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E922.3''', NULL, + '(E922.3) Accident caused by military firearms', '(E922.3) Accident caused by military firearms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.4) Accident caused by air gun\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.4) Accident caused by air gun\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E922.4''', NULL, + '(E922.4) Accident caused by air gun', '(E922.4) Accident caused by air gun', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.5) Accident caused by paintball gun\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.5) Accident caused by paintball gun\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E922.5''', NULL, + '(E922.5) Accident caused by paintball gun', '(E922.5) Accident caused by paintball gun', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.8) Accident caused by other specified firearm missile\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.8) Accident caused by other specified firearm missile\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E922.8''', NULL, + '(E922.8) Accident caused by other specified firearm missile', '(E922.8) Accident caused by other specified firearm missile', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.9) Accident caused by unspecified firearm missile\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by firearm, and air gun missile (E922)\(E922.9) Accident caused by unspecified firearm missile\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E922.9''', NULL, + '(E922.9) Accident caused by unspecified firearm missile', '(E922.9) Accident caused by unspecified firearm missile', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E924''', NULL, + 'Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)', 'Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\(E924.0) Accident caused by hot liquids and vapors, including steam\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\(E924.0) Accident caused by hot liquids and vapors, including steam\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E924.0''', NULL, + '(E924.0) Accident caused by hot liquids and vapors, including steam', '(E924.0) Accident caused by hot liquids and vapors, including steam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\(E924.1) Accident caused by caustic and corrosive substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\(E924.1) Accident caused by caustic and corrosive substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E924.1''', NULL, + '(E924.1) Accident caused by caustic and corrosive substances', '(E924.1) Accident caused by caustic and corrosive substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\(E924.2) Accident caused by hot (boiling) tap water\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\(E924.2) Accident caused by hot (boiling) tap water\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E924.2) Accident caused by hot (boiling''', NULL, + '(E924.2) Accident caused by hot (boiling) tap water', '(E924.2) Accident caused by hot (boiling) tap water', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\(E924.8) Accident caused by other hot substance or object\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\(E924.8) Accident caused by other hot substance or object\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E924.8''', NULL, + '(E924.8) Accident caused by other hot substance or object', '(E924.8) Accident caused by other hot substance or object', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\(E924.9) Accident caused by unspecified hot substance or object\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\(E924.9) Accident caused by unspecified hot substance or object\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E924.9''', NULL, + '(E924.9) Accident caused by unspecified hot substance or object', '(E924.9) Accident caused by unspecified hot substance or object', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E920''', NULL, + 'Accidents caused by cutting and piercing instruments or objects (E920)', 'Accidents caused by cutting and piercing instruments or objects (E920)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.0) Accidents caused by powered lawn mower\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.0) Accidents caused by powered lawn mower\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E920.0''', NULL, + '(E920.0) Accidents caused by powered lawn mower', '(E920.0) Accidents caused by powered lawn mower', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.1) Accidents caused by other powered hand tools\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.1) Accidents caused by other powered hand tools\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E920.1''', NULL, + '(E920.1) Accidents caused by other powered hand tools', '(E920.1) Accidents caused by other powered hand tools', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.2) Accidents caused by powered household appliances and implements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.2) Accidents caused by powered household appliances and implements\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E920.2''', NULL, + '(E920.2) Accidents caused by powered household appliances and implements', '(E920.2) Accidents caused by powered household appliances and implements', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.3) Accidents caused by knives, swords, and daggers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.3) Accidents caused by knives, swords, and daggers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E920.3''', NULL, + '(E920.3) Accidents caused by knives, swords, and daggers', '(E920.3) Accidents caused by knives, swords, and daggers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.4) Accidents caused by other hand tools and implements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.4) Accidents caused by other hand tools and implements\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E920.4''', NULL, + '(E920.4) Accidents caused by other hand tools and implements', '(E920.4) Accidents caused by other hand tools and implements', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.5) Accidents caused by hypodermic needle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.5) Accidents caused by hypodermic needle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E920.5''', NULL, + '(E920.5) Accidents caused by hypodermic needle', '(E920.5) Accidents caused by hypodermic needle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.8) Accidents caused by other specified cutting and piercing instruments or objects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.8) Accidents caused by other specified cutting and piercing instruments or objects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E920.8''', NULL, + '(E920.8) Accidents caused by other specified cutting and piercing instruments or objects', '(E920.8) Accidents caused by other specified cutting and piercing instruments or objects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.9) Accidents caused by unspecified cutting and piercing instrument or object\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by cutting and piercing instruments or objects (E920)\(E920.9) Accidents caused by unspecified cutting and piercing instrument or object\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E920.9''', NULL, + '(E920.9) Accidents caused by unspecified cutting and piercing instrument or object', '(E920.9) Accidents caused by unspecified cutting and piercing instrument or object', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E919''', NULL, + 'Accidents caused by machinery (E919)', 'Accidents caused by machinery (E919)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.0) Accidents caused by agricultural machines\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.0) Accidents caused by agricultural machines\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E919.0''', NULL, + '(E919.0) Accidents caused by agricultural machines', '(E919.0) Accidents caused by agricultural machines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.1) Accidents caused by mining and earth-drilling machinery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.1) Accidents caused by mining and earth-drilling machinery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E919.1''', NULL, + '(E919.1) Accidents caused by mining and earth-drilling machinery', '(E919.1) Accidents caused by mining and earth-drilling machinery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.2) Accidents caused by lifting machines and appliances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.2) Accidents caused by lifting machines and appliances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E919.2''', NULL, + '(E919.2) Accidents caused by lifting machines and appliances', '(E919.2) Accidents caused by lifting machines and appliances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.3) Accidents caused by metalworking machines\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.3) Accidents caused by metalworking machines\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E919.3''', NULL, + '(E919.3) Accidents caused by metalworking machines', '(E919.3) Accidents caused by metalworking machines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.4) Accidents caused by woodworking and forming machines\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.4) Accidents caused by woodworking and forming machines\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E919.4''', NULL, + '(E919.4) Accidents caused by woodworking and forming machines', '(E919.4) Accidents caused by woodworking and forming machines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.5) Accidents caused by prime movers, except electrical motors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.5) Accidents caused by prime movers, except electrical motors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E919.5''', NULL, + '(E919.5) Accidents caused by prime movers, except electrical motors', '(E919.5) Accidents caused by prime movers, except electrical motors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.6) Accidents caused by transmission machinery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.6) Accidents caused by transmission machinery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E919.6''', NULL, + '(E919.6) Accidents caused by transmission machinery', '(E919.6) Accidents caused by transmission machinery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.7) Accidents caused by earth moving, scraping, and other excavating machines\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.7) Accidents caused by earth moving, scraping, and other excavating machines\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E919.7''', NULL, + '(E919.7) Accidents caused by earth moving, scraping, and other excavating machines', '(E919.7) Accidents caused by earth moving, scraping, and other excavating machines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.8) Accidents caused by other specified machinery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.8) Accidents caused by other specified machinery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E919.8''', NULL, + '(E919.8) Accidents caused by other specified machinery', '(E919.8) Accidents caused by other specified machinery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.9) Accidents caused by unspecified machinery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Accidents caused by machinery (E919)\(E919.9) Accidents caused by unspecified machinery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E919.9''', NULL, + '(E919.9) Accidents caused by unspecified machinery', '(E919.9) Accidents caused by unspecified machinery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E926''', NULL, + 'Exposure to radiation (E926)', 'Exposure to radiation (E926)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.0) Exposure to radiofrequency radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.0) Exposure to radiofrequency radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E926.0''', NULL, + '(E926.0) Exposure to radiofrequency radiation', '(E926.0) Exposure to radiofrequency radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.1) Exposure to infra-red radiation from heaters and lamps\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.1) Exposure to infra-red radiation from heaters and lamps\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E926.1''', NULL, + '(E926.1) Exposure to infra-red radiation from heaters and lamps', '(E926.1) Exposure to infra-red radiation from heaters and lamps', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.2) Exposure to visible and ultraviolet light sources\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.2) Exposure to visible and ultraviolet light sources\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E926.2''', NULL, + '(E926.2) Exposure to visible and ultraviolet light sources', '(E926.2) Exposure to visible and ultraviolet light sources', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.3) Exposure to x-rays and other electromagnetic ionizing radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.3) Exposure to x-rays and other electromagnetic ionizing radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E926.3''', NULL, + '(E926.3) Exposure to x-rays and other electromagnetic ionizing radiation', '(E926.3) Exposure to x-rays and other electromagnetic ionizing radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.4) Exposure to lasers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.4) Exposure to lasers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E926.4''', NULL, + '(E926.4) Exposure to lasers', '(E926.4) Exposure to lasers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.5) Exposure to radioactive isotopes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.5) Exposure to radioactive isotopes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E926.5''', NULL, + '(E926.5) Exposure to radioactive isotopes', '(E926.5) Exposure to radioactive isotopes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.8) Exposure to other specified radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.8) Exposure to other specified radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E926.8''', NULL, + '(E926.8) Exposure to other specified radiation', '(E926.8) Exposure to other specified radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.9) Exposure to unspecified radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Exposure to radiation (E926)\(E926.9) Exposure to unspecified radiation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E926.9''', NULL, + '(E926.9) Exposure to unspecified radiation', '(E926.9) Exposure to unspecified radiation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E928''', NULL, + 'Other and unspecified environmental and accidental causes (E928)', 'Other and unspecified environmental and accidental causes (E928)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.0) Prolonged stay in weightless environment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.0) Prolonged stay in weightless environment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E928.0''', NULL, + '(E928.0) Prolonged stay in weightless environment', '(E928.0) Prolonged stay in weightless environment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.1) Exposure to noise\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.1) Exposure to noise\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E928.1''', NULL, + '(E928.1) Exposure to noise', '(E928.1) Exposure to noise', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.2) Vibration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.2) Vibration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E928.2''', NULL, + '(E928.2) Vibration', '(E928.2) Vibration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.3) Human bite\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.3) Human bite\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E928.3''', NULL, + '(E928.3) Human bite', '(E928.3) Human bite', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.4) External constriction caused by hair\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.4) External constriction caused by hair\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E928.4''', NULL, + '(E928.4) External constriction caused by hair', '(E928.4) External constriction caused by hair', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.5) External constriction caused by other object\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.5) External constriction caused by other object\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E928.5''', NULL, + '(E928.5) External constriction caused by other object', '(E928.5) External constriction caused by other object', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.6) Environmental exposure to harmful algae and toxins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.6) Environmental exposure to harmful algae and toxins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E928.6''', NULL, + '(E928.6) Environmental exposure to harmful algae and toxins', '(E928.6) Environmental exposure to harmful algae and toxins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.8) Other accidents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.8) Other accidents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E928.8''', NULL, + '(E928.8) Other accidents', '(E928.8) Other accidents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.9) Unspecified accident\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Other and unspecified environmental and accidental causes (E928)\(E928.9) Unspecified accident\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E928.9''', NULL, + '(E928.9) Unspecified accident', '(E928.9) Unspecified accident', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E927''', NULL, + 'Overexertion and strenuous and repetitive movements or loads (E927)', 'Overexertion and strenuous and repetitive movements or loads (E927)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.0) Overexertion from sudden strenuous movement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.0) Overexertion from sudden strenuous movement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E927.0''', NULL, + '(E927.0) Overexertion from sudden strenuous movement', '(E927.0) Overexertion from sudden strenuous movement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.1) Overexertion from prolonged static position\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.1) Overexertion from prolonged static position\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E927.1''', NULL, + '(E927.1) Overexertion from prolonged static position', '(E927.1) Overexertion from prolonged static position', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.2) Excessive physical exertion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.2) Excessive physical exertion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E927.2''', NULL, + '(E927.2) Excessive physical exertion', '(E927.2) Excessive physical exertion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.3) Cumulative trauma from repetitive motion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.3) Cumulative trauma from repetitive motion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E927.3''', NULL, + '(E927.3) Cumulative trauma from repetitive motion', '(E927.3) Cumulative trauma from repetitive motion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.4) Cumulative trauma from repetitive impact\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.4) Cumulative trauma from repetitive impact\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E927.4''', NULL, + '(E927.4) Cumulative trauma from repetitive impact', '(E927.4) Cumulative trauma from repetitive impact', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.8) Other overexertion and strenuous and repetitive movements or loads\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.8) Other overexertion and strenuous and repetitive movements or loads\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E927.8''', NULL, + '(E927.8) Other overexertion and strenuous and repetitive movements or loads', '(E927.8) Other overexertion and strenuous and repetitive movements or loads', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.9) Unspecified overexertion and strenuous and repetitive movements or loads\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Overexertion and strenuous and repetitive movements or loads (E927)\(E927.9) Unspecified overexertion and strenuous and repetitive movements or loads\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E927.9''', NULL, + '(E927.9) Unspecified overexertion and strenuous and repetitive movements or loads', '(E927.9) Unspecified overexertion and strenuous and repetitive movements or loads', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E917''', NULL, + 'Striking against or struck accidentally by objects or persons (E917)', 'Striking against or struck accidentally by objects or persons (E917)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.0) Striking against or struck accidentally by objects or persons in sports\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.0) Striking against or struck accidentally by objects or persons in sports\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E917.0''', NULL, + '(E917.0) Striking against or struck accidentally by objects or persons in sports', '(E917.0) Striking against or struck accidentally by objects or persons in sports', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.1) Striking against or struck accidentally by a crowd, by collective fear or panic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.1) Striking against or struck accidentally by a crowd, by collective fear or panic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E917.1''', NULL, + '(E917.1) Striking against or struck accidentally by a crowd, by collective fear or panic', '(E917.1) Striking against or struck accidentally by a crowd, by collective fear or panic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.2) Striking against or struck accidentally in running water\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.2) Striking against or struck accidentally in running water\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E917.2''', NULL, + '(E917.2) Striking against or struck accidentally in running water', '(E917.2) Striking against or struck accidentally in running water', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.3) Striking against or struck accidentally by furniture without subsequent fall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.3) Striking against or struck accidentally by furniture without subsequent fall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E917.3''', NULL, + '(E917.3) Striking against or struck accidentally by furniture without subsequent fall', '(E917.3) Striking against or struck accidentally by furniture without subsequent fall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.4) Striking against or struck accidentally by other stationary object without subsequent fall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.4) Striking against or struck accidentally by other stationary object without subsequent fall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E917.4''', NULL, + '(E917.4) Striking against or struck accidentally by other stationary object without subsequent fall', '(E917.4) Striking against or struck accidentally by other stationary object without subsequent fall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.5) Striking against or struck accidentally by object in sports with subsequent fall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.5) Striking against or struck accidentally by object in sports with subsequent fall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E917.5''', NULL, + '(E917.5) Striking against or struck accidentally by object in sports with subsequent fall', '(E917.5) Striking against or struck accidentally by object in sports with subsequent fall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.6) Striking against or struck accidentally caused by a crowd, by collective fear or panic with subsequent fall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.6) Striking against or struck accidentally caused by a crowd, by collective fear or panic with subsequent fall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E917.6''', NULL, + '(E917.6) Striking against or struck accidentally caused by a crowd, by collective fear or panic with subsequent fall', '(E917.6) Striking against or struck accidentally caused by a crowd, by collective fear or panic with subsequent fall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.7) Striking against or struck accidentally by furniture with subsequent fall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.7) Striking against or struck accidentally by furniture with subsequent fall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E917.7''', NULL, + '(E917.7) Striking against or struck accidentally by furniture with subsequent fall', '(E917.7) Striking against or struck accidentally by furniture with subsequent fall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.8) Striking against or struck accidentally by other stationary object with subsequent fall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.8) Striking against or struck accidentally by other stationary object with subsequent fall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E917.8''', NULL, + '(E917.8) Striking against or struck accidentally by other stationary object with subsequent fall', '(E917.8) Striking against or struck accidentally by other stationary object with subsequent fall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.9) Other accident caused by striking against or being struck accidentally by objects or persons\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Other accidents (E916-E928.9)\Striking against or struck accidentally by objects or persons (E917)\(E917.9) Other accident caused by striking against or being struck accidentally by objects or persons\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E917.9''', NULL, + '(E917.9) Other accident caused by striking against or being struck accidentally by objects or persons', '(E917.9) Other accident caused by striking against or being struck accidentally by objects or persons', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E849'' AND ''E849.9''', NULL, + 'Place of occurrence (E849-E849.9)', 'Place of occurrence (E849-E849.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.0) Home accidents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.0) Home accidents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E849.0''', NULL, + '(E849.0) Home accidents', '(E849.0) Home accidents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.1) Farm accidents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.1) Farm accidents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E849.1''', NULL, + '(E849.1) Farm accidents', '(E849.1) Farm accidents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.2) Mine and quarry accidents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.2) Mine and quarry accidents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E849.2''', NULL, + '(E849.2) Mine and quarry accidents', '(E849.2) Mine and quarry accidents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.3) Accidents occurring in industrial places and premises\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.3) Accidents occurring in industrial places and premises\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E849.3''', NULL, + '(E849.3) Accidents occurring in industrial places and premises', '(E849.3) Accidents occurring in industrial places and premises', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.4) Accidents occurring in place for recreation and sport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.4) Accidents occurring in place for recreation and sport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E849.4''', NULL, + '(E849.4) Accidents occurring in place for recreation and sport', '(E849.4) Accidents occurring in place for recreation and sport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.5) Street and highway accidents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.5) Street and highway accidents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E849.5''', NULL, + '(E849.5) Street and highway accidents', '(E849.5) Street and highway accidents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.6) Accidents occurring in public building\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.6) Accidents occurring in public building\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E849.6''', NULL, + '(E849.6) Accidents occurring in public building', '(E849.6) Accidents occurring in public building', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.7) Accidents occurring in residential institution\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.7) Accidents occurring in residential institution\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E849.7''', NULL, + '(E849.7) Accidents occurring in residential institution', '(E849.7) Accidents occurring in residential institution', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.8) Accidents occurring in other specified places\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.8) Accidents occurring in other specified places\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E849.8''', NULL, + '(E849.8) Accidents occurring in other specified places', '(E849.8) Accidents occurring in other specified places', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.9) Accidents occurring in unspecified place\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Place of occurrence (E849-E849.9)\(E849.9) Accidents occurring in unspecified place\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E849.9''', NULL, + '(E849.9) Accidents occurring in unspecified place', '(E849.9) Accidents occurring in unspecified place', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E950'' AND ''E959.9''', NULL, + 'Suicide and self-inflicted injury (E950-E959.9)', 'Suicide and self-inflicted injury (E950-E959.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\(E954) Suicide and self-inflicted injury by submersion [drowning]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\(E954) Suicide and self-inflicted injury by submersion [drowning]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E954''', NULL, + '(E954) Suicide and self-inflicted injury by submersion [drowning]', '(E954) Suicide and self-inflicted injury by submersion [drowning]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\(E956) Suicide and self-inflicted injury by cutting and piercing instrument\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\(E956) Suicide and self-inflicted injury by cutting and piercing instrument\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E956''', NULL, + '(E956) Suicide and self-inflicted injury by cutting and piercing instrument', '(E956) Suicide and self-inflicted injury by cutting and piercing instrument', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\(E959) Late effects of self-inflicted injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\(E959) Late effects of self-inflicted injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E959''', NULL, + '(E959) Late effects of self-inflicted injury', '(E959) Late effects of self-inflicted injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E957''', NULL, + 'Suicide and self-inflicted injuries by jumping from high place (E957)', 'Suicide and self-inflicted injuries by jumping from high place (E957)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\(E957.0) Suicide and self-inflicted injuries by jumping from residential premises\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\(E957.0) Suicide and self-inflicted injuries by jumping from residential premises\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E957.0''', NULL, + '(E957.0) Suicide and self-inflicted injuries by jumping from residential premises', '(E957.0) Suicide and self-inflicted injuries by jumping from residential premises', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\(E957.1) Suicide and self-inflicted injuries by jumping from other man-made structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\(E957.1) Suicide and self-inflicted injuries by jumping from other man-made structures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E957.1''', NULL, + '(E957.1) Suicide and self-inflicted injuries by jumping from other man-made structures', '(E957.1) Suicide and self-inflicted injuries by jumping from other man-made structures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\(E957.2) Suicide and self-inflicted injuries by jumping from natural sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\(E957.2) Suicide and self-inflicted injuries by jumping from natural sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E957.2''', NULL, + '(E957.2) Suicide and self-inflicted injuries by jumping from natural sites', '(E957.2) Suicide and self-inflicted injuries by jumping from natural sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\(E957.9) Suicide and self-inflicted injuries by jumping from unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injuries by jumping from high place (E957)\(E957.9) Suicide and self-inflicted injuries by jumping from unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E957.9''', NULL, + '(E957.9) Suicide and self-inflicted injuries by jumping from unspecified site', '(E957.9) Suicide and self-inflicted injuries by jumping from unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E955''', NULL, + 'Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)', 'Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.0) Suicide and self-inflicted injury by handgun\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.0) Suicide and self-inflicted injury by handgun\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E955.0''', NULL, + '(E955.0) Suicide and self-inflicted injury by handgun', '(E955.0) Suicide and self-inflicted injury by handgun', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.1) Suicide and self-inflicted injury by shotgun\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.1) Suicide and self-inflicted injury by shotgun\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E955.1''', NULL, + '(E955.1) Suicide and self-inflicted injury by shotgun', '(E955.1) Suicide and self-inflicted injury by shotgun', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.2) Suicide and self-inflicted injury by hunting rifle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.2) Suicide and self-inflicted injury by hunting rifle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E955.2''', NULL, + '(E955.2) Suicide and self-inflicted injury by hunting rifle', '(E955.2) Suicide and self-inflicted injury by hunting rifle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.3) Suicide and self-inflicted injury by military firearms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.3) Suicide and self-inflicted injury by military firearms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E955.3''', NULL, + '(E955.3) Suicide and self-inflicted injury by military firearms', '(E955.3) Suicide and self-inflicted injury by military firearms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.4) Suicide and self-inflicted injury by other and unspecified firearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.4) Suicide and self-inflicted injury by other and unspecified firearm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E955.4''', NULL, + '(E955.4) Suicide and self-inflicted injury by other and unspecified firearm', '(E955.4) Suicide and self-inflicted injury by other and unspecified firearm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.5) Suicide and self-inflicted injury by explosives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.5) Suicide and self-inflicted injury by explosives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E955.5''', NULL, + '(E955.5) Suicide and self-inflicted injury by explosives', '(E955.5) Suicide and self-inflicted injury by explosives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.6) Suicide and self-inflicted injury by air gun\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.6) Suicide and self-inflicted injury by air gun\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E955.6''', NULL, + '(E955.6) Suicide and self-inflicted injury by air gun', '(E955.6) Suicide and self-inflicted injury by air gun', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.7) Suicide and self-inflicted injury by paintball gun\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.7) Suicide and self-inflicted injury by paintball gun\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E955.7''', NULL, + '(E955.7) Suicide and self-inflicted injury by paintball gun', '(E955.7) Suicide and self-inflicted injury by paintball gun', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.9) Suicide and self-inflicted injury by firearms and explosives, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\(E955.9) Suicide and self-inflicted injury by firearms and explosives, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E955.9''', NULL, + '(E955.9) Suicide and self-inflicted injury by firearms and explosives, unspecified', '(E955.9) Suicide and self-inflicted injury by firearms and explosives, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E953''', NULL, + 'Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)', 'Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\(E953.0) Suicide and self-inflicted injury by hanging\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\(E953.0) Suicide and self-inflicted injury by hanging\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E953.0''', NULL, + '(E953.0) Suicide and self-inflicted injury by hanging', '(E953.0) Suicide and self-inflicted injury by hanging', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\(E953.1) Suicide and self-inflicted injury by suffocation by plastic bag\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\(E953.1) Suicide and self-inflicted injury by suffocation by plastic bag\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E953.1''', NULL, + '(E953.1) Suicide and self-inflicted injury by suffocation by plastic bag', '(E953.1) Suicide and self-inflicted injury by suffocation by plastic bag', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\(E953.8) Suicide and self-inflicted injury by other specified means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\(E953.8) Suicide and self-inflicted injury by other specified means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E953.8''', NULL, + '(E953.8) Suicide and self-inflicted injury by other specified means', '(E953.8) Suicide and self-inflicted injury by other specified means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\(E953.9) Suicide and self-inflicted injury by unspecified means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\(E953.9) Suicide and self-inflicted injury by unspecified means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E953.9''', NULL, + '(E953.9) Suicide and self-inflicted injury by unspecified means', '(E953.9) Suicide and self-inflicted injury by unspecified means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E958''', NULL, + 'Suicide and self-inflicted injury by other and unspecified means (E958)', 'Suicide and self-inflicted injury by other and unspecified means (E958)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.0) Suicide and self-inflicted injury by jumping or lying before moving object\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.0) Suicide and self-inflicted injury by jumping or lying before moving object\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E958.0''', NULL, + '(E958.0) Suicide and self-inflicted injury by jumping or lying before moving object', '(E958.0) Suicide and self-inflicted injury by jumping or lying before moving object', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.1) Suicide and self-inflicted injury by burns, fire\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.1) Suicide and self-inflicted injury by burns, fire\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E958.1''', NULL, + '(E958.1) Suicide and self-inflicted injury by burns, fire', '(E958.1) Suicide and self-inflicted injury by burns, fire', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.2) Suicide and self-inflicted injury by scald\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.2) Suicide and self-inflicted injury by scald\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E958.2''', NULL, + '(E958.2) Suicide and self-inflicted injury by scald', '(E958.2) Suicide and self-inflicted injury by scald', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.3) Suicide and self-inflicted injury by extremes of cold\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.3) Suicide and self-inflicted injury by extremes of cold\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E958.3''', NULL, + '(E958.3) Suicide and self-inflicted injury by extremes of cold', '(E958.3) Suicide and self-inflicted injury by extremes of cold', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.4) Suicide and self-inflicted injury by electrocution\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.4) Suicide and self-inflicted injury by electrocution\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E958.4''', NULL, + '(E958.4) Suicide and self-inflicted injury by electrocution', '(E958.4) Suicide and self-inflicted injury by electrocution', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.5) Suicide and self-inflicted injury by crashing of motor vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.5) Suicide and self-inflicted injury by crashing of motor vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E958.5''', NULL, + '(E958.5) Suicide and self-inflicted injury by crashing of motor vehicle', '(E958.5) Suicide and self-inflicted injury by crashing of motor vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.6) Suicide and self-inflicted injury by crashing of aircraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.6) Suicide and self-inflicted injury by crashing of aircraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E958.6''', NULL, + '(E958.6) Suicide and self-inflicted injury by crashing of aircraft', '(E958.6) Suicide and self-inflicted injury by crashing of aircraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.7) Suicide and self-inflicted injury by caustic substances, except poisoning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.7) Suicide and self-inflicted injury by caustic substances, except poisoning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E958.7''', NULL, + '(E958.7) Suicide and self-inflicted injury by caustic substances, except poisoning', '(E958.7) Suicide and self-inflicted injury by caustic substances, except poisoning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.8) Suicide and self-inflicted injury by other specified means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.8) Suicide and self-inflicted injury by other specified means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E958.8''', NULL, + '(E958.8) Suicide and self-inflicted injury by other specified means', '(E958.8) Suicide and self-inflicted injury by other specified means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.9) Suicide and self-inflicted injury by unspecified means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted injury by other and unspecified means (E958)\(E958.9) Suicide and self-inflicted injury by unspecified means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E958.9''', NULL, + '(E958.9) Suicide and self-inflicted injury by unspecified means', '(E958.9) Suicide and self-inflicted injury by unspecified means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by gases in domestic use (E951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by gases in domestic use (E951)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E951''', NULL, + 'Suicide and self-inflicted poisoning by gases in domestic use (E951)', 'Suicide and self-inflicted poisoning by gases in domestic use (E951)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by gases in domestic use (E951)\(E951.0) Suicide and self-inflicted poisoning by gas distributed by pipeline\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by gases in domestic use (E951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by gases in domestic use (E951)\(E951.0) Suicide and self-inflicted poisoning by gas distributed by pipeline\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E951.0''', NULL, + '(E951.0) Suicide and self-inflicted poisoning by gas distributed by pipeline', '(E951.0) Suicide and self-inflicted poisoning by gas distributed by pipeline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by gases in domestic use (E951)\(E951.1) Suicide and self-inflicted poisoning by liquefied petroleum gas distributed in mobile containers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by gases in domestic use (E951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by gases in domestic use (E951)\(E951.1) Suicide and self-inflicted poisoning by liquefied petroleum gas distributed in mobile containers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E951.1''', NULL, + '(E951.1) Suicide and self-inflicted poisoning by liquefied petroleum gas distributed in mobile containers', '(E951.1) Suicide and self-inflicted poisoning by liquefied petroleum gas distributed in mobile containers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by gases in domestic use (E951)\(E951.8) Suicide and self-inflicted poisoning by other utility gas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by gases in domestic use (E951)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by gases in domestic use (E951)\(E951.8) Suicide and self-inflicted poisoning by other utility gas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E951.8''', NULL, + '(E951.8) Suicide and self-inflicted poisoning by other utility gas', '(E951.8) Suicide and self-inflicted poisoning by other utility gas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E952''', NULL, + 'Suicide and self-inflicted poisoning by other gases and vapors (E952)', 'Suicide and self-inflicted poisoning by other gases and vapors (E952)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\(E952.0) Suicide and self-inflicted poisoning by motor vehicle exhaust gas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\(E952.0) Suicide and self-inflicted poisoning by motor vehicle exhaust gas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E952.0''', NULL, + '(E952.0) Suicide and self-inflicted poisoning by motor vehicle exhaust gas', '(E952.0) Suicide and self-inflicted poisoning by motor vehicle exhaust gas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\(E952.1) Suicide and self-inflicted poisoning by other carbon monoxide\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\(E952.1) Suicide and self-inflicted poisoning by other carbon monoxide\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E952.1''', NULL, + '(E952.1) Suicide and self-inflicted poisoning by other carbon monoxide', '(E952.1) Suicide and self-inflicted poisoning by other carbon monoxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\(E952.8) Suicide and self-inflicted poisoning by other specified gases and vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\(E952.8) Suicide and self-inflicted poisoning by other specified gases and vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E952.8''', NULL, + '(E952.8) Suicide and self-inflicted poisoning by other specified gases and vapors', '(E952.8) Suicide and self-inflicted poisoning by other specified gases and vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\(E952.9) Suicide and self-inflicted poisoning by unspecified gases and vapors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by other gases and vapors (E952)\(E952.9) Suicide and self-inflicted poisoning by unspecified gases and vapors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E952.9''', NULL, + '(E952.9) Suicide and self-inflicted poisoning by unspecified gases and vapors', '(E952.9) Suicide and self-inflicted poisoning by unspecified gases and vapors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E950''', NULL, + 'Suicide and self-inflicted poisoning by solid or liquid substances (E950)', 'Suicide and self-inflicted poisoning by solid or liquid substances (E950)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.0) Suicide and self-inflicted poisoning by analgesics, antipyretics, and antirheumatics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.0) Suicide and self-inflicted poisoning by analgesics, antipyretics, and antirheumatics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E950.0''', NULL, + '(E950.0) Suicide and self-inflicted poisoning by analgesics, antipyretics, and antirheumatics', '(E950.0) Suicide and self-inflicted poisoning by analgesics, antipyretics, and antirheumatics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.1) Suicide and self-inflicted poisoning by barbiturates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.1) Suicide and self-inflicted poisoning by barbiturates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E950.1''', NULL, + '(E950.1) Suicide and self-inflicted poisoning by barbiturates', '(E950.1) Suicide and self-inflicted poisoning by barbiturates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.2) Suicide and self-inflicted poisoning by other sedatives and hypnotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.2) Suicide and self-inflicted poisoning by other sedatives and hypnotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E950.2''', NULL, + '(E950.2) Suicide and self-inflicted poisoning by other sedatives and hypnotics', '(E950.2) Suicide and self-inflicted poisoning by other sedatives and hypnotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.3) Suicide and self-inflicted poisoning by tranquilizers and other psychotropic agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.3) Suicide and self-inflicted poisoning by tranquilizers and other psychotropic agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E950.3''', NULL, + '(E950.3) Suicide and self-inflicted poisoning by tranquilizers and other psychotropic agents', '(E950.3) Suicide and self-inflicted poisoning by tranquilizers and other psychotropic agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.4) Suicide and self-inflicted poisoning by other specified drugs and medicinal substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.4) Suicide and self-inflicted poisoning by other specified drugs and medicinal substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E950.4''', NULL, + '(E950.4) Suicide and self-inflicted poisoning by other specified drugs and medicinal substances', '(E950.4) Suicide and self-inflicted poisoning by other specified drugs and medicinal substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.5) Suicide and self-inflicted poisoning by unspecified drug or medicinal substance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.5) Suicide and self-inflicted poisoning by unspecified drug or medicinal substance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E950.5''', NULL, + '(E950.5) Suicide and self-inflicted poisoning by unspecified drug or medicinal substance', '(E950.5) Suicide and self-inflicted poisoning by unspecified drug or medicinal substance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.6) Suicide and self-inflicted poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.6) Suicide and self-inflicted poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E950.6''', NULL, + '(E950.6) Suicide and self-inflicted poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers', '(E950.6) Suicide and self-inflicted poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.7) Suicide and self-inflicted poisoning by corrosive and caustic substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.7) Suicide and self-inflicted poisoning by corrosive and caustic substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E950.7''', NULL, + '(E950.7) Suicide and self-inflicted poisoning by corrosive and caustic substances', '(E950.7) Suicide and self-inflicted poisoning by corrosive and caustic substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.8) Suicide and self-inflicted poisoning by arsenic and its compounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.8) Suicide and self-inflicted poisoning by arsenic and its compounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E950.8''', NULL, + '(E950.8) Suicide and self-inflicted poisoning by arsenic and its compounds', '(E950.8) Suicide and self-inflicted poisoning by arsenic and its compounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.9) Suicide and self-inflicted poisoning by other and unspecified solid and liquid substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Suicide and self-inflicted injury (E950-E959.9)\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\(E950.9) Suicide and self-inflicted poisoning by other and unspecified solid and liquid substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E950.9''', NULL, + '(E950.9) Suicide and self-inflicted poisoning by other and unspecified solid and liquid substances', '(E950.9) Suicide and self-inflicted poisoning by other and unspecified solid and liquid substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E878'' AND ''E879.9''', NULL, + 'Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)', 'Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E879''', NULL, + 'Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)', 'Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.0) Cardiac catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.0) Cardiac catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E879.0''', NULL, + '(E879.0) Cardiac catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', '(E879.0) Cardiac catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.1) Kidney dialysis as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.1) Kidney dialysis as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E879.1''', NULL, + '(E879.1) Kidney dialysis as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', '(E879.1) Kidney dialysis as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.2) Radiological procedure and radiotherapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.2) Radiological procedure and radiotherapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E879.2''', NULL, + '(E879.2) Radiological procedure and radiotherapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', '(E879.2) Radiological procedure and radiotherapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.3) Shock therapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.3) Shock therapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E879.3''', NULL, + '(E879.3) Shock therapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', '(E879.3) Shock therapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.4) Aspiration of fluid as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.4) Aspiration of fluid as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E879.4''', NULL, + '(E879.4) Aspiration of fluid as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', '(E879.4) Aspiration of fluid as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.5) Insertion of gastric or duodenal sound as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure of time of procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.5) Insertion of gastric or duodenal sound as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure of time of procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E879.5''', NULL, + '(E879.5) Insertion of gastric or duodenal sound as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure of time of procedure', '(E879.5) Insertion of gastric or duodenal sound as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure of time of procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.6) Urinary catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.6) Urinary catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E879.6''', NULL, + '(E879.6) Urinary catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', '(E879.6) Urinary catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.7) Blood sampling as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.7) Blood sampling as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E879.7''', NULL, + '(E879.7) Blood sampling as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', '(E879.7) Blood sampling as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.8) Other specified procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.8) Other specified procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E879.8''', NULL, + '(E879.8) Other specified procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', '(E879.8) Other specified procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.9) Unspecified procedure as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\(E879.9) Unspecified procedure as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E879.9''', NULL, + '(E879.9) Unspecified procedure as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', '(E879.9) Unspecified procedure as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E878''', NULL, + 'Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)', 'Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.0) Surgical operation with transplant of whole organ causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.0) Surgical operation with transplant of whole organ causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E878.0''', NULL, + '(E878.0) Surgical operation with transplant of whole organ causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', '(E878.0) Surgical operation with transplant of whole organ causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.1) Surgical operation with implant of artificial internal device causing abnormal patient reaction, or later complication,without mention of misadventure at time of operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.1) Surgical operation with implant of artificial internal device causing abnormal patient reaction, or later complication,without mention of misadventure at time of operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E878.1''', NULL, + '(E878.1) Surgical operation with implant of artificial internal device causing abnormal patient reaction, or later complication,without mention of misadventure at time of operation', '(E878.1) Surgical operation with implant of artificial internal device causing abnormal patient reaction, or later complication,without mention of misadventure at time of operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.2) Surgical operation with anastomosis, bypass, or graft, with natural or artificial tissues used as implant causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.2) Surgical operation with anastomosis, bypass, or graft, with natural or artificial tissues used as implant causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E878.2''', NULL, + '(E878.2) Surgical operation with anastomosis, bypass, or graft, with natural or artificial tissues used as implant causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', '(E878.2) Surgical operation with anastomosis, bypass, or graft, with natural or artificial tissues used as implant causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.3) Surgical operation with formation of external stoma causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.3) Surgical operation with formation of external stoma causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E878.3''', NULL, + '(E878.3) Surgical operation with formation of external stoma causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', '(E878.3) Surgical operation with formation of external stoma causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.4) Other restorative surgery causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.4) Other restorative surgery causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E878.4''', NULL, + '(E878.4) Other restorative surgery causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', '(E878.4) Other restorative surgery causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.5) Amputation of limb(s) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.5) Amputation of limb(s) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E878.5) Amputation of limb(s''', NULL, + '(E878.5) Amputation of limb(s) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', '(E878.5) Amputation of limb(s) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.6) Removal of other organ (partial) (total) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.6) Removal of other organ (partial) (total) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E878.6) Removal of other organ (partial) (total''', NULL, + '(E878.6) Removal of other organ (partial) (total) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', '(E878.6) Removal of other organ (partial) (total) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.8) Other specified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.8) Other specified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E878.8''', NULL, + '(E878.8) Other specified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', '(E878.8) Other specified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.9) Unspecified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\(E878.9) Unspecified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E878.9''', NULL, + '(E878.9) Unspecified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', '(E878.9) Unspecified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E979'' AND ''E979.9''', NULL, + 'Terrorism (E979-E979.9)', 'Terrorism (E979-E979.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E979''', NULL, + 'Terrorism (E979)', 'Terrorism (E979)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.0) Terrorism involving explosion of marine weapons\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.0) Terrorism involving explosion of marine weapons\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E979.0''', NULL, + '(E979.0) Terrorism involving explosion of marine weapons', '(E979.0) Terrorism involving explosion of marine weapons', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.1) Terrorism involving destruction of aircraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.1) Terrorism involving destruction of aircraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E979.1''', NULL, + '(E979.1) Terrorism involving destruction of aircraft', '(E979.1) Terrorism involving destruction of aircraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.2) Terrorism involving other explosions and fragments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.2) Terrorism involving other explosions and fragments\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E979.2''', NULL, + '(E979.2) Terrorism involving other explosions and fragments', '(E979.2) Terrorism involving other explosions and fragments', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.3) Terrorism involving fires\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.3) Terrorism involving fires\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E979.3''', NULL, + '(E979.3) Terrorism involving fires', '(E979.3) Terrorism involving fires', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.4) Terrorism involving firearms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.4) Terrorism involving firearms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E979.4''', NULL, + '(E979.4) Terrorism involving firearms', '(E979.4) Terrorism involving firearms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.5) Terrorism involving nuclear weapons\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.5) Terrorism involving nuclear weapons\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E979.5''', NULL, + '(E979.5) Terrorism involving nuclear weapons', '(E979.5) Terrorism involving nuclear weapons', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.6) Terrorism involving biological weapons\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.6) Terrorism involving biological weapons\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E979.6''', NULL, + '(E979.6) Terrorism involving biological weapons', '(E979.6) Terrorism involving biological weapons', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.7) Terrorism involving chemical weapons\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.7) Terrorism involving chemical weapons\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E979.7''', NULL, + '(E979.7) Terrorism involving chemical weapons', '(E979.7) Terrorism involving chemical weapons', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.8) Terrorism involving other means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.8) Terrorism involving other means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E979.8''', NULL, + '(E979.8) Terrorism involving other means', '(E979.8) Terrorism involving other means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.9) Terrorism secondary effects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Terrorism (E979-E979.9)\Terrorism (E979)\(E979.9) Terrorism secondary effects\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E979.9''', NULL, + '(E979.9) Terrorism secondary effects', '(E979.9) Terrorism secondary effects', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E800'' AND ''E848.9''', NULL, + 'Transport accidents (E800-E848.9)', 'Transport accidents (E800-E848.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E840'' AND ''E845.9''', NULL, + 'AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)', 'AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident involving spacecraft (E845)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident involving spacecraft (E845)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E845''', NULL, + 'Accident involving spacecraft (E845)', 'Accident involving spacecraft (E845)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident involving spacecraft (E845)\(E845.0) Accident involving spacecraft injuring occupant of spacecraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident involving spacecraft (E845)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident involving spacecraft (E845)\(E845.0) Accident involving spacecraft injuring occupant of spacecraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E845.0''', NULL, + '(E845.0) Accident involving spacecraft injuring occupant of spacecraft', '(E845.0) Accident involving spacecraft injuring occupant of spacecraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident involving spacecraft (E845)\(E845.8) Accident involving spacecraft injuring ground crew, airline employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident involving spacecraft (E845)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident involving spacecraft (E845)\(E845.8) Accident involving spacecraft injuring ground crew, airline employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E845.8''', NULL, + '(E845.8) Accident involving spacecraft injuring ground crew, airline employee', '(E845.8) Accident involving spacecraft injuring ground crew, airline employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident involving spacecraft (E845)\(E845.9) Accident involving spacecraft injuring other person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident involving spacecraft (E845)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident involving spacecraft (E845)\(E845.9) Accident involving spacecraft injuring other person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E845.9''', NULL, + '(E845.9) Accident involving spacecraft injuring other person', '(E845.9) Accident involving spacecraft injuring other person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E840''', NULL, + 'Accident to powered aircraft at takeoff or landing (E840)', 'Accident to powered aircraft at takeoff or landing (E840)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.0) Accident to powered aircraft at takeoff or landing injuring occupant of spacecraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.0) Accident to powered aircraft at takeoff or landing injuring occupant of spacecraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E840.0''', NULL, + '(E840.0) Accident to powered aircraft at takeoff or landing injuring occupant of spacecraft', '(E840.0) Accident to powered aircraft at takeoff or landing injuring occupant of spacecraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.1) Accident to powered aircraft at takeoff or landing injuring occupant of military aircraft, any\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.1) Accident to powered aircraft at takeoff or landing injuring occupant of military aircraft, any\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E840.1''', NULL, + '(E840.1) Accident to powered aircraft at takeoff or landing injuring occupant of military aircraft, any', '(E840.1) Accident to powered aircraft at takeoff or landing injuring occupant of military aircraft, any', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.2) Accident to powered aircraft at takeoff or landing injuring crew of commercial aircraft (powered) in surface to surface transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.2) Accident to powered aircraft at takeoff or landing injuring crew of commercial aircraft (powered) in surface to surface transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E840.2) Accident to powered aircraft at takeoff or landing injuring crew of commercial aircraft (powered''', NULL, + '(E840.2) Accident to powered aircraft at takeoff or landing injuring crew of commercial aircraft (powered) in surface to surface transport', '(E840.2) Accident to powered aircraft at takeoff or landing injuring crew of commercial aircraft (powered) in surface to surface transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.3) Accident to powered aircraft at takeoff or landing injuring other occupant of commercial aircraft (powered) in surface to surface transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.3) Accident to powered aircraft at takeoff or landing injuring other occupant of commercial aircraft (powered) in surface to surface transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E840.3) Accident to powered aircraft at takeoff or landing injuring other occupant of commercial aircraft (powered''', NULL, + '(E840.3) Accident to powered aircraft at takeoff or landing injuring other occupant of commercial aircraft (powered) in surface to surface transport', '(E840.3) Accident to powered aircraft at takeoff or landing injuring other occupant of commercial aircraft (powered) in surface to surface transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.4) Accident to powered aircraft at takeoff or landing injuring occupant of commercial aircraft (powered) in surface to air transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.4) Accident to powered aircraft at takeoff or landing injuring occupant of commercial aircraft (powered) in surface to air transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E840.4) Accident to powered aircraft at takeoff or landing injuring occupant of commercial aircraft (powered''', NULL, + '(E840.4) Accident to powered aircraft at takeoff or landing injuring occupant of commercial aircraft (powered) in surface to air transport', '(E840.4) Accident to powered aircraft at takeoff or landing injuring occupant of commercial aircraft (powered) in surface to air transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.5) Accident to powered aircraft at takeoff or landing injuring occupant of other powered aircraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.5) Accident to powered aircraft at takeoff or landing injuring occupant of other powered aircraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E840.5''', NULL, + '(E840.5) Accident to powered aircraft at takeoff or landing injuring occupant of other powered aircraft', '(E840.5) Accident to powered aircraft at takeoff or landing injuring occupant of other powered aircraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.6) Accident to powered aircraft at takeoff or landing injuring occupant of unpowered aircraft, except parachutist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.6) Accident to powered aircraft at takeoff or landing injuring occupant of unpowered aircraft, except parachutist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E840.6''', NULL, + '(E840.6) Accident to powered aircraft at takeoff or landing injuring occupant of unpowered aircraft, except parachutist', '(E840.6) Accident to powered aircraft at takeoff or landing injuring occupant of unpowered aircraft, except parachutist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.7) Accident to powered aircraft at takeoff or landing injuring parachutist (military) (other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.7) Accident to powered aircraft at takeoff or landing injuring parachutist (military) (other)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E840.7) Accident to powered aircraft at takeoff or landing injuring parachutist (military) (other''', NULL, + '(E840.7) Accident to powered aircraft at takeoff or landing injuring parachutist (military) (other)', '(E840.7) Accident to powered aircraft at takeoff or landing injuring parachutist (military) (other)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.8) Accident to powered aircraft at takeoff or landing injuring ground crew, airline employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.8) Accident to powered aircraft at takeoff or landing injuring ground crew, airline employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E840.8''', NULL, + '(E840.8) Accident to powered aircraft at takeoff or landing injuring ground crew, airline employee', '(E840.8) Accident to powered aircraft at takeoff or landing injuring ground crew, airline employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.9) Accident to powered aircraft at takeoff or landing injuring other person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft at takeoff or landing (E840)\(E840.9) Accident to powered aircraft at takeoff or landing injuring other person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E840.9''', NULL, + '(E840.9) Accident to powered aircraft at takeoff or landing injuring other person', '(E840.9) Accident to powered aircraft at takeoff or landing injuring other person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E841''', NULL, + 'Accident to powered aircraft, other and unspecified (E841)', 'Accident to powered aircraft, other and unspecified (E841)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.0) Accident to powered aircraft, other and unspecified, injuring occupant of spacecraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.0) Accident to powered aircraft, other and unspecified, injuring occupant of spacecraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E841.0''', NULL, + '(E841.0) Accident to powered aircraft, other and unspecified, injuring occupant of spacecraft', '(E841.0) Accident to powered aircraft, other and unspecified, injuring occupant of spacecraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.1) Accident to powered aircraft, other and unspecified, injuring occupant of military aircraft, any\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.1) Accident to powered aircraft, other and unspecified, injuring occupant of military aircraft, any\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E841.1''', NULL, + '(E841.1) Accident to powered aircraft, other and unspecified, injuring occupant of military aircraft, any', '(E841.1) Accident to powered aircraft, other and unspecified, injuring occupant of military aircraft, any', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.2) Accident to powered aircraft, other and unspecified, injuring crew of commercial aircraft (powered) in surface to surface transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.2) Accident to powered aircraft, other and unspecified, injuring crew of commercial aircraft (powered) in surface to surface transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E841.2) Accident to powered aircraft, other and unspecified, injuring crew of commercial aircraft (powered''', NULL, + '(E841.2) Accident to powered aircraft, other and unspecified, injuring crew of commercial aircraft (powered) in surface to surface transport', '(E841.2) Accident to powered aircraft, other and unspecified, injuring crew of commercial aircraft (powered) in surface to surface transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.3) Accident to powered aircraft, other and unspecified, injuring other occupant of commercial aircraft (powered) in surface to surface transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.3) Accident to powered aircraft, other and unspecified, injuring other occupant of commercial aircraft (powered) in surface to surface transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E841.3) Accident to powered aircraft, other and unspecified, injuring other occupant of commercial aircraft (powered''', NULL, + '(E841.3) Accident to powered aircraft, other and unspecified, injuring other occupant of commercial aircraft (powered) in surface to surface transport', '(E841.3) Accident to powered aircraft, other and unspecified, injuring other occupant of commercial aircraft (powered) in surface to surface transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.4) Accident to powered aircraft, other and unspecified, injuring occupant of commercial aircraft (powered) in surface to air transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.4) Accident to powered aircraft, other and unspecified, injuring occupant of commercial aircraft (powered) in surface to air transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E841.4) Accident to powered aircraft, other and unspecified, injuring occupant of commercial aircraft (powered''', NULL, + '(E841.4) Accident to powered aircraft, other and unspecified, injuring occupant of commercial aircraft (powered) in surface to air transport', '(E841.4) Accident to powered aircraft, other and unspecified, injuring occupant of commercial aircraft (powered) in surface to air transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.5) Accident to powered aircraft, other and unspecified, injuring occupant of other powered aircraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.5) Accident to powered aircraft, other and unspecified, injuring occupant of other powered aircraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E841.5''', NULL, + '(E841.5) Accident to powered aircraft, other and unspecified, injuring occupant of other powered aircraft', '(E841.5) Accident to powered aircraft, other and unspecified, injuring occupant of other powered aircraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.6) Accident to powered aircraft, other and unspecified, injuring occupant of unpowered aircraft, except parachutist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.6) Accident to powered aircraft, other and unspecified, injuring occupant of unpowered aircraft, except parachutist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E841.6''', NULL, + '(E841.6) Accident to powered aircraft, other and unspecified, injuring occupant of unpowered aircraft, except parachutist', '(E841.6) Accident to powered aircraft, other and unspecified, injuring occupant of unpowered aircraft, except parachutist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.7) Accident to powered aircraft, other and unspecified, injuring parachutist (military) (other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.7) Accident to powered aircraft, other and unspecified, injuring parachutist (military) (other)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E841.7) Accident to powered aircraft, other and unspecified, injuring parachutist (military) (other''', NULL, + '(E841.7) Accident to powered aircraft, other and unspecified, injuring parachutist (military) (other)', '(E841.7) Accident to powered aircraft, other and unspecified, injuring parachutist (military) (other)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.8) Accident to powered aircraft, other and unspecified, injuring ground crew, airline employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.8) Accident to powered aircraft, other and unspecified, injuring ground crew, airline employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E841.8''', NULL, + '(E841.8) Accident to powered aircraft, other and unspecified, injuring ground crew, airline employee', '(E841.8) Accident to powered aircraft, other and unspecified, injuring ground crew, airline employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.9) Accident to powered aircraft, other and unspecified, injuring other person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to powered aircraft, other and unspecified (E841)\(E841.9) Accident to powered aircraft, other and unspecified, injuring other person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E841.9''', NULL, + '(E841.9) Accident to powered aircraft, other and unspecified, injuring other person', '(E841.9) Accident to powered aircraft, other and unspecified, injuring other person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E842''', NULL, + 'Accident to unpowered aircraft (E842)', 'Accident to unpowered aircraft (E842)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\(E842.6) Accident to unpowered aircraft injuring occupant of unpowered aircraft, except parachutist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\(E842.6) Accident to unpowered aircraft injuring occupant of unpowered aircraft, except parachutist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E842.6''', NULL, + '(E842.6) Accident to unpowered aircraft injuring occupant of unpowered aircraft, except parachutist', '(E842.6) Accident to unpowered aircraft injuring occupant of unpowered aircraft, except parachutist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\(E842.7) Accident to unpowered aircraft injuring parachutist (military) (other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\(E842.7) Accident to unpowered aircraft injuring parachutist (military) (other)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E842.7) Accident to unpowered aircraft injuring parachutist (military) (other''', NULL, + '(E842.7) Accident to unpowered aircraft injuring parachutist (military) (other)', '(E842.7) Accident to unpowered aircraft injuring parachutist (military) (other)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\(E842.8) Accident to unpowered aircraft injuring ground crew, airline employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\(E842.8) Accident to unpowered aircraft injuring ground crew, airline employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E842.8''', NULL, + '(E842.8) Accident to unpowered aircraft injuring ground crew, airline employee', '(E842.8) Accident to unpowered aircraft injuring ground crew, airline employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\(E842.9) Accident to unpowered aircraft injuring other person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Accident to unpowered aircraft (E842)\(E842.9) Accident to unpowered aircraft injuring other person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E842.9''', NULL, + '(E842.9) Accident to unpowered aircraft injuring other person', '(E842.9) Accident to unpowered aircraft injuring other person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E843''', NULL, + 'Fall in, on, or from aircraft (E843)', 'Fall in, on, or from aircraft (E843)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.0) Fall in, on, or from aircraft injuring occupant of spacecraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.0) Fall in, on, or from aircraft injuring occupant of spacecraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E843.0''', NULL, + '(E843.0) Fall in, on, or from aircraft injuring occupant of spacecraft', '(E843.0) Fall in, on, or from aircraft injuring occupant of spacecraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.1) Fall in, on, or from aircraft injuring occupant of military aircraft, any\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.1) Fall in, on, or from aircraft injuring occupant of military aircraft, any\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E843.1''', NULL, + '(E843.1) Fall in, on, or from aircraft injuring occupant of military aircraft, any', '(E843.1) Fall in, on, or from aircraft injuring occupant of military aircraft, any', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.2) Fall in, on, or from aircraft injuring crew of commercial aircraft (powered) in surface to surface transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.2) Fall in, on, or from aircraft injuring crew of commercial aircraft (powered) in surface to surface transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E843.2) Fall in, on, or from aircraft injuring crew of commercial aircraft (powered''', NULL, + '(E843.2) Fall in, on, or from aircraft injuring crew of commercial aircraft (powered) in surface to surface transport', '(E843.2) Fall in, on, or from aircraft injuring crew of commercial aircraft (powered) in surface to surface transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.3) Fall in, on, or from aircraft injuring other occupant of commercial aircraft (powered) in surface to surface transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.3) Fall in, on, or from aircraft injuring other occupant of commercial aircraft (powered) in surface to surface transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E843.3) Fall in, on, or from aircraft injuring other occupant of commercial aircraft (powered''', NULL, + '(E843.3) Fall in, on, or from aircraft injuring other occupant of commercial aircraft (powered) in surface to surface transport', '(E843.3) Fall in, on, or from aircraft injuring other occupant of commercial aircraft (powered) in surface to surface transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.4) Fall in, on, or from aircraft injuring occupant of commercial aircraft (powered) in surface to air transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.4) Fall in, on, or from aircraft injuring occupant of commercial aircraft (powered) in surface to air transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E843.4) Fall in, on, or from aircraft injuring occupant of commercial aircraft (powered''', NULL, + '(E843.4) Fall in, on, or from aircraft injuring occupant of commercial aircraft (powered) in surface to air transport', '(E843.4) Fall in, on, or from aircraft injuring occupant of commercial aircraft (powered) in surface to air transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.5) Fall in, on, or from aircraft injuring occupant of other powered aircraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.5) Fall in, on, or from aircraft injuring occupant of other powered aircraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E843.5''', NULL, + '(E843.5) Fall in, on, or from aircraft injuring occupant of other powered aircraft', '(E843.5) Fall in, on, or from aircraft injuring occupant of other powered aircraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.6) Fall in, on, or from aircraft injuring occupant of unpowered aircraft, except parachutist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.6) Fall in, on, or from aircraft injuring occupant of unpowered aircraft, except parachutist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E843.6''', NULL, + '(E843.6) Fall in, on, or from aircraft injuring occupant of unpowered aircraft, except parachutist', '(E843.6) Fall in, on, or from aircraft injuring occupant of unpowered aircraft, except parachutist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.7) Fall in, on, or from aircraft injuring parachutist (military) (other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.7) Fall in, on, or from aircraft injuring parachutist (military) (other)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E843.7) Fall in, on, or from aircraft injuring parachutist (military) (other''', NULL, + '(E843.7) Fall in, on, or from aircraft injuring parachutist (military) (other)', '(E843.7) Fall in, on, or from aircraft injuring parachutist (military) (other)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.8) Fall in, on, or from aircraft injuring ground crew, airline employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.8) Fall in, on, or from aircraft injuring ground crew, airline employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E843.8''', NULL, + '(E843.8) Fall in, on, or from aircraft injuring ground crew, airline employee', '(E843.8) Fall in, on, or from aircraft injuring ground crew, airline employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.9) Fall in, on, or from aircraft injuring other person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Fall in, on, or from aircraft (E843)\(E843.9) Fall in, on, or from aircraft injuring other person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E843.9''', NULL, + '(E843.9) Fall in, on, or from aircraft injuring other person', '(E843.9) Fall in, on, or from aircraft injuring other person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E844''', NULL, + 'Other specified air transport accidents (E844)', 'Other specified air transport accidents (E844)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.0) Other specified air transport accidents injuring occupant of spacecraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.0) Other specified air transport accidents injuring occupant of spacecraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E844.0''', NULL, + '(E844.0) Other specified air transport accidents injuring occupant of spacecraft', '(E844.0) Other specified air transport accidents injuring occupant of spacecraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.1) Other specified air transport accidents injuring occupant of military aircraft, any\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.1) Other specified air transport accidents injuring occupant of military aircraft, any\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E844.1''', NULL, + '(E844.1) Other specified air transport accidents injuring occupant of military aircraft, any', '(E844.1) Other specified air transport accidents injuring occupant of military aircraft, any', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.2) Other specified air transport accidents injuring crew of commercial aircraft (powered) in surface to surface transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.2) Other specified air transport accidents injuring crew of commercial aircraft (powered) in surface to surface transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E844.2) Other specified air transport accidents injuring crew of commercial aircraft (powered''', NULL, + '(E844.2) Other specified air transport accidents injuring crew of commercial aircraft (powered) in surface to surface transport', '(E844.2) Other specified air transport accidents injuring crew of commercial aircraft (powered) in surface to surface transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.3) Other specified air transport accidents injuring other occupant of commercial aircraft (powered) in surface to surface transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.3) Other specified air transport accidents injuring other occupant of commercial aircraft (powered) in surface to surface transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E844.3) Other specified air transport accidents injuring other occupant of commercial aircraft (powered''', NULL, + '(E844.3) Other specified air transport accidents injuring other occupant of commercial aircraft (powered) in surface to surface transport', '(E844.3) Other specified air transport accidents injuring other occupant of commercial aircraft (powered) in surface to surface transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.4) Other specified air transport accidents injuring occupant of commercial aircraft (powered) in surface to air transport\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.4) Other specified air transport accidents injuring occupant of commercial aircraft (powered) in surface to air transport\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E844.4) Other specified air transport accidents injuring occupant of commercial aircraft (powered''', NULL, + '(E844.4) Other specified air transport accidents injuring occupant of commercial aircraft (powered) in surface to air transport', '(E844.4) Other specified air transport accidents injuring occupant of commercial aircraft (powered) in surface to air transport', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.5) Other specified air transport accidents injuring occupant of other powered aircraft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.5) Other specified air transport accidents injuring occupant of other powered aircraft\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E844.5''', NULL, + '(E844.5) Other specified air transport accidents injuring occupant of other powered aircraft', '(E844.5) Other specified air transport accidents injuring occupant of other powered aircraft', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.6) Other specified air transport accidents injuring occupant of unpowered aircraft, except parachutist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.6) Other specified air transport accidents injuring occupant of unpowered aircraft, except parachutist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E844.6''', NULL, + '(E844.6) Other specified air transport accidents injuring occupant of unpowered aircraft, except parachutist', '(E844.6) Other specified air transport accidents injuring occupant of unpowered aircraft, except parachutist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.7) Other specified air transport accidents injuring parachutist (military) (other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.7) Other specified air transport accidents injuring parachutist (military) (other)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E844.7) Other specified air transport accidents injuring parachutist (military) (other''', NULL, + '(E844.7) Other specified air transport accidents injuring parachutist (military) (other)', '(E844.7) Other specified air transport accidents injuring parachutist (military) (other)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.8) Other specified air transport accidents injuring ground crew, airline employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.8) Other specified air transport accidents injuring ground crew, airline employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E844.8''', NULL, + '(E844.8) Other specified air transport accidents injuring ground crew, airline employee', '(E844.8) Other specified air transport accidents injuring ground crew, airline employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.9) Other specified air transport accidents injuring other person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\Other specified air transport accidents (E844)\(E844.9) Other specified air transport accidents injuring other person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E844.9''', NULL, + '(E844.9) Other specified air transport accidents injuring other person', '(E844.9) Other specified air transport accidents injuring other person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E820'' AND ''E825.9''', NULL, + 'MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)', 'MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E820''', NULL, + 'Nontraffic accident involving motor-driven snow vehicle (E820)', 'Nontraffic accident involving motor-driven snow vehicle (E820)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.0) Nontraffic accident involving motor-driven snow vehicle injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.0) Nontraffic accident involving motor-driven snow vehicle injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E820.0''', NULL, + '(E820.0) Nontraffic accident involving motor-driven snow vehicle injuring driver of motor vehicle other than motorcycle', '(E820.0) Nontraffic accident involving motor-driven snow vehicle injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.1) Nontraffic accident involving motor-driven snow vehicle injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.1) Nontraffic accident involving motor-driven snow vehicle injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E820.1''', NULL, + '(E820.1) Nontraffic accident involving motor-driven snow vehicle injuring passenger in motor vehicle other than motorcycle', '(E820.1) Nontraffic accident involving motor-driven snow vehicle injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.2) Nontraffic accident involving motor-driven snow vehicle injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.2) Nontraffic accident involving motor-driven snow vehicle injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E820.2''', NULL, + '(E820.2) Nontraffic accident involving motor-driven snow vehicle injuring motorcyclist', '(E820.2) Nontraffic accident involving motor-driven snow vehicle injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.3) Nontraffic accident involving motor-driven snow vehicle injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.3) Nontraffic accident involving motor-driven snow vehicle injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E820.3''', NULL, + '(E820.3) Nontraffic accident involving motor-driven snow vehicle injuring passenger on motorcycle', '(E820.3) Nontraffic accident involving motor-driven snow vehicle injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.4) Nontraffic accident involving motor-driven snow vehicle injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.4) Nontraffic accident involving motor-driven snow vehicle injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E820.4''', NULL, + '(E820.4) Nontraffic accident involving motor-driven snow vehicle injuring occupant of streetcar', '(E820.4) Nontraffic accident involving motor-driven snow vehicle injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.5) Nontraffic accident involving motor-driven snow vehicle injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.5) Nontraffic accident involving motor-driven snow vehicle injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E820.5''', NULL, + '(E820.5) Nontraffic accident involving motor-driven snow vehicle injuring rider of animal; occupant of animal-drawn vehicle', '(E820.5) Nontraffic accident involving motor-driven snow vehicle injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.6) Nontraffic accident involving motor-driven snow vehicle injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.6) Nontraffic accident involving motor-driven snow vehicle injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E820.6''', NULL, + '(E820.6) Nontraffic accident involving motor-driven snow vehicle injuring pedal cyclist', '(E820.6) Nontraffic accident involving motor-driven snow vehicle injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.7) Nontraffic accident involving motor-driven snow vehicle injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.7) Nontraffic accident involving motor-driven snow vehicle injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E820.7''', NULL, + '(E820.7) Nontraffic accident involving motor-driven snow vehicle injuring pedestrian', '(E820.7) Nontraffic accident involving motor-driven snow vehicle injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.8) Nontraffic accident involving motor-driven snow vehicle injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.8) Nontraffic accident involving motor-driven snow vehicle injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E820.8''', NULL, + '(E820.8) Nontraffic accident involving motor-driven snow vehicle injuring other specified person', '(E820.8) Nontraffic accident involving motor-driven snow vehicle injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.9) Nontraffic accident involving motor-driven snow vehicle injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving motor-driven snow vehicle (E820)\(E820.9) Nontraffic accident involving motor-driven snow vehicle injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E820.9''', NULL, + '(E820.9) Nontraffic accident involving motor-driven snow vehicle injuring unspecified person', '(E820.9) Nontraffic accident involving motor-driven snow vehicle injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E821''', NULL, + 'Nontraffic accident involving other off-road motor vehicle (E821)', 'Nontraffic accident involving other off-road motor vehicle (E821)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.0) Nontraffic accident involving other off-road motor vehicle injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.0) Nontraffic accident involving other off-road motor vehicle injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E821.0''', NULL, + '(E821.0) Nontraffic accident involving other off-road motor vehicle injuring driver of motor vehicle other than motorcycle', '(E821.0) Nontraffic accident involving other off-road motor vehicle injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.1) Nontraffic accident involving other off-road motor vehicle injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.1) Nontraffic accident involving other off-road motor vehicle injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E821.1''', NULL, + '(E821.1) Nontraffic accident involving other off-road motor vehicle injuring passenger in motor vehicle other than motorcycle', '(E821.1) Nontraffic accident involving other off-road motor vehicle injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.2) Nontraffic accident involving other off-road motor vehicle injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.2) Nontraffic accident involving other off-road motor vehicle injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E821.2''', NULL, + '(E821.2) Nontraffic accident involving other off-road motor vehicle injuring motorcyclist', '(E821.2) Nontraffic accident involving other off-road motor vehicle injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.3) Nontraffic accident involving other off-road motor vehicle injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.3) Nontraffic accident involving other off-road motor vehicle injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E821.3''', NULL, + '(E821.3) Nontraffic accident involving other off-road motor vehicle injuring passenger on motorcycle', '(E821.3) Nontraffic accident involving other off-road motor vehicle injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.4) Nontraffic accident involving other off-road motor vehicle injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.4) Nontraffic accident involving other off-road motor vehicle injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E821.4''', NULL, + '(E821.4) Nontraffic accident involving other off-road motor vehicle injuring occupant of streetcar', '(E821.4) Nontraffic accident involving other off-road motor vehicle injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.5) Nontraffic accident involving other off-road motor vehicle injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.5) Nontraffic accident involving other off-road motor vehicle injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E821.5''', NULL, + '(E821.5) Nontraffic accident involving other off-road motor vehicle injuring rider of animal; occupant of animal-drawn vehicle', '(E821.5) Nontraffic accident involving other off-road motor vehicle injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.6) Nontraffic accident involving other off-road motor vehicle injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.6) Nontraffic accident involving other off-road motor vehicle injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E821.6''', NULL, + '(E821.6) Nontraffic accident involving other off-road motor vehicle injuring pedal cyclist', '(E821.6) Nontraffic accident involving other off-road motor vehicle injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.7) Nontraffic accident involving other off-road motor vehicle injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.7) Nontraffic accident involving other off-road motor vehicle injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E821.7''', NULL, + '(E821.7) Nontraffic accident involving other off-road motor vehicle injuring pedestrian', '(E821.7) Nontraffic accident involving other off-road motor vehicle injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.8) Nontraffic accident involving other off-road motor vehicle injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.8) Nontraffic accident involving other off-road motor vehicle injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E821.8''', NULL, + '(E821.8) Nontraffic accident involving other off-road motor vehicle injuring other specified person', '(E821.8) Nontraffic accident involving other off-road motor vehicle injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.9) Nontraffic accident involving other off-road motor vehicle injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Nontraffic accident involving other off-road motor vehicle (E821)\(E821.9) Nontraffic accident involving other off-road motor vehicle injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E821.9''', NULL, + '(E821.9) Nontraffic accident involving other off-road motor vehicle injuring unspecified person', '(E821.9) Nontraffic accident involving other off-road motor vehicle injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E822''', NULL, + 'Other motor vehicle nontraffic accident involving collision with moving object (E822)', 'Other motor vehicle nontraffic accident involving collision with moving object (E822)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.0) Other motor vehicle nontraffic accident involving collision with moving object injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.0) Other motor vehicle nontraffic accident involving collision with moving object injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E822.0''', NULL, + '(E822.0) Other motor vehicle nontraffic accident involving collision with moving object injuring driver of motor vehicle other than motorcycle', '(E822.0) Other motor vehicle nontraffic accident involving collision with moving object injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.1) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.1) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E822.1''', NULL, + '(E822.1) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger in motor vehicle other than motorcycle', '(E822.1) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.2) Other motor vehicle nontraffic accident involving collision with moving object injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.2) Other motor vehicle nontraffic accident involving collision with moving object injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E822.2''', NULL, + '(E822.2) Other motor vehicle nontraffic accident involving collision with moving object injuring motorcyclist', '(E822.2) Other motor vehicle nontraffic accident involving collision with moving object injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.3) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.3) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E822.3''', NULL, + '(E822.3) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger on motorcycle', '(E822.3) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.4) Other motor vehicle nontraffic accident involving collision with moving object injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.4) Other motor vehicle nontraffic accident involving collision with moving object injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E822.4''', NULL, + '(E822.4) Other motor vehicle nontraffic accident involving collision with moving object injuring occupant of streetcar', '(E822.4) Other motor vehicle nontraffic accident involving collision with moving object injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.5) Other motor vehicle nontraffic accident involving collision with moving object injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.5) Other motor vehicle nontraffic accident involving collision with moving object injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E822.5''', NULL, + '(E822.5) Other motor vehicle nontraffic accident involving collision with moving object injuring rider of animal; occupant of animal-drawn vehicle', '(E822.5) Other motor vehicle nontraffic accident involving collision with moving object injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.6) Other motor vehicle nontraffic accident involving collision with moving object injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.6) Other motor vehicle nontraffic accident involving collision with moving object injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E822.6''', NULL, + '(E822.6) Other motor vehicle nontraffic accident involving collision with moving object injuring pedal cyclist', '(E822.6) Other motor vehicle nontraffic accident involving collision with moving object injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.7) Other motor vehicle nontraffic accident involving collision with moving object injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.7) Other motor vehicle nontraffic accident involving collision with moving object injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E822.7''', NULL, + '(E822.7) Other motor vehicle nontraffic accident involving collision with moving object injuring pedestrian', '(E822.7) Other motor vehicle nontraffic accident involving collision with moving object injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.8) Other motor vehicle nontraffic accident involving collision with moving object injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.8) Other motor vehicle nontraffic accident involving collision with moving object injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E822.8''', NULL, + '(E822.8) Other motor vehicle nontraffic accident involving collision with moving object injuring other specified person', '(E822.8) Other motor vehicle nontraffic accident involving collision with moving object injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.9) Other motor vehicle nontraffic accident involving collision with moving object injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with moving object (E822)\(E822.9) Other motor vehicle nontraffic accident involving collision with moving object injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E822.9''', NULL, + '(E822.9) Other motor vehicle nontraffic accident involving collision with moving object injuring unspecified person', '(E822.9) Other motor vehicle nontraffic accident involving collision with moving object injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E823''', NULL, + 'Other motor vehicle nontraffic accident involving collision with stationary object (E823)', 'Other motor vehicle nontraffic accident involving collision with stationary object (E823)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.0) Other motor vehicle nontraffic accident involving collision with stationary object injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.0) Other motor vehicle nontraffic accident involving collision with stationary object injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E823.0''', NULL, + '(E823.0) Other motor vehicle nontraffic accident involving collision with stationary object injuring driver of motor vehicle other than motorcycle', '(E823.0) Other motor vehicle nontraffic accident involving collision with stationary object injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.1) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.1) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E823.1''', NULL, + '(E823.1) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger in motor vehicle other than motorcycle', '(E823.1) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.2) Other motor vehicle nontraffic accident involving collision with stationary object injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.2) Other motor vehicle nontraffic accident involving collision with stationary object injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E823.2''', NULL, + '(E823.2) Other motor vehicle nontraffic accident involving collision with stationary object injuring motorcyclist', '(E823.2) Other motor vehicle nontraffic accident involving collision with stationary object injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.3) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.3) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E823.3''', NULL, + '(E823.3) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger on motorcycle', '(E823.3) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.4) Other motor vehicle nontraffic accident involving collision with stationary object injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.4) Other motor vehicle nontraffic accident involving collision with stationary object injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E823.4''', NULL, + '(E823.4) Other motor vehicle nontraffic accident involving collision with stationary object injuring occupant of streetcar', '(E823.4) Other motor vehicle nontraffic accident involving collision with stationary object injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.5) Other motor vehicle nontraffic accident involving collision with stationary object injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.5) Other motor vehicle nontraffic accident involving collision with stationary object injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E823.5''', NULL, + '(E823.5) Other motor vehicle nontraffic accident involving collision with stationary object injuring rider of animal; occupant of animal-drawn vehicle', '(E823.5) Other motor vehicle nontraffic accident involving collision with stationary object injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.6) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.6) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E823.6''', NULL, + '(E823.6) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedal cyclist', '(E823.6) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.7) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.7) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E823.7''', NULL, + '(E823.7) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedestrian', '(E823.7) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.8) Other motor vehicle nontraffic accident involving collision with stationary object injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.8) Other motor vehicle nontraffic accident involving collision with stationary object injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E823.8''', NULL, + '(E823.8) Other motor vehicle nontraffic accident involving collision with stationary object injuring other specified person', '(E823.8) Other motor vehicle nontraffic accident involving collision with stationary object injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.9) Other motor vehicle nontraffic accident involving collision with stationary object injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\(E823.9) Other motor vehicle nontraffic accident involving collision with stationary object injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E823.9''', NULL, + '(E823.9) Other motor vehicle nontraffic accident involving collision with stationary object injuring unspecified person', '(E823.9) Other motor vehicle nontraffic accident involving collision with stationary object injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E825''', NULL, + 'Other motor vehicle nontraffic accident of other and unspecified nature (E825)', 'Other motor vehicle nontraffic accident of other and unspecified nature (E825)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.0) Other motor vehicle nontraffic accident of other and unspecified nature injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.0) Other motor vehicle nontraffic accident of other and unspecified nature injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E825.0''', NULL, + '(E825.0) Other motor vehicle nontraffic accident of other and unspecified nature injuring driver of motor vehicle other than motorcycle', '(E825.0) Other motor vehicle nontraffic accident of other and unspecified nature injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.1) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.1) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E825.1''', NULL, + '(E825.1) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger in motor vehicle other than motorcycle', '(E825.1) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.2) Other motor vehicle nontraffic accident of other and unspecified nature injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.2) Other motor vehicle nontraffic accident of other and unspecified nature injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E825.2''', NULL, + '(E825.2) Other motor vehicle nontraffic accident of other and unspecified nature injuring motorcyclist', '(E825.2) Other motor vehicle nontraffic accident of other and unspecified nature injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.3) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.3) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E825.3''', NULL, + '(E825.3) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger on motorcycle', '(E825.3) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.4) Other motor vehicle nontraffic accident of other and unspecified nature injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.4) Other motor vehicle nontraffic accident of other and unspecified nature injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E825.4''', NULL, + '(E825.4) Other motor vehicle nontraffic accident of other and unspecified nature injuring occupant of streetcar', '(E825.4) Other motor vehicle nontraffic accident of other and unspecified nature injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.5) Other motor vehicle nontraffic accident of other and unspecified nature injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.5) Other motor vehicle nontraffic accident of other and unspecified nature injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E825.5''', NULL, + '(E825.5) Other motor vehicle nontraffic accident of other and unspecified nature injuring rider of animal; occupant of animal-drawn vehicle', '(E825.5) Other motor vehicle nontraffic accident of other and unspecified nature injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.6) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.6) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E825.6''', NULL, + '(E825.6) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedal cyclist', '(E825.6) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.7) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.7) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E825.7''', NULL, + '(E825.7) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedestrian', '(E825.7) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.8) Other motor vehicle nontraffic accident of other and unspecified nature injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.8) Other motor vehicle nontraffic accident of other and unspecified nature injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E825.8''', NULL, + '(E825.8) Other motor vehicle nontraffic accident of other and unspecified nature injuring other specified person', '(E825.8) Other motor vehicle nontraffic accident of other and unspecified nature injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.9) Other motor vehicle nontraffic accident of other and unspecified nature injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\(E825.9) Other motor vehicle nontraffic accident of other and unspecified nature injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E825.9''', NULL, + '(E825.9) Other motor vehicle nontraffic accident of other and unspecified nature injuring unspecified person', '(E825.9) Other motor vehicle nontraffic accident of other and unspecified nature injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E824''', NULL, + 'Other motor vehicle nontraffic accident while boarding and alighting (E824)', 'Other motor vehicle nontraffic accident while boarding and alighting (E824)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.0) Other motor vehicle nontraffic accident while boarding and alighting injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.0) Other motor vehicle nontraffic accident while boarding and alighting injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E824.0''', NULL, + '(E824.0) Other motor vehicle nontraffic accident while boarding and alighting injuring driver of motor vehicle other than motorcycle', '(E824.0) Other motor vehicle nontraffic accident while boarding and alighting injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.1) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.1) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E824.1''', NULL, + '(E824.1) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger in motor vehicle other than motorcycle', '(E824.1) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.2) Other motor vehicle nontraffic accident while boarding and alighting injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.2) Other motor vehicle nontraffic accident while boarding and alighting injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E824.2''', NULL, + '(E824.2) Other motor vehicle nontraffic accident while boarding and alighting injuring motorcyclist', '(E824.2) Other motor vehicle nontraffic accident while boarding and alighting injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.3) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.3) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E824.3''', NULL, + '(E824.3) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger on motorcycle', '(E824.3) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.4) Other motor vehicle nontraffic accident while boarding and alighting injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.4) Other motor vehicle nontraffic accident while boarding and alighting injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E824.4''', NULL, + '(E824.4) Other motor vehicle nontraffic accident while boarding and alighting injuring occupant of streetcar', '(E824.4) Other motor vehicle nontraffic accident while boarding and alighting injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.5) Other motor vehicle nontraffic accident while boarding and alighting injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.5) Other motor vehicle nontraffic accident while boarding and alighting injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E824.5''', NULL, + '(E824.5) Other motor vehicle nontraffic accident while boarding and alighting injuring rider of animal; occupant of animal-drawn vehicle', '(E824.5) Other motor vehicle nontraffic accident while boarding and alighting injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.6) Other motor vehicle nontraffic accident while boarding and alighting injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.6) Other motor vehicle nontraffic accident while boarding and alighting injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E824.6''', NULL, + '(E824.6) Other motor vehicle nontraffic accident while boarding and alighting injuring pedal cyclist', '(E824.6) Other motor vehicle nontraffic accident while boarding and alighting injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.7) Other motor vehicle nontraffic accident while boarding and alighting injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.7) Other motor vehicle nontraffic accident while boarding and alighting injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E824.7''', NULL, + '(E824.7) Other motor vehicle nontraffic accident while boarding and alighting injuring pedestrian', '(E824.7) Other motor vehicle nontraffic accident while boarding and alighting injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.8) Other motor vehicle nontraffic accident while boarding and alighting injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.8) Other motor vehicle nontraffic accident while boarding and alighting injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E824.8''', NULL, + '(E824.8) Other motor vehicle nontraffic accident while boarding and alighting injuring other specified person', '(E824.8) Other motor vehicle nontraffic accident while boarding and alighting injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.9) Other motor vehicle nontraffic accident while boarding and alighting injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\Other motor vehicle nontraffic accident while boarding and alighting (E824)\(E824.9) Other motor vehicle nontraffic accident while boarding and alighting injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E824.9''', NULL, + '(E824.9) Other motor vehicle nontraffic accident while boarding and alighting injuring unspecified person', '(E824.9) Other motor vehicle nontraffic accident while boarding and alighting injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E810'' AND ''E819.9''', NULL, + 'MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)', 'MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E816''', NULL, + 'Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)', 'Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.0) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.0) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E816.0''', NULL, + '(E816.0) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring driver of motor vehicle other than motorcycle', '(E816.0) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.1) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.1) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E816.1''', NULL, + '(E816.1) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger in motor vehicle other than motorcycle', '(E816.1) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.2) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.2) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E816.2''', NULL, + '(E816.2) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring motorcyclist', '(E816.2) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.3) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.3) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E816.3''', NULL, + '(E816.3) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger on motorcycle', '(E816.3) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.4) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.4) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E816.4''', NULL, + '(E816.4) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring occupant of streetcar', '(E816.4) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.5) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.5) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E816.5''', NULL, + '(E816.5) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring rider of animal; occupant of animal-drawn vehicle', '(E816.5) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.6) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.6) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E816.6''', NULL, + '(E816.6) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedal cyclist', '(E816.6) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.7) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.7) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E816.7''', NULL, + '(E816.7) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedestrian', '(E816.7) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.8) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.8) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E816.8''', NULL, + '(E816.8) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring other specified person', '(E816.8) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.9) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\(E816.9) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E816.9''', NULL, + '(E816.9) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring unspecified person', '(E816.9) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E813''', NULL, + 'Motor vehicle traffic accident involving collision with other vehicle (E813)', 'Motor vehicle traffic accident involving collision with other vehicle (E813)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.0) Motor vehicle traffic accident involving collision with other vehicle injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.0) Motor vehicle traffic accident involving collision with other vehicle injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E813.0''', NULL, + '(E813.0) Motor vehicle traffic accident involving collision with other vehicle injuring driver of motor vehicle other than motorcycle', '(E813.0) Motor vehicle traffic accident involving collision with other vehicle injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.1) Motor vehicle traffic accident involving collision with other vehicle injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.1) Motor vehicle traffic accident involving collision with other vehicle injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E813.1''', NULL, + '(E813.1) Motor vehicle traffic accident involving collision with other vehicle injuring passenger in motor vehicle other than motorcycle', '(E813.1) Motor vehicle traffic accident involving collision with other vehicle injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.2) Motor vehicle traffic accident involving collision with other vehicle injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.2) Motor vehicle traffic accident involving collision with other vehicle injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E813.2''', NULL, + '(E813.2) Motor vehicle traffic accident involving collision with other vehicle injuring motorcyclist', '(E813.2) Motor vehicle traffic accident involving collision with other vehicle injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.3) Motor vehicle traffic accident involving collision with other vehicle injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.3) Motor vehicle traffic accident involving collision with other vehicle injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E813.3''', NULL, + '(E813.3) Motor vehicle traffic accident involving collision with other vehicle injuring passenger on motorcycle', '(E813.3) Motor vehicle traffic accident involving collision with other vehicle injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.4) Motor vehicle traffic accident involving collision with other vehicle injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.4) Motor vehicle traffic accident involving collision with other vehicle injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E813.4''', NULL, + '(E813.4) Motor vehicle traffic accident involving collision with other vehicle injuring occupant of streetcar', '(E813.4) Motor vehicle traffic accident involving collision with other vehicle injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.5) Motor vehicle traffic accident involving collision with other vehicle injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.5) Motor vehicle traffic accident involving collision with other vehicle injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E813.5''', NULL, + '(E813.5) Motor vehicle traffic accident involving collision with other vehicle injuring rider of animal; occupant of animal-drawn vehicle', '(E813.5) Motor vehicle traffic accident involving collision with other vehicle injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.6) Motor vehicle traffic accident involving collision with other vehicle injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.6) Motor vehicle traffic accident involving collision with other vehicle injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E813.6''', NULL, + '(E813.6) Motor vehicle traffic accident involving collision with other vehicle injuring pedal cyclist', '(E813.6) Motor vehicle traffic accident involving collision with other vehicle injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.7) Motor vehicle traffic accident involving collision with other vehicle injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.7) Motor vehicle traffic accident involving collision with other vehicle injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E813.7''', NULL, + '(E813.7) Motor vehicle traffic accident involving collision with other vehicle injuring pedestrian', '(E813.7) Motor vehicle traffic accident involving collision with other vehicle injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.8) Motor vehicle traffic accident involving collision with other vehicle injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.8) Motor vehicle traffic accident involving collision with other vehicle injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E813.8''', NULL, + '(E813.8) Motor vehicle traffic accident involving collision with other vehicle injuring other specified person', '(E813.8) Motor vehicle traffic accident involving collision with other vehicle injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.9) Motor vehicle traffic accident involving collision with other vehicle injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with other vehicle (E813)\(E813.9) Motor vehicle traffic accident involving collision with other vehicle injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E813.9''', NULL, + '(E813.9) Motor vehicle traffic accident involving collision with other vehicle injuring unspecified person', '(E813.9) Motor vehicle traffic accident involving collision with other vehicle injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E814''', NULL, + 'Motor vehicle traffic accident involving collision with pedestrian (E814)', 'Motor vehicle traffic accident involving collision with pedestrian (E814)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.0) Motor vehicle traffic accident involving collision with pedestrian injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.0) Motor vehicle traffic accident involving collision with pedestrian injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E814.0''', NULL, + '(E814.0) Motor vehicle traffic accident involving collision with pedestrian injuring driver of motor vehicle other than motorcycle', '(E814.0) Motor vehicle traffic accident involving collision with pedestrian injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.1) Motor vehicle traffic accident involving collision with pedestrian injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.1) Motor vehicle traffic accident involving collision with pedestrian injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E814.1''', NULL, + '(E814.1) Motor vehicle traffic accident involving collision with pedestrian injuring passenger in motor vehicle other than motorcycle', '(E814.1) Motor vehicle traffic accident involving collision with pedestrian injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.2) Motor vehicle traffic accident involving collision with pedestrian injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.2) Motor vehicle traffic accident involving collision with pedestrian injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E814.2''', NULL, + '(E814.2) Motor vehicle traffic accident involving collision with pedestrian injuring motorcyclist', '(E814.2) Motor vehicle traffic accident involving collision with pedestrian injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.3) Motor vehicle traffic accident involving collision with pedestrian injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.3) Motor vehicle traffic accident involving collision with pedestrian injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E814.3''', NULL, + '(E814.3) Motor vehicle traffic accident involving collision with pedestrian injuring passenger on motorcycle', '(E814.3) Motor vehicle traffic accident involving collision with pedestrian injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.4) Motor vehicle traffic accident involving collision with pedestrian injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.4) Motor vehicle traffic accident involving collision with pedestrian injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E814.4''', NULL, + '(E814.4) Motor vehicle traffic accident involving collision with pedestrian injuring occupant of streetcar', '(E814.4) Motor vehicle traffic accident involving collision with pedestrian injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.5) Motor vehicle traffic accident involving collision with pedestrian injuring rider of animal; occupant of animal drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.5) Motor vehicle traffic accident involving collision with pedestrian injuring rider of animal; occupant of animal drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E814.5''', NULL, + '(E814.5) Motor vehicle traffic accident involving collision with pedestrian injuring rider of animal; occupant of animal drawn vehicle', '(E814.5) Motor vehicle traffic accident involving collision with pedestrian injuring rider of animal; occupant of animal drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.6) Motor vehicle traffic accident involving collision with pedestrian injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.6) Motor vehicle traffic accident involving collision with pedestrian injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E814.6''', NULL, + '(E814.6) Motor vehicle traffic accident involving collision with pedestrian injuring pedal cyclist', '(E814.6) Motor vehicle traffic accident involving collision with pedestrian injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.7) Motor vehicle traffic accident involving collision with pedestrian injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.7) Motor vehicle traffic accident involving collision with pedestrian injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E814.7''', NULL, + '(E814.7) Motor vehicle traffic accident involving collision with pedestrian injuring pedestrian', '(E814.7) Motor vehicle traffic accident involving collision with pedestrian injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.8) Motor vehicle traffic accident involving collision with pedestrian injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.8) Motor vehicle traffic accident involving collision with pedestrian injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E814.8''', NULL, + '(E814.8) Motor vehicle traffic accident involving collision with pedestrian injuring other specified person', '(E814.8) Motor vehicle traffic accident involving collision with pedestrian injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.9) Motor vehicle traffic accident involving collision with pedestrian injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with pedestrian (E814)\(E814.9) Motor vehicle traffic accident involving collision with pedestrian injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E814.9''', NULL, + '(E814.9) Motor vehicle traffic accident involving collision with pedestrian injuring unspecified person', '(E814.9) Motor vehicle traffic accident involving collision with pedestrian injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E810''', NULL, + 'Motor vehicle traffic accident involving collision with train (E810)', 'Motor vehicle traffic accident involving collision with train (E810)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.0) Motor vehicle traffic accident involving collision with train injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.0) Motor vehicle traffic accident involving collision with train injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E810.0''', NULL, + '(E810.0) Motor vehicle traffic accident involving collision with train injuring driver of motor vehicle other than motorcycle', '(E810.0) Motor vehicle traffic accident involving collision with train injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.1) Motor vehicle traffic accident involving collision with train injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.1) Motor vehicle traffic accident involving collision with train injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E810.1''', NULL, + '(E810.1) Motor vehicle traffic accident involving collision with train injuring passenger in motor vehicle other than motorcycle', '(E810.1) Motor vehicle traffic accident involving collision with train injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.2) Motor vehicle traffic accident involving collision with train injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.2) Motor vehicle traffic accident involving collision with train injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E810.2''', NULL, + '(E810.2) Motor vehicle traffic accident involving collision with train injuring motorcyclist', '(E810.2) Motor vehicle traffic accident involving collision with train injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.3) Motor vehicle traffic accident involving collision with train injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.3) Motor vehicle traffic accident involving collision with train injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E810.3''', NULL, + '(E810.3) Motor vehicle traffic accident involving collision with train injuring passenger on motorcycle', '(E810.3) Motor vehicle traffic accident involving collision with train injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.4) Motor vehicle traffic accident involving collision with train injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.4) Motor vehicle traffic accident involving collision with train injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E810.4''', NULL, + '(E810.4) Motor vehicle traffic accident involving collision with train injuring occupant of streetcar', '(E810.4) Motor vehicle traffic accident involving collision with train injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.5) Motor vehicle traffic accident involving collision with train injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.5) Motor vehicle traffic accident involving collision with train injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E810.5''', NULL, + '(E810.5) Motor vehicle traffic accident involving collision with train injuring rider of animal; occupant of animal-drawn vehicle', '(E810.5) Motor vehicle traffic accident involving collision with train injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.6) Motor vehicle traffic accident involving collision with train injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.6) Motor vehicle traffic accident involving collision with train injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E810.6''', NULL, + '(E810.6) Motor vehicle traffic accident involving collision with train injuring pedal cyclist', '(E810.6) Motor vehicle traffic accident involving collision with train injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.7) Motor vehicle traffic accident involving collision with train injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.7) Motor vehicle traffic accident involving collision with train injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E810.7''', NULL, + '(E810.7) Motor vehicle traffic accident involving collision with train injuring pedestrian', '(E810.7) Motor vehicle traffic accident involving collision with train injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.8) Motor vehicle traffic accident involving collision with train injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.8) Motor vehicle traffic accident involving collision with train injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E810.8''', NULL, + '(E810.8) Motor vehicle traffic accident involving collision with train injuring other specified person', '(E810.8) Motor vehicle traffic accident involving collision with train injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.9) Motor vehicle traffic accident involving collision with train injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving collision with train (E810)\(E810.9) Motor vehicle traffic accident involving collision with train injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E810.9''', NULL, + '(E810.9) Motor vehicle traffic accident involving collision with train injuring unspecified person', '(E810.9) Motor vehicle traffic accident involving collision with train injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E811''', NULL, + 'Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)', 'Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.0) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.0) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E811.0''', NULL, + '(E811.0) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring driver of motor vehicle other than motorcycle', '(E811.0) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.1) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.1) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E811.1''', NULL, + '(E811.1) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger in motor vehicle other than motorcycle', '(E811.1) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.2) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.2) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E811.2''', NULL, + '(E811.2) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring motorcyclist', '(E811.2) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.3) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.3) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E811.3''', NULL, + '(E811.3) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger on motorcycle', '(E811.3) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.4) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.4) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E811.4''', NULL, + '(E811.4) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring occupant of streetcar', '(E811.4) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.5) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.5) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E811.5''', NULL, + '(E811.5) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring rider of animal; occupant of animal-drawn vehicle', '(E811.5) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.6) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.6) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E811.6''', NULL, + '(E811.6) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedal cyclist', '(E811.6) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.7) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.7) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E811.7''', NULL, + '(E811.7) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedestrian', '(E811.7) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.8) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.8) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E811.8''', NULL, + '(E811.8) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring other specified person', '(E811.8) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.9) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\(E811.9) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E811.9''', NULL, + '(E811.9) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring unspecified person', '(E811.9) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E819''', NULL, + 'Motor vehicle traffic accident of unspecified nature (E819)', 'Motor vehicle traffic accident of unspecified nature (E819)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.0) Motor vehicle traffic accident of unspecified nature injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.0) Motor vehicle traffic accident of unspecified nature injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E819.0''', NULL, + '(E819.0) Motor vehicle traffic accident of unspecified nature injuring driver of motor vehicle other than motorcycle', '(E819.0) Motor vehicle traffic accident of unspecified nature injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.1) Motor vehicle traffic accident of unspecified nature injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.1) Motor vehicle traffic accident of unspecified nature injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E819.1''', NULL, + '(E819.1) Motor vehicle traffic accident of unspecified nature injuring passenger in motor vehicle other than motorcycle', '(E819.1) Motor vehicle traffic accident of unspecified nature injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.2) Motor vehicle traffic accident of unspecified nature injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.2) Motor vehicle traffic accident of unspecified nature injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E819.2''', NULL, + '(E819.2) Motor vehicle traffic accident of unspecified nature injuring motorcyclist', '(E819.2) Motor vehicle traffic accident of unspecified nature injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.3) Motor vehicle traffic accident of unspecified nature injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.3) Motor vehicle traffic accident of unspecified nature injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E819.3''', NULL, + '(E819.3) Motor vehicle traffic accident of unspecified nature injuring passenger on motorcycle', '(E819.3) Motor vehicle traffic accident of unspecified nature injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.4) Motor vehicle traffic accident of unspecified nature injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.4) Motor vehicle traffic accident of unspecified nature injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E819.4''', NULL, + '(E819.4) Motor vehicle traffic accident of unspecified nature injuring occupant of streetcar', '(E819.4) Motor vehicle traffic accident of unspecified nature injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.5) Motor vehicle traffic accident of unspecified nature injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.5) Motor vehicle traffic accident of unspecified nature injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E819.5''', NULL, + '(E819.5) Motor vehicle traffic accident of unspecified nature injuring rider of animal; occupant of animal-drawn vehicle', '(E819.5) Motor vehicle traffic accident of unspecified nature injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.6) Motor vehicle traffic accident of unspecified nature injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.6) Motor vehicle traffic accident of unspecified nature injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E819.6''', NULL, + '(E819.6) Motor vehicle traffic accident of unspecified nature injuring pedal cyclist', '(E819.6) Motor vehicle traffic accident of unspecified nature injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.7) Motor vehicle traffic accident of unspecified nature injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.7) Motor vehicle traffic accident of unspecified nature injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E819.7''', NULL, + '(E819.7) Motor vehicle traffic accident of unspecified nature injuring pedestrian', '(E819.7) Motor vehicle traffic accident of unspecified nature injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.8) Motor vehicle traffic accident of unspecified nature injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.8) Motor vehicle traffic accident of unspecified nature injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E819.8''', NULL, + '(E819.8) Motor vehicle traffic accident of unspecified nature injuring other specified person', '(E819.8) Motor vehicle traffic accident of unspecified nature injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.9) Motor vehicle traffic accident of unspecified nature injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Motor vehicle traffic accident of unspecified nature (E819)\(E819.9) Motor vehicle traffic accident of unspecified nature injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E819.9''', NULL, + '(E819.9) Motor vehicle traffic accident of unspecified nature injuring unspecified person', '(E819.9) Motor vehicle traffic accident of unspecified nature injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E817''', NULL, + 'Noncollision motor vehicle traffic accident while boarding or alighting (E817)', 'Noncollision motor vehicle traffic accident while boarding or alighting (E817)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.0) Noncollision motor vehicle traffic accident while boarding or alighting injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.0) Noncollision motor vehicle traffic accident while boarding or alighting injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E817.0''', NULL, + '(E817.0) Noncollision motor vehicle traffic accident while boarding or alighting injuring driver of motor vehicle other than motorcycle', '(E817.0) Noncollision motor vehicle traffic accident while boarding or alighting injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.1) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.1) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E817.1''', NULL, + '(E817.1) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger in motor vehicle other than motorcycle', '(E817.1) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.2) Noncollision motor vehicle traffic accident while boarding or alighting injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.2) Noncollision motor vehicle traffic accident while boarding or alighting injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E817.2''', NULL, + '(E817.2) Noncollision motor vehicle traffic accident while boarding or alighting injuring motorcyclist', '(E817.2) Noncollision motor vehicle traffic accident while boarding or alighting injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.3) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.3) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E817.3''', NULL, + '(E817.3) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger on motorcycle', '(E817.3) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.4) Noncollision motor vehicle traffic accident while boarding or alighting injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.4) Noncollision motor vehicle traffic accident while boarding or alighting injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E817.4''', NULL, + '(E817.4) Noncollision motor vehicle traffic accident while boarding or alighting injuring occupant of streetcar', '(E817.4) Noncollision motor vehicle traffic accident while boarding or alighting injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.5) Noncollision motor vehicle traffic accident while boarding or alighting injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.5) Noncollision motor vehicle traffic accident while boarding or alighting injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E817.5''', NULL, + '(E817.5) Noncollision motor vehicle traffic accident while boarding or alighting injuring rider of animal; occupant of animal-drawn vehicle', '(E817.5) Noncollision motor vehicle traffic accident while boarding or alighting injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.6) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.6) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E817.6''', NULL, + '(E817.6) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedal cyclist', '(E817.6) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.7) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.7) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E817.7''', NULL, + '(E817.7) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedestrian', '(E817.7) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.8) Noncollision motor vehicle traffic accident while boarding or alighting injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.8) Noncollision motor vehicle traffic accident while boarding or alighting injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E817.8''', NULL, + '(E817.8) Noncollision motor vehicle traffic accident while boarding or alighting injuring other specified person', '(E817.8) Noncollision motor vehicle traffic accident while boarding or alighting injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.9) Noncollision motor vehicle traffic accident while boarding or alighting injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\(E817.9) Noncollision motor vehicle traffic accident while boarding or alighting injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E817.9''', NULL, + '(E817.9) Noncollision motor vehicle traffic accident while boarding or alighting injuring unspecified person', '(E817.9) Noncollision motor vehicle traffic accident while boarding or alighting injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E815''', NULL, + 'Other motor vehicle traffic accident involving collision on the highway (E815)', 'Other motor vehicle traffic accident involving collision on the highway (E815)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.0) Other motor vehicle traffic accident involving collision on the highway injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.0) Other motor vehicle traffic accident involving collision on the highway injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E815.0''', NULL, + '(E815.0) Other motor vehicle traffic accident involving collision on the highway injuring driver of motor vehicle other than motorcycle', '(E815.0) Other motor vehicle traffic accident involving collision on the highway injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.1) Other motor vehicle traffic accident involving collision on the highway injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.1) Other motor vehicle traffic accident involving collision on the highway injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E815.1''', NULL, + '(E815.1) Other motor vehicle traffic accident involving collision on the highway injuring passenger in motor vehicle other than motorcycle', '(E815.1) Other motor vehicle traffic accident involving collision on the highway injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.2) Other motor vehicle traffic accident involving collision on the highway injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.2) Other motor vehicle traffic accident involving collision on the highway injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E815.2''', NULL, + '(E815.2) Other motor vehicle traffic accident involving collision on the highway injuring motorcyclist', '(E815.2) Other motor vehicle traffic accident involving collision on the highway injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.3) Other motor vehicle traffic accident involving collision on the highway injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.3) Other motor vehicle traffic accident involving collision on the highway injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E815.3''', NULL, + '(E815.3) Other motor vehicle traffic accident involving collision on the highway injuring passenger on motorcycle', '(E815.3) Other motor vehicle traffic accident involving collision on the highway injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.4) Other motor vehicle traffic accident involving collision on the highway injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.4) Other motor vehicle traffic accident involving collision on the highway injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E815.4''', NULL, + '(E815.4) Other motor vehicle traffic accident involving collision on the highway injuring occupant of streetcar', '(E815.4) Other motor vehicle traffic accident involving collision on the highway injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.5) Other motor vehicle traffic accident involving collision on the highway injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.5) Other motor vehicle traffic accident involving collision on the highway injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E815.5''', NULL, + '(E815.5) Other motor vehicle traffic accident involving collision on the highway injuring rider of animal; occupant of animal-drawn vehicle', '(E815.5) Other motor vehicle traffic accident involving collision on the highway injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.6) Other motor vehicle traffic accident involving collision on the highway injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.6) Other motor vehicle traffic accident involving collision on the highway injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E815.6''', NULL, + '(E815.6) Other motor vehicle traffic accident involving collision on the highway injuring pedal cyclist', '(E815.6) Other motor vehicle traffic accident involving collision on the highway injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.7) Other motor vehicle traffic accident involving collision on the highway injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.7) Other motor vehicle traffic accident involving collision on the highway injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E815.7''', NULL, + '(E815.7) Other motor vehicle traffic accident involving collision on the highway injuring pedestrian', '(E815.7) Other motor vehicle traffic accident involving collision on the highway injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.8) Other motor vehicle traffic accident involving collision on the highway injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.8) Other motor vehicle traffic accident involving collision on the highway injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E815.8''', NULL, + '(E815.8) Other motor vehicle traffic accident involving collision on the highway injuring other specified person', '(E815.8) Other motor vehicle traffic accident involving collision on the highway injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.9) Other motor vehicle traffic accident involving collision on the highway injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision on the highway (E815)\(E815.9) Other motor vehicle traffic accident involving collision on the highway injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E815.9''', NULL, + '(E815.9) Other motor vehicle traffic accident involving collision on the highway injuring unspecified person', '(E815.9) Other motor vehicle traffic accident involving collision on the highway injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E812''', NULL, + 'Other motor vehicle traffic accident involving collision with motor vehicle (E812)', 'Other motor vehicle traffic accident involving collision with motor vehicle (E812)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.0) Other motor vehicle traffic accident involving collision with motor vehicle injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.0) Other motor vehicle traffic accident involving collision with motor vehicle injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E812.0''', NULL, + '(E812.0) Other motor vehicle traffic accident involving collision with motor vehicle injuring driver of motor vehicle other than motorcycle', '(E812.0) Other motor vehicle traffic accident involving collision with motor vehicle injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.1) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.1) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E812.1''', NULL, + '(E812.1) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger in motor vehicle other than motorcycle', '(E812.1) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.2) Other motor vehicle traffic accident involving collision with motor vehicle injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.2) Other motor vehicle traffic accident involving collision with motor vehicle injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E812.2''', NULL, + '(E812.2) Other motor vehicle traffic accident involving collision with motor vehicle injuring motorcyclist', '(E812.2) Other motor vehicle traffic accident involving collision with motor vehicle injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.3) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.3) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E812.3''', NULL, + '(E812.3) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger on motorcycle', '(E812.3) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.4) Other motor vehicle traffic accident involving collision with motor vehicle injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.4) Other motor vehicle traffic accident involving collision with motor vehicle injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E812.4''', NULL, + '(E812.4) Other motor vehicle traffic accident involving collision with motor vehicle injuring occupant of streetcar', '(E812.4) Other motor vehicle traffic accident involving collision with motor vehicle injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.5) Other motor vehicle traffic accident involving collision with motor vehicle injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.5) Other motor vehicle traffic accident involving collision with motor vehicle injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E812.5''', NULL, + '(E812.5) Other motor vehicle traffic accident involving collision with motor vehicle injuring rider of animal; occupant of animal-drawn vehicle', '(E812.5) Other motor vehicle traffic accident involving collision with motor vehicle injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.6) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.6) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E812.6''', NULL, + '(E812.6) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedal cyclist', '(E812.6) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.7) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.7) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E812.7''', NULL, + '(E812.7) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedestrian', '(E812.7) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.8) Other motor vehicle traffic accident involving collision with motor vehicle injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.8) Other motor vehicle traffic accident involving collision with motor vehicle injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E812.8''', NULL, + '(E812.8) Other motor vehicle traffic accident involving collision with motor vehicle injuring other specified person', '(E812.8) Other motor vehicle traffic accident involving collision with motor vehicle injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.9) Other motor vehicle traffic accident involving collision with motor vehicle injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\(E812.9) Other motor vehicle traffic accident involving collision with motor vehicle injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E812.9''', NULL, + '(E812.9) Other motor vehicle traffic accident involving collision with motor vehicle injuring unspecified person', '(E812.9) Other motor vehicle traffic accident involving collision with motor vehicle injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E818''', NULL, + 'Other noncollision motor vehicle traffic accident (E818)', 'Other noncollision motor vehicle traffic accident (E818)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.0) Other noncollision motor vehicle traffic accident injuring driver of motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.0) Other noncollision motor vehicle traffic accident injuring driver of motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E818.0''', NULL, + '(E818.0) Other noncollision motor vehicle traffic accident injuring driver of motor vehicle other than motorcycle', '(E818.0) Other noncollision motor vehicle traffic accident injuring driver of motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.1) Other noncollision motor vehicle traffic accident injuring passenger in motor vehicle other than motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.1) Other noncollision motor vehicle traffic accident injuring passenger in motor vehicle other than motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E818.1''', NULL, + '(E818.1) Other noncollision motor vehicle traffic accident injuring passenger in motor vehicle other than motorcycle', '(E818.1) Other noncollision motor vehicle traffic accident injuring passenger in motor vehicle other than motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.2) Other noncollision motor vehicle traffic accident injuring motorcyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.2) Other noncollision motor vehicle traffic accident injuring motorcyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E818.2''', NULL, + '(E818.2) Other noncollision motor vehicle traffic accident injuring motorcyclist', '(E818.2) Other noncollision motor vehicle traffic accident injuring motorcyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.3) Other noncollision motor vehicle traffic accident injuring passenger on motorcycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.3) Other noncollision motor vehicle traffic accident injuring passenger on motorcycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E818.3''', NULL, + '(E818.3) Other noncollision motor vehicle traffic accident injuring passenger on motorcycle', '(E818.3) Other noncollision motor vehicle traffic accident injuring passenger on motorcycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.4) Other noncollision motor vehicle traffic accident injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.4) Other noncollision motor vehicle traffic accident injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E818.4''', NULL, + '(E818.4) Other noncollision motor vehicle traffic accident injuring occupant of streetcar', '(E818.4) Other noncollision motor vehicle traffic accident injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.5) Other noncollision motor vehicle traffic accident injuring rider of animal; occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.5) Other noncollision motor vehicle traffic accident injuring rider of animal; occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E818.5''', NULL, + '(E818.5) Other noncollision motor vehicle traffic accident injuring rider of animal; occupant of animal-drawn vehicle', '(E818.5) Other noncollision motor vehicle traffic accident injuring rider of animal; occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.6) Other noncollision motor vehicle traffic accident injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.6) Other noncollision motor vehicle traffic accident injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E818.6''', NULL, + '(E818.6) Other noncollision motor vehicle traffic accident injuring pedal cyclist', '(E818.6) Other noncollision motor vehicle traffic accident injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.7) Other noncollision motor vehicle traffic accident injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.7) Other noncollision motor vehicle traffic accident injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E818.7''', NULL, + '(E818.7) Other noncollision motor vehicle traffic accident injuring pedestrian', '(E818.7) Other noncollision motor vehicle traffic accident injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.8) Other noncollision motor vehicle traffic accident injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.8) Other noncollision motor vehicle traffic accident injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E818.8''', NULL, + '(E818.8) Other noncollision motor vehicle traffic accident injuring other specified person', '(E818.8) Other noncollision motor vehicle traffic accident injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.9) Other noncollision motor vehicle traffic accident injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\Other noncollision motor vehicle traffic accident (E818)\(E818.9) Other noncollision motor vehicle traffic accident injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E818.9''', NULL, + '(E818.9) Other noncollision motor vehicle traffic accident injuring unspecified person', '(E818.9) Other noncollision motor vehicle traffic accident injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E826'' AND ''E829.9''', NULL, + 'OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)', 'OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E828''', NULL, + 'Accident involving animal being ridden (E828)', 'Accident involving animal being ridden (E828)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\(E828.0) Accident involving animal being ridden injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\(E828.0) Accident involving animal being ridden injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E828.0''', NULL, + '(E828.0) Accident involving animal being ridden injuring pedestrian', '(E828.0) Accident involving animal being ridden injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\(E828.2) Accident involving animal being ridden injuring rider of animal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\(E828.2) Accident involving animal being ridden injuring rider of animal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E828.2''', NULL, + '(E828.2) Accident involving animal being ridden injuring rider of animal', '(E828.2) Accident involving animal being ridden injuring rider of animal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\(E828.4) Accident involving animal being ridden injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\(E828.4) Accident involving animal being ridden injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E828.4''', NULL, + '(E828.4) Accident involving animal being ridden injuring occupant of streetcar', '(E828.4) Accident involving animal being ridden injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\(E828.8) Accident involving animal being ridden injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\(E828.8) Accident involving animal being ridden injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E828.8''', NULL, + '(E828.8) Accident involving animal being ridden injuring other specified person', '(E828.8) Accident involving animal being ridden injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\(E828.9) Accident involving animal being ridden injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Accident involving animal being ridden (E828)\(E828.9) Accident involving animal being ridden injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E828.9''', NULL, + '(E828.9) Accident involving animal being ridden injuring unspecified person', '(E828.9) Accident involving animal being ridden injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E827''', NULL, + 'Animal-drawn vehicle accident (E827)', 'Animal-drawn vehicle accident (E827)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.0) Animal-drawn vehicle accident injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.0) Animal-drawn vehicle accident injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E827.0''', NULL, + '(E827.0) Animal-drawn vehicle accident injuring pedestrian', '(E827.0) Animal-drawn vehicle accident injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.2) Animal-drawn vehicle accident injuring rider of animal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.2) Animal-drawn vehicle accident injuring rider of animal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E827.2''', NULL, + '(E827.2) Animal-drawn vehicle accident injuring rider of animal', '(E827.2) Animal-drawn vehicle accident injuring rider of animal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.3) Animal-drawn vehicle accident injuring occupant of animal drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.3) Animal-drawn vehicle accident injuring occupant of animal drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E827.3''', NULL, + '(E827.3) Animal-drawn vehicle accident injuring occupant of animal drawn vehicle', '(E827.3) Animal-drawn vehicle accident injuring occupant of animal drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.4) Animal-drawn vehicle accident injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.4) Animal-drawn vehicle accident injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E827.4''', NULL, + '(E827.4) Animal-drawn vehicle accident injuring occupant of streetcar', '(E827.4) Animal-drawn vehicle accident injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.8) Animal-drawn vehicle accident injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.8) Animal-drawn vehicle accident injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E827.8''', NULL, + '(E827.8) Animal-drawn vehicle accident injuring other specified person', '(E827.8) Animal-drawn vehicle accident injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.9) Animal-drawn vehicle accident injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Animal-drawn vehicle accident (E827)\(E827.9) Animal-drawn vehicle accident injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E827.9''', NULL, + '(E827.9) Animal-drawn vehicle accident injuring unspecified person', '(E827.9) Animal-drawn vehicle accident injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E829''', NULL, + 'Other road vehicle accidents (E829)', 'Other road vehicle accidents (E829)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\(E829.0) Other road vehicle accidents injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\(E829.0) Other road vehicle accidents injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E829.0''', NULL, + '(E829.0) Other road vehicle accidents injuring pedestrian', '(E829.0) Other road vehicle accidents injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\(E829.4) Other road vehicle accidents injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\(E829.4) Other road vehicle accidents injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E829.4''', NULL, + '(E829.4) Other road vehicle accidents injuring occupant of streetcar', '(E829.4) Other road vehicle accidents injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\(E829.8) Other road vehicle accidents injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\(E829.8) Other road vehicle accidents injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E829.8''', NULL, + '(E829.8) Other road vehicle accidents injuring other specified person', '(E829.8) Other road vehicle accidents injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\(E829.9) Other road vehicle accidents injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Other road vehicle accidents (E829)\(E829.9) Other road vehicle accidents injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E829.9''', NULL, + '(E829.9) Other road vehicle accidents injuring unspecified person', '(E829.9) Other road vehicle accidents injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E826''', NULL, + 'Pedal cycle accident (E826)', 'Pedal cycle accident (E826)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.0) Pedal cycle accident injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.0) Pedal cycle accident injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E826.0''', NULL, + '(E826.0) Pedal cycle accident injuring pedestrian', '(E826.0) Pedal cycle accident injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.1) Pedal cycle accident injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.1) Pedal cycle accident injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E826.1''', NULL, + '(E826.1) Pedal cycle accident injuring pedal cyclist', '(E826.1) Pedal cycle accident injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.2) Pedal cycle accident injuring rider of animal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.2) Pedal cycle accident injuring rider of animal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E826.2''', NULL, + '(E826.2) Pedal cycle accident injuring rider of animal', '(E826.2) Pedal cycle accident injuring rider of animal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.3) Pedal cycle accident injuring occupant of animal-drawn vehicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.3) Pedal cycle accident injuring occupant of animal-drawn vehicle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E826.3''', NULL, + '(E826.3) Pedal cycle accident injuring occupant of animal-drawn vehicle', '(E826.3) Pedal cycle accident injuring occupant of animal-drawn vehicle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.4) Pedal cycle accident injuring occupant of streetcar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.4) Pedal cycle accident injuring occupant of streetcar\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E826.4''', NULL, + '(E826.4) Pedal cycle accident injuring occupant of streetcar', '(E826.4) Pedal cycle accident injuring occupant of streetcar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.8) Pedal cycle accident injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.8) Pedal cycle accident injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E826.8''', NULL, + '(E826.8) Pedal cycle accident injuring other specified person', '(E826.8) Pedal cycle accident injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.9) Pedal cycle accident injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\Pedal cycle accident (E826)\(E826.9) Pedal cycle accident injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E826.9''', NULL, + '(E826.9) Pedal cycle accident injuring unspecified person', '(E826.9) Pedal cycle accident injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E800'' AND ''E807.9''', NULL, + 'RAILWAY ACCIDENTS (E800-E807.9)', 'RAILWAY ACCIDENTS (E800-E807.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E804''', NULL, + 'Fall in, on, or from railway train (E804)', 'Fall in, on, or from railway train (E804)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.0) Fall in, on, or from railway train injuring railway employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.0) Fall in, on, or from railway train injuring railway employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E804.0''', NULL, + '(E804.0) Fall in, on, or from railway train injuring railway employee', '(E804.0) Fall in, on, or from railway train injuring railway employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.1) Fall in, on, or from railway train injuring passenger on railway\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.1) Fall in, on, or from railway train injuring passenger on railway\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E804.1''', NULL, + '(E804.1) Fall in, on, or from railway train injuring passenger on railway', '(E804.1) Fall in, on, or from railway train injuring passenger on railway', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.2) Fall in, on, or from railway train injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.2) Fall in, on, or from railway train injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E804.2''', NULL, + '(E804.2) Fall in, on, or from railway train injuring pedestrian', '(E804.2) Fall in, on, or from railway train injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.3) Fall in, on, or from railway train injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.3) Fall in, on, or from railway train injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E804.3''', NULL, + '(E804.3) Fall in, on, or from railway train injuring pedal cyclist', '(E804.3) Fall in, on, or from railway train injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.8) Fall in, on, or from railway train injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.8) Fall in, on, or from railway train injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E804.8''', NULL, + '(E804.8) Fall in, on, or from railway train injuring other specified person', '(E804.8) Fall in, on, or from railway train injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.9) Fall in, on, or from railway train injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Fall in, on, or from railway train (E804)\(E804.9) Fall in, on, or from railway train injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E804.9''', NULL, + '(E804.9) Fall in, on, or from railway train injuring unspecified person', '(E804.9) Fall in, on, or from railway train injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E805''', NULL, + 'Hit by rolling stock (E805)', 'Hit by rolling stock (E805)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.0) Railway employee hit by rolling stock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.0) Railway employee hit by rolling stock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E805.0''', NULL, + '(E805.0) Railway employee hit by rolling stock', '(E805.0) Railway employee hit by rolling stock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.1) Passenger on railway hit by rolling stock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.1) Passenger on railway hit by rolling stock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E805.1''', NULL, + '(E805.1) Passenger on railway hit by rolling stock', '(E805.1) Passenger on railway hit by rolling stock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.2) Pedestrian hit by rolling stock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.2) Pedestrian hit by rolling stock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E805.2''', NULL, + '(E805.2) Pedestrian hit by rolling stock', '(E805.2) Pedestrian hit by rolling stock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.3) Pedal cyclist hit by rolling stock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.3) Pedal cyclist hit by rolling stock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E805.3''', NULL, + '(E805.3) Pedal cyclist hit by rolling stock', '(E805.3) Pedal cyclist hit by rolling stock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.8) Other specified person hit by rolling stock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.8) Other specified person hit by rolling stock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E805.8''', NULL, + '(E805.8) Other specified person hit by rolling stock', '(E805.8) Other specified person hit by rolling stock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.9) Unspecified person hit by rolling stock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Hit by rolling stock (E805)\(E805.9) Unspecified person hit by rolling stock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E805.9''', NULL, + '(E805.9) Unspecified person hit by rolling stock', '(E805.9) Unspecified person hit by rolling stock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E806''', NULL, + 'Other specified railway accident (E806)', 'Other specified railway accident (E806)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.0) Other specified railway accident injuring railway employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.0) Other specified railway accident injuring railway employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E806.0''', NULL, + '(E806.0) Other specified railway accident injuring railway employee', '(E806.0) Other specified railway accident injuring railway employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.1) Other specified railway accident injuring passenger on railway\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.1) Other specified railway accident injuring passenger on railway\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E806.1''', NULL, + '(E806.1) Other specified railway accident injuring passenger on railway', '(E806.1) Other specified railway accident injuring passenger on railway', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.2) Other specified railway accident injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.2) Other specified railway accident injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E806.2''', NULL, + '(E806.2) Other specified railway accident injuring pedestrian', '(E806.2) Other specified railway accident injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.3) Other specified railway accident injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.3) Other specified railway accident injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E806.3''', NULL, + '(E806.3) Other specified railway accident injuring pedal cyclist', '(E806.3) Other specified railway accident injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.8) Other specified railway accident injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.8) Other specified railway accident injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E806.8''', NULL, + '(E806.8) Other specified railway accident injuring other specified person', '(E806.8) Other specified railway accident injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.9) Other specified railway accident injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Other specified railway accident (E806)\(E806.9) Other specified railway accident injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E806.9''', NULL, + '(E806.9) Other specified railway accident injuring unspecified person', '(E806.9) Other specified railway accident injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E801''', NULL, + 'Railway accident involving collision with other object (E801)', 'Railway accident involving collision with other object (E801)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.0) Railway accident involving collision with other object and injuring railway employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.0) Railway accident involving collision with other object and injuring railway employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E801.0''', NULL, + '(E801.0) Railway accident involving collision with other object and injuring railway employee', '(E801.0) Railway accident involving collision with other object and injuring railway employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.1) Railway accident involving collision with other object and injuring passenger on railway\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.1) Railway accident involving collision with other object and injuring passenger on railway\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E801.1''', NULL, + '(E801.1) Railway accident involving collision with other object and injuring passenger on railway', '(E801.1) Railway accident involving collision with other object and injuring passenger on railway', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.2) Railway accident involving collision with other object and injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.2) Railway accident involving collision with other object and injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E801.2''', NULL, + '(E801.2) Railway accident involving collision with other object and injuring pedestrian', '(E801.2) Railway accident involving collision with other object and injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.3) Railway accident involving collision with other object and injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.3) Railway accident involving collision with other object and injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E801.3''', NULL, + '(E801.3) Railway accident involving collision with other object and injuring pedal cyclist', '(E801.3) Railway accident involving collision with other object and injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.8) Railway accident involving collision with other object and injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.8) Railway accident involving collision with other object and injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E801.8''', NULL, + '(E801.8) Railway accident involving collision with other object and injuring other specified person', '(E801.8) Railway accident involving collision with other object and injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.9) Railway accident involving collision with other object and injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with other object (E801)\(E801.9) Railway accident involving collision with other object and injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E801.9''', NULL, + '(E801.9) Railway accident involving collision with other object and injuring unspecified person', '(E801.9) Railway accident involving collision with other object and injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E800''', NULL, + 'Railway accident involving collision with rolling stock (E800)', 'Railway accident involving collision with rolling stock (E800)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.0) Railway accident involving collision with rolling stock and injuring railway employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.0) Railway accident involving collision with rolling stock and injuring railway employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E800.0''', NULL, + '(E800.0) Railway accident involving collision with rolling stock and injuring railway employee', '(E800.0) Railway accident involving collision with rolling stock and injuring railway employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.1) Railway accident involving collision with rolling stock and injuring passenger on railway\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.1) Railway accident involving collision with rolling stock and injuring passenger on railway\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E800.1''', NULL, + '(E800.1) Railway accident involving collision with rolling stock and injuring passenger on railway', '(E800.1) Railway accident involving collision with rolling stock and injuring passenger on railway', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.2) Railway accident involving collision with rolling stock and injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.2) Railway accident involving collision with rolling stock and injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E800.2''', NULL, + '(E800.2) Railway accident involving collision with rolling stock and injuring pedestrian', '(E800.2) Railway accident involving collision with rolling stock and injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.3) Railway accident involving collision with rolling stock and injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.3) Railway accident involving collision with rolling stock and injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E800.3''', NULL, + '(E800.3) Railway accident involving collision with rolling stock and injuring pedal cyclist', '(E800.3) Railway accident involving collision with rolling stock and injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.8) Railway accident involving collision with rolling stock and injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.8) Railway accident involving collision with rolling stock and injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E800.8''', NULL, + '(E800.8) Railway accident involving collision with rolling stock and injuring other specified person', '(E800.8) Railway accident involving collision with rolling stock and injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.9) Railway accident involving collision with rolling stock and injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving collision with rolling stock (E800)\(E800.9) Railway accident involving collision with rolling stock and injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E800.9''', NULL, + '(E800.9) Railway accident involving collision with rolling stock and injuring unspecified person', '(E800.9) Railway accident involving collision with rolling stock and injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E802''', NULL, + 'Railway accident involving derailment without antecedent collision (E802)', 'Railway accident involving derailment without antecedent collision (E802)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.0) Railway accident involving derailment without antecedent collision injuring railway employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.0) Railway accident involving derailment without antecedent collision injuring railway employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E802.0''', NULL, + '(E802.0) Railway accident involving derailment without antecedent collision injuring railway employee', '(E802.0) Railway accident involving derailment without antecedent collision injuring railway employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.1) Railway accident involving derailment without antecedent collision injuring passenger on railway\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.1) Railway accident involving derailment without antecedent collision injuring passenger on railway\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E802.1''', NULL, + '(E802.1) Railway accident involving derailment without antecedent collision injuring passenger on railway', '(E802.1) Railway accident involving derailment without antecedent collision injuring passenger on railway', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.2) Railway accident involving derailment without antecedent collision injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.2) Railway accident involving derailment without antecedent collision injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E802.2''', NULL, + '(E802.2) Railway accident involving derailment without antecedent collision injuring pedestrian', '(E802.2) Railway accident involving derailment without antecedent collision injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.3) Railway accident involving derailment without antecedent collision injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.3) Railway accident involving derailment without antecedent collision injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E802.3''', NULL, + '(E802.3) Railway accident involving derailment without antecedent collision injuring pedal cyclist', '(E802.3) Railway accident involving derailment without antecedent collision injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.8) Railway accident involving derailment without antecedent collision injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.8) Railway accident involving derailment without antecedent collision injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E802.8''', NULL, + '(E802.8) Railway accident involving derailment without antecedent collision injuring other specified person', '(E802.8) Railway accident involving derailment without antecedent collision injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.9) Railway accident involving derailment without antecedent collision injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving derailment without antecedent collision (E802)\(E802.9) Railway accident involving derailment without antecedent collision injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E802.9''', NULL, + '(E802.9) Railway accident involving derailment without antecedent collision injuring unspecified person', '(E802.9) Railway accident involving derailment without antecedent collision injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E803''', NULL, + 'Railway accident involving explosion, fire, or burning (E803)', 'Railway accident involving explosion, fire, or burning (E803)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.0) Railway accident involving explosion, fire, or burning injuring railway employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.0) Railway accident involving explosion, fire, or burning injuring railway employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E803.0''', NULL, + '(E803.0) Railway accident involving explosion, fire, or burning injuring railway employee', '(E803.0) Railway accident involving explosion, fire, or burning injuring railway employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.1) Railway accident involving explosion, fire, or burning injuring passenger on railway\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.1) Railway accident involving explosion, fire, or burning injuring passenger on railway\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E803.1''', NULL, + '(E803.1) Railway accident involving explosion, fire, or burning injuring passenger on railway', '(E803.1) Railway accident involving explosion, fire, or burning injuring passenger on railway', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.2) Railway accident involving explosion, fire, or burning injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.2) Railway accident involving explosion, fire, or burning injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E803.2''', NULL, + '(E803.2) Railway accident involving explosion, fire, or burning injuring pedestrian', '(E803.2) Railway accident involving explosion, fire, or burning injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.3) Railway accident involving explosion, fire, or burning injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.3) Railway accident involving explosion, fire, or burning injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E803.3''', NULL, + '(E803.3) Railway accident involving explosion, fire, or burning injuring pedal cyclist', '(E803.3) Railway accident involving explosion, fire, or burning injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.8) Railway accident involving explosion, fire, or burning injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.8) Railway accident involving explosion, fire, or burning injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E803.8''', NULL, + '(E803.8) Railway accident involving explosion, fire, or burning injuring other specified person', '(E803.8) Railway accident involving explosion, fire, or burning injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.9) Railway accident involving explosion, fire, or burning injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident involving explosion, fire, or burning (E803)\(E803.9) Railway accident involving explosion, fire, or burning injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E803.9''', NULL, + '(E803.9) Railway accident involving explosion, fire, or burning injuring unspecified person', '(E803.9) Railway accident involving explosion, fire, or burning injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E807''', NULL, + 'Railway accident of unspecified nature (E807)', 'Railway accident of unspecified nature (E807)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.0) Railway accident of unspecified nature injuring railway employee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.0) Railway accident of unspecified nature injuring railway employee\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E807.0''', NULL, + '(E807.0) Railway accident of unspecified nature injuring railway employee', '(E807.0) Railway accident of unspecified nature injuring railway employee', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.1) Railway accident of unspecified nature injuring passenger on railway\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.1) Railway accident of unspecified nature injuring passenger on railway\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E807.1''', NULL, + '(E807.1) Railway accident of unspecified nature injuring passenger on railway', '(E807.1) Railway accident of unspecified nature injuring passenger on railway', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.2) Railway accident of unspecified nature injuring pedestrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.2) Railway accident of unspecified nature injuring pedestrian\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E807.2''', NULL, + '(E807.2) Railway accident of unspecified nature injuring pedestrian', '(E807.2) Railway accident of unspecified nature injuring pedestrian', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.3) Railway accident of unspecified nature injuring pedal cyclist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.3) Railway accident of unspecified nature injuring pedal cyclist\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E807.3''', NULL, + '(E807.3) Railway accident of unspecified nature injuring pedal cyclist', '(E807.3) Railway accident of unspecified nature injuring pedal cyclist', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.8) Railway accident of unspecified nature injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.8) Railway accident of unspecified nature injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E807.8''', NULL, + '(E807.8) Railway accident of unspecified nature injuring other specified person', '(E807.8) Railway accident of unspecified nature injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.9) Railway accident of unspecified nature injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\RAILWAY ACCIDENTS (E800-E807.9)\Railway accident of unspecified nature (E807)\(E807.9) Railway accident of unspecified nature injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E807.9''', NULL, + '(E807.9) Railway accident of unspecified nature injuring unspecified person', '(E807.9) Railway accident of unspecified nature injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E846'' AND ''E848.9''', NULL, + 'VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)', 'VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\(E846) Accidents involving powered vehicles used solely within the buildings and premises of industrial or commercial establishment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\(E846) Accidents involving powered vehicles used solely within the buildings and premises of industrial or commercial establishment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E846''', NULL, + '(E846) Accidents involving powered vehicles used solely within the buildings and premises of industrial or commercial establishment', '(E846) Accidents involving powered vehicles used solely within the buildings and premises of industrial or commercial establishment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\(E847) Accidents involving cable cars not running on rails\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\(E847) Accidents involving cable cars not running on rails\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E847''', NULL, + '(E847) Accidents involving cable cars not running on rails', '(E847) Accidents involving cable cars not running on rails', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\(E848) Accidents involving other vehicles, not elsewhere classifiable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\(E848) Accidents involving other vehicles, not elsewhere classifiable\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E848''', NULL, + '(E848) Accidents involving other vehicles, not elsewhere classifiable', '(E848) Accidents involving other vehicles, not elsewhere classifiable', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''E830'' AND ''E838.9''', NULL, + 'WATER TRANSPORT ACCIDENTS (E830-E838.9)', 'WATER TRANSPORT ACCIDENTS (E830-E838.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E831''', NULL, + 'Accident to watercraft causing other injury (E831)', 'Accident to watercraft causing other injury (E831)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.0) Accident to watercraft causing other injury to occupant of small boat, unpowered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.0) Accident to watercraft causing other injury to occupant of small boat, unpowered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E831.0''', NULL, + '(E831.0) Accident to watercraft causing other injury to occupant of small boat, unpowered', '(E831.0) Accident to watercraft causing other injury to occupant of small boat, unpowered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.1) Accident to watercraft causing other injury to occupant of small boat, powered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.1) Accident to watercraft causing other injury to occupant of small boat, powered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E831.1''', NULL, + '(E831.1) Accident to watercraft causing other injury to occupant of small boat, powered', '(E831.1) Accident to watercraft causing other injury to occupant of small boat, powered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.2) Accident to watercraft causing other injury to occupant of other watercraft -- crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.2) Accident to watercraft causing other injury to occupant of other watercraft -- crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E831.2''', NULL, + '(E831.2) Accident to watercraft causing other injury to occupant of other watercraft -- crew', '(E831.2) Accident to watercraft causing other injury to occupant of other watercraft -- crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.3) Accident to watercraft causing other injury to occupant of other watercraft -- other than crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.3) Accident to watercraft causing other injury to occupant of other watercraft -- other than crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E831.3''', NULL, + '(E831.3) Accident to watercraft causing other injury to occupant of other watercraft -- other than crew', '(E831.3) Accident to watercraft causing other injury to occupant of other watercraft -- other than crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.4) Accident to watercraft causing other injury to water skier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.4) Accident to watercraft causing other injury to water skier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E831.4''', NULL, + '(E831.4) Accident to watercraft causing other injury to water skier', '(E831.4) Accident to watercraft causing other injury to water skier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.5) Accident to watercraft causing other injury to swimmer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.5) Accident to watercraft causing other injury to swimmer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E831.5''', NULL, + '(E831.5) Accident to watercraft causing other injury to swimmer', '(E831.5) Accident to watercraft causing other injury to swimmer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.6) Accident to watercraft causing other injury to dockers, stevedores\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.6) Accident to watercraft causing other injury to dockers, stevedores\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E831.6''', NULL, + '(E831.6) Accident to watercraft causing other injury to dockers, stevedores', '(E831.6) Accident to watercraft causing other injury to dockers, stevedores', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.8) Accident to watercraft causing other injury to other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.8) Accident to watercraft causing other injury to other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E831.8''', NULL, + '(E831.8) Accident to watercraft causing other injury to other specified person', '(E831.8) Accident to watercraft causing other injury to other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.9) Accident to watercraft causing other injury to unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing other injury (E831)\(E831.9) Accident to watercraft causing other injury to unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E831.9''', NULL, + '(E831.9) Accident to watercraft causing other injury to unspecified person', '(E831.9) Accident to watercraft causing other injury to unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E830''', NULL, + 'Accident to watercraft causing submersion (E830)', 'Accident to watercraft causing submersion (E830)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.0) Accident to watercraft causing submersion injuring occupant of small boat, unpowered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.0) Accident to watercraft causing submersion injuring occupant of small boat, unpowered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E830.0''', NULL, + '(E830.0) Accident to watercraft causing submersion injuring occupant of small boat, unpowered', '(E830.0) Accident to watercraft causing submersion injuring occupant of small boat, unpowered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.1) Accident to watercraft causing submersion injuring occupant of small boat, powered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.1) Accident to watercraft causing submersion injuring occupant of small boat, powered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E830.1''', NULL, + '(E830.1) Accident to watercraft causing submersion injuring occupant of small boat, powered', '(E830.1) Accident to watercraft causing submersion injuring occupant of small boat, powered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.2) Accident to watercraft causing submersion injuring occupant of other watercraft -- crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.2) Accident to watercraft causing submersion injuring occupant of other watercraft -- crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E830.2''', NULL, + '(E830.2) Accident to watercraft causing submersion injuring occupant of other watercraft -- crew', '(E830.2) Accident to watercraft causing submersion injuring occupant of other watercraft -- crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.3) Accident to watercraft causing submersion injuring occupant of other watercraft -- other than crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.3) Accident to watercraft causing submersion injuring occupant of other watercraft -- other than crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E830.3''', NULL, + '(E830.3) Accident to watercraft causing submersion injuring occupant of other watercraft -- other than crew', '(E830.3) Accident to watercraft causing submersion injuring occupant of other watercraft -- other than crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.4) Accident to watercraft causing submersion injuring water skier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.4) Accident to watercraft causing submersion injuring water skier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E830.4''', NULL, + '(E830.4) Accident to watercraft causing submersion injuring water skier', '(E830.4) Accident to watercraft causing submersion injuring water skier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.5) Accident to watercraft causing submersion injuring swimmer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.5) Accident to watercraft causing submersion injuring swimmer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E830.5''', NULL, + '(E830.5) Accident to watercraft causing submersion injuring swimmer', '(E830.5) Accident to watercraft causing submersion injuring swimmer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.6) Accident to watercraft causing submersion injuring dockers, stevedores\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.6) Accident to watercraft causing submersion injuring dockers, stevedores\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E830.6''', NULL, + '(E830.6) Accident to watercraft causing submersion injuring dockers, stevedores', '(E830.6) Accident to watercraft causing submersion injuring dockers, stevedores', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.8) Accident to watercraft causing submersion injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.8) Accident to watercraft causing submersion injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E830.8''', NULL, + '(E830.8) Accident to watercraft causing submersion injuring other specified person', '(E830.8) Accident to watercraft causing submersion injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.9) Accident to watercraft causing submersion injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Accident to watercraft causing submersion (E830)\(E830.9) Accident to watercraft causing submersion injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E830.9''', NULL, + '(E830.9) Accident to watercraft causing submersion injuring unspecified person', '(E830.9) Accident to watercraft causing submersion injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E837''', NULL, + 'Explosion, fire, or burning in watercraft (E837)', 'Explosion, fire, or burning in watercraft (E837)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.0) Explosion, fire, or burning in watercraft injuring occupant of small boat, unpowered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.0) Explosion, fire, or burning in watercraft injuring occupant of small boat, unpowered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E837.0''', NULL, + '(E837.0) Explosion, fire, or burning in watercraft injuring occupant of small boat, unpowered', '(E837.0) Explosion, fire, or burning in watercraft injuring occupant of small boat, unpowered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.1) Explosion, fire, or burning in watercraft injuring occupant of small boat, powered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.1) Explosion, fire, or burning in watercraft injuring occupant of small boat, powered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E837.1''', NULL, + '(E837.1) Explosion, fire, or burning in watercraft injuring occupant of small boat, powered', '(E837.1) Explosion, fire, or burning in watercraft injuring occupant of small boat, powered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.2) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.2) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E837.2''', NULL, + '(E837.2) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- crew', '(E837.2) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.3) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- other than crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.3) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- other than crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E837.3''', NULL, + '(E837.3) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- other than crew', '(E837.3) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- other than crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.4) Explosion, fire, or burning in watercraft injuring water skier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.4) Explosion, fire, or burning in watercraft injuring water skier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E837.4''', NULL, + '(E837.4) Explosion, fire, or burning in watercraft injuring water skier', '(E837.4) Explosion, fire, or burning in watercraft injuring water skier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.5) Explosion, fire, or burning in watercraft injuring swimmer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.5) Explosion, fire, or burning in watercraft injuring swimmer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E837.5''', NULL, + '(E837.5) Explosion, fire, or burning in watercraft injuring swimmer', '(E837.5) Explosion, fire, or burning in watercraft injuring swimmer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.6) Explosion, fire, or burning in watercraft injuring dockers, stevedores\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.6) Explosion, fire, or burning in watercraft injuring dockers, stevedores\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E837.6''', NULL, + '(E837.6) Explosion, fire, or burning in watercraft injuring dockers, stevedores', '(E837.6) Explosion, fire, or burning in watercraft injuring dockers, stevedores', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.8) Explosion, fire, or burning in watercraft injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.8) Explosion, fire, or burning in watercraft injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E837.8''', NULL, + '(E837.8) Explosion, fire, or burning in watercraft injuring other specified person', '(E837.8) Explosion, fire, or burning in watercraft injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.9) Explosion, fire, or burning in watercraft injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Explosion, fire, or burning in watercraft (E837)\(E837.9) Explosion, fire, or burning in watercraft injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E837.9''', NULL, + '(E837.9) Explosion, fire, or burning in watercraft injuring unspecified person', '(E837.9) Explosion, fire, or burning in watercraft injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E833''', NULL, + 'Fall on stairs or ladders in water transport (E833)', 'Fall on stairs or ladders in water transport (E833)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.0) Fall on stairs or ladders in water transport injuring occupant of small boat, unpowered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.0) Fall on stairs or ladders in water transport injuring occupant of small boat, unpowered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E833.0''', NULL, + '(E833.0) Fall on stairs or ladders in water transport injuring occupant of small boat, unpowered', '(E833.0) Fall on stairs or ladders in water transport injuring occupant of small boat, unpowered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.1) Fall on stairs or ladders in water transport injuring occupant of small boat, powered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.1) Fall on stairs or ladders in water transport injuring occupant of small boat, powered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E833.1''', NULL, + '(E833.1) Fall on stairs or ladders in water transport injuring occupant of small boat, powered', '(E833.1) Fall on stairs or ladders in water transport injuring occupant of small boat, powered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.2) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.2) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E833.2''', NULL, + '(E833.2) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- crew', '(E833.2) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.3) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- other than crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.3) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- other than crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E833.3''', NULL, + '(E833.3) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- other than crew', '(E833.3) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- other than crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.4) Fall on stairs or ladders in water transport injuring water skier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.4) Fall on stairs or ladders in water transport injuring water skier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E833.4''', NULL, + '(E833.4) Fall on stairs or ladders in water transport injuring water skier', '(E833.4) Fall on stairs or ladders in water transport injuring water skier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.5) Fall on stairs or ladders in water transport injuring swimmer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.5) Fall on stairs or ladders in water transport injuring swimmer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E833.5''', NULL, + '(E833.5) Fall on stairs or ladders in water transport injuring swimmer', '(E833.5) Fall on stairs or ladders in water transport injuring swimmer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.6) Fall on stairs or ladders in water transport injuring dockers, stevedores\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.6) Fall on stairs or ladders in water transport injuring dockers, stevedores\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E833.6''', NULL, + '(E833.6) Fall on stairs or ladders in water transport injuring dockers, stevedores', '(E833.6) Fall on stairs or ladders in water transport injuring dockers, stevedores', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.8) Fall on stairs or ladders in water transport injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.8) Fall on stairs or ladders in water transport injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E833.8''', NULL, + '(E833.8) Fall on stairs or ladders in water transport injuring other specified person', '(E833.8) Fall on stairs or ladders in water transport injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.9) Fall on stairs or ladders in water transport injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Fall on stairs or ladders in water transport (E833)\(E833.9) Fall on stairs or ladders in water transport injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E833.9''', NULL, + '(E833.9) Fall on stairs or ladders in water transport injuring unspecified person', '(E833.9) Fall on stairs or ladders in water transport injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E836''', NULL, + 'Machinery accident in water transport (E836)', 'Machinery accident in water transport (E836)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.0) Machinery accident in water transport injuring occupant of small boat, unpowered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.0) Machinery accident in water transport injuring occupant of small boat, unpowered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E836.0''', NULL, + '(E836.0) Machinery accident in water transport injuring occupant of small boat, unpowered', '(E836.0) Machinery accident in water transport injuring occupant of small boat, unpowered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.1) Machinery accident in water transport injuring occupant of small boat, powered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.1) Machinery accident in water transport injuring occupant of small boat, powered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E836.1''', NULL, + '(E836.1) Machinery accident in water transport injuring occupant of small boat, powered', '(E836.1) Machinery accident in water transport injuring occupant of small boat, powered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.2) Machinery accident in water transport injuring occupant of other watercraft -- crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.2) Machinery accident in water transport injuring occupant of other watercraft -- crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E836.2''', NULL, + '(E836.2) Machinery accident in water transport injuring occupant of other watercraft -- crew', '(E836.2) Machinery accident in water transport injuring occupant of other watercraft -- crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.3) Machinery accident in water transport injuring occupant of other watercraft -- other than crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.3) Machinery accident in water transport injuring occupant of other watercraft -- other than crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E836.3''', NULL, + '(E836.3) Machinery accident in water transport injuring occupant of other watercraft -- other than crew', '(E836.3) Machinery accident in water transport injuring occupant of other watercraft -- other than crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.4) Machinery accident in water transport injuring water skier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.4) Machinery accident in water transport injuring water skier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E836.4''', NULL, + '(E836.4) Machinery accident in water transport injuring water skier', '(E836.4) Machinery accident in water transport injuring water skier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.5) Machinery accident in water transport injuring swimmer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.5) Machinery accident in water transport injuring swimmer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E836.5''', NULL, + '(E836.5) Machinery accident in water transport injuring swimmer', '(E836.5) Machinery accident in water transport injuring swimmer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.6) Machinery accident in water transport injuring dockers, stevedores\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.6) Machinery accident in water transport injuring dockers, stevedores\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E836.6''', NULL, + '(E836.6) Machinery accident in water transport injuring dockers, stevedores', '(E836.6) Machinery accident in water transport injuring dockers, stevedores', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.8) Machinery accident in water transport injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.8) Machinery accident in water transport injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E836.8''', NULL, + '(E836.8) Machinery accident in water transport injuring other specified person', '(E836.8) Machinery accident in water transport injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.9) Machinery accident in water transport injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Machinery accident in water transport (E836)\(E836.9) Machinery accident in water transport injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E836.9''', NULL, + '(E836.9) Machinery accident in water transport injuring unspecified person', '(E836.9) Machinery accident in water transport injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E832''', NULL, + 'Other accidental submersion or drowning in water transport accident (E832)', 'Other accidental submersion or drowning in water transport accident (E832)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.0) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, unpowered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.0) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, unpowered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E832.0''', NULL, + '(E832.0) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, unpowered', '(E832.0) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, unpowered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.1) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, powered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.1) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, powered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E832.1''', NULL, + '(E832.1) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, powered', '(E832.1) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, powered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.2) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.2) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E832.2''', NULL, + '(E832.2) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- crew', '(E832.2) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.3) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- other than crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.3) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- other than crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E832.3''', NULL, + '(E832.3) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- other than crew', '(E832.3) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- other than crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.4) Other accidental submersion or drowning in water transport accident injuring water skier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.4) Other accidental submersion or drowning in water transport accident injuring water skier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E832.4''', NULL, + '(E832.4) Other accidental submersion or drowning in water transport accident injuring water skier', '(E832.4) Other accidental submersion or drowning in water transport accident injuring water skier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.5) Other accidental submersion or drowning in water transport accident injuring swimmer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.5) Other accidental submersion or drowning in water transport accident injuring swimmer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E832.5''', NULL, + '(E832.5) Other accidental submersion or drowning in water transport accident injuring swimmer', '(E832.5) Other accidental submersion or drowning in water transport accident injuring swimmer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.6) Other accidental submersion or drowning in water transport accident injuring dockers, stevedores\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.6) Other accidental submersion or drowning in water transport accident injuring dockers, stevedores\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E832.6''', NULL, + '(E832.6) Other accidental submersion or drowning in water transport accident injuring dockers, stevedores', '(E832.6) Other accidental submersion or drowning in water transport accident injuring dockers, stevedores', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.8) Other accidental submersion or drowning in water transport accident injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.8) Other accidental submersion or drowning in water transport accident injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E832.8''', NULL, + '(E832.8) Other accidental submersion or drowning in water transport accident injuring other specified person', '(E832.8) Other accidental submersion or drowning in water transport accident injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.9) Other accidental submersion or drowning in water transport accident injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other accidental submersion or drowning in water transport accident (E832)\(E832.9) Other accidental submersion or drowning in water transport accident injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E832.9''', NULL, + '(E832.9) Other accidental submersion or drowning in water transport accident injuring unspecified person', '(E832.9) Other accidental submersion or drowning in water transport accident injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E835''', NULL, + 'Other and unspecified fall in water transport (E835)', 'Other and unspecified fall in water transport (E835)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.0) Other and unspecified fall in water transport injuring occupant of small boat, unpowered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.0) Other and unspecified fall in water transport injuring occupant of small boat, unpowered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E835.0''', NULL, + '(E835.0) Other and unspecified fall in water transport injuring occupant of small boat, unpowered', '(E835.0) Other and unspecified fall in water transport injuring occupant of small boat, unpowered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.1) Other and unspecified fall in water transport injuring occupant of small boat, powered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.1) Other and unspecified fall in water transport injuring occupant of small boat, powered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E835.1''', NULL, + '(E835.1) Other and unspecified fall in water transport injuring occupant of small boat, powered', '(E835.1) Other and unspecified fall in water transport injuring occupant of small boat, powered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.2) Other and unspecified fall in water transport injuring occupant of other watercraft -- crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.2) Other and unspecified fall in water transport injuring occupant of other watercraft -- crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E835.2''', NULL, + '(E835.2) Other and unspecified fall in water transport injuring occupant of other watercraft -- crew', '(E835.2) Other and unspecified fall in water transport injuring occupant of other watercraft -- crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.3) Other and unspecified fall in water transport injuring occupant of other watercraft -- other than crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.3) Other and unspecified fall in water transport injuring occupant of other watercraft -- other than crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E835.3''', NULL, + '(E835.3) Other and unspecified fall in water transport injuring occupant of other watercraft -- other than crew', '(E835.3) Other and unspecified fall in water transport injuring occupant of other watercraft -- other than crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.4) Other and unspecified fall in water transport injuring water skier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.4) Other and unspecified fall in water transport injuring water skier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E835.4''', NULL, + '(E835.4) Other and unspecified fall in water transport injuring water skier', '(E835.4) Other and unspecified fall in water transport injuring water skier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.5) Other and unspecified fall in water transport injuring swimmer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.5) Other and unspecified fall in water transport injuring swimmer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E835.5''', NULL, + '(E835.5) Other and unspecified fall in water transport injuring swimmer', '(E835.5) Other and unspecified fall in water transport injuring swimmer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.6) Other and unspecified fall in water transport injuring dockers, stevedores\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.6) Other and unspecified fall in water transport injuring dockers, stevedores\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E835.6''', NULL, + '(E835.6) Other and unspecified fall in water transport injuring dockers, stevedores', '(E835.6) Other and unspecified fall in water transport injuring dockers, stevedores', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.8) Other and unspecified fall in water transport injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.8) Other and unspecified fall in water transport injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E835.8''', NULL, + '(E835.8) Other and unspecified fall in water transport injuring other specified person', '(E835.8) Other and unspecified fall in water transport injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.9) Other and unspecified fall in water transport injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified fall in water transport (E835)\(E835.9) Other and unspecified fall in water transport injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E835.9''', NULL, + '(E835.9) Other and unspecified fall in water transport injuring unspecified person', '(E835.9) Other and unspecified fall in water transport injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E838''', NULL, + 'Other and unspecified water transport accident (E838)', 'Other and unspecified water transport accident (E838)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.0) Other and unspecified water transport accident injuring occupant of small boat, unpowered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.0) Other and unspecified water transport accident injuring occupant of small boat, unpowered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E838.0''', NULL, + '(E838.0) Other and unspecified water transport accident injuring occupant of small boat, unpowered', '(E838.0) Other and unspecified water transport accident injuring occupant of small boat, unpowered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.1) Other and unspecified water transport accident injuring occupant of small boat, powered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.1) Other and unspecified water transport accident injuring occupant of small boat, powered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E838.1''', NULL, + '(E838.1) Other and unspecified water transport accident injuring occupant of small boat, powered', '(E838.1) Other and unspecified water transport accident injuring occupant of small boat, powered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.2) Other and unspecified water transport accident injuring occupant of other watercraft -- crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.2) Other and unspecified water transport accident injuring occupant of other watercraft -- crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E838.2''', NULL, + '(E838.2) Other and unspecified water transport accident injuring occupant of other watercraft -- crew', '(E838.2) Other and unspecified water transport accident injuring occupant of other watercraft -- crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.3) Other and unspecified water transport accident injuring occupant of other watercraft -- other than crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.3) Other and unspecified water transport accident injuring occupant of other watercraft -- other than crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E838.3''', NULL, + '(E838.3) Other and unspecified water transport accident injuring occupant of other watercraft -- other than crew', '(E838.3) Other and unspecified water transport accident injuring occupant of other watercraft -- other than crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.4) Other and unspecified water transport accident injuring water skier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.4) Other and unspecified water transport accident injuring water skier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E838.4''', NULL, + '(E838.4) Other and unspecified water transport accident injuring water skier', '(E838.4) Other and unspecified water transport accident injuring water skier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.5) Other and unspecified water transport accident injuring swimmer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.5) Other and unspecified water transport accident injuring swimmer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E838.5''', NULL, + '(E838.5) Other and unspecified water transport accident injuring swimmer', '(E838.5) Other and unspecified water transport accident injuring swimmer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.6) Other and unspecified water transport accident injuring dockers, stevedores\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.6) Other and unspecified water transport accident injuring dockers, stevedores\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E838.6''', NULL, + '(E838.6) Other and unspecified water transport accident injuring dockers, stevedores', '(E838.6) Other and unspecified water transport accident injuring dockers, stevedores', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.8) Other and unspecified water transport accident injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.8) Other and unspecified water transport accident injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E838.8''', NULL, + '(E838.8) Other and unspecified water transport accident injuring other specified person', '(E838.8) Other and unspecified water transport accident injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.9) Other and unspecified water transport accident injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other and unspecified water transport accident (E838)\(E838.9) Other and unspecified water transport accident injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E838.9''', NULL, + '(E838.9) Other and unspecified water transport accident injuring unspecified person', '(E838.9) Other and unspecified water transport accident injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E834''', NULL, + 'Other fall from one level to another in water transport (E834)', 'Other fall from one level to another in water transport (E834)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.0) Other fall from one level to another in water transport injuring occupant of small boat, unpowered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.0) Other fall from one level to another in water transport injuring occupant of small boat, unpowered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E834.0''', NULL, + '(E834.0) Other fall from one level to another in water transport injuring occupant of small boat, unpowered', '(E834.0) Other fall from one level to another in water transport injuring occupant of small boat, unpowered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.1) Other fall from one level to another in water transport injuring occupant of small boat, powered\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.1) Other fall from one level to another in water transport injuring occupant of small boat, powered\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E834.1''', NULL, + '(E834.1) Other fall from one level to another in water transport injuring occupant of small boat, powered', '(E834.1) Other fall from one level to another in water transport injuring occupant of small boat, powered', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.2) Other fall from one level to another in water transport injuring occupant of other watercraft -- crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.2) Other fall from one level to another in water transport injuring occupant of other watercraft -- crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E834.2''', NULL, + '(E834.2) Other fall from one level to another in water transport injuring occupant of other watercraft -- crew', '(E834.2) Other fall from one level to another in water transport injuring occupant of other watercraft -- crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.3) Other fall from one level to another in water transport injuring occupant of other watercraft -- other than crew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.3) Other fall from one level to another in water transport injuring occupant of other watercraft -- other than crew\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E834.3''', NULL, + '(E834.3) Other fall from one level to another in water transport injuring occupant of other watercraft -- other than crew', '(E834.3) Other fall from one level to another in water transport injuring occupant of other watercraft -- other than crew', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.4) Other fall from one level to another in water transport injuring water skier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.4) Other fall from one level to another in water transport injuring water skier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E834.4''', NULL, + '(E834.4) Other fall from one level to another in water transport injuring water skier', '(E834.4) Other fall from one level to another in water transport injuring water skier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.5) Other fall from one level to another in water transport injuring swimmer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.5) Other fall from one level to another in water transport injuring swimmer\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E834.5''', NULL, + '(E834.5) Other fall from one level to another in water transport injuring swimmer', '(E834.5) Other fall from one level to another in water transport injuring swimmer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.6) Other fall from one level to another in water transport injuring dockers, stevedores\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.6) Other fall from one level to another in water transport injuring dockers, stevedores\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E834.6''', NULL, + '(E834.6) Other fall from one level to another in water transport injuring dockers, stevedores', '(E834.6) Other fall from one level to another in water transport injuring dockers, stevedores', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.8) Other fall from one level to another in water transport injuring other specified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.8) Other fall from one level to another in water transport injuring other specified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E834.8''', NULL, + '(E834.8) Other fall from one level to another in water transport injuring other specified person', '(E834.8) Other fall from one level to another in water transport injuring other specified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.9) Other fall from one level to another in water transport injuring unspecified person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\Transport accidents (E800-E848.9)\WATER TRANSPORT ACCIDENTS (E830-E838.9)\Other fall from one level to another in water transport (E834)\(E834.9) Other fall from one level to another in water transport injuring unspecified person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''E834.9''', NULL, + '(E834.9) Other fall from one level to another in water transport injuring unspecified person', '(E834.9) Other fall from one level to another in water transport injuring unspecified person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v01'' AND ''v91.99''', NULL, + 'Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)', 'Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v88'' AND ''v88.99''', NULL, + 'Acquired absence of other organs and tissue (v88-v88.99)', 'Acquired absence of other organs and tissue (v88-v88.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V88''', NULL, + 'Acquired absence of other organs and tissue (V88)', 'Acquired absence of other organs and tissue (V88)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of cervix and uterus (V88.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of cervix and uterus (V88.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V88.0''', NULL, + 'Acquired absence of cervix and uterus (V88.0)', 'Acquired absence of cervix and uterus (V88.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of cervix and uterus (V88.0)\(V88.01) Acquired absence of both cervix and uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of cervix and uterus (V88.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of cervix and uterus (V88.0)\(V88.01) Acquired absence of both cervix and uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V88.01''', NULL, + '(V88.01) Acquired absence of both cervix and uterus', '(V88.01) Acquired absence of both cervix and uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of cervix and uterus (V88.0)\(V88.02) Acquired absence of uterus with remaining cervical stump\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of cervix and uterus (V88.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of cervix and uterus (V88.0)\(V88.02) Acquired absence of uterus with remaining cervical stump\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V88.02''', NULL, + '(V88.02) Acquired absence of uterus with remaining cervical stump', '(V88.02) Acquired absence of uterus with remaining cervical stump', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of cervix and uterus (V88.0)\(V88.03) Acquired absence of cervix with remaining uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of cervix and uterus (V88.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of cervix and uterus (V88.0)\(V88.03) Acquired absence of cervix with remaining uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V88.03''', NULL, + '(V88.03) Acquired absence of cervix with remaining uterus', '(V88.03) Acquired absence of cervix with remaining uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of pancreas (V88.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of pancreas (V88.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V88.1''', NULL, + 'Acquired absence of pancreas (V88.1)', 'Acquired absence of pancreas (V88.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of pancreas (V88.1)\(V88.12) Acquired partial absence of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of pancreas (V88.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Acquired absence of other organs and tissue (v88-v88.99)\Acquired absence of other organs and tissue (V88)\Acquired absence of pancreas (V88.1)\(V88.12) Acquired partial absence of pancreas\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V88.12''', NULL, + '(V88.12) Acquired partial absence of pancreas', '(V88.12) Acquired partial absence of pancreas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v85'' AND ''v85.99''', NULL, + 'Body mass index (v85-v85.99)', 'Body mass index (v85-v85.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85''', NULL, + 'Body mass index [BMI] (V85)', 'Body mass index [BMI] (V85)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\(V85.0) Body Mass Index less than 19, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\(V85.0) Body Mass Index less than 19, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.0''', NULL, + '(V85.0) Body Mass Index less than 19, adult', '(V85.0) Body Mass Index less than 19, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\(V85.1) Body Mass Index between 19-24, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\(V85.1) Body Mass Index between 19-24, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.1''', NULL, + '(V85.1) Body Mass Index between 19-24, adult', '(V85.1) Body Mass Index between 19-24, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.4''', NULL, + 'Body Mass Index 40 and over, adult (V85.4)', 'Body Mass Index 40 and over, adult (V85.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\(V85.41) Body Mass Index 40.0-44.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\(V85.41) Body Mass Index 40.0-44.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.41''', NULL, + '(V85.41) Body Mass Index 40.0-44.9, adult', '(V85.41) Body Mass Index 40.0-44.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\(V85.42) Body Mass Index 45.0-49.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\(V85.42) Body Mass Index 45.0-49.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.42''', NULL, + '(V85.42) Body Mass Index 45.0-49.9, adult', '(V85.42) Body Mass Index 45.0-49.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\(V85.43) Body Mass Index 50.0-59.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\(V85.43) Body Mass Index 50.0-59.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.43''', NULL, + '(V85.43) Body Mass Index 50.0-59.9, adult', '(V85.43) Body Mass Index 50.0-59.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\(V85.44) Body Mass Index 60.0-69.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\(V85.44) Body Mass Index 60.0-69.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.44''', NULL, + '(V85.44) Body Mass Index 60.0-69.9, adult', '(V85.44) Body Mass Index 60.0-69.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\(V85.45) Body Mass Index 70 and over, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index 40 and over, adult (V85.4)\(V85.45) Body Mass Index 70 and over, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.45''', NULL, + '(V85.45) Body Mass Index 70 and over, adult', '(V85.45) Body Mass Index 70 and over, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.2''', NULL, + 'Body Mass Index between 25-29, adult (V85.2)', 'Body Mass Index between 25-29, adult (V85.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\(V85.21) Body Mass Index 25.0-25.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\(V85.21) Body Mass Index 25.0-25.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.21''', NULL, + '(V85.21) Body Mass Index 25.0-25.9, adult', '(V85.21) Body Mass Index 25.0-25.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\(V85.22) Body Mass Index 26.0-26.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\(V85.22) Body Mass Index 26.0-26.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.22''', NULL, + '(V85.22) Body Mass Index 26.0-26.9, adult', '(V85.22) Body Mass Index 26.0-26.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\(V85.23) Body Mass Index 27.0-27.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\(V85.23) Body Mass Index 27.0-27.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.23''', NULL, + '(V85.23) Body Mass Index 27.0-27.9, adult', '(V85.23) Body Mass Index 27.0-27.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\(V85.24) Body Mass Index 28.0-28.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\(V85.24) Body Mass Index 28.0-28.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.24''', NULL, + '(V85.24) Body Mass Index 28.0-28.9, adult', '(V85.24) Body Mass Index 28.0-28.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\(V85.25) Body Mass Index 29.0-29.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 25-29, adult (V85.2)\(V85.25) Body Mass Index 29.0-29.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.25''', NULL, + '(V85.25) Body Mass Index 29.0-29.9, adult', '(V85.25) Body Mass Index 29.0-29.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.3''', NULL, + 'Body Mass Index between 30-39, adult (V85.3)', 'Body Mass Index between 30-39, adult (V85.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.30) Body Mass Index 30.0-30.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.30) Body Mass Index 30.0-30.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.30''', NULL, + '(V85.30) Body Mass Index 30.0-30.9, adult', '(V85.30) Body Mass Index 30.0-30.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.31) Body Mass Index 31.0-31.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.31) Body Mass Index 31.0-31.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.31''', NULL, + '(V85.31) Body Mass Index 31.0-31.9, adult', '(V85.31) Body Mass Index 31.0-31.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.32) Body Mass Index 32.0-32.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.32) Body Mass Index 32.0-32.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.32''', NULL, + '(V85.32) Body Mass Index 32.0-32.9, adult', '(V85.32) Body Mass Index 32.0-32.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.33) Body Mass Index 33.0-33.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.33) Body Mass Index 33.0-33.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.33''', NULL, + '(V85.33) Body Mass Index 33.0-33.9, adult', '(V85.33) Body Mass Index 33.0-33.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.34) Body Mass Index 34.0-34.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.34) Body Mass Index 34.0-34.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.34''', NULL, + '(V85.34) Body Mass Index 34.0-34.9, adult', '(V85.34) Body Mass Index 34.0-34.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.35) Body Mass Index 35.0-35.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.35) Body Mass Index 35.0-35.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.35''', NULL, + '(V85.35) Body Mass Index 35.0-35.9, adult', '(V85.35) Body Mass Index 35.0-35.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.36) Body Mass Index 36.0-36.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.36) Body Mass Index 36.0-36.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.36''', NULL, + '(V85.36) Body Mass Index 36.0-36.9, adult', '(V85.36) Body Mass Index 36.0-36.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.37) Body Mass Index 37.0-37.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.37) Body Mass Index 37.0-37.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.37''', NULL, + '(V85.37) Body Mass Index 37.0-37.9, adult', '(V85.37) Body Mass Index 37.0-37.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.38) Body Mass Index 38.0-38.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.38) Body Mass Index 38.0-38.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.38''', NULL, + '(V85.38) Body Mass Index 38.0-38.9, adult', '(V85.38) Body Mass Index 38.0-38.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.39) Body Mass Index 39.0-39.9, adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index between 30-39, adult (V85.3)\(V85.39) Body Mass Index 39.0-39.9, adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.39''', NULL, + '(V85.39) Body Mass Index 39.0-39.9, adult', '(V85.39) Body Mass Index 39.0-39.9, adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.5''', NULL, + 'Body Mass Index, pediatric (V85.5)', 'Body Mass Index, pediatric (V85.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\(V85.51) Body Mass Index, pediatric, less than 5th percentile for age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\(V85.51) Body Mass Index, pediatric, less than 5th percentile for age\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.51''', NULL, + '(V85.51) Body Mass Index, pediatric, less than 5th percentile for age', '(V85.51) Body Mass Index, pediatric, less than 5th percentile for age', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\(V85.52) Body Mass Index, pediatric, 5th percentile to less than 85th percentile for age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\(V85.52) Body Mass Index, pediatric, 5th percentile to less than 85th percentile for age\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.52''', NULL, + '(V85.52) Body Mass Index, pediatric, 5th percentile to less than 85th percentile for age', '(V85.52) Body Mass Index, pediatric, 5th percentile to less than 85th percentile for age', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\(V85.53) Body Mass Index, pediatric, 85th percentile to less than 95th percentile for age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\(V85.53) Body Mass Index, pediatric, 85th percentile to less than 95th percentile for age\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.53''', NULL, + '(V85.53) Body Mass Index, pediatric, 85th percentile to less than 95th percentile for age', '(V85.53) Body Mass Index, pediatric, 85th percentile to less than 95th percentile for age', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\(V85.54) Body Mass Index, pediatric, greater than or equal to 95th percentile for age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Body mass index (v85-v85.99)\Body mass index [BMI] (V85)\Body Mass Index, pediatric (V85.5)\(V85.54) Body Mass Index, pediatric, greater than or equal to 95th percentile for age\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V85.54''', NULL, + '(V85.54) Body Mass Index, pediatric, greater than or equal to 95th percentile for age', '(V85.54) Body Mass Index, pediatric, greater than or equal to 95th percentile for age', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Estrogen receptor status (v86-v86.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Estrogen receptor status (v86-v86.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v86'' AND ''v86.99''', NULL, + 'Estrogen receptor status (v86-v86.99)', 'Estrogen receptor status (v86-v86.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Estrogen receptor status (v86-v86.99)\Estrogen receptor status (V86)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Estrogen receptor status (v86-v86.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Estrogen receptor status (v86-v86.99)\Estrogen receptor status (V86)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V86''', NULL, + 'Estrogen receptor status (V86)', 'Estrogen receptor status (V86)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Estrogen receptor status (v86-v86.99)\Estrogen receptor status (V86)\(V86.0) Estrogen receptor positive status [ER+]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Estrogen receptor status (v86-v86.99)\Estrogen receptor status (V86)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Estrogen receptor status (v86-v86.99)\Estrogen receptor status (V86)\(V86.0) Estrogen receptor positive status [ER+]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V86.0''', NULL, + '(V86.0) Estrogen receptor positive status [ER+]', '(V86.0) Estrogen receptor positive status [ER+]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Estrogen receptor status (v86-v86.99)\Estrogen receptor status (V86)\(V86.1) Estrogen receptor negative status [ER-]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Estrogen receptor status (v86-v86.99)\Estrogen receptor status (V86)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Estrogen receptor status (v86-v86.99)\Estrogen receptor status (V86)\(V86.1) Estrogen receptor negative status [ER-]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V86.1''', NULL, + '(V86.1) Estrogen receptor negative status [ER-]', '(V86.1) Estrogen receptor negative status [ER-]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v83'' AND ''v84.99''', NULL, + 'Genetics (v83-v84.99)', 'Genetics (v83-v84.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V83''', NULL, + 'Genetic carrier status (V83)', 'Genetic carrier status (V83)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Hemophilia A carrier (V83.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Hemophilia A carrier (V83.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V83.0''', NULL, + 'Hemophilia A carrier (V83.0)', 'Hemophilia A carrier (V83.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Hemophilia A carrier (V83.0)\(V83.01) Asymptomatic hemophilia A carrier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Hemophilia A carrier (V83.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Hemophilia A carrier (V83.0)\(V83.01) Asymptomatic hemophilia A carrier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V83.01''', NULL, + '(V83.01) Asymptomatic hemophilia A carrier', '(V83.01) Asymptomatic hemophilia A carrier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Hemophilia A carrier (V83.0)\(V83.02) Symptomatic hemophilia A carrier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Hemophilia A carrier (V83.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Hemophilia A carrier (V83.0)\(V83.02) Symptomatic hemophilia A carrier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V83.02''', NULL, + '(V83.02) Symptomatic hemophilia A carrier', '(V83.02) Symptomatic hemophilia A carrier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Other genetic carrier status (V83.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Other genetic carrier status (V83.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V83.8''', NULL, + 'Other genetic carrier status (V83.8)', 'Other genetic carrier status (V83.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Other genetic carrier status (V83.8)\(V83.81) Cystic fibrosis gene carrier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Other genetic carrier status (V83.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Other genetic carrier status (V83.8)\(V83.81) Cystic fibrosis gene carrier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V83.81''', NULL, + '(V83.81) Cystic fibrosis gene carrier', '(V83.81) Cystic fibrosis gene carrier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Other genetic carrier status (V83.8)\(V83.89) Other genetic carrier status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Other genetic carrier status (V83.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic carrier status (V83)\Other genetic carrier status (V83.8)\(V83.89) Other genetic carrier status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V83.89''', NULL, + '(V83.89) Other genetic carrier status', '(V83.89) Other genetic carrier status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V84''', NULL, + 'Genetic susceptibility to disease (V84)', 'Genetic susceptibility to disease (V84)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V84.0''', NULL, + 'Genetic susceptibility to malignant neoplasm (V84.0)', 'Genetic susceptibility to malignant neoplasm (V84.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\(V84.01) Genetic susceptibility to malignant neoplasm of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\(V84.01) Genetic susceptibility to malignant neoplasm of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V84.01''', NULL, + '(V84.01) Genetic susceptibility to malignant neoplasm of breast', '(V84.01) Genetic susceptibility to malignant neoplasm of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\(V84.02) Genetic susceptibility to malignant neoplasm of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\(V84.02) Genetic susceptibility to malignant neoplasm of ovary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V84.02''', NULL, + '(V84.02) Genetic susceptibility to malignant neoplasm of ovary', '(V84.02) Genetic susceptibility to malignant neoplasm of ovary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\(V84.03) Genetic susceptibility to malignant neoplasm of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\(V84.03) Genetic susceptibility to malignant neoplasm of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V84.03''', NULL, + '(V84.03) Genetic susceptibility to malignant neoplasm of prostate', '(V84.03) Genetic susceptibility to malignant neoplasm of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\(V84.04) Genetic susceptibility to malignant neoplasm of endometrium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\(V84.04) Genetic susceptibility to malignant neoplasm of endometrium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V84.04''', NULL, + '(V84.04) Genetic susceptibility to malignant neoplasm of endometrium', '(V84.04) Genetic susceptibility to malignant neoplasm of endometrium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\(V84.09) Genetic susceptibility to other malignant neoplasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to malignant neoplasm (V84.0)\(V84.09) Genetic susceptibility to other malignant neoplasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V84.09''', NULL, + '(V84.09) Genetic susceptibility to other malignant neoplasm', '(V84.09) Genetic susceptibility to other malignant neoplasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to other disease (V84.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to other disease (V84.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V84.8''', NULL, + 'Genetic susceptibility to other disease (V84.8)', 'Genetic susceptibility to other disease (V84.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to other disease (V84.8)\(V84.81) Genetic susceptibility to multiple endocrine neoplasia [MEN]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to other disease (V84.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to other disease (V84.8)\(V84.81) Genetic susceptibility to multiple endocrine neoplasia [MEN]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V84.81''', NULL, + '(V84.81) Genetic susceptibility to multiple endocrine neoplasia [MEN]', '(V84.81) Genetic susceptibility to multiple endocrine neoplasia [MEN]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to other disease (V84.8)\(V84.89) Genetic susceptibility to other disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to other disease (V84.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Genetics (v83-v84.99)\Genetic susceptibility to disease (V84)\Genetic susceptibility to other disease (V84.8)\(V84.89) Genetic susceptibility to other disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V84.89''', NULL, + '(V84.89) Genetic susceptibility to other disease', '(V84.89) Genetic susceptibility to other disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v30'' AND ''v39.99''', NULL, + 'Liveborn infants according to type of birth (v30-v39.99)', 'Liveborn infants according to type of birth (v30-v39.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V39''', NULL, + 'Liveborn, unspecified whether single, twin, or multiple (V39)', 'Liveborn, unspecified whether single, twin, or multiple (V39)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\(V39.1) Liveborn, unspecified whether single, twin or multiple, born before admission to hospital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\(V39.1) Liveborn, unspecified whether single, twin or multiple, born before admission to hospital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V39.1''', NULL, + '(V39.1) Liveborn, unspecified whether single, twin or multiple, born before admission to hospital', '(V39.1) Liveborn, unspecified whether single, twin or multiple, born before admission to hospital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\(V39.2) Liveborn, unspecified whether single, twin or multiple, born outside hospital and not hospitalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\(V39.2) Liveborn, unspecified whether single, twin or multiple, born outside hospital and not hospitalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V39.2''', NULL, + '(V39.2) Liveborn, unspecified whether single, twin or multiple, born outside hospital and not hospitalized', '(V39.2) Liveborn, unspecified whether single, twin or multiple, born outside hospital and not hospitalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\Other liveborn, unspecified, born in hospital (V39.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\Other liveborn, unspecified, born in hospital (V39.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V39.0''', NULL, + 'Other liveborn, unspecified, born in hospital (V39.0)', 'Other liveborn, unspecified, born in hospital (V39.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\Other liveborn, unspecified, born in hospital (V39.0)\(V39.00) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered without mention of cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\Other liveborn, unspecified, born in hospital (V39.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\Other liveborn, unspecified, born in hospital (V39.0)\(V39.00) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered without mention of cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V39.00''', NULL, + '(V39.00) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered without mention of cesarean section', '(V39.00) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered without mention of cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\Other liveborn, unspecified, born in hospital (V39.0)\(V39.01) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered by cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\Other liveborn, unspecified, born in hospital (V39.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Liveborn, unspecified whether single, twin, or multiple (V39)\Other liveborn, unspecified, born in hospital (V39.0)\(V39.01) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered by cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V39.01''', NULL, + '(V39.01) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered by cesarean section', '(V39.01) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered by cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''three or more), mates all liveborn (V34''', NULL, + 'Other multiple birth (three or more), mates all liveborn (V34)', 'Other multiple birth (three or more), mates all liveborn (V34)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\(V34.1) Other multiple birth (three or more), mates all liveborn, born before admission to hospital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\(V34.1) Other multiple birth (three or more), mates all liveborn, born before admission to hospital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V34.1) Other multiple birth (three or more''', NULL, + '(V34.1) Other multiple birth (three or more), mates all liveborn, born before admission to hospital', '(V34.1) Other multiple birth (three or more), mates all liveborn, born before admission to hospital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\(V34.2) Other multiple birth (three or more), mates all liveborn, born outside hospital and not hospitalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\(V34.2) Other multiple birth (three or more), mates all liveborn, born outside hospital and not hospitalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V34.2) Other multiple birth (three or more''', NULL, + '(V34.2) Other multiple birth (three or more), mates all liveborn, born outside hospital and not hospitalized', '(V34.2) Other multiple birth (three or more), mates all liveborn, born outside hospital and not hospitalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\Other multiple, mates all liveborn, born in hospital (V34.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\Other multiple, mates all liveborn, born in hospital (V34.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V34.0''', NULL, + 'Other multiple, mates all liveborn, born in hospital (V34.0)', 'Other multiple, mates all liveborn, born in hospital (V34.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\Other multiple, mates all liveborn, born in hospital (V34.0)\(V34.00) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered without mention of cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\Other multiple, mates all liveborn, born in hospital (V34.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\Other multiple, mates all liveborn, born in hospital (V34.0)\(V34.00) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered without mention of cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V34.00) Other multiple birth (three or more''', NULL, + '(V34.00) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered without mention of cesarean section', '(V34.00) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered without mention of cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\Other multiple, mates all liveborn, born in hospital (V34.0)\(V34.01) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered by cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\Other multiple, mates all liveborn, born in hospital (V34.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all liveborn (V34)\Other multiple, mates all liveborn, born in hospital (V34.0)\(V34.01) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered by cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V34.01) Other multiple birth (three or more''', NULL, + '(V34.01) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered by cesarean section', '(V34.01) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered by cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''three or more), mates all stillborn (V35''', NULL, + 'Other multiple birth (three or more), mates all stillborn (V35)', 'Other multiple birth (three or more), mates all stillborn (V35)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\(V35.1) Other multiple birth (three or more), mates all stillborn, born before admission to hospital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\(V35.1) Other multiple birth (three or more), mates all stillborn, born before admission to hospital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V35.1) Other multiple birth (three or more''', NULL, + '(V35.1) Other multiple birth (three or more), mates all stillborn, born before admission to hospital', '(V35.1) Other multiple birth (three or more), mates all stillborn, born before admission to hospital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\(V35.2) Other multiple birth (three or more), mates all stillborn, born outside of hospital and not hospitalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\(V35.2) Other multiple birth (three or more), mates all stillborn, born outside of hospital and not hospitalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V35.2) Other multiple birth (three or more''', NULL, + '(V35.2) Other multiple birth (three or more), mates all stillborn, born outside of hospital and not hospitalized', '(V35.2) Other multiple birth (three or more), mates all stillborn, born outside of hospital and not hospitalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\Other multiple, mates all stillborn, born in hospital (V35.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\Other multiple, mates all stillborn, born in hospital (V35.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V35.0''', NULL, + 'Other multiple, mates all stillborn, born in hospital (V35.0)', 'Other multiple, mates all stillborn, born in hospital (V35.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\Other multiple, mates all stillborn, born in hospital (V35.0)\(V35.00) Other multiple birth (three or more), mates all still born, born in hospital, delivered without mention of cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\Other multiple, mates all stillborn, born in hospital (V35.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\Other multiple, mates all stillborn, born in hospital (V35.0)\(V35.00) Other multiple birth (three or more), mates all still born, born in hospital, delivered without mention of cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V35.00) Other multiple birth (three or more''', NULL, + '(V35.00) Other multiple birth (three or more), mates all still born, born in hospital, delivered without mention of cesarean section', '(V35.00) Other multiple birth (three or more), mates all still born, born in hospital, delivered without mention of cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\Other multiple, mates all stillborn, born in hospital (V35.0)\(V35.01) Other multiple birth (three or more), mates all still born, born in hospital, delivered by cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\Other multiple, mates all stillborn, born in hospital (V35.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates all stillborn (V35)\Other multiple, mates all stillborn, born in hospital (V35.0)\(V35.01) Other multiple birth (three or more), mates all still born, born in hospital, delivered by cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V35.01) Other multiple birth (three or more''', NULL, + '(V35.01) Other multiple birth (three or more), mates all still born, born in hospital, delivered by cesarean section', '(V35.01) Other multiple birth (three or more), mates all still born, born in hospital, delivered by cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''three or more), mates liveborn and stillborn (V36''', NULL, + 'Other multiple birth (three or more), mates liveborn and stillborn (V36)', 'Other multiple birth (three or more), mates liveborn and stillborn (V36)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\(V36.1) Other multiple birth (three or more), mates liveborn and stillborn, born before admission to hospital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\(V36.1) Other multiple birth (three or more), mates liveborn and stillborn, born before admission to hospital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V36.1) Other multiple birth (three or more''', NULL, + '(V36.1) Other multiple birth (three or more), mates liveborn and stillborn, born before admission to hospital', '(V36.1) Other multiple birth (three or more), mates liveborn and stillborn, born before admission to hospital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\(V36.2) Other multiple birth (three or more), mates liveborn and stillborn, born outside hospital and not hospitalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\(V36.2) Other multiple birth (three or more), mates liveborn and stillborn, born outside hospital and not hospitalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V36.2) Other multiple birth (three or more''', NULL, + '(V36.2) Other multiple birth (three or more), mates liveborn and stillborn, born outside hospital and not hospitalized', '(V36.2) Other multiple birth (three or more), mates liveborn and stillborn, born outside hospital and not hospitalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V36.0''', NULL, + 'Other multiple, mates liveborn and stillborn, born in hospital (V36.0)', 'Other multiple, mates liveborn and stillborn, born in hospital (V36.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\(V36.00) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\(V36.00) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V36.00) Other multiple birth (three or more''', NULL, + '(V36.00) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section', '(V36.00) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\(V36.01) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), mates liveborn and stillborn (V36)\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\(V36.01) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V36.01) Other multiple birth (three or more''', NULL, + '(V36.01) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section', '(V36.01) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''three or more), unspecified whether mates liveborn or stillborn (V37''', NULL, + 'Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)', 'Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\(V37.1) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born before admission to hospital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\(V37.1) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born before admission to hospital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V37.1) Other multiple birth (three or more''', NULL, + '(V37.1) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born before admission to hospital', '(V37.1) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born before admission to hospital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\(V37.2) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born outside of hospital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\(V37.2) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born outside of hospital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V37.2) Other multiple birth (three or more''', NULL, + '(V37.2) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born outside of hospital', '(V37.2) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born outside of hospital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\Other multiple, unspecified, born in hospital (V37.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\Other multiple, unspecified, born in hospital (V37.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V37.0''', NULL, + 'Other multiple, unspecified, born in hospital (V37.0)', 'Other multiple, unspecified, born in hospital (V37.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\Other multiple, unspecified, born in hospital (V37.0)\(V37.00) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered without mention of cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\Other multiple, unspecified, born in hospital (V37.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\Other multiple, unspecified, born in hospital (V37.0)\(V37.00) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered without mention of cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V37.00) Other multiple birth (three or more''', NULL, + '(V37.00) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered without mention of cesarean section', '(V37.00) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered without mention of cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\Other multiple, unspecified, born in hospital (V37.0)\(V37.01) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered by cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\Other multiple, unspecified, born in hospital (V37.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\Other multiple, unspecified, born in hospital (V37.0)\(V37.01) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered by cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V37.01) Other multiple birth (three or more''', NULL, + '(V37.01) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered by cesarean section', '(V37.01) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered by cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V30''', NULL, + 'Single liveborn (V30)', 'Single liveborn (V30)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\(V30.1) Single liveborn, born before admission to hospital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\(V30.1) Single liveborn, born before admission to hospital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V30.1''', NULL, + '(V30.1) Single liveborn, born before admission to hospital', '(V30.1) Single liveborn, born before admission to hospital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\(V30.2) Single liveborn, born outside hospital and not hospitalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\(V30.2) Single liveborn, born outside hospital and not hospitalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V30.2''', NULL, + '(V30.2) Single liveborn, born outside hospital and not hospitalized', '(V30.2) Single liveborn, born outside hospital and not hospitalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\Single liveborn, born in hospital (V30.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\Single liveborn, born in hospital (V30.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V30.0''', NULL, + 'Single liveborn, born in hospital (V30.0)', 'Single liveborn, born in hospital (V30.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\Single liveborn, born in hospital (V30.0)\(V30.00) Single liveborn, born in hospital, delivered without mention of cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\Single liveborn, born in hospital (V30.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\Single liveborn, born in hospital (V30.0)\(V30.00) Single liveborn, born in hospital, delivered without mention of cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V30.00''', NULL, + '(V30.00) Single liveborn, born in hospital, delivered without mention of cesarean section', '(V30.00) Single liveborn, born in hospital, delivered without mention of cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\Single liveborn, born in hospital (V30.0)\(V30.01) Single liveborn, born in hospital, delivered by cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\Single liveborn, born in hospital (V30.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Single liveborn (V30)\Single liveborn, born in hospital (V30.0)\(V30.01) Single liveborn, born in hospital, delivered by cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V30.01''', NULL, + '(V30.01) Single liveborn, born in hospital, delivered by cesarean section', '(V30.01) Single liveborn, born in hospital, delivered by cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V31''', NULL, + 'Twin birth, mate liveborn (V31)', 'Twin birth, mate liveborn (V31)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\(V31.1) Twin birth, mate liveborn, born before admission to hospital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\(V31.1) Twin birth, mate liveborn, born before admission to hospital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V31.1''', NULL, + '(V31.1) Twin birth, mate liveborn, born before admission to hospital', '(V31.1) Twin birth, mate liveborn, born before admission to hospital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\(V31.2) Twin birth, mate liveborn, born outside hospital and not hospitalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\(V31.2) Twin birth, mate liveborn, born outside hospital and not hospitalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V31.2''', NULL, + '(V31.2) Twin birth, mate liveborn, born outside hospital and not hospitalized', '(V31.2) Twin birth, mate liveborn, born outside hospital and not hospitalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\Twin, mate liveborn, born in hospital (V31.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\Twin, mate liveborn, born in hospital (V31.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V31.0''', NULL, + 'Twin, mate liveborn, born in hospital (V31.0)', 'Twin, mate liveborn, born in hospital (V31.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\Twin, mate liveborn, born in hospital (V31.0)\(V31.00) Twin birth, mate liveborn, born in hospital, delivered without mention of cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\Twin, mate liveborn, born in hospital (V31.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\Twin, mate liveborn, born in hospital (V31.0)\(V31.00) Twin birth, mate liveborn, born in hospital, delivered without mention of cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V31.00''', NULL, + '(V31.00) Twin birth, mate liveborn, born in hospital, delivered without mention of cesarean section', '(V31.00) Twin birth, mate liveborn, born in hospital, delivered without mention of cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\Twin, mate liveborn, born in hospital (V31.0)\(V31.01) Twin birth, mate liveborn, born in hospital, delivered by cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\Twin, mate liveborn, born in hospital (V31.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate liveborn (V31)\Twin, mate liveborn, born in hospital (V31.0)\(V31.01) Twin birth, mate liveborn, born in hospital, delivered by cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V31.01''', NULL, + '(V31.01) Twin birth, mate liveborn, born in hospital, delivered by cesarean section', '(V31.01) Twin birth, mate liveborn, born in hospital, delivered by cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V32''', NULL, + 'Twin birth, mate stillborn (V32)', 'Twin birth, mate stillborn (V32)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\(V32.1) Twin birth, mate stillborn, born before admission to hospital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\(V32.1) Twin birth, mate stillborn, born before admission to hospital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V32.1''', NULL, + '(V32.1) Twin birth, mate stillborn, born before admission to hospital', '(V32.1) Twin birth, mate stillborn, born before admission to hospital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\(V32.2) Twin birth, mate stillborn, born outside hospital and not hospitalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\(V32.2) Twin birth, mate stillborn, born outside hospital and not hospitalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V32.2''', NULL, + '(V32.2) Twin birth, mate stillborn, born outside hospital and not hospitalized', '(V32.2) Twin birth, mate stillborn, born outside hospital and not hospitalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\Twin, mate stillborn, born in hospital (V32.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\Twin, mate stillborn, born in hospital (V32.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V32.0''', NULL, + 'Twin, mate stillborn, born in hospital (V32.0)', 'Twin, mate stillborn, born in hospital (V32.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\Twin, mate stillborn, born in hospital (V32.0)\(V32.00) Twin birth, mate stillborn, born in hospital, delivered without mention of cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\Twin, mate stillborn, born in hospital (V32.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\Twin, mate stillborn, born in hospital (V32.0)\(V32.00) Twin birth, mate stillborn, born in hospital, delivered without mention of cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V32.00''', NULL, + '(V32.00) Twin birth, mate stillborn, born in hospital, delivered without mention of cesarean section', '(V32.00) Twin birth, mate stillborn, born in hospital, delivered without mention of cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\Twin, mate stillborn, born in hospital (V32.0)\(V32.01) Twin birth, mate stillborn, born in hospital, delivered by cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\Twin, mate stillborn, born in hospital (V32.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, mate stillborn (V32)\Twin, mate stillborn, born in hospital (V32.0)\(V32.01) Twin birth, mate stillborn, born in hospital, delivered by cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V32.01''', NULL, + '(V32.01) Twin birth, mate stillborn, born in hospital, delivered by cesarean section', '(V32.01) Twin birth, mate stillborn, born in hospital, delivered by cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V33''', NULL, + 'Twin birth, unspecified whether mate liveborn or stillborn (V33)', 'Twin birth, unspecified whether mate liveborn or stillborn (V33)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\(V33.1) Twin birth, unspecified whether mate liveborn or stillborn, born before admission to hospital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\(V33.1) Twin birth, unspecified whether mate liveborn or stillborn, born before admission to hospital\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V33.1''', NULL, + '(V33.1) Twin birth, unspecified whether mate liveborn or stillborn, born before admission to hospital', '(V33.1) Twin birth, unspecified whether mate liveborn or stillborn, born before admission to hospital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\(V33.2) Twin birth, unspecified whether mate liveborn or stillborn, born outside hospital and not hospitalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\(V33.2) Twin birth, unspecified whether mate liveborn or stillborn, born outside hospital and not hospitalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V33.2''', NULL, + '(V33.2) Twin birth, unspecified whether mate liveborn or stillborn, born outside hospital and not hospitalized', '(V33.2) Twin birth, unspecified whether mate liveborn or stillborn, born outside hospital and not hospitalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\Twin, unspecified, born in hospital (V33.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\Twin, unspecified, born in hospital (V33.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V33.0''', NULL, + 'Twin, unspecified, born in hospital (V33.0)', 'Twin, unspecified, born in hospital (V33.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\Twin, unspecified, born in hospital (V33.0)\(V33.00) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered without mention of cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\Twin, unspecified, born in hospital (V33.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\Twin, unspecified, born in hospital (V33.0)\(V33.00) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered without mention of cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V33.00''', NULL, + '(V33.00) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered without mention of cesarean section', '(V33.00) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered without mention of cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\Twin, unspecified, born in hospital (V33.0)\(V33.01) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered by cesarean section\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\Twin, unspecified, born in hospital (V33.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Liveborn infants according to type of birth (v30-v39.99)\Twin birth, unspecified whether mate liveborn or stillborn (V33)\Twin, unspecified, born in hospital (V33.0)\(V33.01) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered by cesarean section\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V33.01''', NULL, + '(V33.01) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered by cesarean section', '(V33.01) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered by cesarean section', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v91'' AND ''v91.99''', NULL, + 'Multiple gestation placenta status (v91-v91.99)', 'Multiple gestation placenta status (v91-v91.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V91''', NULL, + 'Multiple gestation placenta status (V91)', 'Multiple gestation placenta status (V91)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Triplet gestation placenta status (V91.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Triplet gestation placenta status (V91.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V91.1''', NULL, + 'Triplet gestation placenta status (V91.1)', 'Triplet gestation placenta status (V91.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Triplet gestation placenta status (V91.1)\(V91.10) Triplet gestation, unspecified number of placenta and unspecified number of amniotic sacs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Triplet gestation placenta status (V91.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Triplet gestation placenta status (V91.1)\(V91.10) Triplet gestation, unspecified number of placenta and unspecified number of amniotic sacs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V91.10''', NULL, + '(V91.10) Triplet gestation, unspecified number of placenta and unspecified number of amniotic sacs', '(V91.10) Triplet gestation, unspecified number of placenta and unspecified number of amniotic sacs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Triplet gestation placenta status (V91.1)\(V91.11) Triplet gestation, with two or more monochorionic fetuses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Triplet gestation placenta status (V91.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Triplet gestation placenta status (V91.1)\(V91.11) Triplet gestation, with two or more monochorionic fetuses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V91.11''', NULL, + '(V91.11) Triplet gestation, with two or more monochorionic fetuses', '(V91.11) Triplet gestation, with two or more monochorionic fetuses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Triplet gestation placenta status (V91.1)\(V91.12) Triplet gestation, with two or more monoamniotic fetuses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Triplet gestation placenta status (V91.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Triplet gestation placenta status (V91.1)\(V91.12) Triplet gestation, with two or more monoamniotic fetuses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V91.12''', NULL, + '(V91.12) Triplet gestation, with two or more monoamniotic fetuses', '(V91.12) Triplet gestation, with two or more monoamniotic fetuses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V91.0''', NULL, + 'Twin gestation placenta status (V91.0)', 'Twin gestation placenta status (V91.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\(V91.00) Twin gestation, unspecified number of placenta, unspecified number of amniotic sacs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\(V91.00) Twin gestation, unspecified number of placenta, unspecified number of amniotic sacs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V91.00''', NULL, + '(V91.00) Twin gestation, unspecified number of placenta, unspecified number of amniotic sacs', '(V91.00) Twin gestation, unspecified number of placenta, unspecified number of amniotic sacs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\(V91.01) Twin gestation, monochorionic/monoamniotic (one placenta, one amniotic sac)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\(V91.01) Twin gestation, monochorionic/monoamniotic (one placenta, one amniotic sac)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V91.01) Twin gestation, monochorionic/monoamniotic (one placenta, one amniotic sac''', NULL, + '(V91.01) Twin gestation, monochorionic/monoamniotic (one placenta, one amniotic sac)', '(V91.01) Twin gestation, monochorionic/monoamniotic (one placenta, one amniotic sac)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\(V91.02) Twin gestation, monochorionic/diamniotic (one placenta, two amniotic sacs)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\(V91.02) Twin gestation, monochorionic/diamniotic (one placenta, two amniotic sacs)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V91.02) Twin gestation, monochorionic/diamniotic (one placenta, two amniotic sacs''', NULL, + '(V91.02) Twin gestation, monochorionic/diamniotic (one placenta, two amniotic sacs)', '(V91.02) Twin gestation, monochorionic/diamniotic (one placenta, two amniotic sacs)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\(V91.03) Twin gestation, dichorionic/diamniotic (two placentae, two amniotic sacs)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\(V91.03) Twin gestation, dichorionic/diamniotic (two placentae, two amniotic sacs)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V91.03) Twin gestation, dichorionic/diamniotic (two placentae, two amniotic sacs''', NULL, + '(V91.03) Twin gestation, dichorionic/diamniotic (two placentae, two amniotic sacs)', '(V91.03) Twin gestation, dichorionic/diamniotic (two placentae, two amniotic sacs)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\(V91.09) Twin gestation, unable to determine number of placenta and number of amniotic sacs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Multiple gestation placenta status (v91-v91.99)\Multiple gestation placenta status (V91)\Twin gestation placenta status (V91.0)\(V91.09) Twin gestation, unable to determine number of placenta and number of amniotic sacs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V91.09''', NULL, + '(V91.09) Twin gestation, unable to determine number of placenta and number of amniotic sacs', '(V91.09) Twin gestation, unable to determine number of placenta and number of amniotic sacs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v87'' AND ''v87.99''', NULL, + 'Other specified personal exposures and history presenting hazards to health (v87-v87.99)', 'Other specified personal exposures and history presenting hazards to health (v87-v87.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87''', NULL, + 'Other specified personal exposures and history presenting hazards to health (V87)', 'Other specified personal exposures and history presenting hazards to health (V87)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\(V87.2) Contact with and (suspected) exposure to other potentially hazardous chemicals\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\(V87.2) Contact with and (suspected) exposure to other potentially hazardous chemicals\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.2) Contact with and (suspected''', NULL, + '(V87.2) Contact with and (suspected) exposure to other potentially hazardous chemicals', '(V87.2) Contact with and (suspected) exposure to other potentially hazardous chemicals', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''suspected ) exposure to other potentially hazardous substances (V87.3''', NULL, + 'Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)', 'Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)\(V87.39) Contact with and (suspected) exposure to other potentially hazardous substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)\(V87.39) Contact with and (suspected) exposure to other potentially hazardous substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.39) Contact with and (suspected''', NULL, + '(V87.39) Contact with and (suspected) exposure to other potentially hazardous substances', '(V87.39) Contact with and (suspected) exposure to other potentially hazardous substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''suspected) exposure to hazardous aromatic compounds (V87.1''', NULL, + 'Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)', 'Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)\(V87.12) Contact with and (suspected) exposure to benzene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)\(V87.12) Contact with and (suspected) exposure to benzene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.12) Contact with and (suspected''', NULL, + '(V87.12) Contact with and (suspected) exposure to benzene', '(V87.12) Contact with and (suspected) exposure to benzene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected) exposure to hazardous metals (V87.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected) exposure to hazardous metals (V87.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''suspected) exposure to hazardous metals (V87.0''', NULL, + 'Contact with and (suspected) exposure to hazardous metals (V87.0)', 'Contact with and (suspected) exposure to hazardous metals (V87.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected) exposure to hazardous metals (V87.0)\(V87.02) Contact with and (suspected) exposure to uranium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected) exposure to hazardous metals (V87.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Contact with and (suspected) exposure to hazardous metals (V87.0)\(V87.02) Contact with and (suspected) exposure to uranium\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.02) Contact with and (suspected''', NULL, + '(V87.02) Contact with and (suspected) exposure to uranium', '(V87.02) Contact with and (suspected) exposure to uranium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.4''', NULL, + 'Personal history of drug therapy (V87.4)', 'Personal history of drug therapy (V87.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.41) Personal history of antineoplastic chemotherapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.41) Personal history of antineoplastic chemotherapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.41''', NULL, + '(V87.41) Personal history of antineoplastic chemotherapy', '(V87.41) Personal history of antineoplastic chemotherapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.42) Personal history of monoclonal drug therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.42) Personal history of monoclonal drug therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.42''', NULL, + '(V87.42) Personal history of monoclonal drug therapy', '(V87.42) Personal history of monoclonal drug therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.43) Personal history of estrogen therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.43) Personal history of estrogen therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.43''', NULL, + '(V87.43) Personal history of estrogen therapy', '(V87.43) Personal history of estrogen therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.44) Personal history of inhaled steroid therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.44) Personal history of inhaled steroid therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.44''', NULL, + '(V87.44) Personal history of inhaled steroid therapy', '(V87.44) Personal history of inhaled steroid therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.45) Personal history of systemic steroid therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.45) Personal history of systemic steroid therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.45''', NULL, + '(V87.45) Personal history of systemic steroid therapy', '(V87.45) Personal history of systemic steroid therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.46) Personal history of immunosuppressive therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.46) Personal history of immunosuppressive therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.46''', NULL, + '(V87.46) Personal history of immunosuppressive therapy', '(V87.46) Personal history of immunosuppressive therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.49) Personal history of other drug therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\Other specified personal exposures and history presenting hazards to health (V87)\Personal history of drug therapy (V87.4)\(V87.49) Personal history of other drug therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V87.49''', NULL, + '(V87.49) Personal history of other drug therapy', '(V87.49) Personal history of other drug therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v89'' AND ''v89.99''', NULL, + 'Other suspected conditions not found (v89-v89.99)', 'Other suspected conditions not found (v89-v89.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V89''', NULL, + 'Other suspected conditions not found (V89)', 'Other suspected conditions not found (V89)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V89.0''', NULL, + 'Suspected maternal and fetal conditions not found (V89.0)', 'Suspected maternal and fetal conditions not found (V89.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.01) Suspected problem with amniotic cavity and membrane not found\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.01) Suspected problem with amniotic cavity and membrane not found\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V89.01''', NULL, + '(V89.01) Suspected problem with amniotic cavity and membrane not found', '(V89.01) Suspected problem with amniotic cavity and membrane not found', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.02) Suspected placental problem not found\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.02) Suspected placental problem not found\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V89.02''', NULL, + '(V89.02) Suspected placental problem not found', '(V89.02) Suspected placental problem not found', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.03) Suspected fetal anomaly not found\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.03) Suspected fetal anomaly not found\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V89.03''', NULL, + '(V89.03) Suspected fetal anomaly not found', '(V89.03) Suspected fetal anomaly not found', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.04) Suspected problem with fetal growth not found\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.04) Suspected problem with fetal growth not found\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V89.04''', NULL, + '(V89.04) Suspected problem with fetal growth not found', '(V89.04) Suspected problem with fetal growth not found', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.05) Suspected cervical shortening not found\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.05) Suspected cervical shortening not found\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V89.05''', NULL, + '(V89.05) Suspected cervical shortening not found', '(V89.05) Suspected cervical shortening not found', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.09) Other suspected maternal and fetal condition not found\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Other suspected conditions not found (v89-v89.99)\Other suspected conditions not found (V89)\Suspected maternal and fetal conditions not found (V89.0)\(V89.09) Other suspected maternal and fetal condition not found\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V89.09''', NULL, + '(V89.09) Other suspected maternal and fetal condition not found', '(V89.09) Other suspected maternal and fetal condition not found', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v50'' AND ''v59.99''', NULL, + 'Persons encountering health services for specific procedures and aftercare (v50-v59.99)', 'Persons encountering health services for specific procedures and aftercare (v50-v59.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Aftercare involving the use of plastic surgery (V51)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Aftercare involving the use of plastic surgery (V51)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V51''', NULL, + 'Aftercare involving the use of plastic surgery (V51)', 'Aftercare involving the use of plastic surgery (V51)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Aftercare involving the use of plastic surgery (V51)\(V51.0) Encounter for breast reconstruction following mastectomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Aftercare involving the use of plastic surgery (V51)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Aftercare involving the use of plastic surgery (V51)\(V51.0) Encounter for breast reconstruction following mastectomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V51.0''', NULL, + '(V51.0) Encounter for breast reconstruction following mastectomy', '(V51.0) Encounter for breast reconstruction following mastectomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Aftercare involving the use of plastic surgery (V51)\(V51.8) Other aftercare involving the use of plastic surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Aftercare involving the use of plastic surgery (V51)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Aftercare involving the use of plastic surgery (V51)\(V51.8) Other aftercare involving the use of plastic surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V51.8''', NULL, + '(V51.8) Other aftercare involving the use of plastic surgery', '(V51.8) Other aftercare involving the use of plastic surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V55''', NULL, + 'Attention to artificial openings (V55)', 'Attention to artificial openings (V55)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.0) Attention to tracheostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.0) Attention to tracheostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V55.0''', NULL, + '(V55.0) Attention to tracheostomy', '(V55.0) Attention to tracheostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.1) Attention to gastrostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.1) Attention to gastrostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V55.1''', NULL, + '(V55.1) Attention to gastrostomy', '(V55.1) Attention to gastrostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.2) Attention to ileostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.2) Attention to ileostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V55.2''', NULL, + '(V55.2) Attention to ileostomy', '(V55.2) Attention to ileostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.3) Attention to colostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.3) Attention to colostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V55.3''', NULL, + '(V55.3) Attention to colostomy', '(V55.3) Attention to colostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.4) Attention to other artificial opening of digestive tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.4) Attention to other artificial opening of digestive tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V55.4''', NULL, + '(V55.4) Attention to other artificial opening of digestive tract', '(V55.4) Attention to other artificial opening of digestive tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.5) Attention to cystostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.5) Attention to cystostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V55.5''', NULL, + '(V55.5) Attention to cystostomy', '(V55.5) Attention to cystostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.6) Attention to other artificial opening of urinary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.6) Attention to other artificial opening of urinary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V55.6''', NULL, + '(V55.6) Attention to other artificial opening of urinary tract', '(V55.6) Attention to other artificial opening of urinary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.7) Attention to artificial vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.7) Attention to artificial vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V55.7''', NULL, + '(V55.7) Attention to artificial vagina', '(V55.7) Attention to artificial vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.8) Attention to other specified artificial opening\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.8) Attention to other specified artificial opening\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V55.8''', NULL, + '(V55.8) Attention to other specified artificial opening', '(V55.8) Attention to other specified artificial opening', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.9) Attention to unspecified artificial opening\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Attention to artificial openings (V55)\(V55.9) Attention to unspecified artificial opening\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V55.9''', NULL, + '(V55.9) Attention to unspecified artificial opening', '(V55.9) Attention to unspecified artificial opening', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57''', NULL, + 'Care involving use of rehabilitation procedures (V57)', 'Care involving use of rehabilitation procedures (V57)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\(V57.0) Care involving breathing exercises\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\(V57.0) Care involving breathing exercises\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57.0''', NULL, + '(V57.0) Care involving breathing exercises', '(V57.0) Care involving breathing exercises', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\(V57.1) Care involving other physical therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\(V57.1) Care involving other physical therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57.1''', NULL, + '(V57.1) Care involving other physical therapy', '(V57.1) Care involving other physical therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\(V57.3) Care involving speech-language therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\(V57.3) Care involving speech-language therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57.3''', NULL, + '(V57.3) Care involving speech-language therapy', '(V57.3) Care involving speech-language therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\(V57.4) Care involving orthoptic training\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\(V57.4) Care involving orthoptic training\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57.4''', NULL, + '(V57.4) Care involving orthoptic training', '(V57.4) Care involving orthoptic training', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\(V57.9) Care involving unspecified rehabilitation procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\(V57.9) Care involving unspecified rehabilitation procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57.9''', NULL, + '(V57.9) Care involving unspecified rehabilitation procedure', '(V57.9) Care involving unspecified rehabilitation procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving occupational therapy and vocational rehabilitation (V57.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving occupational therapy and vocational rehabilitation (V57.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57.2''', NULL, + 'Care involving occupational therapy and vocational rehabilitation (V57.2)', 'Care involving occupational therapy and vocational rehabilitation (V57.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving occupational therapy and vocational rehabilitation (V57.2)\(V57.21) Encounter for occupational therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving occupational therapy and vocational rehabilitation (V57.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving occupational therapy and vocational rehabilitation (V57.2)\(V57.21) Encounter for occupational therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57.21''', NULL, + '(V57.21) Encounter for occupational therapy', '(V57.21) Encounter for occupational therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving occupational therapy and vocational rehabilitation (V57.2)\(V57.22) Encounter for vocational therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving occupational therapy and vocational rehabilitation (V57.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving occupational therapy and vocational rehabilitation (V57.2)\(V57.22) Encounter for vocational therapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57.22''', NULL, + '(V57.22) Encounter for vocational therapy', '(V57.22) Encounter for vocational therapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving other specified rehabilitation procedure (V57.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving other specified rehabilitation procedure (V57.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57.8''', NULL, + 'Care involving other specified rehabilitation procedure (V57.8)', 'Care involving other specified rehabilitation procedure (V57.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving other specified rehabilitation procedure (V57.8)\(V57.81) Care involving orthotic training\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving other specified rehabilitation procedure (V57.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving other specified rehabilitation procedure (V57.8)\(V57.81) Care involving orthotic training\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57.81''', NULL, + '(V57.81) Care involving orthotic training', '(V57.81) Care involving orthotic training', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving other specified rehabilitation procedure (V57.8)\(V57.89) Care involving other specified rehabilitation procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving other specified rehabilitation procedure (V57.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Care involving use of rehabilitation procedures (V57)\Care involving other specified rehabilitation procedure (V57.8)\(V57.89) Care involving other specified rehabilitation procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V57.89''', NULL, + '(V57.89) Care involving other specified rehabilitation procedure', '(V57.89) Care involving other specified rehabilitation procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59''', NULL, + 'Donors (V59)', 'Donors (V59)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.1) Skin donors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.1) Skin donors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.1''', NULL, + '(V59.1) Skin donors', '(V59.1) Skin donors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.2) Bone donors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.2) Bone donors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.2''', NULL, + '(V59.2) Bone donors', '(V59.2) Bone donors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.3) Bone marrow donors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.3) Bone marrow donors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.3''', NULL, + '(V59.3) Bone marrow donors', '(V59.3) Bone marrow donors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.4) Kidney donors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.4) Kidney donors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.4''', NULL, + '(V59.4) Kidney donors', '(V59.4) Kidney donors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.5) Cornea donors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.5) Cornea donors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.5''', NULL, + '(V59.5) Cornea donors', '(V59.5) Cornea donors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.6) Liver donors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.6) Liver donors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.6''', NULL, + '(V59.6) Liver donors', '(V59.6) Liver donors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.8) Donors of other specified organ or tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.8) Donors of other specified organ or tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.8''', NULL, + '(V59.8) Donors of other specified organ or tissue', '(V59.8) Donors of other specified organ or tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.9) Donors of unspecified organ or tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\(V59.9) Donors of unspecified organ or tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.9''', NULL, + '(V59.9) Donors of unspecified organ or tissue', '(V59.9) Donors of unspecified organ or tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Blood donors (V59.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Blood donors (V59.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.0''', NULL, + 'Blood donors (V59.0)', 'Blood donors (V59.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Blood donors (V59.0)\(V59.01) Blood donors, whole blood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Blood donors (V59.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Blood donors (V59.0)\(V59.01) Blood donors, whole blood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.01''', NULL, + '(V59.01) Blood donors, whole blood', '(V59.01) Blood donors, whole blood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Blood donors (V59.0)\(V59.02) Blood donors, stem cells\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Blood donors (V59.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Blood donors (V59.0)\(V59.02) Blood donors, stem cells\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.02''', NULL, + '(V59.02) Blood donors, stem cells', '(V59.02) Blood donors, stem cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Blood donors (V59.0)\(V59.09) Other blood donors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Blood donors (V59.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Blood donors (V59.0)\(V59.09) Other blood donors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.09''', NULL, + '(V59.09) Other blood donors', '(V59.09) Other blood donors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''oocyte) (ovum) (V59.7''', NULL, + 'Egg (oocyte) (ovum) (V59.7)', 'Egg (oocyte) (ovum) (V59.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\(V59.70) Egg (oocyte) (ovum) donor, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\(V59.70) Egg (oocyte) (ovum) donor, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.70) Egg (oocyte) (ovum''', NULL, + '(V59.70) Egg (oocyte) (ovum) donor, unspecified', '(V59.70) Egg (oocyte) (ovum) donor, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\(V59.71) Egg (oocyte) (ovum) donor, under age 35, anonymous recipient\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\(V59.71) Egg (oocyte) (ovum) donor, under age 35, anonymous recipient\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.71) Egg (oocyte) (ovum''', NULL, + '(V59.71) Egg (oocyte) (ovum) donor, under age 35, anonymous recipient', '(V59.71) Egg (oocyte) (ovum) donor, under age 35, anonymous recipient', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\(V59.72) Egg (oocyte) (ovum) donor, under age 35, designated recipient\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\(V59.72) Egg (oocyte) (ovum) donor, under age 35, designated recipient\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.72) Egg (oocyte) (ovum''', NULL, + '(V59.72) Egg (oocyte) (ovum) donor, under age 35, designated recipient', '(V59.72) Egg (oocyte) (ovum) donor, under age 35, designated recipient', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\(V59.73) Egg (oocyte) (ovum) donor, age 35 and over, anonymous recipient\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\(V59.73) Egg (oocyte) (ovum) donor, age 35 and over, anonymous recipient\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.73) Egg (oocyte) (ovum''', NULL, + '(V59.73) Egg (oocyte) (ovum) donor, age 35 and over, anonymous recipient', '(V59.73) Egg (oocyte) (ovum) donor, age 35 and over, anonymous recipient', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\(V59.74) Egg (oocyte) (ovum) donor, age 35 and over, designated recipient\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Donors (V59)\Egg (oocyte) (ovum) (V59.7)\(V59.74) Egg (oocyte) (ovum) donor, age 35 and over, designated recipient\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V59.74) Egg (oocyte) (ovum''', NULL, + '(V59.74) Egg (oocyte) (ovum) donor, age 35 and over, designated recipient', '(V59.74) Egg (oocyte) (ovum) donor, age 35 and over, designated recipient', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V50''', NULL, + 'Elective surgery for purposes other than remedying health states (V50)', 'Elective surgery for purposes other than remedying health states (V50)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.0) Elective hair transplant for purposes other than remedying health states\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.0) Elective hair transplant for purposes other than remedying health states\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V50.0''', NULL, + '(V50.0) Elective hair transplant for purposes other than remedying health states', '(V50.0) Elective hair transplant for purposes other than remedying health states', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.1) Other plastic surgery for unacceptable cosmetic appearance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.1) Other plastic surgery for unacceptable cosmetic appearance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V50.1''', NULL, + '(V50.1) Other plastic surgery for unacceptable cosmetic appearance', '(V50.1) Other plastic surgery for unacceptable cosmetic appearance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.2) Routine or ritual circumcision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.2) Routine or ritual circumcision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V50.2''', NULL, + '(V50.2) Routine or ritual circumcision', '(V50.2) Routine or ritual circumcision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.3) Ear piercing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.3) Ear piercing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V50.3''', NULL, + '(V50.3) Ear piercing', '(V50.3) Ear piercing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.8) Other elective surgery for purposes other than remedying health states\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.8) Other elective surgery for purposes other than remedying health states\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V50.8''', NULL, + '(V50.8) Other elective surgery for purposes other than remedying health states', '(V50.8) Other elective surgery for purposes other than remedying health states', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.9) Unspecified elective surgery for purposes other than remedying health states\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\(V50.9) Unspecified elective surgery for purposes other than remedying health states\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V50.9''', NULL, + '(V50.9) Unspecified elective surgery for purposes other than remedying health states', '(V50.9) Unspecified elective surgery for purposes other than remedying health states', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\Prophylactic organ removal (V50.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\Prophylactic organ removal (V50.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V50.4''', NULL, + 'Prophylactic organ removal (V50.4)', 'Prophylactic organ removal (V50.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\Prophylactic organ removal (V50.4)\(V50.41) Prophylactic breast removal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\Prophylactic organ removal (V50.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\Prophylactic organ removal (V50.4)\(V50.41) Prophylactic breast removal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V50.41''', NULL, + '(V50.41) Prophylactic breast removal', '(V50.41) Prophylactic breast removal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\Prophylactic organ removal (V50.4)\(V50.42) Prophylactic ovary removal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\Prophylactic organ removal (V50.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\Prophylactic organ removal (V50.4)\(V50.42) Prophylactic ovary removal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V50.42''', NULL, + '(V50.42) Prophylactic ovary removal', '(V50.42) Prophylactic ovary removal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\Prophylactic organ removal (V50.4)\(V50.49) Other prophylactic gland removal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\Prophylactic organ removal (V50.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Elective surgery for purposes other than remedying health states (V50)\Prophylactic organ removal (V50.4)\(V50.49) Other prophylactic gland removal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V50.49''', NULL, + '(V50.49) Other prophylactic gland removal', '(V50.49) Other prophylactic gland removal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V56''', NULL, + 'Encounter for dialysis and dialysis catheter care (V56)', 'Encounter for dialysis and dialysis catheter care (V56)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\(V56.0) Encounter for extracorporeal dialysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\(V56.0) Encounter for extracorporeal dialysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V56.0''', NULL, + '(V56.0) Encounter for extracorporeal dialysis', '(V56.0) Encounter for extracorporeal dialysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\(V56.1) Fitting and adjustment of extracorporeal dialysis catheter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\(V56.1) Fitting and adjustment of extracorporeal dialysis catheter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V56.1''', NULL, + '(V56.1) Fitting and adjustment of extracorporeal dialysis catheter', '(V56.1) Fitting and adjustment of extracorporeal dialysis catheter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\(V56.2) Fitting and adjustment of peritoneal dialysis catheter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\(V56.2) Fitting and adjustment of peritoneal dialysis catheter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V56.2''', NULL, + '(V56.2) Fitting and adjustment of peritoneal dialysis catheter', '(V56.2) Fitting and adjustment of peritoneal dialysis catheter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\(V56.8) Encounter for other dialysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\(V56.8) Encounter for other dialysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V56.8''', NULL, + '(V56.8) Encounter for other dialysis', '(V56.8) Encounter for other dialysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\Encounter for adequacy testing for dialysis (V56.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\Encounter for adequacy testing for dialysis (V56.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V56.3''', NULL, + 'Encounter for adequacy testing for dialysis (V56.3)', 'Encounter for adequacy testing for dialysis (V56.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\Encounter for adequacy testing for dialysis (V56.3)\(V56.31) Encounter for adequacy testing for hemodialysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\Encounter for adequacy testing for dialysis (V56.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\Encounter for adequacy testing for dialysis (V56.3)\(V56.31) Encounter for adequacy testing for hemodialysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V56.31''', NULL, + '(V56.31) Encounter for adequacy testing for hemodialysis', '(V56.31) Encounter for adequacy testing for hemodialysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\Encounter for adequacy testing for dialysis (V56.3)\(V56.32) Encounter for adequacy testing for peritoneal dialysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\Encounter for adequacy testing for dialysis (V56.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for dialysis and dialysis catheter care (V56)\Encounter for adequacy testing for dialysis (V56.3)\(V56.32) Encounter for adequacy testing for peritoneal dialysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V56.32''', NULL, + '(V56.32) Encounter for adequacy testing for peritoneal dialysis', '(V56.32) Encounter for adequacy testing for peritoneal dialysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58''', NULL, + 'Encounter for other and unspecified procedures and aftercare (V58)', 'Encounter for other and unspecified procedures and aftercare (V58)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\(V58.0) Encounter for radiotherapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\(V58.0) Encounter for radiotherapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.0''', NULL, + '(V58.0) Encounter for radiotherapy', '(V58.0) Encounter for radiotherapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\(V58.2) Blood transfusion, without reported diagnosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\(V58.2) Blood transfusion, without reported diagnosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.2''', NULL, + '(V58.2) Blood transfusion, without reported diagnosis', '(V58.2) Blood transfusion, without reported diagnosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\(V58.5) Orthodontics aftercare\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\(V58.5) Orthodontics aftercare\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.5''', NULL, + '(V58.5) Orthodontics aftercare', '(V58.5) Orthodontics aftercare', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\(V58.9) Unspecified aftercare\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\(V58.9) Unspecified aftercare\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.9''', NULL, + '(V58.9) Unspecified aftercare', '(V58.9) Unspecified aftercare', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.7''', NULL, + 'Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)', 'Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.71) Aftercare following surgery of the sense organs, NEC\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.71) Aftercare following surgery of the sense organs, NEC\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.71''', NULL, + '(V58.71) Aftercare following surgery of the sense organs, NEC', '(V58.71) Aftercare following surgery of the sense organs, NEC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.72) Aftercare following surgery of the nervous system, NEC\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.72) Aftercare following surgery of the nervous system, NEC\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.72''', NULL, + '(V58.72) Aftercare following surgery of the nervous system, NEC', '(V58.72) Aftercare following surgery of the nervous system, NEC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.73) Aftercare following surgery of the circulatory system, NEC\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.73) Aftercare following surgery of the circulatory system, NEC\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.73''', NULL, + '(V58.73) Aftercare following surgery of the circulatory system, NEC', '(V58.73) Aftercare following surgery of the circulatory system, NEC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.74) Aftercare following surgery of the respiratory system, NEC\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.74) Aftercare following surgery of the respiratory system, NEC\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.74''', NULL, + '(V58.74) Aftercare following surgery of the respiratory system, NEC', '(V58.74) Aftercare following surgery of the respiratory system, NEC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.75) Aftercare following surgery of the teeth, oral cavity and digestive system, NEC\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.75) Aftercare following surgery of the teeth, oral cavity and digestive system, NEC\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.75''', NULL, + '(V58.75) Aftercare following surgery of the teeth, oral cavity and digestive system, NEC', '(V58.75) Aftercare following surgery of the teeth, oral cavity and digestive system, NEC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.76) Aftercare following surgery of the genitourinary system, NEC\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.76) Aftercare following surgery of the genitourinary system, NEC\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.76''', NULL, + '(V58.76) Aftercare following surgery of the genitourinary system, NEC', '(V58.76) Aftercare following surgery of the genitourinary system, NEC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.77) Aftercare following surgery of the skin and subcutaneous tissue, NEC\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.77) Aftercare following surgery of the skin and subcutaneous tissue, NEC\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.77''', NULL, + '(V58.77) Aftercare following surgery of the skin and subcutaneous tissue, NEC', '(V58.77) Aftercare following surgery of the skin and subcutaneous tissue, NEC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.78) Aftercare following surgery of the musculoskeletal system, NEC\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\(V58.78) Aftercare following surgery of the musculoskeletal system, NEC\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.78''', NULL, + '(V58.78) Aftercare following surgery of the musculoskeletal system, NEC', '(V58.78) Aftercare following surgery of the musculoskeletal system, NEC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Attention to dressings and sutures (V58.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Attention to dressings and sutures (V58.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.3''', NULL, + 'Attention to dressings and sutures (V58.3)', 'Attention to dressings and sutures (V58.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Attention to dressings and sutures (V58.3)\(V58.30) Encounter for change or removal of nonsurgical wound dressing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Attention to dressings and sutures (V58.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Attention to dressings and sutures (V58.3)\(V58.30) Encounter for change or removal of nonsurgical wound dressing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.30''', NULL, + '(V58.30) Encounter for change or removal of nonsurgical wound dressing', '(V58.30) Encounter for change or removal of nonsurgical wound dressing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Attention to dressings and sutures (V58.3)\(V58.31) Encounter for change or removal of surgical wound dressing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Attention to dressings and sutures (V58.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Attention to dressings and sutures (V58.3)\(V58.31) Encounter for change or removal of surgical wound dressing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.31''', NULL, + '(V58.31) Encounter for change or removal of surgical wound dressing', '(V58.31) Encounter for change or removal of surgical wound dressing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Attention to dressings and sutures (V58.3)\(V58.32) Encounter for removal of sutures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Attention to dressings and sutures (V58.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Attention to dressings and sutures (V58.3)\(V58.32) Encounter for removal of sutures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.32''', NULL, + '(V58.32) Encounter for removal of sutures', '(V58.32) Encounter for removal of sutures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.1''', NULL, + 'Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)', 'Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\(V58.11) Encounter for antineoplastic chemotherapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\(V58.11) Encounter for antineoplastic chemotherapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.11''', NULL, + '(V58.11) Encounter for antineoplastic chemotherapy', '(V58.11) Encounter for antineoplastic chemotherapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\(V58.12) Encounter for antineoplastic immunotherapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\(V58.12) Encounter for antineoplastic immunotherapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.12''', NULL, + '(V58.12) Encounter for antineoplastic immunotherapy', '(V58.12) Encounter for antineoplastic immunotherapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''current) drug use (V58.6''', NULL, + 'Encounter for long-term (current) drug use (V58.6)', 'Encounter for long-term (current) drug use (V58.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.61) Long-term (current) use of anticoagulants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.61) Long-term (current) use of anticoagulants\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V58.61) Long'' AND ''term (current''', NULL, + '(V58.61) Long-term (current) use of anticoagulants', '(V58.61) Long-term (current) use of anticoagulants', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.62) Long-term (current) use of antibiotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.62) Long-term (current) use of antibiotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V58.62) Long'' AND ''term (current''', NULL, + '(V58.62) Long-term (current) use of antibiotics', '(V58.62) Long-term (current) use of antibiotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.63) Long-term (current) use of antiplatelet/antithrombotic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.63) Long-term (current) use of antiplatelet/antithrombotic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V58.63) Long'' AND ''term (current''', NULL, + '(V58.63) Long-term (current) use of antiplatelet/antithrombotic', '(V58.63) Long-term (current) use of antiplatelet/antithrombotic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.64) Long-term (current) use of non-steroidal anti-inflammatories (NSAID)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.64) Long-term (current) use of non-steroidal anti-inflammatories (NSAID)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V58.64) Long'' AND ''term (current) use of non'' AND ''steroidal anti'' AND ''inflammatories (NSAID''', NULL, + '(V58.64) Long-term (current) use of non-steroidal anti-inflammatories (NSAID)', '(V58.64) Long-term (current) use of non-steroidal anti-inflammatories (NSAID)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.65) Long-term (current) use of steroids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.65) Long-term (current) use of steroids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V58.65) Long'' AND ''term (current''', NULL, + '(V58.65) Long-term (current) use of steroids', '(V58.65) Long-term (current) use of steroids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.66) Long-term (current) use of aspirin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.66) Long-term (current) use of aspirin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V58.66) Long'' AND ''term (current''', NULL, + '(V58.66) Long-term (current) use of aspirin', '(V58.66) Long-term (current) use of aspirin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.67) Long-term (current) use of insulin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.67) Long-term (current) use of insulin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V58.67) Long'' AND ''term (current''', NULL, + '(V58.67) Long-term (current) use of insulin', '(V58.67) Long-term (current) use of insulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.68) Long term (current) use of bisphosphonates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.68) Long term (current) use of bisphosphonates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.68) Long term (current''', NULL, + '(V58.68) Long term (current) use of bisphosphonates', '(V58.68) Long term (current) use of bisphosphonates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.69) Long-term (current) use of other medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for long-term (current) drug use (V58.6)\(V58.69) Long-term (current) use of other medications\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V58.69) Long'' AND ''term (current''', NULL, + '(V58.69) Long-term (current) use of other medications', '(V58.69) Long-term (current) use of other medications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.8''', NULL, + 'Encounter for other specified procedures and aftercare (V58.8)', 'Encounter for other specified procedures and aftercare (V58.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\(V58.81) Fitting and adjustment of vascular catheter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\(V58.81) Fitting and adjustment of vascular catheter\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.81''', NULL, + '(V58.81) Fitting and adjustment of vascular catheter', '(V58.81) Fitting and adjustment of vascular catheter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\(V58.82) Fitting and adjustment of nonvascular catheter, NEC\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\(V58.82) Fitting and adjustment of nonvascular catheter, NEC\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.82''', NULL, + '(V58.82) Fitting and adjustment of nonvascular catheter, NEC', '(V58.82) Fitting and adjustment of nonvascular catheter, NEC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\(V58.83) Encounter for therapeutic drug monitoring\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\(V58.83) Encounter for therapeutic drug monitoring\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.83''', NULL, + '(V58.83) Encounter for therapeutic drug monitoring', '(V58.83) Encounter for therapeutic drug monitoring', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\(V58.89) Other specified aftercare\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Encounter for other specified procedures and aftercare (V58.8)\(V58.89) Other specified aftercare\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.89''', NULL, + '(V58.89) Other specified aftercare', '(V58.89) Other specified aftercare', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.4''', NULL, + 'Other aftercare following surgery (V58.4)', 'Other aftercare following surgery (V58.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\(V58.41) Encounter for planned post-operative wound closure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\(V58.41) Encounter for planned post-operative wound closure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.41''', NULL, + '(V58.41) Encounter for planned post-operative wound closure', '(V58.41) Encounter for planned post-operative wound closure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\(V58.42) Aftercare following surgery for neoplasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\(V58.42) Aftercare following surgery for neoplasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.42''', NULL, + '(V58.42) Aftercare following surgery for neoplasm', '(V58.42) Aftercare following surgery for neoplasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\(V58.43) Aftercare following surgery for injury and trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\(V58.43) Aftercare following surgery for injury and trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.43''', NULL, + '(V58.43) Aftercare following surgery for injury and trauma', '(V58.43) Aftercare following surgery for injury and trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\(V58.44) Aftercare following organ transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\(V58.44) Aftercare following organ transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.44''', NULL, + '(V58.44) Aftercare following organ transplant', '(V58.44) Aftercare following organ transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\(V58.49) Other specified aftercare following surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Encounter for other and unspecified procedures and aftercare (V58)\Other aftercare following surgery (V58.4)\(V58.49) Other specified aftercare following surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V58.49''', NULL, + '(V58.49) Other specified aftercare following surgery', '(V58.49) Other specified aftercare following surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53''', NULL, + 'Fitting and adjustment of other device (V53)', 'Fitting and adjustment of other device (V53)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.1) Fitting and adjustment of spectacles and contact lenses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.1) Fitting and adjustment of spectacles and contact lenses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.1''', NULL, + '(V53.1) Fitting and adjustment of spectacles and contact lenses', '(V53.1) Fitting and adjustment of spectacles and contact lenses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.2) Fitting and adjustment of hearing aid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.2) Fitting and adjustment of hearing aid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.2''', NULL, + '(V53.2) Fitting and adjustment of hearing aid', '(V53.2) Fitting and adjustment of hearing aid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.4) Fitting and adjustment of orthodontic devices\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.4) Fitting and adjustment of orthodontic devices\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.4''', NULL, + '(V53.4) Fitting and adjustment of orthodontic devices', '(V53.4) Fitting and adjustment of orthodontic devices', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.6) Fitting and adjustment of urinary devices\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.6) Fitting and adjustment of urinary devices\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.6''', NULL, + '(V53.6) Fitting and adjustment of urinary devices', '(V53.6) Fitting and adjustment of urinary devices', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.7) Fitting and adjustment of orthopedic devices\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.7) Fitting and adjustment of orthopedic devices\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.7''', NULL, + '(V53.7) Fitting and adjustment of orthopedic devices', '(V53.7) Fitting and adjustment of orthopedic devices', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.8) Fitting and adjustment of wheelchair\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\(V53.8) Fitting and adjustment of wheelchair\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.8''', NULL, + '(V53.8) Fitting and adjustment of wheelchair', '(V53.8) Fitting and adjustment of wheelchair', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of cardiac pacemaker (V53.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of cardiac pacemaker (V53.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.3''', NULL, + 'Fitting and adjustment of cardiac pacemaker (V53.3)', 'Fitting and adjustment of cardiac pacemaker (V53.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of cardiac pacemaker (V53.3)\(V53.31) Fitting and adjustment of cardiac pacemaker\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of cardiac pacemaker (V53.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of cardiac pacemaker (V53.3)\(V53.31) Fitting and adjustment of cardiac pacemaker\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.31''', NULL, + '(V53.31) Fitting and adjustment of cardiac pacemaker', '(V53.31) Fitting and adjustment of cardiac pacemaker', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of cardiac pacemaker (V53.3)\(V53.32) Fitting and adjustment of automatic implantable cardiac defibrillator\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of cardiac pacemaker (V53.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of cardiac pacemaker (V53.3)\(V53.32) Fitting and adjustment of automatic implantable cardiac defibrillator\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.32''', NULL, + '(V53.32) Fitting and adjustment of automatic implantable cardiac defibrillator', '(V53.32) Fitting and adjustment of automatic implantable cardiac defibrillator', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of cardiac pacemaker (V53.3)\(V53.39) Fitting and adjustment of other cardiac device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of cardiac pacemaker (V53.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of cardiac pacemaker (V53.3)\(V53.39) Fitting and adjustment of other cardiac device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.39''', NULL, + '(V53.39) Fitting and adjustment of other cardiac device', '(V53.39) Fitting and adjustment of other cardiac device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.0''', NULL, + 'Fitting and adjustment of devices related to nervous system and special senses (V53.0)', 'Fitting and adjustment of devices related to nervous system and special senses (V53.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\(V53.01) Fitting and adjustment of cerebral ventricular (communicating) shunt\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\(V53.01) Fitting and adjustment of cerebral ventricular (communicating) shunt\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.01) Fitting and adjustment of cerebral ventricular (communicating''', NULL, + '(V53.01) Fitting and adjustment of cerebral ventricular (communicating) shunt', '(V53.01) Fitting and adjustment of cerebral ventricular (communicating) shunt', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\(V53.02) Fitting and adjustment of neuropacemaker (brain) (peripheral nerve) (spinal cord)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\(V53.02) Fitting and adjustment of neuropacemaker (brain) (peripheral nerve) (spinal cord)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.02) Fitting and adjustment of neuropacemaker (brain) (peripheral nerve) (spinal cord''', NULL, + '(V53.02) Fitting and adjustment of neuropacemaker (brain) (peripheral nerve) (spinal cord)', '(V53.02) Fitting and adjustment of neuropacemaker (brain) (peripheral nerve) (spinal cord)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\(V53.09) Fitting and adjustment of other devices related to nervous system and special senses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\(V53.09) Fitting and adjustment of other devices related to nervous system and special senses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.09''', NULL, + '(V53.09) Fitting and adjustment of other devices related to nervous system and special senses', '(V53.09) Fitting and adjustment of other devices related to nervous system and special senses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other and unspecified device (V53.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other and unspecified device (V53.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.9''', NULL, + 'Fitting and adjustment of other and unspecified device (V53.9)', 'Fitting and adjustment of other and unspecified device (V53.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other and unspecified device (V53.9)\(V53.90) Fitting and adjustment, unspecified device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other and unspecified device (V53.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other and unspecified device (V53.9)\(V53.90) Fitting and adjustment, unspecified device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.90''', NULL, + '(V53.90) Fitting and adjustment, unspecified device', '(V53.90) Fitting and adjustment, unspecified device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other and unspecified device (V53.9)\(V53.91) Fitting and adjustment of insulin pump\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other and unspecified device (V53.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other and unspecified device (V53.9)\(V53.91) Fitting and adjustment of insulin pump\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.91''', NULL, + '(V53.91) Fitting and adjustment of insulin pump', '(V53.91) Fitting and adjustment of insulin pump', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other and unspecified device (V53.9)\(V53.99) Fitting and adjustment, other device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other and unspecified device (V53.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other and unspecified device (V53.9)\(V53.99) Fitting and adjustment, other device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.99''', NULL, + '(V53.99) Fitting and adjustment, other device', '(V53.99) Fitting and adjustment, other device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.5''', NULL, + 'Fitting and adjustment of other gastrointestinal appliance and device (V53.5)', 'Fitting and adjustment of other gastrointestinal appliance and device (V53.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\(V53.50) Fitting and adjustment of intestinal appliance and device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\(V53.50) Fitting and adjustment of intestinal appliance and device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.50''', NULL, + '(V53.50) Fitting and adjustment of intestinal appliance and device', '(V53.50) Fitting and adjustment of intestinal appliance and device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\(V53.51) Fitting and adjustment of gastric lap band\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\(V53.51) Fitting and adjustment of gastric lap band\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.51''', NULL, + '(V53.51) Fitting and adjustment of gastric lap band', '(V53.51) Fitting and adjustment of gastric lap band', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\(V53.59) Fitting and adjustment of other gastrointestinal appliance and device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of other device (V53)\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\(V53.59) Fitting and adjustment of other gastrointestinal appliance and device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V53.59''', NULL, + '(V53.59) Fitting and adjustment of other gastrointestinal appliance and device', '(V53.59) Fitting and adjustment of other gastrointestinal appliance and device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V52''', NULL, + 'Fitting and adjustment of prosthetic device and implant (V52)', 'Fitting and adjustment of prosthetic device and implant (V52)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.0) Fitting and adjustment of artificial arm (complete) (partial)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.0) Fitting and adjustment of artificial arm (complete) (partial)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V52.0) Fitting and adjustment of artificial arm (complete) (partial''', NULL, + '(V52.0) Fitting and adjustment of artificial arm (complete) (partial)', '(V52.0) Fitting and adjustment of artificial arm (complete) (partial)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.1) Fitting and adjustment of artificial leg (complete) (partial)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.1) Fitting and adjustment of artificial leg (complete) (partial)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V52.1) Fitting and adjustment of artificial leg (complete) (partial''', NULL, + '(V52.1) Fitting and adjustment of artificial leg (complete) (partial)', '(V52.1) Fitting and adjustment of artificial leg (complete) (partial)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.2) Fitting and adjustment of artificial eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.2) Fitting and adjustment of artificial eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V52.2''', NULL, + '(V52.2) Fitting and adjustment of artificial eye', '(V52.2) Fitting and adjustment of artificial eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.3) Fitting and adjustment of dental prosthetic device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.3) Fitting and adjustment of dental prosthetic device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V52.3''', NULL, + '(V52.3) Fitting and adjustment of dental prosthetic device', '(V52.3) Fitting and adjustment of dental prosthetic device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.4) Fitting and adjustment of breast prosthesis and implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.4) Fitting and adjustment of breast prosthesis and implant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V52.4''', NULL, + '(V52.4) Fitting and adjustment of breast prosthesis and implant', '(V52.4) Fitting and adjustment of breast prosthesis and implant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.8) Fitting and adjustment of other specified prosthetic device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.8) Fitting and adjustment of other specified prosthetic device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V52.8''', NULL, + '(V52.8) Fitting and adjustment of other specified prosthetic device', '(V52.8) Fitting and adjustment of other specified prosthetic device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.9) Fitting and adjustment of unspecified prosthetic device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Fitting and adjustment of prosthetic device and implant (V52)\(V52.9) Fitting and adjustment of unspecified prosthetic device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V52.9''', NULL, + '(V52.9) Fitting and adjustment of unspecified prosthetic device', '(V52.9) Fitting and adjustment of unspecified prosthetic device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54''', NULL, + 'Other orthopedic aftercare (V54)', 'Other orthopedic aftercare (V54)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\(V54.9) Unspecified orthopedic aftercare\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\(V54.9) Unspecified orthopedic aftercare\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.9''', NULL, + '(V54.9) Unspecified orthopedic aftercare', '(V54.9) Unspecified orthopedic aftercare', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.2''', NULL, + 'Aftercare for healing pathologic fracture (V54.2)', 'Aftercare for healing pathologic fracture (V54.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.20) Aftercare for healing pathologic fracture of arm, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.20) Aftercare for healing pathologic fracture of arm, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.20''', NULL, + '(V54.20) Aftercare for healing pathologic fracture of arm, unspecified', '(V54.20) Aftercare for healing pathologic fracture of arm, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.21) Aftercare for healing pathologic fracture of upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.21) Aftercare for healing pathologic fracture of upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.21''', NULL, + '(V54.21) Aftercare for healing pathologic fracture of upper arm', '(V54.21) Aftercare for healing pathologic fracture of upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.22) Aftercare for healing pathologic fracture of lower arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.22) Aftercare for healing pathologic fracture of lower arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.22''', NULL, + '(V54.22) Aftercare for healing pathologic fracture of lower arm', '(V54.22) Aftercare for healing pathologic fracture of lower arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.23) Aftercare for healing pathologic fracture of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.23) Aftercare for healing pathologic fracture of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.23''', NULL, + '(V54.23) Aftercare for healing pathologic fracture of hip', '(V54.23) Aftercare for healing pathologic fracture of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.24) Aftercare for healing pathologic fracture of leg, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.24) Aftercare for healing pathologic fracture of leg, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.24''', NULL, + '(V54.24) Aftercare for healing pathologic fracture of leg, unspecified', '(V54.24) Aftercare for healing pathologic fracture of leg, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.25) Aftercare for healing pathologic fracture of upper leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.25) Aftercare for healing pathologic fracture of upper leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.25''', NULL, + '(V54.25) Aftercare for healing pathologic fracture of upper leg', '(V54.25) Aftercare for healing pathologic fracture of upper leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.26) Aftercare for healing pathologic fracture of lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.26) Aftercare for healing pathologic fracture of lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.26''', NULL, + '(V54.26) Aftercare for healing pathologic fracture of lower leg', '(V54.26) Aftercare for healing pathologic fracture of lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.27) Aftercare for healing pathologic fracture of vertebrae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.27) Aftercare for healing pathologic fracture of vertebrae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.27''', NULL, + '(V54.27) Aftercare for healing pathologic fracture of vertebrae', '(V54.27) Aftercare for healing pathologic fracture of vertebrae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.29) Aftercare for healing pathologic fracture of other bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing pathologic fracture (V54.2)\(V54.29) Aftercare for healing pathologic fracture of other bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.29''', NULL, + '(V54.29) Aftercare for healing pathologic fracture of other bone', '(V54.29) Aftercare for healing pathologic fracture of other bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.1''', NULL, + 'Aftercare for healing traumatic fracture (V54.1)', 'Aftercare for healing traumatic fracture (V54.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.10) Aftercare for healing traumatic fracture of arm, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.10) Aftercare for healing traumatic fracture of arm, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.10''', NULL, + '(V54.10) Aftercare for healing traumatic fracture of arm, unspecified', '(V54.10) Aftercare for healing traumatic fracture of arm, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.11) Aftercare for healing traumatic fracture of upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.11) Aftercare for healing traumatic fracture of upper arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.11''', NULL, + '(V54.11) Aftercare for healing traumatic fracture of upper arm', '(V54.11) Aftercare for healing traumatic fracture of upper arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.12) Aftercare for healing traumatic fracture of lower arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.12) Aftercare for healing traumatic fracture of lower arm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.12''', NULL, + '(V54.12) Aftercare for healing traumatic fracture of lower arm', '(V54.12) Aftercare for healing traumatic fracture of lower arm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.13) Aftercare for healing traumatic fracture of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.13) Aftercare for healing traumatic fracture of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.13''', NULL, + '(V54.13) Aftercare for healing traumatic fracture of hip', '(V54.13) Aftercare for healing traumatic fracture of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.14) Aftercare for healing traumatic fracture of leg, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.14) Aftercare for healing traumatic fracture of leg, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.14''', NULL, + '(V54.14) Aftercare for healing traumatic fracture of leg, unspecified', '(V54.14) Aftercare for healing traumatic fracture of leg, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.15) Aftercare for healing traumatic fracture of upper leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.15) Aftercare for healing traumatic fracture of upper leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.15''', NULL, + '(V54.15) Aftercare for healing traumatic fracture of upper leg', '(V54.15) Aftercare for healing traumatic fracture of upper leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.16) Aftercare for healing traumatic fracture of lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.16) Aftercare for healing traumatic fracture of lower leg\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.16''', NULL, + '(V54.16) Aftercare for healing traumatic fracture of lower leg', '(V54.16) Aftercare for healing traumatic fracture of lower leg', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.17) Aftercare for healing traumatic fracture of vertebrae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.17) Aftercare for healing traumatic fracture of vertebrae\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.17''', NULL, + '(V54.17) Aftercare for healing traumatic fracture of vertebrae', '(V54.17) Aftercare for healing traumatic fracture of vertebrae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.19) Aftercare for healing traumatic fracture of other bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare for healing traumatic fracture (V54.1)\(V54.19) Aftercare for healing traumatic fracture of other bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.19''', NULL, + '(V54.19) Aftercare for healing traumatic fracture of other bone', '(V54.19) Aftercare for healing traumatic fracture of other bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare involving internal fixation device (V54.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare involving internal fixation device (V54.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.0''', NULL, + 'Aftercare involving internal fixation device (V54.0)', 'Aftercare involving internal fixation device (V54.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare involving internal fixation device (V54.0)\(V54.01) Encounter for removal of internal fixation device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare involving internal fixation device (V54.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare involving internal fixation device (V54.0)\(V54.01) Encounter for removal of internal fixation device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.01''', NULL, + '(V54.01) Encounter for removal of internal fixation device', '(V54.01) Encounter for removal of internal fixation device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare involving internal fixation device (V54.0)\(V54.02) Encounter for lengthening/adjustment of growth rod\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare involving internal fixation device (V54.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare involving internal fixation device (V54.0)\(V54.02) Encounter for lengthening/adjustment of growth rod\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.02''', NULL, + '(V54.02) Encounter for lengthening/adjustment of growth rod', '(V54.02) Encounter for lengthening/adjustment of growth rod', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare involving internal fixation device (V54.0)\(V54.09) Other aftercare involving internal fixation device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare involving internal fixation device (V54.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Aftercare involving internal fixation device (V54.0)\(V54.09) Other aftercare involving internal fixation device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.09''', NULL, + '(V54.09) Other aftercare involving internal fixation device', '(V54.09) Other aftercare involving internal fixation device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Other orthopedic aftercare (V54.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Other orthopedic aftercare (V54.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.8''', NULL, + 'Other orthopedic aftercare (V54.8)', 'Other orthopedic aftercare (V54.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Other orthopedic aftercare (V54.8)\(V54.81) Aftercare following joint replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Other orthopedic aftercare (V54.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Other orthopedic aftercare (V54.8)\(V54.81) Aftercare following joint replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.81''', NULL, + '(V54.81) Aftercare following joint replacement', '(V54.81) Aftercare following joint replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Other orthopedic aftercare (V54.8)\(V54.82) Aftercare following explantation of joint prosthesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Other orthopedic aftercare (V54.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Other orthopedic aftercare (V54.8)\(V54.82) Aftercare following explantation of joint prosthesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.82''', NULL, + '(V54.82) Aftercare following explantation of joint prosthesis', '(V54.82) Aftercare following explantation of joint prosthesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Other orthopedic aftercare (V54.8)\(V54.89) Other orthopedic aftercare\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Other orthopedic aftercare (V54.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\Other orthopedic aftercare (V54)\Other orthopedic aftercare (V54.8)\(V54.89) Other orthopedic aftercare\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V54.89''', NULL, + '(V54.89) Other orthopedic aftercare', '(V54.89) Other orthopedic aftercare', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v20'' AND ''v29.99''', NULL, + 'Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)', 'Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21''', NULL, + 'Constitutional states in development (V21)', 'Constitutional states in development (V21)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\(V21.0) Period of rapid growth in childhood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\(V21.0) Period of rapid growth in childhood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.0''', NULL, + '(V21.0) Period of rapid growth in childhood', '(V21.0) Period of rapid growth in childhood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\(V21.1) Puberty\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\(V21.1) Puberty\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.1''', NULL, + '(V21.1) Puberty', '(V21.1) Puberty', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\(V21.2) Other development of adolescence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\(V21.2) Other development of adolescence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.2''', NULL, + '(V21.2) Other development of adolescence', '(V21.2) Other development of adolescence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\(V21.8) Other specified constitutional states in development\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\(V21.8) Other specified constitutional states in development\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.8''', NULL, + '(V21.8) Other specified constitutional states in development', '(V21.8) Other specified constitutional states in development', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\(V21.9) Unspecified constitutional state in development\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\(V21.9) Unspecified constitutional state in development\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.9''', NULL, + '(V21.9) Unspecified constitutional state in development', '(V21.9) Unspecified constitutional state in development', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.3''', NULL, + 'Low birth weight status (V21.3)', 'Low birth weight status (V21.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.30) Low birth weight status, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.30) Low birth weight status, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.30''', NULL, + '(V21.30) Low birth weight status, unspecified', '(V21.30) Low birth weight status, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.31) Low birth weight status, less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.31) Low birth weight status, less than 500 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.31''', NULL, + '(V21.31) Low birth weight status, less than 500 grams', '(V21.31) Low birth weight status, less than 500 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.32) Low birth weight status, 500-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.32) Low birth weight status, 500-999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.32''', NULL, + '(V21.32) Low birth weight status, 500-999 grams', '(V21.32) Low birth weight status, 500-999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.33) Low birth weight status, 1000-1499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.33) Low birth weight status, 1000-1499 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.33''', NULL, + '(V21.33) Low birth weight status, 1000-1499 grams', '(V21.33) Low birth weight status, 1000-1499 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.34) Low birth weight status, 1500-1999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.34) Low birth weight status, 1500-1999 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.34''', NULL, + '(V21.34) Low birth weight status, 1500-1999 grams', '(V21.34) Low birth weight status, 1500-1999 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.35) Low birth weight status, 2000-2500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Constitutional states in development (V21)\Low birth weight status (V21.3)\(V21.35) Low birth weight status, 2000-2500 grams\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V21.35''', NULL, + '(V21.35) Low birth weight status, 2000-2500 grams', '(V21.35) Low birth weight status, 2000-2500 grams', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28''', NULL, + 'Encounter for antenatal screening of mother (V28)', 'Encounter for antenatal screening of mother (V28)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.0) Antenatal screening for chromosomal anomalies by amniocentesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.0) Antenatal screening for chromosomal anomalies by amniocentesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.0''', NULL, + '(V28.0) Antenatal screening for chromosomal anomalies by amniocentesis', '(V28.0) Antenatal screening for chromosomal anomalies by amniocentesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.1) Antenatal screening for raised alpha-fetoprotein levels in amniotic fluid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.1) Antenatal screening for raised alpha-fetoprotein levels in amniotic fluid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.1''', NULL, + '(V28.1) Antenatal screening for raised alpha-fetoprotein levels in amniotic fluid', '(V28.1) Antenatal screening for raised alpha-fetoprotein levels in amniotic fluid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.2) Other antenatal screening based on amniocentesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.2) Other antenatal screening based on amniocentesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.2''', NULL, + '(V28.2) Other antenatal screening based on amniocentesis', '(V28.2) Other antenatal screening based on amniocentesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.3) Encounter for routine screening for malformation using ultrasonics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.3) Encounter for routine screening for malformation using ultrasonics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.3''', NULL, + '(V28.3) Encounter for routine screening for malformation using ultrasonics', '(V28.3) Encounter for routine screening for malformation using ultrasonics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.4) Antenatal screening for fetal growth retardation using ultrasonics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.4) Antenatal screening for fetal growth retardation using ultrasonics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.4''', NULL, + '(V28.4) Antenatal screening for fetal growth retardation using ultrasonics', '(V28.4) Antenatal screening for fetal growth retardation using ultrasonics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.5) Antenatal screening for isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.5) Antenatal screening for isoimmunization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.5''', NULL, + '(V28.5) Antenatal screening for isoimmunization', '(V28.5) Antenatal screening for isoimmunization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.6) Antenatal screening for Streptococcus B\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.6) Antenatal screening for Streptococcus B\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.6''', NULL, + '(V28.6) Antenatal screening for Streptococcus B', '(V28.6) Antenatal screening for Streptococcus B', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.9) Unspecified antenatal screening\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\(V28.9) Unspecified antenatal screening\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.9''', NULL, + '(V28.9) Unspecified antenatal screening', '(V28.9) Unspecified antenatal screening', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\Other specified antenatal screening (V28.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\Other specified antenatal screening (V28.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.8''', NULL, + 'Other specified antenatal screening (V28.8)', 'Other specified antenatal screening (V28.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\Other specified antenatal screening (V28.8)\(V28.81) Encounter for fetal anatomic survey\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\Other specified antenatal screening (V28.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\Other specified antenatal screening (V28.8)\(V28.81) Encounter for fetal anatomic survey\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.81''', NULL, + '(V28.81) Encounter for fetal anatomic survey', '(V28.81) Encounter for fetal anatomic survey', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\Other specified antenatal screening (V28.8)\(V28.82) Encounter for screening for risk of pre-term labor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\Other specified antenatal screening (V28.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\Other specified antenatal screening (V28.8)\(V28.82) Encounter for screening for risk of pre-term labor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.82''', NULL, + '(V28.82) Encounter for screening for risk of pre-term labor', '(V28.82) Encounter for screening for risk of pre-term labor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\Other specified antenatal screening (V28.8)\(V28.89) Other specified antenatal screening\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\Other specified antenatal screening (V28.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for antenatal screening of mother (V28)\Other specified antenatal screening (V28.8)\(V28.89) Other specified antenatal screening\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V28.89''', NULL, + '(V28.89) Other specified antenatal screening', '(V28.89) Other specified antenatal screening', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25''', NULL, + 'Encounter for contraceptive management (V25)', 'Encounter for contraceptive management (V25)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\(V25.2) Sterilization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\(V25.2) Sterilization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.2''', NULL, + '(V25.2) Sterilization', '(V25.2) Sterilization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\(V25.3) Menstrual extraction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\(V25.3) Menstrual extraction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.3''', NULL, + '(V25.3) Menstrual extraction', '(V25.3) Menstrual extraction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\(V25.5) Insertion of implantable subdermal contraceptive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\(V25.5) Insertion of implantable subdermal contraceptive\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.5''', NULL, + '(V25.5) Insertion of implantable subdermal contraceptive', '(V25.5) Insertion of implantable subdermal contraceptive', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\(V25.8) Other specified contraceptive management\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\(V25.8) Other specified contraceptive management\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.8''', NULL, + '(V25.8) Other specified contraceptive management', '(V25.8) Other specified contraceptive management', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\(V25.9) Unspecified contraceptive management\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\(V25.9) Unspecified contraceptive management\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.9''', NULL, + '(V25.9) Unspecified contraceptive management', '(V25.9) Unspecified contraceptive management', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.0''', NULL, + 'Encounter for general counseling and advice on contraceptive management (V25.0)', 'Encounter for general counseling and advice on contraceptive management (V25.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\(V25.01) General counseling on prescription of oral contraceptives\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\(V25.01) General counseling on prescription of oral contraceptives\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.01''', NULL, + '(V25.01) General counseling on prescription of oral contraceptives', '(V25.01) General counseling on prescription of oral contraceptives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\(V25.02) General counseling on initiation of other contraceptive measures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\(V25.02) General counseling on initiation of other contraceptive measures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.02''', NULL, + '(V25.02) General counseling on initiation of other contraceptive measures', '(V25.02) General counseling on initiation of other contraceptive measures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\(V25.03) Encounter for emergency contraceptive counseling and prescription\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\(V25.03) Encounter for emergency contraceptive counseling and prescription\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.03''', NULL, + '(V25.03) Encounter for emergency contraceptive counseling and prescription', '(V25.03) Encounter for emergency contraceptive counseling and prescription', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\(V25.04) Counseling and instruction in natural family planning to avoid pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\(V25.04) Counseling and instruction in natural family planning to avoid pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.04''', NULL, + '(V25.04) Counseling and instruction in natural family planning to avoid pregnancy', '(V25.04) Counseling and instruction in natural family planning to avoid pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\(V25.09) Other general counseling and advice on contraceptive management\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for general counseling and advice on contraceptive management (V25.0)\(V25.09) Other general counseling and advice on contraceptive management\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.09''', NULL, + '(V25.09) Other general counseling and advice on contraceptive management', '(V25.09) Other general counseling and advice on contraceptive management', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.1''', NULL, + 'Encounter for insertion or removal of intrauterine contraceptive device (V25.1)', 'Encounter for insertion or removal of intrauterine contraceptive device (V25.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\(V25.11) Encounter for insertion of intrauterine contraceptive device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\(V25.11) Encounter for insertion of intrauterine contraceptive device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.11''', NULL, + '(V25.11) Encounter for insertion of intrauterine contraceptive device', '(V25.11) Encounter for insertion of intrauterine contraceptive device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\(V25.12) Encounter for removal of intrauterine contraceptive device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\(V25.12) Encounter for removal of intrauterine contraceptive device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.12''', NULL, + '(V25.12) Encounter for removal of intrauterine contraceptive device', '(V25.12) Encounter for removal of intrauterine contraceptive device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\(V25.13) Encounter for removal and reinsertion of intrauterine contraceptive device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\(V25.13) Encounter for removal and reinsertion of intrauterine contraceptive device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.13''', NULL, + '(V25.13) Encounter for removal and reinsertion of intrauterine contraceptive device', '(V25.13) Encounter for removal and reinsertion of intrauterine contraceptive device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.4''', NULL, + 'Encounter for surveillance of previously prescribed contraceptive methods (V25.4)', 'Encounter for surveillance of previously prescribed contraceptive methods (V25.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\(V25.40) Contraceptive surveillance, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\(V25.40) Contraceptive surveillance, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.40''', NULL, + '(V25.40) Contraceptive surveillance, unspecified', '(V25.40) Contraceptive surveillance, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\(V25.41) Surveillance of contraceptive pill\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\(V25.41) Surveillance of contraceptive pill\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.41''', NULL, + '(V25.41) Surveillance of contraceptive pill', '(V25.41) Surveillance of contraceptive pill', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\(V25.42) Surveillance of intrauterine contraceptive device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\(V25.42) Surveillance of intrauterine contraceptive device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.42''', NULL, + '(V25.42) Surveillance of intrauterine contraceptive device', '(V25.42) Surveillance of intrauterine contraceptive device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\(V25.43) Surveillance of implantable subdermal contraceptive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\(V25.43) Surveillance of implantable subdermal contraceptive\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.43''', NULL, + '(V25.43) Surveillance of implantable subdermal contraceptive', '(V25.43) Surveillance of implantable subdermal contraceptive', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\(V25.49) Surveillance of other contraceptive method\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Encounter for contraceptive management (V25)\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\(V25.49) Surveillance of other contraceptive method\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V25.49''', NULL, + '(V25.49) Surveillance of other contraceptive method', '(V25.49) Surveillance of other contraceptive method', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V20''', NULL, + 'Health supervision of infant or child (V20)', 'Health supervision of infant or child (V20)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\(V20.0) Health supervision of foundling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\(V20.0) Health supervision of foundling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V20.0''', NULL, + '(V20.0) Health supervision of foundling', '(V20.0) Health supervision of foundling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\(V20.1) Other healthy infant or child receiving care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\(V20.1) Other healthy infant or child receiving care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V20.1''', NULL, + '(V20.1) Other healthy infant or child receiving care', '(V20.1) Other healthy infant or child receiving care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\(V20.2) Routine infant or child health check\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\(V20.2) Routine infant or child health check\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V20.2''', NULL, + '(V20.2) Routine infant or child health check', '(V20.2) Routine infant or child health check', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\Newborn health supervision (V20.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\Newborn health supervision (V20.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V20.3''', NULL, + 'Newborn health supervision (V20.3)', 'Newborn health supervision (V20.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\Newborn health supervision (V20.3)\(V20.31) Health supervision for newborn under 8 days old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\Newborn health supervision (V20.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\Newborn health supervision (V20.3)\(V20.31) Health supervision for newborn under 8 days old\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V20.31''', NULL, + '(V20.31) Health supervision for newborn under 8 days old', '(V20.31) Health supervision for newborn under 8 days old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\Newborn health supervision (V20.3)\(V20.32) Health supervision for newborn 8 to 28 days old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\Newborn health supervision (V20.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Health supervision of infant or child (V20)\Newborn health supervision (V20.3)\(V20.32) Health supervision for newborn 8 to 28 days old\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V20.32''', NULL, + '(V20.32) Health supervision for newborn 8 to 28 days old', '(V20.32) Health supervision for newborn 8 to 28 days old', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Normal pregnancy (V22)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Normal pregnancy (V22)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V22''', NULL, + 'Normal pregnancy (V22)', 'Normal pregnancy (V22)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Normal pregnancy (V22)\(V22.0) Supervision of normal first pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Normal pregnancy (V22)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Normal pregnancy (V22)\(V22.0) Supervision of normal first pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V22.0''', NULL, + '(V22.0) Supervision of normal first pregnancy', '(V22.0) Supervision of normal first pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Normal pregnancy (V22)\(V22.1) Supervision of other normal pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Normal pregnancy (V22)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Normal pregnancy (V22)\(V22.1) Supervision of other normal pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V22.1''', NULL, + '(V22.1) Supervision of other normal pregnancy', '(V22.1) Supervision of other normal pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Normal pregnancy (V22)\(V22.2) Pregnant state, incidental\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Normal pregnancy (V22)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Normal pregnancy (V22)\(V22.2) Pregnant state, incidental\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V22.2''', NULL, + '(V22.2) Pregnant state, incidental', '(V22.2) Pregnant state, incidental', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V29''', NULL, + 'Observation and evaluation of newborns for suspected condition not found (V29)', 'Observation and evaluation of newborns for suspected condition not found (V29)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.0) Observation for suspected infectious condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.0) Observation for suspected infectious condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V29.0''', NULL, + '(V29.0) Observation for suspected infectious condition', '(V29.0) Observation for suspected infectious condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.1) Observation for suspected neurological conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.1) Observation for suspected neurological conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V29.1''', NULL, + '(V29.1) Observation for suspected neurological conditions', '(V29.1) Observation for suspected neurological conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.2) Observation and evaluation of newborn for suspected respiratory condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.2) Observation and evaluation of newborn for suspected respiratory condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V29.2''', NULL, + '(V29.2) Observation and evaluation of newborn for suspected respiratory condition', '(V29.2) Observation and evaluation of newborn for suspected respiratory condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.3) Observation for suspected genetic or metabolic condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.3) Observation for suspected genetic or metabolic condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V29.3''', NULL, + '(V29.3) Observation for suspected genetic or metabolic condition', '(V29.3) Observation for suspected genetic or metabolic condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.8) Observation for other specified suspected conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.8) Observation for other specified suspected conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V29.8''', NULL, + '(V29.8) Observation for other specified suspected conditions', '(V29.8) Observation for other specified suspected conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.9) Observation for unspecified suspected conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Observation and evaluation of newborns for suspected condition not found (V29)\(V29.9) Observation for unspecified suspected conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V29.9''', NULL, + '(V29.9) Observation for unspecified suspected conditions', '(V29.9) Observation for unspecified suspected conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V27''', NULL, + 'Outcome of delivery (V27)', 'Outcome of delivery (V27)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.0) Outcome of delivery, single liveborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.0) Outcome of delivery, single liveborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V27.0''', NULL, + '(V27.0) Outcome of delivery, single liveborn', '(V27.0) Outcome of delivery, single liveborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.1) Outcome of delivery, single stillborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.1) Outcome of delivery, single stillborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V27.1''', NULL, + '(V27.1) Outcome of delivery, single stillborn', '(V27.1) Outcome of delivery, single stillborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.2) Outcome of delivery, twins, both liveborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.2) Outcome of delivery, twins, both liveborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V27.2''', NULL, + '(V27.2) Outcome of delivery, twins, both liveborn', '(V27.2) Outcome of delivery, twins, both liveborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.3) Outcome of delivery, twins, one liveborn and one stillborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.3) Outcome of delivery, twins, one liveborn and one stillborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V27.3''', NULL, + '(V27.3) Outcome of delivery, twins, one liveborn and one stillborn', '(V27.3) Outcome of delivery, twins, one liveborn and one stillborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.4) Outcome of delivery, twins, both stillborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.4) Outcome of delivery, twins, both stillborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V27.4''', NULL, + '(V27.4) Outcome of delivery, twins, both stillborn', '(V27.4) Outcome of delivery, twins, both stillborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.5) Outcome of delivery, other multiple birth, all liveborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.5) Outcome of delivery, other multiple birth, all liveborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V27.5''', NULL, + '(V27.5) Outcome of delivery, other multiple birth, all liveborn', '(V27.5) Outcome of delivery, other multiple birth, all liveborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.6) Outcome of delivery, other multiple birth, some liveborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.6) Outcome of delivery, other multiple birth, some liveborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V27.6''', NULL, + '(V27.6) Outcome of delivery, other multiple birth, some liveborn', '(V27.6) Outcome of delivery, other multiple birth, some liveborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.7) Outcome of delivery, other multiple birth, all stillborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.7) Outcome of delivery, other multiple birth, all stillborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V27.7''', NULL, + '(V27.7) Outcome of delivery, other multiple birth, all stillborn', '(V27.7) Outcome of delivery, other multiple birth, all stillborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.9) Outcome of delivery, unspecified outcome of delivery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Outcome of delivery (V27)\(V27.9) Outcome of delivery, unspecified outcome of delivery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V27.9''', NULL, + '(V27.9) Outcome of delivery, unspecified outcome of delivery', '(V27.9) Outcome of delivery, unspecified outcome of delivery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Postpartum care and examination (V24)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Postpartum care and examination (V24)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V24''', NULL, + 'Postpartum care and examination (V24)', 'Postpartum care and examination (V24)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Postpartum care and examination (V24)\(V24.0) Postpartum care and examination immediately after delivery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Postpartum care and examination (V24)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Postpartum care and examination (V24)\(V24.0) Postpartum care and examination immediately after delivery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V24.0''', NULL, + '(V24.0) Postpartum care and examination immediately after delivery', '(V24.0) Postpartum care and examination immediately after delivery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Postpartum care and examination (V24)\(V24.1) Postpartum care and examination of lactating mother\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Postpartum care and examination (V24)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Postpartum care and examination (V24)\(V24.1) Postpartum care and examination of lactating mother\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V24.1''', NULL, + '(V24.1) Postpartum care and examination of lactating mother', '(V24.1) Postpartum care and examination of lactating mother', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Postpartum care and examination (V24)\(V24.2) Routine postpartum follow-up\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Postpartum care and examination (V24)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Postpartum care and examination (V24)\(V24.2) Routine postpartum follow-up\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V24.2''', NULL, + '(V24.2) Routine postpartum follow-up', '(V24.2) Routine postpartum follow-up', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26''', NULL, + 'Procreative management (V26)', 'Procreative management (V26)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\(V26.0) Tuboplasty or vasoplasty after previous sterilization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\(V26.0) Tuboplasty or vasoplasty after previous sterilization\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.0''', NULL, + '(V26.0) Tuboplasty or vasoplasty after previous sterilization', '(V26.0) Tuboplasty or vasoplasty after previous sterilization', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\(V26.1) Artificial insemination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\(V26.1) Artificial insemination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.1''', NULL, + '(V26.1) Artificial insemination', '(V26.1) Artificial insemination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\(V26.9) Unspecified procreative management\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\(V26.9) Unspecified procreative management\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.9''', NULL, + '(V26.9) Unspecified procreative management', '(V26.9) Unspecified procreative management', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\General counseling and advice on procreative management (V26.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\General counseling and advice on procreative management (V26.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.4''', NULL, + 'General counseling and advice on procreative management (V26.4)', 'General counseling and advice on procreative management (V26.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\General counseling and advice on procreative management (V26.4)\(V26.41) Procreative counseling and advice using natural family planning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\General counseling and advice on procreative management (V26.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\General counseling and advice on procreative management (V26.4)\(V26.41) Procreative counseling and advice using natural family planning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.41''', NULL, + '(V26.41) Procreative counseling and advice using natural family planning', '(V26.41) Procreative counseling and advice using natural family planning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\General counseling and advice on procreative management (V26.4)\(V26.42) Encounter for fertility preservation counseling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\General counseling and advice on procreative management (V26.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\General counseling and advice on procreative management (V26.4)\(V26.42) Encounter for fertility preservation counseling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.42''', NULL, + '(V26.42) Encounter for fertility preservation counseling', '(V26.42) Encounter for fertility preservation counseling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\General counseling and advice on procreative management (V26.4)\(V26.49) Other procreative management counseling and advice\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\General counseling and advice on procreative management (V26.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\General counseling and advice on procreative management (V26.4)\(V26.49) Other procreative management counseling and advice\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.49''', NULL, + '(V26.49) Other procreative management counseling and advice', '(V26.49) Other procreative management counseling and advice', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.3''', NULL, + 'Genetic counseling and testing on procreative management (V26.3)', 'Genetic counseling and testing on procreative management (V26.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.31) Testing of female for genetic disease carrier status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.31) Testing of female for genetic disease carrier status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.31''', NULL, + '(V26.31) Testing of female for genetic disease carrier status', '(V26.31) Testing of female for genetic disease carrier status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.32) Other genetic testing of female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.32) Other genetic testing of female\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.32''', NULL, + '(V26.32) Other genetic testing of female', '(V26.32) Other genetic testing of female', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.33) Genetic counseling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.33) Genetic counseling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.33''', NULL, + '(V26.33) Genetic counseling', '(V26.33) Genetic counseling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.34) Testing of male for genetic disease carrier status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.34) Testing of male for genetic disease carrier status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.34''', NULL, + '(V26.34) Testing of male for genetic disease carrier status', '(V26.34) Testing of male for genetic disease carrier status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.35) Encounter for testing of male partner of female with recurrent pregnancy loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.35) Encounter for testing of male partner of female with recurrent pregnancy loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.35''', NULL, + '(V26.35) Encounter for testing of male partner of female with recurrent pregnancy loss', '(V26.35) Encounter for testing of male partner of female with recurrent pregnancy loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.39) Other genetic testing of male\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Genetic counseling and testing on procreative management (V26.3)\(V26.39) Other genetic testing of male\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.39''', NULL, + '(V26.39) Other genetic testing of male', '(V26.39) Other genetic testing of male', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Other specified procreative management (V26.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Other specified procreative management (V26.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.8''', NULL, + 'Other specified procreative management (V26.8)', 'Other specified procreative management (V26.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Other specified procreative management (V26.8)\(V26.81) Encounter for assisted reproductive fertility procedure cycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Other specified procreative management (V26.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Other specified procreative management (V26.8)\(V26.81) Encounter for assisted reproductive fertility procedure cycle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.81''', NULL, + '(V26.81) Encounter for assisted reproductive fertility procedure cycle', '(V26.81) Encounter for assisted reproductive fertility procedure cycle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Other specified procreative management (V26.8)\(V26.82) Encounter for fertility preservation procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Other specified procreative management (V26.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Other specified procreative management (V26.8)\(V26.82) Encounter for fertility preservation procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.82''', NULL, + '(V26.82) Encounter for fertility preservation procedure', '(V26.82) Encounter for fertility preservation procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Other specified procreative management (V26.8)\(V26.89) Other specified procreative management\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Other specified procreative management (V26.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Other specified procreative management (V26.8)\(V26.89) Other specified procreative management\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.89''', NULL, + '(V26.89) Other specified procreative management', '(V26.89) Other specified procreative management', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Procreation management investigation and testing (V26.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Procreation management investigation and testing (V26.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.2''', NULL, + 'Procreation management investigation and testing (V26.2)', 'Procreation management investigation and testing (V26.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Procreation management investigation and testing (V26.2)\(V26.21) Fertility testing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Procreation management investigation and testing (V26.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Procreation management investigation and testing (V26.2)\(V26.21) Fertility testing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.21''', NULL, + '(V26.21) Fertility testing', '(V26.21) Fertility testing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Procreation management investigation and testing (V26.2)\(V26.22) Aftercare following sterilization reversal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Procreation management investigation and testing (V26.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Procreation management investigation and testing (V26.2)\(V26.22) Aftercare following sterilization reversal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.22''', NULL, + '(V26.22) Aftercare following sterilization reversal', '(V26.22) Aftercare following sterilization reversal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Procreation management investigation and testing (V26.2)\(V26.29) Other investigation and testing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Procreation management investigation and testing (V26.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Procreation management investigation and testing (V26.2)\(V26.29) Other investigation and testing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.29''', NULL, + '(V26.29) Other investigation and testing', '(V26.29) Other investigation and testing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Sterilization status (V26.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Sterilization status (V26.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.5''', NULL, + 'Sterilization status (V26.5)', 'Sterilization status (V26.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Sterilization status (V26.5)\(V26.51) Tubal ligation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Sterilization status (V26.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Sterilization status (V26.5)\(V26.51) Tubal ligation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.51''', NULL, + '(V26.51) Tubal ligation status', '(V26.51) Tubal ligation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Sterilization status (V26.5)\(V26.52) Vasectomy status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Sterilization status (V26.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Procreative management (V26)\Sterilization status (V26.5)\(V26.52) Vasectomy status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V26.52''', NULL, + '(V26.52) Vasectomy status', '(V26.52) Vasectomy status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23''', NULL, + 'Supervision of high-risk pregnancy (V23)', 'Supervision of high-risk pregnancy (V23)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.0) Supervision of high-risk pregnancy with history of infertility\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.0) Supervision of high-risk pregnancy with history of infertility\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.0''', NULL, + '(V23.0) Supervision of high-risk pregnancy with history of infertility', '(V23.0) Supervision of high-risk pregnancy with history of infertility', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.1) Supervision of high-risk pregnancy with history of trophoblastic disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.1) Supervision of high-risk pregnancy with history of trophoblastic disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.1''', NULL, + '(V23.1) Supervision of high-risk pregnancy with history of trophoblastic disease', '(V23.1) Supervision of high-risk pregnancy with history of trophoblastic disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.2) Supervision of high-risk pregnancy with history of abortion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.2) Supervision of high-risk pregnancy with history of abortion\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.2''', NULL, + '(V23.2) Supervision of high-risk pregnancy with history of abortion', '(V23.2) Supervision of high-risk pregnancy with history of abortion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.3) Supervision of high-risk pregnancy with grand multiparity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.3) Supervision of high-risk pregnancy with grand multiparity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.3''', NULL, + '(V23.3) Supervision of high-risk pregnancy with grand multiparity', '(V23.3) Supervision of high-risk pregnancy with grand multiparity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.5) Supervision of high-risk pregnancy with other poor reproductive history\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.5) Supervision of high-risk pregnancy with other poor reproductive history\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.5''', NULL, + '(V23.5) Supervision of high-risk pregnancy with other poor reproductive history', '(V23.5) Supervision of high-risk pregnancy with other poor reproductive history', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.7) Supervision of high-risk pregnancy with insufficient prenatal care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.7) Supervision of high-risk pregnancy with insufficient prenatal care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.7''', NULL, + '(V23.7) Supervision of high-risk pregnancy with insufficient prenatal care', '(V23.7) Supervision of high-risk pregnancy with insufficient prenatal care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.9) Supervision of unspecified high-risk pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\(V23.9) Supervision of unspecified high-risk pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.9''', NULL, + '(V23.9) Supervision of unspecified high-risk pregnancy', '(V23.9) Supervision of unspecified high-risk pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.4''', NULL, + 'Supervision of high-risk pregnancy with other poor obstetric history (V23.4)', 'Supervision of high-risk pregnancy with other poor obstetric history (V23.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\(V23.41) Pregnancy with history of pre-term labor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\(V23.41) Pregnancy with history of pre-term labor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.41''', NULL, + '(V23.41) Pregnancy with history of pre-term labor', '(V23.41) Pregnancy with history of pre-term labor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\(V23.42) Pregnancy with history of ectopic pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\(V23.42) Pregnancy with history of ectopic pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.42''', NULL, + '(V23.42) Pregnancy with history of ectopic pregnancy', '(V23.42) Pregnancy with history of ectopic pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\(V23.49) Pregnancy with other poor obstetric history\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\(V23.49) Pregnancy with other poor obstetric history\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.49''', NULL, + '(V23.49) Pregnancy with other poor obstetric history', '(V23.49) Pregnancy with other poor obstetric history', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.8''', NULL, + 'Supervision of other high-risk pregnancy (V23.8)', 'Supervision of other high-risk pregnancy (V23.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.81) Supervision of high-risk pregnancy with elderly primigravida\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.81) Supervision of high-risk pregnancy with elderly primigravida\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.81''', NULL, + '(V23.81) Supervision of high-risk pregnancy with elderly primigravida', '(V23.81) Supervision of high-risk pregnancy with elderly primigravida', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.82) Supervision of high-risk pregnancy with elderly multigravida\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.82) Supervision of high-risk pregnancy with elderly multigravida\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.82''', NULL, + '(V23.82) Supervision of high-risk pregnancy with elderly multigravida', '(V23.82) Supervision of high-risk pregnancy with elderly multigravida', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.83) Supervision of high-risk pregnancy with young primigravida\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.83) Supervision of high-risk pregnancy with young primigravida\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.83''', NULL, + '(V23.83) Supervision of high-risk pregnancy with young primigravida', '(V23.83) Supervision of high-risk pregnancy with young primigravida', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.84) Supervision of high-risk pregnancy with young multigravida\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.84) Supervision of high-risk pregnancy with young multigravida\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.84''', NULL, + '(V23.84) Supervision of high-risk pregnancy with young multigravida', '(V23.84) Supervision of high-risk pregnancy with young multigravida', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.85) Pregnancy resulting from assisted reproductive technology\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.85) Pregnancy resulting from assisted reproductive technology\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.85''', NULL, + '(V23.85) Pregnancy resulting from assisted reproductive technology', '(V23.85) Pregnancy resulting from assisted reproductive technology', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.87) Pregnancy with inconclusive fetal viability\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.87) Pregnancy with inconclusive fetal viability\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.87''', NULL, + '(V23.87) Pregnancy with inconclusive fetal viability', '(V23.87) Pregnancy with inconclusive fetal viability', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.89) Supervision of other high-risk pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\Supervision of high-risk pregnancy (V23)\Supervision of other high-risk pregnancy (V23.8)\(V23.89) Supervision of other high-risk pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V23.89''', NULL, + '(V23.89) Supervision of other high-risk pregnancy', '(V23.89) Supervision of other high-risk pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v60'' AND ''v69.99''', NULL, + 'Persons encountering health services in other circumstances (v60-v69.99)', 'Persons encountering health services in other circumstances (v60-v69.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V66''', NULL, + 'Convalescence and palliative care (V66)', 'Convalescence and palliative care (V66)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.0) Convalescence following surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.0) Convalescence following surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V66.0''', NULL, + '(V66.0) Convalescence following surgery', '(V66.0) Convalescence following surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.1) Convalescence following radiotherapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.1) Convalescence following radiotherapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V66.1''', NULL, + '(V66.1) Convalescence following radiotherapy', '(V66.1) Convalescence following radiotherapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.2) Convalescence following chemotherapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.2) Convalescence following chemotherapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V66.2''', NULL, + '(V66.2) Convalescence following chemotherapy', '(V66.2) Convalescence following chemotherapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.3) Convalescence following psychotherapy and other treatment for mental disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.3) Convalescence following psychotherapy and other treatment for mental disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V66.3''', NULL, + '(V66.3) Convalescence following psychotherapy and other treatment for mental disorder', '(V66.3) Convalescence following psychotherapy and other treatment for mental disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.4) Convalescence following treatment of fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.4) Convalescence following treatment of fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V66.4''', NULL, + '(V66.4) Convalescence following treatment of fracture', '(V66.4) Convalescence following treatment of fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.5) Convalescence following other treatment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.5) Convalescence following other treatment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V66.5''', NULL, + '(V66.5) Convalescence following other treatment', '(V66.5) Convalescence following other treatment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.6) Convalescence following combined treatment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.6) Convalescence following combined treatment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V66.6''', NULL, + '(V66.6) Convalescence following combined treatment', '(V66.6) Convalescence following combined treatment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.7) Encounter for palliative care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.7) Encounter for palliative care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V66.7''', NULL, + '(V66.7) Encounter for palliative care', '(V66.7) Encounter for palliative care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.9) Unspecified convalescence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Convalescence and palliative care (V66)\(V66.9) Unspecified convalescence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V66.9''', NULL, + '(V66.9) Unspecified convalescence', '(V66.9) Unspecified convalescence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V68''', NULL, + 'Encounters for administrative purposes (V68)', 'Encounters for administrative purposes (V68)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\(V68.1) Issue of repeat prescriptions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\(V68.1) Issue of repeat prescriptions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V68.1''', NULL, + '(V68.1) Issue of repeat prescriptions', '(V68.1) Issue of repeat prescriptions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\(V68.2) Request for expert evidence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\(V68.2) Request for expert evidence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V68.2''', NULL, + '(V68.2) Request for expert evidence', '(V68.2) Request for expert evidence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\(V68.9) Encounters for unspecified administrative purpose\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\(V68.9) Encounters for unspecified administrative purpose\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V68.9''', NULL, + '(V68.9) Encounters for unspecified administrative purpose', '(V68.9) Encounters for unspecified administrative purpose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Encounters for other specified administrative purpose (V68.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Encounters for other specified administrative purpose (V68.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V68.8''', NULL, + 'Encounters for other specified administrative purpose (V68.8)', 'Encounters for other specified administrative purpose (V68.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Encounters for other specified administrative purpose (V68.8)\(V68.81) Referral of patient without examination or treatment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Encounters for other specified administrative purpose (V68.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Encounters for other specified administrative purpose (V68.8)\(V68.81) Referral of patient without examination or treatment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V68.81''', NULL, + '(V68.81) Referral of patient without examination or treatment', '(V68.81) Referral of patient without examination or treatment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Encounters for other specified administrative purpose (V68.8)\(V68.89) Encounters for other specified administrative purpose\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Encounters for other specified administrative purpose (V68.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Encounters for other specified administrative purpose (V68.8)\(V68.89) Encounters for other specified administrative purpose\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V68.89''', NULL, + '(V68.89) Encounters for other specified administrative purpose', '(V68.89) Encounters for other specified administrative purpose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Issue of medical certificates (V68.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Issue of medical certificates (V68.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V68.0''', NULL, + 'Issue of medical certificates (V68.0)', 'Issue of medical certificates (V68.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Issue of medical certificates (V68.0)\(V68.01) Disability examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Issue of medical certificates (V68.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Issue of medical certificates (V68.0)\(V68.01) Disability examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V68.01''', NULL, + '(V68.01) Disability examination', '(V68.01) Disability examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Issue of medical certificates (V68.0)\(V68.09) Other issue of medical certificates\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Issue of medical certificates (V68.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Encounters for administrative purposes (V68)\Issue of medical certificates (V68.0)\(V68.09) Other issue of medical certificates\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V68.09''', NULL, + '(V68.09) Other issue of medical certificates', '(V68.09) Other issue of medical certificates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67''', NULL, + 'Follow-up examination (V67)', 'Follow-up examination (V67)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.1) Follow-up examination, following radiotherapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.1) Follow-up examination, following radiotherapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.1''', NULL, + '(V67.1) Follow-up examination, following radiotherapy', '(V67.1) Follow-up examination, following radiotherapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.2) Follow-up examination, following chemotherapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.2) Follow-up examination, following chemotherapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.2''', NULL, + '(V67.2) Follow-up examination, following chemotherapy', '(V67.2) Follow-up examination, following chemotherapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.3) Follow-up examination, following psychotherapy and other treatment for mental disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.3) Follow-up examination, following psychotherapy and other treatment for mental disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.3''', NULL, + '(V67.3) Follow-up examination, following psychotherapy and other treatment for mental disorder', '(V67.3) Follow-up examination, following psychotherapy and other treatment for mental disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.4) Follow-up examination, following treatment of healed fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.4) Follow-up examination, following treatment of healed fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.4''', NULL, + '(V67.4) Follow-up examination, following treatment of healed fracture', '(V67.4) Follow-up examination, following treatment of healed fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.6) Follow-up examination, following combined treatment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.6) Follow-up examination, following combined treatment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.6''', NULL, + '(V67.6) Follow-up examination, following combined treatment', '(V67.6) Follow-up examination, following combined treatment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.9) Unspecified follow-up examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\(V67.9) Unspecified follow-up examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.9''', NULL, + '(V67.9) Unspecified follow-up examination', '(V67.9) Unspecified follow-up examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following other treatment (V67.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following other treatment (V67.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.5''', NULL, + 'Follow-up examination following other treatment (V67.5)', 'Follow-up examination following other treatment (V67.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following other treatment (V67.5)\(V67.51) Follow-up examination, following completed treatment with high-risk medication, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following other treatment (V67.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following other treatment (V67.5)\(V67.51) Follow-up examination, following completed treatment with high-risk medication, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.51''', NULL, + '(V67.51) Follow-up examination, following completed treatment with high-risk medication, not elsewhere classified', '(V67.51) Follow-up examination, following completed treatment with high-risk medication, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following other treatment (V67.5)\(V67.59) Other follow-up examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following other treatment (V67.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following other treatment (V67.5)\(V67.59) Other follow-up examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.59''', NULL, + '(V67.59) Other follow-up examination', '(V67.59) Other follow-up examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following surgery (V67.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following surgery (V67.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.0''', NULL, + 'Follow-up examination following surgery (V67.0)', 'Follow-up examination following surgery (V67.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following surgery (V67.0)\(V67.00) Follow-up examination, following surgery, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following surgery (V67.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following surgery (V67.0)\(V67.00) Follow-up examination, following surgery, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.00''', NULL, + '(V67.00) Follow-up examination, following surgery, unspecified', '(V67.00) Follow-up examination, following surgery, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following surgery (V67.0)\(V67.01) Following surgery, follow-up vaginal pap smear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following surgery (V67.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following surgery (V67.0)\(V67.01) Following surgery, follow-up vaginal pap smear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.01''', NULL, + '(V67.01) Following surgery, follow-up vaginal pap smear', '(V67.01) Following surgery, follow-up vaginal pap smear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following surgery (V67.0)\(V67.09) Follow-up examination, following other surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following surgery (V67.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Follow-up examination (V67)\Follow-up examination following surgery (V67.0)\(V67.09) Follow-up examination, following other surgery\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V67.09''', NULL, + '(V67.09) Follow-up examination, following other surgery', '(V67.09) Follow-up examination, following other surgery', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V60''', NULL, + 'Housing, household, and economic circumstances (V60)', 'Housing, household, and economic circumstances (V60)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.0) Lack of housing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.0) Lack of housing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V60.0''', NULL, + '(V60.0) Lack of housing', '(V60.0) Lack of housing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.1) Inadequate housing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.1) Inadequate housing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V60.1''', NULL, + '(V60.1) Inadequate housing', '(V60.1) Inadequate housing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.2) Inadequate material resources\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.2) Inadequate material resources\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V60.2''', NULL, + '(V60.2) Inadequate material resources', '(V60.2) Inadequate material resources', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.3) Person living alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.3) Person living alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V60.3''', NULL, + '(V60.3) Person living alone', '(V60.3) Person living alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.4) No other household member able to render care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.4) No other household member able to render care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V60.4''', NULL, + '(V60.4) No other household member able to render care', '(V60.4) No other household member able to render care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.5) Holiday relief care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.5) Holiday relief care\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V60.5''', NULL, + '(V60.5) Holiday relief care', '(V60.5) Holiday relief care', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.6) Person living in residential institution\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.6) Person living in residential institution\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V60.6''', NULL, + '(V60.6) Person living in residential institution', '(V60.6) Person living in residential institution', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.9) Unspecified housing or economic circumstance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\(V60.9) Unspecified housing or economic circumstance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V60.9''', NULL, + '(V60.9) Unspecified housing or economic circumstance', '(V60.9) Unspecified housing or economic circumstance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\Other specified housing or economic circumstances (V60.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\Other specified housing or economic circumstances (V60.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V60.8''', NULL, + 'Other specified housing or economic circumstances (V60.8)', 'Other specified housing or economic circumstances (V60.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\Other specified housing or economic circumstances (V60.8)\(V60.89) Other specified housing or economic circumstances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\Other specified housing or economic circumstances (V60.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Housing, household, and economic circumstances (V60)\Other specified housing or economic circumstances (V60.8)\(V60.89) Other specified housing or economic circumstances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V60.89''', NULL, + '(V60.89) Other specified housing or economic circumstances', '(V60.89) Other specified housing or economic circumstances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61''', NULL, + 'Other family circumstances (V61)', 'Other family circumstances (V61)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.3) Problems with aged parents or in-laws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.3) Problems with aged parents or in-laws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.3''', NULL, + '(V61.3) Problems with aged parents or in-laws', '(V61.3) Problems with aged parents or in-laws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.5) Multiparity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.5) Multiparity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.5''', NULL, + '(V61.5) Multiparity', '(V61.5) Multiparity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.6) Illegitimacy or illegitimate pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.6) Illegitimacy or illegitimate pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.6''', NULL, + '(V61.6) Illegitimacy or illegitimate pregnancy', '(V61.6) Illegitimacy or illegitimate pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.7) Other unwanted pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.7) Other unwanted pregnancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.7''', NULL, + '(V61.7) Other unwanted pregnancy', '(V61.7) Other unwanted pregnancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.8) Other specified family circumstances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.8) Other specified family circumstances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.8''', NULL, + '(V61.8) Other specified family circumstances', '(V61.8) Other specified family circumstances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.9) Unspecified family circumstance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\(V61.9) Unspecified family circumstance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.9''', NULL, + '(V61.9) Unspecified family circumstance', '(V61.9) Unspecified family circumstance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Counseling for marital and partner problems (V61.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Counseling for marital and partner problems (V61.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.1''', NULL, + 'Counseling for marital and partner problems (V61.1)', 'Counseling for marital and partner problems (V61.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Counseling for marital and partner problems (V61.1)\(V61.10) Counseling for marital and partner problems, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Counseling for marital and partner problems (V61.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Counseling for marital and partner problems (V61.1)\(V61.10) Counseling for marital and partner problems, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.10''', NULL, + '(V61.10) Counseling for marital and partner problems, unspecified', '(V61.10) Counseling for marital and partner problems, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Counseling for marital and partner problems (V61.1)\(V61.11) Counseling for victim of spousal and partner abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Counseling for marital and partner problems (V61.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Counseling for marital and partner problems (V61.1)\(V61.11) Counseling for victim of spousal and partner abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.11''', NULL, + '(V61.11) Counseling for victim of spousal and partner abuse', '(V61.11) Counseling for victim of spousal and partner abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Counseling for marital and partner problems (V61.1)\(V61.12) Counseling for perpetrator of spousal and partner abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Counseling for marital and partner problems (V61.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Counseling for marital and partner problems (V61.1)\(V61.12) Counseling for perpetrator of spousal and partner abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.12''', NULL, + '(V61.12) Counseling for perpetrator of spousal and partner abuse', '(V61.12) Counseling for perpetrator of spousal and partner abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Family disruption (V61.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Family disruption (V61.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.0''', NULL, + 'Family disruption (V61.0)', 'Family disruption (V61.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Family disruption (V61.0)\(V61.02) Family disruption due to return of family member from military deployment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Family disruption (V61.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Family disruption (V61.0)\(V61.02) Family disruption due to return of family member from military deployment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.02''', NULL, + '(V61.02) Family disruption due to return of family member from military deployment', '(V61.02) Family disruption due to return of family member from military deployment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Family disruption (V61.0)\(V61.03) Family disruption due to divorce or legal separation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Family disruption (V61.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Family disruption (V61.0)\(V61.03) Family disruption due to divorce or legal separation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.03''', NULL, + '(V61.03) Family disruption due to divorce or legal separation', '(V61.03) Family disruption due to divorce or legal separation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Family disruption (V61.0)\(V61.09) Other family disruption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Family disruption (V61.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Family disruption (V61.0)\(V61.09) Other family disruption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.09''', NULL, + '(V61.09) Other family disruption', '(V61.09) Other family disruption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Health problems within family (V61.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Health problems within family (V61.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.4''', NULL, + 'Health problems within family (V61.4)', 'Health problems within family (V61.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Health problems within family (V61.4)\(V61.41) Alcoholism in family\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Health problems within family (V61.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Health problems within family (V61.4)\(V61.41) Alcoholism in family\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.41''', NULL, + '(V61.41) Alcoholism in family', '(V61.41) Alcoholism in family', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Health problems within family (V61.4)\(V61.42) Substance abuse in family\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Health problems within family (V61.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Health problems within family (V61.4)\(V61.42) Substance abuse in family\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.42''', NULL, + '(V61.42) Substance abuse in family', '(V61.42) Substance abuse in family', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Health problems within family (V61.4)\(V61.49) Other health problems within the family\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Health problems within family (V61.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Health problems within family (V61.4)\(V61.49) Other health problems within the family\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.49''', NULL, + '(V61.49) Other health problems within the family', '(V61.49) Other health problems within the family', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.2''', NULL, + 'Parent-child problems (V61.2)', 'Parent-child problems (V61.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.20) Counseling for parent-child problem, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.20) Counseling for parent-child problem, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.20''', NULL, + '(V61.20) Counseling for parent-child problem, unspecified', '(V61.20) Counseling for parent-child problem, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.21) Counseling for victim of child abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.21) Counseling for victim of child abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.21''', NULL, + '(V61.21) Counseling for victim of child abuse', '(V61.21) Counseling for victim of child abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.22) Counseling for perpetrator of spousal and partner abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.22) Counseling for perpetrator of spousal and partner abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.22''', NULL, + '(V61.22) Counseling for perpetrator of spousal and partner abuse', '(V61.22) Counseling for perpetrator of spousal and partner abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.23) Counseling for parent-biological child problem\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.23) Counseling for parent-biological child problem\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.23''', NULL, + '(V61.23) Counseling for parent-biological child problem', '(V61.23) Counseling for parent-biological child problem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.25) Counseling for parent (guardian)-foster child problem\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.25) Counseling for parent (guardian)-foster child problem\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.25) Counseling for parent (guardian''', NULL, + '(V61.25) Counseling for parent (guardian)-foster child problem', '(V61.25) Counseling for parent (guardian)-foster child problem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.29) Other parent-child problems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other family circumstances (V61)\Parent-child problems (V61.2)\(V61.29) Other parent-child problems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V61.29''', NULL, + '(V61.29) Other parent-child problems', '(V61.29) Other parent-child problems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65''', NULL, + 'Other persons seeking consultation (V65)', 'Other persons seeking consultation (V65)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.0) Healthy person accompanying sick person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.0) Healthy person accompanying sick person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.0''', NULL, + '(V65.0) Healthy person accompanying sick person', '(V65.0) Healthy person accompanying sick person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.2) Person feigning illness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.2) Person feigning illness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.2''', NULL, + '(V65.2) Person feigning illness', '(V65.2) Person feigning illness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.3) Dietary surveillance and counseling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.3) Dietary surveillance and counseling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.3''', NULL, + '(V65.3) Dietary surveillance and counseling', '(V65.3) Dietary surveillance and counseling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.5) Person with feared complaint in whom no diagnosis was made\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.5) Person with feared complaint in whom no diagnosis was made\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.5''', NULL, + '(V65.5) Person with feared complaint in whom no diagnosis was made', '(V65.5) Person with feared complaint in whom no diagnosis was made', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.8) Other reasons for seeking consultation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.8) Other reasons for seeking consultation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.8''', NULL, + '(V65.8) Other reasons for seeking consultation', '(V65.8) Other reasons for seeking consultation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.9) Unspecified reason for consultation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\(V65.9) Unspecified reason for consultation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.9''', NULL, + '(V65.9) Unspecified reason for consultation', '(V65.9) Unspecified reason for consultation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.4''', NULL, + 'Other counseling, not elsewhere classified (V65.4)', 'Other counseling, not elsewhere classified (V65.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.40) Counseling NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.40) Counseling NOS\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.40''', NULL, + '(V65.40) Counseling NOS', '(V65.40) Counseling NOS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.41) Exercise counseling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.41) Exercise counseling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.41''', NULL, + '(V65.41) Exercise counseling', '(V65.41) Exercise counseling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.42) Counseling on substance use and abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.42) Counseling on substance use and abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.42''', NULL, + '(V65.42) Counseling on substance use and abuse', '(V65.42) Counseling on substance use and abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.43) Counseling on injury prevention\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.43) Counseling on injury prevention\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.43''', NULL, + '(V65.43) Counseling on injury prevention', '(V65.43) Counseling on injury prevention', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.44) Human immunodeficiency virus (HIV) counseling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.44) Human immunodeficiency virus (HIV) counseling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.44) Human immunodeficiency virus (HIV''', NULL, + '(V65.44) Human immunodeficiency virus (HIV) counseling', '(V65.44) Human immunodeficiency virus (HIV) counseling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.45) Counseling on other sexually transmitted diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.45) Counseling on other sexually transmitted diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.45''', NULL, + '(V65.45) Counseling on other sexually transmitted diseases', '(V65.45) Counseling on other sexually transmitted diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.46) Encounter for insulin pump training\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.46) Encounter for insulin pump training\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.46''', NULL, + '(V65.46) Encounter for insulin pump training', '(V65.46) Encounter for insulin pump training', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.49) Other specified counseling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Other counseling, not elsewhere classified (V65.4)\(V65.49) Other specified counseling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.49''', NULL, + '(V65.49) Other specified counseling', '(V65.49) Other specified counseling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Person consulting on behalf of another person (V65.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Person consulting on behalf of another person (V65.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.1''', NULL, + 'Person consulting on behalf of another person (V65.1)', 'Person consulting on behalf of another person (V65.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Person consulting on behalf of another person (V65.1)\(V65.11) Pediatric pre-birth visit for expectant parent(s)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Person consulting on behalf of another person (V65.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Person consulting on behalf of another person (V65.1)\(V65.11) Pediatric pre-birth visit for expectant parent(s)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V65.11) Pediatric pre'' AND ''birth visit for expectant parent(s''', NULL, + '(V65.11) Pediatric pre-birth visit for expectant parent(s)', '(V65.11) Pediatric pre-birth visit for expectant parent(s)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Person consulting on behalf of another person (V65.1)\(V65.19) Other person consulting on behalf of another person\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Person consulting on behalf of another person (V65.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other persons seeking consultation (V65)\Person consulting on behalf of another person (V65.1)\(V65.19) Other person consulting on behalf of another person\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V65.19''', NULL, + '(V65.19) Other person consulting on behalf of another person', '(V65.19) Other person consulting on behalf of another person', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62''', NULL, + 'Other psychosocial circumstances (V62)', 'Other psychosocial circumstances (V62)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.0) Unemployment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.0) Unemployment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.0''', NULL, + '(V62.0) Unemployment', '(V62.0) Unemployment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.1) Adverse effects of work environment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.1) Adverse effects of work environment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.1''', NULL, + '(V62.1) Adverse effects of work environment', '(V62.1) Adverse effects of work environment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.3) Educational circumstances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.3) Educational circumstances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.3''', NULL, + '(V62.3) Educational circumstances', '(V62.3) Educational circumstances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.4) Social maladjustment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.4) Social maladjustment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.4''', NULL, + '(V62.4) Social maladjustment', '(V62.4) Social maladjustment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.5) Legal circumstances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.5) Legal circumstances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.5''', NULL, + '(V62.5) Legal circumstances', '(V62.5) Legal circumstances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.6) Refusal of treatment for reasons of religion or conscience\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.6) Refusal of treatment for reasons of religion or conscience\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.6''', NULL, + '(V62.6) Refusal of treatment for reasons of religion or conscience', '(V62.6) Refusal of treatment for reasons of religion or conscience', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.9) Unspecified psychosocial circumstance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\(V62.9) Unspecified psychosocial circumstance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.9''', NULL, + '(V62.9) Unspecified psychosocial circumstance', '(V62.9) Unspecified psychosocial circumstance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other occupational circumstances or maladjustment (V62.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other occupational circumstances or maladjustment (V62.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.2''', NULL, + 'Other occupational circumstances or maladjustment (V62.2)', 'Other occupational circumstances or maladjustment (V62.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other occupational circumstances or maladjustment (V62.2)\(V62.21) Personal current military deployment status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other occupational circumstances or maladjustment (V62.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other occupational circumstances or maladjustment (V62.2)\(V62.21) Personal current military deployment status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.21''', NULL, + '(V62.21) Personal current military deployment status', '(V62.21) Personal current military deployment status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other occupational circumstances or maladjustment (V62.2)\(V62.29) Other occupational circumstances or maladjustment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other occupational circumstances or maladjustment (V62.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other occupational circumstances or maladjustment (V62.2)\(V62.29) Other occupational circumstances or maladjustment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.29''', NULL, + '(V62.29) Other occupational circumstances or maladjustment', '(V62.29) Other occupational circumstances or maladjustment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.8''', NULL, + 'Other psychological or physical stress, not elsewhere classified (V62.8)', 'Other psychological or physical stress, not elsewhere classified (V62.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.81) Interpersonal problems, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.81) Interpersonal problems, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.81''', NULL, + '(V62.81) Interpersonal problems, not elsewhere classified', '(V62.81) Interpersonal problems, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.82) Bereavement, uncomplicated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.82) Bereavement, uncomplicated\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.82''', NULL, + '(V62.82) Bereavement, uncomplicated', '(V62.82) Bereavement, uncomplicated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.83) Counseling for perpetrator of physical/sexual abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.83) Counseling for perpetrator of physical/sexual abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.83''', NULL, + '(V62.83) Counseling for perpetrator of physical/sexual abuse', '(V62.83) Counseling for perpetrator of physical/sexual abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.84) Suicidal ideation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.84) Suicidal ideation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.84''', NULL, + '(V62.84) Suicidal ideation', '(V62.84) Suicidal ideation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.85) Homicidal ideation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.85) Homicidal ideation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.85''', NULL, + '(V62.85) Homicidal ideation', '(V62.85) Homicidal ideation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.89) Other psychological or physical stress, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Other psychosocial circumstances (V62)\Other psychological or physical stress, not elsewhere classified (V62.8)\(V62.89) Other psychological or physical stress, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V62.89''', NULL, + '(V62.89) Other psychological or physical stress, not elsewhere classified', '(V62.89) Other psychological or physical stress, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64''', NULL, + 'Persons encountering health services for specific procedures, not carried out (V64)', 'Persons encountering health services for specific procedures, not carried out (V64)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\(V64.1) Surgical or other procedure not carried out because of contraindication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\(V64.1) Surgical or other procedure not carried out because of contraindication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.1''', NULL, + '(V64.1) Surgical or other procedure not carried out because of contraindication', '(V64.1) Surgical or other procedure not carried out because of contraindication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\(V64.2) Surgical or other procedure not carried out because of patient''s decision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\(V64.2) Surgical or other procedure not carried out because of patient''s decision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.2''', NULL, + '(V64.2) Surgical or other procedure not carried out because of patient''s decision', '(V64.2) Surgical or other procedure not carried out because of patient''s decision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\(V64.3) Procedure not carried out for other reasons\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\(V64.3) Procedure not carried out for other reasons\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.3''', NULL, + '(V64.3) Procedure not carried out for other reasons', '(V64.3) Procedure not carried out for other reasons', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Closed surgical procedure converted to open procedure (V64.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Closed surgical procedure converted to open procedure (V64.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.4''', NULL, + 'Closed surgical procedure converted to open procedure (V64.4)', 'Closed surgical procedure converted to open procedure (V64.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Closed surgical procedure converted to open procedure (V64.4)\(V64.41) Laparoscopic surgical procedure converted to open procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Closed surgical procedure converted to open procedure (V64.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Closed surgical procedure converted to open procedure (V64.4)\(V64.41) Laparoscopic surgical procedure converted to open procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.41''', NULL, + '(V64.41) Laparoscopic surgical procedure converted to open procedure', '(V64.41) Laparoscopic surgical procedure converted to open procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Closed surgical procedure converted to open procedure (V64.4)\(V64.42) Thoracoscopic surgical procedure converted to open procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Closed surgical procedure converted to open procedure (V64.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Closed surgical procedure converted to open procedure (V64.4)\(V64.42) Thoracoscopic surgical procedure converted to open procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.42''', NULL, + '(V64.42) Thoracoscopic surgical procedure converted to open procedure', '(V64.42) Thoracoscopic surgical procedure converted to open procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Closed surgical procedure converted to open procedure (V64.4)\(V64.43) Arthroscopic surgical procedure converted to open procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Closed surgical procedure converted to open procedure (V64.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Closed surgical procedure converted to open procedure (V64.4)\(V64.43) Arthroscopic surgical procedure converted to open procedure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.43''', NULL, + '(V64.43) Arthroscopic surgical procedure converted to open procedure', '(V64.43) Arthroscopic surgical procedure converted to open procedure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.0''', NULL, + 'Vaccination not carried out (V64.0)', 'Vaccination not carried out (V64.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.00) Vaccination not carried out, unspecified reason\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.00) Vaccination not carried out, unspecified reason\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.00''', NULL, + '(V64.00) Vaccination not carried out, unspecified reason', '(V64.00) Vaccination not carried out, unspecified reason', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.01) Vaccination not carried out because of acute illness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.01) Vaccination not carried out because of acute illness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.01''', NULL, + '(V64.01) Vaccination not carried out because of acute illness', '(V64.01) Vaccination not carried out because of acute illness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.02) Vaccination not carried out because of chronic illness or condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.02) Vaccination not carried out because of chronic illness or condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.02''', NULL, + '(V64.02) Vaccination not carried out because of chronic illness or condition', '(V64.02) Vaccination not carried out because of chronic illness or condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.03) Vaccination not carried out because of immune compromised state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.03) Vaccination not carried out because of immune compromised state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.03''', NULL, + '(V64.03) Vaccination not carried out because of immune compromised state', '(V64.03) Vaccination not carried out because of immune compromised state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.04) Vaccination not carried out because of allergy to vaccine or component\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.04) Vaccination not carried out because of allergy to vaccine or component\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.04''', NULL, + '(V64.04) Vaccination not carried out because of allergy to vaccine or component', '(V64.04) Vaccination not carried out because of allergy to vaccine or component', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.05) Vaccination not carried out because of caregiver refusal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.05) Vaccination not carried out because of caregiver refusal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.05''', NULL, + '(V64.05) Vaccination not carried out because of caregiver refusal', '(V64.05) Vaccination not carried out because of caregiver refusal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.06) Vaccination not carried out because of patient refusal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.06) Vaccination not carried out because of patient refusal\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.06''', NULL, + '(V64.06) Vaccination not carried out because of patient refusal', '(V64.06) Vaccination not carried out because of patient refusal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.07) Vaccination not carried out for religious reasons\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.07) Vaccination not carried out for religious reasons\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.07''', NULL, + '(V64.07) Vaccination not carried out for religious reasons', '(V64.07) Vaccination not carried out for religious reasons', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.08) Vaccination not carried out because patient had disease being vaccinated against\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.08) Vaccination not carried out because patient had disease being vaccinated against\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.08''', NULL, + '(V64.08) Vaccination not carried out because patient had disease being vaccinated against', '(V64.08) Vaccination not carried out because patient had disease being vaccinated against', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.09) Vaccination not carried out for other reason\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Persons encountering health services for specific procedures, not carried out (V64)\Vaccination not carried out (V64.0)\(V64.09) Vaccination not carried out for other reason\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V64.09''', NULL, + '(V64.09) Vaccination not carried out for other reason', '(V64.09) Vaccination not carried out for other reason', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V69''', NULL, + 'Problems related to lifestyle (V69)', 'Problems related to lifestyle (V69)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.0) Lack of physical exercise\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.0) Lack of physical exercise\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V69.0''', NULL, + '(V69.0) Lack of physical exercise', '(V69.0) Lack of physical exercise', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.1) Inappropriate diet and eating habits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.1) Inappropriate diet and eating habits\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V69.1''', NULL, + '(V69.1) Inappropriate diet and eating habits', '(V69.1) Inappropriate diet and eating habits', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.2) High-risk sexual behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.2) High-risk sexual behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V69.2''', NULL, + '(V69.2) High-risk sexual behavior', '(V69.2) High-risk sexual behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.3) Gambling and betting\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.3) Gambling and betting\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V69.3''', NULL, + '(V69.3) Gambling and betting', '(V69.3) Gambling and betting', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.4) Lack of adequate sleep\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.4) Lack of adequate sleep\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V69.4''', NULL, + '(V69.4) Lack of adequate sleep', '(V69.4) Lack of adequate sleep', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.5) Behavioral insomnia of childhood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.5) Behavioral insomnia of childhood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V69.5''', NULL, + '(V69.5) Behavioral insomnia of childhood', '(V69.5) Behavioral insomnia of childhood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.8) Other problems related to lifestyle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.8) Other problems related to lifestyle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V69.8''', NULL, + '(V69.8) Other problems related to lifestyle', '(V69.8) Other problems related to lifestyle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.9) Unspecified problem related to lifestyle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Problems related to lifestyle (V69)\(V69.9) Unspecified problem related to lifestyle\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V69.9''', NULL, + '(V69.9) Unspecified problem related to lifestyle', '(V69.9) Unspecified problem related to lifestyle', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V63''', NULL, + 'Unavailability of other medical facilities for care (V63)', 'Unavailability of other medical facilities for care (V63)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\(V63.0) Residence remote from hospital or other health care facility\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\(V63.0) Residence remote from hospital or other health care facility\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V63.0''', NULL, + '(V63.0) Residence remote from hospital or other health care facility', '(V63.0) Residence remote from hospital or other health care facility', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\(V63.1) Medical services in home not available\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\(V63.1) Medical services in home not available\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V63.1''', NULL, + '(V63.1) Medical services in home not available', '(V63.1) Medical services in home not available', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\(V63.2) Person awaiting admission to adequate facility elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\(V63.2) Person awaiting admission to adequate facility elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V63.2''', NULL, + '(V63.2) Person awaiting admission to adequate facility elsewhere', '(V63.2) Person awaiting admission to adequate facility elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\(V63.8) Other specified reasons for unavailability of medical facilities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\(V63.8) Other specified reasons for unavailability of medical facilities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V63.8''', NULL, + '(V63.8) Other specified reasons for unavailability of medical facilities', '(V63.8) Other specified reasons for unavailability of medical facilities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\(V63.9) Unspecified reason for unavailability of medical facilities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons encountering health services in other circumstances (v60-v69.99)\Unavailability of other medical facilities for care (V63)\(V63.9) Unspecified reason for unavailability of medical facilities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V63.9''', NULL, + '(V63.9) Unspecified reason for unavailability of medical facilities', '(V63.9) Unspecified reason for unavailability of medical facilities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v40'' AND ''v49.99''', NULL, + 'Persons with a condition influencing their health status (v40-v49.99)', 'Persons with a condition influencing their health status (v40-v49.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44''', NULL, + 'Artificial opening status (V44)', 'Artificial opening status (V44)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.0) Tracheostomy status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.0) Tracheostomy status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.0''', NULL, + '(V44.0) Tracheostomy status', '(V44.0) Tracheostomy status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.1) Gastrostomy status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.1) Gastrostomy status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.1''', NULL, + '(V44.1) Gastrostomy status', '(V44.1) Gastrostomy status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.2) Ileostomy status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.2) Ileostomy status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.2''', NULL, + '(V44.2) Ileostomy status', '(V44.2) Ileostomy status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.3) Colostomy status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.3) Colostomy status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.3''', NULL, + '(V44.3) Colostomy status', '(V44.3) Colostomy status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.4) Status of other artificial opening of gastrointestinal tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.4) Status of other artificial opening of gastrointestinal tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.4''', NULL, + '(V44.4) Status of other artificial opening of gastrointestinal tract', '(V44.4) Status of other artificial opening of gastrointestinal tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.6) Other artificial opening of urinary tract status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.6) Other artificial opening of urinary tract status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.6''', NULL, + '(V44.6) Other artificial opening of urinary tract status', '(V44.6) Other artificial opening of urinary tract status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.7) Artificial vagina status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.7) Artificial vagina status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.7''', NULL, + '(V44.7) Artificial vagina status', '(V44.7) Artificial vagina status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.8) Other artificial opening status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.8) Other artificial opening status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.8''', NULL, + '(V44.8) Other artificial opening status', '(V44.8) Other artificial opening status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.9) Unspecified artificial opening status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\(V44.9) Unspecified artificial opening status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.9''', NULL, + '(V44.9) Unspecified artificial opening status', '(V44.9) Unspecified artificial opening status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.5''', NULL, + 'Cystostomy status (V44.5)', 'Cystostomy status (V44.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\(V44.50) Cystostomy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\(V44.50) Cystostomy, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.50''', NULL, + '(V44.50) Cystostomy, unspecified', '(V44.50) Cystostomy, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\(V44.51) Cutaneous-vesicostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\(V44.51) Cutaneous-vesicostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.51''', NULL, + '(V44.51) Cutaneous-vesicostomy', '(V44.51) Cutaneous-vesicostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\(V44.52) Appendico-vesicostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\(V44.52) Appendico-vesicostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.52''', NULL, + '(V44.52) Appendico-vesicostomy', '(V44.52) Appendico-vesicostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\(V44.59) Other cystostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Artificial opening status (V44)\Cystostomy status (V44.5)\(V44.59) Other cystostomy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V44.59''', NULL, + '(V44.59) Other cystostomy', '(V44.59) Other cystostomy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V40''', NULL, + 'Mental and behavioral problems (V40)', 'Mental and behavioral problems (V40)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\(V40.0) Mental and behavioral problems with learning\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\(V40.0) Mental and behavioral problems with learning\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V40.0''', NULL, + '(V40.0) Mental and behavioral problems with learning', '(V40.0) Mental and behavioral problems with learning', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\(V40.1) Mental and behavioral problems with communication [including speech]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\(V40.1) Mental and behavioral problems with communication [including speech]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V40.1''', NULL, + '(V40.1) Mental and behavioral problems with communication [including speech]', '(V40.1) Mental and behavioral problems with communication [including speech]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\(V40.2) Other mental problems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\(V40.2) Other mental problems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V40.2''', NULL, + '(V40.2) Other mental problems', '(V40.2) Other mental problems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\(V40.9) Unspecified mental or behavioral problem\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\(V40.9) Unspecified mental or behavioral problem\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V40.9''', NULL, + '(V40.9) Unspecified mental or behavioral problem', '(V40.9) Unspecified mental or behavioral problem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\Other behavioral problems (V40.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\Other behavioral problems (V40.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V40.3''', NULL, + 'Other behavioral problems (V40.3)', 'Other behavioral problems (V40.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\Other behavioral problems (V40.3)\(V40.31) Wandering in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\Other behavioral problems (V40.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\Other behavioral problems (V40.3)\(V40.31) Wandering in diseases classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V40.31''', NULL, + '(V40.31) Wandering in diseases classified elsewhere', '(V40.31) Wandering in diseases classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\Other behavioral problems (V40.3)\(V40.39) Other specified behavioral problem\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\Other behavioral problems (V40.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Mental and behavioral problems (V40)\Other behavioral problems (V40.3)\(V40.39) Other specified behavioral problem\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V40.39''', NULL, + '(V40.39) Other specified behavioral problem', '(V40.39) Other specified behavioral problem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43''', NULL, + 'Organ or tissue replaced by other means (V43)', 'Organ or tissue replaced by other means (V43)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.0) Eye globe replaced by other means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.0) Eye globe replaced by other means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.0''', NULL, + '(V43.0) Eye globe replaced by other means', '(V43.0) Eye globe replaced by other means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.1) Lens replaced by other means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.1) Lens replaced by other means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.1''', NULL, + '(V43.1) Lens replaced by other means', '(V43.1) Lens replaced by other means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.3) Heart valve replaced by other means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.3) Heart valve replaced by other means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.3''', NULL, + '(V43.3) Heart valve replaced by other means', '(V43.3) Heart valve replaced by other means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.4) Blood vessel replaced by other means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.4) Blood vessel replaced by other means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.4''', NULL, + '(V43.4) Blood vessel replaced by other means', '(V43.4) Blood vessel replaced by other means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.5) Bladder replaced by other means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.5) Bladder replaced by other means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.5''', NULL, + '(V43.5) Bladder replaced by other means', '(V43.5) Bladder replaced by other means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.7) Limb replaced by other means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\(V43.7) Limb replaced by other means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.7''', NULL, + '(V43.7) Limb replaced by other means', '(V43.7) Limb replaced by other means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Heart replaced by other means (V43.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Heart replaced by other means (V43.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.2''', NULL, + 'Heart replaced by other means (V43.2)', 'Heart replaced by other means (V43.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Heart replaced by other means (V43.2)\(V43.21) Organ or tissue replaced by other means, heart assist device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Heart replaced by other means (V43.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Heart replaced by other means (V43.2)\(V43.21) Organ or tissue replaced by other means, heart assist device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.21''', NULL, + '(V43.21) Organ or tissue replaced by other means, heart assist device', '(V43.21) Organ or tissue replaced by other means, heart assist device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Heart replaced by other means (V43.2)\(V43.22) Organ or tissue replaced by other means, fully implantable artificial heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Heart replaced by other means (V43.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Heart replaced by other means (V43.2)\(V43.22) Organ or tissue replaced by other means, fully implantable artificial heart\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.22''', NULL, + '(V43.22) Organ or tissue replaced by other means, fully implantable artificial heart', '(V43.22) Organ or tissue replaced by other means, fully implantable artificial heart', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.6''', NULL, + 'Joint replaced by other means (V43.6)', 'Joint replaced by other means (V43.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.60) Unspecified joint replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.60) Unspecified joint replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.60''', NULL, + '(V43.60) Unspecified joint replacement', '(V43.60) Unspecified joint replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.61) Shoulder joint replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.61) Shoulder joint replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.61''', NULL, + '(V43.61) Shoulder joint replacement', '(V43.61) Shoulder joint replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.62) Elbow joint replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.62) Elbow joint replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.62''', NULL, + '(V43.62) Elbow joint replacement', '(V43.62) Elbow joint replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.63) Wrist joint replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.63) Wrist joint replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.63''', NULL, + '(V43.63) Wrist joint replacement', '(V43.63) Wrist joint replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.64) Hip joint replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.64) Hip joint replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.64''', NULL, + '(V43.64) Hip joint replacement', '(V43.64) Hip joint replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.65) Knee joint replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.65) Knee joint replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.65''', NULL, + '(V43.65) Knee joint replacement', '(V43.65) Knee joint replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.66) Ankle joint replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.66) Ankle joint replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.66''', NULL, + '(V43.66) Ankle joint replacement', '(V43.66) Ankle joint replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.69) Other joint replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Joint replaced by other means (V43.6)\(V43.69) Other joint replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.69''', NULL, + '(V43.69) Other joint replacement', '(V43.69) Other joint replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.8''', NULL, + 'Other organ or tissue replaced by other means (V43.8)', 'Other organ or tissue replaced by other means (V43.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\(V43.81) Larynx replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\(V43.81) Larynx replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.81''', NULL, + '(V43.81) Larynx replacement', '(V43.81) Larynx replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\(V43.82) Breast replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\(V43.82) Breast replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.82''', NULL, + '(V43.82) Breast replacement', '(V43.82) Breast replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\(V43.83) Artificial skin replacement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\(V43.83) Artificial skin replacement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.83''', NULL, + '(V43.83) Artificial skin replacement', '(V43.83) Artificial skin replacement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\(V43.89) Other organ or tissue replaced by other means\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by other means (V43)\Other organ or tissue replaced by other means (V43.8)\(V43.89) Other organ or tissue replaced by other means\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V43.89''', NULL, + '(V43.89) Other organ or tissue replaced by other means', '(V43.89) Other organ or tissue replaced by other means', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42''', NULL, + 'Organ or tissue replaced by transplant (V42)', 'Organ or tissue replaced by transplant (V42)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.0) Kidney replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.0) Kidney replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.0''', NULL, + '(V42.0) Kidney replaced by transplant', '(V42.0) Kidney replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.1) Heart replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.1) Heart replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.1''', NULL, + '(V42.1) Heart replaced by transplant', '(V42.1) Heart replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.2) Heart valve replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.2) Heart valve replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.2''', NULL, + '(V42.2) Heart valve replaced by transplant', '(V42.2) Heart valve replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.3) Skin replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.3) Skin replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.3''', NULL, + '(V42.3) Skin replaced by transplant', '(V42.3) Skin replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.4) Bone replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.4) Bone replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.4''', NULL, + '(V42.4) Bone replaced by transplant', '(V42.4) Bone replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.5) Cornea replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.5) Cornea replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.5''', NULL, + '(V42.5) Cornea replaced by transplant', '(V42.5) Cornea replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.6) Lung replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.6) Lung replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.6''', NULL, + '(V42.6) Lung replaced by transplant', '(V42.6) Lung replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.7) Liver replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.7) Liver replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.7''', NULL, + '(V42.7) Liver replaced by transplant', '(V42.7) Liver replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.9) Unspecified organ or tissue replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\(V42.9) Unspecified organ or tissue replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.9''', NULL, + '(V42.9) Unspecified organ or tissue replaced by transplant', '(V42.9) Unspecified organ or tissue replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.8''', NULL, + 'Other specified organ or tissue replaced by transplant (V42.8)', 'Other specified organ or tissue replaced by transplant (V42.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\(V42.81) Bone marrow replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\(V42.81) Bone marrow replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.81''', NULL, + '(V42.81) Bone marrow replaced by transplant', '(V42.81) Bone marrow replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\(V42.82) Peripheral stem cells replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\(V42.82) Peripheral stem cells replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.82''', NULL, + '(V42.82) Peripheral stem cells replaced by transplant', '(V42.82) Peripheral stem cells replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\(V42.83) Pancreas replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\(V42.83) Pancreas replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.83''', NULL, + '(V42.83) Pancreas replaced by transplant', '(V42.83) Pancreas replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\(V42.84) Organ or tissue replaced by transplant, intestines\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\(V42.84) Organ or tissue replaced by transplant, intestines\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.84''', NULL, + '(V42.84) Organ or tissue replaced by transplant, intestines', '(V42.84) Organ or tissue replaced by transplant, intestines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\(V42.89) Other specified organ or tissue replaced by transplant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Organ or tissue replaced by transplant (V42)\Other specified organ or tissue replaced by transplant (V42.8)\(V42.89) Other specified organ or tissue replaced by transplant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V42.89''', NULL, + '(V42.89) Other specified organ or tissue replaced by transplant', '(V42.89) Other specified organ or tissue replaced by transplant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49''', NULL, + 'Other conditions influencing health status (V49)', 'Other conditions influencing health status (V49)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.0) Deficiencies of limbs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.0) Deficiencies of limbs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.0''', NULL, + '(V49.0) Deficiencies of limbs', '(V49.0) Deficiencies of limbs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.1) Mechanical problems with limbs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.1) Mechanical problems with limbs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.1''', NULL, + '(V49.1) Mechanical problems with limbs', '(V49.1) Mechanical problems with limbs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.2) Motor problems with limbs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.2) Motor problems with limbs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.2''', NULL, + '(V49.2) Motor problems with limbs', '(V49.2) Motor problems with limbs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.3) Sensory problems with limbs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.3) Sensory problems with limbs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.3''', NULL, + '(V49.3) Sensory problems with limbs', '(V49.3) Sensory problems with limbs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.4) Disfigurements of limbs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.4) Disfigurements of limbs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.4''', NULL, + '(V49.4) Disfigurements of limbs', '(V49.4) Disfigurements of limbs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.5) Other problems of limbs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.5) Other problems of limbs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.5''', NULL, + '(V49.5) Other problems of limbs', '(V49.5) Other problems of limbs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.9) Unspecified problems with limbs and other problems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\(V49.9) Unspecified problems with limbs and other problems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.9''', NULL, + '(V49.9) Unspecified problems with limbs and other problems', '(V49.9) Unspecified problems with limbs and other problems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.7''', NULL, + 'Lower limb amputation status (V49.7)', 'Lower limb amputation status (V49.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.70) Unspecified level lower limb amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.70) Unspecified level lower limb amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.70''', NULL, + '(V49.70) Unspecified level lower limb amputation status', '(V49.70) Unspecified level lower limb amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.71) Great toe amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.71) Great toe amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.71''', NULL, + '(V49.71) Great toe amputation status', '(V49.71) Great toe amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.72) Other toe(s) amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.72) Other toe(s) amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.72) Other toe(s''', NULL, + '(V49.72) Other toe(s) amputation status', '(V49.72) Other toe(s) amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.73) Foot amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.73) Foot amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.73''', NULL, + '(V49.73) Foot amputation status', '(V49.73) Foot amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.74) Ankle amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.74) Ankle amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.74''', NULL, + '(V49.74) Ankle amputation status', '(V49.74) Ankle amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.75) Below knee amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.75) Below knee amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.75''', NULL, + '(V49.75) Below knee amputation status', '(V49.75) Below knee amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.76) Above knee amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.76) Above knee amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.76''', NULL, + '(V49.76) Above knee amputation status', '(V49.76) Above knee amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.77) Hip amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Lower limb amputation status (V49.7)\(V49.77) Hip amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.77''', NULL, + '(V49.77) Hip amputation status', '(V49.77) Hip amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.8''', NULL, + 'Other specified conditions influencing health status (V49.8)', 'Other specified conditions influencing health status (V49.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.81) Asymptomatic postmenopausal status (age-related) (natural)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.81) Asymptomatic postmenopausal status (age-related) (natural)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V49.81) Asymptomatic postmenopausal status (age'' AND ''related) (natural''', NULL, + '(V49.81) Asymptomatic postmenopausal status (age-related) (natural)', '(V49.81) Asymptomatic postmenopausal status (age-related) (natural)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.82) Dental sealant status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.82) Dental sealant status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.82''', NULL, + '(V49.82) Dental sealant status', '(V49.82) Dental sealant status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.83) Awaiting organ transplant status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.83) Awaiting organ transplant status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.83''', NULL, + '(V49.83) Awaiting organ transplant status', '(V49.83) Awaiting organ transplant status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.84) Bed confinement status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.84) Bed confinement status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.84''', NULL, + '(V49.84) Bed confinement status', '(V49.84) Bed confinement status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.85) Dual sensory impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.85) Dual sensory impairment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.85''', NULL, + '(V49.85) Dual sensory impairment', '(V49.85) Dual sensory impairment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.86) Do not resuscitate status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.86) Do not resuscitate status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.86''', NULL, + '(V49.86) Do not resuscitate status', '(V49.86) Do not resuscitate status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.87) Physical restraints status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.87) Physical restraints status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.87''', NULL, + '(V49.87) Physical restraints status', '(V49.87) Physical restraints status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.89) Other specified conditions influencing health status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Other specified conditions influencing health status (V49.8)\(V49.89) Other specified conditions influencing health status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.89''', NULL, + '(V49.89) Other specified conditions influencing health status', '(V49.89) Other specified conditions influencing health status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.6''', NULL, + 'Status post amputation of upper limb (V49.6)', 'Status post amputation of upper limb (V49.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.60) Unspecified level upper limb amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.60) Unspecified level upper limb amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.60''', NULL, + '(V49.60) Unspecified level upper limb amputation status', '(V49.60) Unspecified level upper limb amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.61) Thumb amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.61) Thumb amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.61''', NULL, + '(V49.61) Thumb amputation status', '(V49.61) Thumb amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.62) Other finger(s) amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.62) Other finger(s) amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.62) Other finger(s''', NULL, + '(V49.62) Other finger(s) amputation status', '(V49.62) Other finger(s) amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.63) Hand amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.63) Hand amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.63''', NULL, + '(V49.63) Hand amputation status', '(V49.63) Hand amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.64) Wrist amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.64) Wrist amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.64''', NULL, + '(V49.64) Wrist amputation status', '(V49.64) Wrist amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.65) Below elbow amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.65) Below elbow amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.65''', NULL, + '(V49.65) Below elbow amputation status', '(V49.65) Below elbow amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.66) Above elbow amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.66) Above elbow amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.66''', NULL, + '(V49.66) Above elbow amputation status', '(V49.66) Above elbow amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.67) Shoulder amputation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other conditions influencing health status (V49)\Status post amputation of upper limb (V49.6)\(V49.67) Shoulder amputation status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V49.67''', NULL, + '(V49.67) Shoulder amputation status', '(V49.67) Shoulder amputation status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V46''', NULL, + 'Other dependence on machines and devices (V46)', 'Other dependence on machines and devices (V46)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\(V46.0) Dependence on aspirator\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\(V46.0) Dependence on aspirator\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V46.0''', NULL, + '(V46.0) Dependence on aspirator', '(V46.0) Dependence on aspirator', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\(V46.2) Other dependence on machines, supplemental oxygen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\(V46.2) Other dependence on machines, supplemental oxygen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V46.2''', NULL, + '(V46.2) Other dependence on machines, supplemental oxygen', '(V46.2) Other dependence on machines, supplemental oxygen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\(V46.3) Wheelchair dependence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\(V46.3) Wheelchair dependence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V46.3''', NULL, + '(V46.3) Wheelchair dependence', '(V46.3) Wheelchair dependence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\(V46.8) Dependence on other enabling machines\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\(V46.8) Dependence on other enabling machines\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V46.8''', NULL, + '(V46.8) Dependence on other enabling machines', '(V46.8) Dependence on other enabling machines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\(V46.9) Unspecified machine dependence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\(V46.9) Unspecified machine dependence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V46.9''', NULL, + '(V46.9) Unspecified machine dependence', '(V46.9) Unspecified machine dependence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V46.1''', NULL, + 'Dependence on respirator [Ventilator] (V46.1)', 'Dependence on respirator [Ventilator] (V46.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\(V46.11) Dependence on respirator, status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\(V46.11) Dependence on respirator, status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V46.11''', NULL, + '(V46.11) Dependence on respirator, status', '(V46.11) Dependence on respirator, status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\(V46.12) Encounter for respirator dependence during power failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\(V46.12) Encounter for respirator dependence during power failure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V46.12''', NULL, + '(V46.12) Encounter for respirator dependence during power failure', '(V46.12) Encounter for respirator dependence during power failure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\(V46.13) Encounter for weaning from respirator [ventilator]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\(V46.13) Encounter for weaning from respirator [ventilator]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V46.13''', NULL, + '(V46.13) Encounter for weaning from respirator [ventilator]', '(V46.13) Encounter for weaning from respirator [ventilator]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\(V46.14) Mechanical complication of respirator [ventilator]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other dependence on machines and devices (V46)\Dependence on respirator [Ventilator] (V46.1)\(V46.14) Mechanical complication of respirator [ventilator]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V46.14''', NULL, + '(V46.14) Mechanical complication of respirator [ventilator]', '(V46.14) Mechanical complication of respirator [ventilator]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45''', NULL, + 'Other postprocedural states (V45)', 'Other postprocedural states (V45)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\(V45.2) Presence of cerebrospinal fluid drainage device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\(V45.2) Presence of cerebrospinal fluid drainage device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.2''', NULL, + '(V45.2) Presence of cerebrospinal fluid drainage device', '(V45.2) Presence of cerebrospinal fluid drainage device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\(V45.3) Intestinal bypass or anastomosis status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\(V45.3) Intestinal bypass or anastomosis status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.3''', NULL, + '(V45.3) Intestinal bypass or anastomosis status', '(V45.3) Intestinal bypass or anastomosis status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\(V45.4) Arthrodesis status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\(V45.4) Arthrodesis status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.4''', NULL, + '(V45.4) Arthrodesis status', '(V45.4) Arthrodesis status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.7''', NULL, + 'Acquired absence of organ (V45.7)', 'Acquired absence of organ (V45.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.71) Acquired absence of breast and nipple\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.71) Acquired absence of breast and nipple\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.71''', NULL, + '(V45.71) Acquired absence of breast and nipple', '(V45.71) Acquired absence of breast and nipple', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.72) Acquired absence of intestine (large) (small)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.72) Acquired absence of intestine (large) (small)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.72) Acquired absence of intestine (large) (small''', NULL, + '(V45.72) Acquired absence of intestine (large) (small)', '(V45.72) Acquired absence of intestine (large) (small)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.73) Acquired absence of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.73) Acquired absence of kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.73''', NULL, + '(V45.73) Acquired absence of kidney', '(V45.73) Acquired absence of kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.74) Acquired absence of organ, other parts of urinary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.74) Acquired absence of organ, other parts of urinary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.74''', NULL, + '(V45.74) Acquired absence of organ, other parts of urinary tract', '(V45.74) Acquired absence of organ, other parts of urinary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.75) Acquired absence of organ, stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.75) Acquired absence of organ, stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.75''', NULL, + '(V45.75) Acquired absence of organ, stomach', '(V45.75) Acquired absence of organ, stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.76) Acquired absence of organ, lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.76) Acquired absence of organ, lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.76''', NULL, + '(V45.76) Acquired absence of organ, lung', '(V45.76) Acquired absence of organ, lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.77) Acquired absence of organ, genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.77) Acquired absence of organ, genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.77''', NULL, + '(V45.77) Acquired absence of organ, genital organs', '(V45.77) Acquired absence of organ, genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.78) Acquired absence of organ, eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.78) Acquired absence of organ, eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.78''', NULL, + '(V45.78) Acquired absence of organ, eye', '(V45.78) Acquired absence of organ, eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.79) Other acquired absence of organ\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Acquired absence of organ (V45.7)\(V45.79) Other acquired absence of organ\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.79''', NULL, + '(V45.79) Other acquired absence of organ', '(V45.79) Other acquired absence of organ', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.0''', NULL, + 'Cardiac pacemaker in situ (V45.0)', 'Cardiac pacemaker in situ (V45.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\(V45.00) Unspecified cardiac device in situ\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\(V45.00) Unspecified cardiac device in situ\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.00''', NULL, + '(V45.00) Unspecified cardiac device in situ', '(V45.00) Unspecified cardiac device in situ', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\(V45.01) Cardiac pacemaker in situ\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\(V45.01) Cardiac pacemaker in situ\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.01''', NULL, + '(V45.01) Cardiac pacemaker in situ', '(V45.01) Cardiac pacemaker in situ', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\(V45.02) Automatic implantable cardiac defibrillator in situ\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\(V45.02) Automatic implantable cardiac defibrillator in situ\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.02''', NULL, + '(V45.02) Automatic implantable cardiac defibrillator in situ', '(V45.02) Automatic implantable cardiac defibrillator in situ', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\(V45.09) Other specified cardiac device in situ\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Cardiac pacemaker in situ (V45.0)\(V45.09) Other specified cardiac device in situ\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.09''', NULL, + '(V45.09) Other specified cardiac device in situ', '(V45.09) Other specified cardiac device in situ', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.8''', NULL, + 'Other postprocedural status (V45.8)', 'Other postprocedural status (V45.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.81) Aortocoronary bypass status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.81) Aortocoronary bypass status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.81''', NULL, + '(V45.81) Aortocoronary bypass status', '(V45.81) Aortocoronary bypass status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.82) Percutaneous transluminal coronary angioplasty status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.82) Percutaneous transluminal coronary angioplasty status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.82''', NULL, + '(V45.82) Percutaneous transluminal coronary angioplasty status', '(V45.82) Percutaneous transluminal coronary angioplasty status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.83) Breast implant removal status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.83) Breast implant removal status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.83''', NULL, + '(V45.83) Breast implant removal status', '(V45.83) Breast implant removal status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.84) Dental restoration status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.84) Dental restoration status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.84''', NULL, + '(V45.84) Dental restoration status', '(V45.84) Dental restoration status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.85) Insulin pump status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.85) Insulin pump status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.85''', NULL, + '(V45.85) Insulin pump status', '(V45.85) Insulin pump status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.86) Bariatric surgery status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.86) Bariatric surgery status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.86''', NULL, + '(V45.86) Bariatric surgery status', '(V45.86) Bariatric surgery status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.87) Transplanted organ removal status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.87) Transplanted organ removal status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.87''', NULL, + '(V45.87) Transplanted organ removal status', '(V45.87) Transplanted organ removal status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.88) Status post administration of tPA (rtPA) in a different facility within the last 24 hours prior to admission to current facility\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.88) Status post administration of tPA (rtPA) in a different facility within the last 24 hours prior to admission to current facility\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.88) Status post administration of tPA (rtPA''', NULL, + '(V45.88) Status post administration of tPA (rtPA) in a different facility within the last 24 hours prior to admission to current facility', '(V45.88) Status post administration of tPA (rtPA) in a different facility within the last 24 hours prior to admission to current facility', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.89) Other postprocedural status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Other postprocedural status (V45.8)\(V45.89) Other postprocedural status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.89''', NULL, + '(V45.89) Other postprocedural status', '(V45.89) Other postprocedural status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Postsurgical renal dialysis status (V45.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Postsurgical renal dialysis status (V45.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.1''', NULL, + 'Postsurgical renal dialysis status (V45.1)', 'Postsurgical renal dialysis status (V45.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Postsurgical renal dialysis status (V45.1)\(V45.11) Renal dialysis status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Postsurgical renal dialysis status (V45.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Postsurgical renal dialysis status (V45.1)\(V45.11) Renal dialysis status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.11''', NULL, + '(V45.11) Renal dialysis status', '(V45.11) Renal dialysis status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Postsurgical renal dialysis status (V45.1)\(V45.12) Noncompliance with renal dialysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Postsurgical renal dialysis status (V45.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Postsurgical renal dialysis status (V45.1)\(V45.12) Noncompliance with renal dialysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.12''', NULL, + '(V45.12) Noncompliance with renal dialysis', '(V45.12) Noncompliance with renal dialysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Presence of contraceptive device (V45.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Presence of contraceptive device (V45.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.5''', NULL, + 'Presence of contraceptive device (V45.5)', 'Presence of contraceptive device (V45.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Presence of contraceptive device (V45.5)\(V45.51) Presence of intrauterine contraceptive device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Presence of contraceptive device (V45.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Presence of contraceptive device (V45.5)\(V45.51) Presence of intrauterine contraceptive device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.51''', NULL, + '(V45.51) Presence of intrauterine contraceptive device', '(V45.51) Presence of intrauterine contraceptive device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Presence of contraceptive device (V45.5)\(V45.52) Presence of subdermal contraceptive implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Presence of contraceptive device (V45.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Presence of contraceptive device (V45.5)\(V45.52) Presence of subdermal contraceptive implant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.52''', NULL, + '(V45.52) Presence of subdermal contraceptive implant', '(V45.52) Presence of subdermal contraceptive implant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Presence of contraceptive device (V45.5)\(V45.59) Presence of other contraceptive device\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Presence of contraceptive device (V45.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\Presence of contraceptive device (V45.5)\(V45.59) Presence of other contraceptive device\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.59''', NULL, + '(V45.59) Presence of other contraceptive device', '(V45.59) Presence of other contraceptive device', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\States following surgery of eye and adnexa (V45.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\States following surgery of eye and adnexa (V45.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.6''', NULL, + 'States following surgery of eye and adnexa (V45.6)', 'States following surgery of eye and adnexa (V45.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\States following surgery of eye and adnexa (V45.6)\(V45.61) Cataract extraction status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\States following surgery of eye and adnexa (V45.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\States following surgery of eye and adnexa (V45.6)\(V45.61) Cataract extraction status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.61''', NULL, + '(V45.61) Cataract extraction status', '(V45.61) Cataract extraction status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\States following surgery of eye and adnexa (V45.6)\(V45.69) Other states following surgery of eye and adnexa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\States following surgery of eye and adnexa (V45.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other postprocedural states (V45)\States following surgery of eye and adnexa (V45.6)\(V45.69) Other states following surgery of eye and adnexa\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V45.69''', NULL, + '(V45.69) Other states following surgery of eye and adnexa', '(V45.69) Other states following surgery of eye and adnexa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V47''', NULL, + 'Other problems with internal organs (V47)', 'Other problems with internal organs (V47)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.0) Deficiencies of internal organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.0) Deficiencies of internal organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V47.0''', NULL, + '(V47.0) Deficiencies of internal organs', '(V47.0) Deficiencies of internal organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.1) Mechanical and motor problems with internal organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.1) Mechanical and motor problems with internal organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V47.1''', NULL, + '(V47.1) Mechanical and motor problems with internal organs', '(V47.1) Mechanical and motor problems with internal organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.2) Other cardiorespiratory problems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.2) Other cardiorespiratory problems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V47.2''', NULL, + '(V47.2) Other cardiorespiratory problems', '(V47.2) Other cardiorespiratory problems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.3) Other digestive problems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.3) Other digestive problems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V47.3''', NULL, + '(V47.3) Other digestive problems', '(V47.3) Other digestive problems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.4) Other urinary problems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.4) Other urinary problems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V47.4''', NULL, + '(V47.4) Other urinary problems', '(V47.4) Other urinary problems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.5) Other genital problems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.5) Other genital problems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V47.5''', NULL, + '(V47.5) Other genital problems', '(V47.5) Other genital problems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.9) Unspecified problems with internal organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Other problems with internal organs (V47)\(V47.9) Unspecified problems with internal organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V47.9''', NULL, + '(V47.9) Unspecified problems with internal organs', '(V47.9) Unspecified problems with internal organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V48''', NULL, + 'Problems with head, neck, and trunk (V48)', 'Problems with head, neck, and trunk (V48)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.0) Deficiencies of head\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.0) Deficiencies of head\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V48.0''', NULL, + '(V48.0) Deficiencies of head', '(V48.0) Deficiencies of head', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.1) Deficiencies of neck and trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.1) Deficiencies of neck and trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V48.1''', NULL, + '(V48.1) Deficiencies of neck and trunk', '(V48.1) Deficiencies of neck and trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.2) Mechanical and motor problems with head\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.2) Mechanical and motor problems with head\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V48.2''', NULL, + '(V48.2) Mechanical and motor problems with head', '(V48.2) Mechanical and motor problems with head', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.3) Mechanical and motor problems with neck and trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.3) Mechanical and motor problems with neck and trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V48.3''', NULL, + '(V48.3) Mechanical and motor problems with neck and trunk', '(V48.3) Mechanical and motor problems with neck and trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.4) Sensory problem with head\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.4) Sensory problem with head\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V48.4''', NULL, + '(V48.4) Sensory problem with head', '(V48.4) Sensory problem with head', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.5) Sensory problem with neck and trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.5) Sensory problem with neck and trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V48.5''', NULL, + '(V48.5) Sensory problem with neck and trunk', '(V48.5) Sensory problem with neck and trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.6) Disfigurements of head\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.6) Disfigurements of head\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V48.6''', NULL, + '(V48.6) Disfigurements of head', '(V48.6) Disfigurements of head', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.7) Disfigurements of neck and trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.7) Disfigurements of neck and trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V48.7''', NULL, + '(V48.7) Disfigurements of neck and trunk', '(V48.7) Disfigurements of neck and trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.8) Other problems with head, neck, and trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.8) Other problems with head, neck, and trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V48.8''', NULL, + '(V48.8) Other problems with head, neck, and trunk', '(V48.8) Other problems with head, neck, and trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.9) Unspecified problem with head, neck, or trunk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with head, neck, and trunk (V48)\(V48.9) Unspecified problem with head, neck, or trunk\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V48.9''', NULL, + '(V48.9) Unspecified problem with head, neck, or trunk', '(V48.9) Unspecified problem with head, neck, or trunk', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V41''', NULL, + 'Problems with special senses and other special functions (V41)', 'Problems with special senses and other special functions (V41)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.0) Problems with sight\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.0) Problems with sight\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V41.0''', NULL, + '(V41.0) Problems with sight', '(V41.0) Problems with sight', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.1) Other eye problems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.1) Other eye problems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V41.1''', NULL, + '(V41.1) Other eye problems', '(V41.1) Other eye problems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.2) Problems with hearing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.2) Problems with hearing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V41.2''', NULL, + '(V41.2) Problems with hearing', '(V41.2) Problems with hearing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.3) Other ear problems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.3) Other ear problems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V41.3''', NULL, + '(V41.3) Other ear problems', '(V41.3) Other ear problems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.4) Problems with voice production\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.4) Problems with voice production\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V41.4''', NULL, + '(V41.4) Problems with voice production', '(V41.4) Problems with voice production', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.5) Problems with smell and taste\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.5) Problems with smell and taste\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V41.5''', NULL, + '(V41.5) Problems with smell and taste', '(V41.5) Problems with smell and taste', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.6) Problems with swallowing and mastication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.6) Problems with swallowing and mastication\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V41.6''', NULL, + '(V41.6) Problems with swallowing and mastication', '(V41.6) Problems with swallowing and mastication', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.7) Problems with sexual function\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.7) Problems with sexual function\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V41.7''', NULL, + '(V41.7) Problems with sexual function', '(V41.7) Problems with sexual function', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.8) Other problems with special functions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.8) Other problems with special functions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V41.8''', NULL, + '(V41.8) Other problems with special functions', '(V41.8) Other problems with special functions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.9) Unspecified problem with special functions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with a condition influencing their health status (v40-v49.99)\Problems with special senses and other special functions (V41)\(V41.9) Unspecified problem with special functions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V41.9''', NULL, + '(V41.9) Unspecified problem with special functions', '(V41.9) Unspecified problem with special functions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v07'' AND ''v09.99''', NULL, + 'Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)', 'Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\(V08) Asymptomatic human immunodeficiency virus [HIV] infection status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\(V08) Asymptomatic human immunodeficiency virus [HIV] infection status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V08''', NULL, + '(V08) Asymptomatic human immunodeficiency virus [HIV] infection status', '(V08) Asymptomatic human immunodeficiency virus [HIV] infection status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09''', NULL, + 'Infection with drug-resistant microorganisms (V09)', 'Infection with drug-resistant microorganisms (V09)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.0) Infection with microorganisms resistant to penicillins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.0) Infection with microorganisms resistant to penicillins\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.0''', NULL, + '(V09.0) Infection with microorganisms resistant to penicillins', '(V09.0) Infection with microorganisms resistant to penicillins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.1) Infection with microorganisms resistant to cephalosporins and other B-lactam antibiotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.1) Infection with microorganisms resistant to cephalosporins and other B-lactam antibiotics\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.1''', NULL, + '(V09.1) Infection with microorganisms resistant to cephalosporins and other B-lactam antibiotics', '(V09.1) Infection with microorganisms resistant to cephalosporins and other B-lactam antibiotics', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.2) Infection with microorganisms resistant to macrolides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.2) Infection with microorganisms resistant to macrolides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.2''', NULL, + '(V09.2) Infection with microorganisms resistant to macrolides', '(V09.2) Infection with microorganisms resistant to macrolides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.3) Infection with microorganisms resistant to tetracyclines\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.3) Infection with microorganisms resistant to tetracyclines\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.3''', NULL, + '(V09.3) Infection with microorganisms resistant to tetracyclines', '(V09.3) Infection with microorganisms resistant to tetracyclines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.4) Infection with microorganisms resistant to aminoglycosides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.4) Infection with microorganisms resistant to aminoglycosides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.4''', NULL, + '(V09.4) Infection with microorganisms resistant to aminoglycosides', '(V09.4) Infection with microorganisms resistant to aminoglycosides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.6) Infection with microorganisms resistant to sulfonamides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\(V09.6) Infection with microorganisms resistant to sulfonamides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.6''', NULL, + '(V09.6) Infection with microorganisms resistant to sulfonamides', '(V09.6) Infection with microorganisms resistant to sulfonamides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with drug-resistant microorganisms, unspecified (V09.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with drug-resistant microorganisms, unspecified (V09.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.9''', NULL, + 'Infection with drug-resistant microorganisms, unspecified (V09.9)', 'Infection with drug-resistant microorganisms, unspecified (V09.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with drug-resistant microorganisms, unspecified (V09.9)\(V09.90) Infection with drug-resistant microorganisms, unspecified, without mention of multiple drug resistance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with drug-resistant microorganisms, unspecified (V09.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with drug-resistant microorganisms, unspecified (V09.9)\(V09.90) Infection with drug-resistant microorganisms, unspecified, without mention of multiple drug resistance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.90''', NULL, + '(V09.90) Infection with drug-resistant microorganisms, unspecified, without mention of multiple drug resistance', '(V09.90) Infection with drug-resistant microorganisms, unspecified, without mention of multiple drug resistance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with drug-resistant microorganisms, unspecified (V09.9)\(V09.91) Infection with drug-resistant microorganisms, unspecified, with multiple drug resistance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with drug-resistant microorganisms, unspecified (V09.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with drug-resistant microorganisms, unspecified (V09.9)\(V09.91) Infection with drug-resistant microorganisms, unspecified, with multiple drug resistance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.91''', NULL, + '(V09.91) Infection with drug-resistant microorganisms, unspecified, with multiple drug resistance', '(V09.91) Infection with drug-resistant microorganisms, unspecified, with multiple drug resistance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.7''', NULL, + 'Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)', 'Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\(V09.70) Infection with microorganisms without mention of resistance to multiple antimycobacterial agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\(V09.70) Infection with microorganisms without mention of resistance to multiple antimycobacterial agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.70''', NULL, + '(V09.70) Infection with microorganisms without mention of resistance to multiple antimycobacterial agents', '(V09.70) Infection with microorganisms without mention of resistance to multiple antimycobacterial agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\(V09.71) Infection with microorganisms with resistance to multiple antimycobacterial agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\(V09.71) Infection with microorganisms with resistance to multiple antimycobacterial agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.71''', NULL, + '(V09.71) Infection with microorganisms with resistance to multiple antimycobacterial agents', '(V09.71) Infection with microorganisms with resistance to multiple antimycobacterial agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified drugs (V09.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified drugs (V09.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.8''', NULL, + 'Infection with microorganisms resistant to other specified drugs (V09.8)', 'Infection with microorganisms resistant to other specified drugs (V09.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified drugs (V09.8)\(V09.80) Infection with microorganisms without mention of resistance to multiple drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified drugs (V09.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified drugs (V09.8)\(V09.80) Infection with microorganisms without mention of resistance to multiple drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.80''', NULL, + '(V09.80) Infection with microorganisms without mention of resistance to multiple drugs', '(V09.80) Infection with microorganisms without mention of resistance to multiple drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified drugs (V09.8)\(V09.81) Infection with microorganisms with resistance to multiple drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified drugs (V09.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to other specified drugs (V09.8)\(V09.81) Infection with microorganisms with resistance to multiple drugs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.81''', NULL, + '(V09.81) Infection with microorganisms with resistance to multiple drugs', '(V09.81) Infection with microorganisms with resistance to multiple drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.5''', NULL, + 'Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)', 'Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\(V09.50) Infection with microorganisms without mention of resistance to multiple quinolones and fluroquinolones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\(V09.50) Infection with microorganisms without mention of resistance to multiple quinolones and fluroquinolones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.50''', NULL, + '(V09.50) Infection with microorganisms without mention of resistance to multiple quinolones and fluroquinolones', '(V09.50) Infection with microorganisms without mention of resistance to multiple quinolones and fluroquinolones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\(V09.51) Infection with microorganisms with resistance to multiple quinolones and fluroquinolones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Infection with drug-resistant microorganisms (V09)\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\(V09.51) Infection with microorganisms with resistance to multiple quinolones and fluroquinolones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V09.51''', NULL, + '(V09.51) Infection with microorganisms with resistance to multiple quinolones and fluroquinolones', '(V09.51) Infection with microorganisms with resistance to multiple quinolones and fluroquinolones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07''', NULL, + 'Need for isolation and other prophylactic or treatment measures (V07)', 'Need for isolation and other prophylactic or treatment measures (V07)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.0) Need for isolation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.0) Need for isolation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.0''', NULL, + '(V07.0) Need for isolation', '(V07.0) Need for isolation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.1) Need for desensitization to allergens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.1) Need for desensitization to allergens\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.1''', NULL, + '(V07.1) Need for desensitization to allergens', '(V07.1) Need for desensitization to allergens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.2) Need for prophylactic immunotherapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.2) Need for prophylactic immunotherapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.2''', NULL, + '(V07.2) Need for prophylactic immunotherapy', '(V07.2) Need for prophylactic immunotherapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.4) Hormone replacement therapy (postmenopausal)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.4) Hormone replacement therapy (postmenopausal)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.4) Hormone replacement therapy (postmenopausal''', NULL, + '(V07.4) Hormone replacement therapy (postmenopausal)', '(V07.4) Hormone replacement therapy (postmenopausal)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.8) Other specified prophylactic or treatment measure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.8) Other specified prophylactic or treatment measure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.8''', NULL, + '(V07.8) Other specified prophylactic or treatment measure', '(V07.8) Other specified prophylactic or treatment measure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.9) Unspecified prophylactic or treatment measure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\(V07.9) Unspecified prophylactic or treatment measure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.9''', NULL, + '(V07.9) Unspecified prophylactic or treatment measure', '(V07.9) Unspecified prophylactic or treatment measure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Need for other prophylactic chemotherapy (V07.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Need for other prophylactic chemotherapy (V07.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.3''', NULL, + 'Need for other prophylactic chemotherapy (V07.3)', 'Need for other prophylactic chemotherapy (V07.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Need for other prophylactic chemotherapy (V07.3)\(V07.31) Need for prophylactic fluoride administration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Need for other prophylactic chemotherapy (V07.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Need for other prophylactic chemotherapy (V07.3)\(V07.31) Need for prophylactic fluoride administration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.31''', NULL, + '(V07.31) Need for prophylactic fluoride administration', '(V07.31) Need for prophylactic fluoride administration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Need for other prophylactic chemotherapy (V07.3)\(V07.39) Need for other prophylactic chemotherapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Need for other prophylactic chemotherapy (V07.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Need for other prophylactic chemotherapy (V07.3)\(V07.39) Need for other prophylactic chemotherapy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.39''', NULL, + '(V07.39) Need for other prophylactic chemotherapy', '(V07.39) Need for other prophylactic chemotherapy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.5''', NULL, + 'Use of agents affecting estrogen receptors and estrogen levels (V07.5)', 'Use of agents affecting estrogen receptors and estrogen levels (V07.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\(V07.51) Use of selective estrogen receptor modulators (SERMs)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\(V07.51) Use of selective estrogen receptor modulators (SERMs)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.51) Use of selective estrogen receptor modulators (SERMs''', NULL, + '(V07.51) Use of selective estrogen receptor modulators (SERMs)', '(V07.51) Use of selective estrogen receptor modulators (SERMs)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\(V07.52) Use of aromatase inhibitors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\(V07.52) Use of aromatase inhibitors\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.52''', NULL, + '(V07.52) Use of aromatase inhibitors', '(V07.52) Use of aromatase inhibitors', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\(V07.59) Use of other agents affecting estrogen receptors and estrogen levels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\Need for isolation and other prophylactic or treatment measures (V07)\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\(V07.59) Use of other agents affecting estrogen receptors and estrogen levels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V07.59''', NULL, + '(V07.59) Use of other agents affecting estrogen receptors and estrogen levels', '(V07.59) Use of other agents affecting estrogen receptors and estrogen levels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v01'' AND ''v06.99''', NULL, + 'Persons with potential health hazards related to communicable diseases (v01-v06.99)', 'Persons with potential health hazards related to communicable diseases (v01-v06.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02''', NULL, + 'Carrier or suspected carrier of infectious diseases (V02)', 'Carrier or suspected carrier of infectious diseases (V02)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.0) Carrier or suspected carrier of cholera\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.0) Carrier or suspected carrier of cholera\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.0''', NULL, + '(V02.0) Carrier or suspected carrier of cholera', '(V02.0) Carrier or suspected carrier of cholera', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.1) Carrier or suspected carrier of typhoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.1) Carrier or suspected carrier of typhoid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.1''', NULL, + '(V02.1) Carrier or suspected carrier of typhoid', '(V02.1) Carrier or suspected carrier of typhoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.2) Carrier or suspected carrier of amebiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.2) Carrier or suspected carrier of amebiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.2''', NULL, + '(V02.2) Carrier or suspected carrier of amebiasis', '(V02.2) Carrier or suspected carrier of amebiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.3) Carrier or suspected carrier of other gastrointestinal pathogens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.3) Carrier or suspected carrier of other gastrointestinal pathogens\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.3''', NULL, + '(V02.3) Carrier or suspected carrier of other gastrointestinal pathogens', '(V02.3) Carrier or suspected carrier of other gastrointestinal pathogens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.4) Carrier or suspected carrier of diphtheria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.4) Carrier or suspected carrier of diphtheria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.4''', NULL, + '(V02.4) Carrier or suspected carrier of diphtheria', '(V02.4) Carrier or suspected carrier of diphtheria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.7) Carrier or suspected carrier of gonorrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.7) Carrier or suspected carrier of gonorrhea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.7''', NULL, + '(V02.7) Carrier or suspected carrier of gonorrhea', '(V02.7) Carrier or suspected carrier of gonorrhea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.8) Carrier or suspected carrier of other venereal diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.8) Carrier or suspected carrier of other venereal diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.8''', NULL, + '(V02.8) Carrier or suspected carrier of other venereal diseases', '(V02.8) Carrier or suspected carrier of other venereal diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.9) Carrier or suspected carrier of other specified infectious organism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\(V02.9) Carrier or suspected carrier of other specified infectious organism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.9''', NULL, + '(V02.9) Carrier or suspected carrier of other specified infectious organism', '(V02.9) Carrier or suspected carrier of other specified infectious organism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.5''', NULL, + 'Carrier or suspected carrier of other specified bacterial diseases (V02.5)', 'Carrier or suspected carrier of other specified bacterial diseases (V02.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\(V02.51) Carrier or suspected carrier of group B streptococcus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\(V02.51) Carrier or suspected carrier of group B streptococcus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.51''', NULL, + '(V02.51) Carrier or suspected carrier of group B streptococcus', '(V02.51) Carrier or suspected carrier of group B streptococcus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\(V02.52) Carrier or suspected carrier of other streptococcus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\(V02.52) Carrier or suspected carrier of other streptococcus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.52''', NULL, + '(V02.52) Carrier or suspected carrier of other streptococcus', '(V02.52) Carrier or suspected carrier of other streptococcus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\(V02.53) Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\(V02.53) Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.53''', NULL, + '(V02.53) Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus', '(V02.53) Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\(V02.54) Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\(V02.54) Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.54''', NULL, + '(V02.54) Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus', '(V02.54) Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\(V02.59) Carrier or suspected carrier of other specified bacterial diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\(V02.59) Carrier or suspected carrier of other specified bacterial diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.59''', NULL, + '(V02.59) Carrier or suspected carrier of other specified bacterial diseases', '(V02.59) Carrier or suspected carrier of other specified bacterial diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.6''', NULL, + 'Carrier or suspected carrier of viral hepatitis (V02.6)', 'Carrier or suspected carrier of viral hepatitis (V02.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\(V02.60) Viral hepatitis carrier, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\(V02.60) Viral hepatitis carrier, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.60''', NULL, + '(V02.60) Viral hepatitis carrier, unspecified', '(V02.60) Viral hepatitis carrier, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\(V02.61) Hepatitis B carrier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\(V02.61) Hepatitis B carrier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.61''', NULL, + '(V02.61) Hepatitis B carrier', '(V02.61) Hepatitis B carrier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\(V02.62) Hepatitis C carrier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\(V02.62) Hepatitis C carrier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.62''', NULL, + '(V02.62) Hepatitis C carrier', '(V02.62) Hepatitis C carrier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\(V02.69) Other viral hepatitis carrier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Carrier or suspected carrier of infectious diseases (V02)\Carrier or suspected carrier of viral hepatitis (V02.6)\(V02.69) Other viral hepatitis carrier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V02.69''', NULL, + '(V02.69) Other viral hepatitis carrier', '(V02.69) Other viral hepatitis carrier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01''', NULL, + 'Contact with or exposure to communicable diseases (V01)', 'Contact with or exposure to communicable diseases (V01)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.0) Contact with or exposure to cholera\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.0) Contact with or exposure to cholera\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.0''', NULL, + '(V01.0) Contact with or exposure to cholera', '(V01.0) Contact with or exposure to cholera', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.1) Contact with or exposure to tuberculosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.1) Contact with or exposure to tuberculosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.1''', NULL, + '(V01.1) Contact with or exposure to tuberculosis', '(V01.1) Contact with or exposure to tuberculosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.2) Contact with or exposure to poliomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.2) Contact with or exposure to poliomyelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.2''', NULL, + '(V01.2) Contact with or exposure to poliomyelitis', '(V01.2) Contact with or exposure to poliomyelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.3) Contact with or exposure to smallpox\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.3) Contact with or exposure to smallpox\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.3''', NULL, + '(V01.3) Contact with or exposure to smallpox', '(V01.3) Contact with or exposure to smallpox', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.4) Contact with or exposure to rubella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.4) Contact with or exposure to rubella\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.4''', NULL, + '(V01.4) Contact with or exposure to rubella', '(V01.4) Contact with or exposure to rubella', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.5) Contact with or exposure to rabies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.5) Contact with or exposure to rabies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.5''', NULL, + '(V01.5) Contact with or exposure to rabies', '(V01.5) Contact with or exposure to rabies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.6) Contact with or exposure to venereal diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.6) Contact with or exposure to venereal diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.6''', NULL, + '(V01.6) Contact with or exposure to venereal diseases', '(V01.6) Contact with or exposure to venereal diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.9) Contact with or exposure to unspecified communicable disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\(V01.9) Contact with or exposure to unspecified communicable disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.9''', NULL, + '(V01.9) Contact with or exposure to unspecified communicable disease', '(V01.9) Contact with or exposure to unspecified communicable disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.8''', NULL, + 'Contact with or exposure to other communicable diseases (V01.8)', 'Contact with or exposure to other communicable diseases (V01.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\(V01.81) Contact with or exposure to anthrax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\(V01.81) Contact with or exposure to anthrax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.81''', NULL, + '(V01.81) Contact with or exposure to anthrax', '(V01.81) Contact with or exposure to anthrax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\(V01.82) Exposure to SARS-associated coronavirus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\(V01.82) Exposure to SARS-associated coronavirus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.82''', NULL, + '(V01.82) Exposure to SARS-associated coronavirus', '(V01.82) Exposure to SARS-associated coronavirus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\(V01.83) Contact with or exposure to escherichia coli (E. coli)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\(V01.83) Contact with or exposure to escherichia coli (E. coli)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.83) Contact with or exposure to escherichia coli (E. coli''', NULL, + '(V01.83) Contact with or exposure to escherichia coli (E. coli)', '(V01.83) Contact with or exposure to escherichia coli (E. coli)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\(V01.84) Contact with or exposure to meningococcus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\(V01.84) Contact with or exposure to meningococcus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.84''', NULL, + '(V01.84) Contact with or exposure to meningococcus', '(V01.84) Contact with or exposure to meningococcus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\(V01.89) Contact with or exposure to other communicable diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other communicable diseases (V01.8)\(V01.89) Contact with or exposure to other communicable diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.89''', NULL, + '(V01.89) Contact with or exposure to other communicable diseases', '(V01.89) Contact with or exposure to other communicable diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other viral diseases (V01.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other viral diseases (V01.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.7''', NULL, + 'Contact with or exposure to other viral diseases (V01.7)', 'Contact with or exposure to other viral diseases (V01.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other viral diseases (V01.7)\(V01.71) Contact with or exposure to varicella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other viral diseases (V01.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other viral diseases (V01.7)\(V01.71) Contact with or exposure to varicella\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.71''', NULL, + '(V01.71) Contact with or exposure to varicella', '(V01.71) Contact with or exposure to varicella', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other viral diseases (V01.7)\(V01.79) Contact with or exposure to other viral diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other viral diseases (V01.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Contact with or exposure to communicable diseases (V01)\Contact with or exposure to other viral diseases (V01.7)\(V01.79) Contact with or exposure to other viral diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V01.79''', NULL, + '(V01.79) Contact with or exposure to other viral diseases', '(V01.79) Contact with or exposure to other viral diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03''', NULL, + 'Need for prophylactic vaccination and inoculation against bacterial diseases (V03)', 'Need for prophylactic vaccination and inoculation against bacterial diseases (V03)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.0) Need for prophylactic vaccination and inoculation against cholera alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.0) Need for prophylactic vaccination and inoculation against cholera alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.0''', NULL, + '(V03.0) Need for prophylactic vaccination and inoculation against cholera alone', '(V03.0) Need for prophylactic vaccination and inoculation against cholera alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.1) Need for prophylactic vaccination and inoculation against typhoid-paratyphoid alone [TAB]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.1) Need for prophylactic vaccination and inoculation against typhoid-paratyphoid alone [TAB]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.1''', NULL, + '(V03.1) Need for prophylactic vaccination and inoculation against typhoid-paratyphoid alone [TAB]', '(V03.1) Need for prophylactic vaccination and inoculation against typhoid-paratyphoid alone [TAB]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.2) Need for prophylactic vaccination and inoculation against tuberculosis [BCG]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.2) Need for prophylactic vaccination and inoculation against tuberculosis [BCG]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.2''', NULL, + '(V03.2) Need for prophylactic vaccination and inoculation against tuberculosis [BCG]', '(V03.2) Need for prophylactic vaccination and inoculation against tuberculosis [BCG]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.3) Need for prophylactic vaccination and inoculation against plague\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.3) Need for prophylactic vaccination and inoculation against plague\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.3''', NULL, + '(V03.3) Need for prophylactic vaccination and inoculation against plague', '(V03.3) Need for prophylactic vaccination and inoculation against plague', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.4) Need for prophylactic vaccination and inoculation against tularemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.4) Need for prophylactic vaccination and inoculation against tularemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.4''', NULL, + '(V03.4) Need for prophylactic vaccination and inoculation against tularemia', '(V03.4) Need for prophylactic vaccination and inoculation against tularemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.5) Need for prophylactic vaccination and inoculation against diphtheria alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.5) Need for prophylactic vaccination and inoculation against diphtheria alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.5''', NULL, + '(V03.5) Need for prophylactic vaccination and inoculation against diphtheria alone', '(V03.5) Need for prophylactic vaccination and inoculation against diphtheria alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.6) Need for prophylactic vaccination and inoculation against pertussis alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.6) Need for prophylactic vaccination and inoculation against pertussis alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.6''', NULL, + '(V03.6) Need for prophylactic vaccination and inoculation against pertussis alone', '(V03.6) Need for prophylactic vaccination and inoculation against pertussis alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.7) Need for prophylactic vaccination and inoculation against tetanus toxoid alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.7) Need for prophylactic vaccination and inoculation against tetanus toxoid alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.7''', NULL, + '(V03.7) Need for prophylactic vaccination and inoculation against tetanus toxoid alone', '(V03.7) Need for prophylactic vaccination and inoculation against tetanus toxoid alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.9) Need for prophylactic vaccination and inoculation against unspecified single bacterial disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\(V03.9) Need for prophylactic vaccination and inoculation against unspecified single bacterial disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.9''', NULL, + '(V03.9) Need for prophylactic vaccination and inoculation against unspecified single bacterial disease', '(V03.9) Need for prophylactic vaccination and inoculation against unspecified single bacterial disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\Need for other specified vaccinations against single bacterial diseases (V03.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\Need for other specified vaccinations against single bacterial diseases (V03.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.8''', NULL, + 'Need for other specified vaccinations against single bacterial diseases (V03.8)', 'Need for other specified vaccinations against single bacterial diseases (V03.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\Need for other specified vaccinations against single bacterial diseases (V03.8)\(V03.81) Other specified vaccinations against hemophilus influenza, type B [Hib]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\Need for other specified vaccinations against single bacterial diseases (V03.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\Need for other specified vaccinations against single bacterial diseases (V03.8)\(V03.81) Other specified vaccinations against hemophilus influenza, type B [Hib]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.81''', NULL, + '(V03.81) Other specified vaccinations against hemophilus influenza, type B [Hib]', '(V03.81) Other specified vaccinations against hemophilus influenza, type B [Hib]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\Need for other specified vaccinations against single bacterial diseases (V03.8)\(V03.82) Other specified vaccinations against streptococcus pneumoniae [pneumococcus]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\Need for other specified vaccinations against single bacterial diseases (V03.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\Need for other specified vaccinations against single bacterial diseases (V03.8)\(V03.82) Other specified vaccinations against streptococcus pneumoniae [pneumococcus]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.82''', NULL, + '(V03.82) Other specified vaccinations against streptococcus pneumoniae [pneumococcus]', '(V03.82) Other specified vaccinations against streptococcus pneumoniae [pneumococcus]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\Need for other specified vaccinations against single bacterial diseases (V03.8)\(V03.89) Other specified vaccination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\Need for other specified vaccinations against single bacterial diseases (V03.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\Need for other specified vaccinations against single bacterial diseases (V03.8)\(V03.89) Other specified vaccination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V03.89''', NULL, + '(V03.89) Other specified vaccination', '(V03.89) Other specified vaccination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04''', NULL, + 'Need for prophylactic vaccination and inoculation against certain diseases (V04)', 'Need for prophylactic vaccination and inoculation against certain diseases (V04)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.0) Need for prophylactic vaccination and inoculation against poliomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.0) Need for prophylactic vaccination and inoculation against poliomyelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.0''', NULL, + '(V04.0) Need for prophylactic vaccination and inoculation against poliomyelitis', '(V04.0) Need for prophylactic vaccination and inoculation against poliomyelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.1) Need for prophylactic vaccination and inoculation against smallpox\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.1) Need for prophylactic vaccination and inoculation against smallpox\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.1''', NULL, + '(V04.1) Need for prophylactic vaccination and inoculation against smallpox', '(V04.1) Need for prophylactic vaccination and inoculation against smallpox', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.2) Need for prophylactic vaccination and inoculation against measles alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.2) Need for prophylactic vaccination and inoculation against measles alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.2''', NULL, + '(V04.2) Need for prophylactic vaccination and inoculation against measles alone', '(V04.2) Need for prophylactic vaccination and inoculation against measles alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.3) Need for prophylactic vaccination and inoculation against rubella alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.3) Need for prophylactic vaccination and inoculation against rubella alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.3''', NULL, + '(V04.3) Need for prophylactic vaccination and inoculation against rubella alone', '(V04.3) Need for prophylactic vaccination and inoculation against rubella alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.4) Need for prophylactic vaccination and inoculation against yellow fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.4) Need for prophylactic vaccination and inoculation against yellow fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.4''', NULL, + '(V04.4) Need for prophylactic vaccination and inoculation against yellow fever', '(V04.4) Need for prophylactic vaccination and inoculation against yellow fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.5) Need for prophylactic vaccination and inoculation against rabies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.5) Need for prophylactic vaccination and inoculation against rabies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.5''', NULL, + '(V04.5) Need for prophylactic vaccination and inoculation against rabies', '(V04.5) Need for prophylactic vaccination and inoculation against rabies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.6) Need for prophylactic vaccination and inoculation against mumps alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.6) Need for prophylactic vaccination and inoculation against mumps alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.6''', NULL, + '(V04.6) Need for prophylactic vaccination and inoculation against mumps alone', '(V04.6) Need for prophylactic vaccination and inoculation against mumps alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.7) Need for prophylactic vaccination and inoculation against common cold\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\(V04.7) Need for prophylactic vaccination and inoculation against common cold\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.7''', NULL, + '(V04.7) Need for prophylactic vaccination and inoculation against common cold', '(V04.7) Need for prophylactic vaccination and inoculation against common cold', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.8''', NULL, + 'Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)', 'Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\(V04.81) Need for prophylactic vaccination and inoculation against influenza\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\(V04.81) Need for prophylactic vaccination and inoculation against influenza\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.81''', NULL, + '(V04.81) Need for prophylactic vaccination and inoculation against influenza', '(V04.81) Need for prophylactic vaccination and inoculation against influenza', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\(V04.82) Need for prophylactic vaccination and inoculation against respiratory syncytial virus (RSV)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\(V04.82) Need for prophylactic vaccination and inoculation against respiratory syncytial virus (RSV)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.82) Need for prophylactic vaccination and inoculation against respiratory syncytial virus (RSV''', NULL, + '(V04.82) Need for prophylactic vaccination and inoculation against respiratory syncytial virus (RSV)', '(V04.82) Need for prophylactic vaccination and inoculation against respiratory syncytial virus (RSV)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\(V04.89) Need for prophylactic vaccination and inoculation against other viral diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against certain diseases (V04)\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\(V04.89) Need for prophylactic vaccination and inoculation against other viral diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V04.89''', NULL, + '(V04.89) Need for prophylactic vaccination and inoculation against other viral diseases', '(V04.89) Need for prophylactic vaccination and inoculation against other viral diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V06''', NULL, + 'Need for prophylactic vaccination and inoculation against combinations of diseases (V06)', 'Need for prophylactic vaccination and inoculation against combinations of diseases (V06)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.0) Need for prophylactic vaccination and inoculation against cholera with typhoid-paratyphoid [cholera + TAB]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.0) Need for prophylactic vaccination and inoculation against cholera with typhoid-paratyphoid [cholera + TAB]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V06.0''', NULL, + '(V06.0) Need for prophylactic vaccination and inoculation against cholera with typhoid-paratyphoid [cholera + TAB]', '(V06.0) Need for prophylactic vaccination and inoculation against cholera with typhoid-paratyphoid [cholera + TAB]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.1) Need for prophylactic vaccination and inoculation against diphtheria-tetanus-pertussis, combined [DTP] [DTaP]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.1) Need for prophylactic vaccination and inoculation against diphtheria-tetanus-pertussis, combined [DTP] [DTaP]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V06.1''', NULL, + '(V06.1) Need for prophylactic vaccination and inoculation against diphtheria-tetanus-pertussis, combined [DTP] [DTaP]', '(V06.1) Need for prophylactic vaccination and inoculation against diphtheria-tetanus-pertussis, combined [DTP] [DTaP]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.2) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with typhoid-paratyphoid (DTP + TAB)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.2) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with typhoid-paratyphoid (DTP + TAB)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V06.2) Need for prophylactic vaccination and inoculation against diptheria'' AND ''tetanus'' AND '' pertussis with typhoid'' AND ''paratyphoid (DTP + TAB''', NULL, + '(V06.2) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with typhoid-paratyphoid (DTP + TAB)', '(V06.2) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with typhoid-paratyphoid (DTP + TAB)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.3) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with poliomyelitis [DTP + polio]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.3) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with poliomyelitis [DTP + polio]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V06.3''', NULL, + '(V06.3) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with poliomyelitis [DTP + polio]', '(V06.3) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with poliomyelitis [DTP + polio]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.4) Need for prophylactic vaccination and inoculation against measles-mumps-rubella (MMR)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.4) Need for prophylactic vaccination and inoculation against measles-mumps-rubella (MMR)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V06.4) Need for prophylactic vaccination and inoculation against measles'' AND ''mumps'' AND ''rubella (MMR''', NULL, + '(V06.4) Need for prophylactic vaccination and inoculation against measles-mumps-rubella (MMR)', '(V06.4) Need for prophylactic vaccination and inoculation against measles-mumps-rubella (MMR)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.5) Need for prophylactic vaccination and inoculation against tetanus-diphtheria [Td] (DT)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.5) Need for prophylactic vaccination and inoculation against tetanus-diphtheria [Td] (DT)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''V06.5) Need for prophylactic vaccination and inoculation against tetanus'' AND ''diphtheria [Td] (DT''', NULL, + '(V06.5) Need for prophylactic vaccination and inoculation against tetanus-diphtheria [Td] (DT)', '(V06.5) Need for prophylactic vaccination and inoculation against tetanus-diphtheria [Td] (DT)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.6) Need for prophylactic vaccination and inoculation against streptococcus pneumoniae [pneumococcus] and influenza\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.6) Need for prophylactic vaccination and inoculation against streptococcus pneumoniae [pneumococcus] and influenza\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V06.6''', NULL, + '(V06.6) Need for prophylactic vaccination and inoculation against streptococcus pneumoniae [pneumococcus] and influenza', '(V06.6) Need for prophylactic vaccination and inoculation against streptococcus pneumoniae [pneumococcus] and influenza', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.8) Need for prophylactic vaccination and inoculation against other combinations of diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.8) Need for prophylactic vaccination and inoculation against other combinations of diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V06.8''', NULL, + '(V06.8) Need for prophylactic vaccination and inoculation against other combinations of diseases', '(V06.8) Need for prophylactic vaccination and inoculation against other combinations of diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.9) Unspecified combined vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\(V06.9) Unspecified combined vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V06.9''', NULL, + '(V06.9) Unspecified combined vaccine', '(V06.9) Unspecified combined vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V05''', NULL, + 'Need for prophylactic vaccination and inoculation against single diseases (V05)', 'Need for prophylactic vaccination and inoculation against single diseases (V05)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.0) Need for prophylactic vaccination and inoculation against arthropod-borne viral encephalitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.0) Need for prophylactic vaccination and inoculation against arthropod-borne viral encephalitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V05.0''', NULL, + '(V05.0) Need for prophylactic vaccination and inoculation against arthropod-borne viral encephalitis', '(V05.0) Need for prophylactic vaccination and inoculation against arthropod-borne viral encephalitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.1) Need for prophylactic vaccination and inoculation against other arthropod-borne viral diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.1) Need for prophylactic vaccination and inoculation against other arthropod-borne viral diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V05.1''', NULL, + '(V05.1) Need for prophylactic vaccination and inoculation against other arthropod-borne viral diseases', '(V05.1) Need for prophylactic vaccination and inoculation against other arthropod-borne viral diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.2) Need for prophylactic vaccination and inoculation against leishmaniasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.2) Need for prophylactic vaccination and inoculation against leishmaniasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V05.2''', NULL, + '(V05.2) Need for prophylactic vaccination and inoculation against leishmaniasis', '(V05.2) Need for prophylactic vaccination and inoculation against leishmaniasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.3) Need for prophylactic vaccination and inoculation against viral hepatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.3) Need for prophylactic vaccination and inoculation against viral hepatitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V05.3''', NULL, + '(V05.3) Need for prophylactic vaccination and inoculation against viral hepatitis', '(V05.3) Need for prophylactic vaccination and inoculation against viral hepatitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.4) Need for prophylactic vaccination and inoculation against varicella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.4) Need for prophylactic vaccination and inoculation against varicella\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V05.4''', NULL, + '(V05.4) Need for prophylactic vaccination and inoculation against varicella', '(V05.4) Need for prophylactic vaccination and inoculation against varicella', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.8) Need for prophylactic vaccination and inoculation against other specified disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.8) Need for prophylactic vaccination and inoculation against other specified disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V05.8''', NULL, + '(V05.8) Need for prophylactic vaccination and inoculation against other specified disease', '(V05.8) Need for prophylactic vaccination and inoculation against other specified disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.9) Need for prophylactic vaccination and inoculation against unspecified single disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to communicable diseases (v01-v06.99)\Need for prophylactic vaccination and inoculation against single diseases (V05)\(V05.9) Need for prophylactic vaccination and inoculation against unspecified single disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V05.9''', NULL, + '(V05.9) Need for prophylactic vaccination and inoculation against unspecified single disease', '(V05.9) Need for prophylactic vaccination and inoculation against unspecified single disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v10'' AND ''v19.99''', NULL, + 'Persons with potential health hazards related to personal and family history (v10-v19.99)', 'Persons with potential health hazards related to personal and family history (v10-v19.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17''', NULL, + 'Family history of certain chronic disabling diseases (V17)', 'Family history of certain chronic disabling diseases (V17)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.0) Family history of psychiatric condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.0) Family history of psychiatric condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.0''', NULL, + '(V17.0) Family history of psychiatric condition', '(V17.0) Family history of psychiatric condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.1) Family history of stroke (cerebrovascular)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.1) Family history of stroke (cerebrovascular)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.1) Family history of stroke (cerebrovascular''', NULL, + '(V17.1) Family history of stroke (cerebrovascular)', '(V17.1) Family history of stroke (cerebrovascular)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.2) Family history of other neurological diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.2) Family history of other neurological diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.2''', NULL, + '(V17.2) Family history of other neurological diseases', '(V17.2) Family history of other neurological diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.3) Family history of ischemic heart disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.3) Family history of ischemic heart disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.3''', NULL, + '(V17.3) Family history of ischemic heart disease', '(V17.3) Family history of ischemic heart disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.5) Family history of asthma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.5) Family history of asthma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.5''', NULL, + '(V17.5) Family history of asthma', '(V17.5) Family history of asthma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.6) Family history of other chronic respiratory conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.6) Family history of other chronic respiratory conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.6''', NULL, + '(V17.6) Family history of other chronic respiratory conditions', '(V17.6) Family history of other chronic respiratory conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.7) Family history of arthritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\(V17.7) Family history of arthritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.7''', NULL, + '(V17.7) Family history of arthritis', '(V17.7) Family history of arthritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other cardiovascular diseases (V17.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other cardiovascular diseases (V17.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.4''', NULL, + 'Family history of other cardiovascular diseases (V17.4)', 'Family history of other cardiovascular diseases (V17.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other cardiovascular diseases (V17.4)\(V17.41) Family history of sudden cardiac death (SCD)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other cardiovascular diseases (V17.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other cardiovascular diseases (V17.4)\(V17.41) Family history of sudden cardiac death (SCD)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.41) Family history of sudden cardiac death (SCD''', NULL, + '(V17.41) Family history of sudden cardiac death (SCD)', '(V17.41) Family history of sudden cardiac death (SCD)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other cardiovascular diseases (V17.4)\(V17.49) Family history of other cardiovascular diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other cardiovascular diseases (V17.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other cardiovascular diseases (V17.4)\(V17.49) Family history of other cardiovascular diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.49''', NULL, + '(V17.49) Family history of other cardiovascular diseases', '(V17.49) Family history of other cardiovascular diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other musculoskeletal diseases (V17.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other musculoskeletal diseases (V17.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.8''', NULL, + 'Family history of other musculoskeletal diseases (V17.8)', 'Family history of other musculoskeletal diseases (V17.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other musculoskeletal diseases (V17.8)\(V17.81) Family history of osteoporosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other musculoskeletal diseases (V17.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other musculoskeletal diseases (V17.8)\(V17.81) Family history of osteoporosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.81''', NULL, + '(V17.81) Family history of osteoporosis', '(V17.81) Family history of osteoporosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other musculoskeletal diseases (V17.8)\(V17.89) Family history of other musculoskeletal diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other musculoskeletal diseases (V17.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain chronic disabling diseases (V17)\Family history of other musculoskeletal diseases (V17.8)\(V17.89) Family history of other musculoskeletal diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V17.89''', NULL, + '(V17.89) Family history of other musculoskeletal diseases', '(V17.89) Family history of other musculoskeletal diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18''', NULL, + 'Family history of certain other specific conditions (V18)', 'Family history of certain other specific conditions (V18)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.0) Family history of diabetes mellitus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.0) Family history of diabetes mellitus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.0''', NULL, + '(V18.0) Family history of diabetes mellitus', '(V18.0) Family history of diabetes mellitus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.2) Family history of anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.2) Family history of anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.2''', NULL, + '(V18.2) Family history of anemia', '(V18.2) Family history of anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.3) Family history of other blood disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.3) Family history of other blood disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.3''', NULL, + '(V18.3) Family history of other blood disorders', '(V18.3) Family history of other blood disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.4) Family history of intellectual disabilities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.4) Family history of intellectual disabilities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.4''', NULL, + '(V18.4) Family history of intellectual disabilities', '(V18.4) Family history of intellectual disabilities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.7) Family history of other genitourinary diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.7) Family history of other genitourinary diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.7''', NULL, + '(V18.7) Family history of other genitourinary diseases', '(V18.7) Family history of other genitourinary diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.8) Family history of infectious and parasitic diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.8) Family history of infectious and parasitic diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.8''', NULL, + '(V18.8) Family history of infectious and parasitic diseases', '(V18.8) Family history of infectious and parasitic diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.9) Family history of genetic disease carrier\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\(V18.9) Family history of genetic disease carrier\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.9''', NULL, + '(V18.9) Family history of genetic disease carrier', '(V18.9) Family history of genetic disease carrier', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of digestive disorders (V18.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of digestive disorders (V18.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.5''', NULL, + 'Family history of digestive disorders (V18.5)', 'Family history of digestive disorders (V18.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of digestive disorders (V18.5)\(V18.51) Family history of colonic polyps\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of digestive disorders (V18.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of digestive disorders (V18.5)\(V18.51) Family history of colonic polyps\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.51''', NULL, + '(V18.51) Family history of colonic polyps', '(V18.51) Family history of colonic polyps', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of digestive disorders (V18.5)\(V18.59) Family history of other digestive disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of digestive disorders (V18.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of digestive disorders (V18.5)\(V18.59) Family history of other digestive disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.59''', NULL, + '(V18.59) Family history of other digestive disorders', '(V18.59) Family history of other digestive disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of kidney diseases (V18.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of kidney diseases (V18.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.6''', NULL, + 'Family history of kidney diseases (V18.6)', 'Family history of kidney diseases (V18.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of kidney diseases (V18.6)\(V18.61) Family history of polycystic kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of kidney diseases (V18.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of kidney diseases (V18.6)\(V18.61) Family history of polycystic kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.61''', NULL, + '(V18.61) Family history of polycystic kidney', '(V18.61) Family history of polycystic kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of kidney diseases (V18.6)\(V18.69) Family history of other kidney diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of kidney diseases (V18.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of kidney diseases (V18.6)\(V18.69) Family history of other kidney diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.69''', NULL, + '(V18.69) Family history of other kidney diseases', '(V18.69) Family history of other kidney diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of other endocrine and metabolic diseases (V18.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of other endocrine and metabolic diseases (V18.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.1''', NULL, + 'Family history of other endocrine and metabolic diseases (V18.1)', 'Family history of other endocrine and metabolic diseases (V18.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of other endocrine and metabolic diseases (V18.1)\(V18.11) Family history of multiple endocrine neoplasia [MEN] syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of other endocrine and metabolic diseases (V18.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of other endocrine and metabolic diseases (V18.1)\(V18.11) Family history of multiple endocrine neoplasia [MEN] syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.11''', NULL, + '(V18.11) Family history of multiple endocrine neoplasia [MEN] syndrome', '(V18.11) Family history of multiple endocrine neoplasia [MEN] syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of other endocrine and metabolic diseases (V18.1)\(V18.19) Family history of other endocrine and metabolic diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of other endocrine and metabolic diseases (V18.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of certain other specific conditions (V18)\Family history of other endocrine and metabolic diseases (V18.1)\(V18.19) Family history of other endocrine and metabolic diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V18.19''', NULL, + '(V18.19) Family history of other endocrine and metabolic diseases', '(V18.19) Family history of other endocrine and metabolic diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16''', NULL, + 'Family history of malignant neoplasm (V16)', 'Family history of malignant neoplasm (V16)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.0) Family history of malignant neoplasm of gastrointestinal tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.0) Family history of malignant neoplasm of gastrointestinal tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.0''', NULL, + '(V16.0) Family history of malignant neoplasm of gastrointestinal tract', '(V16.0) Family history of malignant neoplasm of gastrointestinal tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.1) Family history of malignant neoplasm of trachea, bronchus, and lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.1) Family history of malignant neoplasm of trachea, bronchus, and lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.1''', NULL, + '(V16.1) Family history of malignant neoplasm of trachea, bronchus, and lung', '(V16.1) Family history of malignant neoplasm of trachea, bronchus, and lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.2) Family history of malignant neoplasm of other respiratory and intrathoracic organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.2) Family history of malignant neoplasm of other respiratory and intrathoracic organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.2''', NULL, + '(V16.2) Family history of malignant neoplasm of other respiratory and intrathoracic organs', '(V16.2) Family history of malignant neoplasm of other respiratory and intrathoracic organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.3) Family history of malignant neoplasm of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.3) Family history of malignant neoplasm of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.3''', NULL, + '(V16.3) Family history of malignant neoplasm of breast', '(V16.3) Family history of malignant neoplasm of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.6) Family history of leukemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.6) Family history of leukemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.6''', NULL, + '(V16.6) Family history of leukemia', '(V16.6) Family history of leukemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.7) Family history of other lymphatic and hematopoietic neoplasms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.7) Family history of other lymphatic and hematopoietic neoplasms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.7''', NULL, + '(V16.7) Family history of other lymphatic and hematopoietic neoplasms', '(V16.7) Family history of other lymphatic and hematopoietic neoplasms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.8) Family history of other specified malignant neoplasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.8) Family history of other specified malignant neoplasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.8''', NULL, + '(V16.8) Family history of other specified malignant neoplasm', '(V16.8) Family history of other specified malignant neoplasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.9) Family history of unspecified malignant neoplasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\(V16.9) Family history of unspecified malignant neoplasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.9''', NULL, + '(V16.9) Family history of unspecified malignant neoplasm', '(V16.9) Family history of unspecified malignant neoplasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.4''', NULL, + 'Family history of malignant neoplasm of genital organs (V16.4)', 'Family history of malignant neoplasm of genital organs (V16.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\(V16.40) Family history of malignant neoplasm of genital organ, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\(V16.40) Family history of malignant neoplasm of genital organ, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.40''', NULL, + '(V16.40) Family history of malignant neoplasm of genital organ, unspecified', '(V16.40) Family history of malignant neoplasm of genital organ, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\(V16.41) Family history of malignant neoplasm of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\(V16.41) Family history of malignant neoplasm of ovary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.41''', NULL, + '(V16.41) Family history of malignant neoplasm of ovary', '(V16.41) Family history of malignant neoplasm of ovary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\(V16.42) Family history of malignant neoplasm of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\(V16.42) Family history of malignant neoplasm of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.42''', NULL, + '(V16.42) Family history of malignant neoplasm of prostate', '(V16.42) Family history of malignant neoplasm of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\(V16.43) Family history of malignant neoplasm of testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\(V16.43) Family history of malignant neoplasm of testis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.43''', NULL, + '(V16.43) Family history of malignant neoplasm of testis', '(V16.43) Family history of malignant neoplasm of testis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\(V16.49) Family history of malignant neoplasm of other genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of genital organs (V16.4)\(V16.49) Family history of malignant neoplasm of other genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.49''', NULL, + '(V16.49) Family history of malignant neoplasm of other genital organs', '(V16.49) Family history of malignant neoplasm of other genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of urinary organs (V16.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of urinary organs (V16.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.5''', NULL, + 'Family history of malignant neoplasm of urinary organs (V16.5)', 'Family history of malignant neoplasm of urinary organs (V16.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of urinary organs (V16.5)\(V16.51) Family history of malignant neoplasm of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of urinary organs (V16.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of urinary organs (V16.5)\(V16.51) Family history of malignant neoplasm of kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.51''', NULL, + '(V16.51) Family history of malignant neoplasm of kidney', '(V16.51) Family history of malignant neoplasm of kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of urinary organs (V16.5)\(V16.52) Family history of malignant neoplasm, bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of urinary organs (V16.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of urinary organs (V16.5)\(V16.52) Family history of malignant neoplasm, bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.52''', NULL, + '(V16.52) Family history of malignant neoplasm, bladder', '(V16.52) Family history of malignant neoplasm, bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of urinary organs (V16.5)\(V16.59) Family history of malignant neoplasm of other urinary organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of urinary organs (V16.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of malignant neoplasm (V16)\Family history of malignant neoplasm of urinary organs (V16.5)\(V16.59) Family history of malignant neoplasm of other urinary organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V16.59''', NULL, + '(V16.59) Family history of malignant neoplasm of other urinary organs', '(V16.59) Family history of malignant neoplasm of other urinary organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V19''', NULL, + 'Family history of other conditions (V19)', 'Family history of other conditions (V19)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.0) Family history of blindness or visual loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.0) Family history of blindness or visual loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V19.0''', NULL, + '(V19.0) Family history of blindness or visual loss', '(V19.0) Family history of blindness or visual loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.2) Family history of deafness or hearing loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.2) Family history of deafness or hearing loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V19.2''', NULL, + '(V19.2) Family history of deafness or hearing loss', '(V19.2) Family history of deafness or hearing loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.3) Family history of other ear disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.3) Family history of other ear disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V19.3''', NULL, + '(V19.3) Family history of other ear disorders', '(V19.3) Family history of other ear disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.4) Family history of skin conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.4) Family history of skin conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V19.4''', NULL, + '(V19.4) Family history of skin conditions', '(V19.4) Family history of skin conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.5) Family history of congenital anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.5) Family history of congenital anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V19.5''', NULL, + '(V19.5) Family history of congenital anomalies', '(V19.5) Family history of congenital anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.6) Family history of allergic disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.6) Family history of allergic disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V19.6''', NULL, + '(V19.6) Family history of allergic disorders', '(V19.6) Family history of allergic disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.7) Family history of consanguinity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.7) Family history of consanguinity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V19.7''', NULL, + '(V19.7) Family history of consanguinity', '(V19.7) Family history of consanguinity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.8) Family history of other condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\(V19.8) Family history of other condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V19.8''', NULL, + '(V19.8) Family history of other condition', '(V19.8) Family history of other condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\Family history of other eye disorders (V19.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Family history of other conditions (V19)\Family history of other eye disorders (V19.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V19.1''', NULL, + 'Family history of other eye disorders (V19.1)', 'Family history of other eye disorders (V19.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15''', NULL, + 'Other personal history presenting hazards to health (V15)', 'Other personal history presenting hazards to health (V15)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\(V15.1) Personal history of surgery to heart and great vessels, presenting hazards to health\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\(V15.1) Personal history of surgery to heart and great vessels, presenting hazards to health\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.1''', NULL, + '(V15.1) Personal history of surgery to heart and great vessels, presenting hazards to health', '(V15.1) Personal history of surgery to heart and great vessels, presenting hazards to health', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\(V15.3) Personal history of irradiation, presenting hazards to health\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\(V15.3) Personal history of irradiation, presenting hazards to health\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.3''', NULL, + '(V15.3) Personal history of irradiation, presenting hazards to health', '(V15.3) Personal history of irradiation, presenting hazards to health', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\(V15.6) Personal history of poisoning, presenting hazards to health\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\(V15.6) Personal history of poisoning, presenting hazards to health\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.6''', NULL, + '(V15.6) Personal history of poisoning, presenting hazards to health', '(V15.6) Personal history of poisoning, presenting hazards to health', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\(V15.7) Personal history of contraception, presenting hazards to health\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\(V15.7) Personal history of contraception, presenting hazards to health\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.7''', NULL, + '(V15.7) Personal history of contraception, presenting hazards to health', '(V15.7) Personal history of contraception, presenting hazards to health', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\(V15.9) Unspecified personal history presenting hazards to health\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\(V15.9) Unspecified personal history presenting hazards to health\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.9''', NULL, + '(V15.9) Unspecified personal history presenting hazards to health', '(V15.9) Unspecified personal history presenting hazards to health', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.8''', NULL, + 'Other specified personal history presenting hazards to health (V15.8)', 'Other specified personal history presenting hazards to health (V15.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.81) Personal history of noncompliance with medical treatment, presenting hazards to health\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.81) Personal history of noncompliance with medical treatment, presenting hazards to health\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.81''', NULL, + '(V15.81) Personal history of noncompliance with medical treatment, presenting hazards to health', '(V15.81) Personal history of noncompliance with medical treatment, presenting hazards to health', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.82) Personal history of tobacco use\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.82) Personal history of tobacco use\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.82''', NULL, + '(V15.82) Personal history of tobacco use', '(V15.82) Personal history of tobacco use', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.83) Personal history of underimmunization status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.83) Personal history of underimmunization status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.83''', NULL, + '(V15.83) Personal history of underimmunization status', '(V15.83) Personal history of underimmunization status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.84) Personal history of contact with and (suspected) exposure to asbestos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.84) Personal history of contact with and (suspected) exposure to asbestos\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.84) Personal history of contact with and (suspected''', NULL, + '(V15.84) Personal history of contact with and (suspected) exposure to asbestos', '(V15.84) Personal history of contact with and (suspected) exposure to asbestos', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.85) Personal history of contact with and (suspected) exposure to potentially hazardous body fluids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.85) Personal history of contact with and (suspected) exposure to potentially hazardous body fluids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.85) Personal history of contact with and (suspected''', NULL, + '(V15.85) Personal history of contact with and (suspected) exposure to potentially hazardous body fluids', '(V15.85) Personal history of contact with and (suspected) exposure to potentially hazardous body fluids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.86) Personal history of contact with and (suspected) exposure to lead\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.86) Personal history of contact with and (suspected) exposure to lead\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.86) Personal history of contact with and (suspected''', NULL, + '(V15.86) Personal history of contact with and (suspected) exposure to lead', '(V15.86) Personal history of contact with and (suspected) exposure to lead', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.87) History of extracorporeal membrane oxygenation (ECMO)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.87) History of extracorporeal membrane oxygenation (ECMO)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.87) History of extracorporeal membrane oxygenation (ECMO''', NULL, + '(V15.87) History of extracorporeal membrane oxygenation (ECMO)', '(V15.87) History of extracorporeal membrane oxygenation (ECMO)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.88) History of fall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.88) History of fall\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.88''', NULL, + '(V15.88) History of fall', '(V15.88) History of fall', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.89) Other specified personal history presenting hazards to health\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Other specified personal history presenting hazards to health (V15.8)\(V15.89) Other specified personal history presenting hazards to health\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.89''', NULL, + '(V15.89) Other specified personal history presenting hazards to health', '(V15.89) Other specified personal history presenting hazards to health', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.0''', NULL, + 'Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)', 'Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.01) Allergy to peanuts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.01) Allergy to peanuts\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.01''', NULL, + '(V15.01) Allergy to peanuts', '(V15.01) Allergy to peanuts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.02) Allergy to milk products\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.02) Allergy to milk products\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.02''', NULL, + '(V15.02) Allergy to milk products', '(V15.02) Allergy to milk products', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.03) Allergy to eggs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.03) Allergy to eggs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.03''', NULL, + '(V15.03) Allergy to eggs', '(V15.03) Allergy to eggs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.04) Allergy to seafood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.04) Allergy to seafood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.04''', NULL, + '(V15.04) Allergy to seafood', '(V15.04) Allergy to seafood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.05) Allergy to other foods\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.05) Allergy to other foods\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.05''', NULL, + '(V15.05) Allergy to other foods', '(V15.05) Allergy to other foods', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.06) Allergy to insects and arachnids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.06) Allergy to insects and arachnids\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.06''', NULL, + '(V15.06) Allergy to insects and arachnids', '(V15.06) Allergy to insects and arachnids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.07) Allergy to latex\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.07) Allergy to latex\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.07''', NULL, + '(V15.07) Allergy to latex', '(V15.07) Allergy to latex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.08) Allergy to radiographic dye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.08) Allergy to radiographic dye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.08''', NULL, + '(V15.08) Allergy to radiographic dye', '(V15.08) Allergy to radiographic dye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.09) Other allergy, other than to medicinal agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\(V15.09) Other allergy, other than to medicinal agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.09''', NULL, + '(V15.09) Other allergy, other than to medicinal agents', '(V15.09) Other allergy, other than to medicinal agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of injury, presenting hazards to health (V15.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of injury, presenting hazards to health (V15.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.5''', NULL, + 'Personal history of injury, presenting hazards to health (V15.5)', 'Personal history of injury, presenting hazards to health (V15.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of injury, presenting hazards to health (V15.5)\(V15.51) Personal history of traumatic fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of injury, presenting hazards to health (V15.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of injury, presenting hazards to health (V15.5)\(V15.51) Personal history of traumatic fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.51''', NULL, + '(V15.51) Personal history of traumatic fracture', '(V15.51) Personal history of traumatic fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of injury, presenting hazards to health (V15.5)\(V15.52) Personal history of traumatic brain injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of injury, presenting hazards to health (V15.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of injury, presenting hazards to health (V15.5)\(V15.52) Personal history of traumatic brain injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.52''', NULL, + '(V15.52) Personal history of traumatic brain injury', '(V15.52) Personal history of traumatic brain injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of injury, presenting hazards to health (V15.5)\(V15.59) Personal history of other injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of injury, presenting hazards to health (V15.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of injury, presenting hazards to health (V15.5)\(V15.59) Personal history of other injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.59''', NULL, + '(V15.59) Personal history of other injury', '(V15.59) Personal history of other injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of psychological trauma, presenting hazards to health (V15.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of psychological trauma, presenting hazards to health (V15.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.4''', NULL, + 'Personal history of psychological trauma, presenting hazards to health (V15.4)', 'Personal history of psychological trauma, presenting hazards to health (V15.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of psychological trauma, presenting hazards to health (V15.4)\(V15.41) History of physical abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of psychological trauma, presenting hazards to health (V15.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of psychological trauma, presenting hazards to health (V15.4)\(V15.41) History of physical abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.41''', NULL, + '(V15.41) History of physical abuse', '(V15.41) History of physical abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of psychological trauma, presenting hazards to health (V15.4)\(V15.42) History of emotional abuse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of psychological trauma, presenting hazards to health (V15.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of psychological trauma, presenting hazards to health (V15.4)\(V15.42) History of emotional abuse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.42''', NULL, + '(V15.42) History of emotional abuse', '(V15.42) History of emotional abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of psychological trauma, presenting hazards to health (V15.4)\(V15.49) Other psychological trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of psychological trauma, presenting hazards to health (V15.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of psychological trauma, presenting hazards to health (V15.4)\(V15.49) Other psychological trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.49''', NULL, + '(V15.49) Other psychological trauma', '(V15.49) Other psychological trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of surgery to other organs, presenting hazards to health (V15.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of surgery to other organs, presenting hazards to health (V15.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.2''', NULL, + 'Personal history of surgery to other organs, presenting hazards to health (V15.2)', 'Personal history of surgery to other organs, presenting hazards to health (V15.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of surgery to other organs, presenting hazards to health (V15.2)\(V15.29) Personal history of surgery to other organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of surgery to other organs, presenting hazards to health (V15.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Other personal history presenting hazards to health (V15)\Personal history of surgery to other organs, presenting hazards to health (V15.2)\(V15.29) Personal history of surgery to other organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V15.29''', NULL, + '(V15.29) Personal history of surgery to other organs', '(V15.29) Personal history of surgery to other organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V14''', NULL, + 'Personal history of allergy to medicinal agents (V14)', 'Personal history of allergy to medicinal agents (V14)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.0) Personal history of allergy to penicillin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.0) Personal history of allergy to penicillin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V14.0''', NULL, + '(V14.0) Personal history of allergy to penicillin', '(V14.0) Personal history of allergy to penicillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.1) Personal history of allergy to other antibiotic agent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.1) Personal history of allergy to other antibiotic agent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V14.1''', NULL, + '(V14.1) Personal history of allergy to other antibiotic agent', '(V14.1) Personal history of allergy to other antibiotic agent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.2) Personal history of allergy to sulfonamides\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.2) Personal history of allergy to sulfonamides\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V14.2''', NULL, + '(V14.2) Personal history of allergy to sulfonamides', '(V14.2) Personal history of allergy to sulfonamides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.3) Personal history of allergy to other anti-infective agent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.3) Personal history of allergy to other anti-infective agent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V14.3''', NULL, + '(V14.3) Personal history of allergy to other anti-infective agent', '(V14.3) Personal history of allergy to other anti-infective agent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.4) Personal history of allergy to anesthetic agent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.4) Personal history of allergy to anesthetic agent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V14.4''', NULL, + '(V14.4) Personal history of allergy to anesthetic agent', '(V14.4) Personal history of allergy to anesthetic agent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.5) Personal history of allergy to narcotic agent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.5) Personal history of allergy to narcotic agent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V14.5''', NULL, + '(V14.5) Personal history of allergy to narcotic agent', '(V14.5) Personal history of allergy to narcotic agent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.6) Personal history of allergy to analgesic agent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.6) Personal history of allergy to analgesic agent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V14.6''', NULL, + '(V14.6) Personal history of allergy to analgesic agent', '(V14.6) Personal history of allergy to analgesic agent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.7) Personal history of allergy to serum or vaccine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.7) Personal history of allergy to serum or vaccine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V14.7''', NULL, + '(V14.7) Personal history of allergy to serum or vaccine', '(V14.7) Personal history of allergy to serum or vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.8) Personal history of allergy to other specified medicinal agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.8) Personal history of allergy to other specified medicinal agents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V14.8''', NULL, + '(V14.8) Personal history of allergy to other specified medicinal agents', '(V14.8) Personal history of allergy to other specified medicinal agents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.9) Personal history of allergy to unspecified medicinal agent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of allergy to medicinal agents (V14)\(V14.9) Personal history of allergy to unspecified medicinal agent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V14.9''', NULL, + '(V14.9) Personal history of allergy to unspecified medicinal agent', '(V14.9) Personal history of allergy to unspecified medicinal agent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12''', NULL, + 'Personal history of certain other diseases (V12)', 'Personal history of certain other diseases (V12)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\(V12.1) Personal history of nutritional deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\(V12.1) Personal history of nutritional deficiency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.1''', NULL, + '(V12.1) Personal history of nutritional deficiency', '(V12.1) Personal history of nutritional deficiency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\(V12.3) Personal history of diseases of blood and blood-forming organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\(V12.3) Personal history of diseases of blood and blood-forming organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.3''', NULL, + '(V12.3) Personal history of diseases of blood and blood-forming organs', '(V12.3) Personal history of diseases of blood and blood-forming organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.5''', NULL, + 'Personal history of diseases of circulatory system (V12.5)', 'Personal history of diseases of circulatory system (V12.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.50) Personal history of unspecified circulatory disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.50) Personal history of unspecified circulatory disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.50''', NULL, + '(V12.50) Personal history of unspecified circulatory disease', '(V12.50) Personal history of unspecified circulatory disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.51) Personal history of venous thrombosis and embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.51) Personal history of venous thrombosis and embolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.51''', NULL, + '(V12.51) Personal history of venous thrombosis and embolism', '(V12.51) Personal history of venous thrombosis and embolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.52) Personal history of thrombophlebitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.52) Personal history of thrombophlebitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.52''', NULL, + '(V12.52) Personal history of thrombophlebitis', '(V12.52) Personal history of thrombophlebitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.53) Personal history of sudden cardiac arrest\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.53) Personal history of sudden cardiac arrest\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.53''', NULL, + '(V12.53) Personal history of sudden cardiac arrest', '(V12.53) Personal history of sudden cardiac arrest', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.54) Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.54) Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.54) Personal history of transient ischemic attack (TIA''', NULL, + '(V12.54) Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits', '(V12.54) Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.55) Personal history of pulmonary embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.55) Personal history of pulmonary embolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.55''', NULL, + '(V12.55) Personal history of pulmonary embolism', '(V12.55) Personal history of pulmonary embolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.59) Personal history of other diseases of circulatory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of circulatory system (V12.5)\(V12.59) Personal history of other diseases of circulatory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.59''', NULL, + '(V12.59) Personal history of other diseases of circulatory system', '(V12.59) Personal history of other diseases of circulatory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.7''', NULL, + 'Personal history of diseases of digestive system (V12.7)', 'Personal history of diseases of digestive system (V12.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\(V12.70) Personal history of unspecified digestive disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\(V12.70) Personal history of unspecified digestive disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.70''', NULL, + '(V12.70) Personal history of unspecified digestive disease', '(V12.70) Personal history of unspecified digestive disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\(V12.71) Personal history of peptic ulcer disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\(V12.71) Personal history of peptic ulcer disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.71''', NULL, + '(V12.71) Personal history of peptic ulcer disease', '(V12.71) Personal history of peptic ulcer disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\(V12.72) Personal history of colonic polyps\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\(V12.72) Personal history of colonic polyps\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.72''', NULL, + '(V12.72) Personal history of colonic polyps', '(V12.72) Personal history of colonic polyps', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\(V12.79) Personal history of other diseases of digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of digestive system (V12.7)\(V12.79) Personal history of other diseases of digestive system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.79''', NULL, + '(V12.79) Personal history of other diseases of digestive system', '(V12.79) Personal history of other diseases of digestive system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of respiratory system (V12.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of respiratory system (V12.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.6''', NULL, + 'Personal history of diseases of respiratory system (V12.6)', 'Personal history of diseases of respiratory system (V12.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of respiratory system (V12.6)\(V12.60) Personal history of unspecified disease of respiratory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of respiratory system (V12.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of respiratory system (V12.6)\(V12.60) Personal history of unspecified disease of respiratory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.60''', NULL, + '(V12.60) Personal history of unspecified disease of respiratory system', '(V12.60) Personal history of unspecified disease of respiratory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of respiratory system (V12.6)\(V12.61) Personal history of pneumonia (recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of respiratory system (V12.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of respiratory system (V12.6)\(V12.61) Personal history of pneumonia (recurrent)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.61) Personal history of pneumonia (recurrent''', NULL, + '(V12.61) Personal history of pneumonia (recurrent)', '(V12.61) Personal history of pneumonia (recurrent)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of respiratory system (V12.6)\(V12.69) Personal history of other diseases of respiratory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of respiratory system (V12.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of diseases of respiratory system (V12.6)\(V12.69) Personal history of other diseases of respiratory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.69''', NULL, + '(V12.69) Personal history of other diseases of respiratory system', '(V12.69) Personal history of other diseases of respiratory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.4''', NULL, + 'Personal history of disorders of nervous system and sense organs (V12.4)', 'Personal history of disorders of nervous system and sense organs (V12.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\(V12.40) Personal history of unspecified disorder of nervous system and sense organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\(V12.40) Personal history of unspecified disorder of nervous system and sense organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.40''', NULL, + '(V12.40) Personal history of unspecified disorder of nervous system and sense organs', '(V12.40) Personal history of unspecified disorder of nervous system and sense organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\(V12.41) Personal history of benign neoplasm of the brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\(V12.41) Personal history of benign neoplasm of the brain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.41''', NULL, + '(V12.41) Personal history of benign neoplasm of the brain', '(V12.41) Personal history of benign neoplasm of the brain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\(V12.42) Personal history of infections of the central nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\(V12.42) Personal history of infections of the central nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.42''', NULL, + '(V12.42) Personal history of infections of the central nervous system', '(V12.42) Personal history of infections of the central nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\(V12.49) Personal history of other disorders of nervous system and sense organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of disorders of nervous system and sense organs (V12.4)\(V12.49) Personal history of other disorders of nervous system and sense organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.49''', NULL, + '(V12.49) Personal history of other disorders of nervous system and sense organs', '(V12.49) Personal history of other disorders of nervous system and sense organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.2''', NULL, + 'Personal history of endocrine, metabolic, and immunity disorders (V12.2)', 'Personal history of endocrine, metabolic, and immunity disorders (V12.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\(V12.21) Personal history of gestational diabetes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\(V12.21) Personal history of gestational diabetes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.21''', NULL, + '(V12.21) Personal history of gestational diabetes', '(V12.21) Personal history of gestational diabetes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\(V12.29) Personal history of other endocrine, metabolic, and immunity disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\(V12.29) Personal history of other endocrine, metabolic, and immunity disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.29''', NULL, + '(V12.29) Personal history of other endocrine, metabolic, and immunity disorders', '(V12.29) Personal history of other endocrine, metabolic, and immunity disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.0''', NULL, + 'Personal history of infectious and parasitic diseases (V12.0)', 'Personal history of infectious and parasitic diseases (V12.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.00) Personal history of unspecified infectious and parasitic disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.00) Personal history of unspecified infectious and parasitic disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.00''', NULL, + '(V12.00) Personal history of unspecified infectious and parasitic disease', '(V12.00) Personal history of unspecified infectious and parasitic disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.01) Personal history of tuberculosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.01) Personal history of tuberculosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.01''', NULL, + '(V12.01) Personal history of tuberculosis', '(V12.01) Personal history of tuberculosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.02) Personal history of poliomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.02) Personal history of poliomyelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.02''', NULL, + '(V12.02) Personal history of poliomyelitis', '(V12.02) Personal history of poliomyelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.03) Personal history of malaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.03) Personal history of malaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.03''', NULL, + '(V12.03) Personal history of malaria', '(V12.03) Personal history of malaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.04) Personal history of Methicillin resistant Staphylococcus aureus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.04) Personal history of Methicillin resistant Staphylococcus aureus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.04''', NULL, + '(V12.04) Personal history of Methicillin resistant Staphylococcus aureus', '(V12.04) Personal history of Methicillin resistant Staphylococcus aureus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.09) Personal history of other infectious and parasitic diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of certain other diseases (V12)\Personal history of infectious and parasitic diseases (V12.0)\(V12.09) Personal history of other infectious and parasitic diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V12.09''', NULL, + '(V12.09) Personal history of other infectious and parasitic diseases', '(V12.09) Personal history of other infectious and parasitic diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10''', NULL, + 'Personal history of malignant neoplasm (V10)', 'Personal history of malignant neoplasm (V10)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\(V10.3) Personal history of malignant neoplasm of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\(V10.3) Personal history of malignant neoplasm of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.3''', NULL, + '(V10.3) Personal history of malignant neoplasm of breast', '(V10.3) Personal history of malignant neoplasm of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Other and unspecified personal history of malignant neoplasm (V10.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Other and unspecified personal history of malignant neoplasm (V10.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.9''', NULL, + 'Other and unspecified personal history of malignant neoplasm (V10.9)', 'Other and unspecified personal history of malignant neoplasm (V10.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Other and unspecified personal history of malignant neoplasm (V10.9)\(V10.90) Personal history of unspecified malignant neoplasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Other and unspecified personal history of malignant neoplasm (V10.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Other and unspecified personal history of malignant neoplasm (V10.9)\(V10.90) Personal history of unspecified malignant neoplasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.90''', NULL, + '(V10.90) Personal history of unspecified malignant neoplasm', '(V10.90) Personal history of unspecified malignant neoplasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Other and unspecified personal history of malignant neoplasm (V10.9)\(V10.91) Personal history of malignant neuroendocrine tumor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Other and unspecified personal history of malignant neoplasm (V10.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Other and unspecified personal history of malignant neoplasm (V10.9)\(V10.91) Personal history of malignant neuroendocrine tumor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.91''', NULL, + '(V10.91) Personal history of malignant neuroendocrine tumor', '(V10.91) Personal history of malignant neuroendocrine tumor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.6''', NULL, + 'Personal history of leukemia (V10.6)', 'Personal history of leukemia (V10.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\(V10.60) Personal history of leukemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\(V10.60) Personal history of leukemia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.60''', NULL, + '(V10.60) Personal history of leukemia, unspecified', '(V10.60) Personal history of leukemia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\(V10.61) Personal history of lymphoid leukemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\(V10.61) Personal history of lymphoid leukemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.61''', NULL, + '(V10.61) Personal history of lymphoid leukemia', '(V10.61) Personal history of lymphoid leukemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\(V10.62) Personal history of myeloid leukemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\(V10.62) Personal history of myeloid leukemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.62''', NULL, + '(V10.62) Personal history of myeloid leukemia', '(V10.62) Personal history of myeloid leukemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\(V10.63) Personal history of monocytic leukemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\(V10.63) Personal history of monocytic leukemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.63''', NULL, + '(V10.63) Personal history of monocytic leukemia', '(V10.63) Personal history of monocytic leukemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\(V10.69) Personal history of other leukemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of leukemia (V10.6)\(V10.69) Personal history of other leukemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.69''', NULL, + '(V10.69) Personal history of other leukemia', '(V10.69) Personal history of other leukemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.0''', NULL, + 'Personal history of malignant neoplasm of gastrointestinal tract (V10.0)', 'Personal history of malignant neoplasm of gastrointestinal tract (V10.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.00) Personal history of malignant neoplasm of gastrointestinal tract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.00) Personal history of malignant neoplasm of gastrointestinal tract, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.00''', NULL, + '(V10.00) Personal history of malignant neoplasm of gastrointestinal tract, unspecified', '(V10.00) Personal history of malignant neoplasm of gastrointestinal tract, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.01) Personal history of malignant neoplasm of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.01) Personal history of malignant neoplasm of tongue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.01''', NULL, + '(V10.01) Personal history of malignant neoplasm of tongue', '(V10.01) Personal history of malignant neoplasm of tongue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.02) Personal history of malignant neoplasm of other and unspecified oral cavity and pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.02) Personal history of malignant neoplasm of other and unspecified oral cavity and pharynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.02''', NULL, + '(V10.02) Personal history of malignant neoplasm of other and unspecified oral cavity and pharynx', '(V10.02) Personal history of malignant neoplasm of other and unspecified oral cavity and pharynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.03) Personal history of malignant neoplasm of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.03) Personal history of malignant neoplasm of esophagus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.03''', NULL, + '(V10.03) Personal history of malignant neoplasm of esophagus', '(V10.03) Personal history of malignant neoplasm of esophagus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.04) Personal history of malignant neoplasm of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.04) Personal history of malignant neoplasm of stomach\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.04''', NULL, + '(V10.04) Personal history of malignant neoplasm of stomach', '(V10.04) Personal history of malignant neoplasm of stomach', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.05) Personal history of malignant neoplasm of large intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.05) Personal history of malignant neoplasm of large intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.05''', NULL, + '(V10.05) Personal history of malignant neoplasm of large intestine', '(V10.05) Personal history of malignant neoplasm of large intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.06) Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.06) Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.06''', NULL, + '(V10.06) Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus', '(V10.06) Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.07) Personal history of malignant neoplasm of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.07) Personal history of malignant neoplasm of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.07''', NULL, + '(V10.07) Personal history of malignant neoplasm of liver', '(V10.07) Personal history of malignant neoplasm of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.09) Personal history of malignant neoplasm of other gastrointestinal tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\(V10.09) Personal history of malignant neoplasm of other gastrointestinal tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.09''', NULL, + '(V10.09) Personal history of malignant neoplasm of other gastrointestinal tract', '(V10.09) Personal history of malignant neoplasm of other gastrointestinal tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.4''', NULL, + 'Personal history of malignant neoplasm of genital organs (V10.4)', 'Personal history of malignant neoplasm of genital organs (V10.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.40) Personal history of malignant neoplasm of female genital organ, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.40) Personal history of malignant neoplasm of female genital organ, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.40''', NULL, + '(V10.40) Personal history of malignant neoplasm of female genital organ, unspecified', '(V10.40) Personal history of malignant neoplasm of female genital organ, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.41) Personal history of malignant neoplasm of cervix uteri\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.41) Personal history of malignant neoplasm of cervix uteri\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.41''', NULL, + '(V10.41) Personal history of malignant neoplasm of cervix uteri', '(V10.41) Personal history of malignant neoplasm of cervix uteri', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.42) Personal history of malignant neoplasm of other parts of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.42) Personal history of malignant neoplasm of other parts of uterus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.42''', NULL, + '(V10.42) Personal history of malignant neoplasm of other parts of uterus', '(V10.42) Personal history of malignant neoplasm of other parts of uterus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.43) Personal history of malignant neoplasm of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.43) Personal history of malignant neoplasm of ovary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.43''', NULL, + '(V10.43) Personal history of malignant neoplasm of ovary', '(V10.43) Personal history of malignant neoplasm of ovary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.44) Personal history of malignant neoplasm of other female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.44) Personal history of malignant neoplasm of other female genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.44''', NULL, + '(V10.44) Personal history of malignant neoplasm of other female genital organs', '(V10.44) Personal history of malignant neoplasm of other female genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.45) Personal history of malignant neoplasm of male genital organ, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.45) Personal history of malignant neoplasm of male genital organ, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.45''', NULL, + '(V10.45) Personal history of malignant neoplasm of male genital organ, unspecified', '(V10.45) Personal history of malignant neoplasm of male genital organ, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.46) Personal history of malignant neoplasm of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.46) Personal history of malignant neoplasm of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.46''', NULL, + '(V10.46) Personal history of malignant neoplasm of prostate', '(V10.46) Personal history of malignant neoplasm of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.47) Personal history of malignant neoplasm of testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.47) Personal history of malignant neoplasm of testis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.47''', NULL, + '(V10.47) Personal history of malignant neoplasm of testis', '(V10.47) Personal history of malignant neoplasm of testis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.48) Personal history of malignant neoplasm of epididymis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.48) Personal history of malignant neoplasm of epididymis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.48''', NULL, + '(V10.48) Personal history of malignant neoplasm of epididymis', '(V10.48) Personal history of malignant neoplasm of epididymis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.49) Personal history of malignant neoplasm of other male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of genital organs (V10.4)\(V10.49) Personal history of malignant neoplasm of other male genital organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.49''', NULL, + '(V10.49) Personal history of malignant neoplasm of other male genital organs', '(V10.49) Personal history of malignant neoplasm of other male genital organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.2''', NULL, + 'Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)', 'Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\(V10.20) Personal history of malignant neoplasm of respiratory organ, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\(V10.20) Personal history of malignant neoplasm of respiratory organ, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.20''', NULL, + '(V10.20) Personal history of malignant neoplasm of respiratory organ, unspecified', '(V10.20) Personal history of malignant neoplasm of respiratory organ, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\(V10.21) Personal history of malignant neoplasm of larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\(V10.21) Personal history of malignant neoplasm of larynx\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.21''', NULL, + '(V10.21) Personal history of malignant neoplasm of larynx', '(V10.21) Personal history of malignant neoplasm of larynx', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\(V10.22) Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\(V10.22) Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.22''', NULL, + '(V10.22) Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses', '(V10.22) Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\(V10.29) Personal history of malignant neoplasm of other respiratory and intrathoracic organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\(V10.29) Personal history of malignant neoplasm of other respiratory and intrathoracic organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.29''', NULL, + '(V10.29) Personal history of malignant neoplasm of other respiratory and intrathoracic organs', '(V10.29) Personal history of malignant neoplasm of other respiratory and intrathoracic organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.8''', NULL, + 'Personal history of malignant neoplasm of other sites (V10.8)', 'Personal history of malignant neoplasm of other sites (V10.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.81) Personal history of malignant neoplasm of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.81) Personal history of malignant neoplasm of bone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.81''', NULL, + '(V10.81) Personal history of malignant neoplasm of bone', '(V10.81) Personal history of malignant neoplasm of bone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.82) Personal history of malignant melanoma of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.82) Personal history of malignant melanoma of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.82''', NULL, + '(V10.82) Personal history of malignant melanoma of skin', '(V10.82) Personal history of malignant melanoma of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.83) Personal history of other malignant neoplasm of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.83) Personal history of other malignant neoplasm of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.83''', NULL, + '(V10.83) Personal history of other malignant neoplasm of skin', '(V10.83) Personal history of other malignant neoplasm of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.84) Personal history of malignant neoplasm of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.84) Personal history of malignant neoplasm of eye\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.84''', NULL, + '(V10.84) Personal history of malignant neoplasm of eye', '(V10.84) Personal history of malignant neoplasm of eye', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.85) Personal history of malignant neoplasm of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.85) Personal history of malignant neoplasm of brain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.85''', NULL, + '(V10.85) Personal history of malignant neoplasm of brain', '(V10.85) Personal history of malignant neoplasm of brain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.86) Personal history of malignant neoplasm of other parts of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.86) Personal history of malignant neoplasm of other parts of nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.86''', NULL, + '(V10.86) Personal history of malignant neoplasm of other parts of nervous system', '(V10.86) Personal history of malignant neoplasm of other parts of nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.87) Personal history of malignant neoplasm of thyroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.87) Personal history of malignant neoplasm of thyroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.87''', NULL, + '(V10.87) Personal history of malignant neoplasm of thyroid', '(V10.87) Personal history of malignant neoplasm of thyroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.88) Personal history of malignant neoplasm of other endocrine glands and related structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.88) Personal history of malignant neoplasm of other endocrine glands and related structures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.88''', NULL, + '(V10.88) Personal history of malignant neoplasm of other endocrine glands and related structures', '(V10.88) Personal history of malignant neoplasm of other endocrine glands and related structures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.89) Personal history of malignant neoplasm of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of other sites (V10.8)\(V10.89) Personal history of malignant neoplasm of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.89''', NULL, + '(V10.89) Personal history of malignant neoplasm of other sites', '(V10.89) Personal history of malignant neoplasm of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.1''', NULL, + 'Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)', 'Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\(V10.11) Personal history of malignant neoplasm of bronchus and lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\(V10.11) Personal history of malignant neoplasm of bronchus and lung\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.11''', NULL, + '(V10.11) Personal history of malignant neoplasm of bronchus and lung', '(V10.11) Personal history of malignant neoplasm of bronchus and lung', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\(V10.12) Personal history of malignant neoplasm of trachea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\(V10.12) Personal history of malignant neoplasm of trachea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.12''', NULL, + '(V10.12) Personal history of malignant neoplasm of trachea', '(V10.12) Personal history of malignant neoplasm of trachea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.5''', NULL, + 'Personal history of malignant neoplasm of urinary organs (V10.5)', 'Personal history of malignant neoplasm of urinary organs (V10.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\(V10.50) Personal history of malignant neoplasm of urinary organ, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\(V10.50) Personal history of malignant neoplasm of urinary organ, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.50''', NULL, + '(V10.50) Personal history of malignant neoplasm of urinary organ, unspecified', '(V10.50) Personal history of malignant neoplasm of urinary organ, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\(V10.51) Personal history of malignant neoplasm of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\(V10.51) Personal history of malignant neoplasm of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.51''', NULL, + '(V10.51) Personal history of malignant neoplasm of bladder', '(V10.51) Personal history of malignant neoplasm of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\(V10.52) Personal history of malignant neoplasm of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\(V10.52) Personal history of malignant neoplasm of kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.52''', NULL, + '(V10.52) Personal history of malignant neoplasm of kidney', '(V10.52) Personal history of malignant neoplasm of kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\(V10.53) Personal history of malignant neoplasm of renal pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\(V10.53) Personal history of malignant neoplasm of renal pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.53''', NULL, + '(V10.53) Personal history of malignant neoplasm of renal pelvis', '(V10.53) Personal history of malignant neoplasm of renal pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\(V10.59) Personal history of malignant neoplasm of other urinary organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of malignant neoplasm of urinary organs (V10.5)\(V10.59) Personal history of malignant neoplasm of other urinary organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.59''', NULL, + '(V10.59) Personal history of malignant neoplasm of other urinary organs', '(V10.59) Personal history of malignant neoplasm of other urinary organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.7''', NULL, + 'Personal history of other lymphatic and hematopoietic neoplasms (V10.7)', 'Personal history of other lymphatic and hematopoietic neoplasms (V10.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\(V10.71) Personal history of lymphosarcoma and reticulosarcoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\(V10.71) Personal history of lymphosarcoma and reticulosarcoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.71''', NULL, + '(V10.71) Personal history of lymphosarcoma and reticulosarcoma', '(V10.71) Personal history of lymphosarcoma and reticulosarcoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\(V10.72) Personal history of hodgkin''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\(V10.72) Personal history of hodgkin''s disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.72''', NULL, + '(V10.72) Personal history of hodgkin''s disease', '(V10.72) Personal history of hodgkin''s disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\(V10.79) Personal history of other lymphatic and hematopoietic neoplasms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of malignant neoplasm (V10)\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\(V10.79) Personal history of other lymphatic and hematopoietic neoplasms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V10.79''', NULL, + '(V10.79) Personal history of other lymphatic and hematopoietic neoplasms', '(V10.79) Personal history of other lymphatic and hematopoietic neoplasms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V11''', NULL, + 'Personal history of mental disorder (V11)', 'Personal history of mental disorder (V11)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.0) Personal history of schizophrenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.0) Personal history of schizophrenia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V11.0''', NULL, + '(V11.0) Personal history of schizophrenia', '(V11.0) Personal history of schizophrenia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.1) Personal history of affective disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.1) Personal history of affective disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V11.1''', NULL, + '(V11.1) Personal history of affective disorders', '(V11.1) Personal history of affective disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.2) Personal history of neurosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.2) Personal history of neurosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V11.2''', NULL, + '(V11.2) Personal history of neurosis', '(V11.2) Personal history of neurosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.3) Personal history of alcoholism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.3) Personal history of alcoholism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V11.3''', NULL, + '(V11.3) Personal history of alcoholism', '(V11.3) Personal history of alcoholism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.8) Personal history of other mental disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.8) Personal history of other mental disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V11.8''', NULL, + '(V11.8) Personal history of other mental disorders', '(V11.8) Personal history of other mental disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.9) Personal history of unspecified mental disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of mental disorder (V11)\(V11.9) Personal history of unspecified mental disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V11.9''', NULL, + '(V11.9) Personal history of unspecified mental disorder', '(V11.9) Personal history of unspecified mental disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13''', NULL, + 'Personal history of other diseases (V13)', 'Personal history of other diseases (V13)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\(V13.1) Personal history of trophoblastic disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\(V13.1) Personal history of trophoblastic disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.1''', NULL, + '(V13.1) Personal history of trophoblastic disease', '(V13.1) Personal history of trophoblastic disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\(V13.3) Personal history of diseases of skin and subcutaneous tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\(V13.3) Personal history of diseases of skin and subcutaneous tissue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.3''', NULL, + '(V13.3) Personal history of diseases of skin and subcutaneous tissue', '(V13.3) Personal history of diseases of skin and subcutaneous tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\(V13.4) Personal history of arthritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\(V13.4) Personal history of arthritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.4''', NULL, + '(V13.4) Personal history of arthritis', '(V13.4) Personal history of arthritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\(V13.7) Personal history of perinatal problems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\(V13.7) Personal history of perinatal problems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.7''', NULL, + '(V13.7) Personal history of perinatal problems', '(V13.7) Personal history of perinatal problems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\(V13.9) Personal history of unspecified disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\(V13.9) Personal history of unspecified disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.9''', NULL, + '(V13.9) Personal history of unspecified disease', '(V13.9) Personal history of unspecified disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''corrected) malformations (V13.6''', NULL, + 'Personal history of congenital (corrected) malformations (V13.6)', 'Personal history of congenital (corrected) malformations (V13.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.61) Personal history of (corrected) hypospadias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.61) Personal history of (corrected) hypospadias\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.61) Personal history of (corrected''', NULL, + '(V13.61) Personal history of (corrected) hypospadias', '(V13.61) Personal history of (corrected) hypospadias', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.62) Personal history of other (corrected) congenital malformations of genitourinary system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.62) Personal history of other (corrected) congenital malformations of genitourinary system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.62) Personal history of other (corrected''', NULL, + '(V13.62) Personal history of other (corrected) congenital malformations of genitourinary system', '(V13.62) Personal history of other (corrected) congenital malformations of genitourinary system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.63) Personal history of (corrected) congenital malformations of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.63) Personal history of (corrected) congenital malformations of nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.63) Personal history of (corrected''', NULL, + '(V13.63) Personal history of (corrected) congenital malformations of nervous system', '(V13.63) Personal history of (corrected) congenital malformations of nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.64) Personal history of (corrected) congenital malformations of eye, ear, face and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.64) Personal history of (corrected) congenital malformations of eye, ear, face and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.64) Personal history of (corrected''', NULL, + '(V13.64) Personal history of (corrected) congenital malformations of eye, ear, face and neck', '(V13.64) Personal history of (corrected) congenital malformations of eye, ear, face and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.65) Personal history of (corrected) congenital malformations of heart and circulatory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.65) Personal history of (corrected) congenital malformations of heart and circulatory system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.65) Personal history of (corrected''', NULL, + '(V13.65) Personal history of (corrected) congenital malformations of heart and circulatory system', '(V13.65) Personal history of (corrected) congenital malformations of heart and circulatory system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.67) Personal history of (corrected) congenital malformations of digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.67) Personal history of (corrected) congenital malformations of digestive system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.67) Personal history of (corrected''', NULL, + '(V13.67) Personal history of (corrected) congenital malformations of digestive system', '(V13.67) Personal history of (corrected) congenital malformations of digestive system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.69) Personal history of other (corrected) congenital malformations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of congenital (corrected) malformations (V13.6)\(V13.69) Personal history of other (corrected) congenital malformations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.69) Personal history of other (corrected''', NULL, + '(V13.69) Personal history of other (corrected) congenital malformations', '(V13.69) Personal history of other (corrected) congenital malformations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.0''', NULL, + 'Personal history of disorders of urinary system (V13.0)', 'Personal history of disorders of urinary system (V13.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\(V13.00) Personal history of unspecified urinary disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\(V13.00) Personal history of unspecified urinary disorder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.00''', NULL, + '(V13.00) Personal history of unspecified urinary disorder', '(V13.00) Personal history of unspecified urinary disorder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\(V13.01) Personal history of urinary calculi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\(V13.01) Personal history of urinary calculi\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.01''', NULL, + '(V13.01) Personal history of urinary calculi', '(V13.01) Personal history of urinary calculi', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\(V13.02) Personal history, urinary (tract) infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\(V13.02) Personal history, urinary (tract) infection\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.02) Personal history, urinary (tract''', NULL, + '(V13.02) Personal history, urinary (tract) infection', '(V13.02) Personal history, urinary (tract) infection', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\(V13.03) Personal history, nephrotic syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\(V13.03) Personal history, nephrotic syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.03''', NULL, + '(V13.03) Personal history, nephrotic syndrome', '(V13.03) Personal history, nephrotic syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\(V13.09) Personal history of other specified urinary system disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of disorders of urinary system (V13.0)\(V13.09) Personal history of other specified urinary system disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.09''', NULL, + '(V13.09) Personal history of other specified urinary system disorders', '(V13.09) Personal history of other specified urinary system disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.2''', NULL, + 'Personal history of other genital system and obstetric disorders (V13.2)', 'Personal history of other genital system and obstetric disorders (V13.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\(V13.21) Personal history of pre-term labor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\(V13.21) Personal history of pre-term labor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.21''', NULL, + '(V13.21) Personal history of pre-term labor', '(V13.21) Personal history of pre-term labor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\(V13.22) Personal history of cervical dysplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\(V13.22) Personal history of cervical dysplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.22''', NULL, + '(V13.22) Personal history of cervical dysplasia', '(V13.22) Personal history of cervical dysplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\(V13.23) Personal history of vaginal dysplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\(V13.23) Personal history of vaginal dysplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.23''', NULL, + '(V13.23) Personal history of vaginal dysplasia', '(V13.23) Personal history of vaginal dysplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\(V13.24) Personal history of vulvar dysplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\(V13.24) Personal history of vulvar dysplasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.24''', NULL, + '(V13.24) Personal history of vulvar dysplasia', '(V13.24) Personal history of vulvar dysplasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\(V13.29) Personal history of other genital system and obstetric disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other genital system and obstetric disorders (V13.2)\(V13.29) Personal history of other genital system and obstetric disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.29''', NULL, + '(V13.29) Personal history of other genital system and obstetric disorders', '(V13.29) Personal history of other genital system and obstetric disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other musculoskeletal disorders (V13.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other musculoskeletal disorders (V13.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.5''', NULL, + 'Personal history of other musculoskeletal disorders (V13.5)', 'Personal history of other musculoskeletal disorders (V13.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other musculoskeletal disorders (V13.5)\(V13.51) Personal history of pathologic fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other musculoskeletal disorders (V13.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other musculoskeletal disorders (V13.5)\(V13.51) Personal history of pathologic fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.51''', NULL, + '(V13.51) Personal history of pathologic fracture', '(V13.51) Personal history of pathologic fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other musculoskeletal disorders (V13.5)\(V13.52) Personal history of stress fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other musculoskeletal disorders (V13.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other musculoskeletal disorders (V13.5)\(V13.52) Personal history of stress fracture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.52''', NULL, + '(V13.52) Personal history of stress fracture', '(V13.52) Personal history of stress fracture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other musculoskeletal disorders (V13.5)\(V13.59) Personal history of other musculoskeletal disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other musculoskeletal disorders (V13.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other musculoskeletal disorders (V13.5)\(V13.59) Personal history of other musculoskeletal disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.59''', NULL, + '(V13.59) Personal history of other musculoskeletal disorders', '(V13.59) Personal history of other musculoskeletal disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other specified diseases (V13.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other specified diseases (V13.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.8''', NULL, + 'Personal history of other specified diseases (V13.8)', 'Personal history of other specified diseases (V13.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other specified diseases (V13.8)\(V13.81) Personal history of anaphylaxis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other specified diseases (V13.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other specified diseases (V13.8)\(V13.81) Personal history of anaphylaxis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.81''', NULL, + '(V13.81) Personal history of anaphylaxis', '(V13.81) Personal history of anaphylaxis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other specified diseases (V13.8)\(V13.89) Personal history of other specified diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other specified diseases (V13.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons with potential health hazards related to personal and family history (v10-v19.99)\Personal history of other diseases (V13)\Personal history of other specified diseases (V13.8)\(V13.89) Personal history of other specified diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V13.89''', NULL, + '(V13.89) Personal history of other specified diseases', '(V13.89) Personal history of other specified diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v70'' AND ''v82.99''', NULL, + 'Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)', 'Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V70''', NULL, + 'General medical examination (V70)', 'General medical examination (V70)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.0) Routine general medical examination at a health care facility\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.0) Routine general medical examination at a health care facility\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V70.0''', NULL, + '(V70.0) Routine general medical examination at a health care facility', '(V70.0) Routine general medical examination at a health care facility', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.1) General psychiatric examination, requested by the authority\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.1) General psychiatric examination, requested by the authority\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V70.1''', NULL, + '(V70.1) General psychiatric examination, requested by the authority', '(V70.1) General psychiatric examination, requested by the authority', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.2) General psychiatric examination, other and unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.2) General psychiatric examination, other and unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V70.2''', NULL, + '(V70.2) General psychiatric examination, other and unspecified', '(V70.2) General psychiatric examination, other and unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.3) Other general medical examination for administrative purposes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.3) Other general medical examination for administrative purposes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V70.3''', NULL, + '(V70.3) Other general medical examination for administrative purposes', '(V70.3) Other general medical examination for administrative purposes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.4) Examination for medicolegal reasons\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.4) Examination for medicolegal reasons\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V70.4''', NULL, + '(V70.4) Examination for medicolegal reasons', '(V70.4) Examination for medicolegal reasons', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.5) Health examination of defined subpopulations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.5) Health examination of defined subpopulations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V70.5''', NULL, + '(V70.5) Health examination of defined subpopulations', '(V70.5) Health examination of defined subpopulations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.6) Health examination in population surveys\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.6) Health examination in population surveys\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V70.6''', NULL, + '(V70.6) Health examination in population surveys', '(V70.6) Health examination in population surveys', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.7) Examination of participant in clinical trial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.7) Examination of participant in clinical trial\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V70.7''', NULL, + '(V70.7) Examination of participant in clinical trial', '(V70.7) Examination of participant in clinical trial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.8) Other specified general medical examinations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.8) Other specified general medical examinations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V70.8''', NULL, + '(V70.8) Other specified general medical examinations', '(V70.8) Other specified general medical examinations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.9) Unspecified general medical examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\General medical examination (V70)\(V70.9) Unspecified general medical examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V70.9''', NULL, + '(V70.9) Unspecified general medical examination', '(V70.9) Unspecified general medical examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71''', NULL, + 'Observation and evaluation for suspected conditions not found (V71)', 'Observation and evaluation for suspected conditions not found (V71)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.1) Observation for suspected malignant neoplasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.1) Observation for suspected malignant neoplasm\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.1''', NULL, + '(V71.1) Observation for suspected malignant neoplasm', '(V71.1) Observation for suspected malignant neoplasm', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.2) Observation for suspected tuberculosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.2) Observation for suspected tuberculosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.2''', NULL, + '(V71.2) Observation for suspected tuberculosis', '(V71.2) Observation for suspected tuberculosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.3) Observation following accident at work\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.3) Observation following accident at work\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.3''', NULL, + '(V71.3) Observation following accident at work', '(V71.3) Observation following accident at work', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.4) Observation following other accident\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.4) Observation following other accident\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.4''', NULL, + '(V71.4) Observation following other accident', '(V71.4) Observation following other accident', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.5) Observation following alleged rape or seduction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.5) Observation following alleged rape or seduction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.5''', NULL, + '(V71.5) Observation following alleged rape or seduction', '(V71.5) Observation following alleged rape or seduction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.6) Observation following other inflicted injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.6) Observation following other inflicted injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.6''', NULL, + '(V71.6) Observation following other inflicted injury', '(V71.6) Observation following other inflicted injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.7) Observation for suspected cardiovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.7) Observation for suspected cardiovascular disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.7''', NULL, + '(V71.7) Observation for suspected cardiovascular disease', '(V71.7) Observation for suspected cardiovascular disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.9) Observation for unspecified suspected condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\(V71.9) Observation for unspecified suspected condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.9''', NULL, + '(V71.9) Observation for unspecified suspected condition', '(V71.9) Observation for unspecified suspected condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.8''', NULL, + 'Observation and evaluation for other specified suspected conditions (V71.8)', 'Observation and evaluation for other specified suspected conditions (V71.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\(V71.81) Observation and evaluation for suspected abuse and neglect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\(V71.81) Observation and evaluation for suspected abuse and neglect\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.81''', NULL, + '(V71.81) Observation and evaluation for suspected abuse and neglect', '(V71.81) Observation and evaluation for suspected abuse and neglect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\(V71.82) Observation and evaluation for suspected exposure to anthrax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\(V71.82) Observation and evaluation for suspected exposure to anthrax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.82''', NULL, + '(V71.82) Observation and evaluation for suspected exposure to anthrax', '(V71.82) Observation and evaluation for suspected exposure to anthrax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\(V71.83) Observation and evaluation for suspected exposure to other biological agent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\(V71.83) Observation and evaluation for suspected exposure to other biological agent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.83''', NULL, + '(V71.83) Observation and evaluation for suspected exposure to other biological agent', '(V71.83) Observation and evaluation for suspected exposure to other biological agent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\(V71.89) Observation and evaluation for other specified suspected conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation and evaluation for other specified suspected conditions (V71.8)\(V71.89) Observation and evaluation for other specified suspected conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.89''', NULL, + '(V71.89) Observation and evaluation for other specified suspected conditions', '(V71.89) Observation and evaluation for other specified suspected conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation for suspected mental condition (V71.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation for suspected mental condition (V71.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.0''', NULL, + 'Observation for suspected mental condition (V71.0)', 'Observation for suspected mental condition (V71.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation for suspected mental condition (V71.0)\(V71.01) Observation for adult antisocial behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation for suspected mental condition (V71.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation for suspected mental condition (V71.0)\(V71.01) Observation for adult antisocial behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.01''', NULL, + '(V71.01) Observation for adult antisocial behavior', '(V71.01) Observation for adult antisocial behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation for suspected mental condition (V71.0)\(V71.02) Observation for childhood or adolescent antisocial behavior\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation for suspected mental condition (V71.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation for suspected mental condition (V71.0)\(V71.02) Observation for childhood or adolescent antisocial behavior\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.02''', NULL, + '(V71.02) Observation for childhood or adolescent antisocial behavior', '(V71.02) Observation for childhood or adolescent antisocial behavior', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation for suspected mental condition (V71.0)\(V71.09) Observation for other suspected mental condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation for suspected mental condition (V71.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Observation and evaluation for suspected conditions not found (V71)\Observation for suspected mental condition (V71.0)\(V71.09) Observation for other suspected mental condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V71.09''', NULL, + '(V71.09) Observation for other suspected mental condition', '(V71.09) Observation for other suspected mental condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72''', NULL, + 'Special investigations and examinations (V72)', 'Special investigations and examinations (V72)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\(V72.0) Examination of eyes and vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\(V72.0) Examination of eyes and vision\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.0''', NULL, + '(V72.0) Examination of eyes and vision', '(V72.0) Examination of eyes and vision', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\(V72.2) Dental examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\(V72.2) Dental examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.2''', NULL, + '(V72.2) Dental examination', '(V72.2) Dental examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\(V72.5) Radiological examination, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\(V72.5) Radiological examination, not elsewhere classified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.5''', NULL, + '(V72.5) Radiological examination, not elsewhere classified', '(V72.5) Radiological examination, not elsewhere classified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\(V72.7) Diagnostic skin and sensitization tests\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\(V72.7) Diagnostic skin and sensitization tests\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.7''', NULL, + '(V72.7) Diagnostic skin and sensitization tests', '(V72.7) Diagnostic skin and sensitization tests', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\(V72.9) Unspecified examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\(V72.9) Unspecified examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.9''', NULL, + '(V72.9) Unspecified examination', '(V72.9) Unspecified examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Examination of ears and hearing (V72.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Examination of ears and hearing (V72.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.1''', NULL, + 'Examination of ears and hearing (V72.1)', 'Examination of ears and hearing (V72.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Examination of ears and hearing (V72.1)\(V72.11) Encounter for hearing examination following failed hearing screening\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Examination of ears and hearing (V72.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Examination of ears and hearing (V72.1)\(V72.11) Encounter for hearing examination following failed hearing screening\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.11''', NULL, + '(V72.11) Encounter for hearing examination following failed hearing screening', '(V72.11) Encounter for hearing examination following failed hearing screening', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Examination of ears and hearing (V72.1)\(V72.12) Encounter for hearing conservation and treatment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Examination of ears and hearing (V72.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Examination of ears and hearing (V72.1)\(V72.12) Encounter for hearing conservation and treatment\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.12''', NULL, + '(V72.12) Encounter for hearing conservation and treatment', '(V72.12) Encounter for hearing conservation and treatment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Examination of ears and hearing (V72.1)\(V72.19) Other examination of ears and hearing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Examination of ears and hearing (V72.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Examination of ears and hearing (V72.1)\(V72.19) Other examination of ears and hearing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.19''', NULL, + '(V72.19) Other examination of ears and hearing', '(V72.19) Other examination of ears and hearing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.6''', NULL, + 'Laboratory examination (V72.6)', 'Laboratory examination (V72.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\(V72.60) Laboratory examination, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\(V72.60) Laboratory examination, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.60''', NULL, + '(V72.60) Laboratory examination, unspecified', '(V72.60) Laboratory examination, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\(V72.61) Antibody response examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\(V72.61) Antibody response examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.61''', NULL, + '(V72.61) Antibody response examination', '(V72.61) Antibody response examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\(V72.62) Laboratory examination ordered as part of a routine general medical examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\(V72.62) Laboratory examination ordered as part of a routine general medical examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.62''', NULL, + '(V72.62) Laboratory examination ordered as part of a routine general medical examination', '(V72.62) Laboratory examination ordered as part of a routine general medical examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\(V72.63) Pre-procedural laboratory examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\(V72.63) Pre-procedural laboratory examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.63''', NULL, + '(V72.63) Pre-procedural laboratory examination', '(V72.63) Pre-procedural laboratory examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\(V72.69) Other laboratory examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Laboratory examination (V72.6)\(V72.69) Other laboratory examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.69''', NULL, + '(V72.69) Other laboratory examination', '(V72.69) Other laboratory examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.8''', NULL, + 'Other specified examinations (V72.8)', 'Other specified examinations (V72.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.81) Pre-operative cardiovascular examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.81) Pre-operative cardiovascular examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.81''', NULL, + '(V72.81) Pre-operative cardiovascular examination', '(V72.81) Pre-operative cardiovascular examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.82) Pre-operative respiratory examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.82) Pre-operative respiratory examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.82''', NULL, + '(V72.82) Pre-operative respiratory examination', '(V72.82) Pre-operative respiratory examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.83) Other specified pre-operative examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.83) Other specified pre-operative examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.83''', NULL, + '(V72.83) Other specified pre-operative examination', '(V72.83) Other specified pre-operative examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.84) Pre-operative examination, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.84) Pre-operative examination, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.84''', NULL, + '(V72.84) Pre-operative examination, unspecified', '(V72.84) Pre-operative examination, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.85) Other specified examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.85) Other specified examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.85''', NULL, + '(V72.85) Other specified examination', '(V72.85) Other specified examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.86) Encounter for blood typing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Other specified examinations (V72.8)\(V72.86) Encounter for blood typing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.86''', NULL, + '(V72.86) Encounter for blood typing', '(V72.86) Encounter for blood typing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Pregnancy examination or test (V72.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Pregnancy examination or test (V72.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.4''', NULL, + 'Pregnancy examination or test (V72.4)', 'Pregnancy examination or test (V72.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Pregnancy examination or test (V72.4)\(V72.40) Pregnancy examination or test, pregnancy unconfirmed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Pregnancy examination or test (V72.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Pregnancy examination or test (V72.4)\(V72.40) Pregnancy examination or test, pregnancy unconfirmed\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.40''', NULL, + '(V72.40) Pregnancy examination or test, pregnancy unconfirmed', '(V72.40) Pregnancy examination or test, pregnancy unconfirmed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Pregnancy examination or test (V72.4)\(V72.41) Pregnancy examination or test, negative result\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Pregnancy examination or test (V72.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Pregnancy examination or test (V72.4)\(V72.41) Pregnancy examination or test, negative result\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.41''', NULL, + '(V72.41) Pregnancy examination or test, negative result', '(V72.41) Pregnancy examination or test, negative result', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Pregnancy examination or test (V72.4)\(V72.42) Pregnancy examination or test, positive result\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Pregnancy examination or test (V72.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Pregnancy examination or test (V72.4)\(V72.42) Pregnancy examination or test, positive result\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.42''', NULL, + '(V72.42) Pregnancy examination or test, positive result', '(V72.42) Pregnancy examination or test, positive result', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Special investigations and examinations - Gynecological examination (V72.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Special investigations and examinations - Gynecological examination (V72.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.3''', NULL, + 'Special investigations and examinations - Gynecological examination (V72.3)', 'Special investigations and examinations - Gynecological examination (V72.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Special investigations and examinations - Gynecological examination (V72.3)\(V72.31) Routine gynecological examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Special investigations and examinations - Gynecological examination (V72.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Special investigations and examinations - Gynecological examination (V72.3)\(V72.31) Routine gynecological examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.31''', NULL, + '(V72.31) Routine gynecological examination', '(V72.31) Routine gynecological examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Special investigations and examinations - Gynecological examination (V72.3)\(V72.32) Encounter for Papanicolaou cervical smear to confirm findings of recent normal smear following initial abnormal smear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Special investigations and examinations - Gynecological examination (V72.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special investigations and examinations (V72)\Special investigations and examinations - Gynecological examination (V72.3)\(V72.32) Encounter for Papanicolaou cervical smear to confirm findings of recent normal smear following initial abnormal smear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V72.32''', NULL, + '(V72.32) Encounter for Papanicolaou cervical smear to confirm findings of recent normal smear following initial abnormal smear', '(V72.32) Encounter for Papanicolaou cervical smear to confirm findings of recent normal smear following initial abnormal smear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V74''', NULL, + 'Special screening examination for bacterial and spirochetal diseases (V74)', 'Special screening examination for bacterial and spirochetal diseases (V74)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.0) Screening examination for cholera\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.0) Screening examination for cholera\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V74.0''', NULL, + '(V74.0) Screening examination for cholera', '(V74.0) Screening examination for cholera', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.1) Screening examination for pulmonary tuberculosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.1) Screening examination for pulmonary tuberculosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V74.1''', NULL, + '(V74.1) Screening examination for pulmonary tuberculosis', '(V74.1) Screening examination for pulmonary tuberculosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.2) Screening examination for leprosy (Hansen''s disease)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.2) Screening examination for leprosy (Hansen''s disease)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V74.2) Screening examination for leprosy (Hansen''s disease''', NULL, + '(V74.2) Screening examination for leprosy (Hansen''s disease)', '(V74.2) Screening examination for leprosy (Hansen''s disease)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.3) Screening examination for diphtheria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.3) Screening examination for diphtheria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V74.3''', NULL, + '(V74.3) Screening examination for diphtheria', '(V74.3) Screening examination for diphtheria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.4) Screening examination for bacterial conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.4) Screening examination for bacterial conjunctivitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V74.4''', NULL, + '(V74.4) Screening examination for bacterial conjunctivitis', '(V74.4) Screening examination for bacterial conjunctivitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.5) Screening examination for venereal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.5) Screening examination for venereal disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V74.5''', NULL, + '(V74.5) Screening examination for venereal disease', '(V74.5) Screening examination for venereal disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.6) Screening examination for yaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.6) Screening examination for yaws\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V74.6''', NULL, + '(V74.6) Screening examination for yaws', '(V74.6) Screening examination for yaws', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.8) Screening examination for other specified bacterial and spirochetal diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.8) Screening examination for other specified bacterial and spirochetal diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V74.8''', NULL, + '(V74.8) Screening examination for other specified bacterial and spirochetal diseases', '(V74.8) Screening examination for other specified bacterial and spirochetal diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.9) Screening examination for unspecified bacterial and spirochetal diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for bacterial and spirochetal diseases (V74)\(V74.9) Screening examination for unspecified bacterial and spirochetal diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V74.9''', NULL, + '(V74.9) Screening examination for unspecified bacterial and spirochetal diseases', '(V74.9) Screening examination for unspecified bacterial and spirochetal diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V75''', NULL, + 'Special screening examination for other infectious diseases (V75)', 'Special screening examination for other infectious diseases (V75)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.0) Screening examination for rickettsial diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.0) Screening examination for rickettsial diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V75.0''', NULL, + '(V75.0) Screening examination for rickettsial diseases', '(V75.0) Screening examination for rickettsial diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.1) Screening examination for malaria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.1) Screening examination for malaria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V75.1''', NULL, + '(V75.1) Screening examination for malaria', '(V75.1) Screening examination for malaria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.2) Screening examination for leishmaniasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.2) Screening examination for leishmaniasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V75.2''', NULL, + '(V75.2) Screening examination for leishmaniasis', '(V75.2) Screening examination for leishmaniasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.3) Screening examination for trypanosomiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.3) Screening examination for trypanosomiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V75.3''', NULL, + '(V75.3) Screening examination for trypanosomiasis', '(V75.3) Screening examination for trypanosomiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.4) Screening examination for mycotic infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.4) Screening examination for mycotic infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V75.4''', NULL, + '(V75.4) Screening examination for mycotic infections', '(V75.4) Screening examination for mycotic infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.5) Screening examination for schistosomiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.5) Screening examination for schistosomiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V75.5''', NULL, + '(V75.5) Screening examination for schistosomiasis', '(V75.5) Screening examination for schistosomiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.6) Screening examination for filariasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.6) Screening examination for filariasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V75.6''', NULL, + '(V75.6) Screening examination for filariasis', '(V75.6) Screening examination for filariasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.7) Screening examination for intestinal helminthiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.7) Screening examination for intestinal helminthiasis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V75.7''', NULL, + '(V75.7) Screening examination for intestinal helminthiasis', '(V75.7) Screening examination for intestinal helminthiasis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.8) Screening examination for other specified parasitic infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.8) Screening examination for other specified parasitic infections\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V75.8''', NULL, + '(V75.8) Screening examination for other specified parasitic infections', '(V75.8) Screening examination for other specified parasitic infections', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.9) Screening examination for unspecified infectious disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for other infectious diseases (V75)\(V75.9) Screening examination for unspecified infectious disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V75.9''', NULL, + '(V75.9) Screening examination for unspecified infectious disease', '(V75.9) Screening examination for unspecified infectious disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73''', NULL, + 'Special screening examination for viral and chlamydial diseases (V73)', 'Special screening examination for viral and chlamydial diseases (V73)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.0) Screening examination for poliomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.0) Screening examination for poliomyelitis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.0''', NULL, + '(V73.0) Screening examination for poliomyelitis', '(V73.0) Screening examination for poliomyelitis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.1) Screening examination for smallpox\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.1) Screening examination for smallpox\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.1''', NULL, + '(V73.1) Screening examination for smallpox', '(V73.1) Screening examination for smallpox', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.2) Screening examination for measles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.2) Screening examination for measles\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.2''', NULL, + '(V73.2) Screening examination for measles', '(V73.2) Screening examination for measles', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.3) Screening examination for rubella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.3) Screening examination for rubella\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.3''', NULL, + '(V73.3) Screening examination for rubella', '(V73.3) Screening examination for rubella', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.4) Screening examination for yellow fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.4) Screening examination for yellow fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.4''', NULL, + '(V73.4) Screening examination for yellow fever', '(V73.4) Screening examination for yellow fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.5) Screening examination for other arthropod-borne viral diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.5) Screening examination for other arthropod-borne viral diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.5''', NULL, + '(V73.5) Screening examination for other arthropod-borne viral diseases', '(V73.5) Screening examination for other arthropod-borne viral diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.6) Screening examination for trachoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\(V73.6) Screening examination for trachoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.6''', NULL, + '(V73.6) Screening examination for trachoma', '(V73.6) Screening examination for trachoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for other specified viral and chlamydial diseases (V73.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for other specified viral and chlamydial diseases (V73.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.8''', NULL, + 'Screening examination for other specified viral and chlamydial diseases (V73.8)', 'Screening examination for other specified viral and chlamydial diseases (V73.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for other specified viral and chlamydial diseases (V73.8)\(V73.81) Special screening examination for Human papillomavirus (HPV)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for other specified viral and chlamydial diseases (V73.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for other specified viral and chlamydial diseases (V73.8)\(V73.81) Special screening examination for Human papillomavirus (HPV)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.81) Special screening examination for Human papillomavirus (HPV''', NULL, + '(V73.81) Special screening examination for Human papillomavirus (HPV)', '(V73.81) Special screening examination for Human papillomavirus (HPV)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for other specified viral and chlamydial diseases (V73.8)\(V73.88) Special screening examination for other specified chlamydial diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for other specified viral and chlamydial diseases (V73.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for other specified viral and chlamydial diseases (V73.8)\(V73.88) Special screening examination for other specified chlamydial diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.88''', NULL, + '(V73.88) Special screening examination for other specified chlamydial diseases', '(V73.88) Special screening examination for other specified chlamydial diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for other specified viral and chlamydial diseases (V73.8)\(V73.89) Special screening examination for other specified viral diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for other specified viral and chlamydial diseases (V73.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for other specified viral and chlamydial diseases (V73.8)\(V73.89) Special screening examination for other specified viral diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.89''', NULL, + '(V73.89) Special screening examination for other specified viral diseases', '(V73.89) Special screening examination for other specified viral diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for unspecified viral disease (V73.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for unspecified viral disease (V73.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.9''', NULL, + 'Screening examination for unspecified viral disease (V73.9)', 'Screening examination for unspecified viral disease (V73.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for unspecified viral disease (V73.9)\(V73.98) Special screening examination for unspecified chlamydial disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for unspecified viral disease (V73.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for unspecified viral disease (V73.9)\(V73.98) Special screening examination for unspecified chlamydial disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.98''', NULL, + '(V73.98) Special screening examination for unspecified chlamydial disease', '(V73.98) Special screening examination for unspecified chlamydial disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for unspecified viral disease (V73.9)\(V73.99) Special screening examination for unspecified viral disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for unspecified viral disease (V73.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening examination for viral and chlamydial diseases (V73)\Screening examination for unspecified viral disease (V73.9)\(V73.99) Special screening examination for unspecified viral disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V73.99''', NULL, + '(V73.99) Special screening examination for unspecified viral disease', '(V73.99) Special screening examination for unspecified viral disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V81''', NULL, + 'Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)', 'Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.0) Screening for ischemic heart disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.0) Screening for ischemic heart disease\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V81.0''', NULL, + '(V81.0) Screening for ischemic heart disease', '(V81.0) Screening for ischemic heart disease', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.1) Screening for hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.1) Screening for hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V81.1''', NULL, + '(V81.1) Screening for hypertension', '(V81.1) Screening for hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.2) Screening for other and unspecified cardiovascular conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.2) Screening for other and unspecified cardiovascular conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V81.2''', NULL, + '(V81.2) Screening for other and unspecified cardiovascular conditions', '(V81.2) Screening for other and unspecified cardiovascular conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.3) Screening for chronic bronchitis and emphysema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.3) Screening for chronic bronchitis and emphysema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V81.3''', NULL, + '(V81.3) Screening for chronic bronchitis and emphysema', '(V81.3) Screening for chronic bronchitis and emphysema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.4) Screening for other and unspecified respiratory conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.4) Screening for other and unspecified respiratory conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V81.4''', NULL, + '(V81.4) Screening for other and unspecified respiratory conditions', '(V81.4) Screening for other and unspecified respiratory conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.5) Screening for nephropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.5) Screening for nephropathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V81.5''', NULL, + '(V81.5) Screening for nephropathy', '(V81.5) Screening for nephropathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.6) Screening for other and unspecified genitourinary conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\(V81.6) Screening for other and unspecified genitourinary conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V81.6''', NULL, + '(V81.6) Screening for other and unspecified genitourinary conditions', '(V81.6) Screening for other and unspecified genitourinary conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V78''', NULL, + 'Special screening for disorders of blood and blood-forming organs (V78)', 'Special screening for disorders of blood and blood-forming organs (V78)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.0) Screening for iron deficiency anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.0) Screening for iron deficiency anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V78.0''', NULL, + '(V78.0) Screening for iron deficiency anemia', '(V78.0) Screening for iron deficiency anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.1) Screening for other and unspecified deficiency anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.1) Screening for other and unspecified deficiency anemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V78.1''', NULL, + '(V78.1) Screening for other and unspecified deficiency anemia', '(V78.1) Screening for other and unspecified deficiency anemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.2) Screening for sickle-cell disease or trait\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.2) Screening for sickle-cell disease or trait\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V78.2''', NULL, + '(V78.2) Screening for sickle-cell disease or trait', '(V78.2) Screening for sickle-cell disease or trait', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.3) Screening for other hemoglobinopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.3) Screening for other hemoglobinopathies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V78.3''', NULL, + '(V78.3) Screening for other hemoglobinopathies', '(V78.3) Screening for other hemoglobinopathies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.8) Screening for other disorders of blood and blood-forming organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.8) Screening for other disorders of blood and blood-forming organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V78.8''', NULL, + '(V78.8) Screening for other disorders of blood and blood-forming organs', '(V78.8) Screening for other disorders of blood and blood-forming organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.9) Screening for unspecified disorder of blood and blood-forming organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for disorders of blood and blood-forming organs (V78)\(V78.9) Screening for unspecified disorder of blood and blood-forming organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V78.9''', NULL, + '(V78.9) Screening for unspecified disorder of blood and blood-forming organs', '(V78.9) Screening for unspecified disorder of blood and blood-forming organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77''', NULL, + 'Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)', 'Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.0) Screening for thyroid disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.0) Screening for thyroid disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.0''', NULL, + '(V77.0) Screening for thyroid disorders', '(V77.0) Screening for thyroid disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.1) Screening for diabetes mellitus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.1) Screening for diabetes mellitus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.1''', NULL, + '(V77.1) Screening for diabetes mellitus', '(V77.1) Screening for diabetes mellitus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.2) Screening for malnutrition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.2) Screening for malnutrition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.2''', NULL, + '(V77.2) Screening for malnutrition', '(V77.2) Screening for malnutrition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.3) Screening for phenylketonuria (PKU)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.3) Screening for phenylketonuria (PKU)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.3) Screening for phenylketonuria (PKU''', NULL, + '(V77.3) Screening for phenylketonuria (PKU)', '(V77.3) Screening for phenylketonuria (PKU)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.4) Screening for galactosemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.4) Screening for galactosemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.4''', NULL, + '(V77.4) Screening for galactosemia', '(V77.4) Screening for galactosemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.5) Screening for gout\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.5) Screening for gout\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.5''', NULL, + '(V77.5) Screening for gout', '(V77.5) Screening for gout', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.6) Screening for cystic fibrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.6) Screening for cystic fibrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.6''', NULL, + '(V77.6) Screening for cystic fibrosis', '(V77.6) Screening for cystic fibrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.7) Screening for other inborn errors of metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.7) Screening for other inborn errors of metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.7''', NULL, + '(V77.7) Screening for other inborn errors of metabolism', '(V77.7) Screening for other inborn errors of metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.8) Screening for obesity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\(V77.8) Screening for obesity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.8''', NULL, + '(V77.8) Screening for obesity', '(V77.8) Screening for obesity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.9''', NULL, + 'Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)', 'Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\(V77.91) Screening for lipoid disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\(V77.91) Screening for lipoid disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.91''', NULL, + '(V77.91) Screening for lipoid disorders', '(V77.91) Screening for lipoid disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\(V77.99) Screening for other and unspecified endocrine, nutritional, metabolic, and immunity disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\(V77.99) Screening for other and unspecified endocrine, nutritional, metabolic, and immunity disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V77.99''', NULL, + '(V77.99) Screening for other and unspecified endocrine, nutritional, metabolic, and immunity disorders', '(V77.99) Screening for other and unspecified endocrine, nutritional, metabolic, and immunity disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76''', NULL, + 'Special screening for malignant neoplasms (V76)', 'Special screening for malignant neoplasms (V76)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\(V76.0) Special screening for malignant neoplasms of respiratory organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\(V76.0) Special screening for malignant neoplasms of respiratory organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.0''', NULL, + '(V76.0) Special screening for malignant neoplasms of respiratory organs', '(V76.0) Special screening for malignant neoplasms of respiratory organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\(V76.2) Screening for malignant neoplasms of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\(V76.2) Screening for malignant neoplasms of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.2''', NULL, + '(V76.2) Screening for malignant neoplasms of cervix', '(V76.2) Screening for malignant neoplasms of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\(V76.3) Screening for malignant neoplasms of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\(V76.3) Screening for malignant neoplasms of bladder\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.3''', NULL, + '(V76.3) Screening for malignant neoplasms of bladder', '(V76.3) Screening for malignant neoplasms of bladder', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\(V76.9) Special screening for unspecified malignant neoplasms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\(V76.9) Special screening for unspecified malignant neoplasms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.9''', NULL, + '(V76.9) Special screening for unspecified malignant neoplasms', '(V76.9) Special screening for unspecified malignant neoplasms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.1''', NULL, + 'Screening examination for malignant neoplasms of the breast (V76.1)', 'Screening examination for malignant neoplasms of the breast (V76.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\(V76.10) Breast screening, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\(V76.10) Breast screening, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.10''', NULL, + '(V76.10) Breast screening, unspecified', '(V76.10) Breast screening, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\(V76.11) Screening mammogram for high-risk patient\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\(V76.11) Screening mammogram for high-risk patient\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.11''', NULL, + '(V76.11) Screening mammogram for high-risk patient', '(V76.11) Screening mammogram for high-risk patient', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\(V76.12) Other screening mammogram\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\(V76.12) Other screening mammogram\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.12''', NULL, + '(V76.12) Other screening mammogram', '(V76.12) Other screening mammogram', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\(V76.19) Other screening breast examination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening examination for malignant neoplasms of the breast (V76.1)\(V76.19) Other screening breast examination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.19''', NULL, + '(V76.19) Other screening breast examination', '(V76.19) Other screening breast examination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of intestine (V76.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of intestine (V76.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.5''', NULL, + 'Screening for malignant neoplasms of intestine (V76.5)', 'Screening for malignant neoplasms of intestine (V76.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of intestine (V76.5)\(V76.50) Special screening for malignant neoplasms for intestine, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of intestine (V76.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of intestine (V76.5)\(V76.50) Special screening for malignant neoplasms for intestine, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.50''', NULL, + '(V76.50) Special screening for malignant neoplasms for intestine, unspecified', '(V76.50) Special screening for malignant neoplasms for intestine, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of intestine (V76.5)\(V76.51) Special screening for malignant neoplasms of colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of intestine (V76.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of intestine (V76.5)\(V76.51) Special screening for malignant neoplasms of colon\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.51''', NULL, + '(V76.51) Special screening for malignant neoplasms of colon', '(V76.51) Special screening for malignant neoplasms of colon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of intestine (V76.5)\(V76.52) Special screening for malignant neoplasms of small intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of intestine (V76.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of intestine (V76.5)\(V76.52) Special screening for malignant neoplasms of small intestine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.52''', NULL, + '(V76.52) Special screening for malignant neoplasms of small intestine', '(V76.52) Special screening for malignant neoplasms of small intestine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.4''', NULL, + 'Screening for malignant neoplasms of other sites (V76.4)', 'Screening for malignant neoplasms of other sites (V76.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.41) Screening for malignant neoplasms of rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.41) Screening for malignant neoplasms of rectum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.41''', NULL, + '(V76.41) Screening for malignant neoplasms of rectum', '(V76.41) Screening for malignant neoplasms of rectum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.42) Screening for malignant neoplasms of oral cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.42) Screening for malignant neoplasms of oral cavity\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.42''', NULL, + '(V76.42) Screening for malignant neoplasms of oral cavity', '(V76.42) Screening for malignant neoplasms of oral cavity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.43) Screening for malignant neoplasms of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.43) Screening for malignant neoplasms of skin\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.43''', NULL, + '(V76.43) Screening for malignant neoplasms of skin', '(V76.43) Screening for malignant neoplasms of skin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.44) Screening for malignant neoplasms of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.44) Screening for malignant neoplasms of prostate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.44''', NULL, + '(V76.44) Screening for malignant neoplasms of prostate', '(V76.44) Screening for malignant neoplasms of prostate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.45) Screening for malignant neoplasms of testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.45) Screening for malignant neoplasms of testis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.45''', NULL, + '(V76.45) Screening for malignant neoplasms of testis', '(V76.45) Screening for malignant neoplasms of testis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.46) Special screening for malignant neoplasms of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.46) Special screening for malignant neoplasms of ovary\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.46''', NULL, + '(V76.46) Special screening for malignant neoplasms of ovary', '(V76.46) Special screening for malignant neoplasms of ovary', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.47) Special screening for malignant neoplasms of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.47) Special screening for malignant neoplasms of vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.47''', NULL, + '(V76.47) Special screening for malignant neoplasms of vagina', '(V76.47) Special screening for malignant neoplasms of vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.49) Special screening for malignant neoplasms of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for malignant neoplasms of other sites (V76.4)\(V76.49) Special screening for malignant neoplasms of other sites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.49''', NULL, + '(V76.49) Special screening for malignant neoplasms of other sites', '(V76.49) Special screening for malignant neoplasms of other sites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for other malignant neoplasms (V76.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for other malignant neoplasms (V76.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.8''', NULL, + 'Screening for other malignant neoplasms (V76.8)', 'Screening for other malignant neoplasms (V76.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for other malignant neoplasms (V76.8)\(V76.81) Special screening for malignant neoplasms of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for other malignant neoplasms (V76.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for other malignant neoplasms (V76.8)\(V76.81) Special screening for malignant neoplasms of nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.81''', NULL, + '(V76.81) Special screening for malignant neoplasms of nervous system', '(V76.81) Special screening for malignant neoplasms of nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for other malignant neoplasms (V76.8)\(V76.89) Special screening for other malignant neoplasms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for other malignant neoplasms (V76.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for malignant neoplasms (V76)\Screening for other malignant neoplasms (V76.8)\(V76.89) Special screening for other malignant neoplasms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V76.89''', NULL, + '(V76.89) Special screening for other malignant neoplasms', '(V76.89) Special screening for other malignant neoplasms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V79''', NULL, + 'Special screening for mental disorders and developmental handicaps (V79)', 'Special screening for mental disorders and developmental handicaps (V79)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.0) Screening for depression\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.0) Screening for depression\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V79.0''', NULL, + '(V79.0) Screening for depression', '(V79.0) Screening for depression', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.1) Screening for alcoholism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.1) Screening for alcoholism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V79.1''', NULL, + '(V79.1) Screening for alcoholism', '(V79.1) Screening for alcoholism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.2) Special screening for intellectual disabilities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.2) Special screening for intellectual disabilities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V79.2''', NULL, + '(V79.2) Special screening for intellectual disabilities', '(V79.2) Special screening for intellectual disabilities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.3) Screening for developmental handicaps in early childhood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.3) Screening for developmental handicaps in early childhood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V79.3''', NULL, + '(V79.3) Screening for developmental handicaps in early childhood', '(V79.3) Screening for developmental handicaps in early childhood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.8) Screening for other specified mental disorders and developmental handicaps\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.8) Screening for other specified mental disorders and developmental handicaps\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V79.8''', NULL, + '(V79.8) Screening for other specified mental disorders and developmental handicaps', '(V79.8) Screening for other specified mental disorders and developmental handicaps', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.9) Screening for unspecified mental disorder and developmental handicap\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for mental disorders and developmental handicaps (V79)\(V79.9) Screening for unspecified mental disorder and developmental handicap\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V79.9''', NULL, + '(V79.9) Screening for unspecified mental disorder and developmental handicap', '(V79.9) Screening for unspecified mental disorder and developmental handicap', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V80''', NULL, + 'Special screening for neurological, eye, and ear diseases (V80)', 'Special screening for neurological, eye, and ear diseases (V80)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\(V80.1) Screening for glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\(V80.1) Screening for glaucoma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V80.1''', NULL, + '(V80.1) Screening for glaucoma', '(V80.1) Screening for glaucoma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\(V80.2) Screening for other eye conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\(V80.2) Screening for other eye conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V80.2''', NULL, + '(V80.2) Screening for other eye conditions', '(V80.2) Screening for other eye conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\(V80.3) Screening for ear diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\(V80.3) Screening for ear diseases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V80.3''', NULL, + '(V80.3) Screening for ear diseases', '(V80.3) Screening for ear diseases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\Screening for neurological conditions (V80.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\Screening for neurological conditions (V80.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V80.0''', NULL, + 'Screening for neurological conditions (V80.0)', 'Screening for neurological conditions (V80.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\Screening for neurological conditions (V80.0)\(V80.01) Special screening for traumatic brain injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\Screening for neurological conditions (V80.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\Screening for neurological conditions (V80.0)\(V80.01) Special screening for traumatic brain injury\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V80.01''', NULL, + '(V80.01) Special screening for traumatic brain injury', '(V80.01) Special screening for traumatic brain injury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\Screening for neurological conditions (V80.0)\(V80.09) Special screening for other neurological conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\Screening for neurological conditions (V80.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for neurological, eye, and ear diseases (V80)\Screening for neurological conditions (V80.0)\(V80.09) Special screening for other neurological conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V80.09''', NULL, + '(V80.09) Special screening for other neurological conditions', '(V80.09) Special screening for other neurological conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82''', NULL, + 'Special screening for other conditions (V82)', 'Special screening for other conditions (V82)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.0) Screening for skin conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.0) Screening for skin conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.0''', NULL, + '(V82.0) Screening for skin conditions', '(V82.0) Screening for skin conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.1) Screening for rheumatoid arthritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.1) Screening for rheumatoid arthritis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.1''', NULL, + '(V82.1) Screening for rheumatoid arthritis', '(V82.1) Screening for rheumatoid arthritis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.2) Screening for other rheumatic disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.2) Screening for other rheumatic disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.2''', NULL, + '(V82.2) Screening for other rheumatic disorders', '(V82.2) Screening for other rheumatic disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.3) Screening for congenital dislocation of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.3) Screening for congenital dislocation of hip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.3''', NULL, + '(V82.3) Screening for congenital dislocation of hip', '(V82.3) Screening for congenital dislocation of hip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.4) Maternal postnatal screening for chromosomal anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.4) Maternal postnatal screening for chromosomal anomalies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.4''', NULL, + '(V82.4) Maternal postnatal screening for chromosomal anomalies', '(V82.4) Maternal postnatal screening for chromosomal anomalies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.5) Screening for chemical poisoning and other contamination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.5) Screening for chemical poisoning and other contamination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.5''', NULL, + '(V82.5) Screening for chemical poisoning and other contamination', '(V82.5) Screening for chemical poisoning and other contamination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.6) Multiphasic screening\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.6) Multiphasic screening\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.6''', NULL, + '(V82.6) Multiphasic screening', '(V82.6) Multiphasic screening', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.9) Screening for unspecified condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\(V82.9) Screening for unspecified condition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.9''', NULL, + '(V82.9) Screening for unspecified condition', '(V82.9) Screening for unspecified condition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Genetic screening (V82.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Genetic screening (V82.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.7''', NULL, + 'Genetic screening (V82.7)', 'Genetic screening (V82.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Genetic screening (V82.7)\(V82.71) Screening for genetic disease carrier status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Genetic screening (V82.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Genetic screening (V82.7)\(V82.71) Screening for genetic disease carrier status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.71''', NULL, + '(V82.71) Screening for genetic disease carrier status', '(V82.71) Screening for genetic disease carrier status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Genetic screening (V82.7)\(V82.79) Other genetic screening\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Genetic screening (V82.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Genetic screening (V82.7)\(V82.79) Other genetic screening\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.79''', NULL, + '(V82.79) Other genetic screening', '(V82.79) Other genetic screening', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Screening for other specified conditions (V82.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Screening for other specified conditions (V82.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.8''', NULL, + 'Screening for other specified conditions (V82.8)', 'Screening for other specified conditions (V82.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Screening for other specified conditions (V82.8)\(V82.81) Special screening for osteoporosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Screening for other specified conditions (V82.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Screening for other specified conditions (V82.8)\(V82.81) Special screening for osteoporosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.81''', NULL, + '(V82.81) Special screening for osteoporosis', '(V82.81) Special screening for osteoporosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Screening for other specified conditions (V82.8)\(V82.89) Special screening for other specified conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Screening for other specified conditions (V82.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\Special screening for other conditions (V82)\Screening for other specified conditions (V82.8)\(V82.89) Special screening for other specified conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V82.89''', NULL, + '(V82.89) Special screening for other specified conditions', '(V82.89) Special screening for other specified conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''v90'' AND ''v90.99''', NULL, + 'Retained foreign body (v90-v90.99)', 'Retained foreign body (v90-v90.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V90''', NULL, + 'Retained foreign body (V90)', 'Retained foreign body (V90)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\(V90.9) Retained foreign body, unspecified material\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\(V90.9) Retained foreign body, unspecified material\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V90.9''', NULL, + '(V90.9) Retained foreign body, unspecified material', '(V90.9) Retained foreign body, unspecified material', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Other specified retained foreign body (V90.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Other specified retained foreign body (V90.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V90.8''', NULL, + 'Other specified retained foreign body (V90.8)', 'Other specified retained foreign body (V90.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Other specified retained foreign body (V90.8)\(V90.81) Retained glass fragments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Other specified retained foreign body (V90.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Other specified retained foreign body (V90.8)\(V90.81) Retained glass fragments\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V90.81''', NULL, + '(V90.81) Retained glass fragments', '(V90.81) Retained glass fragments', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Other specified retained foreign body (V90.8)\(V90.89) Other specified retained foreign body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Other specified retained foreign body (V90.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Other specified retained foreign body (V90.8)\(V90.89) Other specified retained foreign body\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V90.89''', NULL, + '(V90.89) Other specified retained foreign body', '(V90.89) Other specified retained foreign body', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained metal fragments (V90.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained metal fragments (V90.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V90.1''', NULL, + 'Retained metal fragments (V90.1)', 'Retained metal fragments (V90.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained metal fragments (V90.1)\(V90.10) Retained metal fragments, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained metal fragments (V90.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained metal fragments (V90.1)\(V90.10) Retained metal fragments, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V90.10''', NULL, + '(V90.10) Retained metal fragments, unspecified', '(V90.10) Retained metal fragments, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained metal fragments (V90.1)\(V90.12) Retained nonmagnetic metal fragments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained metal fragments (V90.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained metal fragments (V90.1)\(V90.12) Retained nonmagnetic metal fragments\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V90.12''', NULL, + '(V90.12) Retained nonmagnetic metal fragments', '(V90.12) Retained nonmagnetic metal fragments', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained organic fragments (V90.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained organic fragments (V90.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V90.3''', NULL, + 'Retained organic fragments (V90.3)', 'Retained organic fragments (V90.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained organic fragments (V90.3)\(V90.33) Retained wood fragments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained organic fragments (V90.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\Retained foreign body (v90-v90.99)\Retained foreign body (V90)\Retained organic fragments (V90.3)\(V90.33) Retained wood fragments\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''V90.33''', NULL, + '(V90.33) Retained wood fragments', '(V90.33) Retained wood fragments', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''780'' AND ''799.99''', NULL, + 'Symptoms, signs, and ill-defined conditions (780-799.99)', 'Symptoms, signs, and ill-defined conditions (780-799.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''797'' AND ''799.99''', NULL, + 'Ill-Defined and unknown causes of morbidity and mortality (797-799.99)', 'Ill-Defined and unknown causes of morbidity and mortality (797-799.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\(797) Senility without mention of psychosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\(797) Senility without mention of psychosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''797''', NULL, + '(797) Senility without mention of psychosis', '(797) Senility without mention of psychosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799''', NULL, + 'Other ill-defined and unknown causes of morbidity and mortality (799)', 'Other ill-defined and unknown causes of morbidity and mortality (799)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\(799.1) Respiratory arrest\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\(799.1) Respiratory arrest\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.1''', NULL, + '(799.1) Respiratory arrest', '(799.1) Respiratory arrest', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\(799.3) Debility, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\(799.3) Debility, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.3''', NULL, + '(799.3) Debility, unspecified', '(799.3) Debility, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\(799.4) Cachexia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\(799.4) Cachexia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.4''', NULL, + '(799.4) Cachexia', '(799.4) Cachexia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\(799.9) Other unknown and unspecified cause of morbidity and mortality\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\(799.9) Other unknown and unspecified cause of morbidity and mortality\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.9''', NULL, + '(799.9) Other unknown and unspecified cause of morbidity and mortality', '(799.9) Other unknown and unspecified cause of morbidity and mortality', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Asphyxia and hypoxemia (799.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Asphyxia and hypoxemia (799.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.0''', NULL, + 'Asphyxia and hypoxemia (799.0)', 'Asphyxia and hypoxemia (799.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Asphyxia and hypoxemia (799.0)\(799.01) Asphyxia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Asphyxia and hypoxemia (799.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Asphyxia and hypoxemia (799.0)\(799.01) Asphyxia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.01''', NULL, + '(799.01) Asphyxia', '(799.01) Asphyxia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Asphyxia and hypoxemia (799.0)\(799.02) Hypoxemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Asphyxia and hypoxemia (799.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Asphyxia and hypoxemia (799.0)\(799.02) Hypoxemia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.02''', NULL, + '(799.02) Hypoxemia', '(799.02) Hypoxemia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Other ill-defined conditions (799.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Other ill-defined conditions (799.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.8''', NULL, + 'Other ill-defined conditions (799.8)', 'Other ill-defined conditions (799.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Other ill-defined conditions (799.8)\(799.81) Decreased libido\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Other ill-defined conditions (799.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Other ill-defined conditions (799.8)\(799.81) Decreased libido\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.81''', NULL, + '(799.81) Decreased libido', '(799.81) Decreased libido', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Other ill-defined conditions (799.8)\(799.82) Apparent life threatening event in infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Other ill-defined conditions (799.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Other ill-defined conditions (799.8)\(799.82) Apparent life threatening event in infant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.82''', NULL, + '(799.82) Apparent life threatening event in infant', '(799.82) Apparent life threatening event in infant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Other ill-defined conditions (799.8)\(799.89) Other ill-defined conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Other ill-defined conditions (799.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Other ill-defined conditions (799.8)\(799.89) Other ill-defined conditions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.89''', NULL, + '(799.89) Other ill-defined conditions', '(799.89) Other ill-defined conditions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.5''', NULL, + 'Signs and symptoms involving cognition (799.5)', 'Signs and symptoms involving cognition (799.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\(799.51) Attention or concentration deficit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\(799.51) Attention or concentration deficit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.51''', NULL, + '(799.51) Attention or concentration deficit', '(799.51) Attention or concentration deficit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\(799.52) Cognitive communication deficit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\(799.52) Cognitive communication deficit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.52''', NULL, + '(799.52) Cognitive communication deficit', '(799.52) Cognitive communication deficit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\(799.53) Visuospatial deficit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\(799.53) Visuospatial deficit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.53''', NULL, + '(799.53) Visuospatial deficit', '(799.53) Visuospatial deficit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\(799.55) Frontal lobe and executive function deficit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\(799.55) Frontal lobe and executive function deficit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.55''', NULL, + '(799.55) Frontal lobe and executive function deficit', '(799.55) Frontal lobe and executive function deficit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\(799.59) Other signs and symptoms involving cognition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving cognition (799.5)\(799.59) Other signs and symptoms involving cognition\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.59''', NULL, + '(799.59) Other signs and symptoms involving cognition', '(799.59) Other signs and symptoms involving cognition', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.2''', NULL, + 'Signs and symptoms involving emotional state (799.2)', 'Signs and symptoms involving emotional state (799.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.21) Nervousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.21) Nervousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.21''', NULL, + '(799.21) Nervousness', '(799.21) Nervousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.22) Irritability\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.22) Irritability\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.22''', NULL, + '(799.22) Irritability', '(799.22) Irritability', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.23) Impulsiveness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.23) Impulsiveness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.23''', NULL, + '(799.23) Impulsiveness', '(799.23) Impulsiveness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.24) Emotional lability\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.24) Emotional lability\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.24''', NULL, + '(799.24) Emotional lability', '(799.24) Emotional lability', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.25) Demoralization and apathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.25) Demoralization and apathy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.25''', NULL, + '(799.25) Demoralization and apathy', '(799.25) Demoralization and apathy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.29) Other signs and symptoms involving emotional state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Other ill-defined and unknown causes of morbidity and mortality (799)\Signs and symptoms involving emotional state (799.2)\(799.29) Other signs and symptoms involving emotional state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''799.29''', NULL, + '(799.29) Other signs and symptoms involving emotional state', '(799.29) Other signs and symptoms involving emotional state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''798''', NULL, + 'Sudden death, cause unknown (798)', 'Sudden death, cause unknown (798)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\(798.0) Sudden infant death syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\(798.0) Sudden infant death syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''798.0''', NULL, + '(798.0) Sudden infant death syndrome', '(798.0) Sudden infant death syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\(798.1) Instantaneous death\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\(798.1) Instantaneous death\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''798.1''', NULL, + '(798.1) Instantaneous death', '(798.1) Instantaneous death', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\(798.2) Death occurring in less than 24 hours from onset of symptoms, not otherwise explained\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\(798.2) Death occurring in less than 24 hours from onset of symptoms, not otherwise explained\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''798.2''', NULL, + '(798.2) Death occurring in less than 24 hours from onset of symptoms, not otherwise explained', '(798.2) Death occurring in less than 24 hours from onset of symptoms, not otherwise explained', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\(798.9) Unattended death\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\Sudden death, cause unknown (798)\(798.9) Unattended death\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''798.9''', NULL, + '(798.9) Unattended death', '(798.9) Unattended death', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''790'' AND ''796.99''', NULL, + 'Nonspecific abnormal findings (790-796.99)', 'Nonspecific abnormal findings (790-796.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''abnormal) findings on radiological and other examination of body structure (793''', NULL, + 'Nonspecific (abnormal) findings on radiological and other examination of body structure (793)', 'Nonspecific (abnormal) findings on radiological and other examination of body structure (793)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.0) Nonspecific (abnormal) findings on radiological and other examination of skull and head\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.0) Nonspecific (abnormal) findings on radiological and other examination of skull and head\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.0) Nonspecific (abnormal''', NULL, + '(793.0) Nonspecific (abnormal) findings on radiological and other examination of skull and head', '(793.0) Nonspecific (abnormal) findings on radiological and other examination of skull and head', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.2) Nonspecific (abnormal) findings on radiological and other examination of other intrathoracic organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.2) Nonspecific (abnormal) findings on radiological and other examination of other intrathoracic organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.2) Nonspecific (abnormal''', NULL, + '(793.2) Nonspecific (abnormal) findings on radiological and other examination of other intrathoracic organs', '(793.2) Nonspecific (abnormal) findings on radiological and other examination of other intrathoracic organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.3) Nonspecific (abnormal) findings on radiological and other examination of biliary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.3) Nonspecific (abnormal) findings on radiological and other examination of biliary tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.3) Nonspecific (abnormal''', NULL, + '(793.3) Nonspecific (abnormal) findings on radiological and other examination of biliary tract', '(793.3) Nonspecific (abnormal) findings on radiological and other examination of biliary tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.4) Nonspecific (abnormal) findings on radiological and other examination of gastrointestinal tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.4) Nonspecific (abnormal) findings on radiological and other examination of gastrointestinal tract\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.4) Nonspecific (abnormal''', NULL, + '(793.4) Nonspecific (abnormal) findings on radiological and other examination of gastrointestinal tract', '(793.4) Nonspecific (abnormal) findings on radiological and other examination of gastrointestinal tract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.5) Nonspecific (abnormal) findings on radiological and other examination of genitourinary organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.5) Nonspecific (abnormal) findings on radiological and other examination of genitourinary organs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.5) Nonspecific (abnormal''', NULL, + '(793.5) Nonspecific (abnormal) findings on radiological and other examination of genitourinary organs', '(793.5) Nonspecific (abnormal) findings on radiological and other examination of genitourinary organs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.6) Nonspecific (abnormal) findings on radiological and other examination of abdominal area, including retroperitoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.6) Nonspecific (abnormal) findings on radiological and other examination of abdominal area, including retroperitoneum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.6) Nonspecific (abnormal''', NULL, + '(793.6) Nonspecific (abnormal) findings on radiological and other examination of abdominal area, including retroperitoneum', '(793.6) Nonspecific (abnormal) findings on radiological and other examination of abdominal area, including retroperitoneum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.7) Nonspecific (abnormal) findings on radiological and other examination of musculoskeletal system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\(793.7) Nonspecific (abnormal) findings on radiological and other examination of musculoskeletal system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.7) Nonspecific (abnormal''', NULL, + '(793.7) Nonspecific (abnormal) findings on radiological and other examination of musculoskeletal system', '(793.7) Nonspecific (abnormal) findings on radiological and other examination of musculoskeletal system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.8''', NULL, + 'Nonspecific abnormal findings on radiological and other examination of breast (793.8)', 'Nonspecific abnormal findings on radiological and other examination of breast (793.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\(793.80) Abnormal mammogram, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\(793.80) Abnormal mammogram, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.80''', NULL, + '(793.80) Abnormal mammogram, unspecified', '(793.80) Abnormal mammogram, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\(793.81) Mammographic microcalcification\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\(793.81) Mammographic microcalcification\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.81''', NULL, + '(793.81) Mammographic microcalcification', '(793.81) Mammographic microcalcification', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\(793.82) Inconclusive mammogram\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\(793.82) Inconclusive mammogram\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.82''', NULL, + '(793.82) Inconclusive mammogram', '(793.82) Inconclusive mammogram', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\(793.89) Other (abnormal) findings on radiological examination of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\(793.89) Other (abnormal) findings on radiological examination of breast\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.89) Other (abnormal''', NULL, + '(793.89) Other (abnormal) findings on radiological examination of breast', '(793.89) Other (abnormal) findings on radiological examination of breast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.1''', NULL, + 'Nonspecific abnormal findings on radiological and other examination of lung field (793.1)', 'Nonspecific abnormal findings on radiological and other examination of lung field (793.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\(793.11) Solitary pulmonary nodule\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\(793.11) Solitary pulmonary nodule\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.11''', NULL, + '(793.11) Solitary pulmonary nodule', '(793.11) Solitary pulmonary nodule', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\(793.19) Other nonspecific abnormal finding of lung field\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\(793.19) Other nonspecific abnormal finding of lung field\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.19''', NULL, + '(793.19) Other nonspecific abnormal finding of lung field', '(793.19) Other nonspecific abnormal finding of lung field', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.9''', NULL, + 'Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)', 'Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\(793.91) Image test inconclusive due to excess body fat\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\(793.91) Image test inconclusive due to excess body fat\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.91''', NULL, + '(793.91) Image test inconclusive due to excess body fat', '(793.91) Image test inconclusive due to excess body fat', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\(793.99) Other nonspecific (abnormal) findings on radiological and other examinations of body structure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\(793.99) Other nonspecific (abnormal) findings on radiological and other examinations of body structure\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''793.99) Other nonspecific (abnormal''', NULL, + '(793.99) Other nonspecific (abnormal) findings on radiological and other examinations of body structure', '(793.99) Other nonspecific (abnormal) findings on radiological and other examinations of body structure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''792''', NULL, + 'Nonspecific abnormal findings in other body substances (792)', 'Nonspecific abnormal findings in other body substances (792)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.0) Nonspecific abnormal findings in cerebrospinal fluid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.0) Nonspecific abnormal findings in cerebrospinal fluid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''792.0''', NULL, + '(792.0) Nonspecific abnormal findings in cerebrospinal fluid', '(792.0) Nonspecific abnormal findings in cerebrospinal fluid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.1) Nonspecific abnormal findings in stool contents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.1) Nonspecific abnormal findings in stool contents\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''792.1''', NULL, + '(792.1) Nonspecific abnormal findings in stool contents', '(792.1) Nonspecific abnormal findings in stool contents', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.2) Nonspecific abnormal findings in semen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.2) Nonspecific abnormal findings in semen\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''792.2''', NULL, + '(792.2) Nonspecific abnormal findings in semen', '(792.2) Nonspecific abnormal findings in semen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.3) Nonspecific abnormal findings in amniotic fluid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.3) Nonspecific abnormal findings in amniotic fluid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''792.3''', NULL, + '(792.3) Nonspecific abnormal findings in amniotic fluid', '(792.3) Nonspecific abnormal findings in amniotic fluid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.4) Nonspecific abnormal findings in saliva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.4) Nonspecific abnormal findings in saliva\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''792.4''', NULL, + '(792.4) Nonspecific abnormal findings in saliva', '(792.4) Nonspecific abnormal findings in saliva', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.5) Cloudy (hemodialysis) (peritoneal) dialysis effluent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.5) Cloudy (hemodialysis) (peritoneal) dialysis effluent\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''792.5) Cloudy (hemodialysis) (peritoneal''', NULL, + '(792.5) Cloudy (hemodialysis) (peritoneal) dialysis effluent', '(792.5) Cloudy (hemodialysis) (peritoneal) dialysis effluent', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.9) Other nonspecific abnormal findings in body substances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal findings in other body substances (792)\(792.9) Other nonspecific abnormal findings in body substances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''792.9''', NULL, + '(792.9) Other nonspecific abnormal findings in body substances', '(792.9) Other nonspecific abnormal findings in body substances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794''', NULL, + 'Nonspecific abnormal results of function studies (794)', 'Nonspecific abnormal results of function studies (794)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.2) Nonspecific abnormal results of pulmonary function study\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.2) Nonspecific abnormal results of pulmonary function study\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.2''', NULL, + '(794.2) Nonspecific abnormal results of pulmonary function study', '(794.2) Nonspecific abnormal results of pulmonary function study', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.4) Nonspecific abnormal results of function study of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.4) Nonspecific abnormal results of function study of kidney\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.4''', NULL, + '(794.4) Nonspecific abnormal results of function study of kidney', '(794.4) Nonspecific abnormal results of function study of kidney', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.5) Nonspecific abnormal results of function study of thyroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.5) Nonspecific abnormal results of function study of thyroid\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.5''', NULL, + '(794.5) Nonspecific abnormal results of function study of thyroid', '(794.5) Nonspecific abnormal results of function study of thyroid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.6) Nonspecific abnormal results of other endocrine function study\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.6) Nonspecific abnormal results of other endocrine function study\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.6''', NULL, + '(794.6) Nonspecific abnormal results of other endocrine function study', '(794.6) Nonspecific abnormal results of other endocrine function study', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.7) Nonspecific abnormal results of function study of basal metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.7) Nonspecific abnormal results of function study of basal metabolism\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.7''', NULL, + '(794.7) Nonspecific abnormal results of function study of basal metabolism', '(794.7) Nonspecific abnormal results of function study of basal metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.8) Nonspecific abnormal results of function study of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.8) Nonspecific abnormal results of function study of liver\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.8''', NULL, + '(794.8) Nonspecific abnormal results of function study of liver', '(794.8) Nonspecific abnormal results of function study of liver', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.9) Nonspecific abnormal results of other specified function study\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\(794.9) Nonspecific abnormal results of other specified function study\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.9''', NULL, + '(794.9) Nonspecific abnormal results of other specified function study', '(794.9) Nonspecific abnormal results of other specified function study', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.0''', NULL, + 'Nonspecific abnormal results of function study of brain and central nervous system (794.0)', 'Nonspecific abnormal results of function study of brain and central nervous system (794.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\(794.00) Abnormal function study of brain and central nervous system, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\(794.00) Abnormal function study of brain and central nervous system, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.00''', NULL, + '(794.00) Abnormal function study of brain and central nervous system, unspecified', '(794.00) Abnormal function study of brain and central nervous system, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\(794.01) Nonspecific abnormal echoencephalogram\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\(794.01) Nonspecific abnormal echoencephalogram\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.01''', NULL, + '(794.01) Nonspecific abnormal echoencephalogram', '(794.01) Nonspecific abnormal echoencephalogram', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\(794.02) Nonspecific abnormal electroencephalogram [EEG]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\(794.02) Nonspecific abnormal electroencephalogram [EEG]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.02''', NULL, + '(794.02) Nonspecific abnormal electroencephalogram [EEG]', '(794.02) Nonspecific abnormal electroencephalogram [EEG]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\(794.09) Other nonspecific abnormal results of function study of brain and central nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\(794.09) Other nonspecific abnormal results of function study of brain and central nervous system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.09''', NULL, + '(794.09) Other nonspecific abnormal results of function study of brain and central nervous system', '(794.09) Other nonspecific abnormal results of function study of brain and central nervous system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.1''', NULL, + 'Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)', 'Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.10) Nonspecific abnormal response to nerve stimulation, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.10) Nonspecific abnormal response to nerve stimulation, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.10''', NULL, + '(794.10) Nonspecific abnormal response to nerve stimulation, unspecified', '(794.10) Nonspecific abnormal response to nerve stimulation, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.11) Nonspecific abnormal retinal function studies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.11) Nonspecific abnormal retinal function studies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.11''', NULL, + '(794.11) Nonspecific abnormal retinal function studies', '(794.11) Nonspecific abnormal retinal function studies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.12) Nonspecific abnormal electro-oculogram [EOG]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.12) Nonspecific abnormal electro-oculogram [EOG]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.12''', NULL, + '(794.12) Nonspecific abnormal electro-oculogram [EOG]', '(794.12) Nonspecific abnormal electro-oculogram [EOG]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.13) Nonspecific abnormal visually evoked potential\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.13) Nonspecific abnormal visually evoked potential\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.13''', NULL, + '(794.13) Nonspecific abnormal visually evoked potential', '(794.13) Nonspecific abnormal visually evoked potential', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.14) Nonspecific abnormal oculomotor studies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.14) Nonspecific abnormal oculomotor studies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.14''', NULL, + '(794.14) Nonspecific abnormal oculomotor studies', '(794.14) Nonspecific abnormal oculomotor studies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.15) Nonspecific abnormal auditory function studies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.15) Nonspecific abnormal auditory function studies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.15''', NULL, + '(794.15) Nonspecific abnormal auditory function studies', '(794.15) Nonspecific abnormal auditory function studies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.16) Nonspecific abnormal vestibular function studies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.16) Nonspecific abnormal vestibular function studies\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.16''', NULL, + '(794.16) Nonspecific abnormal vestibular function studies', '(794.16) Nonspecific abnormal vestibular function studies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.17) Nonspecific abnormal electromyogram [EMG]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.17) Nonspecific abnormal electromyogram [EMG]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.17''', NULL, + '(794.17) Nonspecific abnormal electromyogram [EMG]', '(794.17) Nonspecific abnormal electromyogram [EMG]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.19) Other nonspecific abnormal results of function study of peripheral nervous system and special senses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\(794.19) Other nonspecific abnormal results of function study of peripheral nervous system and special senses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.19''', NULL, + '(794.19) Other nonspecific abnormal results of function study of peripheral nervous system and special senses', '(794.19) Other nonspecific abnormal results of function study of peripheral nervous system and special senses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study, cardiovascular (794.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study, cardiovascular (794.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.3''', NULL, + 'Nonspecific abnormal results of function study, cardiovascular (794.3)', 'Nonspecific abnormal results of function study, cardiovascular (794.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study, cardiovascular (794.3)\(794.30) Abnormal cardiovascular function study, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study, cardiovascular (794.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study, cardiovascular (794.3)\(794.30) Abnormal cardiovascular function study, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.30''', NULL, + '(794.30) Abnormal cardiovascular function study, unspecified', '(794.30) Abnormal cardiovascular function study, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study, cardiovascular (794.3)\(794.31) Nonspecific abnormal electrocardiogram [ECG] [EKG]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study, cardiovascular (794.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study, cardiovascular (794.3)\(794.31) Nonspecific abnormal electrocardiogram [ECG] [EKG]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.31''', NULL, + '(794.31) Nonspecific abnormal electrocardiogram [ECG] [EKG]', '(794.31) Nonspecific abnormal electrocardiogram [ECG] [EKG]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study, cardiovascular (794.3)\(794.39) Other nonspecific abnormal results of function study of cardiovascular system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study, cardiovascular (794.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific abnormal results of function studies (794)\Nonspecific abnormal results of function study, cardiovascular (794.3)\(794.39) Other nonspecific abnormal results of function study of cardiovascular system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''794.39''', NULL, + '(794.39) Other nonspecific abnormal results of function study of cardiovascular system', '(794.39) Other nonspecific abnormal results of function study of cardiovascular system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790''', NULL, + 'Nonspecific findings on examination of blood (790)', 'Nonspecific findings on examination of blood (790)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.1) Elevated sedimentation rate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.1) Elevated sedimentation rate\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.1''', NULL, + '(790.1) Elevated sedimentation rate', '(790.1) Elevated sedimentation rate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.3) Excessive blood level of alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.3) Excessive blood level of alcohol\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.3''', NULL, + '(790.3) Excessive blood level of alcohol', '(790.3) Excessive blood level of alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.4) Nonspecific elevation of levels of transaminase or lactic acid dehydrogenase [LDH]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.4) Nonspecific elevation of levels of transaminase or lactic acid dehydrogenase [LDH]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.4''', NULL, + '(790.4) Nonspecific elevation of levels of transaminase or lactic acid dehydrogenase [LDH]', '(790.4) Nonspecific elevation of levels of transaminase or lactic acid dehydrogenase [LDH]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.5) Other nonspecific abnormal serum enzyme levels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.5) Other nonspecific abnormal serum enzyme levels\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.5''', NULL, + '(790.5) Other nonspecific abnormal serum enzyme levels', '(790.5) Other nonspecific abnormal serum enzyme levels', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.6) Other abnormal blood chemistry\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.6) Other abnormal blood chemistry\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.6''', NULL, + '(790.6) Other abnormal blood chemistry', '(790.6) Other abnormal blood chemistry', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.7) Bacteremia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.7) Bacteremia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.7''', NULL, + '(790.7) Bacteremia', '(790.7) Bacteremia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.8) Viremia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\(790.8) Viremia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.8''', NULL, + '(790.8) Viremia, unspecified', '(790.8) Viremia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormal glucose (790.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormal glucose (790.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.2''', NULL, + 'Abnormal glucose (790.2)', 'Abnormal glucose (790.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormal glucose (790.2)\(790.21) Impaired fasting glucose\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormal glucose (790.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormal glucose (790.2)\(790.21) Impaired fasting glucose\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.21''', NULL, + '(790.21) Impaired fasting glucose', '(790.21) Impaired fasting glucose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormal glucose (790.2)\(790.22) Impaired glucose tolerance test (oral)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormal glucose (790.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormal glucose (790.2)\(790.22) Impaired glucose tolerance test (oral)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.22) Impaired glucose tolerance test (oral''', NULL, + '(790.22) Impaired glucose tolerance test (oral)', '(790.22) Impaired glucose tolerance test (oral)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormal glucose (790.2)\(790.29) Other abnormal glucose\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormal glucose (790.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormal glucose (790.2)\(790.29) Other abnormal glucose\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.29''', NULL, + '(790.29) Other abnormal glucose', '(790.29) Other abnormal glucose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormality of red blood cells (790.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormality of red blood cells (790.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.0''', NULL, + 'Abnormality of red blood cells (790.0)', 'Abnormality of red blood cells (790.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormality of red blood cells (790.0)\(790.01) Precipitous drop in hematocrit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormality of red blood cells (790.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormality of red blood cells (790.0)\(790.01) Precipitous drop in hematocrit\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.01''', NULL, + '(790.01) Precipitous drop in hematocrit', '(790.01) Precipitous drop in hematocrit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormality of red blood cells (790.0)\(790.09) Other abnormality of red blood cells\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormality of red blood cells (790.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Abnormality of red blood cells (790.0)\(790.09) Other abnormality of red blood cells\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.09''', NULL, + '(790.09) Other abnormality of red blood cells', '(790.09) Other abnormality of red blood cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.9''', NULL, + 'Other nonspecific findings on examination of blood (790.9)', 'Other nonspecific findings on examination of blood (790.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.91) Abnormal arterial blood gases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.91) Abnormal arterial blood gases\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.91''', NULL, + '(790.91) Abnormal arterial blood gases', '(790.91) Abnormal arterial blood gases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.92) Abnormal coagulation profile\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.92) Abnormal coagulation profile\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.92''', NULL, + '(790.92) Abnormal coagulation profile', '(790.92) Abnormal coagulation profile', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.93) Elevated prostate specific antigen [PSA]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.93) Elevated prostate specific antigen [PSA]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.93''', NULL, + '(790.93) Elevated prostate specific antigen [PSA]', '(790.93) Elevated prostate specific antigen [PSA]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.94) Euthyroid sick syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.94) Euthyroid sick syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.94''', NULL, + '(790.94) Euthyroid sick syndrome', '(790.94) Euthyroid sick syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.95) Elevated C-reactive protein (CRP)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.95) Elevated C-reactive protein (CRP)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''790.95) Elevated C'' AND ''reactive protein (CRP''', NULL, + '(790.95) Elevated C-reactive protein (CRP)', '(790.95) Elevated C-reactive protein (CRP)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.99) Other nonspecific findings on examination of blood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of blood (790)\Other nonspecific findings on examination of blood (790.9)\(790.99) Other nonspecific findings on examination of blood\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''790.99''', NULL, + '(790.99) Other nonspecific findings on examination of blood', '(790.99) Other nonspecific findings on examination of blood', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''791''', NULL, + 'Nonspecific findings on examination of urine (791)', 'Nonspecific findings on examination of urine (791)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.0) Proteinuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.0) Proteinuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''791.0''', NULL, + '(791.0) Proteinuria', '(791.0) Proteinuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.1) Chyluria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.1) Chyluria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''791.1''', NULL, + '(791.1) Chyluria', '(791.1) Chyluria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.2) Hemoglobinuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.2) Hemoglobinuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''791.2''', NULL, + '(791.2) Hemoglobinuria', '(791.2) Hemoglobinuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.3) Myoglobinuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.3) Myoglobinuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''791.3''', NULL, + '(791.3) Myoglobinuria', '(791.3) Myoglobinuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.4) Biliuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.4) Biliuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''791.4''', NULL, + '(791.4) Biliuria', '(791.4) Biliuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.5) Glycosuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.5) Glycosuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''791.5''', NULL, + '(791.5) Glycosuria', '(791.5) Glycosuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.6) Acetonuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.6) Acetonuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''791.6''', NULL, + '(791.6) Acetonuria', '(791.6) Acetonuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.7) Other cells and casts in urine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.7) Other cells and casts in urine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''791.7''', NULL, + '(791.7) Other cells and casts in urine', '(791.7) Other cells and casts in urine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.9) Other nonspecific findings on examination of urine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Nonspecific findings on examination of urine (791)\(791.9) Other nonspecific findings on examination of urine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''791.9''', NULL, + '(791.9) Other nonspecific findings on examination of urine', '(791.9) Other nonspecific findings on examination of urine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795''', NULL, + 'Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)', 'Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\(795.2) Nonspecific abnormal findings on chromosomal analysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\(795.2) Nonspecific abnormal findings on chromosomal analysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.2''', NULL, + '(795.2) Nonspecific abnormal findings on chromosomal analysis', '(795.2) Nonspecific abnormal findings on chromosomal analysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\(795.4) Other nonspecific abnormal histological findings\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\(795.4) Other nonspecific abnormal histological findings\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.4''', NULL, + '(795.4) Other nonspecific abnormal histological findings', '(795.4) Other nonspecific abnormal histological findings', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\(795.6) False positive serological test for syphilis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\(795.6) False positive serological test for syphilis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.6''', NULL, + '(795.6) False positive serological test for syphilis', '(795.6) False positive serological test for syphilis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.0''', NULL, + 'Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)', 'Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.00) Abnormal glandular Papanicolaou smear of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.00) Abnormal glandular Papanicolaou smear of cervix\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.00''', NULL, + '(795.00) Abnormal glandular Papanicolaou smear of cervix', '(795.00) Abnormal glandular Papanicolaou smear of cervix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.01) Papanicolaou smear of cervix with atypical squamous cells of undetermined significance (ASC-US)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.01) Papanicolaou smear of cervix with atypical squamous cells of undetermined significance (ASC-US)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''795.01) Papanicolaou smear of cervix with atypical squamous cells of undetermined significance (ASC'' AND ''US''', NULL, + '(795.01) Papanicolaou smear of cervix with atypical squamous cells of undetermined significance (ASC-US)', '(795.01) Papanicolaou smear of cervix with atypical squamous cells of undetermined significance (ASC-US)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.02) Papanicolaou smear of cervix with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.02) Papanicolaou smear of cervix with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''795.02) Papanicolaou smear of cervix with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC'' AND ''H''', NULL, + '(795.02) Papanicolaou smear of cervix with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)', '(795.02) Papanicolaou smear of cervix with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.03) Papanicolaou smear of cervix with low grade squamous intraepithelial lesion (LGSIL)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.03) Papanicolaou smear of cervix with low grade squamous intraepithelial lesion (LGSIL)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.03) Papanicolaou smear of cervix with low grade squamous intraepithelial lesion (LGSIL''', NULL, + '(795.03) Papanicolaou smear of cervix with low grade squamous intraepithelial lesion (LGSIL)', '(795.03) Papanicolaou smear of cervix with low grade squamous intraepithelial lesion (LGSIL)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.04) Papanicolaou smear of cervix with high grade squamous intraepithelial lesion (HGSIL)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.04) Papanicolaou smear of cervix with high grade squamous intraepithelial lesion (HGSIL)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.04) Papanicolaou smear of cervix with high grade squamous intraepithelial lesion (HGSIL''', NULL, + '(795.04) Papanicolaou smear of cervix with high grade squamous intraepithelial lesion (HGSIL)', '(795.04) Papanicolaou smear of cervix with high grade squamous intraepithelial lesion (HGSIL)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.05) Cervical high risk human papillomavirus (HPV) DNA test positive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.05) Cervical high risk human papillomavirus (HPV) DNA test positive\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.05) Cervical high risk human papillomavirus (HPV''', NULL, + '(795.05) Cervical high risk human papillomavirus (HPV) DNA test positive', '(795.05) Cervical high risk human papillomavirus (HPV) DNA test positive', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.06) Papanicolaou smear of cervix with cytologic evidence of malignancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.06) Papanicolaou smear of cervix with cytologic evidence of malignancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.06''', NULL, + '(795.06) Papanicolaou smear of cervix with cytologic evidence of malignancy', '(795.06) Papanicolaou smear of cervix with cytologic evidence of malignancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.07) Satisfactory cervical smear but lacking transformation zone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.07) Satisfactory cervical smear but lacking transformation zone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.07''', NULL, + '(795.07) Satisfactory cervical smear but lacking transformation zone', '(795.07) Satisfactory cervical smear but lacking transformation zone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.08) Unsatisfactory cervical cytology smear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.08) Unsatisfactory cervical cytology smear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.08''', NULL, + '(795.08) Unsatisfactory cervical cytology smear', '(795.08) Unsatisfactory cervical cytology smear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.09) Other abnormal Papanicolaou smear of cervix and cervical HPV\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\(795.09) Other abnormal Papanicolaou smear of cervix and cervical HPV\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.09''', NULL, + '(795.09) Other abnormal Papanicolaou smear of cervix and cervical HPV', '(795.09) Other abnormal Papanicolaou smear of cervix and cervical HPV', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.1''', NULL, + 'Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)', 'Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.10) Abnormal glandular Papanicolaou smear of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.10) Abnormal glandular Papanicolaou smear of vagina\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.10''', NULL, + '(795.10) Abnormal glandular Papanicolaou smear of vagina', '(795.10) Abnormal glandular Papanicolaou smear of vagina', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.11) Papanicolaou smear of vagina with atypical squamous cells of undetermined significance (ASC-US)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.11) Papanicolaou smear of vagina with atypical squamous cells of undetermined significance (ASC-US)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''795.11) Papanicolaou smear of vagina with atypical squamous cells of undetermined significance (ASC'' AND ''US''', NULL, + '(795.11) Papanicolaou smear of vagina with atypical squamous cells of undetermined significance (ASC-US)', '(795.11) Papanicolaou smear of vagina with atypical squamous cells of undetermined significance (ASC-US)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.12) Papanicolaou smear of vagina with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.12) Papanicolaou smear of vagina with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''795.12) Papanicolaou smear of vagina with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC'' AND ''H''', NULL, + '(795.12) Papanicolaou smear of vagina with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)', '(795.12) Papanicolaou smear of vagina with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.13) Papanicolaou smear of vagina with low grade squamous intraepithelial lesion (LGSIL)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.13) Papanicolaou smear of vagina with low grade squamous intraepithelial lesion (LGSIL)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.13) Papanicolaou smear of vagina with low grade squamous intraepithelial lesion (LGSIL''', NULL, + '(795.13) Papanicolaou smear of vagina with low grade squamous intraepithelial lesion (LGSIL)', '(795.13) Papanicolaou smear of vagina with low grade squamous intraepithelial lesion (LGSIL)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.14) Papanicolaou smear of vagina with high grade squamous intraepithelial lesion (HGSIL)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.14) Papanicolaou smear of vagina with high grade squamous intraepithelial lesion (HGSIL)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.14) Papanicolaou smear of vagina with high grade squamous intraepithelial lesion (HGSIL''', NULL, + '(795.14) Papanicolaou smear of vagina with high grade squamous intraepithelial lesion (HGSIL)', '(795.14) Papanicolaou smear of vagina with high grade squamous intraepithelial lesion (HGSIL)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.15) Vaginal high risk human papillomavirus (HPV) DNA test positive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.15) Vaginal high risk human papillomavirus (HPV) DNA test positive\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.15) Vaginal high risk human papillomavirus (HPV''', NULL, + '(795.15) Vaginal high risk human papillomavirus (HPV) DNA test positive', '(795.15) Vaginal high risk human papillomavirus (HPV) DNA test positive', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.18) Unsatisfactory vaginal cytology smear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.18) Unsatisfactory vaginal cytology smear\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.18''', NULL, + '(795.18) Unsatisfactory vaginal cytology smear', '(795.18) Unsatisfactory vaginal cytology smear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.19) Other abnormal Papanicolaou smear of vagina and vaginal HPV\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\(795.19) Other abnormal Papanicolaou smear of vagina and vaginal HPV\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.19''', NULL, + '(795.19) Other abnormal Papanicolaou smear of vagina and vaginal HPV', '(795.19) Other abnormal Papanicolaou smear of vagina and vaginal HPV', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal tumor markers (795.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal tumor markers (795.8)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.8''', NULL, + 'Abnormal tumor markers (795.8)', 'Abnormal tumor markers (795.8)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal tumor markers (795.8)\(795.81) Elevated carcinoembryonic antigen [CEA]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal tumor markers (795.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal tumor markers (795.8)\(795.81) Elevated carcinoembryonic antigen [CEA]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.81''', NULL, + '(795.81) Elevated carcinoembryonic antigen [CEA]', '(795.81) Elevated carcinoembryonic antigen [CEA]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal tumor markers (795.8)\(795.82) Elevated cancer antigen 125 [CA 125]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal tumor markers (795.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal tumor markers (795.8)\(795.82) Elevated cancer antigen 125 [CA 125]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.82''', NULL, + '(795.82) Elevated cancer antigen 125 [CA 125]', '(795.82) Elevated cancer antigen 125 [CA 125]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal tumor markers (795.8)\(795.89) Other abnormal tumor markers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal tumor markers (795.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Abnormal tumor markers (795.8)\(795.89) Other abnormal tumor markers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.89''', NULL, + '(795.89) Other abnormal tumor markers', '(795.89) Other abnormal tumor markers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific positive culture findings (795.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific positive culture findings (795.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.3''', NULL, + 'Nonspecific positive culture findings (795.3)', 'Nonspecific positive culture findings (795.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific positive culture findings (795.3)\(795.31) Nonspecific positive findings for anthrax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific positive culture findings (795.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific positive culture findings (795.3)\(795.31) Nonspecific positive findings for anthrax\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.31''', NULL, + '(795.31) Nonspecific positive findings for anthrax', '(795.31) Nonspecific positive findings for anthrax', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific positive culture findings (795.3)\(795.39) Other nonspecific positive culture findings\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific positive culture findings (795.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific positive culture findings (795.3)\(795.39) Other nonspecific positive culture findings\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.39''', NULL, + '(795.39) Other nonspecific positive culture findings', '(795.39) Other nonspecific positive culture findings', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific reaction to tuberculin skin test without active tuberculosis (795.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific reaction to tuberculin skin test without active tuberculosis (795.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.5''', NULL, + 'Nonspecific reaction to tuberculin skin test without active tuberculosis (795.5)', 'Nonspecific reaction to tuberculin skin test without active tuberculosis (795.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific reaction to tuberculin skin test without active tuberculosis (795.5)\(795.51) Nonspecific reaction to tuberculin skin test without active tuberculosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific reaction to tuberculin skin test without active tuberculosis (795.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Nonspecific reaction to tuberculin skin test without active tuberculosis (795.5)\(795.51) Nonspecific reaction to tuberculin skin test without active tuberculosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.51''', NULL, + '(795.51) Nonspecific reaction to tuberculin skin test without active tuberculosis', '(795.51) Nonspecific reaction to tuberculin skin test without active tuberculosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Other nonspecific immunological findings (795.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Other nonspecific immunological findings (795.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.7''', NULL, + 'Other nonspecific immunological findings (795.7)', 'Other nonspecific immunological findings (795.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Other nonspecific immunological findings (795.7)\(795.71) Nonspecific serologic evidence of human immunodeficiency virus [HIV]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Other nonspecific immunological findings (795.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Other nonspecific immunological findings (795.7)\(795.71) Nonspecific serologic evidence of human immunodeficiency virus [HIV]\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.71''', NULL, + '(795.71) Nonspecific serologic evidence of human immunodeficiency virus [HIV]', '(795.71) Nonspecific serologic evidence of human immunodeficiency virus [HIV]', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Other nonspecific immunological findings (795.7)\(795.79) Other and unspecified nonspecific immunological findings\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Other nonspecific immunological findings (795.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\Other nonspecific immunological findings (795.7)\(795.79) Other and unspecified nonspecific immunological findings\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''795.79''', NULL, + '(795.79) Other and unspecified nonspecific immunological findings', '(795.79) Other and unspecified nonspecific immunological findings', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796''', NULL, + 'Other nonspecific abnormal findings (796)', 'Other nonspecific abnormal findings (796)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.0) Nonspecific abnormal toxicological findings\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.0) Nonspecific abnormal toxicological findings\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.0''', NULL, + '(796.0) Nonspecific abnormal toxicological findings', '(796.0) Nonspecific abnormal toxicological findings', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.1) Abnormal reflex\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.1) Abnormal reflex\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.1''', NULL, + '(796.1) Abnormal reflex', '(796.1) Abnormal reflex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.2) Elevated blood pressure reading without diagnosis of hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.2) Elevated blood pressure reading without diagnosis of hypertension\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.2''', NULL, + '(796.2) Elevated blood pressure reading without diagnosis of hypertension', '(796.2) Elevated blood pressure reading without diagnosis of hypertension', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.3) Nonspecific low blood pressure reading\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.3) Nonspecific low blood pressure reading\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.3''', NULL, + '(796.3) Nonspecific low blood pressure reading', '(796.3) Nonspecific low blood pressure reading', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.4) Other abnormal clinical findings\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.4) Other abnormal clinical findings\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.4''', NULL, + '(796.4) Other abnormal clinical findings', '(796.4) Other abnormal clinical findings', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.5) Abnormal finding on antenatal screening\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.5) Abnormal finding on antenatal screening\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.5''', NULL, + '(796.5) Abnormal finding on antenatal screening', '(796.5) Abnormal finding on antenatal screening', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.6) Abnormal findings on neonatal screening\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.6) Abnormal findings on neonatal screening\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.6''', NULL, + '(796.6) Abnormal findings on neonatal screening', '(796.6) Abnormal findings on neonatal screening', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.9) Other nonspecific abnormal findings\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\(796.9) Other nonspecific abnormal findings\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.9''', NULL, + '(796.9) Other nonspecific abnormal findings', '(796.9) Other nonspecific abnormal findings', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.7''', NULL, + 'Abnormal cytologic smear of anus and anal HPV (796.7)', 'Abnormal cytologic smear of anus and anal HPV (796.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\(796.70) Abnormal glandular Papanicolaou smear of anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\(796.70) Abnormal glandular Papanicolaou smear of anus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.70''', NULL, + '(796.70) Abnormal glandular Papanicolaou smear of anus', '(796.70) Abnormal glandular Papanicolaou smear of anus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\(796.71) Papanicolaou smear of anus with atypical squamous cells of undetermined significance (ASC-US)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\(796.71) Papanicolaou smear of anus with atypical squamous cells of undetermined significance (ASC-US)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''796.71) Papanicolaou smear of anus with atypical squamous cells of undetermined significance (ASC'' AND ''US''', NULL, + '(796.71) Papanicolaou smear of anus with atypical squamous cells of undetermined significance (ASC-US)', '(796.71) Papanicolaou smear of anus with atypical squamous cells of undetermined significance (ASC-US)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\(796.75) Anal high risk human papillomavirus (HPV) DNA test positive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\(796.75) Anal high risk human papillomavirus (HPV) DNA test positive\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.75) Anal high risk human papillomavirus (HPV''', NULL, + '(796.75) Anal high risk human papillomavirus (HPV) DNA test positive', '(796.75) Anal high risk human papillomavirus (HPV) DNA test positive', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\(796.79) Other abnormal Papanicolaou smear of anus and anal HPV\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Nonspecific abnormal findings (790-796.99)\Other nonspecific abnormal findings (796)\Abnormal cytologic smear of anus and anal HPV (796.7)\(796.79) Other abnormal Papanicolaou smear of anus and anal HPV\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''796.79''', NULL, + '(796.79) Other abnormal Papanicolaou smear of anus and anal HPV', '(796.79) Other abnormal Papanicolaou smear of anus and anal HPV', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''780'' AND ''789.99''', NULL, + 'Symptoms (780-789.99)', 'Symptoms (780-789.99)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780''', NULL, + 'General symptoms (780)', 'General symptoms (780)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\(780.1) Hallucinations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\(780.1) Hallucinations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.1''', NULL, + '(780.1) Hallucinations', '(780.1) Hallucinations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\(780.2) Syncope and collapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\(780.2) Syncope and collapse\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.2''', NULL, + '(780.2) Syncope and collapse', '(780.2) Syncope and collapse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\(780.4) Dizziness and giddiness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\(780.4) Dizziness and giddiness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.4''', NULL, + '(780.4) Dizziness and giddiness', '(780.4) Dizziness and giddiness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\(780.8) Generalized hyperhidrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\(780.8) Generalized hyperhidrosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.8''', NULL, + '(780.8) Generalized hyperhidrosis', '(780.8) Generalized hyperhidrosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.0''', NULL, + 'Alteration of consciousness (780.0)', 'Alteration of consciousness (780.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\(780.01) Coma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\(780.01) Coma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.01''', NULL, + '(780.01) Coma', '(780.01) Coma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\(780.02) Transient alteration of awareness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\(780.02) Transient alteration of awareness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.02''', NULL, + '(780.02) Transient alteration of awareness', '(780.02) Transient alteration of awareness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\(780.03) Persistent vegetative state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\(780.03) Persistent vegetative state\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.03''', NULL, + '(780.03) Persistent vegetative state', '(780.03) Persistent vegetative state', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\(780.09) Other alteration of consciousness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Alteration of consciousness (780.0)\(780.09) Other alteration of consciousness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.09''', NULL, + '(780.09) Other alteration of consciousness', '(780.09) Other alteration of consciousness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.3''', NULL, + 'Convulsions (780.3)', 'Convulsions (780.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\(780.31) Febrile convulsions (simple), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\(780.31) Febrile convulsions (simple), unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.31) Febrile convulsions (simple''', NULL, + '(780.31) Febrile convulsions (simple), unspecified', '(780.31) Febrile convulsions (simple), unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\(780.32) Complex febrile convulsions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\(780.32) Complex febrile convulsions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.32''', NULL, + '(780.32) Complex febrile convulsions', '(780.32) Complex febrile convulsions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\(780.33) Post traumatic seizures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\(780.33) Post traumatic seizures\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.33''', NULL, + '(780.33) Post traumatic seizures', '(780.33) Post traumatic seizures', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\(780.39) Other convulsions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Convulsions (780.3)\(780.39) Other convulsions\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.39''', NULL, + '(780.39) Other convulsions', '(780.39) Other convulsions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.6''', NULL, + 'Fever and other physiologic disturbances of temperature regulation (780.6)', 'Fever and other physiologic disturbances of temperature regulation (780.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.60) Fever, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.60) Fever, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.60''', NULL, + '(780.60) Fever, unspecified', '(780.60) Fever, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.61) Fever presenting with conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.61) Fever presenting with conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.61''', NULL, + '(780.61) Fever presenting with conditions classified elsewhere', '(780.61) Fever presenting with conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.62) Postprocedural fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.62) Postprocedural fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.62''', NULL, + '(780.62) Postprocedural fever', '(780.62) Postprocedural fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.63) Postvaccination fever\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.63) Postvaccination fever\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.63''', NULL, + '(780.63) Postvaccination fever', '(780.63) Postvaccination fever', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.64) Chills (without fever)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.64) Chills (without fever)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.64) Chills (without fever''', NULL, + '(780.64) Chills (without fever)', '(780.64) Chills (without fever)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.65) Hypothermia not associated with low environmental temperature\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.65) Hypothermia not associated with low environmental temperature\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.65''', NULL, + '(780.65) Hypothermia not associated with low environmental temperature', '(780.65) Hypothermia not associated with low environmental temperature', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.66) Febrile nonhemolytic transfusion reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Fever and other physiologic disturbances of temperature regulation (780.6)\(780.66) Febrile nonhemolytic transfusion reaction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.66''', NULL, + '(780.66) Febrile nonhemolytic transfusion reaction', '(780.66) Febrile nonhemolytic transfusion reaction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Malaise and fatigue (780.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Malaise and fatigue (780.7)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.7''', NULL, + 'Malaise and fatigue (780.7)', 'Malaise and fatigue (780.7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Malaise and fatigue (780.7)\(780.71) Chronic fatigue syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Malaise and fatigue (780.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Malaise and fatigue (780.7)\(780.71) Chronic fatigue syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.71''', NULL, + '(780.71) Chronic fatigue syndrome', '(780.71) Chronic fatigue syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Malaise and fatigue (780.7)\(780.72) Functional quadriplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Malaise and fatigue (780.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Malaise and fatigue (780.7)\(780.72) Functional quadriplegia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.72''', NULL, + '(780.72) Functional quadriplegia', '(780.72) Functional quadriplegia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Malaise and fatigue (780.7)\(780.79) Other malaise and fatigue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Malaise and fatigue (780.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Malaise and fatigue (780.7)\(780.79) Other malaise and fatigue\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.79''', NULL, + '(780.79) Other malaise and fatigue', '(780.79) Other malaise and fatigue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.9''', NULL, + 'Other general symptoms (780.9)', 'Other general symptoms (780.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.91) Fussy infant (baby)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.91) Fussy infant (baby)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.91) Fussy infant (baby''', NULL, + '(780.91) Fussy infant (baby)', '(780.91) Fussy infant (baby)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.92) Excessive crying of infant (baby)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.92) Excessive crying of infant (baby)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.92) Excessive crying of infant (baby''', NULL, + '(780.92) Excessive crying of infant (baby)', '(780.92) Excessive crying of infant (baby)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.93) Memory loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.93) Memory loss\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.93''', NULL, + '(780.93) Memory loss', '(780.93) Memory loss', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.94) Early satiety\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.94) Early satiety\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.94''', NULL, + '(780.94) Early satiety', '(780.94) Early satiety', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.95) Excessive crying of child, adolescent, or adult\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.95) Excessive crying of child, adolescent, or adult\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.95''', NULL, + '(780.95) Excessive crying of child, adolescent, or adult', '(780.95) Excessive crying of child, adolescent, or adult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.96) Generalized pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.96) Generalized pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.96''', NULL, + '(780.96) Generalized pain', '(780.96) Generalized pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.97) Altered mental status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.97) Altered mental status\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.97''', NULL, + '(780.97) Altered mental status', '(780.97) Altered mental status', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.99) Other general symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Other general symptoms (780.9)\(780.99) Other general symptoms\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.99''', NULL, + '(780.99) Other general symptoms', '(780.99) Other general symptoms', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.5''', NULL, + 'Sleep disturbances (780.5)', 'Sleep disturbances (780.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.50) Sleep disturbance, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.50) Sleep disturbance, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.50''', NULL, + '(780.50) Sleep disturbance, unspecified', '(780.50) Sleep disturbance, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.51) Insomnia with sleep apnea, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.51) Insomnia with sleep apnea, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.51''', NULL, + '(780.51) Insomnia with sleep apnea, unspecified', '(780.51) Insomnia with sleep apnea, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.52) Insomnia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.52) Insomnia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.52''', NULL, + '(780.52) Insomnia, unspecified', '(780.52) Insomnia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.53) Hypersomnia with sleep apnea, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.53) Hypersomnia with sleep apnea, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.53''', NULL, + '(780.53) Hypersomnia with sleep apnea, unspecified', '(780.53) Hypersomnia with sleep apnea, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.54) Hypersomnia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.54) Hypersomnia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.54''', NULL, + '(780.54) Hypersomnia, unspecified', '(780.54) Hypersomnia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.55) Disruption of 24 hour sleep wake cycle, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.55) Disruption of 24 hour sleep wake cycle, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.55''', NULL, + '(780.55) Disruption of 24 hour sleep wake cycle, unspecified', '(780.55) Disruption of 24 hour sleep wake cycle, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.56) Dysfunctions associated with sleep stages or arousal from sleep\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.56) Dysfunctions associated with sleep stages or arousal from sleep\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.56''', NULL, + '(780.56) Dysfunctions associated with sleep stages or arousal from sleep', '(780.56) Dysfunctions associated with sleep stages or arousal from sleep', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.57) Unspecified sleep apnea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.57) Unspecified sleep apnea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.57''', NULL, + '(780.57) Unspecified sleep apnea', '(780.57) Unspecified sleep apnea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.58) Sleep related movement disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.58) Sleep related movement disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.58''', NULL, + '(780.58) Sleep related movement disorder, unspecified', '(780.58) Sleep related movement disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.59) Other sleep disturbances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\General symptoms (780)\Sleep disturbances (780.5)\(780.59) Other sleep disturbances\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''780.59''', NULL, + '(780.59) Other sleep disturbances', '(780.59) Other sleep disturbances', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789''', NULL, + 'Other symptoms involving abdomen and pelvis (789)', 'Other symptoms involving abdomen and pelvis (789)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\(789.1) Hepatomegaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\(789.1) Hepatomegaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.1''', NULL, + '(789.1) Hepatomegaly', '(789.1) Hepatomegaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\(789.2) Splenomegaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\(789.2) Splenomegaly\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.2''', NULL, + '(789.2) Splenomegaly', '(789.2) Splenomegaly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\(789.7) Colic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\(789.7) Colic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.7''', NULL, + '(789.7) Colic', '(789.7) Colic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\(789.9) Other symptoms involving abdomen and pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\(789.9) Other symptoms involving abdomen and pelvis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.9''', NULL, + '(789.9) Other symptoms involving abdomen and pelvis', '(789.9) Other symptoms involving abdomen and pelvis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.3''', NULL, + 'Abdominal or pelvic swelling, mass, or lump (789.3)', 'Abdominal or pelvic swelling, mass, or lump (789.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.30) Abdominal or pelvic swelling, mass, or lump, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.30) Abdominal or pelvic swelling, mass, or lump, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.30''', NULL, + '(789.30) Abdominal or pelvic swelling, mass, or lump, unspecified site', '(789.30) Abdominal or pelvic swelling, mass, or lump, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.31) Abdominal or pelvic swelling, mass, or lump, right upper quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.31) Abdominal or pelvic swelling, mass, or lump, right upper quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.31''', NULL, + '(789.31) Abdominal or pelvic swelling, mass, or lump, right upper quadrant', '(789.31) Abdominal or pelvic swelling, mass, or lump, right upper quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.32) Abdominal or pelvic swelling, mass, or lump, left upper quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.32) Abdominal or pelvic swelling, mass, or lump, left upper quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.32''', NULL, + '(789.32) Abdominal or pelvic swelling, mass, or lump, left upper quadrant', '(789.32) Abdominal or pelvic swelling, mass, or lump, left upper quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.33) Abdominal or pelvic swelling, mass, or lump, right lower quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.33) Abdominal or pelvic swelling, mass, or lump, right lower quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.33''', NULL, + '(789.33) Abdominal or pelvic swelling, mass, or lump, right lower quadrant', '(789.33) Abdominal or pelvic swelling, mass, or lump, right lower quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.34) Abdominal or pelvic swelling, mass, or lump, left lower quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.34) Abdominal or pelvic swelling, mass, or lump, left lower quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.34''', NULL, + '(789.34) Abdominal or pelvic swelling, mass, or lump, left lower quadrant', '(789.34) Abdominal or pelvic swelling, mass, or lump, left lower quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.35) Abdominal or pelvic swelling, mass, or lump, periumbilic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.35) Abdominal or pelvic swelling, mass, or lump, periumbilic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.35''', NULL, + '(789.35) Abdominal or pelvic swelling, mass, or lump, periumbilic', '(789.35) Abdominal or pelvic swelling, mass, or lump, periumbilic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.36) Abdominal or pelvic swelling, mass, or lump, epigastric\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.36) Abdominal or pelvic swelling, mass, or lump, epigastric\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.36''', NULL, + '(789.36) Abdominal or pelvic swelling, mass, or lump, epigastric', '(789.36) Abdominal or pelvic swelling, mass, or lump, epigastric', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.37) Abdominal or pelvic swelling, mass, or lump, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.37) Abdominal or pelvic swelling, mass, or lump, generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.37''', NULL, + '(789.37) Abdominal or pelvic swelling, mass, or lump, generalized', '(789.37) Abdominal or pelvic swelling, mass, or lump, generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.39) Abdominal or pelvic swelling, mass, or lump, other specified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal or pelvic swelling, mass, or lump (789.3)\(789.39) Abdominal or pelvic swelling, mass, or lump, other specified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.39''', NULL, + '(789.39) Abdominal or pelvic swelling, mass, or lump, other specified site', '(789.39) Abdominal or pelvic swelling, mass, or lump, other specified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.0''', NULL, + 'Abdominal pain (789.0)', 'Abdominal pain (789.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.00) Abdominal pain, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.00) Abdominal pain, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.00''', NULL, + '(789.00) Abdominal pain, unspecified site', '(789.00) Abdominal pain, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.01) Abdominal pain, right upper quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.01) Abdominal pain, right upper quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.01''', NULL, + '(789.01) Abdominal pain, right upper quadrant', '(789.01) Abdominal pain, right upper quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.02) Abdominal pain, left upper quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.02) Abdominal pain, left upper quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.02''', NULL, + '(789.02) Abdominal pain, left upper quadrant', '(789.02) Abdominal pain, left upper quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.03) Abdominal pain, right lower quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.03) Abdominal pain, right lower quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.03''', NULL, + '(789.03) Abdominal pain, right lower quadrant', '(789.03) Abdominal pain, right lower quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.04) Abdominal pain, left lower quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.04) Abdominal pain, left lower quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.04''', NULL, + '(789.04) Abdominal pain, left lower quadrant', '(789.04) Abdominal pain, left lower quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.05) Abdominal pain, periumbilic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.05) Abdominal pain, periumbilic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.05''', NULL, + '(789.05) Abdominal pain, periumbilic', '(789.05) Abdominal pain, periumbilic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.06) Abdominal pain, epigastric\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.06) Abdominal pain, epigastric\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.06''', NULL, + '(789.06) Abdominal pain, epigastric', '(789.06) Abdominal pain, epigastric', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.07) Abdominal pain, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.07) Abdominal pain, generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.07''', NULL, + '(789.07) Abdominal pain, generalized', '(789.07) Abdominal pain, generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.09) Abdominal pain, other specified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal pain (789.0)\(789.09) Abdominal pain, other specified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.09''', NULL, + '(789.09) Abdominal pain, other specified site', '(789.09) Abdominal pain, other specified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.4''', NULL, + 'Abdominal rigidity (789.4)', 'Abdominal rigidity (789.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.40) Abdominal rigidity, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.40) Abdominal rigidity, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.40''', NULL, + '(789.40) Abdominal rigidity, unspecified site', '(789.40) Abdominal rigidity, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.41) Abdominal rigidity, right upper quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.41) Abdominal rigidity, right upper quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.41''', NULL, + '(789.41) Abdominal rigidity, right upper quadrant', '(789.41) Abdominal rigidity, right upper quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.42) Abdominal rigidity, left upper quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.42) Abdominal rigidity, left upper quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.42''', NULL, + '(789.42) Abdominal rigidity, left upper quadrant', '(789.42) Abdominal rigidity, left upper quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.43) Abdominal rigidity, right lower quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.43) Abdominal rigidity, right lower quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.43''', NULL, + '(789.43) Abdominal rigidity, right lower quadrant', '(789.43) Abdominal rigidity, right lower quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.44) Abdominal rigidity, left lower quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.44) Abdominal rigidity, left lower quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.44''', NULL, + '(789.44) Abdominal rigidity, left lower quadrant', '(789.44) Abdominal rigidity, left lower quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.45) Abdominal rigidity, periumbilic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.45) Abdominal rigidity, periumbilic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.45''', NULL, + '(789.45) Abdominal rigidity, periumbilic', '(789.45) Abdominal rigidity, periumbilic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.46) Abdominal rigidity, epigastric\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.46) Abdominal rigidity, epigastric\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.46''', NULL, + '(789.46) Abdominal rigidity, epigastric', '(789.46) Abdominal rigidity, epigastric', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.47) Abdominal rigidity, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.47) Abdominal rigidity, generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.47''', NULL, + '(789.47) Abdominal rigidity, generalized', '(789.47) Abdominal rigidity, generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.49) Abdominal rigidity, other specified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal rigidity (789.4)\(789.49) Abdominal rigidity, other specified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.49''', NULL, + '(789.49) Abdominal rigidity, other specified site', '(789.49) Abdominal rigidity, other specified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.6''', NULL, + 'Abdominal tenderness (789.6)', 'Abdominal tenderness (789.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.60) Abdominal tenderness, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.60) Abdominal tenderness, unspecified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.60''', NULL, + '(789.60) Abdominal tenderness, unspecified site', '(789.60) Abdominal tenderness, unspecified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.61) Abdominal tenderness, right upper quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.61) Abdominal tenderness, right upper quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.61''', NULL, + '(789.61) Abdominal tenderness, right upper quadrant', '(789.61) Abdominal tenderness, right upper quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.62) Abdominal tenderness, left upper quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.62) Abdominal tenderness, left upper quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.62''', NULL, + '(789.62) Abdominal tenderness, left upper quadrant', '(789.62) Abdominal tenderness, left upper quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.63) Abdominal tenderness, right lower quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.63) Abdominal tenderness, right lower quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.63''', NULL, + '(789.63) Abdominal tenderness, right lower quadrant', '(789.63) Abdominal tenderness, right lower quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.64) Abdominal tenderness, left lower quadrant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.64) Abdominal tenderness, left lower quadrant\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.64''', NULL, + '(789.64) Abdominal tenderness, left lower quadrant', '(789.64) Abdominal tenderness, left lower quadrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.65) Abdominal tenderness, periumbilic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.65) Abdominal tenderness, periumbilic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.65''', NULL, + '(789.65) Abdominal tenderness, periumbilic', '(789.65) Abdominal tenderness, periumbilic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.66) Abdominal tenderness, epigastric\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.66) Abdominal tenderness, epigastric\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.66''', NULL, + '(789.66) Abdominal tenderness, epigastric', '(789.66) Abdominal tenderness, epigastric', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.67) Abdominal tenderness, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.67) Abdominal tenderness, generalized\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.67''', NULL, + '(789.67) Abdominal tenderness, generalized', '(789.67) Abdominal tenderness, generalized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.69) Abdominal tenderness, other specified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Abdominal tenderness (789.6)\(789.69) Abdominal tenderness, other specified site\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.69''', NULL, + '(789.69) Abdominal tenderness, other specified site', '(789.69) Abdominal tenderness, other specified site', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Ascites (789.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Ascites (789.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.5''', NULL, + 'Ascites (789.5)', 'Ascites (789.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Ascites (789.5)\(789.51) Malignant ascites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Ascites (789.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Ascites (789.5)\(789.51) Malignant ascites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.51''', NULL, + '(789.51) Malignant ascites', '(789.51) Malignant ascites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Ascites (789.5)\(789.59) Other ascites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Ascites (789.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Other symptoms involving abdomen and pelvis (789)\Ascites (789.5)\(789.59) Other ascites\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''789.59''', NULL, + '(789.59) Other ascites', '(789.59) Other ascites', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783''', NULL, + 'Symptoms concerning nutrition, metabolism, and development (783)', 'Symptoms concerning nutrition, metabolism, and development (783)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.0) Anorexia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.0) Anorexia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.0''', NULL, + '(783.0) Anorexia', '(783.0) Anorexia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.1) Abnormal weight gain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.1) Abnormal weight gain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.1''', NULL, + '(783.1) Abnormal weight gain', '(783.1) Abnormal weight gain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.3) Feeding difficulties and mismanagement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.3) Feeding difficulties and mismanagement\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.3''', NULL, + '(783.3) Feeding difficulties and mismanagement', '(783.3) Feeding difficulties and mismanagement', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.5) Polydipsia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.5) Polydipsia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.5''', NULL, + '(783.5) Polydipsia', '(783.5) Polydipsia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.6) Polyphagia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.6) Polyphagia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.6''', NULL, + '(783.6) Polyphagia', '(783.6) Polyphagia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.7) Adult failure to thrive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.7) Adult failure to thrive\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.7''', NULL, + '(783.7) Adult failure to thrive', '(783.7) Adult failure to thrive', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.9) Other symptoms concerning nutrition, metabolism, and development\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\(783.9) Other symptoms concerning nutrition, metabolism, and development\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.9''', NULL, + '(783.9) Other symptoms concerning nutrition, metabolism, and development', '(783.9) Other symptoms concerning nutrition, metabolism, and development', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Abnormal loss of weight and underweight (783.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Abnormal loss of weight and underweight (783.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.2''', NULL, + 'Abnormal loss of weight and underweight (783.2)', 'Abnormal loss of weight and underweight (783.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Abnormal loss of weight and underweight (783.2)\(783.21) Loss of weight\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Abnormal loss of weight and underweight (783.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Abnormal loss of weight and underweight (783.2)\(783.21) Loss of weight\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.21''', NULL, + '(783.21) Loss of weight', '(783.21) Loss of weight', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Abnormal loss of weight and underweight (783.2)\(783.22) Underweight\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Abnormal loss of weight and underweight (783.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Abnormal loss of weight and underweight (783.2)\(783.22) Underweight\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.22''', NULL, + '(783.22) Underweight', '(783.22) Underweight', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.4''', NULL, + 'Lack of expected normal physiological development in childhood (783.4)', 'Lack of expected normal physiological development in childhood (783.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\(783.40) Lack of normal physiological development, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\(783.40) Lack of normal physiological development, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.40''', NULL, + '(783.40) Lack of normal physiological development, unspecified', '(783.40) Lack of normal physiological development, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\(783.41) Failure to thrive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\(783.41) Failure to thrive\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.41''', NULL, + '(783.41) Failure to thrive', '(783.41) Failure to thrive', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\(783.42) Delayed milestones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\(783.42) Delayed milestones\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.42''', NULL, + '(783.42) Delayed milestones', '(783.42) Delayed milestones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\(783.43) Short stature\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms concerning nutrition, metabolism, and development (783)\Lack of expected normal physiological development in childhood (783.4)\(783.43) Short stature\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''783.43''', NULL, + '(783.43) Short stature', '(783.43) Short stature', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785''', NULL, + 'Symptoms involving cardiovascular system (785)', 'Symptoms involving cardiovascular system (785)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.0) Tachycardia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.0) Tachycardia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.0''', NULL, + '(785.0) Tachycardia, unspecified', '(785.0) Tachycardia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.1) Palpitations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.1) Palpitations\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.1''', NULL, + '(785.1) Palpitations', '(785.1) Palpitations', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.2) Undiagnosed cardiac murmurs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.2) Undiagnosed cardiac murmurs\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.2''', NULL, + '(785.2) Undiagnosed cardiac murmurs', '(785.2) Undiagnosed cardiac murmurs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.3) Other abnormal heart sounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.3) Other abnormal heart sounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.3''', NULL, + '(785.3) Other abnormal heart sounds', '(785.3) Other abnormal heart sounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.4) Gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.4) Gangrene\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.4''', NULL, + '(785.4) Gangrene', '(785.4) Gangrene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.6) Enlargement of lymph nodes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.6) Enlargement of lymph nodes\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.6''', NULL, + '(785.6) Enlargement of lymph nodes', '(785.6) Enlargement of lymph nodes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.9) Other symptoms involving cardiovascular system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\(785.9) Other symptoms involving cardiovascular system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.9''', NULL, + '(785.9) Other symptoms involving cardiovascular system', '(785.9) Other symptoms involving cardiovascular system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.5''', NULL, + 'Shock without mention of trauma (785.5)', 'Shock without mention of trauma (785.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\(785.50) Shock, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\(785.50) Shock, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.50''', NULL, + '(785.50) Shock, unspecified', '(785.50) Shock, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\(785.51) Cardiogenic shock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\(785.51) Cardiogenic shock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.51''', NULL, + '(785.51) Cardiogenic shock', '(785.51) Cardiogenic shock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\(785.52) Septic shock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\(785.52) Septic shock\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.52''', NULL, + '(785.52) Septic shock', '(785.52) Septic shock', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\(785.59) Other shock without mention of trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving cardiovascular system (785)\Shock without mention of trauma (785.5)\(785.59) Other shock without mention of trauma\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''785.59''', NULL, + '(785.59) Other shock without mention of trauma', '(785.59) Other shock without mention of trauma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787''', NULL, + 'Symptoms involving digestive system (787)', 'Symptoms involving digestive system (787)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\(787.1) Heartburn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\(787.1) Heartburn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.1''', NULL, + '(787.1) Heartburn', '(787.1) Heartburn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\(787.3) Flatulence, eructation, and gas pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\(787.3) Flatulence, eructation, and gas pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.3''', NULL, + '(787.3) Flatulence, eructation, and gas pain', '(787.3) Flatulence, eructation, and gas pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\(787.4) Visible peristalsis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\(787.4) Visible peristalsis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.4''', NULL, + '(787.4) Visible peristalsis', '(787.4) Visible peristalsis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\(787.5) Abnormal bowel sounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\(787.5) Abnormal bowel sounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.5''', NULL, + '(787.5) Abnormal bowel sounds', '(787.5) Abnormal bowel sounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\(787.7) Abnormal feces\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\(787.7) Abnormal feces\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.7''', NULL, + '(787.7) Abnormal feces', '(787.7) Abnormal feces', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.2''', NULL, + 'Dysphagia (787.2)', 'Dysphagia (787.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.20) Dysphagia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.20) Dysphagia, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.20''', NULL, + '(787.20) Dysphagia, unspecified', '(787.20) Dysphagia, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.21) Dysphagia, oral phase\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.21) Dysphagia, oral phase\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.21''', NULL, + '(787.21) Dysphagia, oral phase', '(787.21) Dysphagia, oral phase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.22) Dysphagia, oropharyngeal phase\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.22) Dysphagia, oropharyngeal phase\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.22''', NULL, + '(787.22) Dysphagia, oropharyngeal phase', '(787.22) Dysphagia, oropharyngeal phase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.23) Dysphagia, pharyngeal phase\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.23) Dysphagia, pharyngeal phase\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.23''', NULL, + '(787.23) Dysphagia, pharyngeal phase', '(787.23) Dysphagia, pharyngeal phase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.24) Dysphagia, pharyngoesophageal phase\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.24) Dysphagia, pharyngoesophageal phase\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.24''', NULL, + '(787.24) Dysphagia, pharyngoesophageal phase', '(787.24) Dysphagia, pharyngoesophageal phase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.29) Other dysphagia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Dysphagia (787.2)\(787.29) Other dysphagia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.29''', NULL, + '(787.29) Other dysphagia', '(787.29) Other dysphagia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.6''', NULL, + 'Incontinence of feces (787.6)', 'Incontinence of feces (787.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\(787.60) Full incontinence of feces\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\(787.60) Full incontinence of feces\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.60''', NULL, + '(787.60) Full incontinence of feces', '(787.60) Full incontinence of feces', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\(787.61) Incomplete defecation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\(787.61) Incomplete defecation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.61''', NULL, + '(787.61) Incomplete defecation', '(787.61) Incomplete defecation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\(787.62) Fecal smearing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\(787.62) Fecal smearing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.62''', NULL, + '(787.62) Fecal smearing', '(787.62) Fecal smearing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\(787.63) Fecal urgency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Incontinence of feces (787.6)\(787.63) Fecal urgency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.63''', NULL, + '(787.63) Fecal urgency', '(787.63) Fecal urgency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.0''', NULL, + 'Nausea and vomiting (787.0)', 'Nausea and vomiting (787.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\(787.01) Nausea with vomiting\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\(787.01) Nausea with vomiting\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.01''', NULL, + '(787.01) Nausea with vomiting', '(787.01) Nausea with vomiting', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\(787.02) Nausea alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\(787.02) Nausea alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.02''', NULL, + '(787.02) Nausea alone', '(787.02) Nausea alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\(787.03) Vomiting alone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\(787.03) Vomiting alone\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.03''', NULL, + '(787.03) Vomiting alone', '(787.03) Vomiting alone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\(787.04) Bilious emesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Nausea and vomiting (787.0)\(787.04) Bilious emesis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.04''', NULL, + '(787.04) Bilious emesis', '(787.04) Bilious emesis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Other symptoms involving digestive system (787.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Other symptoms involving digestive system (787.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.9''', NULL, + 'Other symptoms involving digestive system (787.9)', 'Other symptoms involving digestive system (787.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Other symptoms involving digestive system (787.9)\(787.91) Diarrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Other symptoms involving digestive system (787.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Other symptoms involving digestive system (787.9)\(787.91) Diarrhea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.91''', NULL, + '(787.91) Diarrhea', '(787.91) Diarrhea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Other symptoms involving digestive system (787.9)\(787.99) Other symptoms involving digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Other symptoms involving digestive system (787.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving digestive system (787)\Other symptoms involving digestive system (787.9)\(787.99) Other symptoms involving digestive system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''787.99''', NULL, + '(787.99) Other symptoms involving digestive system', '(787.99) Other symptoms involving digestive system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784''', NULL, + 'Symptoms involving head and neck (784)', 'Symptoms involving head and neck (784)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.0) Headache\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.0) Headache\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.0''', NULL, + '(784.0) Headache', '(784.0) Headache', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.1) Throat pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.1) Throat pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.1''', NULL, + '(784.1) Throat pain', '(784.1) Throat pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.2) Swelling, mass, or lump in head and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.2) Swelling, mass, or lump in head and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.2''', NULL, + '(784.2) Swelling, mass, or lump in head and neck', '(784.2) Swelling, mass, or lump in head and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.3) Aphasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.3) Aphasia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.3''', NULL, + '(784.3) Aphasia', '(784.3) Aphasia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.7) Epistaxis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.7) Epistaxis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.7''', NULL, + '(784.7) Epistaxis', '(784.7) Epistaxis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.8) Hemorrhage from throat\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\(784.8) Hemorrhage from throat\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.8''', NULL, + '(784.8) Hemorrhage from throat', '(784.8) Hemorrhage from throat', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other speech disturbance (784.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other speech disturbance (784.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.5''', NULL, + 'Other speech disturbance (784.5)', 'Other speech disturbance (784.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other speech disturbance (784.5)\(784.51) Dysarthria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other speech disturbance (784.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other speech disturbance (784.5)\(784.51) Dysarthria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.51''', NULL, + '(784.51) Dysarthria', '(784.51) Dysarthria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other speech disturbance (784.5)\(784.52) Fluency disorder in conditions classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other speech disturbance (784.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other speech disturbance (784.5)\(784.52) Fluency disorder in conditions classified elsewhere\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.52''', NULL, + '(784.52) Fluency disorder in conditions classified elsewhere', '(784.52) Fluency disorder in conditions classified elsewhere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other speech disturbance (784.5)\(784.59) Other speech disturbance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other speech disturbance (784.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other speech disturbance (784.5)\(784.59) Other speech disturbance\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.59''', NULL, + '(784.59) Other speech disturbance', '(784.59) Other speech disturbance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symbolic dysfunction (784.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symbolic dysfunction (784.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.6''', NULL, + 'Other symbolic dysfunction (784.6)', 'Other symbolic dysfunction (784.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symbolic dysfunction (784.6)\(784.60) Symbolic dysfunction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symbolic dysfunction (784.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symbolic dysfunction (784.6)\(784.60) Symbolic dysfunction, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.60''', NULL, + '(784.60) Symbolic dysfunction, unspecified', '(784.60) Symbolic dysfunction, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symbolic dysfunction (784.6)\(784.61) Alexia and dyslexia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symbolic dysfunction (784.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symbolic dysfunction (784.6)\(784.61) Alexia and dyslexia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.61''', NULL, + '(784.61) Alexia and dyslexia', '(784.61) Alexia and dyslexia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symbolic dysfunction (784.6)\(784.69) Other symbolic dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symbolic dysfunction (784.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symbolic dysfunction (784.6)\(784.69) Other symbolic dysfunction\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.69''', NULL, + '(784.69) Other symbolic dysfunction', '(784.69) Other symbolic dysfunction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symptoms involving head and neck (784.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symptoms involving head and neck (784.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.9''', NULL, + 'Other symptoms involving head and neck (784.9)', 'Other symptoms involving head and neck (784.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symptoms involving head and neck (784.9)\(784.91) Postnasal drip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symptoms involving head and neck (784.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symptoms involving head and neck (784.9)\(784.91) Postnasal drip\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.91''', NULL, + '(784.91) Postnasal drip', '(784.91) Postnasal drip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symptoms involving head and neck (784.9)\(784.92) Jaw pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symptoms involving head and neck (784.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symptoms involving head and neck (784.9)\(784.92) Jaw pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.92''', NULL, + '(784.92) Jaw pain', '(784.92) Jaw pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symptoms involving head and neck (784.9)\(784.99) Other symptoms involving head and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symptoms involving head and neck (784.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Other symptoms involving head and neck (784.9)\(784.99) Other symptoms involving head and neck\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.99''', NULL, + '(784.99) Other symptoms involving head and neck', '(784.99) Other symptoms involving head and neck', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.4''', NULL, + 'Voice and resonance disorders (784.4)', 'Voice and resonance disorders (784.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.40) Voice and resonance disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.40) Voice and resonance disorder, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.40''', NULL, + '(784.40) Voice and resonance disorder, unspecified', '(784.40) Voice and resonance disorder, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.41) Aphonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.41) Aphonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.41''', NULL, + '(784.41) Aphonia', '(784.41) Aphonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.42) Dysphonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.42) Dysphonia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.42''', NULL, + '(784.42) Dysphonia', '(784.42) Dysphonia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.43) Hypernasality\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.43) Hypernasality\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.43''', NULL, + '(784.43) Hypernasality', '(784.43) Hypernasality', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.44) Hyponasality\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.44) Hyponasality\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.44''', NULL, + '(784.44) Hyponasality', '(784.44) Hyponasality', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.49) Other voice and resonance disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving head and neck (784)\Voice and resonance disorders (784.4)\(784.49) Other voice and resonance disorders\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''784.49''', NULL, + '(784.49) Other voice and resonance disorders', '(784.49) Other voice and resonance disorders', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781''', NULL, + 'Symptoms involving nervous and musculoskeletal systems (781)', 'Symptoms involving nervous and musculoskeletal systems (781)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.0) Abnormal involuntary movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.0) Abnormal involuntary movements\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.0''', NULL, + '(781.0) Abnormal involuntary movements', '(781.0) Abnormal involuntary movements', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.1) Disturbances of sensation of smell and taste\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.1) Disturbances of sensation of smell and taste\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.1''', NULL, + '(781.1) Disturbances of sensation of smell and taste', '(781.1) Disturbances of sensation of smell and taste', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.2) Abnormality of gait\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.2) Abnormality of gait\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.2''', NULL, + '(781.2) Abnormality of gait', '(781.2) Abnormality of gait', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.3) Lack of coordination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.3) Lack of coordination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.3''', NULL, + '(781.3) Lack of coordination', '(781.3) Lack of coordination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.4) Transient paralysis of limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.4) Transient paralysis of limb\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.4''', NULL, + '(781.4) Transient paralysis of limb', '(781.4) Transient paralysis of limb', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.5) Clubbing of fingers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.5) Clubbing of fingers\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.5''', NULL, + '(781.5) Clubbing of fingers', '(781.5) Clubbing of fingers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.6) Meningismus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.6) Meningismus\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.6''', NULL, + '(781.6) Meningismus', '(781.6) Meningismus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.7) Tetany\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.7) Tetany\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.7''', NULL, + '(781.7) Tetany', '(781.7) Tetany', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.8) Neurologic neglect syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\(781.8) Neurologic neglect syndrome\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.8''', NULL, + '(781.8) Neurologic neglect syndrome', '(781.8) Neurologic neglect syndrome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.9''', NULL, + 'Other symptoms involving nervous and musculoskeletal systems (781.9)', 'Other symptoms involving nervous and musculoskeletal systems (781.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\(781.91) Loss of height\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\(781.91) Loss of height\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.91''', NULL, + '(781.91) Loss of height', '(781.91) Loss of height', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\(781.92) Abnormal posture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\(781.92) Abnormal posture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.92''', NULL, + '(781.92) Abnormal posture', '(781.92) Abnormal posture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\(781.93) Ocular torticollis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\(781.93) Ocular torticollis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.93''', NULL, + '(781.93) Ocular torticollis', '(781.93) Ocular torticollis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\(781.94) Facial weakness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\(781.94) Facial weakness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.94''', NULL, + '(781.94) Facial weakness', '(781.94) Facial weakness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\(781.99) Other symptoms involving nervous and musculoskeletal systems\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving nervous and musculoskeletal systems (781)\Other symptoms involving nervous and musculoskeletal systems (781.9)\(781.99) Other symptoms involving nervous and musculoskeletal systems\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''781.99''', NULL, + '(781.99) Other symptoms involving nervous and musculoskeletal systems', '(781.99) Other symptoms involving nervous and musculoskeletal systems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786''', NULL, + 'Symptoms involving respiratory system and other chest symptoms (786)', 'Symptoms involving respiratory system and other chest symptoms (786)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.1) Stridor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.1) Stridor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.1''', NULL, + '(786.1) Stridor', '(786.1) Stridor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.2) Cough\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.2) Cough\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.2''', NULL, + '(786.2) Cough', '(786.2) Cough', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.4) Abnormal sputum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.4) Abnormal sputum\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.4''', NULL, + '(786.4) Abnormal sputum', '(786.4) Abnormal sputum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.6) Swelling, mass, or lump in chest\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.6) Swelling, mass, or lump in chest\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.6''', NULL, + '(786.6) Swelling, mass, or lump in chest', '(786.6) Swelling, mass, or lump in chest', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.7) Abnormal chest sounds\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.7) Abnormal chest sounds\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.7''', NULL, + '(786.7) Abnormal chest sounds', '(786.7) Abnormal chest sounds', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.8) Hiccough\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.8) Hiccough\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.8''', NULL, + '(786.8) Hiccough', '(786.8) Hiccough', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.9) Other symptoms involving respiratory system and chest\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\(786.9) Other symptoms involving respiratory system and chest\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.9''', NULL, + '(786.9) Other symptoms involving respiratory system and chest', '(786.9) Other symptoms involving respiratory system and chest', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.5''', NULL, + 'Chest pain (786.5)', 'Chest pain (786.5)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\(786.50) Chest pain, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\(786.50) Chest pain, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.50''', NULL, + '(786.50) Chest pain, unspecified', '(786.50) Chest pain, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\(786.51) Precordial pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\(786.51) Precordial pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.51''', NULL, + '(786.51) Precordial pain', '(786.51) Precordial pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\(786.52) Painful respiration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\(786.52) Painful respiration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.52''', NULL, + '(786.52) Painful respiration', '(786.52) Painful respiration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\(786.59) Other chest pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Chest pain (786.5)\(786.59) Other chest pain\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.59''', NULL, + '(786.59) Other chest pain', '(786.59) Other chest pain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.0''', NULL, + 'Dyspnea and respiratory abnormalities (786.0)', 'Dyspnea and respiratory abnormalities (786.0)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.00) Respiratory abnormality, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.00) Respiratory abnormality, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.00''', NULL, + '(786.00) Respiratory abnormality, unspecified', '(786.00) Respiratory abnormality, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.01) Hyperventilation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.01) Hyperventilation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.01''', NULL, + '(786.01) Hyperventilation', '(786.01) Hyperventilation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.02) Orthopnea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.02) Orthopnea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.02''', NULL, + '(786.02) Orthopnea', '(786.02) Orthopnea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.03) Apnea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.03) Apnea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.03''', NULL, + '(786.03) Apnea', '(786.03) Apnea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.04) Cheyne-Stokes respiration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.04) Cheyne-Stokes respiration\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.04''', NULL, + '(786.04) Cheyne-Stokes respiration', '(786.04) Cheyne-Stokes respiration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.05) Shortness of breath\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.05) Shortness of breath\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.05''', NULL, + '(786.05) Shortness of breath', '(786.05) Shortness of breath', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.06) Tachypnea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.06) Tachypnea\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.06''', NULL, + '(786.06) Tachypnea', '(786.06) Tachypnea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.07) Wheezing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.07) Wheezing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.07''', NULL, + '(786.07) Wheezing', '(786.07) Wheezing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.09) Other respiratory abnormalities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Dyspnea and respiratory abnormalities (786.0)\(786.09) Other respiratory abnormalities\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.09''', NULL, + '(786.09) Other respiratory abnormalities', '(786.09) Other respiratory abnormalities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Hemoptysis (786.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Hemoptysis (786.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.3''', NULL, + 'Hemoptysis (786.3)', 'Hemoptysis (786.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Hemoptysis (786.3)\(786.30) Hemoptysis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Hemoptysis (786.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Hemoptysis (786.3)\(786.30) Hemoptysis, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.30''', NULL, + '(786.30) Hemoptysis, unspecified', '(786.30) Hemoptysis, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Hemoptysis (786.3)\(786.39) Other hemoptysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Hemoptysis (786.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving respiratory system and other chest symptoms (786)\Hemoptysis (786.3)\(786.39) Other hemoptysis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''786.39''', NULL, + '(786.39) Other hemoptysis', '(786.39) Other hemoptysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782''', NULL, + 'Symptoms involving skin and other integumentary tissue (782)', 'Symptoms involving skin and other integumentary tissue (782)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.0) Disturbance of skin sensation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.0) Disturbance of skin sensation\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.0''', NULL, + '(782.0) Disturbance of skin sensation', '(782.0) Disturbance of skin sensation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.1) Rash and other nonspecific skin eruption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.1) Rash and other nonspecific skin eruption\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.1''', NULL, + '(782.1) Rash and other nonspecific skin eruption', '(782.1) Rash and other nonspecific skin eruption', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.2) Localized superficial swelling, mass, or lump\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.2) Localized superficial swelling, mass, or lump\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.2''', NULL, + '(782.2) Localized superficial swelling, mass, or lump', '(782.2) Localized superficial swelling, mass, or lump', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.3) Edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.3) Edema\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.3''', NULL, + '(782.3) Edema', '(782.3) Edema', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.4) Jaundice, unspecified, not of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.4) Jaundice, unspecified, not of newborn\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.4''', NULL, + '(782.4) Jaundice, unspecified, not of newborn', '(782.4) Jaundice, unspecified, not of newborn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.5) Cyanosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.5) Cyanosis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.5''', NULL, + '(782.5) Cyanosis', '(782.5) Cyanosis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.7) Spontaneous ecchymoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.7) Spontaneous ecchymoses\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.7''', NULL, + '(782.7) Spontaneous ecchymoses', '(782.7) Spontaneous ecchymoses', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.8) Changes in skin texture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.8) Changes in skin texture\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.8''', NULL, + '(782.8) Changes in skin texture', '(782.8) Changes in skin texture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.9) Other symptoms involving skin and integumentary tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\(782.9) Other symptoms involving skin and integumentary tissues\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.9''', NULL, + '(782.9) Other symptoms involving skin and integumentary tissues', '(782.9) Other symptoms involving skin and integumentary tissues', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\Pallor and flushing (782.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\Pallor and flushing (782.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.6''', NULL, + 'Pallor and flushing (782.6)', 'Pallor and flushing (782.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\Pallor and flushing (782.6)\(782.61) Pallor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\Pallor and flushing (782.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\Pallor and flushing (782.6)\(782.61) Pallor\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.61''', NULL, + '(782.61) Pallor', '(782.61) Pallor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\Pallor and flushing (782.6)\(782.62) Flushing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\Pallor and flushing (782.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving skin and other integumentary tissue (782)\Pallor and flushing (782.6)\(782.62) Flushing\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''782.62''', NULL, + '(782.62) Flushing', '(782.62) Flushing', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788''', NULL, + 'Symptoms involving urinary system (788)', 'Symptoms involving urinary system (788)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\(788.0) Renal colic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\(788.0) Renal colic\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.0''', NULL, + '(788.0) Renal colic', '(788.0) Renal colic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\(788.1) Dysuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\(788.1) Dysuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.1''', NULL, + '(788.1) Dysuria', '(788.1) Dysuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\(788.5) Oliguria and anuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\(788.5) Oliguria and anuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.5''', NULL, + '(788.5) Oliguria and anuria', '(788.5) Oliguria and anuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\(788.7) Urethral discharge\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\(788.7) Urethral discharge\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.7''', NULL, + '(788.7) Urethral discharge', '(788.7) Urethral discharge', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\(788.8) Extravasation of urine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\(788.8) Extravasation of urine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.8''', NULL, + '(788.8) Extravasation of urine', '(788.8) Extravasation of urine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Frequency of urination and polyuria (788.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Frequency of urination and polyuria (788.4)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.4''', NULL, + 'Frequency of urination and polyuria (788.4)', 'Frequency of urination and polyuria (788.4)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Frequency of urination and polyuria (788.4)\(788.41) Urinary frequency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Frequency of urination and polyuria (788.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Frequency of urination and polyuria (788.4)\(788.41) Urinary frequency\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.41''', NULL, + '(788.41) Urinary frequency', '(788.41) Urinary frequency', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Frequency of urination and polyuria (788.4)\(788.42) Polyuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Frequency of urination and polyuria (788.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Frequency of urination and polyuria (788.4)\(788.42) Polyuria\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.42''', NULL, + '(788.42) Polyuria', '(788.42) Polyuria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Frequency of urination and polyuria (788.4)\(788.43) Nocturia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Frequency of urination and polyuria (788.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Frequency of urination and polyuria (788.4)\(788.43) Nocturia\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.43''', NULL, + '(788.43) Nocturia', '(788.43) Nocturia', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.6''', NULL, + 'Other abnormality of urination (788.6)', 'Other abnormality of urination (788.6)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.61) Splitting of urinary stream\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.61) Splitting of urinary stream\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.61''', NULL, + '(788.61) Splitting of urinary stream', '(788.61) Splitting of urinary stream', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.62) Slowing of urinary stream\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.62) Slowing of urinary stream\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.62''', NULL, + '(788.62) Slowing of urinary stream', '(788.62) Slowing of urinary stream', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.63) Urgency of urination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.63) Urgency of urination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.63''', NULL, + '(788.63) Urgency of urination', '(788.63) Urgency of urination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.64) Urinary hesitancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.64) Urinary hesitancy\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.64''', NULL, + '(788.64) Urinary hesitancy', '(788.64) Urinary hesitancy', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.65) Straining on urination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.65) Straining on urination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.65''', NULL, + '(788.65) Straining on urination', '(788.65) Straining on urination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.69) Other abnormality of urination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other abnormality of urination (788.6)\(788.69) Other abnormality of urination\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.69''', NULL, + '(788.69) Other abnormality of urination', '(788.69) Other abnormality of urination', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other symptoms involving urinary system (788.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other symptoms involving urinary system (788.9)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.9''', NULL, + 'Other symptoms involving urinary system (788.9)', 'Other symptoms involving urinary system (788.9)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other symptoms involving urinary system (788.9)\(788.91) Functional urinary incontinence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other symptoms involving urinary system (788.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other symptoms involving urinary system (788.9)\(788.91) Functional urinary incontinence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.91''', NULL, + '(788.91) Functional urinary incontinence', '(788.91) Functional urinary incontinence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other symptoms involving urinary system (788.9)\(788.99) Other symptoms involving urinary system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other symptoms involving urinary system (788.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Other symptoms involving urinary system (788.9)\(788.99) Other symptoms involving urinary system\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.99''', NULL, + '(788.99) Other symptoms involving urinary system', '(788.99) Other symptoms involving urinary system', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Retention of urine (788.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Retention of urine (788.2)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.2''', NULL, + 'Retention of urine (788.2)', 'Retention of urine (788.2)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Retention of urine (788.2)\(788.20) Retention of urine, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Retention of urine (788.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Retention of urine (788.2)\(788.20) Retention of urine, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.20''', NULL, + '(788.20) Retention of urine, unspecified', '(788.20) Retention of urine, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Retention of urine (788.2)\(788.21) Incomplete bladder emptying\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Retention of urine (788.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Retention of urine (788.2)\(788.21) Incomplete bladder emptying\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.21''', NULL, + '(788.21) Incomplete bladder emptying', '(788.21) Incomplete bladder emptying', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Retention of urine (788.2)\(788.29) Other specified retention of urine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Retention of urine (788.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Retention of urine (788.2)\(788.29) Other specified retention of urine\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.29''', NULL, + '(788.29) Other specified retention of urine', '(788.29) Other specified retention of urine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 1, 0, + 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.3''', NULL, + 'Urinary incontinence (788.3)', 'Urinary incontinence (788.3)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.30) Urinary incontinence, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.30) Urinary incontinence, unspecified\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.30''', NULL, + '(788.30) Urinary incontinence, unspecified', '(788.30) Urinary incontinence, unspecified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.31) Urge incontinence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.31) Urge incontinence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.31''', NULL, + '(788.31) Urge incontinence', '(788.31) Urge incontinence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.32) Stress incontinence, male\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.32) Stress incontinence, male\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.32''', NULL, + '(788.32) Stress incontinence, male', '(788.32) Stress incontinence, male', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.33) Mixed incontinence (male) (female)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.33) Mixed incontinence (male) (female)\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.33) Mixed incontinence (male) (female''', NULL, + '(788.33) Mixed incontinence (male) (female)', '(788.33) Mixed incontinence (male) (female)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.34) Incontinence without sensory awareness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.34) Incontinence without sensory awareness\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.34''', NULL, + '(788.34) Incontinence without sensory awareness', '(788.34) Incontinence without sensory awareness', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.35) Post-void dribbling\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.35) Post-void dribbling\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.35''', NULL, + '(788.35) Post-void dribbling', '(788.35) Post-void dribbling', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.36) Nocturnal enuresis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.36) Nocturnal enuresis\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.36''', NULL, + '(788.36) Nocturnal enuresis', '(788.36) Nocturnal enuresis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.37) Continuous leakage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.37) Continuous leakage\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.37''', NULL, + '(788.37) Continuous leakage', '(788.37) Continuous leakage', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.38) Overflow incontinence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.38) Overflow incontinence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.38''', NULL, + '(788.38) Overflow incontinence', '(788.38) Overflow incontinence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.39) Other urinary incontinence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Symptoms, signs, and ill-defined conditions (780-799.99)\Symptoms (780-789.99)\Symptoms involving urinary system (788)\Urinary incontinence (788.3)\(788.39) Other urinary incontinence\', 1, 0, + 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''788.39''', NULL, + '(788.39) Other urinary incontinence', '(788.39) Other urinary incontinence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', NULL, 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 1, 0, + 1, 1, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''Labs'')', 'value_as_number', + 'Lab Test Results', 'Lab Test Results', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP7755-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP7755-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP7755-4'')', 'value_as_number', + 'Antibiotic Susceptibilities', 'Antibiotic Susceptibilities', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP32651-9'')', 'value_as_number', + 'Blood Bank', 'Blood Bank', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP36683-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP36683-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP36683-8'')', 'value_as_number', + 'ABO and Rh', 'ABO and Rh', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP36683-8\882-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP36683-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP36683-8\882-1\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''882-1'')', 'value_as_number', + 'ABO+Rh Gp Bld', 'ABO+Rh Gp Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP67162-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP67162-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP67162-5'')', 'value_as_number', + 'Blood group antibodies', 'Blood group antibodies', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP67162-5\890-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP67162-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP67162-5\890-4\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''890-4'')', 'value_as_number', + 'Bld gp Ab Scn SerPl Ql', 'Bld gp Ab Scn SerPl Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32652-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32652-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP32652-7'')', 'value_as_number', + 'Blood Group Systems', 'Blood Group Systems', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32652-7\883-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32652-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32652-7\883-9\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''883-9'')', 'value_as_number', + 'ABO Group Bld', 'ABO Group Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32652-7\10331-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32652-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32652-7\10331-7\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''10331-7'')', 'value_as_number', + 'Rh Bld', 'Rh Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32807-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32807-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP32807-7'')', 'value_as_number', + 'Crossmatch', 'Crossmatch', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32807-7\1250-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32807-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32651-9\LP32807-7\1250-0\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1250-0'')', 'value_as_number', + 'Maj XM SerPl-Imp', 'Maj XM SerPl-Imp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31388-9'')', 'value_as_number', + 'Chemistry', 'Chemistry', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31409-3'')', 'value_as_number', + 'Cardiovascular (excluding enzymes)', 'Cardiovascular (excluding enzymes)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\LP94520-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\LP94520-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP94520-1'')', 'value_as_number', + 'Natriuretic peptide', 'Natriuretic peptide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\LP94520-1\30934-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\LP94520-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\LP94520-1\30934-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''30934-4'')', 'value_as_number', + 'BNP SerPl-mCnc', 'BNP SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\10839-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\10839-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''10839-9'')', 'value_as_number', + 'Troponin I SerPl-mCnc', 'Troponin I SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\6598-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31409-3\6598-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''6598-7'')', 'value_as_number', + 'Troponin T SerPl-mCnc', 'Troponin T SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP19403-2'')', 'value_as_number', + 'Electrolytes - single valence', 'Electrolytes - single valence', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP30809-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP30809-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP30809-5'')', 'value_as_number', + 'Anion gap', 'Anion gap', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP30809-5\33037-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP30809-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP30809-5\33037-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''33037-3'')', 'value_as_number', + 'Anion Gap SerPl-sCnc', 'Anion Gap SerPl-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP30809-5\10466-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP30809-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP30809-5\10466-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''10466-1'')', 'value_as_number', + 'Anion Gap3 SerPl-sCnc', 'Anion Gap3 SerPl-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15483-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15483-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15483-8'')', 'value_as_number', + 'Chloride', 'Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15483-8\2069-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15483-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15483-8\2069-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2069-3'')', 'value_as_number', + 'Chloride Bld-sCnc', 'Chloride Bld-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15483-8\2075-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15483-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15483-8\2075-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2075-0'')', 'value_as_number', + 'Chloride SerPl-sCnc', 'Chloride SerPl-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\1959-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\1959-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1959-6'')', 'value_as_number', + 'HCO3 Bld-sCnc', 'HCO3 Bld-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15098-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15098-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15098-4'')', 'value_as_number', + 'Potassium', 'Potassium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15098-4\6298-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15098-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15098-4\6298-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''6298-4'')', 'value_as_number', + 'Potassium Bld-sCnc', 'Potassium Bld-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15098-4\2823-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15098-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15098-4\2823-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2823-3'')', 'value_as_number', + 'Potassium SerPl-sCnc', 'Potassium SerPl-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15099-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15099-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15099-2'')', 'value_as_number', + 'Sodium', 'Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15099-2\2947-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15099-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15099-2\2947-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2947-0'')', 'value_as_number', + 'Sodium Bld-sCnc', 'Sodium Bld-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15099-2\2951-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15099-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP19403-2\LP15099-2\2951-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2951-2'')', 'value_as_number', + 'Sodium SerPl-sCnc', 'Sodium SerPl-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31396-2'')', 'value_as_number', + 'Endocrine', 'Endocrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP14651-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP14651-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14651-1'')', 'value_as_number', + 'Choriogonadotropin', 'Choriogonadotropin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP14651-1\2106-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP14651-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP14651-1\2106-3\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2106-3'')', 'value_as_number', + 'HCG Preg Ur Ql', 'HCG Preg Ur Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP14651-1\19080-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP14651-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP14651-1\19080-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''19080-1'')', 'value_as_number', + 'HCG SerPl-aCnc', 'HCG SerPl-aCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\2243-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\2243-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2243-4'')', 'value_as_number', + 'Estradiol SerPl-mCnc', 'Estradiol SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP18184-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP18184-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP18184-9'')', 'value_as_number', + 'Parathyrin', 'Parathyrin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP18184-9\2731-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP18184-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP18184-9\2731-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2731-8'')', 'value_as_number', + 'PTH-Intact SerPl-mCnc', 'PTH-Intact SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31660-1'')', 'value_as_number', + 'Pituitary Hormones-', 'Pituitary Hormones-', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14499-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14499-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14499-5'')', 'value_as_number', + 'Follitropin', 'Follitropin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14499-5\15067-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14499-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14499-5\15067-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''15067-2'')', 'value_as_number', + 'FSH SerPl-aCnc', 'FSH SerPl-aCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14683-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14683-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14683-4'')', 'value_as_number', + 'Lutropin', 'Lutropin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14683-4\10501-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14683-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14683-4\10501-5\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''10501-5'')', 'value_as_number', + 'LH SerPl-aCnc', 'LH SerPl-aCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\2842-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\2842-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2842-3'')', 'value_as_number', + 'Prolactin SerPl-mCnc', 'Prolactin SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14487-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14487-0\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14487-0'')', 'value_as_number', + 'Thyrotropin', 'Thyrotropin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14487-0\11579-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14487-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14487-0\11579-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''11579-0'')', 'value_as_number', + 'TSH SerPl DL<=0.05 mIU/L-aCnc', 'TSH SerPl DL<=0.05 mIU/L-aCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14487-0\3016-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14487-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31660-1\LP14487-0\3016-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3016-3'')', 'value_as_number', + 'TSH SerPl-aCnc', 'TSH SerPl-aCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\2986-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\2986-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2986-8'')', 'value_as_number', + 'Testost SerPl-mCnc', 'Testost SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31666-8'')', 'value_as_number', + 'Thyroid Hormones-', 'Thyroid Hormones-', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15900-1'')', 'value_as_number', + 'Thyroxine', 'Thyroxine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\LP29119-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\LP29119-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP29119-2'')', 'value_as_number', + 'Thyroxine free', 'Thyroxine free', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\LP29119-2\3024-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\LP29119-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\LP29119-2\3024-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3024-7'')', 'value_as_number', + 'T4 Free SerPl-mCnc', 'T4 Free SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\LP43742-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\LP43742-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP43742-3'')', 'value_as_number', + 'Thyroxine | Bld-Ser-Plas', 'Thyroxine | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\LP43742-3\3026-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\LP43742-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15900-1\LP43742-3\3026-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3026-2'')', 'value_as_number', + 'T4 SerPl-mCnc', 'T4 SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15922-5'')', 'value_as_number', + 'Triiodothyronine', 'Triiodothyronine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP29126-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP29126-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP29126-7'')', 'value_as_number', + 'Triiodothyronine Free', 'Triiodothyronine Free', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP29126-7\3051-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP29126-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP29126-7\3051-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3051-0'')', 'value_as_number', + 'T3Free SerPl-mCnc', 'T3Free SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP15921-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP15921-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15921-7'')', 'value_as_number', + 'Triiodothyronine resin uptake (T3RU)', 'Triiodothyronine resin uptake (T3RU)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP15921-7\3050-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP15921-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP15921-7\3050-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3050-2'')', 'value_as_number', + 'T3RU NFr SerPl', 'T3RU NFr SerPl', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP43749-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP43749-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP43749-8'')', 'value_as_number', + 'Triiodothyronine | Bld-Ser-Plas', 'Triiodothyronine | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP43749-8\3053-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP43749-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31396-2\LP31666-8\LP15922-5\LP43749-8\3053-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3053-6'')', 'value_as_number', + 'T3 SerPl-mCnc', 'T3 SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31392-1'')', 'value_as_number', + 'Enzymes (see also Inborn errors metabolism lysosomal)', 'Enzymes (see also Inborn errors metabolism lysosomal)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15333-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15333-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15333-5'')', 'value_as_number', + 'Alanine aminotransferase', 'Alanine aminotransferase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15333-5\1742-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15333-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15333-5\1742-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1742-6'')', 'value_as_number', + 'ALT SerPl-cCnc', 'ALT SerPl-cCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15346-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15346-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15346-7'')', 'value_as_number', + 'Alkaline phosphatase', 'Alkaline phosphatase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15346-7\6768-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15346-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15346-7\6768-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''6768-6'')', 'value_as_number', + 'ALP SerPl-cCnc', 'ALP SerPl-cCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\1798-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\1798-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1798-8'')', 'value_as_number', + 'Amylase SerPl-cCnc', 'Amylase SerPl-cCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15426-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15426-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15426-7'')', 'value_as_number', + 'Aspartate aminotransferase', 'Aspartate aminotransferase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15426-7\1920-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15426-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15426-7\1920-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1920-8'')', 'value_as_number', + 'AST SerPl-cCnc', 'AST SerPl-cCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15510-8'')', 'value_as_number', + 'Creatine kinase', 'Creatine kinase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\2157-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\2157-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2157-6'')', 'value_as_number', + 'CK SerPl-cCnc', 'CK SerPl-cCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\LP32868-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\LP32868-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP32868-9'')', 'value_as_number', + 'Creatine kinase isoenzymes', 'Creatine kinase isoenzymes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\LP32868-9\20569-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\LP32868-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\LP32868-9\20569-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''20569-0'')', 'value_as_number', + 'CK MB CFr SerPl', 'CK MB CFr SerPl', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\LP32868-9\13969-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\LP32868-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15510-8\LP32868-9\13969-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''13969-1'')', 'value_as_number', + 'CK MB SerPl-mCnc', 'CK MB SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15590-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15590-0\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15590-0'')', 'value_as_number', + 'Gamma glutamyl transferase', 'Gamma glutamyl transferase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15590-0\2324-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15590-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15590-0\2324-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2324-2'')', 'value_as_number', + 'GGT SerPl-cCnc', 'GGT SerPl-cCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15033-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15033-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15033-1'')', 'value_as_number', + 'Lactate dehydrogenase', 'Lactate dehydrogenase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15033-1\2532-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15033-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\LP15033-1\2532-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2532-0'')', 'value_as_number', + 'LDH SerPl-cCnc', 'LDH SerPl-cCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\3040-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31392-1\3040-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3040-3'')', 'value_as_number', + 'Lipase SerPl-cCnc', 'Lipase SerPl-cCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31400-2'')', 'value_as_number', + 'Gases and acid/Base', 'Gases and acid/Base', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15429-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15429-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15429-1'')', 'value_as_number', + 'Base excess', 'Base excess', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15429-1\11555-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15429-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15429-1\11555-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''11555-0'')', 'value_as_number', + 'Base excess Bld-sCnc', 'Base excess Bld-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15150-3'')', 'value_as_number', + 'Carbon dioxide', 'Carbon dioxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP41597-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP41597-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP41597-3'')', 'value_as_number', + 'Carbon Dioxide | Bld-Ser-Plas', 'Carbon Dioxide | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP41597-3\20565-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP41597-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP41597-3\20565-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''20565-8'')', 'value_as_number', + 'CO2 Bld-sCnc', 'CO2 Bld-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP41597-3\2028-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP41597-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP41597-3\2028-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2028-9'')', 'value_as_number', + 'CO2 SerPl-sCnc', 'CO2 SerPl-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP41597-3\11557-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP41597-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP41597-3\11557-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''11557-6'')', 'value_as_number', + 'pCO2 Bld', 'pCO2 Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP45660-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP45660-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP45660-5'')', 'value_as_number', + 'Carbon Dioxide | Blood arterial', 'Carbon Dioxide | Blood arterial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP45660-5\2019-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP45660-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP15150-3\LP45660-5\2019-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2019-8'')', 'value_as_number', + 'pCO2 BldA', 'pCO2 BldA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14536-4'')', 'value_as_number', + 'Oxygen', 'Oxygen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP15765-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP15765-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15765-8'')', 'value_as_number', + 'Oxygen saturation.calculated from oxygen partial pressure', 'Oxygen saturation.calculated from oxygen partial pressure', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP15765-8\2713-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP15765-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP15765-8\2713-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2713-6'')', 'value_as_number', + 'SaO2% from pO2 Bld', 'SaO2% from pO2 Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP41596-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP41596-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP41596-5'')', 'value_as_number', + 'Oxygen | Bld-Ser-Plas', 'Oxygen | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP41596-5\11556-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP41596-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP41596-5\11556-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''11556-8'')', 'value_as_number', + 'pO2 Bld', 'pO2 Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP46137-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP46137-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP46137-3'')', 'value_as_number', + 'Oxygen | Blood arterial', 'Oxygen | Blood arterial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP46137-3\2703-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP46137-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14536-4\LP46137-3\2703-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2703-7'')', 'value_as_number', + 'pO2 BldA', 'pO2 BldA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14752-7'')', 'value_as_number', + 'pH', 'pH', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP41598-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP41598-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP41598-1'')', 'value_as_number', + 'pH | Bld-Ser-Plas', 'pH | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP41598-1\11558-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP41598-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP41598-1\11558-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''11558-4'')', 'value_as_number', + 'pH Bld', 'pH Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP41598-1\2753-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP41598-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP41598-1\2753-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2753-2'')', 'value_as_number', + 'pH SerPl', 'pH SerPl', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP48770-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP48770-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP48770-9'')', 'value_as_number', + 'pH | Blood arterial', 'pH | Blood arterial', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP48770-9\2744-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP48770-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31400-2\LP14752-7\LP48770-9\2744-1\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2744-1'')', 'value_as_number', + 'pH BldA', 'pH BldA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15677-5'')', 'value_as_number', + 'Iron', 'Iron', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\2276-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\2276-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2276-4'')', 'value_as_number', + 'Ferritin SerPl-mCnc', 'Ferritin SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\LP15678-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\LP15678-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15678-3'')', 'value_as_number', + 'Iron binding capacity', 'Iron binding capacity', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\LP15678-3\2500-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\LP15678-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\LP15678-3\2500-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2500-7'')', 'value_as_number', + 'TIBC SerPl-mCnc', 'TIBC SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\2498-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15677-5\2498-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2498-4'')', 'value_as_number', + 'Iron SerPl-mCnc', 'Iron SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15705-4'')', 'value_as_number', + 'Lipids', 'Lipids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15493-7'')', 'value_as_number', + 'Cholesterol', 'Cholesterol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\2093-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\2093-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2093-3'')', 'value_as_number', + 'Cholest SerPl-mCnc', 'Cholest SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\9830-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\9830-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''9830-1'')', 'value_as_number', + 'Cholest/HDLc SerPl-mRto', 'Cholest/HDLc SerPl-mRto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15491-1'')', 'value_as_number', + 'Cholesterol in LDL', 'Cholesterol in LDL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\13457-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\13457-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''13457-7'')', 'value_as_number', + 'LDLc SerPl Calc-mCnc', 'LDLc SerPl Calc-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\18262-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\18262-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''18262-6'')', 'value_as_number', + 'LDLc SerPl Direct Assay-mCnc', 'LDLc SerPl Direct Assay-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\2089-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\2089-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2089-1'')', 'value_as_number', + 'LDLc SerPl-mCnc', 'LDLc SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\11054-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15491-1\11054-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''11054-4'')', 'value_as_number', + 'LDLc/HDLc SerPl-mRto', 'LDLc/HDLc SerPl-mRto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15492-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15492-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15492-9'')', 'value_as_number', + 'Cholesterol in VLDL', 'Cholesterol in VLDL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15492-9\13458-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15492-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15492-9\13458-5\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''13458-5'')', 'value_as_number', + 'VLDLc SerPl Calc-mCnc', 'VLDLc SerPl Calc-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15492-9\2091-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15492-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\LP15492-9\2091-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2091-7'')', 'value_as_number', + 'VLDLc SerPl-mCnc', 'VLDLc SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\2085-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\LP15493-7\2085-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2085-9'')', 'value_as_number', + 'HDLc SerPl-mCnc', 'HDLc SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\2571-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15705-4\2571-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2571-8'')', 'value_as_number', + 'Trigl SerPl-mCnc', 'Trigl SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31397-0'')', 'value_as_number', + 'Liver function (excluding enzymes)', 'Liver function (excluding enzymes)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15448-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15448-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15448-1'')', 'value_as_number', + 'Bilirubin', 'Bilirubin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15448-1\1968-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15448-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15448-1\1968-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1968-7'')', 'value_as_number', + 'Bilirub Direct SerPl-mCnc', 'Bilirub Direct SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15448-1\1971-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15448-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15448-1\1971-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1971-1'')', 'value_as_number', + 'Bilirub Indirect SerPl-mCnc', 'Bilirub Indirect SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15448-1\1975-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15448-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15448-1\1975-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1975-2'')', 'value_as_number', + 'Bilirub SerPl-mCnc', 'Bilirub SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15942-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15942-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15942-3'')', 'value_as_number', + 'Urobilinogen', 'Urobilinogen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15942-3\5818-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15942-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31397-0\LP15942-3\5818-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5818-0'')', 'value_as_number', + 'Urobilinogen Ur Ql Strip', 'Urobilinogen Ur Ql Strip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31413-5'')', 'value_as_number', + 'Mineral, bone, joint, connective tissue', 'Mineral, bone, joint, connective tissue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP15257-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP15257-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15257-6'')', 'value_as_number', + 'Calcium', 'Calcium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP15257-6\LP15458-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP15257-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP15257-6\LP15458-0\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15458-0'')', 'value_as_number', + 'Calcium.ionized', 'Calcium.ionized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP15257-6\LP15458-0\1994-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP15257-6\LP15458-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP15257-6\LP15458-0\1994-3\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1994-3'')', 'value_as_number', + 'Ca-I Bld-sCnc', 'Ca-I Bld-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP15257-6\LP15458-0\1995-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP15257-6\LP15458-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP15257-6\LP15458-0\1995-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1995-0'')', 'value_as_number', + 'Ca-I SerPl-sCnc', 'Ca-I SerPl-sCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP14343-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP14343-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14343-5'')', 'value_as_number', + 'Magnesium', 'Magnesium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP14343-5\19123-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP14343-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\LP14343-5\19123-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''19123-9'')', 'value_as_number', + 'Magnesium SerPl-mCnc', 'Magnesium SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\2777-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31413-5\2777-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2777-1'')', 'value_as_number', + 'Phosphate SerPl-mCnc', 'Phosphate SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31405-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31405-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31405-1'')', 'value_as_number', + 'Nucelotides/sides and derivatives', 'Nucelotides/sides and derivatives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31405-1\3084-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31405-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31405-1\3084-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3084-1'')', 'value_as_number', + 'Urate SerPl-mCnc', 'Urate SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15838-3'')', 'value_as_number', + 'Protein', 'Protein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP6118-6'')', 'value_as_number', + 'Albumin', 'Albumin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP43038-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP43038-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP43038-6'')', 'value_as_number', + 'Albumin | Bld-Ser-Plas', 'Albumin | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP43038-6\1751-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP43038-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP43038-6\1751-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1751-7'')', 'value_as_number', + 'Albumin SerPl-mCnc', 'Albumin SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP43038-6\1759-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP43038-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP43038-6\1759-0\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1759-0'')', 'value_as_number', + 'Albumin/Glob SerPl-mRto', 'Albumin/Glob SerPl-mRto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP41466-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP41466-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP41466-1'')', 'value_as_number', + 'Albumin | Urine', 'Albumin | Urine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP41466-1\14957-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP41466-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP41466-1\14957-5\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''14957-5'')', 'value_as_number', + 'Microalbumin Ur-mCnc', 'Microalbumin Ur-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP41466-1\14959-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP41466-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\LP41466-1\14959-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''14959-1'')', 'value_as_number', + 'Microalbumin/Creat Ur-mRto', 'Microalbumin/Creat Ur-mRto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\14338-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP6118-6\14338-8\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''14338-8'')', 'value_as_number', + 'Prealb SerPl-mCnc', 'Prealb SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP15023-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP15023-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15023-2'')', 'value_as_number', + 'C reactive protein', 'C reactive protein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP15023-2\1988-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP15023-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP15023-2\1988-5\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1988-5'')', 'value_as_number', + 'CRP SerPl-mCnc', 'CRP SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP14885-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP14885-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14885-5'')', 'value_as_number', + 'Globulin', 'Globulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP14885-5\10834-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP14885-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP14885-5\10834-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''10834-0'')', 'value_as_number', + 'Globulin Ser Calc-mCnc', 'Globulin Ser Calc-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP14885-5\2336-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP14885-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP14885-5\2336-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2336-6'')', 'value_as_number', + 'Globulin Ser-mCnc', 'Globulin Ser-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP31769-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP31769-0\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31769-0'')', 'value_as_number', + 'Immunoglobulins', 'Immunoglobulins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP31769-0\2458-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP31769-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP31769-0\2458-8\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2458-8'')', 'value_as_number', + 'IgA Ser-mCnc', 'IgA Ser-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP31769-0\2465-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP31769-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP31769-0\2465-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2465-3'')', 'value_as_number', + 'IgG Ser-mCnc', 'IgG Ser-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP31769-0\2472-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP31769-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP15838-3\LP31769-0\2472-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2472-9'')', 'value_as_number', + 'IgM Ser-mCnc', 'IgM Ser-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31398-8'')', 'value_as_number', + 'Renal function', 'Renal function', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14355-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14355-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14355-9'')', 'value_as_number', + 'Creatinine', 'Creatinine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14355-9\2161-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14355-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14355-9\2161-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2161-8'')', 'value_as_number', + 'Creat Ur-mCnc', 'Creat Ur-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14355-9\LP41281-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14355-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14355-9\LP41281-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP41281-4'')', 'value_as_number', + 'Creatinine | Bld-Ser-Plas', 'Creatinine | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14355-9\LP41281-4\2160-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14355-9\LP41281-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14355-9\LP41281-4\2160-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2160-0'')', 'value_as_number', + 'Creat SerPl-mCnc', 'Creat SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14492-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14492-0\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14492-0'')', 'value_as_number', + 'Urea nitrogen', 'Urea nitrogen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14492-0\3094-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14492-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14492-0\3094-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3094-0'')', 'value_as_number', + 'BUN SerPl-mCnc', 'BUN SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14492-0\3097-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14492-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31398-8\LP14492-0\3097-3\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3097-3'')', 'value_as_number', + 'BUN/Creat SerPl-mRto', 'BUN/Creat SerPl-mRto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31415-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31415-0\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31415-0'')', 'value_as_number', + 'Small molecules', 'Small molecules', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31415-0\LP15683-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31415-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31415-0\LP15683-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15683-3'')', 'value_as_number', + 'Ketones', 'Ketones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31415-0\LP15683-3\33903-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31415-0\LP15683-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31415-0\LP15683-3\33903-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''33903-6'')', 'value_as_number', + 'Ketones Ur Ql', 'Ketones Ur Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31415-0\LP15683-3\2514-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31415-0\LP15683-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31415-0\LP15683-3\2514-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2514-8'')', 'value_as_number', + 'Ketones Ur Ql Strip', 'Ketones Ur Ql Strip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31399-6'')', 'value_as_number', + 'Sugars/Sugar metabolism', 'Sugars/Sugar metabolism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14635-4'')', 'value_as_number', + 'Glucose', 'Glucose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\27353-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\27353-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''27353-2'')', 'value_as_number', + 'Est. average glucose Bld gHb Est-mCnc', 'Est. average glucose Bld gHb Est-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\2349-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\2349-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2349-9'')', 'value_as_number', + 'Glucose Ur Ql', 'Glucose Ur Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\LP42107-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\LP42107-0\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP42107-0'')', 'value_as_number', + 'Glucose | Bld-Ser-Plas', 'Glucose | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\LP42107-0\2339-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\LP42107-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\LP42107-0\2339-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2339-0'')', 'value_as_number', + 'Glucose Bld-mCnc', 'Glucose Bld-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\LP42107-0\2345-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\LP42107-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31399-6\LP14635-4\LP42107-0\2345-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2345-7'')', 'value_as_number', + 'Glucose SerPl-mCnc', 'Glucose SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31412-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31412-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31412-7'')', 'value_as_number', + 'Tumor markers', 'Tumor markers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31412-7\LP14689-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31412-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31412-7\LP14689-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14689-1'')', 'value_as_number', + 'Prostate specific', 'Prostate specific', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31412-7\LP14689-1\2857-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31412-7\LP14689-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31412-7\LP14689-1\2857-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2857-1'')', 'value_as_number', + 'PSA SerPl-mCnc', 'PSA SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31395-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31395-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31395-4'')', 'value_as_number', + 'Vitamins', 'Vitamins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31395-4\1989-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31395-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31395-4\1989-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''1989-3'')', 'value_as_number', + '25(OH)D3 SerPl-mCnc', '25(OH)D3 SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31395-4\2284-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31395-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31395-4\2284-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2284-8'')', 'value_as_number', + 'Folate SerPl-mCnc', 'Folate SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31395-4\2132-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31395-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31388-9\LP31395-4\2132-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2132-9'')', 'value_as_number', + 'Vit B12 SerPl-mCnc', 'Vit B12 SerPl-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP19284-6'')', 'value_as_number', + 'Coagulation', 'Coagulation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31624-7'')', 'value_as_number', + 'Routine', 'Routine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP49716-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP49716-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP49716-1'')', 'value_as_number', + 'Activated Clotting Time | Bld-Ser-Plas', 'Activated Clotting Time | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP49716-1\3184-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP49716-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP49716-1\3184-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3184-9'')', 'value_as_number', + 'ACT Time Bld', 'ACT Time Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP15957-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP15957-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15957-1'')', 'value_as_number', + 'Activated partial thromboplastin time (aPTT)', 'Activated partial thromboplastin time (aPTT)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP15957-1\3173-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP15957-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP15957-1\3173-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3173-2'')', 'value_as_number', + 'aPTT Time Bld', 'aPTT Time Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP15957-1\14979-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP15957-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP15957-1\14979-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''14979-9'')', 'value_as_number', + 'aPTT Time PPP', 'aPTT Time PPP', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\3255-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\3255-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3255-7'')', 'value_as_number', + 'Fibrinogen PPP-mCnc', 'Fibrinogen PPP-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP16870-5'')', 'value_as_number', + 'Prothrombin time (PT)', 'Prothrombin time (PT)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP17102-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP17102-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP17102-2'')', 'value_as_number', + 'INR', 'INR', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP17102-2\34714-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP17102-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP17102-2\34714-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''34714-6'')', 'value_as_number', + 'INR Bld', 'INR Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP17102-2\6301-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP17102-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP17102-2\6301-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''6301-6'')', 'value_as_number', + 'INR PPP', 'INR PPP', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP51872-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP51872-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP51872-7'')', 'value_as_number', + 'Prothrombin Time (PT) | Platelet poor plasma', 'Prothrombin Time (PT) | Platelet poor plasma', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP51872-7\5902-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP51872-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP19284-6\LP31624-7\LP16870-5\LP51872-7\5902-2\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5902-2'')', 'value_as_number', + 'PT Time PPP', 'PT Time PPP', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32760-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32760-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP32760-8'')', 'value_as_number', + 'Cytology', 'Cytology', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32760-8\19769-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32760-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32760-8\19769-9\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''19769-9'')', 'value_as_number', + 'Pathologist Cvx/Vag Cyto', 'Pathologist Cvx/Vag Cyto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31389-7'')', 'value_as_number', + 'Drug/Tox', 'Drug/Tox', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP18046-0'')', 'value_as_number', + 'Drugs', 'Drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31448-1'')', 'value_as_number', + 'Controlled substances and drugs of abuse', 'Controlled substances and drugs of abuse', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\3349-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\3349-8\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3349-8'')', 'value_as_number', + 'Amphetamines Ur Ql', 'Amphetamines Ur Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\18282-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\18282-4\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''18282-4'')', 'value_as_number', + 'Cannabinoids Ur Ql Scn', 'Cannabinoids Ur Ql Scn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\LP16048-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\LP16048-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP16048-8'')', 'value_as_number', + 'Cocaine', 'Cocaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\LP16048-8\3393-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\LP16048-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\LP16048-8\3393-6\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3393-6'')', 'value_as_number', + 'BZE Ur Ql', 'BZE Ur Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\3879-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31448-1\3879-4\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3879-4'')', 'value_as_number', + 'Opiates Ur Ql', 'Opiates Ur Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31454-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31454-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31454-9'')', 'value_as_number', + 'Immunosuppressives', 'Immunosuppressives', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31454-9\11253-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31454-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31454-9\11253-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''11253-2'')', 'value_as_number', + 'Tacrolimus Bld-mCnc', 'Tacrolimus Bld-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31425-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31425-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31425-9'')', 'value_as_number', + 'Neurological drugs', 'Neurological drugs', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31425-9\3377-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31425-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP31425-9\3377-9\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3377-9'')', 'value_as_number', + 'Barbiturates Ur Ql', 'Barbiturates Ur Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP30812-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP30812-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP30812-9'')', 'value_as_number', + 'Tranquilizers', 'Tranquilizers', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP30812-9\3390-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP30812-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP18046-0\LP30812-9\3390-2\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''3390-2'')', 'value_as_number', + 'Benzodiaz Ur Ql', 'Benzodiaz Ur Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP31434-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP31434-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31434-1'')', 'value_as_number', + 'Elements and Elemental Ions', 'Elements and Elemental Ions', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP31434-1\5671-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP31434-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31389-7\LP31434-1\5671-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5671-3'')', 'value_as_number', + 'Lead Bld-mCnc', 'Lead Bld-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31756-7'')', 'value_as_number', + 'Hematology', 'Hematology', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP16873-9'')', 'value_as_number', + 'Blood smear finding', 'Blood smear finding', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP99309-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP99309-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP99309-4'')', 'value_as_number', + 'Erythrocyte morphology finding | Bld-Ser-Plas', 'Erythrocyte morphology finding | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP99309-4\6742-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP99309-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP99309-4\6742-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''6742-1'')', 'value_as_number', + 'RBC morph Bld', 'RBC morph Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP19268-9'')', 'value_as_number', + 'Erythrocyte shape', 'Erythrocyte shape', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\LP43902-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\LP43902-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP43902-3'')', 'value_as_number', + 'Anisocytosis | Bld-Ser-Plas', 'Anisocytosis | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\LP43902-3\15150-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\LP43902-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\LP43902-3\15150-6\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''15150-6'')', 'value_as_number', + 'Anisocytosis Bld Ql Auto', 'Anisocytosis Bld Ql Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\LP43902-3\702-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\LP43902-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\LP43902-3\702-1\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''702-1'')', 'value_as_number', + 'Anisocytosis Bld Ql Smear', 'Anisocytosis Bld Ql Smear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\774-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19268-9\774-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''774-0'')', 'value_as_number', + 'Ovalocytes Bld Ql Smear', 'Ovalocytes Bld Ql Smear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP19269-7'')', 'value_as_number', + 'Erythrocyte size', 'Erythrocyte size', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17441-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17441-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP17441-4'')', 'value_as_number', + 'Macrocytes', 'Macrocytes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17441-4\15198-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17441-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17441-4\15198-5\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''15198-5'')', 'value_as_number', + 'Macrocytes Bld Ql Auto', 'Macrocytes Bld Ql Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17441-4\738-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17441-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17441-4\738-5\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''738-5'')', 'value_as_number', + 'Macrocytes Bld Ql Smear', 'Macrocytes Bld Ql Smear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17463-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17463-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP17463-8'')', 'value_as_number', + 'Microcytes', 'Microcytes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17463-8\15199-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17463-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17463-8\15199-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''15199-3'')', 'value_as_number', + 'Microcytes Bld Ql Auto', 'Microcytes Bld Ql Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17463-8\741-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17463-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19269-7\LP17463-8\741-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''741-9'')', 'value_as_number', + 'Microcytes Bld Ql Smear', 'Microcytes Bld Ql Smear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP30927-5'')', 'value_as_number', + 'Erythrocyte staining', 'Erythrocyte staining', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\LP43919-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\LP43919-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP43919-7'')', 'value_as_number', + 'Hypochromia | Bld-Ser-Plas', 'Hypochromia | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\LP43919-7\15180-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\LP43919-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\LP43919-7\15180-3\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''15180-3'')', 'value_as_number', + 'Hypochromia Bld Ql Auto', 'Hypochromia Bld Ql Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\LP43919-7\728-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\LP43919-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\LP43919-7\728-6\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''728-6'')', 'value_as_number', + 'Hypochromia Bld Ql Smear', 'Hypochromia Bld Ql Smear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\10378-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP30927-5\10378-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''10378-8'')', 'value_as_number', + 'Polychromasia Bld Ql Smear', 'Polychromasia Bld Ql Smear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19285-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19285-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP19285-3'')', 'value_as_number', + 'Morphology', 'Morphology', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19285-3\18314-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19285-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP19285-3\18314-5\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''18314-5'')', 'value_as_number', + 'Morphology Bld-Imp', 'Morphology Bld-Imp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP99301-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP99301-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP99301-1'')', 'value_as_number', + 'Platelet morphology finding | Bld-Ser-Plas', 'Platelet morphology finding | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP99301-1\11125-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP99301-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16873-9\LP99301-1\11125-2\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''11125-2'')', 'value_as_number', + 'Plat morph Bld', 'Plat morph Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP19481-8'')', 'value_as_number', + 'Cell Fractions/Differential', 'Cell Fractions/Differential', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15094-3'')', 'value_as_number', + 'Myeloid cells', 'Myeloid cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP35614-4'')', 'value_as_number', + 'Erythroid cells', 'Erythroid cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\LP41522-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\LP41522-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP41522-1'')', 'value_as_number', + 'Erythrocytes | Bld-Ser-Plas', 'Erythrocytes | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\LP41522-1\789-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\LP41522-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\LP41522-1\789-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''789-8'')', 'value_as_number', + 'RBC # Bld Auto', 'RBC # Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\LP49448-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\LP49448-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP49448-1'')', 'value_as_number', + 'Erythrocytes | Urine', 'Erythrocytes | Urine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\LP49448-1\798-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\LP49448-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\LP49448-1\798-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''798-9'')', 'value_as_number', + 'RBC # Ur Auto', 'RBC # Ur Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\4679-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP35614-4\4679-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''4679-7'')', 'value_as_number', + 'Retics/100 RBC NFr', 'Retics/100 RBC NFr', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14419-3'')', 'value_as_number', + 'Leukocytes', 'Leukocytes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP18643-4'')', 'value_as_number', + 'Granulocytes', 'Granulocytes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14328-6'')', 'value_as_number', + 'Basophils', 'Basophils', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\26444-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\26444-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''26444-0'')', 'value_as_number', + 'Basophils # Bld', 'Basophils # Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\704-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\704-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''704-7'')', 'value_as_number', + 'Basophils # Bld Auto', 'Basophils # Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\30180-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\30180-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''30180-4'')', 'value_as_number', + 'Basophils NFr Bld', 'Basophils NFr Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\706-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\706-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''706-2'')', 'value_as_number', + 'Basophils NFr Bld Auto', 'Basophils NFr Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\707-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14328-6\707-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''707-0'')', 'value_as_number', + 'Basophils NFr Bld Manual', 'Basophils NFr Bld Manual', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14539-8'')', 'value_as_number', + 'Eosinophils', 'Eosinophils', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\26449-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\26449-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''26449-9'')', 'value_as_number', + 'Eosinophil # Bld', 'Eosinophil # Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\711-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\711-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''711-2'')', 'value_as_number', + 'Eosinophil # Bld Auto', 'Eosinophil # Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\26450-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\26450-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''26450-7'')', 'value_as_number', + 'Eosinophil NFr Bld', 'Eosinophil NFr Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\713-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\713-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''713-8'')', 'value_as_number', + 'Eosinophil NFr Bld Auto', 'Eosinophil NFr Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\714-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14539-8\714-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''714-6'')', 'value_as_number', + 'Eosinophil NFr Bld Manual', 'Eosinophil NFr Bld Manual', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14267-6'')', 'value_as_number', + 'Neutrophils', 'Neutrophils', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP47720-5'')', 'value_as_number', + 'Neutrophils | Bld-Ser-Plas', 'Neutrophils | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\26499-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\26499-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''26499-4'')', 'value_as_number', + 'Neutrophils # Bld', 'Neutrophils # Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\751-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\751-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''751-8'')', 'value_as_number', + 'Neutrophils # Bld Auto', 'Neutrophils # Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\26511-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\26511-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''26511-6'')', 'value_as_number', + 'Neutrophils NFr Bld', 'Neutrophils NFr Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\770-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP47720-5\770-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''770-8'')', 'value_as_number', + 'Neutrophils NFr Bld Auto', 'Neutrophils NFr Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP15070-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP15070-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15070-3'')', 'value_as_number', + 'Neutrophils.band form', 'Neutrophils.band form', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP15070-3\764-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP15070-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\LP15070-3\764-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''764-1'')', 'value_as_number', + 'Neuts Band NFr Bld Manual', 'Neuts Band NFr Bld Manual', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\769-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP18643-4\LP14267-6\769-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''769-0'')', 'value_as_number', + 'Neuts Seg NFr Bld Manual', 'Neuts Seg NFr Bld Manual', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP41402-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP41402-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP41402-6'')', 'value_as_number', + 'Leukocytes | Bld-Ser-Plas', 'Leukocytes | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP41402-6\26464-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP41402-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP41402-6\26464-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''26464-8'')', 'value_as_number', + 'WBC # Bld', 'WBC # Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP41402-6\6690-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP41402-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP41402-6\6690-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''6690-2'')', 'value_as_number', + 'WBC # Bld Auto', 'WBC # Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14540-6'')', 'value_as_number', + 'Lymphocytes', 'Lymphocytes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP48347-6'')', 'value_as_number', + 'Lymphocytes | Bld-Ser-Plas', 'Lymphocytes | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\26474-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\26474-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''26474-7'')', 'value_as_number', + 'Lymphocytes # Bld', 'Lymphocytes # Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\731-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\731-0\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''731-0'')', 'value_as_number', + 'Lymphocytes # Bld Auto', 'Lymphocytes # Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\26478-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\26478-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''26478-8'')', 'value_as_number', + 'Lymphocytes NFr Bld', 'Lymphocytes NFr Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\736-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\736-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''736-9'')', 'value_as_number', + 'Lymphocytes NFr Bld Auto', 'Lymphocytes NFr Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\737-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\LP48347-6\737-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''737-7'')', 'value_as_number', + 'Lymphocytes NFr Bld Manual', 'Lymphocytes NFr Bld Manual', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\735-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP14540-6\735-1\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''735-1'')', 'value_as_number', + 'Variant Lymphs NFr Bld Manual', 'Variant Lymphs NFr Bld Manual', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP48349-2'')', 'value_as_number', + 'Monocytes | Bld-Ser-Plas', 'Monocytes | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\26484-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\26484-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''26484-6'')', 'value_as_number', + 'Monocytes # Bld', 'Monocytes # Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\742-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\742-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''742-7'')', 'value_as_number', + 'Monocytes # Bld Auto', 'Monocytes # Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\26485-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\26485-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''26485-3'')', 'value_as_number', + 'Monocytes NFr Bld', 'Monocytes NFr Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\5905-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\5905-5\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5905-5'')', 'value_as_number', + 'Monocytes NFr Bld Auto', 'Monocytes NFr Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\744-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14419-3\LP48349-2\744-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''744-3'')', 'value_as_number', + 'Monocytes NFr Bld Manual', 'Monocytes NFr Bld Manual', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14597-6'')', 'value_as_number', + 'Platelets', 'Platelets', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP31668-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP31668-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31668-4'')', 'value_as_number', + 'Platelet indices', 'Platelet indices', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP31668-4\32623-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP31668-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP31668-4\32623-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''32623-1'')', 'value_as_number', + 'PMV Bld Auto', 'PMV Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP41375-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP41375-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP41375-4'')', 'value_as_number', + 'Platelets | Bld-Ser-Plas', 'Platelets | Bld-Ser-Plas', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP41375-4\26515-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP41375-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP41375-4\26515-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''26515-7'')', 'value_as_number', + 'Platelet # Bld', 'Platelet # Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP41375-4\777-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP41375-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP41375-4\777-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''777-3'')', 'value_as_number', + 'Platelet # Bld Auto', 'Platelet # Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP41375-4\9317-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP41375-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP19481-8\LP15094-3\LP14597-6\LP41375-4\9317-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''9317-9'')', 'value_as_number', + 'Platelet Bld Ql Smear', 'Platelet Bld Ql Smear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14738-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14738-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14738-6'')', 'value_as_number', + 'Cells', 'Cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14738-6\11282-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14738-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14738-6\11282-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''11282-1'')', 'value_as_number', + 'Total Cells Counted Bld', 'Total Cells Counted Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16409-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16409-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP16409-2'')', 'value_as_number', + 'Erythrocyte sedimentation rate', 'Erythrocyte sedimentation rate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16409-2\30341-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16409-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16409-2\30341-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''30341-2'')', 'value_as_number', + 'ESR Bld Qn', 'ESR Bld Qn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16409-2\4537-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16409-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP16409-2\4537-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''4537-7'')', 'value_as_number', + 'ESR Bld Qn Westrgrn', 'ESR Bld Qn Westrgrn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP15101-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP15101-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15101-6'')', 'value_as_number', + 'Hematocrit', 'Hematocrit', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP15101-6\20570-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP15101-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP15101-6\20570-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''20570-8'')', 'value_as_number', + 'Hct VFr Bld', 'Hct VFr Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP15101-6\4544-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP15101-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP15101-6\4544-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''4544-3'')', 'value_as_number', + 'Hct VFr Bld Auto', 'Hct VFr Bld Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14449-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14449-0\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14449-0'')', 'value_as_number', + 'Hemoglobin', 'Hemoglobin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14449-0\718-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14449-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14449-0\718-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''718-7'')', 'value_as_number', + 'Hgb Bld-mCnc', 'Hgb Bld-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14449-0\30313-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14449-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP14449-0\30313-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''30313-1'')', 'value_as_number', + 'Hgb BldA-mCnc', 'Hgb BldA-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31617-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31617-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31617-1'')', 'value_as_number', + 'Hemoglobin normal variant', 'Hemoglobin normal variant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31617-1\4548-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31617-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31617-1\4548-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''4548-4'')', 'value_as_number', + 'Hgb A1c MFr Bld', 'Hgb A1c MFr Bld', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31617-1\17856-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31617-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31617-1\17856-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''17856-6'')', 'value_as_number', + 'Hgb A1c MFr Bld HPLC', 'Hgb A1c MFr Bld HPLC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31669-2'')', 'value_as_number', + 'Red cell indices', 'Red cell indices', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17698-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17698-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP17698-9'')', 'value_as_number', + 'Erythrocyte distribution width', 'Erythrocyte distribution width', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17698-9\788-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17698-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17698-9\788-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''788-0'')', 'value_as_number', + 'RDW RBC Auto-Rto', 'RDW RBC Auto-Rto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17689-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17689-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP17689-8'')', 'value_as_number', + 'Erythrocyte mean corpuscular hemoglobin', 'Erythrocyte mean corpuscular hemoglobin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17689-8\785-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17689-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17689-8\785-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''785-6'')', 'value_as_number', + 'MCH RBC Qn Auto', 'MCH RBC Qn Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17695-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17695-5\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP17695-5'')', 'value_as_number', + 'Erythrocyte mean corpuscular hemoglobin concentration', 'Erythrocyte mean corpuscular hemoglobin concentration', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17695-5\786-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17695-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP17695-5\786-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''786-4'')', 'value_as_number', + 'MCHC RBC Auto-mCnc', 'MCHC RBC Auto-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP15191-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP15191-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15191-7'')', 'value_as_number', + 'Erythrocyte mean corpuscular volume', 'Erythrocyte mean corpuscular volume', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP15191-7\30428-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP15191-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP15191-7\30428-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''30428-7'')', 'value_as_number', + 'MCV RBC', 'MCV RBC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP15191-7\787-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP15191-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31756-7\LP31669-2\LP15191-7\787-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''787-2'')', 'value_as_number', + 'MCV RBC Auto', 'MCV RBC Auto', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP31755-9'')', 'value_as_number', + 'Microbiology', 'Microbiology', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14559-6'')', 'value_as_number', + 'Microorganism', 'Microorganism', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP98185-9'')', 'value_as_number', + 'Bacteria', 'Bacteria', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP37205-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP37205-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP37205-9'')', 'value_as_number', + 'Bacteria identified', 'Bacteria identified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP37205-9\600-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP37205-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP37205-9\600-7\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''600-7'')', 'value_as_number', + 'Bacteria Bld Cult', 'Bacteria Bld Cult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP37205-9\634-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP37205-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP37205-9\634-6\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''634-6'')', 'value_as_number', + 'Bacteria XXX Aerobe Cult', 'Bacteria XXX Aerobe Cult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP37205-9\6463-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP37205-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP37205-9\6463-4\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''6463-4'')', 'value_as_number', + 'Bacteria XXX Cult', 'Bacteria XXX Cult', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14250-2'')', 'value_as_number', + 'Chlamydia sp', 'Chlamydia sp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\LP37618-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\LP37618-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP37618-3'')', 'value_as_number', + 'Chlamydia trachomatis DNA', 'Chlamydia trachomatis DNA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\LP37618-3\21613-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\LP37618-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\LP37618-3\21613-5\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''21613-5'')', 'value_as_number', + 'C trach DNA XXX Ql PCR', 'C trach DNA XXX Ql PCR', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\LP37619-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\LP37619-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP37619-1'')', 'value_as_number', + 'Chlamydia trachomatis rRNA', 'Chlamydia trachomatis rRNA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\LP37619-1\43304-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\LP37619-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP14250-2\LP37619-1\43304-5\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''43304-5'')', 'value_as_number', + 'C trach rRNA XXX Ql PCR', 'C trach rRNA XXX Ql PCR', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP28650-7'')', 'value_as_number', + 'Neisseria sp', 'Neisseria sp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\LP39155-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\LP39155-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP39155-4'')', 'value_as_number', + 'Neisseria gonorrhoeae DNA', 'Neisseria gonorrhoeae DNA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\LP39155-4\24111-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\LP39155-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\LP39155-4\24111-7\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''24111-7'')', 'value_as_number', + 'N gonorrhoea DNA XXX Ql PCR', 'N gonorrhoea DNA XXX Ql PCR', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\LP39156-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\LP39156-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP39156-2'')', 'value_as_number', + 'Neisseria gonorrhoeae rRNA', 'Neisseria gonorrhoeae rRNA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\LP39156-2\43305-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\LP39156-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP28650-7\LP39156-2\43305-2\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''43305-2'')', 'value_as_number', + 'N gonorrhoea rRNA XXX Ql PCR', 'N gonorrhoea rRNA XXX Ql PCR', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP21118-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP21118-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP21118-2'')', 'value_as_number', + 'Treponema sp', 'Treponema sp', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP21118-2\20507-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP21118-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP98185-9\LP21118-2\20507-0\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''20507-0'')', 'value_as_number', + 'RPR Ser Ql', 'RPR Ser Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14855-8'')', 'value_as_number', + 'Virus', 'Virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP21025-9'')', 'value_as_number', + 'Hepatitis virus', 'Hepatitis virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14306-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14306-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14306-2'')', 'value_as_number', + 'Hepatitis B virus', 'Hepatitis B virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14306-2\5195-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14306-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14306-2\5195-3\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5195-3'')', 'value_as_number', + 'HBV surface Ag Ser Ql', 'HBV surface Ag Ser Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14306-2\5196-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14306-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14306-2\5196-1\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5196-1'')', 'value_as_number', + 'HBV surface Ag Ser Ql EIA', 'HBV surface Ag Ser Ql EIA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14400-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14400-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14400-3'')', 'value_as_number', + 'Hepatitis C virus', 'Hepatitis C virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14400-3\5198-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14400-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP21025-9\LP14400-3\5198-7\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5198-7'')', 'value_as_number', + 'HCV Ab Ser EIA-aCnc', 'HCV Ab Ser EIA-aCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP17126-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP17126-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP17126-1'')', 'value_as_number', + 'HIV', 'HIV', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP17126-1\48345-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP17126-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP17126-1\48345-3\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''48345-3'')', 'value_as_number', + 'HIV 1+O+2 Ab SerPl Ql', 'HIV 1+O+2 Ab SerPl Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP14836-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP14836-8\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14836-8'')', 'value_as_number', + 'Human papilloma virus', 'Human papilloma virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP14836-8\30167-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP14836-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP14836-8\30167-1\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''30167-1'')', 'value_as_number', + 'HPV I/H Risk 1 DNA Cervix Ql bDNA', 'HPV I/H Risk 1 DNA Cervix Ql bDNA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP14416-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP14416-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14416-9'')', 'value_as_number', + 'Rubella virus', 'Rubella virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP14416-9\5334-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP14416-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP14559-6\LP14855-8\LP14416-9\5334-8\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5334-8'')', 'value_as_number', + 'RUBV IgG Ser EIA-aCnc', 'RUBV IgG Ser EIA-aCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP30609-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP30609-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP30609-9'')', 'value_as_number', + 'Misc', 'Misc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP30609-9\35691-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP30609-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP31755-9\LP30609-9\35691-5\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''35691-5'')', 'value_as_number', + 'Other microorganism DNA XXX Ql PCR', 'Other microorganism DNA XXX Ql PCR', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32742-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32742-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP32742-6'')', 'value_as_number', + 'Serology', 'Serology', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32742-6\LP16670-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32742-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32742-6\LP16670-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP16670-9'')', 'value_as_number', + 'Nuclear', 'Nuclear', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32742-6\LP16670-9\8061-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32742-6\LP16670-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32742-6\LP16670-9\8061-4\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''8061-4'')', 'value_as_number', + 'ANA Ser Ql', 'ANA Ser Ql', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32742-6\11572-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32742-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32742-6\11572-5\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''11572-5'')', 'value_as_number', + 'Rheumatoid fact Ser-aCnc', 'Rheumatoid fact Ser-aCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP32743-4'')', 'value_as_number', + 'Specimen attributes', 'Specimen attributes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\LP14542-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\LP14542-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14542-2'')', 'value_as_number', + 'Appearance', 'Appearance', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\LP14542-2\5767-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\LP14542-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\LP14542-2\5767-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5767-9'')', 'value_as_number', + 'Appearance Ur', 'Appearance Ur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\LP14542-2\5778-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\LP14542-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\LP14542-2\5778-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5778-6'')', 'value_as_number', + 'Color Ur', 'Color Ur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\19244-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\19244-3\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''19244-3'')', 'value_as_number', + 'Character Ur', 'Character Ur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\13362-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\13362-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''13362-9'')', 'value_as_number', + 'Collect duration Time Ur', 'Collect duration Time Ur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\31208-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32743-4\31208-2\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''31208-2'')', 'value_as_number', + 'Specimen source XXX', 'Specimen source XXX', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP32744-2'')', 'value_as_number', + 'Urinalysis', 'Urinalysis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP40317-7'')', 'value_as_number', + 'Analytes', 'Analytes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5770-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5770-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5770-3'')', 'value_as_number', + 'Bilirub Ur Ql Strip', 'Bilirub Ur Ql Strip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5792-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5792-7\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5792-7'')', 'value_as_number', + 'Glucose Ur Strip-mCnc', 'Glucose Ur Strip-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5794-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5794-3\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5794-3'')', 'value_as_number', + 'Hgb Ur Ql Strip', 'Hgb Ur Ql Strip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5797-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5797-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5797-6'')', 'value_as_number', + 'Ketones Ur Strip-mCnc', 'Ketones Ur Strip-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5799-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5799-2\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5799-2'')', 'value_as_number', + 'Leukocyte esterase Ur Ql Strip', 'Leukocyte esterase Ur Ql Strip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5802-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5802-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5802-4'')', 'value_as_number', + 'Nitrite Ur Ql Strip', 'Nitrite Ur Ql Strip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5803-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5803-2\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5803-2'')', 'value_as_number', + 'pH Ur Strip', 'pH Ur Strip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15838-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15838-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15838-3'')', 'value_as_number', + 'Protein', 'Protein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15838-3\20454-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15838-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15838-3\20454-5\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''20454-5'')', 'value_as_number', + 'Prot Ur Ql Strip', 'Prot Ur Ql Strip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15838-3\5804-0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15838-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15838-3\5804-0\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5804-0'')', 'value_as_number', + 'Prot Ur Strip-mCnc', 'Prot Ur Strip-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15838-3\2888-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15838-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15838-3\2888-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''2888-6'')', 'value_as_number', + 'Prot Ur-mCnc', 'Prot Ur-mCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5811-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\5811-5\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5811-5'')', 'value_as_number', + 'Sp Gr Ur Strip', 'Sp Gr Ur Strip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15942-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15942-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP15942-3'')', 'value_as_number', + 'Urobilinogen', 'Urobilinogen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15942-3\19161-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15942-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP40317-7\LP15942-3\19161-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''19161-9'')', 'value_as_number', + 'Urobilinogen Ur Strip-aCnc', 'Urobilinogen Ur Strip-aCnc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14044-9'')', 'value_as_number', + 'Casts', 'Casts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP47910-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP47910-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP47910-2'')', 'value_as_number', + 'Casts | Urine sediment', 'Casts | Urine sediment', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP47910-2\9842-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP47910-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP47910-2\9842-6\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''9842-6'')', 'value_as_number', + 'Casts #/area UrnS LPF', 'Casts #/area UrnS LPF', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP16857-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP16857-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP16857-2'')', 'value_as_number', + 'Hyaline casts', 'Hyaline casts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP16857-2\5796-8\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP16857-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP16857-2\5796-8\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5796-8'')', 'value_as_number', + 'Hyaline Casts #/area UrnS LPF', 'Hyaline Casts #/area UrnS LPF', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP16857-2\25162-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP16857-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14044-9\LP16857-2\25162-9\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''25162-9'')', 'value_as_number', + 'Hyaline Casts UrnS Ql Micro', 'Hyaline Casts UrnS Ql Micro', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14738-6'')', 'value_as_number', + 'Cells', 'Cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\5769-5\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\5769-5\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5769-5'')', 'value_as_number', + 'Bacteria #/area UrnS HPF', 'Bacteria #/area UrnS HPF', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14043-1'')', 'value_as_number', + 'Epithelial cells', 'Epithelial cells', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\5787-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\5787-7\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5787-7'')', 'value_as_number', + 'Epi Cells #/area UrnS HPF', 'Epi Cells #/area UrnS HPF', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\20453-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\20453-7\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''20453-7'')', 'value_as_number', + 'Epi Cells UrnS Ql Micro', 'Epi Cells UrnS Ql Micro', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\LP70260-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\LP70260-2\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP70260-2'')', 'value_as_number', + 'Epithelial cells.squamous', 'Epithelial cells.squamous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\LP70260-2\11277-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\LP70260-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14043-1\LP70260-2\11277-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''11277-1'')', 'value_as_number', + 'Squamous #/area UrnS HPF', 'Squamous #/area UrnS HPF', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14304-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14304-7\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14304-7'')', 'value_as_number', + 'Erythrocytes', 'Erythrocytes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14304-7\20409-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14304-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14304-7\20409-9\', 1, 0, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''20409-9'')', 'value_as_number', + 'RBC # Ur Strip', 'RBC # Ur Strip', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14304-7\5808-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14304-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14304-7\5808-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5808-1'')', 'value_as_number', + 'RBC # UrnS HPF', 'RBC # UrnS HPF', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14304-7\13945-1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14304-7\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14304-7\13945-1\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''13945-1'')', 'value_as_number', + 'RBC #/area UrnS HPF', 'RBC #/area UrnS HPF', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14419-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14419-3\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP14419-3'')', 'value_as_number', + 'Leukocytes', 'Leukocytes', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14419-3\5821-4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14419-3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP14738-6\LP14419-3\5821-4\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''5821-4'')', 'value_as_number', + 'WBC #/area UrnS HPF', 'WBC #/area UrnS HPF', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP17770-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP17770-6\', 1, 0, + 1, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''LP17770-6'')', 'value_as_number', + 'Mucus', 'Mucus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP17770-6\8247-9\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP17770-6\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Labs\LP32744-2\LP17770-6\8247-9\', 1, 1, + 0, 0, @sqlset_measurement, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = ''8247-9'')', 'value_as_number', + 'Mucous Threads UrnS Ql Micro', 'Mucous Threads UrnS Ql Micro', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', NULL, 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 1, 0, + 1, 1, @sqlset_drug_exposure, NULL, NULL, + 'Medications', 'Medications', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIDOTES,DETERRENTS AND POISON CONTROL', 'ANTIDOTES,DETERRENTS AND POISON CONTROL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ALCOHOL DETERRENTS', 'ALCOHOL DETERRENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\82819\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\82819\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'acamprosate', 'acamprosate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\152761\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\152761\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acamprosate calcium', 'Acamprosate calcium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\3554\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\3554\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Disulfiram', 'Disulfiram', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\105069\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD100\105069\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Naltrexone hydrochloride', 'Naltrexone hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIDOTES/DETERRENTS,OTHER', 'ANTIDOTES/DETERRENTS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\42347\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\42347\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bupropion', 'Bupropion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\203204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\203204\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bupropion Hydrochloride', 'Bupropion Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\132879\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\132879\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ca-DTPA', 'Ca-DTPA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\1903\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\1903\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium Disodium Edetate', 'Calcium Disodium Edetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\2296\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\2296\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Charcoal', 'Charcoal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\203223\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\203223\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'digoxin antibodies Fab fragments', 'digoxin antibodies Fab fragments', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\7407\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\7407\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nicotine', 'Nicotine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\31765\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\31765\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nicotine polacrilex', 'nicotine polacrilex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\408077\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\408077\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'PENTETATE ZINC TRISODIUM', 'PENTETATE ZINC TRISODIUM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\34345\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\34345\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pralidoxime', 'pralidoxime', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\55322\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\55322\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pralidoxime chloride', 'Pralidoxime chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\56455\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\56455\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Benzoate', 'Sodium Benzoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\56510\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\56510\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium phenylacetate', 'sodium phenylacetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\214837\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\214837\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium phenylbutyrate', 'Sodium phenylbutyrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\636674\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD900\636674\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'varenicline tartrate', 'varenicline tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'HEAVY METAL ANTAGONISTS', 'HEAVY METAL ANTAGONISTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD300\235370\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AD000\AD300\235370\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trientine hydrochloride', 'Trientine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINES', 'ANTIHISTAMINES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH104\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINES,ALKYLAMINE', 'ANTIHISTAMINES,ALKYLAMINE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH104\22696\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH104\22696\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dexbrompheniramine', 'dexbrompheniramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH106\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH106\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINES,BUTYROPHENONE', 'ANTIHISTAMINES,BUTYROPHENONE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH106\87636\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH106\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH106\87636\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fexofenadine', 'fexofenadine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINES,ETHANOLAMINE', 'ANTIHISTAMINES,ETHANOLAMINE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\20220\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\20220\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'carbinoxamine', 'carbinoxamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\142430\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\142430\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clemastine Fumarate', 'Clemastine Fumarate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\3444\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\3444\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dimenhydrinate', 'Dimenhydrinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\3498\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\3498\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diphenhydramine', 'Diphenhydramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\1362\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\1362\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diphenhydramine Hydrochloride', 'Diphenhydramine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\360283\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\360283\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diphenhydramine Tannate', 'Diphenhydramine Tannate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\23665\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH102\23665\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'doxylamine succinate', 'doxylamine succinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINES,ETHYLENEDIAMINE', 'ANTIHISTAMINES,ETHYLENEDIAMINE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\865\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\865\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Antazoline', 'Antazoline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\81954\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\81954\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Antazoline Hydrochloride', 'Antazoline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\866\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\866\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Antazoline Phosphate', 'Antazoline Phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\10847\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\10847\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tripelennamine', 'Tripelennamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\91063\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH103\91063\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tripelennamine Hydrochloride', 'Tripelennamine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH109\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINES,OTHER', 'ANTIHISTAMINES,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH109\42328\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH109\42328\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Astemizole', 'Astemizole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINES,PHENOTHIAZINE', 'ANTIHISTAMINES,PHENOTHIAZINE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\29648\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\29648\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methdilazine', 'methdilazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\91121\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\91121\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methdilazine hydrochloride', 'Methdilazine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\8745\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\8745\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Promethazine', 'Promethazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\10825\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\10825\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trimeprazine', 'Trimeprazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\164308\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH100\164308\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trimeprazine tartrate', 'trimeprazine tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINES,PIPERAZINE', 'ANTIHISTAMINES,PIPERAZINE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\20610\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\20610\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cetirizine', 'Cetirizine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\203150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\203150\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cetirizine Dihydrochloride', 'Cetirizine Dihydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\5553\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\5553\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydroxyzine', 'Hydroxyzine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\154987\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\154987\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydroxyzine Hydrochloride', 'Hydroxyzine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\203182\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\203182\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydroxyzine Pamoate', 'Hydroxyzine Pamoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\402349\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH105\402349\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'levocetirizine dihydrochloride', 'levocetirizine dihydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH107\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH107\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINES,PIPERIDINE', 'ANTIHISTAMINES,PIPERIDINE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH107\58275\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH107\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH107\58275\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Azatadine maleate', 'Azatadine maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH107\104592\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH107\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH107\104592\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cyproheptadine hydrochloride', 'Cyproheptadine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH107\221137\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH107\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AH000\AH107\221137\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenindamine tartrate', 'Phenindamine tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIMICROBIALS', 'ANTIMICROBIALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'AMINOGLYCOSIDES', 'AMINOGLYCOSIDES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\643\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\643\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amikacin Sulfate', 'Amikacin Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\203183\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\203183\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Kanamycin Sulfate', 'Kanamycin Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\203193\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\203193\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Netilmicin Sulfate', 'Netilmicin Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\10110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\10110\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptomycin Sulfate', 'Streptomycin Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\10627\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM300\10627\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tobramycin', 'Tobramycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFECTIVES,OTHER', 'ANTI-INFECTIVES,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\40595\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\40595\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'acetyl sulfisoxazole', 'acetyl sulfisoxazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\221054\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\221054\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alatrofloxacin mesylate', 'Alatrofloxacin mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\732\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\732\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amphotericin B', 'Amphotericin B', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\1291\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\1291\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bacitracin', 'Bacitracin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\11417\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\11417\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bacitracin Zinc Complex', 'Bacitracin Zinc Complex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\1426\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\1426\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzyl Alcohol', 'Benzyl Alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\81981\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\81981\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ciprofloxacin Hydrochloride', 'Ciprofloxacin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\235851\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\235851\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CIPROFLOXACIN LACTATE', 'CIPROFLOXACIN LACTATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\2592\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\2592\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clofazimine', 'Clofazimine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\48305\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\48305\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Colistimethate sodium', 'Colistimethate sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\2709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\2709\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Colistin', 'Colistin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\2710\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\2710\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Colistin Sulfate', 'Colistin Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\4055\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\4055\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Erythromycin Estolate', 'Erythromycin Estolate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\4056\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\4056\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Erythromycin Ethylsuccinate', 'Erythromycin Ethylsuccinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\24346\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\24346\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Erythromycin Gluceptate', 'Erythromycin Gluceptate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\24347\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\24347\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'erythromycin lactobionate', 'erythromycin lactobionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\24351\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\24351\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'erythromycin stearate', 'erythromycin stearate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\402429\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\402429\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gemifloxacin mesylate', 'gemifloxacin mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\4850\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\4850\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glucose', 'Glucose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\83719\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\83719\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'grepafloxacin', 'grepafloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\236862\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\236862\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'GREPAFLOXACIN HYDROCHLORIDE', 'GREPAFLOXACIN HYDROCHLORIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\190376\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\190376\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'linezolid', 'linezolid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\235762\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\235762\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lomefloxacin hydrochloride', 'lomefloxacin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\6922\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\6922\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metronidazole', 'Metronidazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\139462\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\139462\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'moxifloxacin', 'moxifloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\228750\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\228750\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Moxifloxacin hydrochloride', 'Moxifloxacin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7240\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7240\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nalidixic Acid', 'Nalidixic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7538\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7538\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Novobiocin', 'Novobiocin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\82057\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\82057\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Novobiocin Sodium', 'Novobiocin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7597\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7597\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nystatin', 'Nystatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7623\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7623\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ofloxacin', 'Ofloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7821\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7821\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxytetracycline', 'Oxytetracycline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\4780\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\4780\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxytetracycline Hydrochloride', 'Oxytetracycline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7995\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\7995\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentamidine Isethionate', 'Pentamidine Isethionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\203197\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\203197\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenazopyridine hydrochloride', 'Phenazopyridine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\8536\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\8536\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Polymyxin B', 'Polymyxin B', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\388\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\388\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Polymyxin B Sulfate', 'Polymyxin B Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\35619\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\35619\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rifaximin', 'rifaximin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\270\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\270\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Spectinomycin', 'Spectinomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\267342\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\267342\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Spectinomycin Hydrochloride', 'Spectinomycin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\10208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\10208\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfisoxazole Diolamine', 'Sulfisoxazole Diolamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\10395\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\10395\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tetracycline', 'Tetracycline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\142446\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\142446\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tetracycline Hydrochloride', 'Tetracycline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\221176\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\221176\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'TRIMETHOPRIM SULFATE', 'TRIMETHOPRIM SULFATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\221177\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\221177\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trovafloxacin mesylate', 'Trovafloxacin mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\11124\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\11124\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vancomycin', 'Vancomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\66955\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM900\66955\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vancomycin Hydrochloride', 'Vancomycin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIFUNGALS', 'ANTIFUNGALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\5021\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\5021\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Griseofulvin', 'Griseofulvin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\91077\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\91077\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Griseofulvin microsize', 'Griseofulvin microsize', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\217398\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\217398\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'GRISEOFULVIN, ULTRAMICROCRYSTALLINE', 'GRISEOFULVIN, ULTRAMICROCRYSTALLINE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\487070\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM700\487070\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'MICAFUNGIN SODIUM', 'MICAFUNGIN SODIUM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTITUBERCULARS', 'ANTITUBERCULARS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM500\1987\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM500\1987\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Capreomycin Sulfate', 'Capreomycin Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM500\142435\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM500\142435\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethambutol Hydrochloride', 'Ethambutol Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM500\6038\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM500\6038\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'isoniazid', 'isoniazid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIVIRALS', 'ANTIVIRALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\190521\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\190521\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'abacavir', 'abacavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\221052\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\221052\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'abacavir sulfate', 'abacavir sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\141400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\141400\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'adefovir dipivoxil', 'adefovir dipivoxil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\282415\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\282415\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amantadine Hydrochloride', 'Amantadine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\358299\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\358299\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Atazanavir sulfate', 'Atazanavir sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\644682\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\644682\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'darunavir ethanolate', 'darunavir ethanolate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\142152\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\142152\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Delavirdine Mesylate', 'Delavirdine Mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\3364\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\3364\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Didanosine', 'Didanosine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\276237\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\276237\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'emtricitabine', 'emtricitabine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\402365\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\402365\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fosamprenavir calcium', 'Fosamprenavir calcium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\203153\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\203153\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Indinavir Sulfate', 'Indinavir Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\68244\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\68244\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lamivudine', 'Lamivudine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\134527\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\134527\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nelfinavir', 'Nelfinavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\266565\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\266565\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nelfinavir Mesylate', 'Nelfinavir Mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\259275\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\259275\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oseltamivir phosphate', 'Oseltamivir phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\85762\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\85762\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ritonavir', 'Ritonavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\83395\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\83395\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Saquinavir', 'Saquinavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\83394\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\83394\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Saquinavir Monomethanesulfonate', 'Saquinavir Monomethanesulfonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\300195\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\300195\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tenofovir disoproxil', 'tenofovir disoproxil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\322248\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\322248\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tenofovir disoproxil fumarate', 'Tenofovir disoproxil fumarate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\57529\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\57529\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trisodium Phosphonoformate', 'Trisodium Phosphonoformate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\236081\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\236081\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Valacyclovir hydrochloride', 'Valacyclovir hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\11194\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM800\11194\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vidarabine', 'Vidarabine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CHLORAMPHENICOL', 'CHLORAMPHENICOL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\2348\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\2348\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chloramphenicol', 'Chloramphenicol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\20767\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\20767\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chloramphenicol palmitate', 'chloramphenicol palmitate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\47998\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\47998\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chloramphenicol sodium succinate', 'Chloramphenicol sodium succinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\20769\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM150\20769\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chloramphenicol succinate', 'chloramphenicol succinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ERYTHROMYCINS/MACROLIDES', 'ERYTHROMYCINS/MACROLIDES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM200\18631\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM200\18631\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Azithromycin', 'Azithromycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM200\274786\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM200\274786\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'telithromycin', 'telithromycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM350\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'LINCOMYCINS', 'LINCOMYCINS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM350\81982\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM350\81982\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clindamycin Hydrochloride', 'Clindamycin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM350\91075\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM350\91075\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clindamycin palmitate hydrochloride', 'Clindamycin palmitate hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM350\82036\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM350\82036\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lincomycin Hydrochloride', 'Lincomycin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM600\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'NITROFURANS ANTIMICROBIALS', 'NITROFURANS ANTIMICROBIALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM600\7454\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM600\7454\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nitrofurantoin', 'Nitrofurantoin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM600\235559\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM600\235559\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'NITROFURANTOIN, MACROCRYSTALS', 'NITROFURANTOIN, MACROCRYSTALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM600\221129\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM600\221129\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nitrofurantoin, Monohydrate', 'Nitrofurantoin, Monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PENICILLINS AND BETA-LACTAM ANTIMICROBIALS', 'PENICILLINS AND BETA-LACTAM ANTIMICROBIALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM119\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM119\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BETA-LACTAMS ANTIMICROBIALS,OTHER', 'BETA-LACTAMS ANTIMICROBIALS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM119\82128\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM119\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM119\82128\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cilastatin Sodium', 'Cilastatin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM119\353107\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM119\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM119\353107\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ertapenem sodium', 'ertapenem sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CEPHALOSPORIN 1ST GENERATION', 'CEPHALOSPORIN 1ST GENERATION', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2177\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2177\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefadroxil', 'Cefadroxil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\204175\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\204175\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefadroxil monohydrate', 'Cefadroxil monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2180\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2180\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefazolin', 'Cefazolin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\203171\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\203171\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefazolin Sodium', 'Cefazolin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2231\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2231\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cephalexin', 'Cephalexin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\215948\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\215948\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cephalexin Monohydrate', 'Cephalexin Monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\281942\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\281942\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cephalexin Monohydrochloride, Monohydrate', 'Cephalexin Monohydrochloride, Monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2236\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2236\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cephalothin', 'Cephalothin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2238\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2238\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cephapirin', 'Cephapirin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\42562\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\42562\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cephapirin Sodium', 'Cephapirin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2239\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\2239\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cephradine', 'Cephradine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\9860\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM115\9860\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Cephalothin', 'Sodium Cephalothin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CEPHALOSPORIN 2ND GENERATION', 'CEPHALOSPORIN 2ND GENERATION', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\2178\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\2178\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefamandole', 'Cefamandole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\20473\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\20473\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cefamandole nafate', 'cefamandole nafate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\2182\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\2182\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefmetazole', 'Cefmetazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\203140\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\203140\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefmetazole Sodium', 'Cefmetazole Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\2183\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\2183\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefonicid', 'Cefonicid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\266801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\266801\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefonicid Monosodium', 'Cefonicid Monosodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\203141\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\203141\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefotetan Disodium', 'Cefotetan Disodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\2189\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\2189\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefoxitin', 'Cefoxitin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\203118\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\203118\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefoxitin Sodium', 'Cefoxitin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\47835\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\47835\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cefpodoxime proxetil', 'cefpodoxime proxetil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\20493\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\20493\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cefuroxime axetil', 'cefuroxime axetil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\204144\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM116\204144\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefuroxime sodium', 'Cefuroxime sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CEPHALOSPORIN 3RD GENERATION', 'CEPHALOSPORIN 3RD GENERATION', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\227214\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\227214\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefoperazone Sodium', 'Cefoperazone Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\203117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\203117\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefotaxime Sodium', 'Cefotaxime Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\235552\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\235552\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CEFTAZIDIME PENTAHYDRATE', 'CEFTAZIDIME PENTAHYDRATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\221071\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\221071\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CEFTAZIDIME SODIUM', 'CEFTAZIDIME SODIUM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\82126\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\82126\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ceftizoxime Sodium', 'Ceftizoxime Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\203172\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM117\203172\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ceftriaxone Sodium', 'Ceftriaxone Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM118\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM118\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CEPHALOSPORIN 4TH GENERATION', 'CEPHALOSPORIN 4TH GENERATION', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM118\83682\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM118\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM118\83682\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cefditoren', 'cefditoren', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM118\72611\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM118\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM118\72611\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cefditoren pivoxil', 'cefditoren pivoxil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM118\236058\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM118\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM118\236058\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefepime hydrochloride', 'Cefepime hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'EXTENDED SPECTRUM PENICILLINS', 'EXTENDED SPECTRUM PENICILLINS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\1266\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\1266\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Azlocillin', 'Azlocillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\203836\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\203836\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Azlocillin sodium', 'Azlocillin sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\2015\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\2015\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carbenicillin', 'Carbenicillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\258332\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\258332\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carbenicillin Disodium', 'Carbenicillin Disodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\56461\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\56461\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carbenicillin indanyl sodium', 'Carbenicillin indanyl sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\48203\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\48203\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clavulanate', 'Clavulanate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\6927\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\6927\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mezlocillin', 'Mezlocillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\82048\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\82048\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mezlocillin Sodium', 'Mezlocillin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\8339\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\8339\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Piperacillin', 'Piperacillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\203134\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\203134\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Piperacillin Sodium', 'Piperacillin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\221167\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\221167\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'TAZOBACTAM SODIUM', 'TAZOBACTAM SODIUM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\10591\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\10591\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ticarcillin', 'Ticarcillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\142447\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM113\142447\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ticarcillin disodium', 'Ticarcillin disodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PENICILLIN-G RELATED PENICILLINS', 'PENICILLIN-G RELATED PENICILLINS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\7980\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\7980\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Penicillin G', 'Penicillin G', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\203133\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\203133\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Penicillin G Potassium', 'Penicillin G Potassium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\9900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\9900\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Penicillin G Sodium', 'Penicillin G Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\7982\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\7982\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Penicillin G, Benzathine', 'Penicillin G, Benzathine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\7983\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\7983\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Penicillin G, Procaine', 'Penicillin G, Procaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\7984\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\7984\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Penicillin V', 'Penicillin V', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\203195\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\203195\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Penicillin V Potassium', 'Penicillin V Potassium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\8698\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM110\8698\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Probenecid', 'Probenecid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PENICILLINASE-RESISTANT PENICILLINS', 'PENICILLINASE-RESISTANT PENICILLINS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\2625\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\2625\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cloxacillin', 'Cloxacillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\9864\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\9864\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cloxacillin Sodium', 'Cloxacillin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\3356\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\3356\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dicloxacillin', 'Dicloxacillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\267257\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\267257\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dicloxacillin Sodium', 'Dicloxacillin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\267073\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\267073\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methicillin Sodium', 'Methicillin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\7233\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\7233\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nafcillin', 'Nafcillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\9893\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\9893\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nafcillin Sodium', 'Nafcillin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\485026\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\485026\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'NAFCILLIN SODIUM MONOHYDRATE', 'NAFCILLIN SODIUM MONOHYDRATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\7773\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\7773\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxacillin', 'Oxacillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\9898\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM112\9898\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxacillin Sodium', 'Oxacillin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PENICILLINS,AMINO DERIVATIVES', 'PENICILLINS,AMINO DERIVATIVES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\723\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\723\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amoxicillin', 'Amoxicillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\133008\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\133008\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amoxicillin trihydrate', 'Amoxicillin trihydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\733\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\733\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ampicillin', 'Ampicillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\221058\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\221058\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ampicillin (anhydrous)', 'ampicillin (anhydrous)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\81953\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\81953\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ampicillin Sodium', 'Ampicillin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\203115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\203115\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ampicillin Trihydrate', 'Ampicillin Trihydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\18687\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\18687\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bacampicillin', 'bacampicillin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\327584\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\327584\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bacampicillin hydrochloride', 'Bacampicillin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\82100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM114\AM111\82100\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulbactam Sodium', 'Sulbactam Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM650\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM650\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'SULFONAMIDE/RELATED ANTIMICROBIALS', 'SULFONAMIDE/RELATED ANTIMICROBIALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM650\220087\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM650\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM650\220087\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'SULFADIAZINE SODIUM', 'SULFADIAZINE SODIUM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'TETRACYCLINES', 'TETRACYCLINES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\2408\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\2408\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlortetracycline', 'Chlortetracycline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\42545\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\42545\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlortetracycline Hydrochloride', 'Chlortetracycline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\81993\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\81993\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Demeclocycline Hydrochloride', 'Demeclocycline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\23663\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\23663\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'doxycycline hyclate', 'doxycycline hyclate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\203122\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\203122\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxycycline Monohydrate', 'Doxycycline Monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\6979\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AM000\AM250\6979\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Minocycline Hydrochloride', 'Minocycline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTINEOPLASTICS', 'ANTINEOPLASTICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN400\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTINEOPLASTIC ADJUVANTS', 'ANTINEOPLASTIC ADJUVANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN400\227227\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN400\227227\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levamisole Hydrochloride', 'Levamisole Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTINEOPLASTIC ANTIBIOTICS', 'ANTINEOPLASTIC ANTIBIOTICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\1621\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\1621\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bleomycin Sulfate', 'Bleomycin Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\221087\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\221087\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'DAUNORUBICIN CITRATE LIPOSOME', 'DAUNORUBICIN CITRATE LIPOSOME', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\81992\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\81992\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Daunorubicin Hydrochloride', 'Daunorubicin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\142433\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\142433\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxorubicin Hydrochloride', 'Doxorubicin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\82124\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\82124\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Idarubicin Hydrochloride', 'Idarubicin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\466523\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\466523\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Liposomal doxorubicin hydrochloride', 'Liposomal doxorubicin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\6995\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN200\6995\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Plicamycin', 'Plicamycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTINEOPLASTIC HORMONES', 'ANTINEOPLASTIC HORMONES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\203146\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\203146\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Goserelin Acetate', 'Goserelin Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\203217\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\203217\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Leuprolide Acetate', 'Leuprolide Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\40137\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\40137\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tamoxifen Citrate', 'Tamoxifen Citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\49953\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\49953\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Toremifene Citrate', 'Toremifene Citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\38782\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\38782\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triptorelin', 'Triptorelin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\338529\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN500\338529\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'triptorelin pamoate', 'triptorelin pamoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTINEOPLASTIC,OTHER', 'ANTINEOPLASTIC,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\253337\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\253337\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bevacizumab', 'bevacizumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\40048\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\40048\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carboplatin', 'Carboplatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\318341\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\318341\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cetuximab', 'cetuximab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\2555\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\2555\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cisplatin', 'Cisplatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\337525\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\337525\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'erlotinib', 'erlotinib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\477320\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\477320\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Erlotinib Hydrochloride', 'Erlotinib Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\105556\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\105556\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Estramustine phosphate', 'Estramustine phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\4090\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\4090\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Estramustine Phosphate Sodium', 'Estramustine Phosphate Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\284924\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\284924\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Imatinib mesylate', 'Imatinib mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\481474\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\481474\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lapatinib ditosylate', 'lapatinib ditosylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\203129\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\203129\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mitoxantrone Hydrochloride', 'Mitoxantrone Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\31805\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\31805\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nilutamide', 'nilutamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\486610\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\486610\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'paclitaxel protein-bound', 'paclitaxel protein-bound', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\333848\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\333848\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Porfimer Sodium', 'Porfimer Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\66925\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\66925\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Procarbazine Hydrochloride', 'Procarbazine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\597744\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\597744\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sorafenib tosylate', 'sorafenib tosylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\616275\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\616275\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sunitinib malate', 'sunitinib malate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\616280\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\616280\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sunitinib maleate', 'sunitinib maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\10362\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\10362\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Teniposide', 'Teniposide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\266573\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\266573\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Topotecan Hydrochloride', 'Topotecan Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\221175\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\221175\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tretinoin microsphere', 'tretinoin microsphere', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\11199\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\11199\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vinblastine Sulfate', 'Vinblastine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\11202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\11202\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vincristine', 'Vincristine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\11203\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\11203\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vincristine Sulfate', 'Vincristine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\114527\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN900\114527\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vinorelbine tartrate', 'Vinorelbine tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTINEOPLASTICS,ALKYLATING AGENTS', 'ANTINEOPLASTICS,ALKYLATING AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN100\221085\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN100\221085\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cyclophosphamide lyophilized', 'cyclophosphamide lyophilized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN100\155036\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN100\155036\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mechlorethamine hydrochloride', 'Mechlorethamine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN100\10996\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN100\10996\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Uracil Mustard', 'Uracil Mustard', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTINEOPLASTICS,ANTIMETABOLITES', 'ANTINEOPLASTICS,ANTIMETABOLITES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\1251\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\1251\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Azacitidine', 'Azacitidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\25102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\25102\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fludarabine phosphate', 'Fludarabine phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\287734\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\287734\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methotrexate, Sodium Salt', 'Methotrexate, Sodium Salt', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\68446\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\68446\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pemetrexed', 'pemetrexed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\282443\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN000\AN300\282443\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pemetrexed disodium', 'pemetrexed disodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIPARASITICS', 'ANTIPARASITICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTHELMINTICS', 'ANTHELMINTICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\6672\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\6672\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mebendazole', 'Mebendazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\7402\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\7402\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Niclosamide', 'Niclosamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\7778\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\7778\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxamniquine', 'Oxamniquine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\8340\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\8340\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'piperazine', 'piperazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\342992\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\342992\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Piperazine citrate', 'Piperazine citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\8985\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP200\8985\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pyrantel Pamoate', 'Pyrantel Pamoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIPARASITICS,OTHER', 'ANTIPARASITICS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP900\66912\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP900\66912\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Paromomycin Sulfate', 'Paromomycin Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIPROTOZOALS', 'ANTIPROTOZOALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIMALARIALS', 'ANTIMALARIALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\47627\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\47627\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium phosphate dibasic', 'Calcium phosphate dibasic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\2221\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\2221\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cellulose', 'Cellulose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\342965\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\342965\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cellulose sodium phosphate', 'Cellulose sodium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\142428\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\142428\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chloroguanide Hydrochloride', 'Chloroguanide Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\2393\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\2393\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chloroquine', 'Chloroquine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\203119\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\203119\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chloroquine Sulfate', 'Chloroquine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\58130\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\58130\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Halofantrine hydrochloride', 'Halofantrine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\153972\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\153972\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydroxychloroquine Sulfate', 'Hydroxychloroquine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\8687\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\8687\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Primaquine', 'Primaquine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\8689\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\8689\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Primaquine Phosphate', 'Primaquine Phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\9061\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\9061\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Quinacrine', 'Quinacrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\82092\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\82092\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Quinacrine Monohydrochloride', 'Quinacrine Monohydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\9071\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\9071\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Quinine', 'Quinine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\9075\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP101\9075\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Quinine Sulfate', 'Quinine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIPROTOZOALS,OTHER', 'ANTIPROTOZOALS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\60212\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\60212\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Atovaquone', 'Atovaquone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\569\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\569\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Eflornithine', 'Eflornithine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\81945\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\81945\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Eflornithine Hydrochloride', 'Eflornithine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\10612\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\10612\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tinidazole', 'Tinidazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\38725\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP100\AP109\38725\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trimetrexate glucuronate', 'trimetrexate glucuronate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PEDICULICIDES', 'PEDICULICIDES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP300\1388\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AP000\AP300\1388\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lindane', 'Lindane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AS000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTISEPTICS/DISINFECTANTS', 'ANTISEPTICS/DISINFECTANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AS000\4530\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AS000\4530\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Formaldehyde', 'Formaldehyde', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AS000\9894\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AS000\9894\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Nitrite', 'Sodium Nitrite', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'AUTONOMIC MEDICATIONS', 'AUTONOMIC MEDICATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'AUTONOMIC AGENTS,OTHER', 'AUTONOMIC AGENTS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU900\260036\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU900\260036\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cevimeline hydrochloride', 'Cevimeline hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PARASYMPATHOLYTICS', 'PARASYMPATHOLYTICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\18927\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\18927\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzatropine Methanesulfonate', 'Benzatropine Methanesulfonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\91154\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\91154\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Biperiden Hydrochloride', 'Biperiden Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\6541\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\6541\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethopropazine hydrochloride', 'Ethopropazine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\52560\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\52560\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mepenzolate bromide', 'Mepenzolate bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\91163\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\91163\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methantheline bromide', 'Methantheline bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\89785\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\89785\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methscopolamine', 'Methscopolamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\142443\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\142443\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Procyclidine hydrochloride', 'Procyclidine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\8762\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\8762\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propantheline Bromide', 'Propantheline Bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\221174\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\221174\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tolterodine tartrate', 'tolterodine tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\1115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU350\1115\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trihexyphenidyl Hydrochloride', 'Trihexyphenidyl Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PARASYMPATHOMIMETICS (CHOLINERGICS)', 'PARASYMPATHOMIMETICS (CHOLINERGICS)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\624\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\624\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ambenonium Chloride', 'Ambenonium Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\19257\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\19257\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bethanechol', 'Bethanechol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\47088\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\47088\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bethanechol Chloride', 'Bethanechol Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\3754\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\3754\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Edrophonium Chloride', 'Edrophonium Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\50676\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\50676\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guanidine Hydrochloride', 'Guanidine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\6915\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\6915\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metoclopramide', 'Metoclopramide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\267036\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\267036\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metoclopramide Hydrochloride', 'Metoclopramide Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\82055\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\82055\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Neostigmine bromide', 'Neostigmine bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\7316\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\7316\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Neostigmine Methylsulfate', 'Neostigmine Methylsulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\9001\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU300\9001\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pyridostigmine Bromide', 'Pyridostigmine Bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'SYMPATHOLYTICS', 'SYMPATHOLYTICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU200\71512\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU200\71512\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenoxybenzamine Hydrochloride', 'Phenoxybenzamine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU200\227240\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU200\227240\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phentolamine Mesylate', 'Phentolamine Mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'SYMPATHOMIMETICS (ADRENERGICS)', 'SYMPATHOMIMETICS (ADRENERGICS)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\61609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\61609\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'arbutamine', 'arbutamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\236829\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\236829\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ARBUTAMINE HYDROCHLORIDE', 'ARBUTAMINE HYDROCHLORIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\203121\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\203121\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dobutamine Hydrochloride', 'Dobutamine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\82010\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\82010\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dopamine Hydrochloride', 'Dopamine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\203151\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\203151\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fenoldopam Mesylate', 'Fenoldopam Mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\82042\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\82042\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mephentermine Sulfate', 'Mephentermine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\6806\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\6806\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metaraminol Bitartrate', 'Metaraminol Bitartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\6853\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\6853\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methoxamine', 'Methoxamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\203187\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\203187\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methoxamine Hydrochloride', 'Methoxamine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\7508\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\7508\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Norepinephrine Bitartrate', 'Norepinephrine Bitartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\105470\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AU000\AU100\105470\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ritodrine hydrochloride', 'Ritodrine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BLOOD PRODUCTS/MODIFIERS/VOLUME EXPANDERS', 'BLOOD PRODUCTS/MODIFIERS/VOLUME EXPANDERS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTICOAGULANTS', 'ANTICOAGULANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\87866\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\87866\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ardeparin', 'ardeparin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\87865\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\87865\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ardeparin sodium', 'ardeparin sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\82137\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\82137\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dalteparin Sodium', 'Dalteparin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\103843\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\103843\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Danaparoid sodium', 'Danaparoid sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\67108\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\67108\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Enoxaparin', 'Enoxaparin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\221095\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\221095\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Enoxaparin sodium', 'Enoxaparin sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\322154\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\322154\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fondaparinux sodium', 'Fondaparinux sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\5224\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\5224\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Heparin', 'Heparin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\9877\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\9877\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Heparin sodium', 'Heparin sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\314659\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\314659\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'HEPARIN SODIUM (PORK)', 'HEPARIN SODIUM (PORK)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\104466\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\104466\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tinzaparin sodium', 'Tinzaparin sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\253202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\253202\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'TIROFIBAN HYDROCHLORIDE', 'TIROFIBAN HYDROCHLORIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\114194\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL110\114194\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Warfarin Sodium', 'Warfarin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL116\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHEMORRHAGICS', 'ANTIHEMORRHAGICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL116\1901\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL116\1901\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium Chloride', 'Calcium Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL116\221068\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL116\221068\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium Chloride Dihydrate', 'Calcium Chloride Dihydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL116\10528\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL116\10528\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thrombin', 'Thrombin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BLOOD DERIVATIVES', 'BLOOD DERIVATIVES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL500\203083\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL500\203083\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHEMOPHILIC FACTOR,HUMAN', 'ANTIHEMOPHILIC FACTOR,HUMAN', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL400\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BLOOD FORMATION PRODUCTS', 'BLOOD FORMATION PRODUCTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL400\236612\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL400\236612\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Anagrelide hydrochloride', 'Anagrelide hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL400\338036\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL400\338036\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pegfilgrastim', 'pegfilgrastim', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL117\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PLATELET AGGREGATION INHIBITORS', 'PLATELET AGGREGATION INHIBITORS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL117\4256\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL117\4256\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Factor VIIa', 'Factor VIIa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL117\97\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\BL000\BL117\97\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ticlopidine Hydrochloride', 'Ticlopidine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CARDIOVASCULAR MEDICATIONS', 'CARDIOVASCULAR MEDICATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV800\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ACE INHIBITORS', 'ACE INHIBITORS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV800\29046\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV800\29046\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lisinopril', 'Lisinopril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV800\72260\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV800\72260\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Perindopril Erbumine', 'Perindopril Erbumine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ALPHA BLOCKERS/RELATED', 'ALPHA BLOCKERS/RELATED', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\17300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\17300\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alfuzosin', 'alfuzosin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\39173\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\39173\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxazosin Mesylate', 'Doxazosin Mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\236495\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\236495\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tamsulosin hydrochloride', 'Tamsulosin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\235224\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV150\235224\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Terazosin hydrochloride', 'Terazosin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIANGINALS', 'ANTIANGINALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\742\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\742\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amyl Nitrite', 'Amyl Nitrite', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\4040\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\4040\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Erythrityl Tetranitrate', 'Erythrityl Tetranitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\4917\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\4917\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nitroglycerin', 'Nitroglycerin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\33055\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\33055\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pentaerythritol', 'pentaerythritol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\7992\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV250\7992\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentaerythritol Tetranitrate', 'Pentaerythritol Tetranitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIARRHYTHMICS', 'ANTIARRHYTHMICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\703\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\703\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amiodarone', 'Amiodarone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\203114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\203114\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amiodarone hydrochloride', 'Amiodarone hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\1737\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\1737\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bretylium Tosylate', 'Bretylium Tosylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\203178\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\203178\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Disopyramide Phosphate', 'Disopyramide Phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\42368\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\42368\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Encainide', 'Encainide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\281189\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\281189\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Encainide Hydrochloride', 'Encainide Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\42686\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\42686\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flecainide Acetate', 'Flecainide Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\51256\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\51256\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ibutilide fumarate', 'ibutilide fumarate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\5933\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\5933\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iodine', 'Iodine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\6926\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\6926\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mexiletine', 'Mexiletine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\142138\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\142138\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mexiletine Hydrochloride', 'Mexiletine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\221126\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\221126\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Moricizine hydrochloride', 'Moricizine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\155056\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\155056\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Procainamide Hydrochloride', 'Procainamide Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\8701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\8701\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Procaine', 'Procaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\106558\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\106558\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Procaine hydrochloride', 'Procaine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\8754\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\8754\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propafenone', 'Propafenone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\203135\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\203135\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propafenone Hydrochloride', 'Propafenone Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\9068\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\9068\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Quinidine', 'Quinidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\35220\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\35220\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'quinidine gluconate', 'quinidine gluconate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\41875\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\41875\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'quinidine polygalacturonate', 'quinidine polygalacturonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\9069\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\9069\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Quinidine Sulfate', 'Quinidine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\42359\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\42359\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tocainide', 'Tocainide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\142145\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV300\142145\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tocainide Hydrochloride', 'Tocainide Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHYPERTENSIVE COMBINATIONS', 'ANTIHYPERTENSIVE COMBINATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\104416\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\104416\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amlodipine Besylate', 'Amlodipine Besylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\235758\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\235758\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benazepril hydrochloride', 'Benazepril hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\1369\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\1369\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bendroflumethiazide', 'Bendroflumethiazide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\142146\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\142146\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bisoprolol Fumarate', 'Bisoprolol Fumarate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\135481\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\135481\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'candesartan cilexetil', 'candesartan cilexetil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\2396\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\2396\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorothiazide', 'Chlorothiazide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\91217\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\91217\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorothiazide sodium', 'Chlorothiazide sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\2409\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\2409\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorthalidone', 'Chlorthalidone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\142432\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\142432\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clonidine Hydrochloride', 'Clonidine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\62174\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\62174\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'deserpidine', 'deserpidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\3827\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\3827\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Enalapril', 'Enalapril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203123\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203123\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Enalapril Maleate', 'Enalapril Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\236878\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\236878\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Eprosartan mesylate', 'Eprosartan mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\227278\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\227278\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fosinopril Sodium', 'Fosinopril Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\5036\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\5036\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guanethidine', 'Guanethidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\82023\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\82023\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guanethidine Monosulfate', 'Guanethidine Monosulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203181\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203181\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guanethidine Sulfate', 'Guanethidine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\5470\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\5470\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydralazine', 'Hydralazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\82027\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\82027\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydralazine Hydrochloride', 'Hydralazine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\5487\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\5487\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydrochlorothiazide', 'Hydrochlorothiazide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\5495\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\5495\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydroflumethiazide', 'Hydroflumethiazide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\6185\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\6185\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Labetalol', 'Labetalol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\202693\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\202693\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Labetalol hydrochloride', 'Labetalol hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203160\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203160\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Losartan Potassium', 'Losartan Potassium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\6860\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\6860\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methyclothiazide', 'Methyclothiazide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\6876\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\6876\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methyldopa', 'Methyldopa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\221124\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\221124\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'metoprolol succinate', 'metoprolol succinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203191\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203191\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metoprolol Tartrate', 'Metoprolol Tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\30131\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\30131\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'moexipril', 'moexipril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\236066\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\236066\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Moexipril hydrochloride', 'Moexipril hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\8591\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\8591\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Potassium Chloride', 'Potassium Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203210\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Prazosin hydrochloride', 'Prazosin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\8787\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\8787\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propranolol', 'Propranolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\82084\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\82084\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propranolol Hydrochloride', 'Propranolol Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\59743\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\59743\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'quinethazone', 'quinethazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\317836\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\317836\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rauvolfia serpentina extract', 'Rauvolfia serpentina extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\78678\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\78678\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rauwolfia preparation', 'Rauwolfia preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\9260\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\9260\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Reserpine', 'Reserpine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\73494\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\73494\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'telmisartan', 'telmisartan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\221172\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\221172\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Timolol Hemihydrate', 'Timolol Hemihydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\42933\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\42933\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Timolol Maleate', 'Timolol Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\10772\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\10772\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trichlormethiazide', 'Trichlormethiazide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\69749\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\69749\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'valsartan', 'valsartan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203138\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV400\203138\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Verapamil hydrochloride', 'Verapamil hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHYPERTENSIVES,OTHER', 'ANTIHYPERTENSIVES,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\2599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\2599\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clonidine', 'Clonidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\5033\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\5033\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guanabenz', 'Guanabenz', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\227225\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\227225\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guanabenz Acetate', 'Guanabenz Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\26296\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\26296\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'guanadrel', 'guanadrel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\91239\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\91239\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guanadrel sulfate', 'Guanadrel sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\203142\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\203142\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guanfacine Hydrochloride', 'Guanfacine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\91240\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\91240\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mecamylamine hydrochloride', 'Mecamylamine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\91241\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\91241\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methyldopate hydrochloride', 'Methyldopate hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\9895\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\9895\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Nitroprusside', 'Sodium Nitroprusside', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\10828\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\10828\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trimethaphan', 'Trimethaphan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\38680\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV490\38680\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trimethaphan camsylate', 'trimethaphan camsylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTILIPEMIC AGENTS', 'ANTILIPEMIC AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\83366\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\83366\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Atorvastatin calcium', 'Atorvastatin calcium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\221072\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\221072\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cerivastatin sodium', 'Cerivastatin sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\2447\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\2447\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cholestyramine', 'Cholestyramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\2594\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\2594\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clofibrate', 'Clofibrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\104485\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\104485\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Colestipol Hydrochloride', 'Colestipol Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\3292\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\3292\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextrothyroxine', 'Dextrothyroxine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\40070\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\40070\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextrothyroxine Sodium', 'Dextrothyroxine Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\341248\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\341248\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ezetimibe', 'ezetimibe', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\8703\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\8703\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fenofibrate', 'Fenofibrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\221100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\221100\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fenofibrate micronized', 'Fenofibrate micronized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\72875\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\72875\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluvastatin sodium', 'Fluvastatin sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\4719\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\4719\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gemfibrozil', 'Gemfibrozil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\6472\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\6472\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lovastatin', 'Lovastatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\484348\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\484348\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Omega-3 Acid Ethyl Esters (USP)', 'Omega-3 Acid Ethyl Esters (USP)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\42463\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\42463\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pravastatin', 'Pravastatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\203144\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\203144\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pravastatin Sodium', 'Pravastatin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\8699\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\8699\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Probucol', 'Probucol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\323828\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\323828\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rosuvastatin calcium', 'Rosuvastatin calcium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\36567\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV350\36567\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Simvastatin', 'Simvastatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BETA BLOCKERS/RELATED', 'BETA BLOCKERS/RELATED', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\142130\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\142130\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acebutolol Hydrochloride', 'Acebutolol Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\668310\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\668310\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'carvedilol phosphate', 'carvedilol phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\203222\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\203222\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Esmolol hydrochloride', 'Esmolol hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\6918\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\6918\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metoprolol', 'Metoprolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\236883\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\236883\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'NEBIVOLOL HCL', 'NEBIVOLOL HCL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\82070\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\82070\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Penbutolol Sulfate', 'Penbutolol Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\7008\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV100\7008\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sotalol Hydrochloride', 'Sotalol Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CALCIUM CHANNEL BLOCKERS', 'CALCIUM CHANNEL BLOCKERS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\17767\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\17767\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amlodipine', 'Amlodipine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\83367\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\83367\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'atorvastatin', 'atorvastatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\1436\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\1436\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bepridil', 'Bepridil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\235752\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\235752\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bepridil hydrochloride', 'Bepridil hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\3443\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\3443\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diltiazem', 'Diltiazem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\203211\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\203211\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diltiazem Hydrochloride', 'Diltiazem Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\81999\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\81999\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diltiazem Malate', 'Diltiazem Malate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\83213\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\83213\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mibefradil', 'Mibefradil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\83214\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\83214\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mibefradil Dihydrochloride', 'Mibefradil Dihydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\235230\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\235230\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nicardipine hydrochloride', 'Nicardipine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\7417\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\7417\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nifedipine', 'Nifedipine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\11170\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV200\11170\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Verapamil', 'Verapamil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CARDIOVASCULAR AGENTS,OTHER', 'CARDIOVASCULAR AGENTS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\91236\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\91236\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amrinone lactate', 'Amrinone lactate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\25089\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\25089\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'flosequinan', 'flosequinan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\738\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\738\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Inamrinone', 'Inamrinone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\227236\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\227236\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Midodrine Monohydrochloride', 'Midodrine Monohydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\155120\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\155120\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Milrinone Lactate', 'Milrinone Lactate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\155152\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\155152\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Poloxamer 188', 'Poloxamer 188', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\342691\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV900\342691\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'treprostinil sodium', 'treprostinil sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV050\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV050\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DIGITALIS GLYCOSIDES', 'DIGITALIS GLYCOSIDES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV050\3248\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV050\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV050\3248\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Deslanoside', 'Deslanoside', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV050\3403\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV050\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV050\3403\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Digitoxin', 'Digitoxin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV050\3407\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV050\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV050\3407\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Digoxin', 'Digoxin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DIURETICS', 'DIURETICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV702\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV702\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'LOOP DIURETICS', 'LOOP DIURETICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV702\4108\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV702\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV702\4108\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethacrynate Sodium', 'Ethacrynate Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV702\4109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV702\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV702\4109\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethacrynic Acid', 'Ethacrynic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV704\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV704\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'POTASSIUM SPARING/COMBINATIONS DIURETICS', 'POTASSIUM SPARING/COMBINATIONS DIURETICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV704\142424\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV704\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV704\142424\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amiloride Hydrochloride', 'Amiloride Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV704\10763\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV704\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV704\10763\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triamterene', 'Triamterene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV701\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'THIAZIDES/RELATED DIURETICS', 'THIAZIDES/RELATED DIURETICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV701\19008\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV700\CV701\19008\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'benzothiazide', 'benzothiazide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PERIPHERAL VASODILATORS', 'PERIPHERAL VASODILATORS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\2970\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\2970\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cyclandelate', 'Cyclandelate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\24464\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\24464\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ethaverine', 'ethaverine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\82033\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\82033\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isoxsuprine Hydrochloride', 'Isoxsuprine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\10634\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\10634\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tolazoline', 'Tolazoline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\235450\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CV000\CV500\235450\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tolazoline Hydrochloride', 'Tolazoline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CENTRAL NERVOUS SYSTEM MEDICATIONS', 'CENTRAL NERVOUS SYSTEM MEDICATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANALGESICS', 'ANALGESICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIMIGRAINE AGENTS', 'ANTIMIGRAINE AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\283792\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\283792\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Almotriptan malate', 'Almotriptan malate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\203176\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\203176\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dihydroergotamine Mesylate', 'Dihydroergotamine Mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\360288\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\360288\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Eletriptan Hydrobromide', 'Eletriptan Hydrobromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\4025\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\4025\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ergotamine', 'Ergotamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\42676\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\42676\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ergotamine Tartrate', 'Ergotamine Tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\322249\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\322249\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Frovatriptan succinate', 'Frovatriptan succinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\104994\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\104994\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isometheptene mucate', 'Isometheptene mucate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\84158\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\84158\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methylergonovine Maleate', 'Methylergonovine Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\6911\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\6911\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methysergide', 'Methysergide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\203190\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\203190\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methysergide Maleate', 'Methysergide Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\236690\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\236690\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Naratriptan hydrochloride', 'Naratriptan hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\203085\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\203085\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentobarbital Sodium', 'Pentobarbital Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\88014\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\88014\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rizatriptan', 'rizatriptan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\237082\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\237082\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rizatriptan benzoate', 'Rizatriptan benzoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\37418\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\37418\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sumatriptan', 'Sumatriptan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\67158\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\67158\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sumatriptan Succinate', 'Sumatriptan Succinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\135775\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN105\135775\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'zolmitriptan', 'zolmitriptan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'NON-OPIOID ANALGESICS', 'NON-OPIOID ANALGESICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\89753\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\89753\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aminosalicylic sodium', 'Aminosalicylic sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\477631\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\477631\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'butabarbital', 'butabarbital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\91109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\91109\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Butabarbital sodium', 'Butabarbital sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\19860\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\19860\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'butalbital', 'butalbital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\21130\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\21130\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cinnamedrine', 'cinnamedrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\314557\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\314557\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CINNAMEDRINE HYDROCHLORIDE', 'CINNAMEDRINE HYDROCHLORIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\23162\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\23162\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dihydroxyaluminum aminoacetate', 'dihydroxyaluminum aminoacetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\24484\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\24484\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ethoheptazine', 'ethoheptazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\235416\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\235416\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ETHOHEPTAZINE CITRATE', 'ETHOHEPTAZINE CITRATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\29155\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\29155\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'magnesium carbonate', 'magnesium carbonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\6582\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\6582\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Magnesium Oxide', 'Magnesium Oxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\6760\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\6760\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Meprobamate', 'Meprobamate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\54365\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\54365\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pamabrom', 'pamabrom', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\82110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN103\82110\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tramadol Hydrochloride', 'Tramadol Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN104\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'NON-STEROIDAL ANTI-INFLAMMATORY ANALGESICS', 'NON-STEROIDAL ANTI-INFLAMMATORY ANALGESICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN104\19737\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN104\19737\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bromfenac', 'bromfenac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'OPIOID ANALGESICS', 'OPIOID ANALGESICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\203203\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\203203\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alfentanil hydrochloride', 'Alfentanil hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\594\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\594\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alphaprodine', 'Alphaprodine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\7433\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\7433\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alphaprodine Hydrochloride', 'Alphaprodine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\267396\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\267396\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bupivacaine Hydrochloride', 'Bupivacaine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\203841\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\203841\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Buprenorphine hydrochloride', 'Buprenorphine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\203170\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\203170\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Butorphanol Tartrate', 'Butorphanol Tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\22713\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\22713\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dezocine', 'dezocine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\3648\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\3648\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Droperidol', 'Droperidol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\4337\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\4337\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fentanyl', 'Fentanyl', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\142436\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\142436\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fentanyl Citrate', 'Fentanyl Citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\6211\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\6211\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lactose', 'Lactose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\153973\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\153973\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levorphanol Tartrate', 'Levorphanol Tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\6754\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\6754\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Meperidine', 'Meperidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\103755\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\103755\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Meperidine Hydrochloride', 'Meperidine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\6813\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\6813\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methadone', 'Methadone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\218337\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\218337\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methadone Hydrochloride', 'Methadone Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\154985\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\154985\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nalbuphine Hydrochloride', 'Nalbuphine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\203192\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\203192\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Naloxone Hydrochloride', 'Naloxone Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\7804\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\7804\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxycodone', 'Oxycodone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\82063\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\82063\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxycodone Hydrochloride', 'Oxycodone Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\159821\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\159821\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'oxycodone terephthalate', 'oxycodone terephthalate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\82064\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\82064\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxymorphone Hydrochloride', 'Oxymorphone Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\104973\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\104973\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentazocine Hydrochloride', 'Pentazocine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\203196\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\203196\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentazocine Lactate', 'Pentazocine Lactate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\8785\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\8785\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propoxyphene', 'Propoxyphene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\71517\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\71517\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propoxyphene Hydrochloride', 'Propoxyphene Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\8786\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\8786\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'propoxyphene napsylate', 'propoxyphene napsylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\236540\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\236540\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Remifentanil hydrochloride', 'Remifentanil hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\58964\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN101\58964\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sufentanil Citrate', 'Sufentanil Citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN102\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'OPIOID ANTAGONIST ANALGESICS', 'OPIOID ANTAGONIST ANALGESICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN102\82043\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN102\82043\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levomethadyl Acetate Hydrochloride', 'Levomethadyl Acetate Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN102\236069\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN100\CN102\236069\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nalmefene hydrochloride', 'Nalmefene hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANESTHETICS', 'ANESTHETICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN205\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN205\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANESTHETIC ADJUNCTS', 'ANESTHETIC ADJUNCTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN205\7315\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN205\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN205\7315\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Neostigmine', 'Neostigmine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN202\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BARBITURIC ACID DERIVATIVE ANESTHETICS', 'BARBITURIC ACID DERIVATIVE ANESTHETICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN202\91185\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN202\91185\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methohexital Sodium', 'Methohexital Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN202\282416\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN202\282416\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thiopental Sodium', 'Thiopental Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN203\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN203\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'GENERAL ANESTHETICS,OTHER', 'GENERAL ANESTHETICS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN203\203184\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN203\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN203\203184\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ketamine Hydrochloride', 'Ketamine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'LOCAL ANESTHETICS,INJECTION', 'LOCAL ANESTHETICS,INJECTION', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\2117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\2117\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Articaine hydrochloride', 'Articaine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\1815\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\1815\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bupivacaine', 'Bupivacaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\53616\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\53616\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chloroprocaine hydrochloride', 'Chloroprocaine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\227221\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\227221\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Etidocaine hydrochloride', 'Etidocaine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\259454\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\259454\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levobupivacaine hydrochloride', 'Levobupivacaine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\203185\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\203185\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mepivacaine Hydrochloride', 'Mepivacaine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\236539\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\236539\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ropivacaine hydrochloride', 'Ropivacaine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\10391\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN200\CN204\10391\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tetracaine', 'Tetracaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTICONVULSANTS', 'ANTICONVULSANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\2002\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\2002\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carbamazepine', 'Carbamazepine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\2598\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\2598\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clonazepam', 'Clonazepam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\266856\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\266856\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Divalproex Sodium', 'Divalproex Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\72236\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\72236\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fosphenytoin', 'fosphenytoin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\82806\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\82806\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fosphenytoin sodium', 'Fosphenytoin sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\25480\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\25480\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gabapentin', 'gabapentin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\114477\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\114477\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levetiracetam', 'Levetiracetam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\6757\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\6757\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mephenytoin', 'Mephenytoin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\6758\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\6758\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mephobarbital', 'Mephobarbital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\7909\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\7909\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Paraldehyde', 'Paraldehyde', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\32894\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\32894\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'paramethadione', 'paramethadione', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\33253\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\33253\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'phenacemide', 'phenacemide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\33309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\33309\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'phensuximide', 'phensuximide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\8183\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\8183\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenytoin', 'Phenytoin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\71227\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\71227\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenytoin sodium', 'Phenytoin sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\9919\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\9919\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Valproate', 'Sodium Valproate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\31914\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\31914\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tiagabine', 'tiagabine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\236875\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\236875\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tiagabine hydrochloride', 'Tiagabine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\40254\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\40254\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Valproate', 'Valproate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\39998\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN400\39998\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'zonisamide', 'zonisamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIDEPRESSANTS', 'ANTIDEPRESSANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIDEPRESSANTS,OTHER', 'ANTIDEPRESSANTS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\221078\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\221078\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Citalopram hydrobromide', 'Citalopram hydrobromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\72625\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\72625\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'duloxetine', 'duloxetine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\476250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\476250\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'duloxetine hydrochloride', 'duloxetine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\353108\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\353108\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Escitalopram oxalate', 'Escitalopram oxalate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\203143\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\203143\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluvoxamine Maleate', 'Fluvoxamine Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\203126\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\203126\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Maprotiline Hydrochloride', 'Maprotiline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\236082\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\236082\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nefazodone hydrochloride', 'Nefazodone hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\32937\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\32937\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Paroxetine', 'Paroxetine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\235830\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\235830\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Paroxetine Hydrochloride', 'Paroxetine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\155137\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\155137\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sertraline Hydrochloride', 'Sertraline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\82112\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\82112\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trazodone Hydrochloride', 'Trazodone Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\235988\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN609\235988\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Venlafaxine hydrochloride', 'Venlafaxine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN602\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN602\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MONAMINE OXIDASE INHIBITOR ANTIDEPRESSANTS', 'MONAMINE OXIDASE INHIBITOR ANTIDEPRESSANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN602\8124\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN602\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN602\8124\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenelzine Sulfate', 'Phenelzine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN602\91119\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN602\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN602\91119\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tranylcypromine sulfate', 'Tranylcypromine sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'TRICYCLIC ANTIDEPRESSANTS', 'TRICYCLIC ANTIDEPRESSANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\81984\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\81984\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clomipramine Hydrochloride', 'Clomipramine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\3247\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\3247\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Desipramine', 'Desipramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\203174\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\203174\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Desipramine Hydrochloride', 'Desipramine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\203179\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\203179\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxepin Hydrochloride', 'Doxepin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\203130\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\203130\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nortriptyline Hydrochloride', 'Nortriptyline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\203199\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\203199\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Protriptyline Hydrochloride', 'Protriptyline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\10834\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\10834\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trimipramine', 'Trimipramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\71532\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN600\CN601\71532\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trimipramine Maleate', 'Trimipramine Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIPARKINSON AGENTS', 'ANTIPARKINSON AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\1043\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\1043\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Apomorphine', 'Apomorphine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\71225\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\71225\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Apomorphine hydrochloride', 'Apomorphine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\6375\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\6375\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levodopa', 'Levodopa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\8048\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\8048\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pergolide Mesylate', 'Pergolide Mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\236747\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\236747\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pramipexole dihydrochloride', 'Pramipexole dihydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\236553\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\236553\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ropinirole hydrochloride', 'Ropinirole hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\203137\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN500\203137\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Selegiline Hydrochloride, (R)-Isomer', 'Selegiline Hydrochloride, (R)-Isomer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIPSYCHOTICS', 'ANTIPSYCHOTICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIPSYCHOTICS,OTHER', 'ANTIPSYCHOTICS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\2626\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\2626\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clozapine', 'Clozapine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\5093\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\5093\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Haloperidol', 'Haloperidol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\26420\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\26420\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'haloperidol decanoate', 'haloperidol decanoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\217483\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\217483\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Haloperidol lactate', 'Haloperidol lactate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\6475\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\6475\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Loxapine', 'Loxapine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\91138\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\91138\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Loxapine hydrochloride', 'Loxapine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\82051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\82051\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Molindone Hydrochloride', 'Molindone Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\61381\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\61381\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'olanzapine', 'olanzapine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\221153\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\221153\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Quetiapine fumarate', 'Quetiapine fumarate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\35636\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\35636\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Risperidone', 'Risperidone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\115698\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\115698\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ziprasidone', 'ziprasidone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\284925\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN709\284925\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ziprasidone hydrochloride, monohydrate', 'ziprasidone hydrochloride, monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PHENOTHIAZINE/RELATED ANTIPSYCHOTICS', 'PHENOTHIAZINE/RELATED ANTIPSYCHOTICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\16735\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\16735\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'acetophenazine', 'acetophenazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91127\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91127\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acetophenazine maleate', 'Acetophenazine maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\2403\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\2403\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorpromazine', 'Chlorpromazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\104728\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\104728\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorpromazine hydrochloride', 'Chlorpromazine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\2406\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\2406\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorprothixene', 'Chlorprothixene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91133\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91133\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorprothixene hydrochloride', 'Chlorprothixene hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\4496\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\4496\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluphenazine', 'Fluphenazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\25190\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\25190\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fluphenazine depot', 'fluphenazine depot', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\203207\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\203207\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluphenazine Hydrochloride', 'Fluphenazine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\6779\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\6779\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mesoridazine', 'Mesoridazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\203186\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\203186\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mesoridazine besylate', 'Mesoridazine besylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\6852\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\6852\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methotrimeprazine', 'Methotrimeprazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91124\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91124\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methotrimeprazine hydrochloride', 'Methotrimeprazine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\8076\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\8076\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Perphenazine', 'Perphenazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\8742\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\8742\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Promazine', 'Promazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\142444\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\142444\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Promazine Hydrochloride', 'Promazine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\10502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\10502\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thioridazine', 'Thioridazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\203165\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\203165\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thioridazine Hydrochloride', 'Thioridazine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91135\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91135\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thiothixene hydrochloride', 'Thiothixene hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91130\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91130\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trifluoperazine hydrochloride', 'Trifluoperazine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\10805\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\10805\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triflupromazine', 'Triflupromazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91125\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN700\CN701\91125\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triflupromazine hydrochloride', 'Triflupromazine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIVERTIGO AGENTS', 'ANTIVERTIGO AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\91070\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\91070\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Buclizine hydrochloride', 'Buclizine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\155017\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\155017\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cyclizine Hydrochloride', 'Cyclizine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\47877\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\47877\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diphenidol hydrochloride', 'Diphenidol hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\82041\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN550\82041\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Meclizine Hydrochloride', 'Meclizine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CNS MEDICATIONS,OTHER', 'CNS MEDICATIONS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\353103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\353103\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Atomoxetine hydrochloride', 'Atomoxetine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\314518\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\314518\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benactyzine hydrochloride', 'Benactyzine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\236559\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\236559\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Donepezil hydrochloride', 'Donepezil hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\4493\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\4493\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluoxetine', 'Fluoxetine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\227224\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\227224\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluoxetine Hydrochloride', 'Fluoxetine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\6719\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\6719\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Memantine', 'Memantine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\236685\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\236685\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Memantine hydrochloride', 'Memantine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\235972\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN900\235972\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tacrine Hydrochloride', 'Tacrine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CNS STIMULANTS', 'CNS STIMULANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN802\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'AMPHETAMINE LIKE STIMULANTS', 'AMPHETAMINE LIKE STIMULANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN802\353105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN802\353105\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dexmethylphenidate hydrochloride', 'dexmethylphenidate hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN802\203188\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN802\203188\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methylphenidate Hydrochloride', 'Methylphenidate Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'AMPHETAMINES', 'AMPHETAMINES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\221057\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\221057\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amphetamine aspartate', 'Amphetamine aspartate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\405812\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\405812\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amphetamine aspartate monohydrate', 'Amphetamine aspartate monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\81952\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\81952\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amphetamine Sulfate', 'Amphetamine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\221088\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\221088\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextroamphetamine saccharate', 'Dextroamphetamine saccharate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\3287\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\3287\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextroamphetamine Sulfate', 'Dextroamphetamine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\673579\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN800\CN801\673579\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lisdexamfetamine dimesylate', 'lisdexamfetamine dimesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN750\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN750\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'LITHIUM SALTS', 'LITHIUM SALTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN750\42351\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN750\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN750\42351\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lithium Carbonate', 'Lithium Carbonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'SEDATIVES/HYPONTICS', 'SEDATIVES/HYPONTICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BENZODIAZEPINE DERIVATIVE SEDATIVES/HYPNOTICS', 'BENZODIAZEPINE DERIVATIVE SEDATIVES/HYPNOTICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\596\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\596\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alprazolam', 'Alprazolam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\2353\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\2353\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorazepate', 'Chlorazepate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\2607\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\2607\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clorazepate Dipotassium', 'Clorazepate Dipotassium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\71484\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\71484\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flurazepam Hydrochloride', 'Flurazepam Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\26412\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\26412\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'halazepam', 'halazepam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\203128\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\203128\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Midazolam Hydrochloride', 'Midazolam Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\8627\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN302\8627\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Prazepam', 'Prazepam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'SEDATIVES/HYPNOTICS,OTHER', 'SEDATIVES/HYPNOTICS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\203116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\203116\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'buspirone hydrochloride', 'buspirone hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\2344\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\2344\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chloral Hydrate', 'Chloral Hydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\2373\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\2373\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlormezanone', 'Chlormezanone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\228054\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\228054\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dexmedetomidine Hydrochloride', 'Dexmedetomidine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\4903\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\4903\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glutethimide', 'Glutethimide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\6910\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\6910\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methyprylon', 'Methyprylon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\8770\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\8770\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'propiomazine', 'propiomazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\6232\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\6232\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propiomazine hydrochloride', 'Propiomazine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\285250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\285250\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Valerian extract', 'Valerian extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\221183\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\CN000\CN300\CN309\221183\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Zolpidem tartrate', 'Zolpidem tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DENTAL AND ORAL AGENTS,TOPICAL', 'DENTAL AND ORAL AGENTS,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CARIOSTATICS,TOPICAL', 'CARIOSTATICS,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR100\10030\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR100\10030\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Stannous Fluoride', 'Stannous Fluoride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DENTAL AND ORAL AGENTS,TOPICAL,OTHER', 'DENTAL AND ORAL AGENTS,TOPICAL,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\203180\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\203180\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Adrenaline Bitartrate', 'Adrenaline Bitartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\362\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\362\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Adrenaline Hydrochloride', 'Adrenaline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\17611\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\17611\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aluminum chloride hexahydrate', 'Aluminum chloride hexahydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\24255\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR900\24255\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'epinephryl borate', 'epinephryl borate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MOUTHWASHES', 'MOUTHWASHES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR500\2358\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR500\2358\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorhexidine', 'Chlorhexidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR500\20791\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR500\20791\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chlorhexidine gluconate', 'chlorhexidine gluconate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR500\29829\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OR000\OR500\29829\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methylbenzethonium', 'methylbenzethonium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DERMATOLOGICAL AGENTS', 'DERMATOLOGICAL AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE650\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE650\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANALGESICS,TOPICAL', 'ANALGESICS,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE650\1952\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE650\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE650\1952\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Camphor', 'Camphor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE650\6750\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE650\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE650\6750\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Menthol', 'Menthol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE650\40165\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE650\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE650\40165\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methacholine Chloride', 'Methacholine Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFECTIVE,TOPICAL', 'ANTI-INFECTIVE,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFECTIVE,TOPICAL,OTHER', 'ANTI-INFECTIVE,TOPICAL,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\1390\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\1390\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzethonium', 'Benzethonium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\32680\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\32680\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'oxychlorosene', 'oxychlorosene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\221136\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\221136\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxychlorosene sodium', 'Oxychlorosene sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\8724\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE109\8724\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Proflavine Hemisulfate', 'Proflavine Hemisulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIBACTERIAL,TOPICAL', 'ANTIBACTERIAL,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\20012\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\20012\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cadexomer iodine', 'cadexomer iodine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\5645\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\5645\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ichthammol', 'ichthammol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\6573\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\6573\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mafenide Acetate', 'Mafenide Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\203162\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE101\203162\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Meclocycline sulfosalicylate', 'Meclocycline sulfosalicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIFUNGAL,TOPICAL', 'ANTIFUNGAL,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\236558\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\236558\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Butenafine hydrochloride', 'Butenafine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\21090\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\21090\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ciclopirox', 'ciclopirox', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\52172\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\52172\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ciclopirox olamine', 'Ciclopirox olamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\142434\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\142434\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Econazole Nitrate', 'Econazole Nitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\42790\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\42790\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Miconazole Nitrate', 'Miconazole Nitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\91293\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\91293\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Naftifine hydrochloride', 'Naftifine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\56226\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\56226\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxiconazole nitrate', 'Oxiconazole nitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\36435\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\36435\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sertaconazole', 'sertaconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\236601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\236601\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sertaconazole nitrate', 'sertaconazole nitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\56798\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\56798\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulconazole nitrate', 'Sulconazole nitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\235838\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\235838\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Terbinafine hydrochloride', 'Terbinafine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\10989\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\10989\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Undecylenic Acid', 'Undecylenic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\89748\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE102\89748\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Zinc undecylenate', 'Zinc undecylenate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE103\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIVIRAL,TOPICAL', 'ANTIVIRAL,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE103\281\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE103\281\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acyclovir', 'Acyclovir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE103\81944\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE100\DE103\81944\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acyclovir Sodium', 'Acyclovir Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE250\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFECTIVE/ANTI-INFLAMMATORY COMBINATIONS,TOPICAL', 'ANTI-INFECTIVE/ANTI-INFLAMMATORY COMBINATIONS,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE250\235725\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE250\235725\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorcyclizine hydrochloride', 'Chlorcyclizine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFLAMMATORY,TOPICAL', 'ANTI-INFLAMMATORY,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\17268\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\17268\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alclometasone dipropionate', 'alclometasone dipropionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\2590\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\2590\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clobetasol', 'Clobetasol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\21245\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\21245\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clobetasol Propionate', 'Clobetasol Propionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\21250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\21250\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'clocortolone pivalate', 'clocortolone pivalate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\23033\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\23033\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'diflorasone diacetate', 'diflorasone diacetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\133043\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\133043\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diperodon hydrochloride', 'Diperodon hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\4461\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\4461\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluocinolone Acetonide', 'Fluocinolone Acetonide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\45318\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\45318\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'halobetasol propionate', 'halobetasol propionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\8610\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\8610\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Povidone', 'Povidone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\10759\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE200\10759\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triamcinolone', 'Triamcinolone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE750\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE750\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIACNE AGENTS', 'ANTIACNE AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE750\DE752\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE750\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE750\DE752\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIACNE AGENTS,TOPICAL', 'ANTIACNE AGENTS,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE750\DE752\18602\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE750\DE752\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE750\DE752\18602\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'azelaic acid', 'azelaic acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE750\DE752\1418\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE750\DE752\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE750\DE752\1418\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzoyl Peroxide', 'Benzoyl Peroxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIPSORIATIC', 'ANTIPSORIATIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIPSORIATICS,TOPICAL', 'ANTIPSORIATICS,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\873\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\873\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Anthralin', 'Anthralin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\1399\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\1399\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzocaine', 'Benzocaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\2635\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\2635\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Coal Tar', 'Coal Tar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\6227\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\6227\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lanolin', 'Lanolin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\29542\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\29542\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mercury, Ammoniated', 'Mercury, Ammoniated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\29652\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\29652\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methenamine hippurate', 'methenamine hippurate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\161623\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE800\DE820\161623\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methenamine mandelate', 'methenamine mandelate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE450\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE450\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DEODORANTS/ANTIPERSPIRANTS,TOPICAL', 'DEODORANTS/ANTIPERSPIRANTS,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE450\46241\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE450\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE450\46241\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'aluminum chloride', 'aluminum chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE890\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE890\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DERMATOLOGICALS,SYSTEMIC,OTHER', 'DERMATOLOGICALS,SYSTEMIC,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE890\10844\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE890\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE890\10844\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trioxsalen', 'Trioxsalen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DERMATOLOGICALS,TOPICAL OTHER', 'DERMATOLOGICALS,TOPICAL OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\17609\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\17609\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'aluminum acetate', 'aluminum acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\17621\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\17621\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'aluminum sulfate', 'aluminum sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\82242\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\82242\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chlorophyllin copper complex', 'chlorophyllin copper complex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\3210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\3210\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Deoxyribonucleases', 'Deoxyribonucleases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\4388\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\4388\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Plasmin', 'Plasmin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\227410\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE900\227410\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sultilains', 'sultilains', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE350\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'EMOLLIENTS', 'EMOLLIENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE350\28393\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE350\28393\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lactic acid', 'Lactic acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'KERATOLYTICS/CAUSTICS,TOPICAL', 'KERATOLYTICS/CAUSTICS,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\178\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\178\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acetone', 'Acetone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\1984\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\1984\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cantharidin', 'Cantharidin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\8462\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\8462\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'podophyllin', 'podophyllin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\10223\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\10223\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfur', 'Sulfur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\10773\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE500\10773\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trichloroacetic Acid', 'Trichloroacetic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE700\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'LOCAL ANESTHETICS,TOPICAL', 'LOCAL ANESTHETICS,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE700\221067\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE700\221067\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Butamben picrate', 'Butamben picrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE700\91188\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE700\91188\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dyclonine hydrochloride', 'Dyclonine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE700\2557\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE700\2557\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Prilocaine Hydrochloride', 'Prilocaine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'SOAPS/SHAMPOOS/SOAP-FREE CLEANSERS', 'SOAPS/SHAMPOOS/SOAP-FREE CLEANSERS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\20875\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\20875\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chloroxine', 'chloroxine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\4910\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\4910\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glycerol', 'Glycerol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\8091\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\8091\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Petrolatum', 'Petrolatum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\9522\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\9522\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'salicylate', 'salicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\9907\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\9907\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Salicylate', 'Sodium Salicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\36726\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\36726\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium thiosulfate', 'sodium thiosulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\38323\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\38323\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'titanium dioxide', 'titanium dioxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\39952\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DE000\DE400\39952\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'zinc pyrithione', 'zinc pyrithione', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DIAGNOSTIC AGENTS', 'DIAGNOSTIC AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DIAGNOSTIC ANTIGENS', 'DIAGNOSTIC ANTIGENS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX300\5363\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX300\5363\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Histoplasmin', 'Histoplasmin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DIAGNOSTICS,OTHER', 'DIAGNOSTICS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\89918\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\89918\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Arginine hydrochloride', 'Arginine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\74670\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\74670\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'corticorelin ovine triflutate', 'corticorelin ovine triflutate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\204193\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\204193\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gonadorelin Acetate', 'Gonadorelin Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\204194\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\204194\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gonadorelin Hydrochloride', 'Gonadorelin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\26925\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\26925\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'histamine phosphate', 'histamine phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\5771\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\5771\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Indigotindisulfonate Sodium', 'Indigotindisulfonate Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\221119\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\221119\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'mangafodipir trisodium, anhydrous', 'mangafodipir trisodium, anhydrous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\7993\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX900\7993\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentagastrin', 'Pentagastrin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'RADIOLOGICAL/CONTRAST MEDIA', 'RADIOLOGICAL/CONTRAST MEDIA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'IONIC CONTRAST MEDIA', 'IONIC CONTRAST MEDIA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\1911\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\1911\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium Ipodate', 'Calcium Ipodate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\3320\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\3320\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diatrizoate Meglumine', 'Diatrizoate Meglumine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\9887\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\9887\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ipodate Sodium', 'Ipodate Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\29455\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\29455\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'meglumine iodamide', 'meglumine iodamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\29456\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\29456\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'meglumine iodipamide', 'meglumine iodipamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\3321\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\3321\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Diatrizoate', 'Sodium Diatrizoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\282508\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX102\282508\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Tyropanoate', 'Sodium Tyropanoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX101\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'NON-IONIC CONTRAST MEDIA', 'NON-IONIC CONTRAST MEDIA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX101\203194\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX101\203194\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aminohippurate Sodium', 'Aminohippurate Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX101\9800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\DX000\DX100\DX101\9800\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sincalide', 'Sincalide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'GASTROINTESTINAL MEDICATIONS', 'GASTROINTESTINAL MEDICATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTACIDS', 'ANTACIDS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA103\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ALUMINUM/MAGNESIUM CONTAINING ANTACIDS', 'ALUMINUM/MAGNESIUM CONTAINING ANTACIDS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA103\612\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA103\612\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aluminum Hydroxide', 'Aluminum Hydroxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA199\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA199\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTACIDS,OTHER', 'ANTACIDS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA199\272\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA199\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA199\272\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Activated Charcoal', 'Activated Charcoal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA199\17305\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA199\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA199\17305\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alginic acid', 'alginic acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA199\9796\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA199\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA199\9796\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Simethicone', 'Simethicone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA105\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CALCIUM CONTAINING ANTACIDS', 'CALCIUM CONTAINING ANTACIDS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA105\1897\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA105\1897\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium Carbonate', 'Calcium Carbonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA107\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA107\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MAGALDRATE CONTAINING ANTACIDS', 'MAGALDRATE CONTAINING ANTACIDS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA107\29151\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA107\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA100\GA107\29151\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'magaldrate', 'magaldrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIDIARRHEAL AGENTS', 'ANTIDIARRHEAL AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\1223\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\1223\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Atropine', 'Atropine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\153971\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\153971\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Atropine Sulfate', 'Atropine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\18516\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\18516\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'attapulgite', 'attapulgite', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\89781\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\89781\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Belladonna Extract', 'Belladonna Extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\19476\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\19476\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bismuth subgallate', 'bismuth subgallate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\19478\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\19478\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bismuth subsalicylate', 'bismuth subsalicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\235373\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\235373\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Difenoxin hydrochloride', 'Difenoxin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\82005\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\82005\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diphenoxylate Hydrochloride', 'Diphenoxylate Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\27084\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\27084\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'homatropine', 'homatropine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\235428\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\235428\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Homatropine hydrobromide', 'Homatropine hydrobromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\27085\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\27085\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'homatropine methylbromide', 'homatropine methylbromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\153970\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\153970\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hyoscyamine', 'Hyoscyamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\1225\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\1225\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hyoscyamine Sulfate', 'Hyoscyamine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\6102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\6102\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Kaolin', 'Kaolin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\6204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\6204\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lactobacillus', 'Lactobacillus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\82038\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\82038\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Loperamide Hydrochloride', 'Loperamide Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\30236\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\30236\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Morphine Sulfate', 'Morphine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\221130\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\221130\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Octreotide Acetate', 'Octreotide Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\7676\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\7676\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Opium', 'Opium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\221134\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\221134\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'opium tincture', 'opium tincture', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\221135\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\221135\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'OPIUM, POWDERED', 'OPIUM, POWDERED', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\32987\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\32987\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pectin', 'pectin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\8134\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\8134\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenobarbital', 'Phenobarbital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\82077\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\82077\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenobarbital Sodium', 'Phenobarbital Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\36122\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\36122\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'phenyl salicylate', 'phenyl salicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\54993\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\54993\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'potassium citrate', 'potassium citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\9601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\9601\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Scopolamine', 'Scopolamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\9603\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\9603\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Scopolamine Hydrobromide', 'Scopolamine Hydrobromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\283585\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA208\283585\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'SIMETHICONE-CELLULOSE', 'SIMETHICONE-CELLULOSE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIEMETICS', 'ANTIEMETICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\19041\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\19041\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'benzquinamide', 'benzquinamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\91272\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\91272\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzquinamide hydrochloride', 'Benzquinamide hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\29398\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\29398\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dolasetron mesylate', 'dolasetron mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\142149\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\142149\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Granisetron Hydrochloride', 'Granisetron Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\31447\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\31447\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nabilone', 'nabilone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\203148\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\203148\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ondansetron Monohydrochloride', 'Ondansetron Monohydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\397405\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\397405\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Palonosetron hydrochloride', 'Palonosetron hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\71529\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\71529\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thiethylperazine Malate', 'Thiethylperazine Malate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\57227\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA605\57227\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trimethobenzamide hydrochloride', 'Trimethobenzamide hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIMUSCARINICS/ANTISPASMODICS', 'ANTIMUSCARINICS/ANTISPASMODICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIMUSCARINIC/ANTIPASMODIC COMBINATIONS', 'ANTIMUSCARINIC/ANTIPASMODIC COMBINATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\48212\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\48212\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clidinium bromide', 'Clidinium bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\3361\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\3361\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dicyclomine', 'Dicyclomine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\152021\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\152021\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dicyclomine Hydrochloride', 'Dicyclomine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\32698\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\32698\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'oxyphencyclimine', 'oxyphencyclimine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\91164\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA800\GA802\91164\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxyphencyclimine hydrochloride', 'Oxyphencyclimine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIULCER AGENTS', 'ANTIULCER AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA303\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA303\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'H. PYLORI AGENTS', 'H. PYLORI AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA303\55471\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA303\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA303\55471\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ranitidine bismuth citrate', 'ranitidine bismuth citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA303\203136\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA303\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA303\203136\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ranitidine Hydrochloride', 'Ranitidine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA301\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'HISTAMINE ANTAGONISTS', 'HISTAMINE ANTAGONISTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA301\91251\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA300\GA301\91251\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cimetidine Hydrochloride', 'Cimetidine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'APPETITE SUPPRESSANTS', 'APPETITE SUPPRESSANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CENTRALLY-ACTING APPETITE SUPPRESSANTS', 'CENTRALLY-ACTING APPETITE SUPPRESSANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\142425\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\142425\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzphetamine hydrochloride', 'Benzphetamine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\3268\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\3268\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dexfenfluramine', 'Dexfenfluramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\155142\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\155142\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dexfenfluramine Hydrochloride', 'Dexfenfluramine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\81998\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\81998\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diethylpropion Hydrochloride', 'Diethylpropion Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\4328\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\4328\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fenfluramine', 'Fenfluramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\82018\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\82018\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fenfluramine Hydrochloride', 'Fenfluramine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\58157\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\58157\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'phendimetrazine tartrate', 'phendimetrazine tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\82078\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\82078\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phentermine Hydrochloride', 'Phentermine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\221160\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA750\GA751\221160\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sibutramine hydrochloride monohydrate', 'Sibutramine hydrochloride monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DIGESTANTS', 'DIGESTANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\743\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\743\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amylases', 'Amylases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\3141\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\3141\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dehydrocholic Acid', 'Dehydrocholic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\8031\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\8031\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Endopeptidases', 'Endopeptidases', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\6406\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\6406\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lipase', 'Lipase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\7880\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\7880\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pancreatin', 'Pancreatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\203164\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA500\203164\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pyridoxine Hydrochloride', 'Pyridoxine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'GASTRIC MEDICATIONS,OTHER', 'GASTRIC MEDICATIONS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\85248\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\85248\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alosetron', 'alosetron', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\85247\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\85247\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alosetron hydrochloride', 'alosetron hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\153718\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\153718\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Balsalazide disodium', 'Balsalazide disodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\20063\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\20063\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'calcium polycarbophil', 'calcium polycarbophil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\2323\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\2323\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chenodeoxycholic Acid', 'Chenodeoxycholic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\221077\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\221077\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cisapride monohydrate', 'cisapride monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\283742\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\283742\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Esomeprazole', 'Esomeprazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\283562\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\283562\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Esomeprazole magnesium', 'Esomeprazole magnesium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\104123\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\104123\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Olsalazine sodium', 'Olsalazine sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\236486\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\236486\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Omeprazole magnesium', 'Omeprazole magnesium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\40790\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\40790\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pantoprazole', 'pantoprazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\253191\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\253191\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pantoprazole sodium', 'Pantoprazole sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\8704\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\8704\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Prochlorperazine', 'Prochlorperazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\8705\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\8705\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Prochlorperazine Edisylate Salt', 'Prochlorperazine Edisylate Salt', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\8706\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\8706\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Prochlorperazine Maleate', 'Prochlorperazine Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\9524\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\9524\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfasalazine', 'Sulfasalazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\339270\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\339270\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tegaserod maleate', 'Tegaserod maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\11065\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA900\11065\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ursodiol', 'Ursodiol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'LAXATIVES', 'LAXATIVES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA201\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BULK-FORMING LAXATIVES', 'BULK-FORMING LAXATIVES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA201\8928\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA201\8928\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Psyllium', 'Psyllium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA201\314809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA201\314809\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'PSYLLIUM HYDROCOLLOID', 'PSYLLIUM HYDROCOLLOID', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA201\314811\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA201\314811\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'PSYLLIUM MUCILLOID', 'PSYLLIUM MUCILLOID', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA202\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'HYPEROSMOTIC LAXATIVES', 'HYPEROSMOTIC LAXATIVES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA202\6581\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA202\6581\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Magnesium Hydroxide', 'Magnesium Hydroxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'LAXATIVES,OTHER', 'LAXATIVES,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\1596\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\1596\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bisacodyl', 'Bisacodyl', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\22293\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\22293\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'danthron', 'danthron', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\52356\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\52356\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'magnesium citrate', 'magnesium citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\155122\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA209\155122\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenolphthalein', 'Phenolphthalein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'STIMULANT LAXATIVES', 'STIMULANT LAXATIVES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\82001\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\82001\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dioctyl Sulfosuccinic Acid, Calcium Salt', 'Dioctyl Sulfosuccinic Acid, Calcium Salt', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\82002\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\82002\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dioctyl Sulfosuccinic Acid, Potassium Salt', 'Dioctyl Sulfosuccinic Acid, Potassium Salt', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\82003\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\82003\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Docusate', 'Docusate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\71722\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\71722\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Docusate Sodium', 'Docusate Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\219860\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\219860\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'SENNA CONCENTRATE', 'SENNA CONCENTRATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\9658\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\9658\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Senna Extract', 'Senna Extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\36387\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GA000\GA200\GA204\36387\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sennosides', 'Sennosides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'GENITOURINARY MEDICATIONS', 'GENITOURINARY MEDICATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANALGESICS,URINARY', 'ANALGESICS,URINARY', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU100\6878\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU100\6878\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methylene blue', 'Methylene blue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFECTIVES,VAGINAL', 'ANTI-INFECTIVES,VAGINAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\47464\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\47464\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Butoconazole nitrate', 'Butoconazole nitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\2623\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\2623\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clotrimazole', 'Clotrimazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\4778\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\4778\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gentian Violet', 'Gentian Violet', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\36721\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\36721\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium sulfate', 'sodium sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\37320\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\37320\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sulfabenzamide', 'sulfabenzamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\10184\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\10184\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfanilamide', 'Sulfanilamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\10193\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU300\10193\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sulfathiazole', 'sulfathiazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTISPASMODICS,URINARY', 'ANTISPASMODICS,URINARY', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTISPASMODICS,URINARY', 'ANTISPASMODICS,URINARY', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\485417\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\485417\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'darifenacin hydrobromide', 'darifenacin hydrobromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\142437\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\142437\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flavoxate Hydrochloride', 'Flavoxate Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\54251\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\54251\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxybutynin chloride', 'Oxybutynin chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\322167\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\322167\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Solifenacin', 'Solifenacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\476588\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\476588\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Solifenacin Succinate', 'Solifenacin Succinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\236778\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\236778\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trospium', 'Trospium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\38891\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU200\GU201\38891\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trospium chloride', 'trospium chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'GENITO-URINARY AGENTS,OTHER', 'GENITO-URINARY AGENTS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\54989\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\54989\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'aluminum potassium sulfate', 'aluminum potassium sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\1700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\1700\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'boric acid', 'boric acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\221086\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\221086\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cysteine Hydrochloride', 'Cysteine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\134413\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\134413\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentosan Polysulphate Sodium', 'Pentosan Polysulphate Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\223779\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\223779\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Potassium bitartrate', 'Potassium bitartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\8611\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\8611\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Povidone-Iodine', 'Povidone-Iodine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\237125\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\237125\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sevelamer hydrochloride', 'Sevelamer hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\221161\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\221161\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sildenafil citrate', 'Sildenafil citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\36680\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\36680\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium borate', 'sodium borate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\358263\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\358263\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tadalafil', 'tadalafil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\306674\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\306674\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'vardenafil', 'vardenafil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\307306\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU900\307306\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vardenafil hydrochloride', 'Vardenafil hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU600\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'OXYTOCICS', 'OXYTOCICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU600\24313\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU600\24313\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ergonovine Maleate', 'Ergonovine Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU600\7824\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU600\7824\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxytocin', 'Oxytocin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU600\11002\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\GU000\GU600\11002\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Urea', 'Urea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'HERBS/ALTERNATIVE THERAPIES', 'HERBS/ALTERNATIVE THERAPIES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\426\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\426\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alanine', 'Alanine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\253157\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\253157\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bee pollen', 'Bee pollen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\1992\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\1992\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Capsaicin', 'Capsaicin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\125933\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\125933\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cranberry preparation', 'Cranberry preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\236802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\236802\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Damiana extract', 'Damiana extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\3143\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\3143\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dehydroepiandrosterone', 'dehydroepiandrosterone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\23247\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\23247\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dimethyl sulfone', 'Dimethyl sulfone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\318224\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\318224\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flaxseed extract', 'Flaxseed extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\285241\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\285241\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ginger extract', 'Ginger extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\325526\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\325526\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ginseng Preparation', 'Ginseng Preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\70602\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\70602\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glutamate', 'Glutamate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\25916\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\25916\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glutamic Acid', 'Glutamic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\4919\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\4919\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glycine', 'Glycine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\319837\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\319837\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gotu Kola Extract', 'Gotu Kola Extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\237116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\237116\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'GRAPE SEED EXTRACT', 'GRAPE SEED EXTRACT', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\253173\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\253173\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Green tea preparation', 'Green tea preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\236953\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\236953\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guarana preparation', 'Guarana preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\42955\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\42955\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levocarnitine', 'Levocarnitine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\9504\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\9504\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'S-Adenosylmethionine', 'S-Adenosylmethionine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\236344\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\236344\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Saw palmetto extract', 'Saw palmetto extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\10337\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\10337\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Taurine', 'Taurine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\10962\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\10962\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tyrosine', 'Tyrosine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\11258\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\11258\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vitamin K', 'Vitamin K', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\220982\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\220982\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Yohimbe Preparation', 'Yohimbe Preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\133041\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HA000\133041\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Yohimbine hydrochloride', 'Yohimbine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'HORMONES/SYNTHETICS/MODIFIERS', 'HORMONES/SYNTHETICS/MODIFIERS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ADRENAL CORTICOSTERIODS', 'ADRENAL CORTICOSTERIODS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'GLUCOCORTICOIDS', 'GLUCOCORTICOIDS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\215664\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\215664\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Augmented betamethasone dipropionate', 'Augmented betamethasone dipropionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\1516\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\1516\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Betamethasone acetate', 'Betamethasone acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\203220\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\203220\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'betamethasone sodium phosphate', 'betamethasone sodium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\227897\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\227897\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Betamethasone valerate', 'Betamethasone valerate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\19254\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\19254\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'betamethasone-17,21-dipropionate', 'betamethasone-17,21-dipropionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\19831\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\19831\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Budesonide', 'Budesonide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\2878\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\2878\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cortisone', 'Cortisone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\21655\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\21655\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cortisone acetate', 'cortisone acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\155323\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\155323\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methylprednisolone acetate', 'methylprednisolone acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\29917\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\29917\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methylprednisolone sodium phosphate', 'methylprednisolone sodium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\203189\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\203189\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methylprednisolone Sodium Succinate', 'Methylprednisolone Sodium Succinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\32895\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS051\32895\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'paramethasone acetate', 'paramethasone acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS052\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS052\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MINERALOCORTICOIDS', 'MINERALOCORTICOIDS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS052\22537\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS052\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS052\22537\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'deoxycortone pivalate', 'deoxycortone pivalate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS052\258333\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS052\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS050\HS052\258333\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Desoxycorticosterone acetate', 'Desoxycorticosterone acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANDROGENS/ANABOLICS', 'ANDROGENS/ANABOLICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS100\6818\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS100\6818\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methandrostenolone', 'Methandrostenolone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS100\31494\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS100\31494\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nandrolone decanoate', 'nandrolone decanoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS100\10379\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS100\10379\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Testosterone', 'Testosterone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BLOOD GLUCOSE REGULATION AGENTS', 'BLOOD GLUCOSE REGULATION AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS503\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS503\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHYPOGLYCEMICS', 'ANTIHYPOGLYCEMICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS503\261716\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS503\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS503\261716\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'glucagon (rDNA)', 'glucagon (rDNA)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS503\253170\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS503\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS503\253170\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'GLUCAGON HYDROCHLORIDE', 'GLUCAGON HYDROCHLORIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS503\356773\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS503\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS503\356773\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pramlintide acetate', 'pramlintide acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'INSULIN', 'INSULIN', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\86009\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\86009\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin Lispro', 'Insulin Lispro', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\51428\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\51428\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Aspart, Human', 'Insulin, Aspart, Human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\400008\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\400008\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Glulisine, Human', 'Insulin, Glulisine, Human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235284\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235284\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Prompt Zinc, Beef', 'Insulin, Prompt Zinc, Beef', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235283\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235283\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Prompt Zinc, Beef-Pork', 'Insulin, Prompt Zinc, Beef-Pork', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235278\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235278\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'insulin, protamine zinc, beef', 'insulin, protamine zinc, beef', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235279\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235279\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Protamine Zinc, Pork', 'Insulin, Protamine Zinc, Pork', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\314686\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\314686\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Regular, Beef', 'Insulin, Regular, Beef', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235275\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235275\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Regular, Beef-Pork', 'Insulin, Regular, Beef-Pork', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\314682\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\314682\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lente Insulin, Beef-Pork', 'Lente Insulin, Beef-Pork', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\253181\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\253181\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'NPH Insulin, Human', 'NPH Insulin, Human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\253182\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\253182\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Regular Insulin, Human', 'Regular Insulin, Human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235282\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235282\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ultralente Insulin, Beef', 'Ultralente Insulin, Beef', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235281\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\235281\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ultralente Insulin, Beef-Pork', 'Ultralente Insulin, Beef-Pork', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\221110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS501\221110\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ultralente Insulin, Human', 'Ultralente Insulin, Human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ORAL HYPOGLYCEMIC AGENTS,ORAL', 'ORAL HYPOGLYCEMIC AGENTS,ORAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\217364\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\217364\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'GLYBURIDE, MICRONIZED', 'GLYBURIDE, MICRONIZED', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\6809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\6809\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metformin', 'Metformin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\235743\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\235743\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metformin hydrochloride', 'Metformin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\259319\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\259319\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pioglitazone hydrochloride', 'Pioglitazone hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\84108\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\84108\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rosiglitazone', 'rosiglitazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\253198\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\253198\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rosiglitazone maleate', 'Rosiglitazone maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\621590\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\621590\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sitagliptin phosphate', 'sitagliptin phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\10633\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\10633\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tolazamide', 'Tolazamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\10635\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\10635\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tolbutamide', 'Tolbutamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\221173\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\221173\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tolbutamide sodium', 'Tolbutamide sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\72610\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS500\HS502\72610\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'troglitazone', 'troglitazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CONTRACEPTIVES,SYSTEMIC', 'CONTRACEPTIVES,SYSTEMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\22656\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\22656\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Desogestrel', 'Desogestrel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\4170\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\4170\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethynodiol Diacetate', 'Ethynodiol Diacetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\6782\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\6782\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mestranol', 'Mestranol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\31994\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\31994\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'norgestimate', 'norgestimate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\7518\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS200\7518\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Norgestrel', 'Norgestrel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ESTROGENS', 'ESTROGENS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\2356\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\2356\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlordiazepoxide', 'Chlordiazepoxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\203173\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\203173\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlordiazepoxide Hydrochloride', 'Chlordiazepoxide Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\2397\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\2397\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorotrianisene', 'Chlorotrianisene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\214549\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\214549\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Estrogens, Esterified (USP)', 'Estrogens, Esterified (USP)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\6373\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS300\6373\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levonorgestrel', 'Levonorgestrel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'GONADOTROPINS', 'GONADOTROPINS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\283550\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\283550\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'choriogonadotropin alfa', 'choriogonadotropin alfa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\142431\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\142431\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clomiphene Citrate', 'Clomiphene Citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\259264\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\259264\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ganirelix acetate', 'Ganirelix acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\340705\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\340705\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Human Chorionic Gonadotropin', 'Human Chorionic Gonadotropin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\388084\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS400\388084\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lutropin alfa', 'Lutropin alfa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'HORMONES/SYNTHETICS/MODIFIERS,OTHER', 'HORMONES/SYNTHETICS/MODIFIERS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\168\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\168\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acetic Acid', 'Acetic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\46041\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\46041\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alendronate', 'Alendronate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\203152\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\203152\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alendronate Sodium', 'Alendronate Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\46043\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\46043\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alfuzosin hydrochloride', 'Alfuzosin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\407990\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\407990\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cinacalcet', 'cinacalcet', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\384379\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\384379\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cinacalcet hydrochloride', 'cinacalcet hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\3251\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\3251\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Deamino Arginine Vasopressin', 'Deamino Arginine Vasopressin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\3390\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\3390\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diethylstilbestrol', 'Diethylstilbestrol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\4083\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\4083\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Estradiol', 'Estradiol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\24384\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\24384\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'estradiol 17 beta-cypionate', 'estradiol 17 beta-cypionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\405416\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\405416\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Estradiol acetate', 'Estradiol acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\24395\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\24395\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'estradiol valerate', 'estradiol valerate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\4099\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\4099\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Estrogens, Conjugated (USP)', 'Estrogens, Conjugated (USP)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\4124\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\4124\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethinyl Estradiol', 'Ethinyl Estradiol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\9872\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\9872\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Etidronate Disodium', 'Etidronate Disodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\4494\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\4494\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluoxymesterone', 'Fluoxymesterone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\6387\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\6387\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lidocaine', 'Lidocaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\6691\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\6691\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Medroxyprogesterone', 'Medroxyprogesterone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\29438\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\29438\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Medroxyprogesterone 17-Acetate', 'Medroxyprogesterone 17-Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\6904\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\6904\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methyltestosterone', 'Methyltestosterone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\203147\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\203147\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nafarelin Acetate', 'Nafarelin Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\53750\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\53750\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nonoxynol-9', 'Nonoxynol-9', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\31983\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\31983\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'norethindrone acetate', 'norethindrone acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\105443\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\105443\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pamidronate Disodium', 'Pamidronate Disodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\33290\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\33290\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'phenol', 'phenol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\239351\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\239351\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenol Liquid', 'Phenol Liquid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\34347\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\34347\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pramoxine', 'pramoxine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\166551\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\166551\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Raloxifene Hydrochloride', 'Raloxifene Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\60334\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\60334\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'risedronate sodium', 'risedronate sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\36118\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\36118\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'salmon calcitonin', 'salmon calcitonin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\9627\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\9627\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Secretin', 'Secretin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\58932\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\58932\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sermorelin Acetate', 'Sermorelin Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\56443\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\56443\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Acetate', 'Sodium Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\10169\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\10169\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfacetamide', 'Sulfacetamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\37859\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\37859\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'testosterone enanthate', 'testosterone enanthate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\10382\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\10382\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Testosterone Propionate', 'Testosterone Propionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\83153\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\83153\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tiludronate disodium', 'Tiludronate disodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\11256\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS900\11256\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vitamin E', 'Vitamin E', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PITUITARY', 'PITUITARY', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS701\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTERIOR PITUITARY', 'ANTERIOR PITUITARY', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS701\259338\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS701\259338\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cetrorelix acetate', 'Cetrorelix acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS701\236167\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS701\236167\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lanreotide acetate', 'lanreotide acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS701\314845\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS701\314845\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'SOMATROPIN (RECOMBINANT DNA ORIGIN)', 'SOMATROPIN (RECOMBINANT DNA ORIGIN)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS702\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS702\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'POSTERIOR PITUITARY', 'POSTERIOR PITUITARY', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS702\42634\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS702\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS700\HS702\42634\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Desmopressin Acetate', 'Desmopressin Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PROGESTINS', 'PROGESTINS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\12488\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\12488\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + '17-alpha-hydroxy-progesterone caproate', '17-alpha-hydroxy-progesterone caproate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\29451\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\29451\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Megestrol Acetate', 'Megestrol Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\7514\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\7514\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Norethindrone', 'Norethindrone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\8727\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\8727\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Progesterone', 'Progesterone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\259409\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS800\259409\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'progesterone, micronized', 'progesterone, micronized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS875\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS875\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PROSTAGLANDINS', 'PROSTAGLANDINS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS875\598\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS875\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS875\598\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alprostadil', 'Alprostadil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS875\20259\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS875\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS875\20259\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'carboprost tromethamine', 'carboprost tromethamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS875\104463\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS875\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS875\104463\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Epoprostenol Sodium', 'Epoprostenol Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'THYROID MODIFIERS', 'THYROID MODIFIERS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\HS851\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\HS851\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'THYROID SUPPLEMENTS', 'THYROID SUPPLEMENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\HS851\40144\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\HS851\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\HS851\40144\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levothyroxine Sodium', 'Levothyroxine Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\HS851\142448\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\HS851\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\HS851\142448\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'liothyronine sodium', 'liothyronine sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\HS851\10582\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\HS851\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\HS000\HS850\HS851\10582\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thyroxine', 'Thyroxine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'IMMUNOLOGICAL AGENTS', 'IMMUNOLOGICAL AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'IMMUNE STIMULANTS', 'IMMUNE STIMULANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\5879\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\5879\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Interferon Alfa-2a', 'Interferon Alfa-2a', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\5882\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\5882\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Interferon gamma-1b', 'Interferon gamma-1b', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\6628\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\6628\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mannitol', 'Mannitol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\354770\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\354770\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'natalizumab', 'natalizumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\120608\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\120608\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'peginterferon alfa-2a', 'peginterferon alfa-2a', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\253453\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM700\253453\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'peginterferon alfa-2b', 'peginterferon alfa-2b', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'IMMUNE SUPPRESSANTS', 'IMMUNE SUPPRESSANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\235991\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\235991\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Anhydrous Tacrolimus', 'Anhydrous Tacrolimus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\1256\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\1256\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Azathioprine', 'Azathioprine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\267476\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\267476\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Azathioprine Sodium Salt', 'Azathioprine Sodium Salt', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\3008\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\3008\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cyclosporine', 'Cyclosporine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\7145\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\7145\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mycophenolic Acid', 'Mycophenolic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\302379\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\302379\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'omalizumab', 'omalizumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\484288\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM600\484288\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tacrolimus monohydrate', 'tacrolimus monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'IMMUNOGLOBULINS', 'IMMUNOGLOBULINS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM500\39385\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM500\39385\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'varicella-zoster immune globulin', 'varicella-zoster immune globulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'IMMUNOLOGICAL AGENTS,OTHER', 'IMMUNOLOGICAL AGENTS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM900\72257\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM900\72257\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'interferon beta-1b', 'interferon beta-1b', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM105\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'TOXOIDS', 'TOXOIDS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM105\235600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM105\235600\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'DIPHTHERIA TOXOID ADSORBED', 'DIPHTHERIA TOXOID ADSORBED', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM105\91607\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM105\91607\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tetanus toxoid adsorbed', 'Tetanus toxoid adsorbed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'VACCINES', 'VACCINES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM100\26746\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM100\26746\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hepatitis B Vaccine', 'Hepatitis B Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM100\214177\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM100\214177\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lyme Disease Vaccine', 'Lyme Disease Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM100\10472\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\IM000\IM100\10472\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thimerosal', 'Thimerosal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MISCELLANEOUS AGENTS', 'MISCELLANEOUS AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\81990\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\81990\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cysteamine Bitartrate', 'Cysteamine Bitartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\235229\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\235229\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ETHAVERINE HYDROCHLORIDE', 'ETHAVERINE HYDROCHLORIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\5464\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\5464\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hyaluronidase', 'Hyaluronidase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\42836\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\42836\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxyquinoline Sulfate', 'Oxyquinoline Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\236074\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\XX000\236074\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'STRYCHNINE SULFATE', 'STRYCHNINE SULFATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MUSCULOSKELETAL MEDICATIONS', 'MUSCULOSKELETAL MEDICATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS400\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIGOUT AGENTS', 'ANTIGOUT AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS400\80566\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS400\80566\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Allopurinol Sodium', 'Allopurinol Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS400\2683\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS400\2683\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Colchicine', 'Colchicine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIRHEUMATICS', 'ANTIRHEUMATICS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS190\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS190\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIRHEUMATICS,OTHER', 'ANTIRHEUMATICS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS190\214555\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS190\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS190\214555\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Etanercept', 'Etanercept', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS190\62372\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS190\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS190\62372\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'hyaluronate', 'hyaluronate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS190\42892\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS190\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS190\42892\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Hyaluronate', 'Sodium Hyaluronate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS160\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS160\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'GOLD COMPOUNDS,ANTIRHEUMATIC', 'GOLD COMPOUNDS,ANTIRHEUMATIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS160\42547\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS160\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS160\42547\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aurothiomalate', 'Aurothiomalate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS160\4981\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS160\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS160\4981\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gold Sodium Thiomalate', 'Gold Sodium Thiomalate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'NONSALICYLATE NSAIs,ANTIRHEUMATIC', 'NONSALICYLATE NSAIs,ANTIRHEUMATIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\3355\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\3355\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diclofenac', 'Diclofenac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\3393\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\3393\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diflunisal', 'Diflunisal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\267171\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\267171\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fenoprofen Calcium', 'Fenoprofen Calcium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\91351\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\91351\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flurbiprofen sodium', 'Flurbiprofen sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\5640\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\5640\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ibuprofen', 'Ibuprofen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\5781\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\5781\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Indomethacin', 'Indomethacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\258329\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\258329\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Indomethacin sodium trihydrate', 'Indomethacin sodium trihydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\17128\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\17128\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lansoprazole', 'lansoprazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\29170\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\29170\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'magnesium trisilicate', 'magnesium trisilicate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\588003\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\588003\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Meclofenamate', 'Meclofenamate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\7258\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\7258\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Naproxen', 'Naproxen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\7816\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\7816\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxyphenbutazone', 'Oxyphenbutazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\8160\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\8160\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenylbutazone', 'Phenylbutazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\6677\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\6677\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Meclofenamate', 'Sodium Meclofenamate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\10255\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\10255\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Suprofen', 'Suprofen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\42935\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS102\42935\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tolmetin Sodium', 'Tolmetin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'SALICYLATES,ANTIRHEUMATIC', 'SALICYLATES,ANTIRHEUMATIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\215436\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\215436\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Buffered aspirin', 'Buffered aspirin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\9525\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\9525\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Salicylic Acid', 'Salicylic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\36108\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\36108\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Salsalate', 'Salsalate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\91100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS100\MS101\91100\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium thiosalicylate', 'Sodium thiosalicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MUSCULOSKELETAL AGENTS,OTHER', 'MUSCULOSKELETAL AGENTS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\1712\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\1712\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Botulinum Toxin Type A', 'Botulinum Toxin Type A', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\2525\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\2525\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chymopapain', 'Chymopapain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\214582\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\214582\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glatiramer', 'Glatiramer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\84375\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\84375\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'glatiramer acetate', 'glatiramer acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\42331\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS900\42331\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Misoprostol', 'Misoprostol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'NEUROMUSCULAR BLOCKING AGENTS', 'NEUROMUSCULAR BLOCKING AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\1219\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\1219\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Atracurium Besylate', 'Atracurium Besylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\136561\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\136561\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cisatracurium besylate', 'cisatracurium besylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\49275\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\49275\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'doxacurium chloride', 'doxacurium chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\4638\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\4638\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gallamine', 'Gallamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\4639\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\4639\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gallamine Triethiodide', 'Gallamine Triethiodide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\29950\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\29950\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'metocurine', 'metocurine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\203206\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\203206\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metocurine iodide', 'Metocurine iodide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\30077\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\30077\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'mivacurium', 'mivacurium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\52796\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\52796\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'mivacurium chloride', 'mivacurium chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\33742\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\33742\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pipecuronium', 'Pipecuronium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\66983\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\66983\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pipecuronium Bromide', 'Pipecuronium Bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\262100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\262100\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rapacuronium', 'rapacuronium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\228530\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\228530\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rapacuronium bromide', 'Rapacuronium bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\10154\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\10154\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Succinylcholine', 'Succinylcholine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\3565\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\3565\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Suxamethonium Chloride', 'Suxamethonium Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\82115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\82115\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tubocurarine Chloride', 'Tubocurarine Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\71535\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\71535\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vecuronium', 'Vecuronium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\11153\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS300\11153\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vecuronium Bromide', 'Vecuronium Bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'SKELETAL MUSCLE RELAXANTS', 'SKELETAL MUSCLE RELAXANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\1292\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\1292\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Baclofen', 'Baclofen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\2399\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\2399\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorphenesin', 'Chlorphenesin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\20880\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\20880\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chlorphenesin carbamate', 'chlorphenesin carbamate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\2410\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\2410\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorzoxazone', 'Chlorzoxazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\21949\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\21949\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cyclobenzaprine', 'cyclobenzaprine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\52101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\52101\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cyclobenzaprine hydrochloride', 'Cyclobenzaprine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\3106\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\3106\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dantrolene Sodium', 'Dantrolene Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\7715\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\7715\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Orphenadrine', 'Orphenadrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\7716\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\7716\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Orphenadrine Citrate', 'Orphenadrine Citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\236460\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\MS000\MS200\236460\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tizanidine hydrochloride', 'tizanidine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'NASAL AND THROAT AGENTS,TOPICAL', 'NASAL AND THROAT AGENTS,TOPICAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANESTHETICS,MUCOSAL', 'ANESTHETICS,MUCOSAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT300\2653\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT300\2653\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cocaine', 'Cocaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT300\81985\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT300\81985\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cocaine Hydrochloride', 'Cocaine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFLAMMATORIES,NASAL', 'ANTI-INFLAMMATORIES,NASAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\1347\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\1347\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Beclomethasone', 'Beclomethasone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\1348\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\1348\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Beclomethasone Dipropionate', 'Beclomethasone Dipropionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\3264\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\3264\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dexamethasone', 'Dexamethasone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\22690\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\22690\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dexamethasone acetate', 'dexamethasone acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\235486\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\235486\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dexamethasone phosphate', 'Dexamethasone phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\48933\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\48933\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dexamethasone sodium phosphate', 'Dexamethasone sodium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\25120\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\25120\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'flunisolide', 'flunisolide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\41126\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\41126\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fluticasone', 'fluticasone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\705022\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\705022\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluticasone Furoate', 'Fluticasone Furoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\50121\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\50121\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluticasone propionate', 'Fluticasone propionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\30145\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\30145\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'mometasone furoate', 'mometasone furoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\153374\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\153374\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mometasone furoate monohydrate', 'Mometasone furoate monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\10761\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\10761\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triamcinolone Acetonide', 'Triamcinolone Acetonide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\10762\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\10762\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'triamcinolone diacetate', 'triamcinolone diacetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\38546\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT200\38546\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'triamcinolone hexacetonide', 'triamcinolone hexacetonide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT400\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINES,NASAL', 'ANTIHISTAMINES,NASAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT400\18603\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT400\18603\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'azelastine', 'azelastine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT400\235824\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT400\235824\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Azelastine hydrochloride', 'Azelastine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DECONGESTANTS,NASAL', 'DECONGESTANTS,NASAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT100\54220\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT100\54220\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Xylometazoline hydrochloride', 'Xylometazoline hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'NASAL AND THROAT,TOPICAL,OTHER', 'NASAL AND THROAT,TOPICAL,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT900\2286\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT900\2286\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cetylpyridinium', 'Cetylpyridinium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT900\2287\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT900\2287\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cetylpyridinium Chloride', 'Cetylpyridinium Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT900\221128\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\NT000\NT900\221128\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'MUPIROCIN CALCIUM', 'MUPIROCIN CALCIUM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'OPHTHALMIC AGENTS', 'OPHTHALMIC AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP700\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANESTHETICS,TOPICAL OPHTHALMIC', 'ANESTHETICS,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP700\227778\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP700\227778\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Proparacaine hydrochloride', 'Proparacaine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP700\91189\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP700\91189\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tetracaine hydrochloride', 'Tetracaine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFECTIVE,TOPICAL OPHTHALMIC', 'ANTI-INFECTIVE,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFECTIVE,TOPICAL OPHTHALMIC,OTHER', 'ANTI-INFECTIVE,TOPICAL OPHTHALMIC,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\5011\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\5011\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gramicidin', 'Gramicidin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\29545\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\29545\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'mercuric oxide', 'mercuric oxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\7299\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\7299\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Neomycin', 'Neomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\7300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP219\7300\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Neomycin Sulfate', 'Neomycin Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIBACTERIALS,TOPICAL OPHTHALMIC', 'ANTIBACTERIALS,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\253155\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\253155\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Azithromycin Dihydrate', 'Azithromycin Dihydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\3539\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\3539\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Edetic Acid, Disodium Salt', 'Edetic Acid, Disodium Salt', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\142438\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\142438\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gentamicin Sulfate (USP)', 'Gentamicin Sulfate (USP)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\30021\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\30021\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'mild silver protein', 'mild silver protein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\9789\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\9789\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Silver Nitrate', 'Silver Nitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\82101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\82101\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfacetamide Sodium', 'Sulfacetamide Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\10207\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\10207\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfisoxazole', 'Sulfisoxazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\7276\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP210\7276\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tobramycin Sulfate', 'Tobramycin Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP230\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP230\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIVIRALS,TOPICAL OPHTHALMIC', 'ANTIVIRALS,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP230\314633\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP230\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP230\314633\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fomivirsen sodium', 'fomivirsen sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP230\82131\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP230\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP230\82131\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ganciclovir Sodium', 'Ganciclovir Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP230\5653\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP230\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP200\OP230\5653\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Idoxuridine', 'Idoxuridine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP350\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFECTIVE/ANTI-INFLAMMATORY COMBINATIONS,TOPICAL OPHTHALMIC', 'ANTI-INFECTIVE/ANTI-INFLAMMATORY COMBINATIONS,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP350\6873\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP350\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP350\6873\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methylcellulose', 'Methylcellulose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFLAMMATORIES,TOPICAL OPHTHALMIC', 'ANTI-INFLAMMATORIES,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\164\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\164\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acetate', 'Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\47364\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\47364\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bromfenac sodium', 'Bromfenac sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\484788\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\484788\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cyclosporine microemulsion', 'cyclosporine microemulsion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\236077\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\236077\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CYCLOSPORINE, MODIFIED', 'CYCLOSPORINE, MODIFIED', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\81997\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\81997\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diclofenac Potassium', 'Diclofenac Potassium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\203214\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\203214\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diclofenac Sodium', 'Diclofenac Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\4491\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\4491\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluorometholone', 'Fluorometholone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\221101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\221101\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'FLUOROMETHOLONE ACETATE', 'FLUOROMETHOLONE ACETATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\5492\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\5492\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydrocortisone', 'Hydrocortisone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\669988\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\669988\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'hydrocortisone aceate', 'hydrocortisone aceate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\27197\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\27197\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'hydrocortisone acetate', 'hydrocortisone acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\103468\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\103468\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydrocortisone butyrate', 'Hydrocortisone butyrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\163524\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\163524\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'hydrocortisone cypionate', 'hydrocortisone cypionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\235482\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\235482\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydrocortisone sodium phosphate', 'Hydrocortisone sodium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\235483\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\235483\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydrocortisone sodium succinate', 'Hydrocortisone sodium succinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\27199\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\27199\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'hydrocortisone valerate', 'hydrocortisone valerate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\35827\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\35827\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ketorolac', 'Ketorolac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\28200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\28200\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ketorolac Tromethamine', 'Ketorolac Tromethamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\266663\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\266663\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nedocromil Sodium', 'Nedocromil Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\19551\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\19551\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pemirolast', 'pemirolast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\259318\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\259318\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pemirolast potassium', 'Pemirolast potassium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\8638\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\8638\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'prednisolone', 'prednisolone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\34372\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\34372\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'prednisolone acetate', 'prednisolone acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\34374\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\34374\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'prednisolone phosphate', 'prednisolone phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\55062\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP300\55062\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Prednisolone sodium phosphate', 'Prednisolone sodium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIGLAUCOMA MEDICATIONS', 'ANTIGLAUCOMA MEDICATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP103\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ADRENERGICS,TOPICAL OPHTHALMIC', 'ADRENERGICS,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP103\203156\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP103\203156\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dipivefrin hydrochloride', 'Dipivefrin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP105\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIGLAUCOMA COMBINATIONS,TOPICAL OPHTHALMIC', 'ANTIGLAUCOMA COMBINATIONS,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP105\39171\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP105\39171\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Brimonidine tartrate', 'Brimonidine tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP105\236065\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP105\236065\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dorzolamide hydrochloride', 'Dorzolamide hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BETA-BLOCKERS,TOPICAL OPHTHALMIC', 'BETA-BLOCKERS,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\142144\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\142144\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Betaxolol Hydrochloride', 'Betaxolol Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\142132\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\142132\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carteolol Hydrochloride', 'Carteolol Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\227212\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\227212\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levobunolol Hydrochloride', 'Levobunolol Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\314731\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\314731\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metipranolol hydrochloride', 'Metipranolol hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\10600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP101\10600\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Timolol', 'Timolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MIOTICS,TOPICAL OPHTHALMIC', 'MIOTICS,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\22482\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\22482\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'demecarium bromide', 'demecarium bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\3740\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\3740\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Echothiophate Iodide', 'Echothiophate Iodide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\6027\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\6027\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isoflurophate', 'Isoflurophate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\8299\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\8299\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Physostigmine', 'Physostigmine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\33656\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\33656\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'physostigmine salicylate', 'physostigmine salicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\8328\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\8328\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pilocarpine', 'Pilocarpine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\235426\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\235426\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pilocarpine Hydrochloride', 'Pilocarpine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\103244\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP102\103244\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pilocarpine Nitrate', 'Pilocarpine Nitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP160\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP160\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'OSMOTIC AGENTS,SYSTEMIC OPHTHALMIC', 'OSMOTIC AGENTS,SYSTEMIC OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP160\28004\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP160\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP100\OP160\28004\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isosorbide Mononitrate', 'Isosorbide Mononitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DECONGESTANTS,TOPICAL OPHTHALMIC', 'DECONGESTANTS,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\7247\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\7247\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Naphazoline', 'Naphazoline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\82054\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\82054\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Naphazoline Hydrochloride', 'Naphazoline Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\106101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\106101\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxymetazoline hydrochloride', 'Oxymetazoline hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\57983\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP800\57983\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tetrahydrozoline hydrochloride', 'Tetrahydrozoline hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'EYE WASHES/LUBRICANTS', 'EYE WASHES/LUBRICANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\1378\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\1378\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzalkonium', 'Benzalkonium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\1379\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\1379\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzalkonium Chloride', 'Benzalkonium Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\2062\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\2062\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carboxymethylcellulose', 'Carboxymethylcellulose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\3274\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\3274\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextran 70', 'Dextran 70', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\27334\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\27334\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'hypromellose', 'hypromellose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\6972\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\6972\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mineral Oil', 'Mineral Oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\82074\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\82074\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Petrolatum, White', 'Petrolatum, White', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\8514\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\8514\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Polyethylene Glycol 400', 'Polyethylene Glycol 400', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\34693\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\34693\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propylene glycol', 'Propylene glycol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\36709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\36709\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium phosphate', 'sodium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\235496\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP500\235496\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Phosphate, Monobasic', 'Sodium Phosphate, Monobasic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP600\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MYDRIATICS/CYCLOPLEGICS,TOPICAL OPHTHALMIC', 'MYDRIATICS/CYCLOPLEGICS,TOPICAL OPHTHALMIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP600\3001\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP600\3001\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cyclopentolate', 'Cyclopentolate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP600\106029\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP600\106029\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cyclopentolate hydrochloride', 'Cyclopentolate hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP600\82066\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP600\82066\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydroxyamphetamine Hydrobromide', 'Hydroxyamphetamine Hydrobromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'OPHTHALMICS,OTHER', 'OPHTHALMICS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\235398\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\235398\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benoxinate hydrochloride', 'Benoxinate hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\235757\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\235757\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dapiprazole hydrochloride', 'Dapiprazole hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\221094\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\221094\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'emedastine difumarate', 'emedastine difumarate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\39684\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\39684\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'epinastine', 'epinastine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\236961\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\236961\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'epinastine hydrochloride', 'epinastine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\11404\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\11404\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ketotifen Fumarate', 'Ketotifen Fumarate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\28859\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\28859\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lodoxamide tromethamine', 'lodoxamide tromethamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\236599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\236599\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Olopatadine hydrochloride', 'Olopatadine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\9471\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\9471\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rose Bengal', 'Rose Bengal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\57789\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OP000\OP900\57789\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Fluorescein', 'Sodium Fluorescein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'OTIC AGENTS', 'OTIC AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFECTIVE/ANTI-INFLAMMATORY COMBINATIONS,TOPICAL OTIC', 'ANTI-INFECTIVE/ANTI-INFLAMMATORY COMBINATIONS,TOPICAL OTIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\2551\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\2551\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ciprofloxacin', 'Ciprofloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\3254\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\3254\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Desonide', 'Desonide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\237058\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\237058\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'THONZONIUM', 'THONZONIUM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\221171\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\OT000\OT250\221171\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'THONZONIUM BROMIDE', 'THONZONIUM BROMIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PHARMACEUTICAL AIDS/REAGENTS', 'PHARMACEUTICAL AIDS/REAGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\6142\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\6142\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ketoprofen', 'Ketoprofen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\107129\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\107129\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sterile water', 'sterile water', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\618564\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\618564\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trichloroacetate', 'Trichloroacetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\11295\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\PH000\11295\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Water', 'Water', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN700\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PROTECTIVE AGENTS', 'PROTECTIVE AGENTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN700\4126\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\AN700\4126\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amifostine', 'Amifostine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'RECTAL,LOCAL', 'RECTAL,LOCAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTI-INFLAMMATORIES,RECTAL', 'ANTI-INFLAMMATORIES,RECTAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS100\6902\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS100\6902\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methylprednisolone', 'Methylprednisolone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'HEMORRHOIDAL PREPARATIONS,RECTAL', 'HEMORRHOIDAL PREPARATIONS,RECTAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS202\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'HEMORRHOIDAL PREPARATIONS WITH STEROID', 'HEMORRHOIDAL PREPARATIONS WITH STEROID', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS202\235402\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS202\235402\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dibucaine hydrochloride', 'Dibucaine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS202\142440\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS202\142440\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lidocaine Hydrochloride', 'Lidocaine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS202\57555\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS202\57555\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pramoxine hydrochloride', 'Pramoxine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS201\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'HEMORRHOIDAL PREPARATIONS WITHOUT STEROID', 'HEMORRHOIDAL PREPARATIONS WITHOUT STEROID', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS201\106212\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS201\106212\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calamine', 'Calamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS201\89821\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RS000\RS200\RS201\89821\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Witch Hazel', 'Witch Hazel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'RESPIRATORY TRACT MEDICATIONS', 'RESPIRATORY TRACT MEDICATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIASTHMA/BRONCHODILATORS', 'ANTIASTHMA/BRONCHODILATORS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIASTHMA,OTHER', 'ANTIASTHMA,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\719\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\719\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amobarbital', 'Amobarbital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\20976\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\20976\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cholinophyllin', 'cholinophyllin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\42612\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\42612\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cromolyn', 'Cromolyn', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\3538\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\3538\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cromolyn Sodium', 'Cromolyn Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\3714\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\3714\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dyphylline', 'Dyphylline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\3992\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\3992\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Epinephrine', 'Epinephrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\236216\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\236216\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'formoterol fumarate', 'formoterol fumarate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\6054\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\6054\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isoproterenol', 'Isoproterenol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\82030\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\82030\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isoproterenol Hydrochloride', 'Isoproterenol Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\82031\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\82031\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isoproterenol Sulfate', 'Isoproterenol Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\115713\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\115713\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'montelukast sodium', 'montelukast sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\8597\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\8597\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Potassium Iodide', 'Potassium Iodide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\36117\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\36117\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'salmeterol', 'salmeterol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\72616\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\72616\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Salmeterol xinafoate', 'Salmeterol xinafoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\9624\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\9624\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Secobarbital', 'Secobarbital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\91110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\91110\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Secobarbital sodium', 'Secobarbital sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\36676\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE109\36676\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Bicarbonate', 'Sodium Bicarbonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE105\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BRONCHODILATORS,ANTICHOLINERGIC', 'BRONCHODILATORS,ANTICHOLINERGIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE105\69120\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE105\69120\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tiotropium', 'tiotropium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE105\393575\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE105\393575\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tiotropium bromide', 'tiotropium bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BRONCHODILATORS,SYMPATHOMIMETIC,INHALATION', 'BRONCHODILATORS,SYMPATHOMIMETIC,INHALATION', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\435\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\435\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Albuterol', 'Albuterol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\668284\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\668284\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Arformoterol Tartrate', 'Arformoterol Tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\19499\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\19499\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bitolterol', 'bitolterol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\47187\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\47187\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bitolterol methanesulfonate', 'Bitolterol methanesulfonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\314610\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\314610\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'EPINEPHRINE,RACEMIC HYDROCHLORIDE', 'EPINEPHRINE,RACEMIC HYDROCHLORIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\6023\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\6023\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isoetharine', 'Isoetharine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\102397\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\102397\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isoetharine hydrochloride', 'Isoetharine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\6024\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\6024\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isoetharine Mesylate', 'Isoetharine Mesylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\237159\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\237159\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levalbuterol', 'Levalbuterol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\237160\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\237160\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levalbuterol Hydrochloride', 'Levalbuterol Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\7688\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\7688\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Orciprenaline', 'Orciprenaline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\221142\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\221142\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pirbuterol acetate', 'Pirbuterol acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\10368\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE102\10368\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Terbutaline', 'Terbutaline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BRONCHODILATORS,SYMPATHOMIMETIC,ORAL', 'BRONCHODILATORS,SYMPATHOMIMETIC,ORAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\142153\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\142153\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Albuterol Sulfate', 'Albuterol Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\3966\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\3966\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ephedrine', 'Ephedrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\6804\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\6804\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metaproterenol Sulfate', 'Metaproterenol Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\10369\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE103\10369\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Terbutaline Sulfate', 'Terbutaline Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'BRONCHODILATORS,XANTHINE-DERIVATIVE', 'BRONCHODILATORS,XANTHINE-DERIVATIVE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\689\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\689\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aminophylline', 'Aminophylline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\9863\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\9863\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Chloride', 'Sodium Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\10438\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\10438\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Theophylline', 'Theophylline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\91178\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\91178\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Theophylline anhydrous', 'Theophylline anhydrous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\155075\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE100\RE104\155075\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Theophylline Sodium Glycinate', 'Theophylline Sodium Glycinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTITUSSIVES/EXPECTORANTS', 'ANTITUSSIVES/EXPECTORANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'NON-OPIOID-CONTAINING ANTITUSSIVES/EXPECTORANTS', 'NON-OPIOID-CONTAINING ANTITUSSIVES/EXPECTORANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\712\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\712\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ammonium Chloride', 'Ammonium Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\636827\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\636827\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'guaiacolsulfonate', 'guaiacolsulfonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\5032\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\5032\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guaifenesin', 'Guaifenesin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\27723\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\27723\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'iodinated glycerol', 'iodinated glycerol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\5975\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\5975\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ipecac', 'Ipecac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\317251\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\317251\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'NICOTINAMIDE HYDRIODIDE', 'NICOTINAMIDE HYDRIODIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\91275\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\91275\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'potassium guaiacolsulfonate', 'potassium guaiacolsulfonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\9509\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\9509\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Saccharin', 'Saccharin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\281678\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\281678\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Saccharin Sodium', 'Saccharin Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\9945\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\9945\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sorbitol', 'Sorbitol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\89916\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE302\89916\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Terpin hydrate', 'Terpin hydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'OPIOID-CONTAINING ANTITUSSIVES/EXPECTORANTS', 'OPIOID-CONTAINING ANTITUSSIVES/EXPECTORANTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\91065\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\91065\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bromodiphenhydramine hydrochloride', 'Bromodiphenhydramine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\235273\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\235273\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium iodide', 'Calcium iodide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\2670\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\2670\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Codeine', 'Codeine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\2672\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\2672\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Codeine Phosphate', 'Codeine Phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\91104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\91104\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Codeine sulfate', 'Codeine sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\23088\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\23088\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dihydrocodeine', 'dihydrocodeine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\104966\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\104966\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dihydrocodeine tartrate', 'Dihydrocodeine tartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\5489\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\5489\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydrocodone', 'Hydrocodone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\142439\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\142439\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydrocodone Bitartrate', 'Hydrocodone Bitartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\221107\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\221107\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'HYDROCODONE POLISTIREX', 'HYDROCODONE POLISTIREX', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\203177\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\203177\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydromorphone Hydrochloride', 'Hydromorphone Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\29903\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\29903\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methylparaben', 'methylparaben', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\7052\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\7052\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Morphine', 'Morphine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\7895\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\7895\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Papaverine', 'Papaverine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\203132\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\203132\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Papaverine Hydrochloride', 'Papaverine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\33283\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\33283\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'phenindamine', 'phenindamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\8132\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE300\RE301\8132\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pheniramine', 'Pheniramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'COLD REMEDIES,COMBINATIONS', 'COLD REMEDIES,COMBINATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINE/DECONGESTANT', 'ANTIHISTAMINE/DECONGESTANT', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\1359\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\1359\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Belladonna Alkaloids', 'Belladonna Alkaloids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\2578\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\2578\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clemastine', 'Clemastine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\236474\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\236474\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fexofenadine hydrochloride', 'Fexofenadine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\27291\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\27291\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'hydroxypropylcellulose', 'hydroxypropylcellulose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\8560\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\8560\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Polysorbate 80', 'Polysorbate 80', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\9871\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\9871\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Dodecyl Sulfate', 'Sodium Dodecyl Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\10323\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\10323\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Talc', 'Talc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\42330\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE501\42330\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Terfenadine', 'Terfenadine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINE/DECONGESTANT/ANTITUSSIVE', 'ANTIHISTAMINE/DECONGESTANT/ANTITUSSIVE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\1767\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\1767\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Brompheniramine', 'Brompheniramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\142427\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\142427\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Brompheniramine Maleate', 'Brompheniramine Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\283547\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\283547\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CARBETAPENTANE CITRATE', 'CARBETAPENTANE CITRATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221070\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221070\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CARBETAPENTANE TANNATE', 'CARBETAPENTANE TANNATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\91066\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\91066\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carbinoxamine maleate', 'Carbinoxamine maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\405970\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\405970\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carbinoxamine Tannate', 'Carbinoxamine Tannate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\2400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\2400\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorpheniramine', 'Chlorpheniramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\142429\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\142429\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorpheniramine Maleate', 'Chlorpheniramine Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221074\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221074\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CHLORPHENIRAMINE POLISTIREX', 'CHLORPHENIRAMINE POLISTIREX', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221075\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221075\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorpheniramine Tannate', 'Chlorpheniramine Tannate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\22697\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\22697\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dexchlorpheniramine', 'dexchlorpheniramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\54828\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\54828\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dexchlorpheniramine maleate', 'Dexchlorpheniramine maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\91165\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\91165\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ephedrine hydrochloride', 'Ephedrine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\91166\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\91166\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ephedrine sulfate', 'Ephedrine sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221096\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221096\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'EPHEDRINE TANNATE', 'EPHEDRINE TANNATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\448\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\448\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethanol', 'Ethanol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\82091\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\82091\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mepyramine Maleate', 'Mepyramine Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\8163\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\8163\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenylephrine', 'Phenylephrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\91167\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\91167\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenylephrine bitartrate', 'Phenylephrine bitartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\8164\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\8164\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenylephrine Hydrochloride', 'Phenylephrine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221139\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221139\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenylephrine Tannate', 'Phenylephrine Tannate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\8896\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\8896\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pseudoephedrine', 'Pseudoephedrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221152\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE502\221152\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'PYRILAMINE TANNATE', 'PYRILAMINE TANNATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE506\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE506\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ANTIHISTAMINE/DECONGESTANT/ANTITUSSIVE/ANALGESIC', 'ANTIHISTAMINE/DECONGESTANT/ANTITUSSIVE/ANALGESIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE506\3642\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE506\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE506\3642\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxylamine', 'Doxylamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DECONGESTANT/ANTITUSSIVE/ANALGESIC', 'DECONGESTANT/ANTITUSSIVE/ANALGESIC', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\161\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\161\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acetaminophen', 'Acetaminophen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\3289\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\3289\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextromethorphan', 'Dextromethorphan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\102490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\102490\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextromethorphan Hydrobromide', 'Dextromethorphan Hydrobromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\259262\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\259262\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'DEXTROMETHORPHAN TANNATE', 'DEXTROMETHORPHAN TANNATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\8175\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\8175\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenylpropanolamine', 'Phenylpropanolamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\3266\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\3266\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenylpropanolamine Hydrochloride', 'Phenylpropanolamine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\91168\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\91168\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pseudoephedrine Hydrochloride', 'Pseudoephedrine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\91169\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\91169\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pseudoephedrine sulfate', 'Pseudoephedrine sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\221151\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE515\221151\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'PSEUDOEPHEDRINE TANNATE', 'PSEUDOEPHEDRINE TANNATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE513\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE513\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'DECONGESTANT/ANTITUSSIVE/EXPECTORANT', 'DECONGESTANT/ANTITUSSIVE/EXPECTORANT', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE513\8516\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE513\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE500\RE513\8516\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Polyethylene Glycols', 'Polyethylene Glycols', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'COLD REMEDIES,OTHER', 'COLD REMEDIES,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\1191\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\1191\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aspirin', 'Aspirin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\1886\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\1886\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Caffeine', 'Caffeine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\20033\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\20033\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'caffeine citrate', 'caffeine citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\47622\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\47622\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'calcium lactate', 'calcium lactate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\20191\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\20191\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'caramiphen', 'caramiphen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\48936\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\48936\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dexbrompheniramine maleate', 'Dexbrompheniramine maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\686390\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\686390\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dexbrompheniramine Tannate', 'Dexbrompheniramine Tannate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\142442\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\142442\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Naproxen sodium', 'Naproxen sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\266959\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\266959\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pheniramine Maleate', 'Pheniramine Maleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\33408\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\33408\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'phenyltoloxamine', 'phenyltoloxamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\221141\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\221141\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenyltoloxamine citrate', 'Phenyltoloxamine citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\142445\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\142445\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Promethazine Hydrochloride', 'Promethazine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\9009\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\9009\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pyrilamine', 'Pyrilamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\9518\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\9518\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'salicylamide', 'salicylamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\10849\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\10849\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triprolidine', 'Triprolidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\71534\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE599\71534\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triprolidine Hydrochloride', 'Triprolidine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE900\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'RESPIRATORY AGENTS,OTHER', 'RESPIRATORY AGENTS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE900\82011\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE900\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\RE000\RE900\82011\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxapram Hydrochloride', 'Doxapram Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'THERAPEUTIC NUTRIENTS/MINERALS/ELECTROLYTES', 'THERAPEUTIC NUTRIENTS/MINERALS/ELECTROLYTES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'AMINO ACIDS/PROTEINS', 'AMINO ACIDS/PROTEINS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN500\TN503\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN500\TN503\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'AMINO ACIDS/PROTEINS,ORAL', 'AMINO ACIDS/PROTEINS,ORAL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN500\TN503\6537\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN500\TN503\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN500\TN503\6537\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lysine Acetate', 'Lysine Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN500\TN503\6538\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN500\TN503\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN500\TN503\6538\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lysine Hydrochloride', 'Lysine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ELECTROLYTES/MINERALS', 'ELECTROLYTES/MINERALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN420\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN420\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CALCIUM', 'CALCIUM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN420\214342\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN420\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN420\214342\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'calcium acetate', 'calcium acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CITRATES', 'CITRATES', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\21183\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\21183\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Citric Acid', 'Citric Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\221079\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\221079\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CITRIC ACID MONOHYDRATE', 'CITRIC ACID MONOHYDRATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\221149\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\221149\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'potassium citrate monohydrate', 'potassium citrate monohydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\56466\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\56466\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium citrate', 'sodium citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\221163\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN478\221163\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium citrate dihydrate', 'sodium citrate dihydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN490\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ELECTROLYTES/MINERALS,COMBINATIONS', 'ELECTROLYTES/MINERALS,COMBINATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN490\234416\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN490\234416\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lanthanum carbonate', 'lanthanum carbonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN490\89903\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN490\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN490\89903\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Potassium gluconate', 'Potassium gluconate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN499\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN499\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ELECTROLYTES/MINERALS,OTHER', 'ELECTROLYTES/MINERALS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN499\215247\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN499\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN499\215247\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ammonium lactate', 'ammonium lactate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN499\56489\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN499\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN499\56489\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Lactate', 'Sodium Lactate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN460\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN460\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MAGNESIUM', 'MAGNESIUM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN460\221118\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN460\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN460\221118\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Magnesium chloride hexahydrate', 'Magnesium chloride hexahydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN475\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN475\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PHOSPHORUS', 'PHOSPHORUS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN475\55019\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN475\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN475\55019\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Monobasic potassium phosphate', 'Monobasic potassium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN475\8263\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN475\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN475\8263\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phosphorus', 'Phosphorus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN475\8588\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN475\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN400\TN475\8588\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Potassium', 'Potassium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ENTERAL NUTRITION', 'ENTERAL NUTRITION', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\5340\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\5340\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Histidine', 'Histidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\6033\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\6033\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isoleucine', 'Isoleucine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\8214\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\8214\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lecithin', 'Lecithin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\6308\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\6308\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Leucine', 'Leucine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\6579\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\6579\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Magnesium Chloride', 'Magnesium Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\29164\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\29164\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'magnesium phosphate', 'magnesium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\7024\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\7024\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Molybdenum', 'Molybdenum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\8156\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\8156\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenylalanine', 'Phenylalanine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\259279\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\259279\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'SOY LECITHIN', 'SOY LECITHIN', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\10524\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\10524\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Threonine', 'Threonine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\47628\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\47628\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tricalcium phosphate', 'tricalcium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\10898\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\10898\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tryptophan', 'Tryptophan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\11115\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\11115\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Valine', 'Valine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\39954\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\TN000\TN200\39954\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Zinc Sulfate', 'Zinc Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'Unclassified', 'Unclassified', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\12166\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\12166\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + '1-octacosanol', '1-octacosanol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\14448\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\14448\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + '3-Iodobenzylguanidine', '3-Iodobenzylguanidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\618974\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\618974\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + '4-Aminobenzoate', '4-Aminobenzoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\14997\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\14997\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + '4-cresyl acetate', '4-cresyl acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\94\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\94\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + '5-Hydroxytryptophan', '5-Hydroxytryptophan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\99\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\99\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + '6-Aminocaproic Acid', '6-Aminocaproic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\103\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + '6-Mercaptopurine', '6-Mercaptopurine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\301739\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\301739\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'abarelix', 'abarelix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\614391\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\614391\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'abatacept', 'abatacept', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83929\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83929\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'abciximab', 'abciximab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\16681\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\16681\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acarbose', 'Acarbose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\149\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\149\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acebutolol', 'Acebutolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\16688\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\16688\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'acecarbromal', 'acecarbromal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798302\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acellular Pertussis Vaccine', 'Acellular Pertussis Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\167\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\167\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acetazolamide', 'Acetazolamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\173\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\173\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acetohexamide', 'Acetohexamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\16728\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\16728\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'acetohydroxamic acid', 'acetohydroxamic acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\193\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\193\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acetylcarnitine', 'Acetylcarnitine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\194\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\194\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acetylcholine', 'Acetylcholine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\197\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\197\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acetylcysteine', 'Acetylcysteine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\16818\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\16818\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Acitretin', 'Acitretin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19959\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19959\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'acrivastine', 'acrivastine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\327361\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\327361\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'adalimumab', 'adalimumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\60223\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\60223\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'adapalene', 'adapalene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\16521\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\16521\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'adefovir', 'adefovir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\296\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\296\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Adenosine', 'Adenosine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\338817\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\338817\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'agalsidase beta', 'agalsidase beta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\141440\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\141440\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alatrofloxacin', 'alatrofloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\430\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\430\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Albendazole', 'Albendazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\828529\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\828529\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Albumin Human, USP', 'Albumin Human, USP', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314302\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ALBUMIN,MICROSPHERE HUMAN SERUM', 'ALBUMIN,MICROSPHERE HUMAN SERUM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\108088\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\108088\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alclometasone', 'Alclometasone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\70223\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\70223\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aldesleukin', 'Aldesleukin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23161\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23161\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'aldioxa', 'aldioxa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\299635\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\299635\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alefacept', 'alefacept', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\117055\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\117055\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alemtuzumab', 'alemtuzumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285243\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285243\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alfalfa preparation', 'Alfalfa preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\480\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\480\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alfentanil', 'Alfentanil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\46049\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\46049\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alglucerase', 'alglucerase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\629565\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\629565\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alglucosidase alfa', 'alglucosidase alfa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325646\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325646\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'aliskiren', 'aliskiren', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81864\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81864\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alitretinoin', 'alitretinoin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\508\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\508\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Allantoin', 'Allantoin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\124151\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\124151\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Allergenic extract', 'Allergenic extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314338\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314338\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ALLERGENIC EXTRACT, CANDIDA ALBICANS', 'ALLERGENIC EXTRACT, CANDIDA ALBICANS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314339\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314339\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ALLERGENIC EXTRACT, CAT EPITHELIUM', 'ALLERGENIC EXTRACT, CAT EPITHELIUM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314357\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314357\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ALLERGENIC EXTRACT, DOG EPITHELIA', 'ALLERGENIC EXTRACT, DOG EPITHELIA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\308013\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\308013\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ALLERGENIC EXTRACT, MIXED ANTIGENS', 'ALLERGENIC EXTRACT, MIXED ANTIGENS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\519\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\519\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Allopurinol', 'Allopurinol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\279645\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\279645\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'almotriptan', 'almotriptan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91263\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91263\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aloe Extract', 'Aloe Extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\476786\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\476786\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aloe Polysaccharide', 'Aloe Polysaccharide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\318340\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\318340\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aloe vera preparation', 'Aloe vera preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\535\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\535\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alpha 1-Antitrypsin', 'alpha 1-Antitrypsin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259351\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259351\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ALPHA-D-GALACTOSIDASE ENZYME', 'ALPHA-D-GALACTOSIDASE ENZYME', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8410\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8410\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Alteplase', 'Alteplase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5296\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5296\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Altretamine', 'Altretamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89858\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89858\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aluminum carbonate', 'Aluminum carbonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\46242\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\46242\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'aluminum magnesium hydroxide', 'aluminum magnesium hydroxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\17618\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\17618\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'aluminum phosphate', 'aluminum phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\480639\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\480639\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alvimopan', 'alvimopan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\620\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\620\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amantadine', 'Amantadine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\623\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\623\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ambenonium', 'Ambenonium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\358274\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\358274\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ambrisentan', 'ambrisentan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\17652\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\17652\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'amcinonide', 'amcinonide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\627\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\627\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amdinocillin Pivoxil', 'Amdinocillin Pivoxil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\641\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\641\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amikacin', 'Amikacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\644\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\644\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amiloride', 'Amiloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\143980\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\143980\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aminobenzoate', 'Aminobenzoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\113373\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\113373\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aminocaproate', 'Aminocaproate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\677\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\677\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aminoglutethimide', 'Aminoglutethimide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\155002\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\155002\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aminolevulinate', 'Aminolevulinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\113374\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\113374\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'AMINOSALICYLATE', 'AMINOSALICYLATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7833\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7833\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'aminosalicylic acid', 'aminosalicylic acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\704\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\704\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amitriptyline', 'Amitriptyline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\46307\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\46307\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'amlexanox', 'amlexanox', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\317201\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\317201\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ammonia spirit, aromatic', 'ammonia spirit, aromatic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\709\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\709\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ammonium', 'Ammonium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\17789\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\17789\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ammonium molybdate', 'ammonium molybdate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\722\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\722\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amoxapine', 'Amoxapine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\725\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\725\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amphetamine', 'Amphetamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\101299\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\101299\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amphotericin B Colloidal Dispersion', 'Amphotericin B Colloidal Dispersion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\343023\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\343023\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amphotericin B lipid complex', 'Amphotericin B lipid complex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236594\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236594\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amphotericin B liposome', 'Amphotericin B liposome', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228656\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228656\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amprenavir', 'Amprenavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\739\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\739\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Amsacrine', 'Amsacrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\596724\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\596724\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'anagrelide', 'anagrelide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72435\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72435\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'anakinra', 'anakinra', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\84857\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\84857\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'anastrozole', 'anastrozole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\328141\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\328141\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Angelica sinensis preparation', 'Angelica sinensis preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214236\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214236\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'anhydrous calcium iodide', 'anhydrous calcium iodide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\341018\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\341018\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'anidulafungin', 'anidulafungin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\17941\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\17941\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'anisindione', 'anisindione', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\40028\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\40028\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Anistreplase', 'Anistreplase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\404774\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\404774\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Anthrax Vaccine Adsorbed', 'Anthrax Vaccine Adsorbed', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1001\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1001\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Antipyrine', 'Antipyrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1009\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1009\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Antithrombin III', 'Antithrombin III', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221062\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221062\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Antithrombin III, Human', 'Antithrombin III, Human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\14845\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\14845\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'apraclonidine', 'apraclonidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\358255\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\358255\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'aprepitant', 'aprepitant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1056\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1056\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aprotinin', 'Aprotinin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\304962\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\304962\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'arformoterol', 'arformoterol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\15202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\15202\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'argatroban', 'argatroban', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1091\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1091\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Arginine', 'Arginine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89013\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89013\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'aripiprazole', 'aripiprazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\641465\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\641465\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'armodafinil', 'armodafinil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\144377\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\144377\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Arnica extract', 'Arnica extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1111\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Arsenic', 'Arsenic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18330\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18330\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'arsenic trioxide', 'arsenic trioxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18343\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18343\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'artemether', 'artemether', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\592464\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\592464\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Articaine', 'Articaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1156\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1156\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ASPARAGINASE', 'ASPARAGINASE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42543\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42543\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aspartate', 'Aspartate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1169\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1169\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aspartic Acid', 'Aspartic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\343047\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\343047\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Atazanavir', 'Atazanavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1202\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Atenolol', 'Atenolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38400\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'atomoxetine', 'atomoxetine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59639\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59639\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Atosiban', 'Atosiban', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1218\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1218\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Atracurium', 'Atracurium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1227\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1227\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Auranofin', 'Auranofin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4980\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4980\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aurothioglucose', 'Aurothioglucose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18600\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18600\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'azatadine', 'azatadine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\618278\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\618278\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Azelate', 'Azelate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1272\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1272\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Aztreonam', 'Aztreonam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18747\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18747\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'balsalazide', 'balsalazide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285149\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285149\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Banana Extract', 'Banana Extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259404\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259404\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Barberry Extract', 'Barberry Extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\196102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\196102\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'basiliximab', 'basiliximab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\76469\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\76469\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'BCG, Live, Connaught Strain', 'BCG, Live, Connaught Strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314513\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314513\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'BCG, Live, Montreal Strain', 'BCG, Live, Montreal Strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221050\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221050\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'BCG, Live, Tice Strain', 'BCG, Live, Tice Strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\115238\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\115238\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Becaplermin', 'Becaplermin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1361\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1361\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benactyzine', 'Benactyzine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18867\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18867\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'benazepril', 'benazepril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\134547\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\134547\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bendamustine', 'bendamustine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\137007\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\137007\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'benflumetol', 'benflumetol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18889\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18889\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benoxinate', 'Benoxinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18896\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18896\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bentiromide', 'bentiromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\134568\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\134568\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bentoquatam', 'bentoquatam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\70589\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\70589\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzoate', 'Benzoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18989\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18989\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzoic Acid', 'Benzoic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1406\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1406\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzoin', 'Benzoin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18993\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18993\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'benzonatate', 'benzonatate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1422\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1422\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzphetamine', 'Benzphetamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1424\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1424\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benztropine', 'Benztropine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1425\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1425\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzydamine', 'Benzydamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81963\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81963\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzydamine Hydrochloride', 'Benzydamine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19044\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19044\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'benzyl benzoate', 'benzyl benzoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19079\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19079\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Benzylpenicilloyl polylysine', 'Benzylpenicilloyl polylysine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\46967\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\46967\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'beractant', 'beractant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1514\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1514\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Betamethasone', 'Betamethasone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1520\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1520\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Betaxolol', 'Betaxolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\233272\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\233272\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bexarotene', 'bexarotene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83008\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83008\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bicalutamide', 'bicalutamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285148\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285148\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bifidobacterium bifidum', 'Bifidobacterium bifidum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\100213\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\100213\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bifidobacterium Infantis', 'Bifidobacterium Infantis', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\125929\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\125929\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bilberry extract', 'Bilberry extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1540\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1540\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bile Salts', 'Bile Salts', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\283810\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\283810\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bimatoprost', 'bimatoprost', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1562\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1562\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bioflavonoids', 'Bioflavonoids', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314522\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314522\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'BIOFLAVONOIDS,CITRUS', 'BIOFLAVONOIDS,CITRUS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1589\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1589\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Biperiden', 'Biperiden', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47181\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47181\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bismuth subcitrate', 'bismuth subcitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19477\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19477\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bismuth subnitrate', 'bismuth subnitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237148\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237148\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'BISMUTH-FORMIC-IODIDE', 'BISMUTH-FORMIC-IODIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19484\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19484\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bisoprolol', 'Bisoprolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\60819\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\60819\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bivalirudin', 'bivalirudin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236665\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236665\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Black Cohosh Extract', 'Black Cohosh Extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1622\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1622\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bleomycin', 'Bleomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\287513\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\287513\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Blue cohosh extract', 'Blue cohosh extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1705\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1705\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Boron', 'Boron', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\358258\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\358258\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bortezomib', 'bortezomib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\75207\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\75207\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bosentan', 'bosentan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1713\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1713\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'botulinum toxin type B', 'botulinum toxin type B', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236660\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236660\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'BOTULISM ANTITOXIN E', 'BOTULISM ANTITOXIN E', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\544488\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\544488\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Botulism Immune Globulin IV Human', 'Botulism Immune Globulin IV Human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19666\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19666\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Brain natriuretic peptide', 'Brain natriuretic peptide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19685\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19685\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bretylium', 'bretylium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19698\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19698\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'brilliant green', 'brilliant green', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\134615\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\134615\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'brimonidine', 'brimonidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\194881\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\194881\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'brinzolamide', 'brinzolamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1760\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1760\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bromocriptine', 'Bromocriptine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19759\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19759\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'bromodiphenhydramine', 'bromodiphenhydramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59636\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59636\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'buclizine', 'buclizine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1808\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1808\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bumetanide', 'Bumetanide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1819\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1819\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Buprenorphine', 'Buprenorphine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1827\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1827\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Buspirone', 'Buspirone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1828\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1828\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Busulfan', 'Busulfan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19861\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19861\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'butamben', 'butamben', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47461\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47461\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'butenafine', 'butenafine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19884\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19884\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'butoconazole', 'butoconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1841\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1841\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Butorphanol', 'Butorphanol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\809864\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\809864\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'C1 inhibitor (Human)', 'C1 inhibitor (Human)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47579\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47579\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cabergoline', 'cabergoline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29365\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29365\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'calcipotriene', 'calcipotriene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1894\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1894\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcitriol', 'Calcitriol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47613\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47613\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium Citrate', 'Calcium Citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47618\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47618\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium gluceptate', 'Calcium gluceptate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1908\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1908\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium Gluconate', 'Calcium Gluconate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1909\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1909\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium Glycerophosphate', 'Calcium Glycerophosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1910\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1910\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'calcium hydroxide', 'calcium hydroxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1925\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1925\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium Sulfate', 'Calcium Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\232539\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\232539\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'calfactant', 'calfactant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214354\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214354\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'candesartan', 'candesartan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\194000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\194000\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'capecitabine', 'capecitabine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\78903\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\78903\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Capreomycin', 'Capreomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\319780\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\319780\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Capsicum extract', 'Capsicum extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1998\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1998\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Captopril', 'Captopril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1999\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1999\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carbachol', 'Carbachol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47686\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47686\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'carbamide peroxide', 'carbamide peroxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20217\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20217\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'carbetapentane', 'carbetapentane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2019\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2019\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carbidopa', 'Carbidopa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2023\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2023\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carbocysteine', 'Carbocysteine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2034\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2034\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carbon Dioxide', 'Carbon Dioxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2051\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2051\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carboprost', 'Carboprost', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2101\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carisoprodol', 'Carisoprodol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2105\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carmustine', 'Carmustine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2116\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Carteolol', 'Carteolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20352\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20352\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'carvedilol', 'carvedilol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\66870\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\66870\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Casanthranol', 'Casanthranol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\66869\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\66869\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cascara sagrada', 'Cascara sagrada', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\140108\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\140108\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Caspofungin', 'Caspofungin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\282363\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\282363\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Caspofungin acetate', 'Caspofungin acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2129\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2129\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Castor Oil', 'Castor Oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285223\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285223\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cat''s Claw preparation', 'Cat''s Claw preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2176\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2176\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefaclor', 'Cefaclor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25037\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25037\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cefdinir', 'cefdinir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20481\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20481\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cefepime', 'cefepime', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25033\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25033\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefixime', 'Cefixime', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2184\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2184\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefoperazone', 'Cefoperazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2186\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2186\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefotaxime', 'Cefotaxime', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2187\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2187\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefotetan', 'Cefotetan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20489\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20489\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cefpodoxime', 'cefpodoxime', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19552\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\19552\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cefprozil', 'cefprozil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2191\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2191\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ceftazidime', 'Ceftazidime', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20492\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20492\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ceftibuten', 'ceftibuten', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2192\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2192\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ceftizoxime', 'Ceftizoxime', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2193\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2193\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ceftriaxone', 'Ceftriaxone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2194\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2194\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cefuroxime', 'Cefuroxime', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\140587\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\140587\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'celecoxib', 'celecoxib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20498\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20498\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Celiprolol', 'Celiprolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\203145\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\203145\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Celiprolol Monohydrochloride', 'Celiprolol Monohydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2219\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2219\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CELLULASE', 'CELLULASE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2222\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2222\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cellulose, Oxidized', 'Cellulose, Oxidized', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\709271\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\709271\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'certolizumab pegol', 'certolizumab pegol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68147\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68147\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cetrorelix', 'cetrorelix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\44281\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\44281\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cevimeline', 'cevimeline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221916\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221916\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CHAMOMILE FLOWERS', 'CHAMOMILE FLOWERS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39384\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39384\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chickenpox Vaccine', 'Chickenpox Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\289861\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\289861\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chlophendianol hydrochloride', 'chlophendianol hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2346\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2346\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorambucil', 'Chlorambucil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2354\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2354\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chlorcyclizine', 'chlorcyclizine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2382\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2382\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chloroguanide', 'Chloroguanide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20852\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20852\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chlorophyllin', 'chlorophyllin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20859\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20859\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chloroprocaine', 'chloroprocaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20877\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\20877\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chloroxylenol', 'chloroxylenol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2404\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2404\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chlorpropamide', 'Chlorpropamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2427\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2427\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cholera Vaccine', 'Cholera Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4986\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4986\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chorionic Gonadotropin', 'Chorionic Gonadotropin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59308\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59308\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CHROMIUM PICOLINATE', 'CHROMIUM PICOLINATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\274964\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\274964\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ciclesonide', 'ciclesonide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83171\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83171\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cidofovir', 'Cidofovir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2540\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2540\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cilastatin', 'Cilastatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21102\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cilazapril', 'Cilazapril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21107\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21107\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cilostazol', 'cilostazol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2541\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2541\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cimetidine', 'Cimetidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2550\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2550\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cinoxacin', 'Cinoxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35255\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35255\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cisapride', 'Cisapride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\319864\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\319864\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cisatracurium', 'Cisatracurium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2556\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2556\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Citalopram', 'Citalopram', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114200\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Citrate', 'Citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2567\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2567\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Citrulline', 'Citrulline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\44157\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\44157\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cladribine', 'Cladribine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21212\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21212\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clarithromycin', 'Clarithromycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\831418\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\831418\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'clavulanate potassium', 'clavulanate potassium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\233603\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\233603\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'clevidipine', 'clevidipine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21232\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21232\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'clidinium', 'clidinium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2582\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2582\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clindamycin', 'Clindamycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797272\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797272\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'clindamycin-2-phosphate', 'clindamycin-2-phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5942\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5942\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clioquinol', 'Clioquinol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21249\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21249\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'clocortolone', 'clocortolone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\44151\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\44151\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'clofarabine', 'clofarabine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2596\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2596\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clomiphene', 'Clomiphene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2597\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2597\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clomipramine', 'Clomipramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32968\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32968\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'clopidogrel', 'clopidogrel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7624\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7624\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Clove oil', 'Clove oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2660\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2660\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Coccidioidin', 'Coccidioidin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21389\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21389\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cocoa butter', 'cocoa butter', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2669\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2669\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cod Liver Oil', 'Cod Liver Oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21406\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21406\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'coenzyme Q10', 'coenzyme Q10', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\141626\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\141626\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'colesevelam', 'colesevelam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2685\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2685\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Colestipol', 'Colestipol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\107784\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\107784\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Colfosceril', 'Colfosceril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69782\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69782\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'colfosceril palmitate', 'colfosceril palmitate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2708\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2708\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'colistimethate', 'colistimethate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253161\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253161\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'COLLAGEN HEMOSTAT', 'COLLAGEN HEMOSTAT', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\477454\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\477454\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'COLLAGEN, HYDROLYZED', 'COLLAGEN, HYDROLYZED', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\58939\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\58939\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'COLLAGENASE', 'COLLAGENASE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89767\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89767\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Colloid sulfur', 'Colloid sulfur', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221082\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221082\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Colloidal oatmeal', 'Colloidal oatmeal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285150\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Comfrey preparation', 'Comfrey preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\302285\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\302285\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'conivaptan', 'conivaptan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2858\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2858\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Corn starch preparation', 'Corn starch preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\74671\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\74671\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'corticorelin ovine', 'corticorelin ovine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\376\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\376\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Corticotropin', 'Corticotropin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2890\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2890\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cosyntropin', 'Cosyntropin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2907\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2907\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Creatine', 'Creatine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21766\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21766\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'crotamiton', 'crotamiton', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21837\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\21837\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cupric oxide', 'Cupric oxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2977\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\2977\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cyclizine', 'Cyclizine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3002\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3002\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cyclophosphamide', 'Cyclophosphamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3007\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3007\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cycloserine', 'Cycloserine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22037\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22037\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cycrimine', 'cycrimine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235421\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235421\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CYCRIMINE HCL', 'CYCRIMINE HCL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3013\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3013\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cyproheptadine', 'Cyproheptadine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3022\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3022\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cysteamine', 'Cysteamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3024\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3024\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cysteine', 'Cysteine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3041\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3041\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cytarabine', 'Cytarabine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81932\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81932\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cytarabine liposomal', 'cytarabine liposomal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3046\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3046\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cytidine Diphosphate Choline', 'Cytidine Diphosphate Choline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22178\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22178\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cytotect', 'cytotect', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3098\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3098\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dacarbazine', 'Dacarbazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\190353\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\190353\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Daclizumab', 'Daclizumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3100\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dactinomycin', 'Dactinomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\229369\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\229369\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dalfopristin', 'dalfopristin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\67109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\67109\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dalteparin', 'Dalteparin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\78484\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\78484\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'danaparoid', 'danaparoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3102\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Danazol', 'Danazol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\124150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\124150\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dandelion Extract', 'Dandelion Extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3105\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dantrolene', 'Dantrolene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22298\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22298\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dapiprazole', 'dapiprazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3108\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3108\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dapsone', 'Dapsone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22299\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22299\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Daptomycin', 'Daptomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\283838\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\283838\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'darbepoetin alfa', 'darbepoetin alfa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\136198\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\136198\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'darifenacin', 'darifenacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\460132\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\460132\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'darunavir', 'darunavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\475342\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\475342\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dasatinib', 'dasatinib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3109\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Daunorubicin', 'Daunorubicin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214468\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214468\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Daunorubicin Liposomal', 'Daunorubicin Liposomal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3116\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3116\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Deanol', 'Deanol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22361\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22361\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'deanol acetamidobenzoate', 'deanol acetamidobenzoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\15657\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\15657\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'decitabine', 'decitabine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\614373\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\614373\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'deferasirox', 'deferasirox', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3131\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3131\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Deferoxamine', 'Deferoxamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22396\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22396\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'deflazacort', 'deflazacort', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\475230\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\475230\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'degarelix', 'degarelix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83816\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83816\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Delavirdine', 'Delavirdine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\107771\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\107771\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Demecarium', 'Demecarium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3154\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3154\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Demeclocycline', 'Demeclocycline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214470\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214470\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'denileukin diftitox', 'denileukin diftitox', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27340\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27340\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'desflurane', 'desflurane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10572\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10572\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Desiccated Thyroid Extract', 'Desiccated Thyroid Extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114934\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114934\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'desirudin', 'desirudin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\275635\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\275635\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'desloratadine', 'desloratadine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3255\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3255\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Desoximetasone', 'Desoximetasone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\734064\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\734064\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Desvenlafaxine', 'Desvenlafaxine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\683693\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\683693\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'desvenlafaxine succinate', 'desvenlafaxine succinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236279\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236279\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Devil''s claw preparation', 'Devil''s claw preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\816346\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\816346\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dexlansoprazole', 'dexlansoprazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\48937\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\48937\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dexmedetomidine', 'Dexmedetomidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\352372\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\352372\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dexmethylphenidate', 'dexmethylphenidate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22701\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dexpanthenol', 'dexpanthenol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42736\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42736\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dexrazoxane', 'Dexrazoxane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42635\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42635\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextran', 'Dextran', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214485\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214485\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextran 1', 'Dextran 1', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3272\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3272\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextran 40', 'Dextran 40', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3275\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3275\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextran 75', 'Dextran 75', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\216535\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\216535\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'DEXTRAN HM', 'DEXTRAN HM', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22708\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22708\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dextranomer', 'dextranomer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3288\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3288\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dextroamphetamine', 'Dextroamphetamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3319\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3319\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diatrizoate', 'Diatrizoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3322\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3322\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diazepam', 'Diazepam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3327\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3327\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diazoxide', 'Diazoxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\55018\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\55018\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dibasic potassium phosphate', 'Dibasic potassium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3339\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3339\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dibucaine', 'Dibucaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22892\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\22892\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dichloralphenazone', 'dichloralphenazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3347\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3347\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dichloroacetate', 'Dichloroacetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50110\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dichlorodifluoromethane', 'dichlorodifluoromethane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\124848\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\124848\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dichlorotetrafluoroethane', 'Dichlorotetrafluoroethane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3353\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3353\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dichlorphenamide', 'Dichlorphenamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1598\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1598\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dicumarol', 'Dicumarol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3368\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3368\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dienestrol', 'Dienestrol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3389\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3389\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diethylpropion', 'Diethylpropion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23024\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23024\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'difenoxin', 'difenoxin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91311\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91311\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diflorasone', 'Diflorasone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23043\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23043\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'difluprednate', 'difluprednate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23066\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23066\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dihematoporphyrin Ether', 'Dihematoporphyrin Ether', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3418\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3418\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dihydroergotamine', 'Dihydroergotamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3429\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3429\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dihydrotachysterol', 'Dihydrotachysterol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3430\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3430\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dihydroxyacetone', 'Dihydroxyacetone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23163\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23163\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dihydroxyaluminum sodium carbonate', 'dihydroxyaluminum sodium carbonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3445\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3445\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dimercaprol', 'Dimercaprol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\324072\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\324072\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dimethicone', 'dimethicone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3455\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3455\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dimethyl Sulfoxide', 'Dimethyl Sulfoxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3478\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3478\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dinoprostone', 'Dinoprostone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59247\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59247\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'diperodon', 'diperodon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23370\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23370\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'diphenidol', 'diphenidol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3500\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diphenoxylate', 'Diphenoxylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798304\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798304\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Diphtheria Toxoid Vaccine', 'Diphtheria Toxoid Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23410\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23410\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dipivefrin', 'Dipivefrin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3521\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3521\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dipyridamole', 'Dipyridamole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23437\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23437\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dirithromycin', 'dirithromycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3541\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3541\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Disopyramide', 'Disopyramide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3616\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3616\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dobutamine', 'Dobutamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72962\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72962\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'docetaxel', 'docetaxel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\830526\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\830526\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Docosahexaenoic Acid', 'Docosahexaenoic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\594680\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\594680\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'docosanol', 'docosanol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\49247\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\49247\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dofetilide', 'dofetilide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68091\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68091\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dolasetron', 'Dolasetron', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\135447\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\135447\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'donepezil', 'donepezil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3628\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3628\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dopamine', 'Dopamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\119771\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\119771\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'doripenem', 'doripenem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\337623\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\337623\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dornase Alfa', 'Dornase Alfa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\60207\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\60207\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dorzolamide', 'dorzolamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23651\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23651\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'doxacurium', 'doxacurium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3637\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3637\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxapram', 'Doxapram', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\49276\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\49276\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxazosin', 'Doxazosin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3638\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3638\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxepin', 'Doxepin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11516\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11516\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxercalciferol', 'Doxercalciferol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3639\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3639\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxorubicin', 'Doxorubicin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3640\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3640\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Doxycycline', 'Doxycycline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11636\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11636\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'drospirenone', 'drospirenone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\352374\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\352374\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'drotrecogin alfa', 'drotrecogin alfa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228790\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228790\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Dutasteride', 'Dutasteride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23744\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\23744\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'dyclonine', 'dyclonine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228041\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228041\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Echinacea Preparation', 'Echinacea Preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89778\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89778\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Echothiophate', 'Echothiophate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3743\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3743\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Econazole', 'Econazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\591781\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\591781\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'eculizumab', 'eculizumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3752\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3752\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Edrophonium', 'Edrophonium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\356988\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\356988\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'efalizumab', 'efalizumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\195085\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\195085\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'efavirenz', 'efavirenz', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314605\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'EGG YOLK PHOSPHOLIPIDS', 'EGG YOLK PHOSPHOLIPIDS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\90\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\90\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Eicosapentaenoic Acid', 'Eicosapentaenoic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\144449\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\144449\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'eicosapentanoic acid', 'eicosapentanoic acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\231049\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\231049\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'eletriptan', 'eletriptan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\711942\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\711942\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'eltrombopag', 'eltrombopag', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28144\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28144\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'emedastine', 'emedastine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3829\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3829\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Enalaprilat', 'Enalaprilat', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3920\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3920\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Enflurane', 'Enflurane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\139896\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\139896\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'enfuvirtide', 'enfuvirtide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3925\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3925\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Enoxacin', 'Enoxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\49626\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\49626\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Enoximone', 'Enoximone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\60307\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\60307\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'entacapone', 'entacapone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\306266\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\306266\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'entecavir', 'entecavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3995\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3995\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Epirubicin', 'Epirubicin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\203213\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\203213\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Epirubicin Hydrochloride', 'Epirubicin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\298869\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\298869\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'eplerenone', 'eplerenone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\105694\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\105694\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Epoetin Alfa', 'Epoetin Alfa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8814\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8814\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Epoprostenol', 'Epoprostenol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83515\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'eprosartan', 'eprosartan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\75635\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\75635\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'eptifibatide', 'eptifibatide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4024\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4024\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ergoloid mesylates, USP', 'ergoloid mesylates, USP', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4021\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4021\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ergonovine', 'Ergonovine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325642\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325642\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ertapenem', 'ertapenem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235996\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235996\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Erwinia asparaginase', 'Erwinia asparaginase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4053\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4053\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Erythromycin', 'Erythromycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\350202\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\350202\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Escherichia coli', 'Escherichia coli', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\321988\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\321988\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Escitalopram', 'Escitalopram', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\49737\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\49737\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'esmolol', 'esmolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4077\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4077\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Estazolam', 'Estazolam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4089\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4089\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Estramustine', 'Estramustine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4094\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4094\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Estriol', 'Estriol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4100\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Estrogens', 'Estrogens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253166\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253166\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'estrogens, conjugated synthetic A', 'estrogens, conjugated synthetic A', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\618365\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\618365\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'estrogens, conjugated synthetic B', 'estrogens, conjugated synthetic B', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4103\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4103\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Estrone', 'Estrone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33747\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33747\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'estropipate', 'estropipate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\461016\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\461016\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Eszopiclone', 'Eszopiclone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\62349\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\62349\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethacrynate', 'Ethacrynate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4110\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethambutol', 'Ethambutol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24460\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24460\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ethanolamine oleate', 'ethanolamine oleate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4118\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4118\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethchlorvynol', 'Ethchlorvynol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4125\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4125\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethiodized Oil', 'Ethiodized Oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4127\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4127\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethionamide', 'Ethionamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4134\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4134\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ethopropazine', 'ethopropazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4135\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4135\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethosuximide', 'Ethosuximide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4136\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4136\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethotoin', 'Ethotoin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4141\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4141\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ethyl Chloride', 'Ethyl Chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24591\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24591\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ethynodiol', 'ethynodiol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4171\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4171\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Etidocaine', 'Etidocaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42682\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42682\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Etidronate', 'Etidronate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24605\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24605\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Etodolac', 'Etodolac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4177\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4177\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Etomidate', 'Etomidate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\14584\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\14584\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Etonogestrel', 'Etonogestrel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4179\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4179\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Etoposide', 'Etoposide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\307296\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\307296\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'etoricoxib', 'etoricoxib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\475969\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\475969\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'etravirine', 'etravirine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4182\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4182\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Etretinate', 'Etretinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59087\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59087\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Eucalyptus oil', 'Eucalyptus oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4191\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4191\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Evans blue', 'Evans blue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\260040\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\260040\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Evening primrose extract', 'Evening primrose extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\258494\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\258494\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'exemestane', 'exemestane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\60548\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\60548\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'exenatide', 'exenatide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259366\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259366\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Eyebright preparation', 'Eyebright preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\826070\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\826070\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'F8 protein, human', 'F8 protein, human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4249\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4249\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Factor IX', 'Factor IX', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4257\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4257\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Factor VIII', 'Factor VIII', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4271\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4271\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Factor XIII', 'Factor XIII', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68099\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68099\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'famciclovir', 'famciclovir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4278\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4278\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Famotidine', 'Famotidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\284110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\284110\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'FE HEME POLYPEPTIDE', 'FE HEME POLYPEPTIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24812\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24812\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'felbamate', 'felbamate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4316\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4316\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Felodipine', 'Felodipine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24852\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24852\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fenofibric acid', 'fenofibric acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24853\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24853\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fenoldopam', 'Fenoldopam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4331\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4331\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fenoprofen', 'Fenoprofen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\360375\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\360375\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fenugreek seed preparation', 'Fenugreek seed preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24909\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24909\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ferric oxide, saccharated', 'ferric oxide, saccharated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24912\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24912\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ferric subsulfate solution', 'ferric subsulfate solution', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72901\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72901\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ferumoxides', 'ferumoxides', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\77754\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\77754\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ferumoxsil', 'ferumoxsil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114203\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114203\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'feverfew extract', 'feverfew extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\70727\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\70727\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fiber', 'Fiber', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4385\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4385\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fibrinogen', 'Fibrinogen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\353110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\353110\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fibrinolysis inhibitor', 'fibrinolysis inhibitor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68442\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68442\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Filgrastim', 'Filgrastim', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25025\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25025\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Finasteride', 'Finasteride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4440\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4440\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flavoxate', 'Flavoxate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4441\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4441\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flecainide', 'Flecainide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4488\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4488\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Floxuridine', 'Floxuridine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4450\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4450\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluconazole', 'Fluconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4451\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4451\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flucytosine', 'Flucytosine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24698\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24698\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fludarabine', 'fludarabine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4452\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4452\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fludrocortisone', 'Fludrocortisone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4457\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4457\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flumazenil', 'Flumazenil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4460\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4460\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flunitrazepam', 'Flunitrazepam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25126\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25126\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fluocinolone', 'fluocinolone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4462\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4462\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluocinonide', 'Fluocinonide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25138\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25138\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluorescein', 'Fluorescein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4492\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4492\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluorouracil', 'Fluorouracil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4500\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flurandrenolide', 'Flurandrenolide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4501\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flurazepam', 'Flurazepam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4502\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4502\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flurbiprofen', 'Flurbiprofen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4508\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4508\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Flutamide', 'Flutamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41127\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41127\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fluvastatin', 'fluvastatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42355\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42355\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fluvoxamine', 'Fluvoxamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\227518\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\227518\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Follicle Stimulating Hormone', 'Follicle Stimulating Hormone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\386938\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\386938\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Follitropin Alfa', 'Follitropin Alfa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25357\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25357\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'follitropin beta', 'follitropin beta', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\15226\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\15226\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fomepizole', 'fomepizole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\85763\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\85763\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fomivirsen', 'fomivirsen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\321208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\321208\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fondaparinux', 'fondaparinux', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25255\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25255\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'formoterol', 'formoterol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\358262\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\358262\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fosamprenavir', 'fosamprenavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\754763\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\754763\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fosaprepitant dimeglumine', 'Fosaprepitant dimeglumine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33562\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33562\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Foscarnet', 'Foscarnet', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25284\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25284\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fosfestrol', 'fosfestrol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4550\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4550\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fosfomycin', 'Fosfomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\142135\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\142135\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fosfomycin Trometamol Salt', 'Fosfomycin Trometamol Salt', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50166\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50166\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fosinopril', 'Fosinopril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228783\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228783\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'frovatriptan', 'frovatriptan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\282357\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\282357\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'fulvestrant', 'fulvestrant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4601\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Furazolidone', 'Furazolidone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4603\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4603\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Furosemide', 'Furosemide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\692620\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\692620\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gadobenate', 'Gadobenate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68173\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68173\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gadobenate dimeglumine', 'Gadobenate dimeglumine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41144\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41144\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gadodiamide', 'gadodiamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25483\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25483\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gadoteridol', 'gadoteridol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228833\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228833\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gadoversetamide', 'gadoversetamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\802624\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\802624\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gadoxetate', 'gadoxetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4637\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4637\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Galantamine', 'Galantamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25544\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25544\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gallium nitrate', 'gallium nitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\578033\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\578033\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'galsulfase', 'galsulfase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4678\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4678\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ganciclovir', 'Ganciclovir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35825\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35825\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ganirelix', 'ganirelix', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\265647\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\265647\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Garlic preparation', 'Garlic preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228476\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\228476\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gatifloxacin', 'gatifloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\328134\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\328134\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gefitinib', 'gefitinib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4716\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4716\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gelatin', 'Gelatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\12574\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\12574\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gemcitabine', 'gemcitabine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\138099\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\138099\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gemifloxacin', 'gemifloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259315\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259315\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'gemtuzumab', 'gemtuzumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25696\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25696\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Genistein', 'Genistein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4792\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4792\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gestrinone', 'Gestrinone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236809\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ginkgo biloba extract', 'Ginkgo biloba extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25789\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25789\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'glimepiride', 'glimepiride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4821\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4821\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glipizide', 'Glipizide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25806\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25806\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'glubionate calcium', 'glubionate calcium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4832\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4832\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glucagon', 'Glucagon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25842\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\25842\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gluconolactone', 'Gluconolactone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4847\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4847\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glucosamine Sulfate', 'Glucosamine Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4885\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4885\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glutamine', 'Glutamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4888\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4888\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glutaral', 'Glutaral', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4815\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4815\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glyburide', 'Glyburide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4955\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4955\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glycopyrrolate', 'Glycopyrrolate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285154\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285154\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Goldenseal preparation', 'Goldenseal preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6384\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6384\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Gonadorelin', 'Gonadorelin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50610\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50610\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Goserelin', 'Goserelin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\26237\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\26237\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Granisetron', 'Granisetron', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\40114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\40114\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guanfacine', 'Guanfacine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50675\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50675\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Guanidine', 'Guanidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236568\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236568\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'HAEMOPH B POLYSAC CONJ-MENING', 'HAEMOPH B POLYSAC CONJ-MENING', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221105\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Haemophilus capsular oligosaccharide', 'Haemophilus capsular oligosaccharide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798444\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798444\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Haemophilus influenzae b (Ross strain) capsular polysaccharide Meningococcal Protein Conjugate Vaccine', 'Haemophilus influenzae b (Ross strain) capsular polysaccharide Meningococcal Protein Conjugate Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798279\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798279\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Haemophilus influenzae b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine', 'Haemophilus influenzae b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798436\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798436\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Haemophilus influenzae b, capsular polysaccharide Meningococcal Protein Conjugate Vaccine', 'Haemophilus influenzae b, capsular polysaccharide Meningococcal Protein Conjugate Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5084\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5084\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Halcinonide', 'Halcinonide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41208\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'halobetasol', 'halobetasol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50749\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50749\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'halofantrine', 'halofantrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\26422\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\26422\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'haloprogin', 'haloprogin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5095\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5095\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Halothane', 'Halothane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5175\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5175\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hemin', 'Hemin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798361\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798361\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hepatitis A Vaccine (Inactivated) Strain HM175', 'Hepatitis A Vaccine (Inactivated) Strain HM175', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253174\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253174\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hepatitis A Vaccine, Inactivated', 'Hepatitis A Vaccine, Inactivated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\26744\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\26744\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'hepatitis B immune globulin', 'hepatitis B immune globulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798456\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798456\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hepatitis B Surface Antigen (Australia antigen) MSD, Vaccine', 'Hepatitis B Surface Antigen (Australia antigen) MSD, Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797752\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797752\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hepatitis B Surface Antigen Vaccine', 'Hepatitis B Surface Antigen Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5240\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5240\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hepatitis B Surface Antigens', 'Hepatitis B Surface Antigens', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3304\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3304\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Heroin', 'Heroin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81994\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81994\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Heroin Hydrochloride', 'Heroin Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5531\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5531\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hetastarch', 'Hetastarch', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5293\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5293\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hexachlorophene', 'Hexachlorophene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5321\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5321\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hexylresorcinol', 'Hexylresorcinol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5333\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5333\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Histamine', 'Histamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50975\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\50975\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'histrelin', 'histrelin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\317825\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\317825\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Horse Chestnut Preparation', 'Horse Chestnut Preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235481\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235481\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Human calcitonin', 'Human calcitonin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\606396\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\606396\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Human Secretin', 'Human Secretin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\597392\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\597392\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Human vaccinia immune globulin', 'Human vaccinia immune globulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798286\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798286\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Human-Bovine Reassortant Rotavirus Strain G1 Vaccine', 'Human-Bovine Reassortant Rotavirus Strain G1 Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798288\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798288\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Human-Bovine Reassortant Rotavirus Strain G2 Vaccine', 'Human-Bovine Reassortant Rotavirus Strain G2 Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798290\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798290\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Human-Bovine Reassortant Rotavirus Strain G3 Vaccine', 'Human-Bovine Reassortant Rotavirus Strain G3 Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798292\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798292\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Human-Bovine Reassortant Rotavirus Strain G4 Vaccine', 'Human-Bovine Reassortant Rotavirus Strain G4 Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798294\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798294\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Human-Bovine Reassortant Rotavirus Strain P1A[8] Vaccine', 'Human-Bovine Reassortant Rotavirus Strain P1A[8] Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\258347\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\258347\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hyaluronan', 'Hyaluronan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5486\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5486\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydrochloric Acid', 'Hydrochloric Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5499\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5499\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydrogen Peroxide', 'Hydrogen Peroxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27208\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'hydroiodic acid', 'hydroiodic acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3423\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3423\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydromorphone', 'Hydromorphone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5509\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5509\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'hydroquinone', 'hydroquinone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5514\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5514\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydroxocobalamin', 'Hydroxocobalamin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5521\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5521\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydroxychloroquine', 'Hydroxychloroquine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5542\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5542\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Hydroxyprogesterone', 'Hydroxyprogesterone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5552\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5552\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'hydroxyurea', 'hydroxyurea', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\284637\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\284637\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'HYLAN G-F 20', 'HYLAN G-F 20', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253176\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253176\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'HYLAN POLYMERS A and B', 'HYLAN POLYMERS A and B', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\115264\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\115264\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ibandronate', 'Ibandronate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41289\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41289\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ibutilide', 'ibutilide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5650\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5650\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Idarubicin', 'Idarubicin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\644101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\644101\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'idursulfase', 'idursulfase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5657\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5657\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ifosfamide', 'Ifosfamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\40138\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\40138\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iloprost', 'Iloprost', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\282388\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\282388\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'imatinib', 'imatinib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\84959\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\84959\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'imiglucerase', 'imiglucerase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5690\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5690\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Imipenem', 'Imipenem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5691\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5691\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Imipramine', 'Imipramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\150816\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\150816\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Imipramine Hydrochloride', 'Imipramine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91118\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91118\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Imipramine pamoate', 'Imipramine pamoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59943\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59943\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'imiquimod', 'imiquimod', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797550\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797550\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Immune Globulin (Human)', 'Immune Globulin (Human)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\617615\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\617615\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Immune Globulin Subcutaneous (Human)', 'Immune Globulin Subcutaneous (Human)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5666\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5666\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Immunoglobulin G', 'Immunoglobulin G', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42386\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42386\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Immunoglobulins, Intravenous', 'Immunoglobulins, Intravenous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\801830\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\801830\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Inactivated Polioviruses Type 1, Mahoney strain vaccine', 'Inactivated Polioviruses Type 1, Mahoney strain vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\801832\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\801832\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Inactivated Polioviruses Type 2, MEF-1 strain vaccine', 'Inactivated Polioviruses Type 2, MEF-1 strain vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\801834\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\801834\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Inactivated Polioviruses Type 3, Saukett strain vaccine', 'Inactivated Polioviruses Type 3, Saukett strain vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5764\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5764\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Indapamide', 'Indapamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325514\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325514\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Indigotindisulfonate', 'Indigotindisulfonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114289\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114289\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Indinavir', 'Indinavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5775\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5775\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Indocyanine Green', 'Indocyanine Green', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\191831\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\191831\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'infliximab', 'infliximab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805520\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805520\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Inactivated A-Brisbane-10-2007 (H3N2)-like virus (A-Uruguay-716-2007 NYMC X-175C) strain', 'Influenza Virus Vaccine, Inactivated A-Brisbane-10-2007 (H3N2)-like virus (A-Uruguay-716-2007 NYMC X-175C) strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805549\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805549\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Inactivated A-Brisbane-59-2007 (H1N1) strain', 'Influenza Virus Vaccine, Inactivated A-Brisbane-59-2007 (H1N1) strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805522\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805522\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Inactivated A-Brisbane-59-2007 (H1N1)-like virus (A-Brisbane-59-2007 IVR-148) strain', 'Influenza Virus Vaccine, Inactivated A-Brisbane-59-2007 (H1N1)-like virus (A-Brisbane-59-2007 IVR-148) strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805551\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805551\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Inactivated A-Uruguay-716-2007 (H3N2) (A-Brisbane-10-2007-like) strain', 'Influenza Virus Vaccine, Inactivated A-Uruguay-716-2007 (H3N2) (A-Brisbane-10-2007-like) strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805553\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805553\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Inactivated B-Florida-4-2006 strain', 'Influenza Virus Vaccine, Inactivated B-Florida-4-2006 strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805467\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805467\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Inactivated, A-H1N1 (A-Brisbane-59-2007) strain', 'Influenza Virus Vaccine, Inactivated, A-H1N1 (A-Brisbane-59-2007) strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805469\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805469\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Inactivated, A-H3N2 (A-Uruguay-716-2007) strain', 'Influenza Virus Vaccine, Inactivated, A-H3N2 (A-Uruguay-716-2007) strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805524\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805524\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Inactivated, B-Florida-4-2006-like virus (B-Florida-4-2006) strain', 'Influenza Virus Vaccine, Inactivated, B-Florida-4-2006-like virus (B-Florida-4-2006) strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805471\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805471\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Inactivated, Influenza B (B-Florida-4-2006) strain', 'Influenza Virus Vaccine, Inactivated, Influenza B (B-Florida-4-2006) strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805537\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805537\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Live Attenuated, A-South Dakota-6-2007 (H1N1) (A-Brisbane-59-2007-like) strain', 'Influenza Virus Vaccine, Live Attenuated, A-South Dakota-6-2007 (H1N1) (A-Brisbane-59-2007-like) strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805539\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805539\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Live Attenuated, A-Uruguay -716-2007 (H3N2) (A-Brisbane-10-2007-like) strain', 'Influenza Virus Vaccine, Live Attenuated, A-Uruguay -716-2007 (H3N2) (A-Brisbane-10-2007-like) strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805541\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805541\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Influenza Virus Vaccine, Live Attenuated, B-Florida-4-2006 strain', 'Influenza Virus Vaccine, Live Attenuated, B-Florida-4-2006 strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\139825\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\139825\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'insulin detemir', 'insulin detemir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\274783\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\274783\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin Glargine', 'Insulin Glargine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\631657\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\631657\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'insulin human, rDNA origin', 'insulin human, rDNA origin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\352385\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\352385\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Aspart Protamine, Human', 'Insulin, Aspart Protamine, Human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235286\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235286\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Prompt Zinc, Pork', 'Insulin, Prompt Zinc, Pork', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314684\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314684\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Protamine Lispro, Human', 'Insulin, Protamine Lispro, Human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221109\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Regular, Pork', 'Insulin, Regular, Pork', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314683\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314683\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Zinc, Human', 'Insulin, Zinc, Human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\93108\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\93108\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Insulin, Zinc, Pork', 'Insulin, Zinc, Pork', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5880\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5880\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Interferon Alfa-2b', 'Interferon Alfa-2b', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\202912\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\202912\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Interferon Alfa-n1', 'Interferon Alfa-n1', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\612937\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\612937\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Interferon Alfa-n3', 'Interferon Alfa-n3', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59744\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59744\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'interferon alfacon-1', 'interferon alfacon-1', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\75917\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\75917\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Interferon beta-1a', 'Interferon beta-1a', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\108067\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\108067\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Intramuscular immunoglobulin', 'Intramuscular immunoglobulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5924\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5924\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Inulin', 'Inulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27712\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27712\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'invert sugar', 'invert sugar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\183830\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\183830\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'iocetamic acid', 'iocetamic acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5928\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5928\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iodamide', 'Iodamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\234449\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\234449\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'iodine-131-tositumomab', 'iodine-131-tositumomab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5936\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5936\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iodipamide', 'Iodipamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3435\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3435\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iodoquinol', 'Iodoquinol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5956\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5956\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iohexol', 'Iohexol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5967\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5967\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iopanoic Acid', 'Iopanoic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5968\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5968\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iophendylate', 'Iophendylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27781\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27781\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'iopromide', 'iopromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27792\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27792\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ioversol', 'ioversol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27793\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27793\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ioxilan', 'ioxilan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5976\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5976\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ipodate', 'Ipodate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7213\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7213\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ipratropium', 'Ipratropium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\203212\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\203212\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ipratropium Bromide', 'Ipratropium Bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83818\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83818\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'irbesartan', 'irbesartan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\51499\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\51499\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'irinotecan', 'irinotecan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\153329\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\153329\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Irinotecan hydrochloride', 'Irinotecan hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235376\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235376\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'IRON BILE SALTS', 'IRON BILE SALTS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\262150\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\262150\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iron Carbonyl', 'Iron Carbonyl', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\219315\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\219315\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iron polysaccharide', 'Iron polysaccharide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27825\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27825\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'iron succinyl milk protein complex', 'iron succinyl milk protein complex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5992\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\5992\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iron-Dextran Complex', 'Iron-Dextran Complex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27863\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27863\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'iso-sulfan blue', 'iso-sulfan blue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6011\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6011\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isocarboxazid', 'Isocarboxazid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6026\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6026\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isoflurane', 'Isoflurane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27946\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27946\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'isometheptene', 'isometheptene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797541\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797541\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isopropyl Alcohol', 'Isopropyl Alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\135313\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\135313\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'isopropyl unoprostone', 'isopropyl unoprostone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6057\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6057\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isosorbide', 'Isosorbide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6058\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6058\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isosorbide Dinitrate', 'Isosorbide Dinitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6064\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6064\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isotretinoin', 'Isotretinoin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6066\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6066\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isoxsuprine', 'Isoxsuprine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33910\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33910\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Isradipine', 'Isradipine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28031\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28031\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Itraconazole', 'Itraconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6069\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6069\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ivermectin', 'Ivermectin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\337523\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\337523\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ixabepilone', 'ixabepilone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\547233\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\547233\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'japanese encepahlitis virus vaccine, inactivated', 'japanese encepahlitis virus vaccine, inactivated', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6085\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6085\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Juniper extract', 'Juniper extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6099\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6099\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Kanamycin', 'Kanamycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6111\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6111\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Karaya Gum', 'Karaya Gum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285228\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\285228\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Kava preparation', 'Kava preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6130\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6130\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ketamine', 'Ketamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6135\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6135\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ketoconazole', 'Ketoconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6146\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6146\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ketotifen', 'Ketotifen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\407884\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\407884\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'L-METHYLFOLATE', 'L-METHYLFOLATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798262\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798262\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'L1 protein, Human papillomavirus type 11 Vaccine', 'L1 protein, Human papillomavirus type 11 Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798264\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798264\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'L1 protein, Human papillomavirus type 16 Vaccine', 'L1 protein, Human papillomavirus type 16 Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798266\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798266\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'L1 protein, Human papillomavirus type 18 Vaccine', 'L1 protein, Human papillomavirus type 18 Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798268\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798268\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'L1 protein, Human papillomavirus type 6 Vaccine', 'L1 protein, Human papillomavirus type 6 Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41397\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41397\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lactase', 'Lactase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6205\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6205\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lactobacillus acidophilus', 'Lactobacillus acidophilus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\100272\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\100272\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lactobacillus bulgaricus', 'Lactobacillus bulgaricus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\602811\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\602811\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lactobacillus rhamnosus GG', 'Lactobacillus rhamnosus GG', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6218\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6218\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lactulose', 'Lactulose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28439\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28439\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lamotrigine', 'lamotrigine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68092\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68092\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lanreotide', 'lanreotide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\480167\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\480167\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lapatinib', 'lapatinib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\392509\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\392509\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Laronidase', 'Laronidase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\43611\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\43611\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'latanoprost', 'latanoprost', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89887\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89887\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Latrodectus mactans antivenin', 'Latrodectus mactans antivenin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27169\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\27169\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'leflunomide', 'leflunomide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\342369\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\342369\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lenalidomide', 'lenalidomide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235280\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235280\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lente Insulin, Beef', 'Lente Insulin, Beef', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237057\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237057\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lepirudin', 'lepirudin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72965\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72965\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'letrozole', 'letrozole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6313\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6313\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Leucovorin', 'Leucovorin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42375\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42375\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Leuprolide', 'Leuprolide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6371\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6371\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levamisole', 'Levamisole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\353497\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\353497\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levobetaxolol', 'Levobetaxolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\261718\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\261718\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'levobetaxolol hydrochloride', 'levobetaxolol hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1813\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1813\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levobunolol', 'Levobunolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259453\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259453\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levobupivacaine', 'Levobupivacaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28627\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28627\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'levocabastine', 'levocabastine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\356887\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\356887\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'levocetirizine', 'levocetirizine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\82122\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\82122\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levofloxacin', 'Levofloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237005\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237005\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levomethadyl', 'Levomethadyl', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\132889\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\132889\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levonordefrin', 'Levonordefrin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221113\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221113\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levorotatory alkaloids of belladonna', 'Levorotatory alkaloids of belladonna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6378\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6378\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Levorphanol', 'Levorphanol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42769\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42769\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Licorice', 'Licorice', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6398\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6398\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lincomycin', 'Lincomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214525\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214525\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Liposomal Doxorubicin', 'Liposomal Doxorubicin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\700810\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\700810\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lisdexamfetamine', 'Lisdexamfetamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52105\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52105\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lithium citrate', 'lithium citrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52151\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52151\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lodoxamide', 'Lodoxamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28872\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28872\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lomefloxacin', 'lomefloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6466\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6466\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lomustine', 'Lomustine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6468\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6468\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Loperamide', 'Loperamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\195088\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\195088\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lopinavir', 'lopinavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28981\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28981\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'loracarbef', 'loracarbef', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28889\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28889\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Loratadine', 'Loratadine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6470\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6470\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lorazepam', 'Lorazepam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52175\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52175\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Losartan', 'Losartan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237027\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237027\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Loteprednol', 'Loteprednol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52177\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52177\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'loteprednol etabonate', 'loteprednol etabonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\623033\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\623033\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'lubiprostone', 'lubiprostone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11359\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11359\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lutein', 'Lutein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91601\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91601\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lymphocyte immune globulin', 'Lymphocyte immune globulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325515\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'LYMPHOCYTE IMMUNE GLOBULIN, ANTI-THYMOCYTE G', 'LYMPHOCYTE IMMUNE GLOBULIN, ANTI-THYMOCYTE G', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1011\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\1011\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lymphocyte Immune Globulin, Anti-Thymocyte Globulin', 'Lymphocyte Immune Globulin, Anti-Thymocyte Globulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6536\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6536\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Lysine', 'Lysine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6572\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6572\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mafenide', 'Mafenide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314718\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314718\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'magnesium acetate', 'magnesium acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\486895\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\486895\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'magnesium amino acid chelate', 'magnesium amino acid chelate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\142131\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\142131\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Magnesium Aspartate', 'Magnesium Aspartate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214688\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214688\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Magnesium lactate', 'Magnesium lactate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52364\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52364\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Magnesium Salicylate', 'Magnesium Salicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\215976\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\215976\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'MAGNESIUM, CHELATED', 'MAGNESIUM, CHELATED', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6606\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6606\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Malathion', 'Malathion', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91264\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91264\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Malt soup extract', 'Malt soup extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236987\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236987\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'MANGAFODIPIR', 'MANGAFODIPIR', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29261\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29261\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'manganese chloride', 'manganese chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6646\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6646\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Maprotiline', 'Maprotiline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\620216\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\620216\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'maraviroc', 'maraviroc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\227239\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\227239\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Masoprocol', 'Masoprocol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6664\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6664\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mazindol', 'Mazindol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6669\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6669\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Measles Vaccine', 'Measles Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\804179\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\804179\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Measles Virus Vaccine Live, Enders'' attenuated Edmonston strain', 'Measles Virus Vaccine Live, Enders'' attenuated Edmonston strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235574\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235574\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'MEASLES VIRUS VACCINE,LIVE ATTENUATED', 'MEASLES VIRUS VACCINE,LIVE ATTENUATED', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6673\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6673\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mecamylamine', 'Mecamylamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\274403\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\274403\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'mecasermin', 'mecasermin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\616877\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\616877\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'mecasermin rinfabate', 'mecasermin rinfabate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6674\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6674\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mechlorethamine', 'Mechlorethamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6676\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6676\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Meclizine', 'Meclizine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29418\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29418\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'meclocycline', 'meclocycline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29439\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29439\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'medrysone', 'medrysone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\257844\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\257844\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mefenamate', 'Mefenamate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6693\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6693\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mefenamic Acid', 'Mefenamic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6694\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6694\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mefloquine', 'Mefloquine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\82130\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\82130\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mefloquine Hydrochloride', 'Mefloquine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6703\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6703\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Megestrol', 'Megestrol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6711\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6711\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Melatonin', 'Melatonin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41493\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\41493\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'meloxicam', 'meloxicam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6718\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6718\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Melphalan', 'Melphalan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29491\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29491\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'menadiol', 'menadiol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29501\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'meningococcal group A polysaccharide', 'meningococcal group A polysaccharide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29503\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29503\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'meningococcal group C polysaccharide', 'meningococcal group C polysaccharide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314724\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314724\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'MENINGOCOCCAL POLYSACCHARIDE VACCINE GROUP W-135', 'MENINGOCOCCAL POLYSACCHARIDE VACCINE GROUP W-135', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314725\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314725\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'MENINGOCOCCAL POLYSACCHARIDE VACCINE GROUP Y', 'MENINGOCOCCAL POLYSACCHARIDE VACCINE GROUP Y', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\107770\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\107770\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mepenzolate', 'Mepenzolate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6756\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6756\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mephentermine', 'Mephentermine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6759\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6759\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mepivacaine', 'Mepivacaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\15080\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\15080\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'mequinol', 'mequinol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6762\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6762\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Merbromin', 'Merbromin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6769\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6769\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mercury', 'Mercury', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29561\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29561\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'meropenem', 'meropenem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52582\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52582\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'mesalamine', 'mesalamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\44\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\44\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mesna', 'Mesna', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6805\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6805\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metaraminol', 'Metaraminol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59078\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59078\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'metaxalone', 'metaxalone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\155080\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\155080\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methacholine', 'Methacholine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6821\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6821\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methantheline', 'methantheline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6826\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6826\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methazolamide', 'Methazolamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6832\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6832\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methenamine', 'Methenamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6835\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6835\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methimazole', 'Methimazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6845\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6845\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methocarbamol', 'Methocarbamol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6847\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6847\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methohexital', 'Methohexital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6851\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6851\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methotrexate', 'Methotrexate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6854\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6854\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methoxsalen', 'Methoxsalen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6857\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6857\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methoxyflurane', 'Methoxyflurane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29704\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29704\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methoxyphenamine', 'methoxyphenamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47858\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\47858\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methsuximide', 'methsuximide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29787\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29787\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methyl salicylate', 'methyl salicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6877\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6877\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methyldopate', 'Methyldopate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6883\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6883\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methylergonovine', 'Methylergonovine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29899\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\29899\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'methylnaltrexone', 'methylnaltrexone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6901\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6901\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methylphenidate', 'Methylphenidate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10824\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10824\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metipranolol', 'Metipranolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6916\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6916\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metolazone', 'Metolazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6923\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6923\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metyrapone', 'Metyrapone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\266604\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\266604\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Metyrosine', 'Metyrosine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325887\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325887\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'micafungin', 'micafungin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6932\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6932\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Miconazole', 'Miconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6960\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6960\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Midazolam', 'Midazolam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6963\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6963\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Midodrine', 'Midodrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6964\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6964\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mifepristone', 'Mifepristone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\30009\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\30009\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'miglitol', 'miglitol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\402316\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\402316\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Miglustat', 'Miglustat', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\283579\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\283579\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Milk thistle extract', 'Milk thistle extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\588250\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\588250\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'milnacipran', 'milnacipran', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52769\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\52769\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Milrinone', 'Milrinone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\577312\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\577312\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mineral Oil, Light', 'Mineral Oil, Light', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6980\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6980\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Minocycline', 'Minocycline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6984\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6984\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Minoxidil', 'Minoxidil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\15996\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\15996\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mirtazapine', 'Mirtazapine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\632\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\632\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mitomycin', 'Mitomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7004\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7004\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mitotane', 'Mitotane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7005\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7005\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mitoxantrone', 'Mitoxantrone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\30125\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\30125\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'modafinil', 'modafinil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7019\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7019\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Molindone', 'Molindone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\108118\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\108118\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mometasone', 'Mometasone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\17145\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\17145\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'monobenzone', 'monobenzone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\30198\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\30198\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'monooctanoin', 'monooctanoin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\88249\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\88249\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'montelukast', 'montelukast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\40169\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\40169\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Moricizine', 'Moricizine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\477468\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\477468\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Morphine Liposomal', 'Morphine Liposomal', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\30257\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\30257\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'moxonidine', 'moxonidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798372\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798372\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mumps Virus Vaccine Live, Jeryl Lynn Strain', 'Mumps Virus Vaccine Live, Jeryl Lynn Strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42372\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42372\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Mupirocin', 'Mupirocin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42405\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42405\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Muromonab-CD3', 'Muromonab-CD3', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68149\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68149\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'mycophenolate mofetil', 'mycophenolate mofetil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31448\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31448\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nabumetone', 'nabumetone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7226\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7226\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nadolol', 'Nadolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28656\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\28656\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nafarelin', 'Nafarelin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31476\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31476\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'naftifine', 'naftifine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7238\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7238\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nalbuphine', 'Nalbuphine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31479\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31479\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nalmefene', 'nalmefene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7242\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7242\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Naloxone', 'Naloxone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7243\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7243\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Naltrexone', 'Naltrexone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7244\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7244\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nandrolone', 'Nandrolone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\141366\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\141366\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'naratriptan', 'naratriptan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7268\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7268\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Natamycin', 'Natamycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\274332\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\274332\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nateglinide', 'nateglinide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31555\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31555\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nebivolol', 'nebivolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31563\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31563\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nedocromil', 'Nedocromil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31565\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31565\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nefazodone', 'nefazodone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797629\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797629\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Neisseria meningitidis serogroup A capsular polysaccharide diphtheria toxoid protein conjugate vaccine', 'Neisseria meningitidis serogroup A capsular polysaccharide diphtheria toxoid protein conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797631\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797631\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Neisseria meningitidis serogroup C capsular polysaccharide diphtheria toxoid protein conjugate vaccine', 'Neisseria meningitidis serogroup C capsular polysaccharide diphtheria toxoid protein conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797633\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797633\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Neisseria meningitidis serogroup W-135 capsular polysaccharide diphtheria toxoid protein conjugate vaccine', 'Neisseria meningitidis serogroup W-135 capsular polysaccharide diphtheria toxoid protein conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797635\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\797635\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Neisseria meningitidis serogroup Y capsular polysaccharide diphtheria toxoid protein conjugate vaccine', 'Neisseria meningitidis serogroup Y capsular polysaccharide diphtheria toxoid protein conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\274771\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\274771\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nelarabine', 'nelarabine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\298665\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\298665\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nepafenac', 'nepafenac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7337\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7337\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Netilmicin', 'Netilmicin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\53654\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\53654\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nevirapine', 'Nevirapine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7396\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7396\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nicardipine', 'Nicardipine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\662281\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\662281\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nilotinib', 'nilotinib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7426\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7426\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nimodipine', 'Nimodipine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7435\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7435\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nisoldipine', 'Nisoldipine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31819\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31819\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nitazoxanide', 'nitazoxanide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\61805\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\61805\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'nitisinone', 'nitisinone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7442\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7442\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nitric Oxide', 'Nitric Oxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7455\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7455\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nitrofurazone', 'Nitrofurazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7456\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7456\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nitrogen', 'Nitrogen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7476\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7476\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nitroprusside', 'Nitroprusside', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7486\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7486\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nitrous Oxide', 'Nitrous Oxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42319\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42319\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nizatidine', 'Nizatidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\326374\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\326374\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'norelgestromin', 'norelgestromin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7512\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7512\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Norepinephrine', 'Norepinephrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7517\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7517\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Norfloxacin', 'Norfloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7531\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7531\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Nortriptyline', 'Nortriptyline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\317235\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\317235\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'NPH Insulin, Beef', 'NPH Insulin, Beef', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\317598\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\317598\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'NPH Insulin, Beef-Pork', 'NPH Insulin, Beef-Pork', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221108\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221108\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'NPH Insulin, Pork', 'NPH Insulin, Pork', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\77674\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\77674\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'octocrylene', 'octocrylene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32301\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32301\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Octoxynol', 'Octoxynol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7617\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7617\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Octreotide', 'Octreotide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\118463\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\118463\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Olmesartan medoxomil', 'Olmesartan medoxomil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\135391\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\135391\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'olopatadine', 'olopatadine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32385\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32385\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'olsalazine', 'olsalazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7646\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7646\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Omeprazole', 'Omeprazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\26225\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\26225\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ondansetron', 'Ondansetron', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114189\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114189\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Opiates', 'Opiates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\139994\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\139994\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oprelvekin', 'Oprelvekin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37925\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37925\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'orlistat', 'orlistat', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\260101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\260101\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oseltamivir', 'Oseltamivir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7762\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7762\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ouabain', 'Ouabain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32592\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32592\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'oxaliplatin', 'oxaliplatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7779\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7779\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxandrolone', 'Oxandrolone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32613\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32613\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'oxaprozin', 'oxaprozin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\660767\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\660767\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxaprozin potassium', 'Oxaprozin potassium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7781\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7781\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxazepam', 'Oxazepam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32624\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32624\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'oxcarbazepine', 'oxcarbazepine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32638\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32638\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'oxiconazole', 'oxiconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\359064\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\359064\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'OXTAFLUOROPROPANE', 'OXTAFLUOROPROPANE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32673\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32673\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'oxybenzone', 'oxybenzone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32675\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32675\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'oxybutynin', 'oxybutynin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\831883\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\831883\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'oxybutynin hydrochloride', 'oxybutynin hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7806\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7806\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxygen', 'Oxygen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7812\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7812\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxymetazoline', 'Oxymetazoline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7813\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7813\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxymetholone', 'Oxymetholone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7814\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7814\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxymorphone', 'Oxymorphone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\110\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\110\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Oxyquinoline', 'Oxyquinoline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7839\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7839\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'p-Hydroxyamphetamine', 'p-Hydroxyamphetamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56946\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56946\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Paclitaxel', 'Paclitaxel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\196319\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\196319\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Palifermin', 'Palifermin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\679314\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\679314\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'paliperidone', 'paliperidone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\194279\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\194279\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'palivizumab', 'palivizumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\70561\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\70561\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'palonosetron', 'palonosetron', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11473\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11473\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pamidronate', 'pamidronate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235379\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\235379\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pancrelipase', 'Pancrelipase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7883\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7883\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pancuronium', 'Pancuronium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7884\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7884\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pancuronium Bromide', 'Pancuronium Bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\263034\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\263034\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'panitumumab', 'panitumumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\324030\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\324030\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Papaya preparation', 'Papaya preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7910\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7910\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Paramethasone', 'Paramethasone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73710\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73710\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'paricalcitol', 'paricalcitol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7934\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7934\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Paromomycin', 'Paromomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59768\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59768\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pegademase bovine', 'pegademase bovine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\498509\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\498509\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pegaptanib', 'pegaptanib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34132\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34132\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pegaspargase', 'pegaspargase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\278739\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\278739\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pegvisomant', 'pegvisomant', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7966\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7966\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pemoline', 'Pemoline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7973\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7973\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Penbutolol', 'Penbutolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59839\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59839\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'penciclovir', 'penciclovir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7975\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7975\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Penicillamine', 'Penicillamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7994\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7994\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentamidine', 'Pentamidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8001\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8001\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentazocine', 'Pentazocine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8004\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8004\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentobarbital', 'Pentobarbital', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\155046\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\155046\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentosan Polysulfate', 'Pentosan Polysulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8011\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8011\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentostatin', 'Pentostatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8013\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8013\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pentoxifylline', 'Pentoxifylline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8016\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8016\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pepsin A', 'Pepsin A', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8047\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8047\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pergolide', 'Pergolide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\54552\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\54552\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Perindopril', 'Perindopril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33199\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33199\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Permethrin', 'Permethrin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214755\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214755\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pertussis, acellular', 'Pertussis, acellular', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33219\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33219\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Peruvian balsam', 'Peruvian balsam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8120\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8120\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenazopyridine', 'Phenazopyridine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33272\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33272\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'phendimetrazine', 'phendimetrazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8123\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8123\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenelzine', 'Phenelzine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8130\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8130\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenindione', 'Phenindione', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8141\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8141\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenolsulfonphthalein', 'Phenolsulfonphthalein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8149\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8149\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phenoxybenzamine', 'Phenoxybenzamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8152\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8152\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phentermine', 'Phentermine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8153\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8153\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phentolamine', 'Phentolamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\70619\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\70619\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'phenylacetate', 'phenylacetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81647\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81647\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'phenylbutyrate', 'phenylbutyrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8259\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8259\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Phosphoric acid', 'Phosphoric acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\321952\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\321952\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pimecrolimus', 'Pimecrolimus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8331\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8331\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pimozide', 'Pimozide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8332\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8332\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pindolol', 'Pindolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259276\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259276\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'PINE BARK EXTRACT', 'PINE BARK EXTRACT', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8333\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8333\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pine tar', 'Pine tar', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33738\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33738\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pioglitazone', 'pioglitazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8345\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8345\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Piperonyl Butoxide', 'Piperonyl Butoxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33767\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33767\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pirbuterol', 'pirbuterol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8356\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8356\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Piroxicam', 'Piroxicam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8375\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8375\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Placebo (substance)', 'Placebo (substance)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33835\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\33835\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'plasma protein fraction', 'plasma protein fraction', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\733003\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\733003\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Plerixafor', 'Plerixafor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221144\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221144\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pneumococcal polysaccharides (23)', 'pneumococcal polysaccharides (23)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\360487\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\360487\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pneumococcal polysaccharides (7)', 'Pneumococcal polysaccharides (7)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8463\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8463\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'podophyllotoxin', 'podophyllotoxin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\763096\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\763096\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Poliovirus vaccine inactivated, type 1 (Mahoney)', 'Poliovirus vaccine inactivated, type 1 (Mahoney)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\763098\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\763098\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Poliovirus vaccine inactivated, type 2 (MEF-1)', 'Poliovirus vaccine inactivated, type 2 (MEF-1)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\763100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\763100\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Poliovirus vaccine inactivated, type 3 (Saukett)', 'Poliovirus vaccine inactivated, type 3 (Saukett)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\155156\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\155156\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Poloxamer', 'Poloxamer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\155155\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\155155\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Poloxamer 407', 'Poloxamer 407', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221147\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221147\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'POLYETHYLENE GLYCOL 3350', 'POLYETHYLENE GLYCOL 3350', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\105669\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\105669\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Polysaccharide iron complex', 'Polysaccharide iron complex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8565\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8565\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Polythiazide', 'Polythiazide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91596\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91596\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Polyvalent crotalidae antivenin', 'Polyvalent crotalidae antivenin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91610\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91610\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Polyvalent pneumococcal vaccine', 'Polyvalent pneumococcal vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8570\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8570\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Polyvinyl Alcohol', 'Polyvinyl Alcohol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236381\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236381\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Poractant alfa', 'Poractant alfa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\282446\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\282446\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'posaconazole', 'posaconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8366\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8366\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Posterior Pituitary Hormones', 'Posterior Pituitary Hormones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\54987\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\54987\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Potassium Acetate', 'Potassium Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34296\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34296\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'potassium bicarbonate', 'potassium bicarbonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34300\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'potassium carbonate', 'potassium carbonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34311\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34311\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Potassium Hydroxide', 'Potassium Hydroxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34316\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34316\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'potassium nitrate', 'potassium nitrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34318\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34318\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'potassium perchlorate', 'potassium perchlorate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8604\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8604\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Potassium Permanganate', 'Potassium Permanganate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34322\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34322\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'potassium phosphate', 'potassium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8606\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8606\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Potassium Sorbate', 'Potassium Sorbate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236907\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236907\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'POTASSIUM SULFIDE', 'POTASSIUM SULFIDE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\746741\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\746741\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pramipexole', 'Pramipexole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\139953\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\139953\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pramlintide', 'Pramlintide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8628\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8628\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Praziquantel', 'Praziquantel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8629\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8629\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Prazosin', 'Prazosin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34369\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34369\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'prednicarbate', 'prednicarbate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8640\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8640\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Prednisone', 'Prednisone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\187832\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\187832\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pregabalin', 'pregabalin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8686\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8686\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Prilocaine', 'Prilocaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8691\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8691\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Primidone', 'Primidone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8700\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Procainamide', 'Procainamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8702\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8702\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Procarbazine', 'Procarbazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8718\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8718\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Procyclidine', 'Procyclidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8723\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8723\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Proflavine', 'Proflavine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8737\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8737\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Proline', 'Proline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8761\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8761\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propantheline', 'Propantheline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8782\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8782\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propofol', 'Propofol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8792\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8792\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'propylhexedrine', 'propylhexedrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236461\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236461\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'propylhexedrine hydrochloride', 'propylhexedrine hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8793\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8793\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propyliodone', 'Propyliodone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8794\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8794\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Propylthiouracil', 'Propylthiouracil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8825\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8825\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Protamine Sulfate (USP)', 'Protamine Sulfate (USP)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8826\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8826\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Protamines', 'Protamines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\723868\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\723868\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Protein C Concentrate (Human)', 'Protein C Concentrate (Human)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8886\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8886\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Protriptyline', 'Protriptyline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34905\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\34905\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'proxymetacaine', 'proxymetacaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24902\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\24902\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Prussian blue', 'Prussian blue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8948\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8948\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Purified Protein Derivative of Tuberculin', 'Purified Protein Derivative of Tuberculin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8984\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8984\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pyrantel', 'Pyrantel', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8987\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8987\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pyrazinamide', 'Pyrazinamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8991\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\8991\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pyrethrins', 'Pyrethrins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9000\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pyridostigmine', 'Pyridostigmine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\684879\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\684879\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pyridoxine', 'pyridoxine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9010\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9010\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pyrimethamine', 'Pyrimethamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35100\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pyrithione', 'pyrithione', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35185\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35185\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'quazepam', 'quazepam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\51272\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\51272\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'quetiapine', 'quetiapine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\76887\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\76887\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'quinagolide', 'quinagolide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236233\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236233\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'quinagolide hydrochloride', 'quinagolide hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35208\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35208\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'quinapril', 'quinapril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9066\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9066\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Quinestrol', 'Quinestrol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\229367\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\229367\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'quinupristin', 'quinupristin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114979\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114979\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rabeprazole', 'rabeprazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\830471\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\830471\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rabies immune globulin, (human) vaccine', 'rabies immune globulin, (human) vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89886\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89886\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rabies immune globulin, human', 'rabies immune globulin, human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9097\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9097\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rabies Vaccines', 'Rabies Vaccines', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\830457\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\830457\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rabies virus vaccine flury-lep strain', 'rabies virus vaccine flury-lep strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\830464\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\830464\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rabies virus vaccine wistar strain PM-1503-3M (Human)', 'rabies virus vaccine wistar strain PM-1503-3M (Human)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\66887\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\66887\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Racepinephrine', 'Racepinephrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72143\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72143\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Raloxifene', 'Raloxifene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\719872\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\719872\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Raltegravir', 'Raltegravir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\596205\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\596205\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ramelteon', 'ramelteon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35296\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35296\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ramipril', 'Ramipril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\595060\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\595060\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ranibizumab', 'ranibizumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9143\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9143\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ranitidine', 'Ranitidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35829\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35829\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ranolazine', 'ranolazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\134748\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\134748\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rasagiline', 'rasagiline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\283821\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\283821\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rasburicase', 'Rasburicase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\232540\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\232540\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'red yeast rice', 'red yeast rice', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\640062\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\640062\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'regadenoson', 'regadenoson', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73032\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73032\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'remifentanil', 'remifentanil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73044\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73044\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'repaglinide', 'repaglinide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35382\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35382\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'resorcinol', 'resorcinol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\119246\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\119246\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'respiratory syncytial virus immune globulin intravenous', 'respiratory syncytial virus immune globulin intravenous', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\642274\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\642274\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'retapamulin', 'retapamulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\76895\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\76895\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Reteplase', 'Reteplase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253197\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253197\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'RETEPLASE,RECOMBINANT', 'RETEPLASE,RECOMBINANT', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35465\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35465\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rho(D) Immune Globulin', 'Rho(D) Immune Globulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9344\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9344\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ribavirin', 'Ribavirin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\55672\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\55672\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rifabutin', 'Rifabutin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9384\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9384\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rifampin', 'Rifampin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35617\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35617\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rifapentine', 'rifapentine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\763450\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\763450\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rilonacept', 'rilonacept', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35623\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35623\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Riluzole', 'Riluzole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9386\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9386\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rimantadine', 'Rimantadine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\55681\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\55681\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rimexolone', 'rimexolone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73056\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73056\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Risedronate', 'Risedronate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9392\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9392\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ritodrine', 'Ritodrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\121191\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\121191\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rituximab', 'rituximab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\183379\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\183379\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rivastigmine', 'rivastigmine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68139\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68139\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rocuronium', 'Rocuronium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32521\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32521\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rocuronium bromide', 'rocuronium bromide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\232158\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\232158\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rofecoxib', 'rofecoxib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805452\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805452\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Romiplostim', 'Romiplostim', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72302\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ropinirole', 'ropinirole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35780\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35780\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ropivacaine', 'ropivacaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236732\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236732\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ROSE HIPS', 'ROSE HIPS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\301542\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\301542\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rosuvastatin', 'rosuvastatin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805573\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805573\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rotavirus Vaccine, Live Attenuated, G1P[8] Human 89-12 strain', 'Rotavirus Vaccine, Live Attenuated, G1P[8] Human 89-12 strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\616739\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\616739\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rotigotine', 'Rotigotine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35805\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35805\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'royal jelly', 'royal jelly', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\762817\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\762817\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Rubella Virus Vaccine Live (Wistar RA 27-3 Strain)', 'Rubella Virus Vaccine Live (Wistar RA 27-3 Strain)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69036\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69036\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'rufinamide', 'rufinamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\602738\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\602738\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Saccharomyces boulardii lyo', 'Saccharomyces boulardii lyo', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9511\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9511\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Saccharomyces cerevisiae', 'Saccharomyces cerevisiae', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214817\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214817\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sacrosidase', 'Sacrosidase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9515\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9515\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Safflower Oil', 'Safflower Oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9549\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9549\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Samarium', 'Samarium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\196342\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\196342\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'SAMARIUM Sm153', 'SAMARIUM Sm153', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\753340\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\753340\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sapropterin', 'Sapropterin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\753341\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\753341\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sapropterin dihydrochloride', 'Sapropterin dihydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9556\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9556\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Saralasin', 'Saralasin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7830\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\7830\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Saralasin Acetate', 'Saralasin Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69634\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69634\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sargramostim', 'sargramostim', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\349948\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\349948\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'SARRACENIA PURPUREA preparation', 'SARRACENIA PURPUREA preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36224\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36224\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Scarlet Red', 'Scarlet Red', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9639\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9639\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Selegiline', 'Selegiline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36344\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36344\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Selenious Acid', 'Selenious Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36345\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36345\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'selenium disulfide', 'selenium disulfide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9671\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9671\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Serine', 'Serine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56188\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56188\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sermorelin', 'Sermorelin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36437\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36437\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sertraline', 'Sertraline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214824\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\214824\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sevelamer', 'sevelamer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\660890\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\660890\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sevelamer carbonate', 'sevelamer carbonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36453\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36453\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sevoflurane', 'sevoflurane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81782\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\81782\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Shark cartilage extract', 'Shark cartilage extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91472\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91472\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Shark liver oil preparation', 'Shark liver oil preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36514\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36514\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sibutramine', 'sibutramine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\136411\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\136411\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sildenafil', 'sildenafil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9778\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9778\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Silicones', 'Silicones', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9793\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9793\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Silver Sulfadiazine', 'Silver Sulfadiazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\753346\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\753346\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sinecatechins', 'Sinecatechins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\35302\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sirolimus', 'Sirolimus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\593411\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\593411\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sitagliptin', 'sitagliptin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\262263\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\262263\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Skullcap preparation', 'Skullcap preparation', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259434\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259434\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'SLIPPERY ELM BARK', 'SLIPPERY ELM BARK', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\833079\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\833079\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'smallpox vaccine live vaccinia virus', 'smallpox vaccine live vaccinia virus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798467\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798467\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Smallpox Vaccine Live, New York City Board of Health Vaccinia Strain', 'Smallpox Vaccine Live, New York City Board of Health Vaccinia Strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237108\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237108\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Acetate Trihydrate', 'Sodium Acetate Trihydrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\267366\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\267366\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Ascorbate', 'Sodium Ascorbate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36685\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36685\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium carbonate', 'sodium carbonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\219965\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\219965\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Chloride, Bacteriostatic', 'Sodium Chloride, Bacteriostatic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\806664\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\806664\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium choride', 'sodium choride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\261435\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\261435\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium ferric gluconate complex', 'Sodium ferric gluconate complex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56476\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56476\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium gluconate', 'Sodium gluconate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9881\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9881\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Hypochlorite', 'Sodium Hypochlorite', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9884\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9884\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Iodide', 'Sodium Iodide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36696\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36696\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium metabisulfite', 'sodium metabisulfite', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9892\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9892\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Morrhuate', 'Sodium Morrhuate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9899\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9899\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Oxybate', 'Sodium Oxybate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36702\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36702\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium perborate', 'sodium perborate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236719\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236719\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Phosphate, Dibasic', 'Sodium Phosphate, Dibasic', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221125\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\221125\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'SODIUM PHOSPHATE,MONOBASIC,MONOHYDRATE', 'SODIUM PHOSPHATE,MONOBASIC,MONOHYDRATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56512\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56512\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium polystyrene sulfonate', 'Sodium polystyrene sulfonate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56513\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56513\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium propionate', 'Sodium propionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36723\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\36723\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sodium sulfite', 'sodium sulfite', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9913\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9913\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Tetradecyl Sulfate', 'Sodium Tetradecyl Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56570\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56570\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'somatrem', 'somatrem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\61148\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\61148\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Somatropin', 'Somatropin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\495881\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\495881\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sorafenib', 'sorafenib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9947\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9947\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sotalol', 'Sotalol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9949\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9949\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Soybean Oil', 'Soybean Oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18469\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\18469\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sparfloxacin', 'sparfloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9991\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9991\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Spiramycin', 'Spiramycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9997\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\9997\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Spironolactone', 'Spironolactone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\258326\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\258326\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ST. JOHN''S WORT EXTRACT', 'ST. JOHN''S WORT EXTRACT', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10032\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10032\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Stanozolol', 'Stanozolol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10046\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10046\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Starch', 'Starch', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59763\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\59763\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Stavudine', 'Stavudine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798220\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798220\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptococcus pneumoniae serotype 14 capsular antigen diphtheria CRM197 protein conjugate vaccine', 'Streptococcus pneumoniae serotype 14 capsular antigen diphtheria CRM197 protein conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798222\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798222\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptococcus pneumoniae serotype 18C capsular antigen diphtheria CRM197 protein conjugate vaccine', 'Streptococcus pneumoniae serotype 18C capsular antigen diphtheria CRM197 protein conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798224\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798224\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptococcus pneumoniae serotype 19F capsular antigen diphtheria CRM197 protein conjugate vaccine', 'Streptococcus pneumoniae serotype 19F capsular antigen diphtheria CRM197 protein conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798226\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798226\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptococcus pneumoniae serotype 23F capsular antigen diphtheria CRM197 protein conjugate vaccine', 'Streptococcus pneumoniae serotype 23F capsular antigen diphtheria CRM197 protein conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798228\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798228\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptococcus pneumoniae serotype 4 capsular antigen diphtheria CRM197 protein conjugate vaccine', 'Streptococcus pneumoniae serotype 4 capsular antigen diphtheria CRM197 protein conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798230\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798230\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptococcus pneumoniae serotype 6B capsular antigen diphtheria CRM197 protein conjugate vaccine', 'Streptococcus pneumoniae serotype 6B capsular antigen diphtheria CRM197 protein conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798232\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798232\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptococcus pneumoniae serotype 9V capsular antigen diphtheria CRM197 protein conjugate vaccine', 'Streptococcus pneumoniae serotype 9V capsular antigen diphtheria CRM197 protein conjugate vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10104\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10104\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptodornase', 'Streptodornase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10106\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10106\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptokinase', 'Streptokinase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10109\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptomycin', 'Streptomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10114\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Streptozocin', 'Streptozocin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\66422\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\66422\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Strychnine', 'Strychnine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3446\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3446\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Succimer', 'Succimer', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10156\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10156\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sucralfate', 'Sucralfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56795\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\56795\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sufentanil', 'Sufentanil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10167\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10167\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulbactam', 'Sulbactam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37319\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37319\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sulconazole', 'sulconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10171\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10171\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfadiazine', 'Sulfadiazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10173\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10173\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfadoxine', 'Sulfadoxine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10176\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10176\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfamerazine', 'Sulfamerazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10178\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10178\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfamethazine', 'Sulfamethazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10179\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10179\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfamethizole', 'Sulfamethizole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10180\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10180\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfamethoxazole', 'Sulfamethoxazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10188\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10188\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfapyridine', 'Sulfapyridine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10205\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10205\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfinpyrazone', 'Sulfinpyrazone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10212\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10212\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfobromophthalein', 'Sulfobromophthalein', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\203200\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\203200\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulfobromophthalein Sodium', 'Sulfobromophthalein Sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10237\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10237\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sulindac', 'Sulindac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37422\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37422\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sunflower seed oil', 'sunflower seed oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\357977\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\357977\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'sunitinib', 'sunitinib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10245\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10245\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Superoxide Dismutase', 'Superoxide Dismutase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\353114\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\353114\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'synthetic secretin', 'synthetic secretin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10318\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10318\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tacrine', 'Tacrine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42316\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42316\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tacrolimus', 'Tacrolimus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10324\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10324\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tamoxifen', 'Tamoxifen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\77492\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\77492\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tamsulosin', 'tamsulosin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10328\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10328\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tannic Acid', 'Tannic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83947\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\83947\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tazarotene', 'tazarotene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37617\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37617\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tazobactam', 'tazobactam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69627\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69627\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tea Tree Oil', 'Tea Tree Oil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\139778\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\139778\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tegaserod', 'tegaserod', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\57021\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\57021\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Teicoplanin', 'Teicoplanin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\474128\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\474128\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'telbivudine', 'telbivudine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10355\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10355\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Temazepam', 'Temazepam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37776\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37776\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'temozolomide', 'temozolomide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\657797\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\657797\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'temsirolimus', 'temsirolimus', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259280\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\259280\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tenecteplase', 'Tenecteplase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37798\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37798\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Terazosin', 'Terazosin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37801\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'terbinafine', 'terbinafine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37806\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37806\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'terconazole', 'terconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32915\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\32915\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Teriparatide', 'Teriparatide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114260\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114260\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Teriparatide Acetate', 'Teriparatide Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10378\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10378\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Testolactone', 'Testolactone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\835827\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\835827\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'testosterone cypionate', 'testosterone cypionate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91603\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91603\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tetanus immune globulin, human', 'Tetanus immune globulin, human', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798306\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\798306\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tetanus Toxoid Vaccine', 'Tetanus Toxoid Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10390\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10390\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tetrabenazine', 'Tetrabenazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10402\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10402\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tetrahydrocannabinol', 'Tetrahydrocannabinol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37935\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\37935\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tetrahydrozoline', 'tetrahydrozoline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10432\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10432\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thalidomide', 'Thalidomide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10450\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10450\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thiabendazole', 'Thiabendazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10471\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10471\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thiethylperazine', 'Thiethylperazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10485\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10485\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thioguanine', 'Thioguanine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10493\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10493\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thiopental', 'Thiopental', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6765\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6765\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thiopronine', 'Thiopronine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91099\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\91099\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thiosalicylate', 'Thiosalicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10473\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10473\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thiotepa', 'Thiotepa', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10510\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10510\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thiothixene', 'Thiothixene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10553\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10553\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thymol', 'Thymol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10565\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10565\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thyroglobulin', 'Thyroglobulin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325521\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\325521\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'THYROID (BEEF)', 'THYROID (BEEF)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4952\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\4952\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'thyrotropin alfa (USP)', 'thyrotropin alfa (USP)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10580\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10580\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thyrotropin-Releasing Hormone', 'Thyrotropin-Releasing Hormone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10594\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10594\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ticlopidine', 'Ticlopidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\384455\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\384455\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tigecycline', 'tigecycline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\57230\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\57230\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tiludronate', 'Tiludronate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69646\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69646\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tinzaparin', 'tinzaparin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38298\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38298\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tioconazole', 'tioconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\190548\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\190548\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tipranavir', 'tipranavir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73137\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73137\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tirofiban', 'tirofiban', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\57258\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\57258\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tizanidine', 'tizanidine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72937\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\72937\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tolcapone', 'tolcapone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10636\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10636\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tolmetin', 'Tolmetin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10637\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10637\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tolnaftate', 'Tolnaftate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10638\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10638\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tolonium chloride', 'Tolonium chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\119565\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\119565\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tolterodine', 'tolterodine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38404\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38404\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'topiramate', 'topiramate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\57308\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\57308\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Topotecan', 'Topotecan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38409\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38409\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Toremifene', 'Toremifene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38413\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38413\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'torsemide', 'torsemide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\263010\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\263010\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tositumomab', 'tositumomab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10689\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10689\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tramadol', 'Tramadol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38454\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38454\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trandolapril', 'trandolapril', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10691\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10691\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tranexamic Acid', 'Tranexamic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10734\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10734\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tranylcypromine', 'Tranylcypromine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\224905\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\224905\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trastuzumab', 'trastuzumab', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\283809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\283809\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'travoprost', 'travoprost', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10737\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10737\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trazodone', 'Trazodone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\343048\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\343048\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Treprostinil', 'Treprostinil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10753\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10753\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tretinoin', 'Tretinoin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10756\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10756\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triacetin', 'Triacetin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10767\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10767\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triazolam', 'Triazolam', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38574\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38574\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trichloroacetaldehyde', 'trichloroacetaldehyde', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38578\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38578\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trichlorofluoromethane', 'trichlorofluoromethane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38585\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38585\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trichlorotrifluoroethane', 'trichlorotrifluoroethane', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\465118\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\465118\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trichophyton antigen', 'Trichophyton antigen', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10795\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10795\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triclosan', 'Triclosan', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10798\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10798\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trientine', 'Trientine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38623\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38623\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'triethanolamine', 'triethanolamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38624\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38624\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'TRIETHANOLAMINE POLYPEPTIDE OLEATE CONDENSATE', 'TRIETHANOLAMINE POLYPEPTIDE OLEATE CONDENSATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10800\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trifluoperazine', 'Trifluoperazine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10803\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10803\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trifluridine', 'Trifluridine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10811\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10811\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trihexyphenidyl', 'Trihexyphenidyl', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10814\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10814\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Triiodothyronine', 'Triiodothyronine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10827\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10827\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trimethadione', 'Trimethadione', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38685\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38685\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trimethobenzamide', 'trimethobenzamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10829\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10829\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trimethoprim', 'Trimethoprim', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42333\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\42333\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trimetrexate', 'Trimetrexate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38866\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38866\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trolamine salicylate', 'trolamine salicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10864\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10864\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Troleandomycin', 'Troleandomycin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10865\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10865\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tromethamine', 'Tromethamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10869\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10869\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tropicamide', 'Tropicamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\115552\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\115552\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'trovafloxacin', 'trovafloxacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10878\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10878\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Trypan Blue', 'Trypan Blue', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10917\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10917\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tubocurarine', 'Tubocurarine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38998\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\38998\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'tyloxapol', 'tyloxapol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\762595\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\762595\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Typhoid Vaccine Live Ty21a', 'Typhoid Vaccine Live Ty21a', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\807219\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\807219\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain', 'Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10960\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10960\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Tyropanoate', 'Tyropanoate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10975\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10975\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ubiquinone', 'Ubiquinone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314881\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\314881\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Undecylenate', 'Undecylenate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10991\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10991\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Unithiol', 'Unithiol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10995\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10995\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Uracil', 'Uracil', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\134404\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\134404\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Urofollitropin', 'Urofollitropin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11055\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11055\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Urokinase', 'Urokinase', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\62427\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\62427\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ursodeoxycholate', 'Ursodeoxycholate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10953\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\10953\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vaccines, Typhoid', 'Vaccines, Typhoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73645\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\73645\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'valacyclovir', 'valacyclovir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\278567\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\278567\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'valdecoxib', 'valdecoxib', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\275891\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\275891\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'valganciclovir', 'valganciclovir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31435\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\31435\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'valrubicin', 'valrubicin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39364\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39364\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'vanadyl sulfate', 'vanadyl sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\591622\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\591622\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'varenicline', 'varenicline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805486\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\805486\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Varicella Virus Vaccine Live (Oka-Merck) strain', 'Varicella Virus Vaccine Live (Oka-Merck) strain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11149\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11149\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vasopressin (USP)', 'Vasopressin (USP)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39786\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39786\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'venlafaxine', 'venlafaxine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\118886\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\118886\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Verteporfin', 'Verteporfin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39511\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39511\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vi polysaccharide vaccine, typhoid', 'Vi polysaccharide vaccine, typhoid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\14851\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\14851\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vigabatrin', 'Vigabatrin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11198\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11198\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vinblastine', 'Vinblastine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39541\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39541\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'vinorelbine', 'vinorelbine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6728\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\6728\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vitamin K 3', 'Vitamin K 3', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\826072\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\826072\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'von Willebrand Factor (Human)', 'von Willebrand Factor (Human)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\121243\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\121243\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'voriconazole', 'voriconazole', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\194337\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\194337\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vorinostat', 'Vorinostat', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11289\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11289\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Warfarin', 'Warfarin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237020\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\237020\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Wild yam extract', 'Wild yam extract', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11363\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11363\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Xenon', 'Xenon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11377\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11377\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Xylitol', 'Xylitol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39841\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39841\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'xylometazoline', 'xylometazoline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11378\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11378\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Xylose', 'Xylose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89890\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\89890\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Yellow Fever Vaccine', 'Yellow Fever Vaccine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114970\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\114970\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'zafirlukast', 'zafirlukast', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3363\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\3363\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Zalcitabine', 'Zalcitabine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\74667\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\74667\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'zaleplon', 'zaleplon', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69722\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\69722\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Zanamivir', 'Zanamivir', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68503\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\68503\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ziconotide', 'ziconotide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11413\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11413\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Zidovudine', 'Zidovudine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\40575\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\40575\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'zileuton', 'zileuton', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39937\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39937\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'zinc chloride', 'zinc chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236911\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\236911\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ZINC CITRATE', 'ZINC CITRATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11423\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\11423\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Zinc Oxide', 'Zinc Oxide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253210\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\253210\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ZINC, CHELATED', 'ZINC, CHELATED', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\77655\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\77655\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'zoledronic acid', 'zoledronic acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39993\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39993\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'zolpidem', 'zolpidem', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39994\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\39994\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'zomepirac', 'zomepirac', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\58331\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\58331\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Zomepirac sodium', 'Zomepirac sodium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\759603\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\zzzz\759603\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ZOSTER VACCINE LIVE (OKA-MERCK)', 'ZOSTER VACCINE LIVE (OKA-MERCK)', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'VITAMINS', 'VITAMINS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT050\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT050\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'VITAMIN A', 'VITAMIN A', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT050\19143\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT050\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT050\19143\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Beta Carotene', 'Beta Carotene', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT050\35406\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT050\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT050\35406\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'retinyl palmitate', 'retinyl palmitate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'VITAMIN B', 'VITAMIN B', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT101\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CYANOCOBALAMIN', 'CYANOCOBALAMIN', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT101\236302\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT101\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT101\236302\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'HYDROXOCOBALAMIN ACETATE', 'HYDROXOCOBALAMIN ACETATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT102\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'FOLIC ACID/LEUCOVORIN', 'FOLIC ACID/LEUCOVORIN', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT102\4511\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT102\4511\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Folic Acid', 'Folic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT102\225852\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT102\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT102\225852\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Leucovorin Calcium', 'Leucovorin Calcium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT107\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT107\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'PANTOTHENIC ACID', 'PANTOTHENIC ACID', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT107\1918\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT107\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT107\1918\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcium Pantothenate', 'Calcium Pantothenate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT109\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'VITAMIN B,OTHER', 'VITAMIN B,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT109\253185\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT109\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT100\VT109\253185\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Liver derivative complex', 'Liver derivative complex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'VITAMIN D', 'VITAMIN D', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\VT501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\VT501\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'CALCIFEDIOL', 'CALCIFEDIOL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\VT501\1889\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\VT501\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\VT501\1889\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Calcifediol', 'Calcifediol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\VT504\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\VT504\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'ERGOCALCIFEROL', 'ERGOCALCIFEROL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\VT504\4018\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\VT504\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT500\VT504\4018\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ergocalciferol', 'Ergocalciferol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT700\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'VITAMIN K', 'VITAMIN K', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT700\VT701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT700\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT700\VT701\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MENADIOL', 'MENADIOL', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT700\VT701\52549\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT700\VT701\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT700\VT701\52549\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Menadiol sodium phosphate', 'Menadiol sodium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'VITAMINS,COMBINATIONS', 'VITAMINS,COMBINATIONS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MULTIVITAMINS', 'MULTIVITAMINS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\74\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\74\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + '4-Aminobenzoic Acid', '4-Aminobenzoic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\39625\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\39625\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'alpha-tocopherol acetate', 'alpha-tocopherol acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\1151\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\1151\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ascorbic Acid', 'Ascorbic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\1588\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\1588\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Biotin', 'Biotin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\2418\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\2418\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cholecalciferol', 'Cholecalciferol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\2449\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\2449\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Choline', 'Choline', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\2451\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\2451\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Choline Bitartrate', 'Choline Bitartrate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\20974\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\20974\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'choline salicylate', 'choline salicylate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\42891\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\42891\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chondroitin Sulfate, Sodium Salt', 'Chondroitin Sulfate, Sodium Salt', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\2473\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\2473\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Chondroitin Sulfates', 'Chondroitin Sulfates', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\62356\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\62356\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Folate', 'Folate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\4845\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\4845\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Glucosamine', 'Glucosamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\5833\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\5833\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Inositol', 'Inositol', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\90176\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\90176\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Iron', 'Iron', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\6383\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\6383\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Luteinizing Hormone', 'Luteinizing Hormone', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\6623\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\6623\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Manganese', 'Manganese', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\6837\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\6837\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methionine', 'Methionine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\7393\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\7393\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Niacin', 'Niacin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\7405\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\7405\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Niacinamide', 'Niacinamide', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\62400\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\62400\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'pantothenate', 'pantothenate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\7891\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\7891\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Pantothenic Acid', 'Pantothenic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\9346\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\9346\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Riboflavin', 'Riboflavin', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\9641\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\9641\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Selenium', 'Selenium', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\10454\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\10454\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thiamine', 'Thiamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\6417\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\6417\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Thioctic Acid', 'Thioctic Acid', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\402899\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\402899\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'TOCOPHEROL,DL-ALPHA', 'TOCOPHEROL,DL-ALPHA', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\11246\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\11246\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vitamin A', 'Vitamin A', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\11248\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\11248\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vitamin B 12', 'Vitamin B 12', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\11251\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\11251\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vitamin B Complex', 'Vitamin B Complex', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\42954\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\42954\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vitamin B6', 'Vitamin B6', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\11253\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\11253\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vitamin D', 'Vitamin D', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\39626\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\39626\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'vitamin E succinate', 'vitamin E succinate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\8308\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\8308\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Vitamin K 1', 'Vitamin K 1', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\11416\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\11416\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Zinc', 'Zinc', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\58295\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT801\58295\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Zinc Acetate', 'Zinc Acetate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'MULTIVITAMINS WITH MINERALS', 'MULTIVITAMINS WITH MINERALS', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\1512\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\1512\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Betaine', 'Betaine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\21009\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\21009\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'chromic chloride', 'chromic chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\2839\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\2839\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Copper Gluconate', 'Copper Gluconate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\21579\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\21579\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Copper Sulfate', 'Copper Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\24942\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\24942\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ferrous gluconate', 'ferrous gluconate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\52358\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\52358\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'MAGNESIUM GLUCONATE', 'MAGNESIUM GLUCONATE', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\6585\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\6585\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Magnesium Sulfate', 'Magnesium Sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\29268\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\29268\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'manganese sulfate', 'manganese sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\9873\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\9873\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sodium Fluoride', 'Sodium Fluoride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\58300\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT802\58300\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Zinc Gluconate', 'Zinc Gluconate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 1, 0, + 1, 0, @sqlset_drug_exposure, NULL, NULL, + 'VITAMIN COMBINATIONS,OTHER', 'VITAMIN COMBINATIONS,OTHER', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\1752\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\1752\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Bromelains', 'Bromelains', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\1919\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\1919\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'calcium phosphate', 'calcium phosphate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\2530\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\2530\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'CHYMOTRYPSIN', 'CHYMOTRYPSIN', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\42604\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\42604\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Cobalamins', 'Cobalamins', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\21833\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\21833\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'cupric chloride', 'cupric chloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\24941\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\24941\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Ferrous fumarate', 'Ferrous fumarate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\24947\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\24947\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'ferrous sulfate', 'ferrous sulfate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\4570\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\4570\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Fructose', 'Fructose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\26344\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\26344\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'guar gum', 'guar gum', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\5920\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\5920\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Intrinsic factor', 'Intrinsic factor', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\6816\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\6816\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methamphetamine', 'Methamphetamine', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\82044\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\82044\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Methamphetamine Hydrochloride', 'Methamphetamine Hydrochloride', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\7892\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\7892\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Papain', 'Papain', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\196238\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\196238\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'soy protein isolate', 'soy protein isolate', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\10159\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\10159\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'Sucrose', 'Sucrose', GETDATE(), GETDATE() +INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\10890\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\medications\VT000\VT800\VT809\10890\', 1, 0, + 0, 0, @sqlset_drug_exposure, NULL, NULL, + 'TRYPSIN', 'TRYPSIN', GETDATE(), GETDATE() + +/** + * Set ParentIds + */ +UPDATE app.Concept +SET ParentId = P.Id +FROM app.Concept AS C + INNER JOIN (SELECT P.Id, P.ParentId, P.ExternalId + FROM app.Concept AS P) AS P ON C.ExternalParentID = P.ExternalID +WHERE C.ParentId IS NULL + +/** + * Set RootIds + */ +; WITH roots AS +( + SELECT RootId = C.Id + , RootUiDisplayName = C.UiDisplayName + , C.IsRoot + , C.Id + , C.ParentId + , C.UiDisplayName + FROM app.Concept AS C + WHERE C.IsRoot = 1 + UNION ALL + SELECT roots.RootId + , roots.RootUiDisplayName + , C2.IsRoot + , C2.Id + , C2.ParentId + , C2.UiDisplayName + FROM roots + INNER JOIN app.Concept AS C2 ON C2.ParentId = roots.Id +) + +UPDATE app.Concept +SET RootId = roots.RootId +FROM app.Concept AS C + INNER JOIN roots ON C.Id = roots.Id +WHERE C.RootId IS NULL diff --git a/src/shrine-conv-temp/create_leaf_concepts.py b/src/shrine-conv-temp/create_leaf_concepts.py new file mode 100644 index 000000000..133aa2c6f --- /dev/null +++ b/src/shrine-conv-temp/create_leaf_concepts.py @@ -0,0 +1,133 @@ +import os +import json +import re + +with open(os.path.join('./api_tests', 'ontology.json'), 'r', encoding='utf-8') as fin: + ontology = json.loads(fin.read()) + +concepts = [] +for record in ontology: + display = record["displayName"] + last_part = [x for x in record["path"].split('\\') if x][-1] + category = record["conceptCategory"] + concept = { + "id": f"urn:leaf:concept:shrine:{record['path']}", + "parentId": f"urn:leaf:concept:shrine:{record['parentPath']}" if record["parentPath"] != None else None, + "isNumeric": '1' if record["isLab"] else '0', + "isParent": '1' if record["conceptType"] != "Leaf" else '0', + "isRoot": '1' if record["isRoot"] == True else '0', + "uiDisplayName": display, + "uiDisplayText": display, + "sqlSetId": None, + "sqlSetWhere": 'NULL', + "sqlFieldNumeric": 'NULL' + } + if category == "Demographic": + concept["sqlSetId"] = "@sqlset_person" + if display == 'Female': + concept["sqlSetWhere"] = "EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.gender_concept_id AND @C.concept_name = 'FEMALE')" + elif display == 'Male': + concept["sqlSetWhere"] = "EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.gender_concept_id AND @C.concept_name = 'MALE')" + elif display.endswith("old"): + age = display.replace('years old', '').replace('>=', '').strip() + concept["sqlSetWhere"] = 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) ' + \ + (f'BETWEEN {age.replace("-", " AND ")}' if '-' in age else f'= {age}') + elif 'Race' in display and display != 'Race': + if 'Hispanic' in display: + if 'Not' in display: + concept["sqlSetWhere"] = "EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.ethnicity_concept_id AND @C.concept_name = 'Not Hispanic or Latino')" + else: + concept["sqlSetWhere"] = "EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.ethnicity_concept_id AND @C.concept_name = 'Hispanic or Latino')" + else: + concept["sqlSetWhere"] = f"EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.race_concept_id AND @C.concept_name = '{last_part}')" + elif category == "Diagnosis": + concept["sqlSetId"] = "@sqlset_condition_occurrence" + icd9 = re.search('\(([^;]*)\)', display) + if icd9: + icd9 = icd9.group(1) + concept["sqlSetWhere"] = '@.condition_source_value ' + ("BETWEEN '" + icd9.replace("-", "' AND '") + "'" if '-' in icd9 else f"= '{icd9}'") + elif category == "Lab": + concept["sqlSetId"] = "@sqlset_measurement" + concept["sqlFieldNumeric"] = "value_as_number" + concept["sqlSetWhere"] = f"EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.measurement_concept_id AND @C.concept_code = '{last_part}')" + elif category == "Medication": + concept["sqlSetId"] = "@sqlset_drug_exposure" + + concepts.append(concept) + + +def clean_for_sql(val): + if val == 'NULL': + return val + if val == None: + return 'NULL' + val = val.replace("'", "''") + return "'" + val + "'" + + + +with open(os.path.join('./api_tests', 'create_concepts.sql'), 'w+', encoding='utf-8') as fout: + fout.write(''' +DECLARE @user NVARCHAR(20) = 'leaf_scripts' +INSERT INTO app.ConceptSqlSet (SqlSetFrom, IsEncounterBased, IsEventBased, SqlFieldDate, Created, CreatedBy, Updated, UpdatedBy) +SELECT * +FROM (VALUES ('dbo.person', 0, 0, NULL, GETDATE(), @user, GETDATE(), @user), + ('dbo.condition_occurrence', 1, 0, '@.condition_start_date', GETDATE(), @user, GETDATE(), @user), + ('dbo.measurement', 1, 0, '@.measurement_date', GETDATE(), @user, GETDATE(), @user), + ('dbo.drug_exposure', 1, 0, '@.drug_exposure_start_date', GETDATE(), @user, GETDATE(), @user) + ) AS X(col1,col2,col3,col4,col5,col6,col7,col8) + +DECLARE @sqlset_person INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.person') +DECLARE @sqlset_condition_occurrence INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.condition_occurrence') +DECLARE @sqlset_measurement INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.measurement') +DECLARE @sqlset_drug_exposure INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.drug_exposure') +''') + for concept in concepts: + fout.write(f"""INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric, + IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText, + AddDateTime, ContentLastUpdateDateTime) + SELECT {clean_for_sql(concept['id'])}, {clean_for_sql(concept['parentId'])}, {clean_for_sql(concept['id'])}, 1, {concept['isNumeric']}, + {concept['isParent']}, {concept['isRoot']}, {concept['sqlSetId']}, {clean_for_sql(concept['sqlSetWhere'])}, {clean_for_sql(concept["sqlFieldNumeric"])}, + {clean_for_sql(concept['uiDisplayName'])}, {clean_for_sql(concept['uiDisplayText'])}, GETDATE(), GETDATE()\n""") + + fout.write(""" +/** + * Set ParentIds + */ +UPDATE app.Concept +SET ParentId = P.Id +FROM app.Concept AS C + INNER JOIN (SELECT P.Id, P.ParentId, P.ExternalId + FROM app.Concept AS P) AS P ON C.ExternalParentID = P.ExternalID +WHERE C.ParentId IS NULL + +/** + * Set RootIds + */ +; WITH roots AS +( + SELECT RootId = C.Id + , RootUiDisplayName = C.UiDisplayName + , C.IsRoot + , C.Id + , C.ParentId + , C.UiDisplayName + FROM app.Concept AS C + WHERE C.IsRoot = 1 + UNION ALL + SELECT roots.RootId + , roots.RootUiDisplayName + , C2.IsRoot + , C2.Id + , C2.ParentId + , C2.UiDisplayName + FROM roots + INNER JOIN app.Concept AS C2 ON C2.ParentId = roots.Id +) + +UPDATE app.Concept +SET RootId = roots.RootId +FROM app.Concept AS C + INNER JOIN roots ON C.Id = roots.Id +WHERE C.RootId IS NULL +""") \ No newline at end of file diff --git a/src/shrine-conv-temp/get_concept_tree.py b/src/shrine-conv-temp/get_concept_tree.py new file mode 100644 index 000000000..3a13d9e4b --- /dev/null +++ b/src/shrine-conv-temp/get_concept_tree.py @@ -0,0 +1,42 @@ +import os +import requests +import json +import warnings + +warnings.filterwarnings("ignore") +os.environ["PYTHONWARNINGS"] = "ignore:Unverified HTTPS request" +hub_base_uri = 'https://localhost:6443' + + +def get_children(path): + children = [] + print(f'Getting children for {path}...') + resp = requests.post(f'{hub_base_uri}/shrine-api/ontology/children', json={"path": path}, verify=False) + if resp.text: + direct_children = json.loads(resp.text) + for child in direct_children: + child['isRoot'] = False + child['parentPath'] = path + children.append(child) + if child["conceptType"] in ["Container", "Folder"]: + children += get_children(child["path"]) + return children + + +resp = requests.get(f'{hub_base_uri}/shrine-api/ontology/root', verify=False) +roots = json.loads(resp.text) + +concepts = [] +for root in roots: + true_root = root["children"][0] + true_root['isRoot'] = True + true_root['parentPath'] = None + concepts.append(true_root) + children = get_children(root["children"][0]["path"]) + concepts += children + +with open('./api_tests/ontology.json', 'w+', encoding='utf-8') as fout: + fout.write(json.dumps(concepts, indent=4)) + + + diff --git a/src/shrine-conv-temp/messages_received.json b/src/shrine-conv-temp/messages_received.json new file mode 100644 index 000000000..84258de90 --- /dev/null +++ b/src/shrine-conv-temp/messages_received.json @@ -0,0 +1,397 @@ +// 1 - UpdateQueryAtQep +{ + "queryId": 100523611964537284, + "queryStatus": { + "encodedClass": "ReceivedAtHub" + }, + "changeDate": 1696525308901, + "encodedClass": "UpdateQueryAtQepWithStatus" +} +// 2 - UpdateQueryAtQep +{ + "queryId": 100523611964537284, + "changeDate": 1696525309001, + "resultProgresses": [ + { + "id": 1784089895897391647, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 1696525309001, + "changeDate": 1696525309001 + }, + "queryId": 100523611964537284, + "adapterNodeId": 3854912477537176565, + "adapterNodeName": "Local Node 2", + "status": { + "encodedClass": "IdAssigned" + }, + "statusMessage": null, + "crcQueryInstanceId": null + }, + { + "id": 1702258560717024998, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 1696525309001, + "changeDate": 1696525309001 + }, + "queryId": 100523611964537284, + "adapterNodeId": 8304711555476111654, + "adapterNodeName": "Leaf Test", + "status": { + "encodedClass": "IdAssigned" + }, + "statusMessage": null, + "crcQueryInstanceId": null + }, + { + "id": 4279393489486628251, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 1696525309001, + "changeDate": 1696525309001 + }, + "queryId": 100523611964537284, + "adapterNodeId": 3698283121779390840, + "adapterNodeName": "Local Node 1", + "status": { + "encodedClass": "IdAssigned" + }, + "statusMessage": null, + "crcQueryInstanceId": null + } + ], + "encodedClass": "UpdateQueryReadyForAdapters" +} +// 3 - RunQueryForResult +{ + "query": { + "id": 100523611964537284, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 4, + "createDate": 1696525308735, + "changeDate": 1696525309001 + }, + "status": { + "encodedClass": "ReadyForAdapters" + }, + "queryDefinition": { + "expression": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "45-54 years old", + "termPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": null, + "endDate": null, + "occursAtLeast": 1, + "encodedClass": "ConceptGroup" + } + ], + "encodedClass": "Conjunction" + } + }, + "output": { + "encodedClass": "Count" + }, + "queryName": "Test from code", + "nodeOfOriginId": 8304711555476111654, + "researcherId": 24823904, + "topicId": 1, + "projectName": "Testing 2", + "flagged": false, + "flaggedMessage": null, + "encodedClass": "QueryProgress" + }, + "researcher": { + "id": 24823904, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "userName": "demo", + "userDomainName": "i2b2demo", + "nodeId": 8304711555476111654 + }, + "node": { + "id": 8304711555476111654, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 1691522665369, + "changeDate": 1691522665369 + }, + "name": "Leaf Test", + "key": "leaftest", + "userDomainName": "leaftest", + "momQueueName": "leaftest", + "adminEmail": "", + "sendQueries": true, + "understandsProtocol": 2, + "momId": "leaftest" + }, + "topic": { + "id": 1481654093, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "researcherId": 24823904, + "name": "Testing", + "description": "This is a topic for testing SHRINE 2020 (1)" + }, + "resultProgress": { + "id": 1702258560717024998, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 2, + "createDate": 1696525309001, + "changeDate": 1696525309083 + }, + "queryId": 100523611964537284, + "adapterNodeId": 8304711555476111654, + "adapterNodeName": "Leaf Test", + "status": { + "encodedClass": "SentToAdapter" + }, + "statusMessage": null, + "crcQueryInstanceId": null + }, + "protocolVersion": 2 +} +// 4 - Result +{ + "id": 1784089895897391647, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 2, + "createDate": 1696525309001, + "changeDate": 1696525309081 + }, + "queryId": 100523611964537284, + "adapterNodeId": 3854912477537176565, + "adapterNodeName": "Local Node 2", + "status": { + "encodedClass": "SentToAdapter" + }, + "statusMessage": null, + "crcQueryInstanceId": null, + "encodedClass": "ResultProgress" +} +// 5 - Result +{ + "id": 1702258560717024998, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 2, + "createDate": 1696525309001, + "changeDate": 1696525309083 + }, + "queryId": 100523611964537284, + "adapterNodeId": 8304711555476111654, + "adapterNodeName": "Leaf Test", + "status": { + "encodedClass": "SentToAdapter" + }, + "statusMessage": null, + "crcQueryInstanceId": null, + "encodedClass": "ResultProgress" +} +// 6 - Result +{ + "id": 4279393489486628251, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 2, + "createDate": 1696525309001, + "changeDate": 1696525309084 + }, + "queryId": 100523611964537284, + "adapterNodeId": 3698283121779390840, + "adapterNodeName": "Local Node 1", + "status": { + "encodedClass": "SentToAdapter" + }, + "statusMessage": null, + "crcQueryInstanceId": null, + "encodedClass": "ResultProgress" +} +// 7 - Result +{ + "id": 4279393489486628251, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 2, + "createDate": 1696525309001, + "changeDate": 1696525309155 + }, + "queryId": 100523611964537284, + "adapterNodeId": 3698283121779390840, + "adapterNodeName": "Local Node 1", + "status": { + "encodedClass": "ReceivedByAdapter" + }, + "statusMessage": null, + "crcQueryInstanceId": null, + "encodedClass": "ResultProgress" +} +// 8 - UpdateQueryAtQep +{ + "queryId": 100523611964537284, + "queryStatus": { + "encodedClass": "SentToAdapters" + }, + "changeDate": 1696525309299, + "encodedClass": "UpdateQueryAtQepWithStatus" +} +// 9 - Result +{ + "id": 1784089895897391647, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 3, + "createDate": 1696525309001, + "changeDate": 1696525309163 + }, + "queryId": 100523611964537284, + "adapterNodeId": 3854912477537176565, + "adapterNodeName": "Local Node 2", + "status": { + "encodedClass": "ReceivedByAdapter" + }, + "statusMessage": null, + "crcQueryInstanceId": null, + "encodedClass": "ResultProgress" +} +// 10 - Result +{ + "id": 4279393489486628251, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 3, + "createDate": 1696525309001, + "changeDate": 1696525309415 + }, + "queryId": 100523611964537284, + "adapterNodeId": 3698283121779390840, + "adapterNodeName": "Local Node 1", + "status": { + "encodedClass": "SubmittedToCRC" + }, + "statusMessage": null, + "crcQueryInstanceId": null, + "encodedClass": "ResultProgress" +} +// 11 - Result +{ + "id": 1784089895897391647, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 4, + "createDate": 1696525309001, + "changeDate": 1696525309473 + }, + "queryId": 100523611964537284, + "adapterNodeId": 3854912477537176565, + "adapterNodeName": "Local Node 2", + "status": { + "encodedClass": "SubmittedToCRC" + }, + "statusMessage": null, + "crcQueryInstanceId": null, + "encodedClass": "ResultProgress" +} +// 12 - Result +{ + "id": 4279393489486628251, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 4, + "createDate": 1696525309001, + "changeDate": 1696525313734 + }, + "queryId": 100523611964537284, + "adapterNodeId": 3698283121779390840, + "adapterNodeName": "Local Node 1", + "status": { + "encodedClass": "ResultFromCRC" + }, + "statusMessage": "FINISHED", + "crcQueryInstanceId": 2095, + "count": 40, + "obfuscatingParameters": { + "binSize": 5, + "stdDev": 6.5, + "noiseClamp": 10, + "lowLimit": 10 + }, + "breakdowns": null, + "encodedClass": "CrcResult" +} +// 13 - Result +{ + "id": 1784089895897391647, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 5, + "createDate": 1696525309001, + "changeDate": 1696525314404 + }, + "queryId": 100523611964537284, + "adapterNodeId": 3854912477537176565, + "adapterNodeName": "Local Node 2", + "status": { + "encodedClass": "ResultFromCRC" + }, + "statusMessage": "FINISHED", + "crcQueryInstanceId": 2065, + "count": 35, + "obfuscatingParameters": { + "binSize": 5, + "stdDev": 6.5, + "noiseClamp": 10, + "lowLimit": 10 + }, + "breakdowns": null, + "encodedClass": "CrcResult" +} \ No newline at end of file diff --git a/src/shrine-conv-temp/nic_steps.md b/src/shrine-conv-temp/nic_steps.md new file mode 100644 index 000000000..36242d011 --- /dev/null +++ b/src/shrine-conv-temp/nic_steps.md @@ -0,0 +1,20 @@ +0. `nvm use 12.16.1` +1. `mvn clean install -DskipTests` +2. `cd docker/scripts` +3. `docker build --platform linux/amd64 --no-cache -f src/main/docker/images/mysql/Dockerfile -t shrine-mysql:0.1 ../../` +4. `docker build --platform linux/arm64/v8 --no-cache --tag shrine-certs:0.1 --progress plain -f src/main/docker/images/certs/Dockerfile ../../` +5. `docker build --platform=linux/arm64/v8 --no-cache --tag shrine-node:0.1 -f src/main/docker/images/shrine-node/Dockerfile ../../ --build-arg SHRINE_VERSION=4.1.0` +6. `docker build --platform=linux/arm64/v8 --no-cache --build-arg I2B2_WILDFLY_TAG=release-v1.7.13 --tag shrine-i2b2-wildfly:0.1 -f src/main/docker/images/i2b2/Dockerfile ../../` +7. `cd ../../` +8. `docker build -f docker/scripts/src/main/docker/images/zookeeper/Dockerfile --no-cache -t zookeeper:3.7.0 . --build-arg SCALA_VERSION=2.12 --build-arg KAFKA_VERSION=3.4.0` +9. `docker build -f docker/scripts/src/main/docker/images/kafka/Dockerfile --no-cache -t kafka:3.0.0 . --build-arg SCALA_VERSION=2.12 --build-arg KAFKA_VERSION=3.4.0` +10. `cd docker/scripts` + +# All nodes +11. `docker-compose --env-file src/main/docker/.env -f src/main/docker/dev-environments/docker-compose.yml -f src/main/docker/dev-environments/certs/docker-compose.yml -f src/main/docker/dev-environments/kafka/docker-compose.yml -f src/main/docker/dev-environments/shrine-hub/docker-compose.yml -f src/main/docker/dev-environments/shrine-node1/docker-compose.yml -f src/main/docker/dev-environments/shrine-node2/docker-compose.yml up --detach` + +# Hub and node 1 only +11. `docker-compose --env-file src/main/docker/.env -f src/main/docker/dev-environments/docker-compose.yml -f src/main/docker/dev-environments/certs/docker-compose.yml -f src/main/docker/dev-environments/kafka/docker-compose.yml -f src/main/docker/dev-environments/shrine-hub/docker-compose.yml -f src/main/docker/dev-environments/shrine-node1/docker-compose.yml up --detach` +12. https://localhost:6443/shrine-api/shrine-webclient + + diff --git a/src/shrine-conv-temp/ontology.json b/src/shrine-conv-temp/ontology.json new file mode 100644 index 000000000..f4600378b --- /dev/null +++ b/src/shrine-conv-temp/ontology.json @@ -0,0 +1,276902 @@ +[ + { + "displayName": "Demographics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\", + "conceptCategory": "Demographic", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": true, + "parentPath": null + }, + { + "displayName": "Age", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\", + "conceptCategory": "Demographic", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\" + }, + { + "displayName": "0-9 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": "0 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\0 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\" + }, + { + "displayName": "1 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\1 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\" + }, + { + "displayName": "2 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\2 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\" + }, + { + "displayName": "3 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\3 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\" + }, + { + "displayName": "4 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\4 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\" + }, + { + "displayName": "5 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\5 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\" + }, + { + "displayName": "6 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\6 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\" + }, + { + "displayName": "7 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\7 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\" + }, + { + "displayName": "8 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\8 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\" + }, + { + "displayName": "9 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\9 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\0-9 years old\\" + }, + { + "displayName": "10-17 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": "10 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\10 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\" + }, + { + "displayName": "11 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\11 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\" + }, + { + "displayName": "12 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\12 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\" + }, + { + "displayName": "13 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\13 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\" + }, + { + "displayName": "14 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\14 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\" + }, + { + "displayName": "15 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\15 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\10-17 years old\\\\15 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\" + }, + { + "displayName": "16 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\16 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\10-17 years old\\\\16 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\" + }, + { + "displayName": "17 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\17 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\10-17 years old\\\\17 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\10-17 years old\\" + }, + { + "displayName": "18-34 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\18-34 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": "18 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\18 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "19 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\19 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "20 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\20 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\18-34 years old\\\\20 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "21 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\21 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\18-34 years old\\\\21 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "22 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\22 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "23 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\23 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "24 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\24 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "25 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\25 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\18-34 years old\\\\25 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "26 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\26 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "27 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\27 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "28 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\28 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "29 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\29 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "30 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\30 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "31 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\31 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "32 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\32 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "33 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\33 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "34 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\34 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\18-34 years old\\" + }, + { + "displayName": "35-44 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": "35 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\35 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\35-44 years old\\\\35 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\" + }, + { + "displayName": "36 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\36 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\" + }, + { + "displayName": "37 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\37 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\" + }, + { + "displayName": "38 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\38 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\35-44 years old\\\\38 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\" + }, + { + "displayName": "39 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\39 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\" + }, + { + "displayName": "40 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\40 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\" + }, + { + "displayName": "41 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\41 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\35-44 years old\\\\41 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\" + }, + { + "displayName": "42 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\42 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\" + }, + { + "displayName": "43 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\43 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\" + }, + { + "displayName": "44 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\44 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\35-44 years old\\\\44 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\35-44 years old\\" + }, + { + "displayName": "45-54 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\45-54 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": "45 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\45 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\" + }, + { + "displayName": "46 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\46 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\" + }, + { + "displayName": "47 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\47 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\" + }, + { + "displayName": "48 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\48 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\" + }, + { + "displayName": "49 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\49 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\" + }, + { + "displayName": "50 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\50 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\" + }, + { + "displayName": "51 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\51 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\45-54 years old\\\\51 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\" + }, + { + "displayName": "52 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\52 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\" + }, + { + "displayName": "53 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\53 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\45-54 years old\\\\53 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\" + }, + { + "displayName": "54 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\54 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\" + }, + { + "displayName": "55-64 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": "55 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\55 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\55-64 years old\\\\55 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\" + }, + { + "displayName": "56 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\56 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\" + }, + { + "displayName": "57 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\57 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\" + }, + { + "displayName": "58 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\58 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\55-64 years old\\\\58 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\" + }, + { + "displayName": "59 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\59 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\55-64 years old\\\\59 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\" + }, + { + "displayName": "60 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\60 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\" + }, + { + "displayName": "61 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\61 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\" + }, + { + "displayName": "62 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\62 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\" + }, + { + "displayName": "63 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\63 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\" + }, + { + "displayName": "64 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\64 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\55-64 years old\\" + }, + { + "displayName": "65-74 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": "65 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\65 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\" + }, + { + "displayName": "66 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\66 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\" + }, + { + "displayName": "67 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\67 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\" + }, + { + "displayName": "68 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\68 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\" + }, + { + "displayName": "69 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\69 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\" + }, + { + "displayName": "70 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\70 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\" + }, + { + "displayName": "71 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\71 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\" + }, + { + "displayName": "72 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\72 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\65-74 years old\\\\72 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\" + }, + { + "displayName": "73 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\73 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\" + }, + { + "displayName": "74 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\74 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\65-74 years old\\" + }, + { + "displayName": "75-84 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\75-84 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": "75 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\75 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\" + }, + { + "displayName": "76 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\76 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\" + }, + { + "displayName": "77 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\77 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\" + }, + { + "displayName": "78 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\78 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\" + }, + { + "displayName": "79 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\79 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\" + }, + { + "displayName": "80 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\80 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\" + }, + { + "displayName": "81 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\81 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\" + }, + { + "displayName": "82 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\82 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\" + }, + { + "displayName": "83 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\83 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\" + }, + { + "displayName": "84 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\84 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\75-84 years old\\" + }, + { + "displayName": "85-89 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\85-89 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": "85 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\85-89 years old\\85 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\85-89 years old\\" + }, + { + "displayName": "86 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\85-89 years old\\86 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\85-89 years old\\" + }, + { + "displayName": "87 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\85-89 years old\\87 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\85-89 years old\\" + }, + { + "displayName": "88 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\85-89 years old\\88 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\85-89 years old\\\\88 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\85-89 years old\\" + }, + { + "displayName": "89 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\85-89 years old\\89 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\85-89 years old\\" + }, + { + "displayName": ">=65 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\>=65 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\>=65 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": ">=80 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\>=80 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Age\\\\>=80 years old", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": ">=85 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\>=85 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": ">=90 years old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\>=90 years old\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": "Unknown", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\Unknown\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\" + }, + { + "displayName": "Gender", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\", + "conceptCategory": "Demographic", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Gender", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\" + }, + { + "displayName": "Female", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Female\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Gender\\\\Female", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\" + }, + { + "displayName": "Male", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Male\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Gender\\\\Male", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\" + }, + { + "displayName": "Unknown", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\Unknown\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Gender\\" + }, + { + "displayName": "Language", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\", + "conceptCategory": "Demographic", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\" + }, + { + "displayName": "Albanian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Albanian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Amharic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Amharic\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Amharic", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Arabic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Arabic\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Armenian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Armenian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Australian languages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Australian languages\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Bantu (Other)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Bantu (Other)\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Bengali", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Bengali\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Bini", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Bini\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Bini", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Bosnian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Bosnian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Bulgarian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Bulgarian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Burmese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Burmese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Castilian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Castilian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Castilian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Central Khmer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Central Khmer\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Chinese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Chinese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Creoles and pidgins (Other)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Creoles and pidgins (Other)\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Creoles and pidgins, English-based (Other)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Creoles and pidgins, English-based (Other)\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Creoles and pidgins, French-based (Other)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Creoles and pidgins, French-based (Other)\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Creoles and pidgins, Portuguese-based (Other)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Creoles and pidgins, Portuguese-based (Other)\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Czech", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Czech\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Czech", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Danish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Danish\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Danish", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Dutch", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Dutch\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Dutch", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Edo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Edo\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Edo", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "English", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\English\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\English", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Ewe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Ewe\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Filipino", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Filipino\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Filipino", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Flemish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Flemish\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Flemish", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "French", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\French\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Fulah", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Fulah\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Fulah", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "German", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\German\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Greek, Modern (1453-)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Greek, Modern (1453-)\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Gujarati", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Gujarati\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Haitian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Haitian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Haitian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Haitian Creole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Haitian Creole\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Haitian Creole", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Hausa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Hausa\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Hausa", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Hebrew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Hebrew\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Hebrew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Hebrew\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Hindi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Hindi\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Hmong", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Hmong\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Hungarian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Hungarian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Hungarian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Icelandic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Icelandic\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Igbo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Igbo\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Ijo languages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Ijo languages\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Italian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Italian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Italian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Japanese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Japanese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Japanese", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Kanuri", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Kanuri\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Korean", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Korean\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Lao", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Lao\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Latvian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Latvian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Lithuanian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Lithuanian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Macedonian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Macedonian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Macedonian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Navaho", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Navaho\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Navajo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Navajo\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Ndebele, North", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Ndebele, North\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "North American Indian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\North American Indian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "North Ndebele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\North Ndebele\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Norwegian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Norwegian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Panjabi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Panjabi\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Persian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Persian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Pilipino", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Pilipino\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Pilipino", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Polish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Polish\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Portuguese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Portuguese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Punjabi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Punjabi\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Romanian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Romanian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Russian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Russian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Serbian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Serbian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Serbo-Croatian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Serbo-Croatian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Shona", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Shona\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Sign Languages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Sign Languages\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Sign Languages", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Slavic (Other)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Slavic (Other)\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Slovenian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Slovenian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Somali", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Somali\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Somali", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Spanish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Spanish\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Swahili", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Swahili\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Swedish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Swedish\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Tagalog", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Tagalog\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Tamil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Tamil\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Language\\\\Tamil", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Thai", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Thai\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Tibetan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Tibetan\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Tigrinya", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Tigrinya\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Turkish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Turkish\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Ukrainian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Ukrainian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Urdu", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Urdu\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Vietnamese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Vietnamese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Yoruba", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Yoruba\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "zz Unknown", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\Unknown\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Language\\" + }, + { + "displayName": "Marital Status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\", + "conceptCategory": "Demographic", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Marital Status", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\" + }, + { + "displayName": "Divorced", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\Divorced\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\" + }, + { + "displayName": "Domestic partner", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\Domestic partner\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\" + }, + { + "displayName": "Legally Separated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\Legally Separated\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\" + }, + { + "displayName": "Married", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\Married\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\" + }, + { + "displayName": "Never Married", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\Never Married\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\" + }, + { + "displayName": "Widowed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\Widowed\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\" + }, + { + "displayName": "zz Unknown", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\Unknown\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Marital Status\\\\Unknown", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Marital Status\\" + }, + { + "displayName": "Race and Ethnicity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\", + "conceptCategory": "Demographic", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\" + }, + { + "displayName": "E1: Hispanic or Latino", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\" + }, + { + "displayName": "Central American", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\" + }, + { + "displayName": "Costa Rican", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\Costa Rican\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\" + }, + { + "displayName": "Guatemalan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\Guatemalan\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\" + }, + { + "displayName": "Honduran", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\Honduran\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\" + }, + { + "displayName": "Nicaraguan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\Nicaraguan\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\" + }, + { + "displayName": "Panamanian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\Panamanian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\" + }, + { + "displayName": "Salvadoran", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\Salvadoran\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Central American\\" + }, + { + "displayName": "Cuban", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Cuban\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\" + }, + { + "displayName": "Latin American", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Latin American\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\" + }, + { + "displayName": "Mexican", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Mexican\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\" + }, + { + "displayName": "Chicano", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Mexican\\Chicano\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Mexican\\" + }, + { + "displayName": "La Raza", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Mexican\\La Raza\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Mexican\\" + }, + { + "displayName": "Mexican American", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Mexican\\Mexican American\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Mexican\\" + }, + { + "displayName": "Mexicano", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Mexican\\Mexicano\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Mexican\\" + }, + { + "displayName": "Puerto Rican", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Puerto Rican\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\" + }, + { + "displayName": "South American", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\" + }, + { + "displayName": "Argentinean", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\Argentinean\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\" + }, + { + "displayName": "Bolivian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\Bolivian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\" + }, + { + "displayName": "Chilean", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\Chilean\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\" + }, + { + "displayName": "Colombian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\Colombian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\" + }, + { + "displayName": "Criollo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\Criollo\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\" + }, + { + "displayName": "Ecuadorian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\Ecuadorian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\" + }, + { + "displayName": "Paraguayan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\Paraguayan\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\" + }, + { + "displayName": "Peruvian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\Peruvian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Hispanic or Latino\\\\South American\\\\Peruvian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\" + }, + { + "displayName": "Uruguayan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\Uruguayan\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Hispanic or Latino\\\\South American\\\\Uruguayan", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\" + }, + { + "displayName": "Venezuelan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\Venezuelan\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\South American\\" + }, + { + "displayName": "Spaniard", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\" + }, + { + "displayName": "Asturian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\Asturian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Hispanic or Latino\\\\Spaniard\\\\Asturian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\" + }, + { + "displayName": "Belearic Islander", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\Belearic Islander\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Hispanic or Latino\\\\Spaniard\\\\Belearic Islander", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\" + }, + { + "displayName": "Canarian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\Canarian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\" + }, + { + "displayName": "Castillian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\Castillian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\" + }, + { + "displayName": "Catalonian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\Catalonian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\" + }, + { + "displayName": "Spanish Basque", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\Spanish Basque\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\" + }, + { + "displayName": "Valencian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\Valencian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Hispanic or Latino\\Spaniard\\" + }, + { + "displayName": "E2: Not Hispanic or Latino", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Not Hispanic or Latino\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\" + }, + { + "displayName": "E9: Unknown Ethnicity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Unknown Ethnicity\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\" + }, + { + "displayName": "R1: American Indian or Alaska Native", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\American Indian or Alaska Native", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\" + }, + { + "displayName": "Alaska Native", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\Alaska Native\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\" + }, + { + "displayName": "Alaska Indian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\Alaska Native\\Alaska Indian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\American Indian or Alaska Native\\\\Alaska Native\\\\Alaska Indian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\Alaska Native\\" + }, + { + "displayName": "Aleut", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\Alaska Native\\Aleut\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\Alaska Native\\" + }, + { + "displayName": "Unangan Aleut", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\Alaska Native\\Aleut\\Unangan Aleut\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\Alaska Native\\Aleut\\" + }, + { + "displayName": "Aleutian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\Alaska Native\\Aleut\\Unangan Aleut\\Aleutian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\Alaska Native\\Aleut\\Unangan Aleut\\" + }, + { + "displayName": "Eskimo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\Alaska Native\\Eskimo\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\American Indian or Alaska Native\\\\Alaska Native\\\\Eskimo", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\Alaska Native\\" + }, + { + "displayName": "American Indian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\" + }, + { + "displayName": "Abenaki", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Abenaki\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\" + }, + { + "displayName": "Canadian and Latin American Indian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Canadian and Latin American Indian\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\" + }, + { + "displayName": "Central American Indian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Canadian and Latin American Indian\\Central American Indian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Canadian and Latin American Indian\\" + }, + { + "displayName": "Mexican American Indian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Canadian and Latin American Indian\\Mexican American Indian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Canadian and Latin American Indian\\" + }, + { + "displayName": "South American Indian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Canadian and Latin American Indian\\South American Indian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Canadian and Latin American Indian\\" + }, + { + "displayName": "Eastern Tribes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\" + }, + { + "displayName": "Attacapa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\Attacapa\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\" + }, + { + "displayName": "Biloxi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\Biloxi\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\" + }, + { + "displayName": "Moor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\Moor\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\American Indian or Alaska Native\\\\American Indian\\\\Eastern Tribes\\\\Moor", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\" + }, + { + "displayName": "Nansemond", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\Nansemond\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\" + }, + { + "displayName": "Nausu Waiwash", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\Nausu Waiwash\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\" + }, + { + "displayName": "Nipmuc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\Nipmuc\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\" + }, + { + "displayName": "Paugussett", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\Paugussett\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\" + }, + { + "displayName": "Pocomoke Acohonock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\Pocomoke Acohonock\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\" + }, + { + "displayName": "Tunica Biloxi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\Tunica Biloxi\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\" + }, + { + "displayName": "Waccamaw-Siousan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\Waccamaw-Siousan\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\" + }, + { + "displayName": "Wicomico", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\Wicomico\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Eastern Tribes\\" + }, + { + "displayName": "Navajo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Navajo\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\" + }, + { + "displayName": "Wampanoag", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\Wampanoag\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\American Indian or Alaska Native\\American Indian\\" + }, + { + "displayName": "R2: Asian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\" + }, + { + "displayName": "Asian Indian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Asian Indian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Bangladeshi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Bangladeshi\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Asian\\\\Bangladeshi", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Burmese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Burmese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Asian\\\\Burmese", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Cambodian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Cambodian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Chinese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Chinese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Asian\\\\Chinese", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Filipino", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Filipino\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Hmong", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Hmong\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Indonesian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Indonesian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Japanese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Japanese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Korean", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Korean\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Laotian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Laotian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Madagascar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Madagascar\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Malaysian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Malaysian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Nepalese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Nepalese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Okinawan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Okinawan\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Pakistani", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Pakistani\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Singaporean", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Singaporean\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Sri Lankan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Sri Lankan\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Taiwanese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Taiwanese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Thai", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Thai\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Asian\\\\Thai", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "Vietnamese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\Vietnamese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Asian\\" + }, + { + "displayName": "R3: Black or African American", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\" + }, + { + "displayName": "African", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Black or African American\\\\African", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\" + }, + { + "displayName": "Botswanan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African\\Botswanan\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African\\" + }, + { + "displayName": "Ethiopian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African\\Ethiopian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African\\" + }, + { + "displayName": "Liberian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African\\Liberian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Black or African American\\\\African\\\\Liberian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African\\" + }, + { + "displayName": "Namibian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African\\Namibian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African\\" + }, + { + "displayName": "Nigerian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African\\Nigerian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African\\" + }, + { + "displayName": "African American", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\African American\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\" + }, + { + "displayName": "Bahamian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\Bahamian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\" + }, + { + "displayName": "Barbadian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\Barbadian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\" + }, + { + "displayName": "Black", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\Black\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Black or African American\\\\Black", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\" + }, + { + "displayName": "Dominica Islander", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\Dominica Islander\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\" + }, + { + "displayName": "Dominican", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\Dominican\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\" + }, + { + "displayName": "Haitian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\Haitian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\" + }, + { + "displayName": "Jamaican", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\Jamaican\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\" + }, + { + "displayName": "Trinidadian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\Trinidadian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\" + }, + { + "displayName": "West Indian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\West Indian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Black or African American\\\\West Indian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Black or African American\\" + }, + { + "displayName": "R4: Native Hawaiian or Other Pacific Islander", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Native Hawaiian or Other Pacific Islander\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\" + }, + { + "displayName": "Other Pacific Islander", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Native Hawaiian or Other Pacific Islander\\Other Pacific Islander\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Native Hawaiian or Other Pacific Islander\\" + }, + { + "displayName": "Polynesian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Native Hawaiian or Other Pacific Islander\\Polynesian\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Native Hawaiian or Other Pacific Islander\\" + }, + { + "displayName": "Native Hawaiian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Native Hawaiian or Other Pacific Islander\\Polynesian\\Native Hawaiian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Native Hawaiian or Other Pacific Islander\\Polynesian\\" + }, + { + "displayName": "R5: White", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\White", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\" + }, + { + "displayName": "Arab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Arab\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\" + }, + { + "displayName": "European", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\" + }, + { + "displayName": "Armenian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\Armenian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\" + }, + { + "displayName": "English", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\English\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\White\\\\European\\\\English", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\" + }, + { + "displayName": "French", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\French\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\White\\\\European\\\\French", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\" + }, + { + "displayName": "German", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\German\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\" + }, + { + "displayName": "Irish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\Irish\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\White\\\\European\\\\Irish", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\" + }, + { + "displayName": "Italian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\Italian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\White\\\\European\\\\Italian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\" + }, + { + "displayName": "Polish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\Polish\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\" + }, + { + "displayName": "Scottish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\Scottish\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\European\\" + }, + { + "displayName": "Middle Eastern or North African", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\", + "conceptCategory": "Demographic", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\" + }, + { + "displayName": "Afghanistani", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\Afghanistani\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\" + }, + { + "displayName": "Assyrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\Assyrian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\" + }, + { + "displayName": "Egyptian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\Egyptian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\" + }, + { + "displayName": "Iranian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\Iranian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\" + }, + { + "displayName": "Iraqi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\Iraqi\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\" + }, + { + "displayName": "Israeili", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\Israeili\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\" + }, + { + "displayName": "Lebanese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\Lebanese\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\" + }, + { + "displayName": "Palestinian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\Palestinian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\White\\\\Middle Eastern or North African\\\\Palestinian", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\" + }, + { + "displayName": "Syrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\Syrian\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\White\\Middle Eastern or North African\\" + }, + { + "displayName": "R9: Unknown Race", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\Unknown Race\\", + "conceptCategory": "Demographic", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Demographics\\\\Race\\\\Unknown Race", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Demographics\\Race\\" + }, + { + "displayName": "Diagnoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": true, + "parentPath": null + }, + { + "displayName": "Certain conditions originating in the perinatal period (760-779.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Maternal causes of perinatal morbidity and mortality (760-763.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\" + }, + { + "displayName": "Fetus or newborn affected by complications of placenta, cord, and membranes (762)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\" + }, + { + "displayName": "(762.0) Placenta previa affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\(762.0) Placenta previa affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\" + }, + { + "displayName": "(762.1) Other forms of placental separation and hemorrhage affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\(762.1) Other forms of placental separation and hemorrhage affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\" + }, + { + "displayName": "(762.2) Other and unspecified morphological and functional abnormalities of placenta affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\(762.2) Other and unspecified morphological and functional abnormalities of placenta affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\" + }, + { + "displayName": "(762.3) Placental transfusion syndromes affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\(762.3) Placental transfusion syndromes affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\" + }, + { + "displayName": "(762.4) Prolapsed umbilical cord affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\(762.4) Prolapsed umbilical cord affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\" + }, + { + "displayName": "(762.5) Other compression of umbilical cord affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\(762.5) Other compression of umbilical cord affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\" + }, + { + "displayName": "(762.6) Other and unspecified conditions of umbilical cord affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\(762.6) Other and unspecified conditions of umbilical cord affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\\\(762.6) Other and unspecified conditions of umbilical cord affecting fetus or newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\" + }, + { + "displayName": "(762.7) Chorioamnionitis affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\(762.7) Chorioamnionitis affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\" + }, + { + "displayName": "(762.8) Other specified abnormalities of chorion and amnion affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\(762.8) Other specified abnormalities of chorion and amnion affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\\\(762.8) Other specified abnormalities of chorion and amnion affecting fetus or newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\" + }, + { + "displayName": "(762.9) Unspecified abnormality of chorion and amnion affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\(762.9) Unspecified abnormality of chorion and amnion affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\\" + }, + { + "displayName": "Fetus or newborn affected by maternal complications of pregnancy (761)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\" + }, + { + "displayName": "(761.0) Incompetent cervix affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\(761.0) Incompetent cervix affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\" + }, + { + "displayName": "(761.1) Premature rupture of membranes affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\(761.1) Premature rupture of membranes affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\" + }, + { + "displayName": "(761.2) Oligohydramnios affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\(761.2) Oligohydramnios affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\" + }, + { + "displayName": "(761.3) Polyhydramnios affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\(761.3) Polyhydramnios affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\" + }, + { + "displayName": "(761.4) Ectopic pregnancy affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\(761.4) Ectopic pregnancy affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\" + }, + { + "displayName": "(761.5) Multiple pregnancy affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\(761.5) Multiple pregnancy affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\" + }, + { + "displayName": "(761.6) Maternal death affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\(761.6) Maternal death affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\\\Fetus or newborn affected by maternal complications of pregnancy (761)\\\\(761.6) Maternal death affecting fetus or newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\" + }, + { + "displayName": "(761.7) Malpresentation before labor affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\(761.7) Malpresentation before labor affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\" + }, + { + "displayName": "(761.8) Other specified maternal complications of pregnancy affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\(761.8) Other specified maternal complications of pregnancy affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\\\Fetus or newborn affected by maternal complications of pregnancy (761)\\\\(761.8) Other specified maternal complications of pregnancy affecting fetus or newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\" + }, + { + "displayName": "(761.9) Unspecified maternal complication of pregnancy affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\(761.9) Unspecified maternal complication of pregnancy affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal complications of pregnancy (761)\\" + }, + { + "displayName": "Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\" + }, + { + "displayName": "(760.0) Maternal hypertensive disorders affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\(760.0) Maternal hypertensive disorders affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\" + }, + { + "displayName": "(760.1) Maternal renal and urinary tract diseases affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\(760.1) Maternal renal and urinary tract diseases affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\" + }, + { + "displayName": "(760.2) Maternal infections affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\(760.2) Maternal infections affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\" + }, + { + "displayName": "(760.3) Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\(760.3) Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\" + }, + { + "displayName": "(760.4) Maternal nutritional disorders affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\(760.4) Maternal nutritional disorders affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\" + }, + { + "displayName": "(760.5) Maternal injury affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\(760.5) Maternal injury affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\" + }, + { + "displayName": "(760.8) Other specified maternal conditions affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\(760.8) Other specified maternal conditions affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\" + }, + { + "displayName": "(760.9) Unspecified maternal condition affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\(760.9) Unspecified maternal condition affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\" + }, + { + "displayName": "Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\" + }, + { + "displayName": "(760.70) Unspecified noxious substance affecting fetus or newborn via placenta or breast milk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\(760.70) Unspecified noxious substance affecting fetus or newborn via placenta or breast milk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\" + }, + { + "displayName": "(760.71) Alcohol affecting fetus or newborn via placenta or breast milk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\(760.71) Alcohol affecting fetus or newborn via placenta or breast milk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\" + }, + { + "displayName": "(760.72) Narcotics affecting fetus or newborn via placenta or breast milk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\(760.72) Narcotics affecting fetus or newborn via placenta or breast milk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\" + }, + { + "displayName": "(760.73) Hallucinogenic agents affecting fetus or newborn via placenta or breast milk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\(760.73) Hallucinogenic agents affecting fetus or newborn via placenta or breast milk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\" + }, + { + "displayName": "(760.74) Anti-infectives affecting fetus or newborn via placenta or breast milk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\(760.74) Anti-infectives affecting fetus or newborn via placenta or breast milk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\" + }, + { + "displayName": "(760.75) Cocaine affecting fetus or newborn via placenta or breast milk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\(760.75) Cocaine affecting fetus or newborn via placenta or breast milk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\" + }, + { + "displayName": "(760.76) Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\(760.76) Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\" + }, + { + "displayName": "(760.77) Anticonvulsants affecting fetus or newborn via placenta or breast milk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\(760.77) Anticonvulsants affecting fetus or newborn via placenta or breast milk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\" + }, + { + "displayName": "(760.78) Antimetabolic agents affecting fetus or newborn via placenta or breast milk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\(760.78) Antimetabolic agents affecting fetus or newborn via placenta or breast milk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\" + }, + { + "displayName": "(760.79) Other noxious influences affecting fetus or newborn via placenta or breast milk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\(760.79) Other noxious influences affecting fetus or newborn via placenta or breast milk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\\\(760.79) Other noxious influences affecting fetus or newborn via placenta or breast milk\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\\" + }, + { + "displayName": "Surgical operation on mother and fetus (760.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\Surgical operation on mother and fetus (760.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\\" + }, + { + "displayName": "Fetus or newborn affected by other complications of labor and delivery (763)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\" + }, + { + "displayName": "(763.0) Breech delivery and extraction affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\(763.0) Breech delivery and extraction affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\" + }, + { + "displayName": "(763.1) Other malpresentation, malposition, and disproportion during labor and delivery affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\(763.1) Other malpresentation, malposition, and disproportion during labor and delivery affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\" + }, + { + "displayName": "(763.2) Forceps delivery affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\(763.2) Forceps delivery affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\" + }, + { + "displayName": "(763.3) Delivery by vacuum extractor affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\(763.3) Delivery by vacuum extractor affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\" + }, + { + "displayName": "(763.4) Cesarean delivery affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\(763.4) Cesarean delivery affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\" + }, + { + "displayName": "(763.5) Maternal anesthesia and analgesia affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\(763.5) Maternal anesthesia and analgesia affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\\\Fetus or newborn affected by other complications of labor and delivery (763)\\\\(763.5) Maternal anesthesia and analgesia affecting fetus or newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\" + }, + { + "displayName": "(763.6) Precipitate delivery affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\(763.6) Precipitate delivery affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\\\Fetus or newborn affected by other complications of labor and delivery (763)\\\\(763.6) Precipitate delivery affecting fetus or newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\" + }, + { + "displayName": "(763.7) Abnormal uterine contractions affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\(763.7) Abnormal uterine contractions affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\" + }, + { + "displayName": "(763.9) Unspecified complication of labor and delivery affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\(763.9) Unspecified complication of labor and delivery affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\" + }, + { + "displayName": "Other specified complications of labor and delivery affecting fetus or newborn (763.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\" + }, + { + "displayName": "(763.81) Abnormality in fetal heart rate or rhythm before the onset of labor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\(763.81) Abnormality in fetal heart rate or rhythm before the onset of labor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\\\Fetus or newborn affected by other complications of labor and delivery (763)\\\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\\\(763.81) Abnormality in fetal heart rate or rhythm before the onset of labor\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\" + }, + { + "displayName": "(763.82) Abnormality in fetal heart rate or rhythm during labor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\(763.82) Abnormality in fetal heart rate or rhythm during labor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\\\Fetus or newborn affected by other complications of labor and delivery (763)\\\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\\\(763.82) Abnormality in fetal heart rate or rhythm during labor\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\" + }, + { + "displayName": "(763.83) Abnormality in fetal heart rate or rhythm, unspecified as to time of onset", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\(763.83) Abnormality in fetal heart rate or rhythm, unspecified as to time of onset\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\\\Fetus or newborn affected by other complications of labor and delivery (763)\\\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\\\(763.83) Abnormality in fetal heart rate or rhythm, unspecified as to time of onset\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\" + }, + { + "displayName": "(763.84) Meconium passage during delivery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\(763.84) Meconium passage during delivery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\" + }, + { + "displayName": "(763.89) Other specified complications of labor and delivery affecting fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\(763.89) Other specified complications of labor and delivery affecting fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\\\Fetus or newborn affected by other complications of labor and delivery (763)\\\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\\\(763.89) Other specified complications of labor and delivery affecting fetus or newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Maternal causes of perinatal morbidity and mortality (760-763.99)\\Fetus or newborn affected by other complications of labor and delivery (763)\\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\\" + }, + { + "displayName": "Other conditions originating in the perinatal period (764-779.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\" + }, + { + "displayName": "(769) Respiratory distress syndrome in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\(769) Respiratory distress syndrome in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\(769) Respiratory distress syndrome in newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "Birth trauma (767)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(767.0) Subdural and cerebral hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\(767.0) Subdural and cerebral hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\" + }, + { + "displayName": "(767.2) Fracture of clavicle due to birth trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\(767.2) Fracture of clavicle due to birth trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\" + }, + { + "displayName": "(767.3) Other injuries to skeleton due to birth trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\(767.3) Other injuries to skeleton due to birth trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\" + }, + { + "displayName": "(767.4) Injury to spine and spinal cord due to birth trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\(767.4) Injury to spine and spinal cord due to birth trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\" + }, + { + "displayName": "(767.5) Facial nerve injury due to birth trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\(767.5) Facial nerve injury due to birth trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\" + }, + { + "displayName": "(767.6) Injury to brachial plexus due to birth trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\(767.6) Injury to brachial plexus due to birth trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Birth trauma (767)\\\\(767.6) Injury to brachial plexus due to birth trauma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\" + }, + { + "displayName": "(767.7) Other cranial and peripheral nerve injuries due to birth trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\(767.7) Other cranial and peripheral nerve injuries due to birth trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\" + }, + { + "displayName": "(767.8) Other specified birth trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\(767.8) Other specified birth trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\" + }, + { + "displayName": "(767.9) Birth trauma, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\(767.9) Birth trauma, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\" + }, + { + "displayName": "Injuries to scalp due to birth trauma (767.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\Injuries to scalp due to birth trauma (767.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\" + }, + { + "displayName": "(767.11) Epicranial subaponeurotic hemorrhage (massive)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\Injuries to scalp due to birth trauma (767.1)\\(767.11) Epicranial subaponeurotic hemorrhage (massive)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Birth trauma (767)\\\\Injuries to scalp due to birth trauma (767.1)\\\\(767.11) Epicranial subaponeurotic hemorrhage (massive)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\Injuries to scalp due to birth trauma (767.1)\\" + }, + { + "displayName": "(767.19) Other injuries to scalp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\Injuries to scalp due to birth trauma (767.1)\\(767.19) Other injuries to scalp\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Birth trauma (767)\\\\Injuries to scalp due to birth trauma (767.1)\\\\(767.19) Other injuries to scalp\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Birth trauma (767)\\Injuries to scalp due to birth trauma (767.1)\\" + }, + { + "displayName": "Conditions involving the integument and temperature regulation of fetus and newborn (778)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(778.0) Hydrops fetalis not due to isoimmunization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\(778.0) Hydrops fetalis not due to isoimmunization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\" + }, + { + "displayName": "(778.1) Sclerema neonatorum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\(778.1) Sclerema neonatorum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\" + }, + { + "displayName": "(778.2) Cold injury syndrome of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\(778.2) Cold injury syndrome of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\" + }, + { + "displayName": "(778.3) Other hypothermia of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\(778.3) Other hypothermia of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\\\(778.3) Other hypothermia of newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\" + }, + { + "displayName": "(778.4) Other disturbances of temperature regulation of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\(778.4) Other disturbances of temperature regulation of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\\\(778.4) Other disturbances of temperature regulation of newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\" + }, + { + "displayName": "(778.5) Other and unspecified edema of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\(778.5) Other and unspecified edema of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\" + }, + { + "displayName": "(778.6) Congenital hydrocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\(778.6) Congenital hydrocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\" + }, + { + "displayName": "(778.7) Breast engorgement in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\(778.7) Breast engorgement in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\\\(778.7) Breast engorgement in newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\" + }, + { + "displayName": "(778.8) Other specified conditions involving the integument of fetus and newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\(778.8) Other specified conditions involving the integument of fetus and newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\\\(778.8) Other specified conditions involving the integument of fetus and newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\" + }, + { + "displayName": "(778.9) Unspecified condition involving the integument and temperature regulation of fetus and newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\(778.9) Unspecified condition involving the integument and temperature regulation of fetus and newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Conditions involving the integument and temperature regulation of fetus and newborn (778)\\" + }, + { + "displayName": "Disorders relating to long gestation and high birthweight (766)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to long gestation and high birthweight (766)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to long gestation and high birthweight (766)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(766.0) Exceptionally large baby", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to long gestation and high birthweight (766)\\(766.0) Exceptionally large baby\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to long gestation and high birthweight (766)\\" + }, + { + "displayName": "(766.1) Other \"heavy-for-dates\" infants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to long gestation and high birthweight (766)\\(766.1) Other \"heavy-for-dates\" infants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to long gestation and high birthweight (766)\\\\(766.1) Other \"heavy-for-dates\" infants\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to long gestation and high birthweight (766)\\" + }, + { + "displayName": "Late infant, not \"heavy-for-dates\" (766.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to long gestation and high birthweight (766)\\Late infant, not \"heavy-for-dates\" (766.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to long gestation and high birthweight (766)\\\\Late infant, not \"heavy-for-dates\" (766.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to long gestation and high birthweight (766)\\" + }, + { + "displayName": "(766.21) Post-term infant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to long gestation and high birthweight (766)\\Late infant, not \"heavy-for-dates\" (766.2)\\(766.21) Post-term infant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to long gestation and high birthweight (766)\\Late infant, not \"heavy-for-dates\" (766.2)\\" + }, + { + "displayName": "(766.22) Prolonged gestation of infant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to long gestation and high birthweight (766)\\Late infant, not \"heavy-for-dates\" (766.2)\\(766.22) Prolonged gestation of infant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to long gestation and high birthweight (766)\\Late infant, not \"heavy-for-dates\" (766.2)\\" + }, + { + "displayName": "Disorders relating to short gestation and unspecified low birthweight (765)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "Extreme immaturity (765.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\" + }, + { + "displayName": "(765.00) Extreme immaturity, unspecified [weight]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\(765.00) Extreme immaturity, unspecified [weight]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\" + }, + { + "displayName": "(765.01) Extreme immaturity, less than 500 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\(765.01) Extreme immaturity, less than 500 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\" + }, + { + "displayName": "(765.02) Extreme immaturity, 500-749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\(765.02) Extreme immaturity, 500-749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\" + }, + { + "displayName": "(765.03) Extreme immaturity, 750-999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\(765.03) Extreme immaturity, 750-999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to short gestation and unspecified low birthweight (765)\\\\Extreme immaturity (765.0)\\\\(765.03) Extreme immaturity, 750-999 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\" + }, + { + "displayName": "(765.04) Extreme immaturity, 1,000-1,249 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\(765.04) Extreme immaturity, 1,000-1,249 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to short gestation and unspecified low birthweight (765)\\\\Extreme immaturity (765.0)\\\\(765.04) Extreme immaturity, 1,000-1,249 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\" + }, + { + "displayName": "(765.05) Extreme immaturity, 1,250-1,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\(765.05) Extreme immaturity, 1,250-1,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to short gestation and unspecified low birthweight (765)\\\\Extreme immaturity (765.0)\\\\(765.05) Extreme immaturity, 1,250-1,499 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\" + }, + { + "displayName": "(765.06) Extreme immaturity, 1,500-1,749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\(765.06) Extreme immaturity, 1,500-1,749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\" + }, + { + "displayName": "(765.07) Extreme immaturity, 1,750-1,999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\(765.07) Extreme immaturity, 1,750-1,999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\" + }, + { + "displayName": "(765.08) Extreme immaturity, 2,000-2,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\(765.08) Extreme immaturity, 2,000-2,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\" + }, + { + "displayName": "(765.09) Extreme immaturity, 2,500 grams and over", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\(765.09) Extreme immaturity, 2,500 grams and over\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Extreme immaturity (765.0)\\" + }, + { + "displayName": "Other preterm infants (765.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\" + }, + { + "displayName": "(765.10) Other preterm infants, unspecified [weight]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\(765.10) Other preterm infants, unspecified [weight]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\" + }, + { + "displayName": "(765.11) Other preterm infants, less than 500 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\(765.11) Other preterm infants, less than 500 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\" + }, + { + "displayName": "(765.12) Other preterm infants, 500-749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\(765.12) Other preterm infants, 500-749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to short gestation and unspecified low birthweight (765)\\\\Other preterm infants (765.1)\\\\(765.12) Other preterm infants, 500-749 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\" + }, + { + "displayName": "(765.13) Other preterm infants, 750-999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\(765.13) Other preterm infants, 750-999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\" + }, + { + "displayName": "(765.14) Other preterm infants, 1,000-1,249 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\(765.14) Other preterm infants, 1,000-1,249 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to short gestation and unspecified low birthweight (765)\\\\Other preterm infants (765.1)\\\\(765.14) Other preterm infants, 1,000-1,249 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\" + }, + { + "displayName": "(765.15) Other preterm infants, 1,250-1,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\(765.15) Other preterm infants, 1,250-1,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to short gestation and unspecified low birthweight (765)\\\\Other preterm infants (765.1)\\\\(765.15) Other preterm infants, 1,250-1,499 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\" + }, + { + "displayName": "(765.16) Other preterm infants, 1,500-1,749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\(765.16) Other preterm infants, 1,500-1,749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\" + }, + { + "displayName": "(765.17) Other preterm infants, 1,750-1,999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\(765.17) Other preterm infants, 1,750-1,999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\" + }, + { + "displayName": "(765.18) Other preterm infants, 2,000-2,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\(765.18) Other preterm infants, 2,000-2,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\" + }, + { + "displayName": "(765.19) Other preterm infants, 2,500 grams and over", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\(765.19) Other preterm infants, 2,500 grams and over\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Other preterm infants (765.1)\\" + }, + { + "displayName": "Weeks of gestation (765.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\" + }, + { + "displayName": "(765.20) Unspecified weeks of gestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\(765.20) Unspecified weeks of gestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\" + }, + { + "displayName": "(765.21) Less than 24 completed weeks of gestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\(765.21) Less than 24 completed weeks of gestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\" + }, + { + "displayName": "(765.22) 24 completed weeks of gestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\(765.22) 24 completed weeks of gestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to short gestation and unspecified low birthweight (765)\\\\Weeks of gestation (765.2)\\\\(765.22) 24 completed weeks of gestation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\" + }, + { + "displayName": "(765.23) 25-26 completed weeks of gestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\(765.23) 25-26 completed weeks of gestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\" + }, + { + "displayName": "(765.24) 27-28 completed weeks of gestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\(765.24) 27-28 completed weeks of gestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\" + }, + { + "displayName": "(765.25) 29-30 completed weeks of gestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\(765.25) 29-30 completed weeks of gestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\" + }, + { + "displayName": "(765.26) 31-32 completed weeks of gestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\(765.26) 31-32 completed weeks of gestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\" + }, + { + "displayName": "(765.27) 33-34 completed weeks of gestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\(765.27) 33-34 completed weeks of gestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to short gestation and unspecified low birthweight (765)\\\\Weeks of gestation (765.2)\\\\(765.27) 33-34 completed weeks of gestation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\" + }, + { + "displayName": "(765.28) 35-36 completed weeks of gestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\(765.28) 35-36 completed weeks of gestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Disorders relating to short gestation and unspecified low birthweight (765)\\\\Weeks of gestation (765.2)\\\\(765.28) 35-36 completed weeks of gestation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\" + }, + { + "displayName": "(765.29) 37 or more completed weeks of gestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\(765.29) 37 or more completed weeks of gestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Disorders relating to short gestation and unspecified low birthweight (765)\\Weeks of gestation (765.2)\\" + }, + { + "displayName": "Endocrine and metabolic disturbances specific to the fetus and newborn (775)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(775.0) Syndrome of \"infant of a diabetic mother\"", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\(775.0) Syndrome of \"infant of a diabetic mother\"\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\" + }, + { + "displayName": "(775.1) Neonatal diabetes mellitus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\(775.1) Neonatal diabetes mellitus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\" + }, + { + "displayName": "(775.2) Neonatal myasthenia gravis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\(775.2) Neonatal myasthenia gravis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\" + }, + { + "displayName": "(775.3) Neonatal thyrotoxicosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\(775.3) Neonatal thyrotoxicosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\" + }, + { + "displayName": "(775.4) Hypocalcemia and hypomagnesemia of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\(775.4) Hypocalcemia and hypomagnesemia of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\" + }, + { + "displayName": "(775.5) Other transitory neonatal electrolyte disturbances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\(775.5) Other transitory neonatal electrolyte disturbances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\" + }, + { + "displayName": "(775.6) Neonatal hypoglycemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\(775.6) Neonatal hypoglycemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\" + }, + { + "displayName": "(775.7) Late metabolic acidosis of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\(775.7) Late metabolic acidosis of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\" + }, + { + "displayName": "(775.9) Unspecified endocrine and metabolic disturbances specific to the fetus and newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\(775.9) Unspecified endocrine and metabolic disturbances specific to the fetus and newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\\\(775.9) Unspecified endocrine and metabolic disturbances specific to the fetus and newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\" + }, + { + "displayName": "Other neonatal endocrine and metabolic disturbances (775.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\Other neonatal endocrine and metabolic disturbances (775.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\\\Other neonatal endocrine and metabolic disturbances (775.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\" + }, + { + "displayName": "(775.81) Other acidosis of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\Other neonatal endocrine and metabolic disturbances (775.8)\\(775.81) Other acidosis of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\Other neonatal endocrine and metabolic disturbances (775.8)\\" + }, + { + "displayName": "(775.89) Other neonatal endocrine and metabolic disturbances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\Other neonatal endocrine and metabolic disturbances (775.8)\\(775.89) Other neonatal endocrine and metabolic disturbances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\\\Other neonatal endocrine and metabolic disturbances (775.8)\\\\(775.89) Other neonatal endocrine and metabolic disturbances\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\\Other neonatal endocrine and metabolic disturbances (775.8)\\" + }, + { + "displayName": "Fetal and neonatal hemorrhage (772)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Fetal and neonatal hemorrhage (772)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(772.0) Fetal blood loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\(772.0) Fetal blood loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\" + }, + { + "displayName": "(772.2) Subarachnoid hemorrhage of fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\(772.2) Subarachnoid hemorrhage of fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\" + }, + { + "displayName": "(772.3) Umbilical hemorrhage after birth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\(772.3) Umbilical hemorrhage after birth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\" + }, + { + "displayName": "(772.4) Gastrointestinal hemorrhage of fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\(772.4) Gastrointestinal hemorrhage of fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\" + }, + { + "displayName": "(772.5) Adrenal hemorrhage of fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\(772.5) Adrenal hemorrhage of fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\" + }, + { + "displayName": "(772.6) Cutaneous hemorrhage of fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\(772.6) Cutaneous hemorrhage of fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\" + }, + { + "displayName": "(772.8) Other specified hemorrhage of fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\(772.8) Other specified hemorrhage of fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\" + }, + { + "displayName": "(772.9) Unspecified hemorrhage of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\(772.9) Unspecified hemorrhage of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Fetal and neonatal hemorrhage (772)\\\\(772.9) Unspecified hemorrhage of newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\" + }, + { + "displayName": "Intraventricular hemorrhage of fetus or newborn (772.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\Intraventricular hemorrhage of fetus or newborn (772.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Fetal and neonatal hemorrhage (772)\\\\Intraventricular hemorrhage of fetus or newborn (772.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\" + }, + { + "displayName": "(772.10) Intraventricular hemorrhage unspecified grade", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\Intraventricular hemorrhage of fetus or newborn (772.1)\\(772.10) Intraventricular hemorrhage unspecified grade\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Fetal and neonatal hemorrhage (772)\\\\Intraventricular hemorrhage of fetus or newborn (772.1)\\\\(772.10) Intraventricular hemorrhage unspecified grade\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\Intraventricular hemorrhage of fetus or newborn (772.1)\\" + }, + { + "displayName": "(772.11) Intraventricular hemorrhage, grade I", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\Intraventricular hemorrhage of fetus or newborn (772.1)\\(772.11) Intraventricular hemorrhage, grade I\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\Intraventricular hemorrhage of fetus or newborn (772.1)\\" + }, + { + "displayName": "(772.12) Intraventricular hemorrhage, grade II", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\Intraventricular hemorrhage of fetus or newborn (772.1)\\(772.12) Intraventricular hemorrhage, grade II\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\Intraventricular hemorrhage of fetus or newborn (772.1)\\" + }, + { + "displayName": "(772.13) Intraventricular hemorrhage, grade III", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\Intraventricular hemorrhage of fetus or newborn (772.1)\\(772.13) Intraventricular hemorrhage, grade III\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Fetal and neonatal hemorrhage (772)\\\\Intraventricular hemorrhage of fetus or newborn (772.1)\\\\(772.13) Intraventricular hemorrhage, grade III\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\Intraventricular hemorrhage of fetus or newborn (772.1)\\" + }, + { + "displayName": "(772.14) Intraventricular hemorrhage, grade IV", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\Intraventricular hemorrhage of fetus or newborn (772.1)\\(772.14) Intraventricular hemorrhage, grade IV\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Fetal and neonatal hemorrhage (772)\\\\Intraventricular hemorrhage of fetus or newborn (772.1)\\\\(772.14) Intraventricular hemorrhage, grade IV\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Fetal and neonatal hemorrhage (772)\\Intraventricular hemorrhage of fetus or newborn (772.1)\\" + }, + { + "displayName": "Hematological disorders of newborn (776)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(776.0) Hemorrhagic disease of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\(776.0) Hemorrhagic disease of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Hematological disorders of newborn (776)\\\\(776.0) Hemorrhagic disease of newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\" + }, + { + "displayName": "(776.1) Transient neonatal thrombocytopenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\(776.1) Transient neonatal thrombocytopenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Hematological disorders of newborn (776)\\\\(776.1) Transient neonatal thrombocytopenia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\" + }, + { + "displayName": "(776.2) Disseminated intravascular coagulation in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\(776.2) Disseminated intravascular coagulation in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\" + }, + { + "displayName": "(776.3) Other transient neonatal disorders of coagulation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\(776.3) Other transient neonatal disorders of coagulation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Hematological disorders of newborn (776)\\\\(776.3) Other transient neonatal disorders of coagulation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\" + }, + { + "displayName": "(776.4) Polycythemia neonatorum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\(776.4) Polycythemia neonatorum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\" + }, + { + "displayName": "(776.5) Congenital anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\(776.5) Congenital anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Hematological disorders of newborn (776)\\\\(776.5) Congenital anemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\" + }, + { + "displayName": "(776.6) Anemia of prematurity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\(776.6) Anemia of prematurity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Hematological disorders of newborn (776)\\\\(776.6) Anemia of prematurity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\" + }, + { + "displayName": "(776.7) Transient neonatal neutropenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\(776.7) Transient neonatal neutropenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Hematological disorders of newborn (776)\\\\(776.7) Transient neonatal neutropenia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\" + }, + { + "displayName": "(776.8) Other specified transient hematological disorders of fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\(776.8) Other specified transient hematological disorders of fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\" + }, + { + "displayName": "(776.9) Unspecified hematological disorder specific to newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\(776.9) Unspecified hematological disorder specific to newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Hematological disorders of newborn (776)\\\\(776.9) Unspecified hematological disorder specific to newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hematological disorders of newborn (776)\\" + }, + { + "displayName": "Hemolytic disease of fetus or newborn, due to isoimmunization (773)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(773.0) Hemolytic disease of fetus or newborn due to Rh isoimmunization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\(773.0) Hemolytic disease of fetus or newborn due to Rh isoimmunization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\\\(773.0) Hemolytic disease of fetus or newborn due to Rh isoimmunization\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\" + }, + { + "displayName": "(773.1) Hemolytic disease of fetus or newborn due to ABO isoimmunization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\(773.1) Hemolytic disease of fetus or newborn due to ABO isoimmunization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\\\(773.1) Hemolytic disease of fetus or newborn due to ABO isoimmunization\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\" + }, + { + "displayName": "(773.2) Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\(773.2) Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\" + }, + { + "displayName": "(773.3) Hydrops fetalis due to isoimmunization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\(773.3) Hydrops fetalis due to isoimmunization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\" + }, + { + "displayName": "(773.4) Kernicterus of fetus or newborn due to isoimmunization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\(773.4) Kernicterus of fetus or newborn due to isoimmunization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\" + }, + { + "displayName": "(773.5) Late anemia of fetus or newborn due to isoimmunization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\(773.5) Late anemia of fetus or newborn due to isoimmunization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\\" + }, + { + "displayName": "Infections specific to the perinatal period (771)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(771.0) Congenital rubella", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\(771.0) Congenital rubella\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\" + }, + { + "displayName": "(771.1) Congenital cytomegalovirus infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\(771.1) Congenital cytomegalovirus infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\" + }, + { + "displayName": "(771.2) Other congenital infections specific to the perinatal period", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\(771.2) Other congenital infections specific to the perinatal period\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Infections specific to the perinatal period (771)\\\\(771.2) Other congenital infections specific to the perinatal period\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\" + }, + { + "displayName": "(771.3) Tetanus neonatorum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\(771.3) Tetanus neonatorum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Infections specific to the perinatal period (771)\\\\(771.3) Tetanus neonatorum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\" + }, + { + "displayName": "(771.4) Omphalitis of the newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\(771.4) Omphalitis of the newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Infections specific to the perinatal period (771)\\\\(771.4) Omphalitis of the newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\" + }, + { + "displayName": "(771.5) Neonatal infective mastitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\(771.5) Neonatal infective mastitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\" + }, + { + "displayName": "(771.6) Neonatal conjunctivitis and dacryocystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\(771.6) Neonatal conjunctivitis and dacryocystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\" + }, + { + "displayName": "(771.7) Neonatal Candida infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\(771.7) Neonatal Candida infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\" + }, + { + "displayName": "Other infection specific to the perinatal period (771.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\Other infection specific to the perinatal period (771.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\" + }, + { + "displayName": "(771.81) Septicemia [sepsis] of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\Other infection specific to the perinatal period (771.8)\\(771.81) Septicemia [sepsis] of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\Other infection specific to the perinatal period (771.8)\\" + }, + { + "displayName": "(771.82) Urinary tract infection of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\Other infection specific to the perinatal period (771.8)\\(771.82) Urinary tract infection of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\Other infection specific to the perinatal period (771.8)\\" + }, + { + "displayName": "(771.83) Bacteremia of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\Other infection specific to the perinatal period (771.8)\\(771.83) Bacteremia of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\Other infection specific to the perinatal period (771.8)\\" + }, + { + "displayName": "(771.89) Other infections specific to the perinatal period", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\Other infection specific to the perinatal period (771.8)\\(771.89) Other infections specific to the perinatal period\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Infections specific to the perinatal period (771)\\\\Other infection specific to the perinatal period (771.8)\\\\(771.89) Other infections specific to the perinatal period\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Infections specific to the perinatal period (771)\\Other infection specific to the perinatal period (771.8)\\" + }, + { + "displayName": "Intrauterine hypoxia and birth asphyxia (768)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Intrauterine hypoxia and birth asphyxia (768)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(768.0) Fetal death from asphyxia or anoxia before onset of labor or at unspecified time", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\(768.0) Fetal death from asphyxia or anoxia before onset of labor or at unspecified time\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\" + }, + { + "displayName": "(768.1) Fetal death from asphyxia or anoxia during labor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\(768.1) Fetal death from asphyxia or anoxia during labor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Intrauterine hypoxia and birth asphyxia (768)\\\\(768.1) Fetal death from asphyxia or anoxia during labor\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\" + }, + { + "displayName": "(768.2) Fetal distress before onset of labor, in liveborn infant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\(768.2) Fetal distress before onset of labor, in liveborn infant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\" + }, + { + "displayName": "(768.3) Fetal distress first noted during labor and delivery, in liveborn infant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\(768.3) Fetal distress first noted during labor and delivery, in liveborn infant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Intrauterine hypoxia and birth asphyxia (768)\\\\(768.3) Fetal distress first noted during labor and delivery, in liveborn infant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\" + }, + { + "displayName": "(768.4) Fetal distress, unspecified as to time of onset, in liveborn infant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\(768.4) Fetal distress, unspecified as to time of onset, in liveborn infant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Intrauterine hypoxia and birth asphyxia (768)\\\\(768.4) Fetal distress, unspecified as to time of onset, in liveborn infant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\" + }, + { + "displayName": "(768.5) Severe birth asphyxia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\(768.5) Severe birth asphyxia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\" + }, + { + "displayName": "(768.6) Mild or moderate birth asphyxia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\(768.6) Mild or moderate birth asphyxia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Intrauterine hypoxia and birth asphyxia (768)\\\\(768.6) Mild or moderate birth asphyxia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\" + }, + { + "displayName": "(768.9) Unspecified severity of birth asphyxia in liveborn infant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\(768.9) Unspecified severity of birth asphyxia in liveborn infant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\" + }, + { + "displayName": "Hypoxic-ischemic encephalopathy (HIE) (768.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Intrauterine hypoxia and birth asphyxia (768)\\\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\" + }, + { + "displayName": "(768.70) Hypoxic-ischemic encephalopathy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\(768.70) Hypoxic-ischemic encephalopathy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Intrauterine hypoxia and birth asphyxia (768)\\\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\\\(768.70) Hypoxic-ischemic encephalopathy, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\" + }, + { + "displayName": "(768.71) Mild hypoxic-ischemic encephalopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\(768.71) Mild hypoxic-ischemic encephalopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\" + }, + { + "displayName": "(768.72) Moderate hypoxic-ischemic encephalopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\(768.72) Moderate hypoxic-ischemic encephalopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Intrauterine hypoxia and birth asphyxia (768)\\\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\\\(768.72) Moderate hypoxic-ischemic encephalopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\" + }, + { + "displayName": "(768.73) Severe hypoxic-ischemic encephalopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\(768.73) Severe hypoxic-ischemic encephalopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Intrauterine hypoxia and birth asphyxia (768)\\Hypoxic-ischemic encephalopathy (HIE) (768.7)\\" + }, + { + "displayName": "Other and ill-defined conditions originating in the perinatal period (779)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Other and ill-defined conditions originating in the perinatal period (779)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(779.0) Convulsions in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\(779.0) Convulsions in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\" + }, + { + "displayName": "(779.1) Other and unspecified cerebral irritability in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\(779.1) Other and unspecified cerebral irritability in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\" + }, + { + "displayName": "(779.2) Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\(779.2) Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\" + }, + { + "displayName": "(779.4) Drug reactions and intoxications specific to newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\(779.4) Drug reactions and intoxications specific to newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\" + }, + { + "displayName": "(779.5) Drug withdrawal syndrome in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\(779.5) Drug withdrawal syndrome in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\" + }, + { + "displayName": "(779.6) Termination of pregnancy (fetus)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\(779.6) Termination of pregnancy (fetus)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\" + }, + { + "displayName": "(779.7) Periventricular leukomalacia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\(779.7) Periventricular leukomalacia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\" + }, + { + "displayName": "(779.9) Unspecified condition originating in the perinatal period", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\(779.9) Unspecified condition originating in the perinatal period\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\" + }, + { + "displayName": "Disorder of stomach function and feeding problems in newborn (779.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Disorder of stomach function and feeding problems in newborn (779.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\" + }, + { + "displayName": "(779.31) Feeding problems in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Disorder of stomach function and feeding problems in newborn (779.3)\\(779.31) Feeding problems in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Disorder of stomach function and feeding problems in newborn (779.3)\\" + }, + { + "displayName": "(779.32) Bilious vomiting in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Disorder of stomach function and feeding problems in newborn (779.3)\\(779.32) Bilious vomiting in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Disorder of stomach function and feeding problems in newborn (779.3)\\" + }, + { + "displayName": "(779.33) Other vomiting in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Disorder of stomach function and feeding problems in newborn (779.3)\\(779.33) Other vomiting in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Disorder of stomach function and feeding problems in newborn (779.3)\\" + }, + { + "displayName": "(779.34) Failure to thrive in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Disorder of stomach function and feeding problems in newborn (779.3)\\(779.34) Failure to thrive in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Disorder of stomach function and feeding problems in newborn (779.3)\\" + }, + { + "displayName": "Other specified conditions originating in the perinatal period (779.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\" + }, + { + "displayName": "(779.81) Neonatal bradycardia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\(779.81) Neonatal bradycardia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\" + }, + { + "displayName": "(779.82) Neonatal tachycardia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\(779.82) Neonatal tachycardia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\" + }, + { + "displayName": "(779.83) Delayed separation of umbilical cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\(779.83) Delayed separation of umbilical cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\" + }, + { + "displayName": "(779.84) Meconium staining", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\(779.84) Meconium staining\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\" + }, + { + "displayName": "(779.85) Cardiac arrest of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\(779.85) Cardiac arrest of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\" + }, + { + "displayName": "(779.89) Other specified conditions originating in the perinatal period", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\(779.89) Other specified conditions originating in the perinatal period\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Other and ill-defined conditions originating in the perinatal period (779)\\\\Other specified conditions originating in the perinatal period (779.8)\\\\(779.89) Other specified conditions originating in the perinatal period\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other and ill-defined conditions originating in the perinatal period (779)\\Other specified conditions originating in the perinatal period (779.8)\\" + }, + { + "displayName": "Other perinatal jaundice (774)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Other perinatal jaundice (774)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(774.0) Perinatal jaundice from hereditary hemolytic anemias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\(774.0) Perinatal jaundice from hereditary hemolytic anemias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Other perinatal jaundice (774)\\\\(774.0) Perinatal jaundice from hereditary hemolytic anemias\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\" + }, + { + "displayName": "(774.1) Perinatal jaundice from other excessive hemolysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\(774.1) Perinatal jaundice from other excessive hemolysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Other perinatal jaundice (774)\\\\(774.1) Perinatal jaundice from other excessive hemolysis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\" + }, + { + "displayName": "(774.2) Neonatal jaundice associated with preterm delivery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\(774.2) Neonatal jaundice associated with preterm delivery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\" + }, + { + "displayName": "(774.4) Perinatal jaundice due to hepatocellular damage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\(774.4) Perinatal jaundice due to hepatocellular damage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\" + }, + { + "displayName": "(774.5) Perinatal jaundice from other causes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\(774.5) Perinatal jaundice from other causes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\" + }, + { + "displayName": "(774.6) Unspecified fetal and neonatal jaundice", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\(774.6) Unspecified fetal and neonatal jaundice\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\" + }, + { + "displayName": "(774.7) Kernicterus of fetus or newborn not due to isoimmunization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\(774.7) Kernicterus of fetus or newborn not due to isoimmunization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\" + }, + { + "displayName": "Neonatal jaundice due to delayed conjugation from other causes (774.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\Neonatal jaundice due to delayed conjugation from other causes (774.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\" + }, + { + "displayName": "(774.30) Neonatal jaundice due to delayed conjugation, cause unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\Neonatal jaundice due to delayed conjugation from other causes (774.3)\\(774.30) Neonatal jaundice due to delayed conjugation, cause unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\Neonatal jaundice due to delayed conjugation from other causes (774.3)\\" + }, + { + "displayName": "(774.31) Neonatal jaundice due to delayed conjugation in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\Neonatal jaundice due to delayed conjugation from other causes (774.3)\\(774.31) Neonatal jaundice due to delayed conjugation in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\Neonatal jaundice due to delayed conjugation from other causes (774.3)\\" + }, + { + "displayName": "(774.39) Other neonatal jaundice due to delayed conjugation from other causes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\Neonatal jaundice due to delayed conjugation from other causes (774.3)\\(774.39) Other neonatal jaundice due to delayed conjugation from other causes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other perinatal jaundice (774)\\Neonatal jaundice due to delayed conjugation from other causes (774.3)\\" + }, + { + "displayName": "Other respiratory conditions of fetus and newborn (770)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(770.0) Congenital pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\(770.0) Congenital pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\" + }, + { + "displayName": "(770.2) Interstitial emphysema and related conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\(770.2) Interstitial emphysema and related conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\" + }, + { + "displayName": "(770.3) Pulmonary hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\(770.3) Pulmonary hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\" + }, + { + "displayName": "(770.4) Primary atelectasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\(770.4) Primary atelectasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\" + }, + { + "displayName": "(770.5) Other and unspecified atelectasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\(770.5) Other and unspecified atelectasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\" + }, + { + "displayName": "(770.6) Transitory tachypnea of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\(770.6) Transitory tachypnea of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\" + }, + { + "displayName": "(770.7) Chronic respiratory disease arising in the perinatal period", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\(770.7) Chronic respiratory disease arising in the perinatal period\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\" + }, + { + "displayName": "(770.9) Unspecified respiratory condition of fetus and newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\(770.9) Unspecified respiratory condition of fetus and newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\" + }, + { + "displayName": "Fetal and newborn aspiration (770.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\" + }, + { + "displayName": "(770.10) Fetal and newborn aspiration, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\(770.10) Fetal and newborn aspiration, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\" + }, + { + "displayName": "(770.11) Meconium aspiration without respiratory symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\(770.11) Meconium aspiration without respiratory symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\" + }, + { + "displayName": "(770.12) Meconium aspiration with respiratory symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\(770.12) Meconium aspiration with respiratory symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\" + }, + { + "displayName": "(770.13) Aspiration of clear amniotic fluid without respiratory symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\(770.13) Aspiration of clear amniotic fluid without respiratory symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\" + }, + { + "displayName": "(770.14) Aspiration of clear amniotic fluid with respiratory symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\(770.14) Aspiration of clear amniotic fluid with respiratory symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\" + }, + { + "displayName": "(770.15) Aspiration of blood without respiratory symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\(770.15) Aspiration of blood without respiratory symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\" + }, + { + "displayName": "(770.16) Aspiration of blood with respiratory symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\(770.16) Aspiration of blood with respiratory symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\" + }, + { + "displayName": "(770.17) Other fetal and newborn aspiration without respiratory symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\(770.17) Other fetal and newborn aspiration without respiratory symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Other respiratory conditions of fetus and newborn (770)\\\\Fetal and newborn aspiration (770.1)\\\\(770.17) Other fetal and newborn aspiration without respiratory symptoms\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\" + }, + { + "displayName": "(770.18) Other fetal and newborn aspiration with respiratory symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\(770.18) Other fetal and newborn aspiration with respiratory symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Other respiratory conditions of fetus and newborn (770)\\\\Fetal and newborn aspiration (770.1)\\\\(770.18) Other fetal and newborn aspiration with respiratory symptoms\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Fetal and newborn aspiration (770.1)\\" + }, + { + "displayName": "Other newborn respiratory problems (770.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\" + }, + { + "displayName": "(770.81) Primary apnea of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\(770.81) Primary apnea of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\" + }, + { + "displayName": "(770.82) Other apnea of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\(770.82) Other apnea of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\" + }, + { + "displayName": "(770.83) Cyanotic attacks of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\(770.83) Cyanotic attacks of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\" + }, + { + "displayName": "(770.84) Respiratory failure of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\(770.84) Respiratory failure of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\" + }, + { + "displayName": "(770.85) Aspiration of postnatal stomach contents without respiratory symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\(770.85) Aspiration of postnatal stomach contents without respiratory symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\" + }, + { + "displayName": "(770.86) Aspiration of postnatal stomach contents with respiratory symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\(770.86) Aspiration of postnatal stomach contents with respiratory symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\" + }, + { + "displayName": "(770.87) Respiratory arrest of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\(770.87) Respiratory arrest of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\" + }, + { + "displayName": "(770.88) Hypoxemia of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\(770.88) Hypoxemia of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\" + }, + { + "displayName": "(770.89) Other respiratory problems after birth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\(770.89) Other respiratory problems after birth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Other respiratory conditions of fetus and newborn (770)\\Other newborn respiratory problems (770.8)\\" + }, + { + "displayName": "Perinatal disorders of digestive system (777)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "(777.1) Meconium obstruction in fetus or newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\(777.1) Meconium obstruction in fetus or newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\" + }, + { + "displayName": "(777.2) Intestinal obstruction in newborn due to inspissated milk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\(777.2) Intestinal obstruction in newborn due to inspissated milk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\" + }, + { + "displayName": "(777.3) Hematemesis and melena of newborn due to swallowed maternal blood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\(777.3) Hematemesis and melena of newborn due to swallowed maternal blood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\" + }, + { + "displayName": "(777.4) Transitory ileus of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\(777.4) Transitory ileus of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\" + }, + { + "displayName": "(777.6) Perinatal intestinal perforation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\(777.6) Perinatal intestinal perforation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\" + }, + { + "displayName": "(777.8) Other specified perinatal disorders of digestive system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\(777.8) Other specified perinatal disorders of digestive system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Perinatal disorders of digestive system (777)\\\\(777.8) Other specified perinatal disorders of digestive system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\" + }, + { + "displayName": "(777.9) Unspecified perinatal disorder of digestive system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\(777.9) Unspecified perinatal disorder of digestive system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Perinatal disorders of digestive system (777)\\\\(777.9) Unspecified perinatal disorder of digestive system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\" + }, + { + "displayName": "Necrotizing enterocolitis in newborn (777.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\Necrotizing enterocolitis in newborn (777.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Perinatal disorders of digestive system (777)\\\\Necrotizing enterocolitis in newborn (777.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\" + }, + { + "displayName": "(777.50) Necrotizing enterocolitis in newborn, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\Necrotizing enterocolitis in newborn (777.5)\\(777.50) Necrotizing enterocolitis in newborn, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Perinatal disorders of digestive system (777)\\\\Necrotizing enterocolitis in newborn (777.5)\\\\(777.50) Necrotizing enterocolitis in newborn, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\Necrotizing enterocolitis in newborn (777.5)\\" + }, + { + "displayName": "(777.51) Stage I necrotizing enterocolitis in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\Necrotizing enterocolitis in newborn (777.5)\\(777.51) Stage I necrotizing enterocolitis in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Perinatal disorders of digestive system (777)\\\\Necrotizing enterocolitis in newborn (777.5)\\\\(777.51) Stage I necrotizing enterocolitis in newborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\Necrotizing enterocolitis in newborn (777.5)\\" + }, + { + "displayName": "(777.52) Stage II necrotizing enterocolitis in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\Necrotizing enterocolitis in newborn (777.5)\\(777.52) Stage II necrotizing enterocolitis in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\Necrotizing enterocolitis in newborn (777.5)\\" + }, + { + "displayName": "(777.53) Stage III necrotizing enterocolitis in newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\Necrotizing enterocolitis in newborn (777.5)\\(777.53) Stage III necrotizing enterocolitis in newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Perinatal disorders of digestive system (777)\\Necrotizing enterocolitis in newborn (777.5)\\" + }, + { + "displayName": "Slow fetal growth and fetal malnutrition (764)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\" + }, + { + "displayName": "Fetal growth retardation, unspecified (764.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\" + }, + { + "displayName": "(764.90) Fetal growth retardation, unspecified, unspecified [weight]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\(764.90) Fetal growth retardation, unspecified, unspecified [weight]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\" + }, + { + "displayName": "(764.91) Fetal growth retardation, unspecified, less than 500 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\(764.91) Fetal growth retardation, unspecified, less than 500 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\" + }, + { + "displayName": "(764.92) Fetal growth retardation, unspecified, 500-749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\(764.92) Fetal growth retardation, unspecified, 500-749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\" + }, + { + "displayName": "(764.93) Fetal growth retardation, unspecified, 750-999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\(764.93) Fetal growth retardation, unspecified, 750-999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\" + }, + { + "displayName": "(764.94) Fetal growth retardation, unspecified, 1,000-1,249 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\(764.94) Fetal growth retardation, unspecified, 1,000-1,249 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\" + }, + { + "displayName": "(764.95) Fetal growth retardation, unspecified, 1,250-1,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\(764.95) Fetal growth retardation, unspecified, 1,250-1,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\" + }, + { + "displayName": "(764.96) Fetal growth retardation, unspecified, 1,500-1,749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\(764.96) Fetal growth retardation, unspecified, 1,500-1,749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\" + }, + { + "displayName": "(764.97) Fetal growth retardation, unspecified, 1,750-1,999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\(764.97) Fetal growth retardation, unspecified, 1,750-1,999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\" + }, + { + "displayName": "(764.98) Fetal growth retardation, unspecified, 2,000-2,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\(764.98) Fetal growth retardation, unspecified, 2,000-2,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\" + }, + { + "displayName": "(764.99) Fetal growth retardation, unspecified, 2,500 grams and over", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\(764.99) Fetal growth retardation, unspecified, 2,500 grams and over\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal growth retardation, unspecified (764.9)\\" + }, + { + "displayName": "Fetal malnutrition without mention of \"light-for-dates\" (764.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\" + }, + { + "displayName": "(764.20) Fetal malnutrition without mention of \"light-for-dates\", unspecified [weight]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\(764.20) Fetal malnutrition without mention of \"light-for-dates\", unspecified [weight]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\" + }, + { + "displayName": "(764.21) Fetal malnutrition without mention of \"light-for-dates\", less than 500 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\(764.21) Fetal malnutrition without mention of \"light-for-dates\", less than 500 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\" + }, + { + "displayName": "(764.22) Fetal malnutrition without mention of \"light-for-dates\", 500-749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\(764.22) Fetal malnutrition without mention of \"light-for-dates\", 500-749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\" + }, + { + "displayName": "(764.23) Fetal malnutrition without mention of \"light-for-dates\", 750-999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\(764.23) Fetal malnutrition without mention of \"light-for-dates\", 750-999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\" + }, + { + "displayName": "(764.24) Fetal malnutrition without mention of \"light-for-dates\", 1,000-1,249 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\(764.24) Fetal malnutrition without mention of \"light-for-dates\", 1,000-1,249 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\" + }, + { + "displayName": "(764.25) Fetal malnutrition without mention of \"light-for-dates\", 1,250-1,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\(764.25) Fetal malnutrition without mention of \"light-for-dates\", 1,250-1,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Slow fetal growth and fetal malnutrition (764)\\\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\\\(764.25) Fetal malnutrition without mention of \"light-for-dates\", 1,250-1,499 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\" + }, + { + "displayName": "(764.26) Fetal malnutrition without mention of \"light-for-dates\", 1,500-1,749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\(764.26) Fetal malnutrition without mention of \"light-for-dates\", 1,500-1,749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Slow fetal growth and fetal malnutrition (764)\\\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\\\(764.26) Fetal malnutrition without mention of \"light-for-dates\", 1,500-1,749 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\" + }, + { + "displayName": "(764.27) Fetal malnutrition without mention of \"light-for-dates\", 1,750-1,999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\(764.27) Fetal malnutrition without mention of \"light-for-dates\", 1,750-1,999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\" + }, + { + "displayName": "(764.28) Fetal malnutrition without mention of \"light-for-dates\", 2,000-2,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\(764.28) Fetal malnutrition without mention of \"light-for-dates\", 2,000-2,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Slow fetal growth and fetal malnutrition (764)\\\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\\\(764.28) Fetal malnutrition without mention of \"light-for-dates\", 2,000-2,499 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\" + }, + { + "displayName": "(764.29) Fetal malnutrition without mention of \"light-for-dates\", 2,500 grams and over", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\(764.29) Fetal malnutrition without mention of \"light-for-dates\", 2,500 grams and over\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Fetal malnutrition without mention of \"light-for-dates\" (764.2)\\" + }, + { + "displayName": "Light-for-dates with signs of fetal malnutrition (764.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Slow fetal growth and fetal malnutrition (764)\\\\Light-for-dates with signs of fetal malnutrition (764.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\" + }, + { + "displayName": "(764.10) Light-for-dates with signs of fetal malnutrition, unspecified [weight]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\(764.10) Light-for-dates with signs of fetal malnutrition, unspecified [weight]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Slow fetal growth and fetal malnutrition (764)\\\\Light-for-dates with signs of fetal malnutrition (764.1)\\\\(764.10) Light-for-dates with signs of fetal malnutrition, unspecified [weight]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\" + }, + { + "displayName": "(764.11) Light-for-dates with signs of fetal malnutrition, less than 500 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\(764.11) Light-for-dates with signs of fetal malnutrition, less than 500 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\" + }, + { + "displayName": "(764.12) Light-for-dateswith signs of fetal malnutrition, 500-749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\(764.12) Light-for-dateswith signs of fetal malnutrition, 500-749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\" + }, + { + "displayName": "(764.13) Light-for-dates with signs of fetal malnutrition, 750-999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\(764.13) Light-for-dates with signs of fetal malnutrition, 750-999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\" + }, + { + "displayName": "(764.14) Light-for-dates with signs of fetal malnutrition, 1,000-1,249 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\(764.14) Light-for-dates with signs of fetal malnutrition, 1,000-1,249 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\" + }, + { + "displayName": "(764.15) Light-for-dates with signs of fetal malnutrition, 1,250-1,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\(764.15) Light-for-dates with signs of fetal malnutrition, 1,250-1,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\" + }, + { + "displayName": "(764.16) Light-for-dates with signs of fetal malnutrition, 1,500-1,749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\(764.16) Light-for-dates with signs of fetal malnutrition, 1,500-1,749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\" + }, + { + "displayName": "(764.17) Light-for-dates with signs of fetal malnutrition, 1,750-1,999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\(764.17) Light-for-dates with signs of fetal malnutrition, 1,750-1,999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\" + }, + { + "displayName": "(764.18) Light-for-dateswith signs of fetal malnutrition, 2,000-2,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\(764.18) Light-for-dateswith signs of fetal malnutrition, 2,000-2,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\" + }, + { + "displayName": "(764.19) Light-for-dateswith signs of fetal malnutrition, 2,500 grams and over", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\(764.19) Light-for-dateswith signs of fetal malnutrition, 2,500 grams and over\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates with signs of fetal malnutrition (764.1)\\" + }, + { + "displayName": "Light-for-dates without mention of fetal malnutrition (764.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\" + }, + { + "displayName": "(764.00) Light-for-dates without mention of fetal malnutrition, unspecified [weight]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\(764.00) Light-for-dates without mention of fetal malnutrition, unspecified [weight]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Slow fetal growth and fetal malnutrition (764)\\\\Light-for-dates without mention of fetal malnutrition (764.0)\\\\(764.00) Light-for-dates without mention of fetal malnutrition, unspecified [weight]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\" + }, + { + "displayName": "(764.01) Light-for-dates without mention of fetal malnutrition, less than 500 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\(764.01) Light-for-dates without mention of fetal malnutrition, less than 500 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\" + }, + { + "displayName": "(764.02) Light-for-dates without mention of fetal malnutrition, 500-749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\(764.02) Light-for-dates without mention of fetal malnutrition, 500-749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Slow fetal growth and fetal malnutrition (764)\\\\Light-for-dates without mention of fetal malnutrition (764.0)\\\\(764.02) Light-for-dates without mention of fetal malnutrition, 500-749 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\" + }, + { + "displayName": "(764.03) Light-for-dates without mention of fetal malnutrition, 750-999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\(764.03) Light-for-dates without mention of fetal malnutrition, 750-999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\Other conditions originating in the perinatal period (764-779.99)\\\\Slow fetal growth and fetal malnutrition (764)\\\\Light-for-dates without mention of fetal malnutrition (764.0)\\\\(764.03) Light-for-dates without mention of fetal malnutrition, 750-999 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\" + }, + { + "displayName": "(764.04) Light-for-dates without mention of fetal malnutrition, 1,000- 1,249 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\(764.04) Light-for-dates without mention of fetal malnutrition, 1,000- 1,249 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\" + }, + { + "displayName": "(764.05) Light-for-dateswithout mention of fetal malnutrition, 1,250- 1,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\(764.05) Light-for-dateswithout mention of fetal malnutrition, 1,250- 1,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\" + }, + { + "displayName": "(764.06) Light-for-dates without mention of fetal malnutrition, 1,500- 1,749 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\(764.06) Light-for-dates without mention of fetal malnutrition, 1,500- 1,749 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\" + }, + { + "displayName": "(764.07) Light-for-dates without mention of fetal malnutrition, 1,750- 1,999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\(764.07) Light-for-dates without mention of fetal malnutrition, 1,750- 1,999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\" + }, + { + "displayName": "(764.08) Light-for-dates without mention of fetal malnutrition, 2,000- 2,499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\(764.08) Light-for-dates without mention of fetal malnutrition, 2,000- 2,499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\" + }, + { + "displayName": "(764.09) Light-for-dates without mention of fetal malnutrition, 2,500 grams and over", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\(764.09) Light-for-dates without mention of fetal malnutrition, 2,500 grams and over\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Certain conditions originating in the perinatal period (760-779.99)\\Other conditions originating in the perinatal period (764-779.99)\\Slow fetal growth and fetal malnutrition (764)\\Light-for-dates without mention of fetal malnutrition (764.0)\\" + }, + { + "displayName": "Complications of pregnancy, childbirth, and the puerperium (630-679.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Complications mainly related to pregnancy (640-649.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\" + }, + { + "displayName": "Antepartum hemorrhage, abruptio placentae, and placenta previa (641)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\" + }, + { + "displayName": "Antepartum hemorrhage associated with coagulation defects (641.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Antepartum hemorrhage associated with coagulation defects (641.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\" + }, + { + "displayName": "(641.30) Antepartum hemorrhage associated with coagulation defects, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Antepartum hemorrhage associated with coagulation defects (641.3)\\(641.30) Antepartum hemorrhage associated with coagulation defects, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Antepartum hemorrhage associated with coagulation defects (641.3)\\" + }, + { + "displayName": "(641.31) Antepartum hemorrhage associated with coagulation defects, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Antepartum hemorrhage associated with coagulation defects (641.3)\\(641.31) Antepartum hemorrhage associated with coagulation defects, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Antepartum hemorrhage associated with coagulation defects (641.3)\\" + }, + { + "displayName": "(641.33) Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Antepartum hemorrhage associated with coagulation defects (641.3)\\(641.33) Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Antepartum hemorrhage associated with coagulation defects (641.3)\\" + }, + { + "displayName": "Hemorrhage from placenta previa (641.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Hemorrhage from placenta previa (641.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\" + }, + { + "displayName": "(641.10) Hemorrhage from placenta previa, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Hemorrhage from placenta previa (641.1)\\(641.10) Hemorrhage from placenta previa, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Hemorrhage from placenta previa (641.1)\\" + }, + { + "displayName": "(641.11) Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Hemorrhage from placenta previa (641.1)\\(641.11) Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Hemorrhage from placenta previa (641.1)\\" + }, + { + "displayName": "(641.13) Hemorrhage from placenta previa, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Hemorrhage from placenta previa (641.1)\\(641.13) Hemorrhage from placenta previa, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Hemorrhage from placenta previa (641.1)\\" + }, + { + "displayName": "Other antepartum hemorrhage (641.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Other antepartum hemorrhage (641.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\\\Other antepartum hemorrhage (641.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\" + }, + { + "displayName": "(641.80) Other antepartum hemorrhage, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Other antepartum hemorrhage (641.8)\\(641.80) Other antepartum hemorrhage, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\\\Other antepartum hemorrhage (641.8)\\\\(641.80) Other antepartum hemorrhage, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Other antepartum hemorrhage (641.8)\\" + }, + { + "displayName": "(641.81) Other antepartum hemorrhage, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Other antepartum hemorrhage (641.8)\\(641.81) Other antepartum hemorrhage, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\\\Other antepartum hemorrhage (641.8)\\\\(641.81) Other antepartum hemorrhage, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Other antepartum hemorrhage (641.8)\\" + }, + { + "displayName": "(641.83) Other antepartum hemorrhage, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Other antepartum hemorrhage (641.8)\\(641.83) Other antepartum hemorrhage, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\\\Other antepartum hemorrhage (641.8)\\\\(641.83) Other antepartum hemorrhage, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Other antepartum hemorrhage (641.8)\\" + }, + { + "displayName": "Placenta previa without hemorrhage (641.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Placenta previa without hemorrhage (641.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\\\Placenta previa without hemorrhage (641.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\" + }, + { + "displayName": "(641.00) Placenta previa without hemorrhage, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Placenta previa without hemorrhage (641.0)\\(641.00) Placenta previa without hemorrhage, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\\\Placenta previa without hemorrhage (641.0)\\\\(641.00) Placenta previa without hemorrhage, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Placenta previa without hemorrhage (641.0)\\" + }, + { + "displayName": "(641.01) Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Placenta previa without hemorrhage (641.0)\\(641.01) Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Placenta previa without hemorrhage (641.0)\\" + }, + { + "displayName": "(641.03) Placenta previa without hemorrhage, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Placenta previa without hemorrhage (641.0)\\(641.03) Placenta previa without hemorrhage, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Placenta previa without hemorrhage (641.0)\\" + }, + { + "displayName": "Premature separation of placenta (641.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Premature separation of placenta (641.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\" + }, + { + "displayName": "(641.20) Premature separation of placenta, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Premature separation of placenta (641.2)\\(641.20) Premature separation of placenta, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Premature separation of placenta (641.2)\\" + }, + { + "displayName": "(641.21) Premature separation of placenta, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Premature separation of placenta (641.2)\\(641.21) Premature separation of placenta, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Premature separation of placenta (641.2)\\" + }, + { + "displayName": "(641.23) Premature separation of placenta, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Premature separation of placenta (641.2)\\(641.23) Premature separation of placenta, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Premature separation of placenta (641.2)\\" + }, + { + "displayName": "Unspecified antepartum hemorrhage (641.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Unspecified antepartum hemorrhage (641.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\" + }, + { + "displayName": "(641.90) Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Unspecified antepartum hemorrhage (641.9)\\(641.90) Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Unspecified antepartum hemorrhage (641.9)\\" + }, + { + "displayName": "(641.91) Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Unspecified antepartum hemorrhage (641.9)\\(641.91) Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Unspecified antepartum hemorrhage (641.9)\\" + }, + { + "displayName": "(641.93) Unspecified antepartum hemorrhage, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Unspecified antepartum hemorrhage (641.9)\\(641.93) Unspecified antepartum hemorrhage, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\\\Unspecified antepartum hemorrhage (641.9)\\\\(641.93) Unspecified antepartum hemorrhage, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\\Unspecified antepartum hemorrhage (641.9)\\" + }, + { + "displayName": "Early or threatened labor (644)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Early or threatened labor (644)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\" + }, + { + "displayName": "Early onset of delivery (644.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Early onset of delivery (644.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Early or threatened labor (644)\\\\Early onset of delivery (644.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\" + }, + { + "displayName": "(644.20) Early onset of delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Early onset of delivery (644.2)\\(644.20) Early onset of delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Early or threatened labor (644)\\\\Early onset of delivery (644.2)\\\\(644.20) Early onset of delivery, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Early onset of delivery (644.2)\\" + }, + { + "displayName": "(644.21) Early onset of delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Early onset of delivery (644.2)\\(644.21) Early onset of delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Early or threatened labor (644)\\\\Early onset of delivery (644.2)\\\\(644.21) Early onset of delivery, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Early onset of delivery (644.2)\\" + }, + { + "displayName": "Other threatened labor (644.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Other threatened labor (644.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Early or threatened labor (644)\\\\Other threatened labor (644.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\" + }, + { + "displayName": "(644.10) Other threatened labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Other threatened labor (644.1)\\(644.10) Other threatened labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Early or threatened labor (644)\\\\Other threatened labor (644.1)\\\\(644.10) Other threatened labor, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Other threatened labor (644.1)\\" + }, + { + "displayName": "(644.13) Other threatened labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Other threatened labor (644.1)\\(644.13) Other threatened labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Early or threatened labor (644)\\\\Other threatened labor (644.1)\\\\(644.13) Other threatened labor, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Other threatened labor (644.1)\\" + }, + { + "displayName": "Threatened premature labor (644.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Threatened premature labor (644.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Early or threatened labor (644)\\\\Threatened premature labor (644.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\" + }, + { + "displayName": "(644.00) Threatened premature labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Threatened premature labor (644.0)\\(644.00) Threatened premature labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Early or threatened labor (644)\\\\Threatened premature labor (644.0)\\\\(644.00) Threatened premature labor, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Threatened premature labor (644.0)\\" + }, + { + "displayName": "(644.03) Threatened premature labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Threatened premature labor (644.0)\\(644.03) Threatened premature labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Early or threatened labor (644)\\Threatened premature labor (644.0)\\" + }, + { + "displayName": "Excessive vomiting in pregnancy (643)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\" + }, + { + "displayName": "Hyperemesis gravidarum with metabolic disturbance (643.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Hyperemesis gravidarum with metabolic disturbance (643.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\" + }, + { + "displayName": "(643.10) Hyperemesis gravidarum with metabolic disturbance, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Hyperemesis gravidarum with metabolic disturbance (643.1)\\(643.10) Hyperemesis gravidarum with metabolic disturbance, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Hyperemesis gravidarum with metabolic disturbance (643.1)\\" + }, + { + "displayName": "(643.11) Hyperemesis gravidarum with metabolic disturbance, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Hyperemesis gravidarum with metabolic disturbance (643.1)\\(643.11) Hyperemesis gravidarum with metabolic disturbance, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Hyperemesis gravidarum with metabolic disturbance (643.1)\\" + }, + { + "displayName": "(643.13) Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Hyperemesis gravidarum with metabolic disturbance (643.1)\\(643.13) Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Hyperemesis gravidarum with metabolic disturbance (643.1)\\" + }, + { + "displayName": "Late vomiting of pregnancy (643.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Late vomiting of pregnancy (643.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\" + }, + { + "displayName": "(643.20) Late vomiting of pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Late vomiting of pregnancy (643.2)\\(643.20) Late vomiting of pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Late vomiting of pregnancy (643.2)\\" + }, + { + "displayName": "(643.21) Late vomiting of pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Late vomiting of pregnancy (643.2)\\(643.21) Late vomiting of pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Late vomiting of pregnancy (643.2)\\" + }, + { + "displayName": "(643.23) Late vomiting of pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Late vomiting of pregnancy (643.2)\\(643.23) Late vomiting of pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Late vomiting of pregnancy (643.2)\\" + }, + { + "displayName": "Mild hyperemesis gravidarum (643.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Mild hyperemesis gravidarum (643.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\" + }, + { + "displayName": "(643.00) Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Mild hyperemesis gravidarum (643.0)\\(643.00) Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Mild hyperemesis gravidarum (643.0)\\" + }, + { + "displayName": "(643.01) Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Mild hyperemesis gravidarum (643.0)\\(643.01) Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Mild hyperemesis gravidarum (643.0)\\" + }, + { + "displayName": "(643.03) Mild hyperemesis gravidarum, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Mild hyperemesis gravidarum (643.0)\\(643.03) Mild hyperemesis gravidarum, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Mild hyperemesis gravidarum (643.0)\\" + }, + { + "displayName": "Other vomiting complicating pregnancy (643.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Other vomiting complicating pregnancy (643.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\" + }, + { + "displayName": "(643.80) Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Other vomiting complicating pregnancy (643.8)\\(643.80) Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Other vomiting complicating pregnancy (643.8)\\" + }, + { + "displayName": "(643.81) Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Other vomiting complicating pregnancy (643.8)\\(643.81) Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Other vomiting complicating pregnancy (643.8)\\" + }, + { + "displayName": "(643.83) Other vomiting complicating pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Other vomiting complicating pregnancy (643.8)\\(643.83) Other vomiting complicating pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Other vomiting complicating pregnancy (643.8)\\" + }, + { + "displayName": "Unspecified vomiting of pregnancy (643.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Unspecified vomiting of pregnancy (643.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\" + }, + { + "displayName": "(643.90) Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Unspecified vomiting of pregnancy (643.9)\\(643.90) Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Unspecified vomiting of pregnancy (643.9)\\" + }, + { + "displayName": "(643.91) Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Unspecified vomiting of pregnancy (643.9)\\(643.91) Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Unspecified vomiting of pregnancy (643.9)\\" + }, + { + "displayName": "(643.93) Unspecified vomiting of pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Unspecified vomiting of pregnancy (643.9)\\(643.93) Unspecified vomiting of pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Excessive vomiting in pregnancy (643)\\Unspecified vomiting of pregnancy (643.9)\\" + }, + { + "displayName": "Hemorrhage in early pregnancy (640)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\" + }, + { + "displayName": "Other specified hemorrhage in early pregnancy (640.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Other specified hemorrhage in early pregnancy (640.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\" + }, + { + "displayName": "(640.80) Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Other specified hemorrhage in early pregnancy (640.8)\\(640.80) Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Other specified hemorrhage in early pregnancy (640.8)\\" + }, + { + "displayName": "(640.81) Other specified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Other specified hemorrhage in early pregnancy (640.8)\\(640.81) Other specified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Other specified hemorrhage in early pregnancy (640.8)\\" + }, + { + "displayName": "(640.83) Other specified hemorrhage in early pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Other specified hemorrhage in early pregnancy (640.8)\\(640.83) Other specified hemorrhage in early pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Other specified hemorrhage in early pregnancy (640.8)\\" + }, + { + "displayName": "Threatened abortion (640.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Threatened abortion (640.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\" + }, + { + "displayName": "(640.00) Threatened abortion, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Threatened abortion (640.0)\\(640.00) Threatened abortion, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Threatened abortion (640.0)\\" + }, + { + "displayName": "(640.01) Threatened abortion, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Threatened abortion (640.0)\\(640.01) Threatened abortion, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Threatened abortion (640.0)\\" + }, + { + "displayName": "(640.03) Threatened abortion, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Threatened abortion (640.0)\\(640.03) Threatened abortion, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hemorrhage in early pregnancy (640)\\\\Threatened abortion (640.0)\\\\(640.03) Threatened abortion, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Threatened abortion (640.0)\\" + }, + { + "displayName": "Unspecified hemorrhage in early pregnancy (640.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Unspecified hemorrhage in early pregnancy (640.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hemorrhage in early pregnancy (640)\\\\Unspecified hemorrhage in early pregnancy (640.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\" + }, + { + "displayName": "(640.90) Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Unspecified hemorrhage in early pregnancy (640.9)\\(640.90) Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hemorrhage in early pregnancy (640)\\\\Unspecified hemorrhage in early pregnancy (640.9)\\\\(640.90) Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Unspecified hemorrhage in early pregnancy (640.9)\\" + }, + { + "displayName": "(640.91) Unspecified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Unspecified hemorrhage in early pregnancy (640.9)\\(640.91) Unspecified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Unspecified hemorrhage in early pregnancy (640.9)\\" + }, + { + "displayName": "(640.93) Unspecified hemorrhage in early pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Unspecified hemorrhage in early pregnancy (640.9)\\(640.93) Unspecified hemorrhage in early pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hemorrhage in early pregnancy (640)\\Unspecified hemorrhage in early pregnancy (640.9)\\" + }, + { + "displayName": "Hypertension complicating pregnancy, childbirth, and the puerperium (642)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\" + }, + { + "displayName": "Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\" + }, + { + "displayName": "(642.00) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\(642.00) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\" + }, + { + "displayName": "(642.01) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\(642.01) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\" + }, + { + "displayName": "(642.02) Benign essential hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\(642.02) Benign essential hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\" + }, + { + "displayName": "(642.03) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\(642.03) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\\\(642.03) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\" + }, + { + "displayName": "(642.04) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\(642.04) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\\\(642.04) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\\" + }, + { + "displayName": "Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\" + }, + { + "displayName": "(642.60) Eclampsia, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\(642.60) Eclampsia, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\\\(642.60) Eclampsia, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\" + }, + { + "displayName": "(642.61) Eclampsia, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\(642.61) Eclampsia, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\" + }, + { + "displayName": "(642.62) Eclampsia, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\(642.62) Eclampsia, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\" + }, + { + "displayName": "(642.63) Eclampsia, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\(642.63) Eclampsia, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\" + }, + { + "displayName": "(642.64) Eclampsia, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\(642.64) Eclampsia, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\\" + }, + { + "displayName": "Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\" + }, + { + "displayName": "(642.10) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\\(642.10) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\\" + }, + { + "displayName": "(642.11) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\\(642.11) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\\" + }, + { + "displayName": "(642.12) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\\(642.12) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\\" + }, + { + "displayName": "(642.13) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\\(642.13) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\\" + }, + { + "displayName": "(642.14) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\\(642.14) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\\" + }, + { + "displayName": "Mild or unspecified pre-eclampsia (642.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Mild or unspecified pre-eclampsia (642.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\" + }, + { + "displayName": "(642.40) Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Mild or unspecified pre-eclampsia (642.4)\\(642.40) Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Mild or unspecified pre-eclampsia (642.4)\\" + }, + { + "displayName": "(642.41) Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Mild or unspecified pre-eclampsia (642.4)\\(642.41) Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Mild or unspecified pre-eclampsia (642.4)\\" + }, + { + "displayName": "(642.42) Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Mild or unspecified pre-eclampsia (642.4)\\(642.42) Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Mild or unspecified pre-eclampsia (642.4)\\" + }, + { + "displayName": "(642.43) Mild or unspecified pre-eclampsia, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Mild or unspecified pre-eclampsia (642.4)\\(642.43) Mild or unspecified pre-eclampsia, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Mild or unspecified pre-eclampsia (642.4)\\" + }, + { + "displayName": "(642.44) Mild or unspecified pre-eclampsia, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Mild or unspecified pre-eclampsia (642.4)\\(642.44) Mild or unspecified pre-eclampsia, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Mild or unspecified pre-eclampsia (642.4)\\" + }, + { + "displayName": "Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\" + }, + { + "displayName": "(642.20) Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\(642.20) Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\" + }, + { + "displayName": "(642.21) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\(642.21) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\" + }, + { + "displayName": "(642.22) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\(642.22) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\" + }, + { + "displayName": "(642.23) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\(642.23) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\\\(642.23) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\" + }, + { + "displayName": "(642.24) Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\(642.24) Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\\\(642.24) Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\\" + }, + { + "displayName": "Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\" + }, + { + "displayName": "(642.70) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\(642.70) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\" + }, + { + "displayName": "(642.71) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\(642.71) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\\\(642.71) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\" + }, + { + "displayName": "(642.72) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\(642.72) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\\\(642.72) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\" + }, + { + "displayName": "(642.73) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\(642.73) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\\\(642.73) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\" + }, + { + "displayName": "(642.74) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\(642.74) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\\\(642.74) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\\" + }, + { + "displayName": "Severe pre-eclampsia (642.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Severe pre-eclampsia (642.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\" + }, + { + "displayName": "(642.50) Severe pre-eclampsia, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Severe pre-eclampsia (642.5)\\(642.50) Severe pre-eclampsia, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Severe pre-eclampsia (642.5)\\" + }, + { + "displayName": "(642.51) Severe pre-eclampsia, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Severe pre-eclampsia (642.5)\\(642.51) Severe pre-eclampsia, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Severe pre-eclampsia (642.5)\\" + }, + { + "displayName": "(642.52) Severe pre-eclampsia, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Severe pre-eclampsia (642.5)\\(642.52) Severe pre-eclampsia, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Severe pre-eclampsia (642.5)\\" + }, + { + "displayName": "(642.53) Severe pre-eclampsia, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Severe pre-eclampsia (642.5)\\(642.53) Severe pre-eclampsia, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Severe pre-eclampsia (642.5)\\" + }, + { + "displayName": "(642.54) Severe pre-eclampsia, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Severe pre-eclampsia (642.5)\\(642.54) Severe pre-eclampsia, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Severe pre-eclampsia (642.5)\\" + }, + { + "displayName": "Transient hypertension of pregnancy (642.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Transient hypertension of pregnancy (642.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\" + }, + { + "displayName": "(642.30) Transient hypertension of pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Transient hypertension of pregnancy (642.3)\\(642.30) Transient hypertension of pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Transient hypertension of pregnancy (642.3)\\" + }, + { + "displayName": "(642.31) Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Transient hypertension of pregnancy (642.3)\\(642.31) Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Transient hypertension of pregnancy (642.3)\\" + }, + { + "displayName": "(642.32) Transient hypertension of pregnancy, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Transient hypertension of pregnancy (642.3)\\(642.32) Transient hypertension of pregnancy, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Transient hypertension of pregnancy (642.3)\\" + }, + { + "displayName": "(642.33) Transient hypertension of pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Transient hypertension of pregnancy (642.3)\\(642.33) Transient hypertension of pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Transient hypertension of pregnancy (642.3)\\" + }, + { + "displayName": "(642.34) Transient hypertension of pregnancy, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Transient hypertension of pregnancy (642.3)\\(642.34) Transient hypertension of pregnancy, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Transient hypertension of pregnancy (642.3)\\" + }, + { + "displayName": "Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\" + }, + { + "displayName": "(642.90) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\\(642.90) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\\" + }, + { + "displayName": "(642.91) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\\(642.91) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\\" + }, + { + "displayName": "(642.92) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\\(642.92) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\\" + }, + { + "displayName": "(642.93) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\\(642.93) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\\" + }, + { + "displayName": "(642.94) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\\(642.94) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\\" + }, + { + "displayName": "Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\" + }, + { + "displayName": "Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\" + }, + { + "displayName": "(647.10) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\\(647.10) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\\" + }, + { + "displayName": "(647.11) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\\(647.11) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\\" + }, + { + "displayName": "(647.12) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\\(647.12) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\\" + }, + { + "displayName": "(647.13) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\\(647.13) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\\" + }, + { + "displayName": "(647.14) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\\(647.14) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\\" + }, + { + "displayName": "Malaria complicating pregnancy, childbirth, or the puerperium (647.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\" + }, + { + "displayName": "(647.40) Malaria in the mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\(647.40) Malaria in the mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\" + }, + { + "displayName": "(647.41) Malaria in the mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\(647.41) Malaria in the mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\\\(647.41) Malaria in the mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\" + }, + { + "displayName": "(647.42) Malaria in the mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\(647.42) Malaria in the mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\" + }, + { + "displayName": "(647.43) Malaria in the mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\(647.43) Malaria in the mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\\\(647.43) Malaria in the mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\" + }, + { + "displayName": "(647.44) Malaria in the mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\(647.44) Malaria in the mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\\\(647.44) Malaria in the mother, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\\" + }, + { + "displayName": "Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\" + }, + { + "displayName": "(647.80) Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\(647.80) Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\\\(647.80) Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\" + }, + { + "displayName": "(647.81) Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\(647.81) Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\\\(647.81) Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\" + }, + { + "displayName": "(647.82) Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\(647.82) Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\\\(647.82) Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\" + }, + { + "displayName": "(647.83) Other specified infectious and parasitic diseases of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\(647.83) Other specified infectious and parasitic diseases of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\" + }, + { + "displayName": "(647.84) Other specified infectious and parasitic diseases of mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\(647.84) Other specified infectious and parasitic diseases of mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\\" + }, + { + "displayName": "Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\" + }, + { + "displayName": "(647.20) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\(647.20) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\" + }, + { + "displayName": "(647.21) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\(647.21) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\\\(647.21) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\" + }, + { + "displayName": "(647.22) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\(647.22) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\\\(647.22) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\" + }, + { + "displayName": "(647.23) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\(647.23) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\\\(647.23) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\" + }, + { + "displayName": "(647.24) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\(647.24) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\\\(647.24) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\\" + }, + { + "displayName": "Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\" + }, + { + "displayName": "(647.60) Other viral diseases in the mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\(647.60) Other viral diseases in the mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\" + }, + { + "displayName": "(647.61) Other viral diseases in the mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\(647.61) Other viral diseases in the mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\\\(647.61) Other viral diseases in the mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\" + }, + { + "displayName": "(647.62) Other viral diseases in the mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\(647.62) Other viral diseases in the mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\\\(647.62) Other viral diseases in the mother, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\" + }, + { + "displayName": "(647.63) Other viral diseases in the mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\(647.63) Other viral diseases in the mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\\\(647.63) Other viral diseases in the mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\" + }, + { + "displayName": "(647.64) Other viral diseases in the mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\(647.64) Other viral diseases in the mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\\\(647.64) Other viral diseases in the mother, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\\" + }, + { + "displayName": "Rubella complicating pregnancy, childbirth, or the puerperium (647.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\" + }, + { + "displayName": "(647.50) Rubella in the mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\(647.50) Rubella in the mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\\\(647.50) Rubella in the mother, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\" + }, + { + "displayName": "(647.51) Rubella in the mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\(647.51) Rubella in the mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\\\(647.51) Rubella in the mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\" + }, + { + "displayName": "(647.52) Rubella in the mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\(647.52) Rubella in the mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\" + }, + { + "displayName": "(647.53) Rubella in the mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\(647.53) Rubella in the mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\\\(647.53) Rubella in the mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\" + }, + { + "displayName": "(647.54) Rubella in the mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\(647.54) Rubella in the mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\\" + }, + { + "displayName": "Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\" + }, + { + "displayName": "(647.00) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\(647.00) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\" + }, + { + "displayName": "(647.01) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\(647.01) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\" + }, + { + "displayName": "(647.02) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\(647.02) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\" + }, + { + "displayName": "(647.03) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\(647.03) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\\\(647.03) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\" + }, + { + "displayName": "(647.04) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\(647.04) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\\\(647.04) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\\" + }, + { + "displayName": "Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\" + }, + { + "displayName": "(647.30) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\(647.30) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\\\(647.30) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\" + }, + { + "displayName": "(647.31) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\(647.31) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\" + }, + { + "displayName": "(647.32) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\(647.32) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\\\(647.32) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\" + }, + { + "displayName": "(647.33) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\(647.33) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\\\(647.33) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\" + }, + { + "displayName": "(647.34) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\(647.34) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\\\(647.34) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\\" + }, + { + "displayName": "Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\" + }, + { + "displayName": "(647.90) Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\\(647.90) Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\\" + }, + { + "displayName": "(647.91) Unspecified infection or infestation of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\\(647.91) Unspecified infection or infestation of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\\" + }, + { + "displayName": "(647.92) Unspecified infection or infestation of mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\\(647.92) Unspecified infection or infestation of mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\\" + }, + { + "displayName": "(647.93) Unspecified infection or infestation of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\\(647.93) Unspecified infection or infestation of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\\" + }, + { + "displayName": "(647.94) Unspecified infection or infestation of mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\\(647.94) Unspecified infection or infestation of mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\\" + }, + { + "displayName": "Late pregnancy (645)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\" + }, + { + "displayName": "Post term pregnancy (645.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Post term pregnancy (645.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\" + }, + { + "displayName": "(645.10) Post term pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Post term pregnancy (645.1)\\(645.10) Post term pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Late pregnancy (645)\\\\Post term pregnancy (645.1)\\\\(645.10) Post term pregnancy, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Post term pregnancy (645.1)\\" + }, + { + "displayName": "(645.11) Post term pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Post term pregnancy (645.1)\\(645.11) Post term pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Late pregnancy (645)\\\\Post term pregnancy (645.1)\\\\(645.11) Post term pregnancy, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Post term pregnancy (645.1)\\" + }, + { + "displayName": "(645.13) Post term pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Post term pregnancy (645.1)\\(645.13) Post term pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Post term pregnancy (645.1)\\" + }, + { + "displayName": "Prolonged pregnancy (645.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Prolonged pregnancy (645.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Late pregnancy (645)\\\\Prolonged pregnancy (645.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\" + }, + { + "displayName": "(645.20) Prolonged pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Prolonged pregnancy (645.2)\\(645.20) Prolonged pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Prolonged pregnancy (645.2)\\" + }, + { + "displayName": "(645.21) Prolonged pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Prolonged pregnancy (645.2)\\(645.21) Prolonged pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Prolonged pregnancy (645.2)\\" + }, + { + "displayName": "(645.23) Prolonged pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Prolonged pregnancy (645.2)\\(645.23) Prolonged pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Late pregnancy (645)\\Prolonged pregnancy (645.2)\\" + }, + { + "displayName": "Other complications of pregnancy, not elsewhere classified (646)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\" + }, + { + "displayName": "Asymptomatic bacteriuria in pregnancy (646.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Asymptomatic bacteriuria in pregnancy (646.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\" + }, + { + "displayName": "(646.50) Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Asymptomatic bacteriuria in pregnancy (646.5)\\(646.50) Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Asymptomatic bacteriuria in pregnancy (646.5)\\" + }, + { + "displayName": "(646.51) Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Asymptomatic bacteriuria in pregnancy (646.5)\\(646.51) Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Asymptomatic bacteriuria in pregnancy (646.5)\\" + }, + { + "displayName": "(646.52) Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Asymptomatic bacteriuria in pregnancy (646.5)\\(646.52) Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Asymptomatic bacteriuria in pregnancy (646.5)\\" + }, + { + "displayName": "(646.53) Asymptomatic bacteriuria in pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Asymptomatic bacteriuria in pregnancy (646.5)\\(646.53) Asymptomatic bacteriuria in pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Asymptomatic bacteriuria in pregnancy (646.5)\\\\(646.53) Asymptomatic bacteriuria in pregnancy, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Asymptomatic bacteriuria in pregnancy (646.5)\\" + }, + { + "displayName": "(646.54) Asymptomatic bacteriuria in pregnancy, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Asymptomatic bacteriuria in pregnancy (646.5)\\(646.54) Asymptomatic bacteriuria in pregnancy, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Asymptomatic bacteriuria in pregnancy (646.5)\\\\(646.54) Asymptomatic bacteriuria in pregnancy, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Asymptomatic bacteriuria in pregnancy (646.5)\\" + }, + { + "displayName": "Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\" + }, + { + "displayName": "(646.10) Edema or excessive weight gain in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\\(646.10) Edema or excessive weight gain in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\\" + }, + { + "displayName": "(646.11) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\\(646.11) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\\" + }, + { + "displayName": "(646.12) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\\(646.12) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\\" + }, + { + "displayName": "(646.13) Edema or excessive weight gain in pregnancy, without mention of hypertension, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\\(646.13) Edema or excessive weight gain in pregnancy, without mention of hypertension, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\\" + }, + { + "displayName": "(646.14) Edema or excessive weight gain in pregnancy, without mention of hypertension, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\\(646.14) Edema or excessive weight gain in pregnancy, without mention of hypertension, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\\" + }, + { + "displayName": "Infections of genitourinary tract in pregnancy (646.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Infections of genitourinary tract in pregnancy (646.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\" + }, + { + "displayName": "(646.60) Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Infections of genitourinary tract in pregnancy (646.6)\\(646.60) Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Infections of genitourinary tract in pregnancy (646.6)\\\\(646.60) Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Infections of genitourinary tract in pregnancy (646.6)\\" + }, + { + "displayName": "(646.61) Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Infections of genitourinary tract in pregnancy (646.6)\\(646.61) Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Infections of genitourinary tract in pregnancy (646.6)\\\\(646.61) Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Infections of genitourinary tract in pregnancy (646.6)\\" + }, + { + "displayName": "(646.62) Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Infections of genitourinary tract in pregnancy (646.6)\\(646.62) Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Infections of genitourinary tract in pregnancy (646.6)\\\\(646.62) Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Infections of genitourinary tract in pregnancy (646.6)\\" + }, + { + "displayName": "(646.63) Infections of genitourinary tract in pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Infections of genitourinary tract in pregnancy (646.6)\\(646.63) Infections of genitourinary tract in pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Infections of genitourinary tract in pregnancy (646.6)\\\\(646.63) Infections of genitourinary tract in pregnancy, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Infections of genitourinary tract in pregnancy (646.6)\\" + }, + { + "displayName": "(646.64) Infections of genitourinary tract in pregnancy, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Infections of genitourinary tract in pregnancy (646.6)\\(646.64) Infections of genitourinary tract in pregnancy, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Infections of genitourinary tract in pregnancy (646.6)\\" + }, + { + "displayName": "Liver and biliary tract disorders in pregnancy (646.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Liver and biliary tract disorders in pregnancy (646.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\" + }, + { + "displayName": "(646.70) Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Liver and biliary tract disorders in pregnancy (646.7)\\(646.70) Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Liver and biliary tract disorders in pregnancy (646.7)\\" + }, + { + "displayName": "(646.71) Liver and biliary tract disorders in pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Liver and biliary tract disorders in pregnancy (646.7)\\(646.71) Liver and biliary tract disorders in pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Liver and biliary tract disorders in pregnancy (646.7)\\" + }, + { + "displayName": "(646.73) Liver and biliary tract disorders in pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Liver and biliary tract disorders in pregnancy (646.7)\\(646.73) Liver and biliary tract disorders in pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Liver and biliary tract disorders in pregnancy (646.7)\\" + }, + { + "displayName": "Other specified complications of pregnancy (646.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Other specified complications of pregnancy (646.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\" + }, + { + "displayName": "(646.80) Other specified complications of pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Other specified complications of pregnancy (646.8)\\(646.80) Other specified complications of pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Other specified complications of pregnancy (646.8)\\" + }, + { + "displayName": "(646.81) Other specified complications of pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Other specified complications of pregnancy (646.8)\\(646.81) Other specified complications of pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Other specified complications of pregnancy (646.8)\\" + }, + { + "displayName": "(646.82) Other specified complications of pregnancy, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Other specified complications of pregnancy (646.8)\\(646.82) Other specified complications of pregnancy, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Other specified complications of pregnancy (646.8)\\" + }, + { + "displayName": "(646.83) Other specified complications of pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Other specified complications of pregnancy (646.8)\\(646.83) Other specified complications of pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Other specified complications of pregnancy (646.8)\\\\(646.83) Other specified complications of pregnancy, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Other specified complications of pregnancy (646.8)\\" + }, + { + "displayName": "(646.84) Other specified complications of pregnancy, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Other specified complications of pregnancy (646.8)\\(646.84) Other specified complications of pregnancy, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Other specified complications of pregnancy (646.8)\\\\(646.84) Other specified complications of pregnancy, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Other specified complications of pregnancy (646.8)\\" + }, + { + "displayName": "Papyraceous fetus (646.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Papyraceous fetus (646.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\" + }, + { + "displayName": "(646.00) Papyraceous fetus, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Papyraceous fetus (646.0)\\(646.00) Papyraceous fetus, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Papyraceous fetus (646.0)\\\\(646.00) Papyraceous fetus, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Papyraceous fetus (646.0)\\" + }, + { + "displayName": "(646.01) Papyraceous fetus, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Papyraceous fetus (646.0)\\(646.01) Papyraceous fetus, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Papyraceous fetus (646.0)\\\\(646.01) Papyraceous fetus, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Papyraceous fetus (646.0)\\" + }, + { + "displayName": "(646.03) Papyraceous fetus, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Papyraceous fetus (646.0)\\(646.03) Papyraceous fetus, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Papyraceous fetus (646.0)\\" + }, + { + "displayName": "Peripheral neuritis in pregnancy (646.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Peripheral neuritis in pregnancy (646.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\" + }, + { + "displayName": "(646.40) Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Peripheral neuritis in pregnancy (646.4)\\(646.40) Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Peripheral neuritis in pregnancy (646.4)\\" + }, + { + "displayName": "(646.41) Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Peripheral neuritis in pregnancy (646.4)\\(646.41) Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Peripheral neuritis in pregnancy (646.4)\\" + }, + { + "displayName": "(646.42) Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Peripheral neuritis in pregnancy (646.4)\\(646.42) Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Peripheral neuritis in pregnancy (646.4)\\" + }, + { + "displayName": "(646.43) Peripheral neuritis in pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Peripheral neuritis in pregnancy (646.4)\\(646.43) Peripheral neuritis in pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Peripheral neuritis in pregnancy (646.4)\\" + }, + { + "displayName": "(646.44) Peripheral neuritis in pregnancy, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Peripheral neuritis in pregnancy (646.4)\\(646.44) Peripheral neuritis in pregnancy, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Peripheral neuritis in pregnancy (646.4)\\\\(646.44) Peripheral neuritis in pregnancy, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Peripheral neuritis in pregnancy (646.4)\\" + }, + { + "displayName": "Recurrent pregnancy loss (646.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Recurrent pregnancy loss (646.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\" + }, + { + "displayName": "(646.30) Recurrent pregnancy loss, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Recurrent pregnancy loss (646.3)\\(646.30) Recurrent pregnancy loss, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Recurrent pregnancy loss (646.3)\\" + }, + { + "displayName": "(646.31) Recurrent pregnancy loss, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Recurrent pregnancy loss (646.3)\\(646.31) Recurrent pregnancy loss, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Recurrent pregnancy loss (646.3)\\" + }, + { + "displayName": "(646.33) Recurrent pregnancy loss, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Recurrent pregnancy loss (646.3)\\(646.33) Recurrent pregnancy loss, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Recurrent pregnancy loss (646.3)\\" + }, + { + "displayName": "Unspecified complication of pregnancy (646.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified complication of pregnancy (646.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\" + }, + { + "displayName": "(646.90) Unspecified complication of pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified complication of pregnancy (646.9)\\(646.90) Unspecified complication of pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified complication of pregnancy (646.9)\\" + }, + { + "displayName": "(646.91) Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified complication of pregnancy (646.9)\\(646.91) Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified complication of pregnancy (646.9)\\" + }, + { + "displayName": "(646.93) Unspecified complication of pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified complication of pregnancy (646.9)\\(646.93) Unspecified complication of pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified complication of pregnancy (646.9)\\" + }, + { + "displayName": "Unspecified renal disease in pregnancy, without mention of hypertension (646.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\" + }, + { + "displayName": "(646.20) Unspecified renal disease in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\(646.20) Unspecified renal disease in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\" + }, + { + "displayName": "(646.21) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\(646.21) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\" + }, + { + "displayName": "(646.22) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\(646.22) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\\\(646.22) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\" + }, + { + "displayName": "(646.23) Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\(646.23) Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\\\(646.23) Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\" + }, + { + "displayName": "(646.24) Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\(646.24) Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other complications of pregnancy, not elsewhere classified (646)\\\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\\\(646.24) Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other complications of pregnancy, not elsewhere classified (646)\\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\\" + }, + { + "displayName": "Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\" + }, + { + "displayName": "Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\" + }, + { + "displayName": "(649.20) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\\(649.20) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\\" + }, + { + "displayName": "(649.21) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\\(649.21) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\\" + }, + { + "displayName": "(649.22) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\\(649.22) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\\" + }, + { + "displayName": "(649.23) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\\(649.23) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\\" + }, + { + "displayName": "(649.24) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\\(649.24) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\\" + }, + { + "displayName": "Cervical shortening (649.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Cervical shortening (649.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\" + }, + { + "displayName": "(649.70) Cervical shortening, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Cervical shortening (649.7)\\(649.70) Cervical shortening, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\\\Cervical shortening (649.7)\\\\(649.70) Cervical shortening, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Cervical shortening (649.7)\\" + }, + { + "displayName": "(649.71) Cervical shortening, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Cervical shortening (649.7)\\(649.71) Cervical shortening, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\\\Cervical shortening (649.7)\\\\(649.71) Cervical shortening, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Cervical shortening (649.7)\\" + }, + { + "displayName": "(649.73) Cervical shortening, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Cervical shortening (649.7)\\(649.73) Cervical shortening, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\\\Cervical shortening (649.7)\\\\(649.73) Cervical shortening, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Cervical shortening (649.7)\\" + }, + { + "displayName": "Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\" + }, + { + "displayName": "(649.30) Coagulation defects complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\\(649.30) Coagulation defects complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\\" + }, + { + "displayName": "(649.31) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\\(649.31) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\\" + }, + { + "displayName": "(649.32) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\\(649.32) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\\" + }, + { + "displayName": "(649.33) Coagulation defects complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\\(649.33) Coagulation defects complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\\" + }, + { + "displayName": "(649.34) Coagulation defects complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\\(649.34) Coagulation defects complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\\" + }, + { + "displayName": "Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\" + }, + { + "displayName": "(649.40) Epilepsy complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\\(649.40) Epilepsy complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\\" + }, + { + "displayName": "(649.41) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\\(649.41) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\\" + }, + { + "displayName": "(649.42) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\\(649.42) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\\" + }, + { + "displayName": "(649.43) Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\\(649.43) Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\\" + }, + { + "displayName": "(649.44) Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\\(649.44) Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\\" + }, + { + "displayName": "Obesity complicating pregnancy, childbirth, or the puerperium (649.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\" + }, + { + "displayName": "(649.10) Obesity complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\\(649.10) Obesity complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\\" + }, + { + "displayName": "(649.11) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\\(649.11) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\\" + }, + { + "displayName": "(649.12) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\\(649.12) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\\" + }, + { + "displayName": "(649.13) Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\\(649.13) Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\\" + }, + { + "displayName": "(649.14) Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\\(649.14) Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\\" + }, + { + "displayName": "Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\\\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\" + }, + { + "displayName": "(649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\\(649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\\\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\\\\(649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\\" + }, + { + "displayName": "Spotting complicating pregnancy (649.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Spotting complicating pregnancy (649.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\" + }, + { + "displayName": "(649.50) Spotting complicating pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Spotting complicating pregnancy (649.5)\\(649.50) Spotting complicating pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Spotting complicating pregnancy (649.5)\\" + }, + { + "displayName": "(649.51) Spotting complicating pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Spotting complicating pregnancy (649.5)\\(649.51) Spotting complicating pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Spotting complicating pregnancy (649.5)\\" + }, + { + "displayName": "(649.53) Spotting complicating pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Spotting complicating pregnancy (649.5)\\(649.53) Spotting complicating pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Spotting complicating pregnancy (649.5)\\" + }, + { + "displayName": "Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\" + }, + { + "displayName": "(649.00) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\(649.00) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\" + }, + { + "displayName": "(649.01) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\(649.01) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\" + }, + { + "displayName": "(649.02) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\(649.02) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\\\(649.02) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\" + }, + { + "displayName": "(649.03) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\(649.03) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\\\(649.03) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\" + }, + { + "displayName": "(649.04) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\(649.04) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\\\(649.04) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\\" + }, + { + "displayName": "Uterine size date discrepancy (649.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Uterine size date discrepancy (649.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\" + }, + { + "displayName": "(649.60) Uterine size date discrepancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Uterine size date discrepancy (649.6)\\(649.60) Uterine size date discrepancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Uterine size date discrepancy (649.6)\\" + }, + { + "displayName": "(649.61) Uterine size date discrepancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Uterine size date discrepancy (649.6)\\(649.61) Uterine size date discrepancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Uterine size date discrepancy (649.6)\\" + }, + { + "displayName": "(649.62) Uterine size date discrepancy, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Uterine size date discrepancy (649.6)\\(649.62) Uterine size date discrepancy, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Uterine size date discrepancy (649.6)\\" + }, + { + "displayName": "(649.63) Uterine size date discrepancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Uterine size date discrepancy (649.6)\\(649.63) Uterine size date discrepancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Uterine size date discrepancy (649.6)\\" + }, + { + "displayName": "(649.64) Uterine size date discrepancy, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Uterine size date discrepancy (649.6)\\(649.64) Uterine size date discrepancy, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\\Uterine size date discrepancy (649.6)\\" + }, + { + "displayName": "Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\" + }, + { + "displayName": "Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\" + }, + { + "displayName": "(648.80) Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\\(648.80) Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\\" + }, + { + "displayName": "(648.81) Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\\(648.81) Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\\" + }, + { + "displayName": "(648.82) Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\\(648.82) Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\\" + }, + { + "displayName": "(648.83) Abnormal glucose tolerance of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\\(648.83) Abnormal glucose tolerance of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\\" + }, + { + "displayName": "(648.84) Abnormal glucose tolerance of mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\\(648.84) Abnormal glucose tolerance of mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\\" + }, + { + "displayName": "Anemia complicating pregnancy, childbirth, or the puerperium (648.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\" + }, + { + "displayName": "(648.20) Anemia of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\\(648.20) Anemia of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\\" + }, + { + "displayName": "(648.21) Anemia of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\\(648.21) Anemia of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\\" + }, + { + "displayName": "(648.22) Anemia of mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\\(648.22) Anemia of mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\\" + }, + { + "displayName": "(648.23) Anemia of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\\(648.23) Anemia of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\\" + }, + { + "displayName": "(648.24) Anemia of mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\\(648.24) Anemia of mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\\" + }, + { + "displayName": "Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\" + }, + { + "displayName": "(648.70) Bone and joint disorders of back, pelvis, and lower limbs of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\\(648.70) Bone and joint disorders of back, pelvis, and lower limbs of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\\" + }, + { + "displayName": "(648.71) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\\(648.71) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\\" + }, + { + "displayName": "(648.72) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\\(648.72) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\\" + }, + { + "displayName": "(648.73) Bone and joint disorders of back, pelvis, and lower limbs of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\\(648.73) Bone and joint disorders of back, pelvis, and lower limbs of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\\" + }, + { + "displayName": "(648.74) Bone and joint disorders of back, pelvis, and lower limbs of mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\\(648.74) Bone and joint disorders of back, pelvis, and lower limbs of mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\\" + }, + { + "displayName": "Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\" + }, + { + "displayName": "(648.50) Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\(648.50) Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\\\(648.50) Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\" + }, + { + "displayName": "(648.51) Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\(648.51) Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\\\(648.51) Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\" + }, + { + "displayName": "(648.52) Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\(648.52) Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\\\(648.52) Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\" + }, + { + "displayName": "(648.53) Congenital cardiovascular disorders of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\(648.53) Congenital cardiovascular disorders of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\\\(648.53) Congenital cardiovascular disorders of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\" + }, + { + "displayName": "(648.54) Congenital cardiovascular disorders of mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\(648.54) Congenital cardiovascular disorders of mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\\\(648.54) Congenital cardiovascular disorders of mother, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\\" + }, + { + "displayName": "Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\" + }, + { + "displayName": "(648.00) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\\(648.00) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\\" + }, + { + "displayName": "(648.01) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\\(648.01) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\\" + }, + { + "displayName": "(648.02) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\\(648.02) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\\" + }, + { + "displayName": "(648.03) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\\(648.03) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\\" + }, + { + "displayName": "(648.04) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\\(648.04) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\\" + }, + { + "displayName": "Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\" + }, + { + "displayName": "(648.30) Drug dependence of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\(648.30) Drug dependence of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\" + }, + { + "displayName": "(648.31) Drug dependence of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\(648.31) Drug dependence of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\\\(648.31) Drug dependence of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\" + }, + { + "displayName": "(648.32) Drug dependence of mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\(648.32) Drug dependence of mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\\\(648.32) Drug dependence of mother, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\" + }, + { + "displayName": "(648.33) Drug dependence of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\(648.33) Drug dependence of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\\\(648.33) Drug dependence of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\" + }, + { + "displayName": "(648.34) Drug dependence of mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\(648.34) Drug dependence of mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\\\(648.34) Drug dependence of mother, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\\" + }, + { + "displayName": "Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\" + }, + { + "displayName": "(648.40) Mental disorders of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\(648.40) Mental disorders of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\" + }, + { + "displayName": "(648.41) Mental disorders of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\(648.41) Mental disorders of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\\\(648.41) Mental disorders of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\" + }, + { + "displayName": "(648.42) Mental disorders of mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\(648.42) Mental disorders of mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\\\(648.42) Mental disorders of mother, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\" + }, + { + "displayName": "(648.43) Mental disorders of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\(648.43) Mental disorders of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\\\(648.43) Mental disorders of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\" + }, + { + "displayName": "(648.44) Mental disorders of mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\(648.44) Mental disorders of mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\\\(648.44) Mental disorders of mother, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\\" + }, + { + "displayName": "Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\" + }, + { + "displayName": "(648.60) Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\(648.60) Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\\\(648.60) Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\" + }, + { + "displayName": "(648.61) Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\(648.61) Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\" + }, + { + "displayName": "(648.62) Other cardiovascular diseases of mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\(648.62) Other cardiovascular diseases of mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\" + }, + { + "displayName": "(648.63) Other cardiovascular diseases of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\(648.63) Other cardiovascular diseases of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\" + }, + { + "displayName": "(648.64) Other cardiovascular diseases of mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\(648.64) Other cardiovascular diseases of mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\\" + }, + { + "displayName": "Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\" + }, + { + "displayName": "(648.90) Other current conditions classifiable elsewhere of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\\(648.90) Other current conditions classifiable elsewhere of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\\" + }, + { + "displayName": "(648.91) Other current conditions classifiable elsewhere of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\\(648.91) Other current conditions classifiable elsewhere of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\\" + }, + { + "displayName": "(648.92) Other current conditions classifiable elsewhere of mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\\(648.92) Other current conditions classifiable elsewhere of mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\\" + }, + { + "displayName": "(648.93) Other current conditions classifiable elsewhere of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\\(648.93) Other current conditions classifiable elsewhere of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\\" + }, + { + "displayName": "(648.94) Other current conditions classifiable elsewhere of mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\\(648.94) Other current conditions classifiable elsewhere of mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\\" + }, + { + "displayName": "Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\" + }, + { + "displayName": "(648.10) Thyroid dysfunction of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\(648.10) Thyroid dysfunction of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\" + }, + { + "displayName": "(648.11) Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\(648.11) Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\" + }, + { + "displayName": "(648.12) Thyroid dysfunction of mother, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\(648.12) Thyroid dysfunction of mother, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\" + }, + { + "displayName": "(648.13) Thyroid dysfunction of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\(648.13) Thyroid dysfunction of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\\\(648.13) Thyroid dysfunction of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\" + }, + { + "displayName": "(648.14) Thyroid dysfunction of mother, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\(648.14) Thyroid dysfunction of mother, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications mainly related to pregnancy (640-649.99)\\\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\\\(648.14) Thyroid dysfunction of mother, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications mainly related to pregnancy (640-649.99)\\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\\" + }, + { + "displayName": "Complications occurring mainly in the course of labor and delivery (660-669.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\" + }, + { + "displayName": "Abnormality of forces of labor (661)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\" + }, + { + "displayName": "Hypertonic, incoordinate, or prolonged uterine contractions (661.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Abnormality of forces of labor (661)\\\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\" + }, + { + "displayName": "(661.40) Hypertonic, incoordinate, or prolonged uterine contractions, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\(661.40) Hypertonic, incoordinate, or prolonged uterine contractions, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\" + }, + { + "displayName": "(661.41) Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\(661.41) Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Abnormality of forces of labor (661)\\\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\\\(661.41) Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\" + }, + { + "displayName": "(661.43) Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\(661.43) Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Abnormality of forces of labor (661)\\\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\\\(661.43) Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\\" + }, + { + "displayName": "Other and unspecified uterine inertia (661.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Other and unspecified uterine inertia (661.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\" + }, + { + "displayName": "(661.20) Other and unspecified uterine inertia, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Other and unspecified uterine inertia (661.2)\\(661.20) Other and unspecified uterine inertia, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Other and unspecified uterine inertia (661.2)\\" + }, + { + "displayName": "(661.21) Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Other and unspecified uterine inertia (661.2)\\(661.21) Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Other and unspecified uterine inertia (661.2)\\" + }, + { + "displayName": "(661.23) Other and unspecified uterine inertia, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Other and unspecified uterine inertia (661.2)\\(661.23) Other and unspecified uterine inertia, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Other and unspecified uterine inertia (661.2)\\" + }, + { + "displayName": "Precipitate labor (661.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Precipitate labor (661.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\" + }, + { + "displayName": "(661.30) Precipitate labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Precipitate labor (661.3)\\(661.30) Precipitate labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Precipitate labor (661.3)\\" + }, + { + "displayName": "(661.31) Precipitate labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Precipitate labor (661.3)\\(661.31) Precipitate labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Precipitate labor (661.3)\\" + }, + { + "displayName": "(661.33) Precipitate labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Precipitate labor (661.3)\\(661.33) Precipitate labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Precipitate labor (661.3)\\" + }, + { + "displayName": "Primary uterine inertia (661.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Primary uterine inertia (661.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\" + }, + { + "displayName": "(661.00) Primary uterine inertia, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Primary uterine inertia (661.0)\\(661.00) Primary uterine inertia, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Abnormality of forces of labor (661)\\\\Primary uterine inertia (661.0)\\\\(661.00) Primary uterine inertia, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Primary uterine inertia (661.0)\\" + }, + { + "displayName": "(661.01) Primary uterine inertia, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Primary uterine inertia (661.0)\\(661.01) Primary uterine inertia, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Abnormality of forces of labor (661)\\\\Primary uterine inertia (661.0)\\\\(661.01) Primary uterine inertia, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Primary uterine inertia (661.0)\\" + }, + { + "displayName": "(661.03) Primary uterine inertia, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Primary uterine inertia (661.0)\\(661.03) Primary uterine inertia, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Abnormality of forces of labor (661)\\\\Primary uterine inertia (661.0)\\\\(661.03) Primary uterine inertia, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Primary uterine inertia (661.0)\\" + }, + { + "displayName": "Secondary uterine inertia (661.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Secondary uterine inertia (661.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Abnormality of forces of labor (661)\\\\Secondary uterine inertia (661.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\" + }, + { + "displayName": "(661.10) Secondary uterine inertia, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Secondary uterine inertia (661.1)\\(661.10) Secondary uterine inertia, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Abnormality of forces of labor (661)\\\\Secondary uterine inertia (661.1)\\\\(661.10) Secondary uterine inertia, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Secondary uterine inertia (661.1)\\" + }, + { + "displayName": "(661.11) Secondary uterine inertia, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Secondary uterine inertia (661.1)\\(661.11) Secondary uterine inertia, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Abnormality of forces of labor (661)\\\\Secondary uterine inertia (661.1)\\\\(661.11) Secondary uterine inertia, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Secondary uterine inertia (661.1)\\" + }, + { + "displayName": "(661.13) Secondary uterine inertia, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Secondary uterine inertia (661.1)\\(661.13) Secondary uterine inertia, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Secondary uterine inertia (661.1)\\" + }, + { + "displayName": "Unspecified abnormality of labor (661.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Unspecified abnormality of labor (661.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\" + }, + { + "displayName": "(661.90) Unspecified abnormality of labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Unspecified abnormality of labor (661.9)\\(661.90) Unspecified abnormality of labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Unspecified abnormality of labor (661.9)\\" + }, + { + "displayName": "(661.91) Unspecified abnormality of labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Unspecified abnormality of labor (661.9)\\(661.91) Unspecified abnormality of labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Unspecified abnormality of labor (661.9)\\" + }, + { + "displayName": "(661.93) Unspecified abnormality of labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Unspecified abnormality of labor (661.9)\\(661.93) Unspecified abnormality of labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Abnormality of forces of labor (661)\\Unspecified abnormality of labor (661.9)\\" + }, + { + "displayName": "Complications of the administration of anesthetic or other sedation in labor and delivery (668)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\" + }, + { + "displayName": "Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\" + }, + { + "displayName": "(668.10) Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\(668.10) Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\\\(668.10) Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\" + }, + { + "displayName": "(668.11) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\(668.11) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\" + }, + { + "displayName": "(668.12) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\(668.12) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\" + }, + { + "displayName": "(668.13) Cardiac complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\(668.13) Cardiac complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\" + }, + { + "displayName": "(668.14) Cardiac complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\(668.14) Cardiac complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\\" + }, + { + "displayName": "Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\" + }, + { + "displayName": "(668.20) Central nervous system complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\(668.20) Central nervous system complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\" + }, + { + "displayName": "(668.21) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\(668.21) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\" + }, + { + "displayName": "(668.22) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\(668.22) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\" + }, + { + "displayName": "(668.23) Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\(668.23) Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\\\(668.23) Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\" + }, + { + "displayName": "(668.24) Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\(668.24) Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\\\(668.24) Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\\" + }, + { + "displayName": "Other complications of anesthesia or other sedation in labor and delivery (668.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Other complications of anesthesia or other sedation in labor and delivery (668.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\" + }, + { + "displayName": "(668.80) Other complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Other complications of anesthesia or other sedation in labor and delivery (668.8)\\(668.80) Other complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Other complications of anesthesia or other sedation in labor and delivery (668.8)\\" + }, + { + "displayName": "(668.81) Other complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Other complications of anesthesia or other sedation in labor and delivery (668.8)\\(668.81) Other complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Other complications of anesthesia or other sedation in labor and delivery (668.8)\\" + }, + { + "displayName": "(668.82) Other complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Other complications of anesthesia or other sedation in labor and delivery (668.8)\\(668.82) Other complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Other complications of anesthesia or other sedation in labor and delivery (668.8)\\" + }, + { + "displayName": "(668.83) Other complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Other complications of anesthesia or other sedation in labor and delivery (668.8)\\(668.83) Other complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Other complications of anesthesia or other sedation in labor and delivery (668.8)\\" + }, + { + "displayName": "(668.84) Other complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Other complications of anesthesia or other sedation in labor and delivery (668.8)\\(668.84) Other complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Other complications of anesthesia or other sedation in labor and delivery (668.8)\\" + }, + { + "displayName": "Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\" + }, + { + "displayName": "(668.00) Pulmonary complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\(668.00) Pulmonary complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\" + }, + { + "displayName": "(668.01) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\(668.01) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\" + }, + { + "displayName": "(668.02) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\(668.02) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\\\(668.02) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\" + }, + { + "displayName": "(668.03) Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\(668.03) Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\\\(668.03) Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\" + }, + { + "displayName": "(668.04) Pulmonary complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\(668.04) Pulmonary complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\\" + }, + { + "displayName": "Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\" + }, + { + "displayName": "(668.90) Unspecified complication of anesthesia and other sedation in labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\\(668.90) Unspecified complication of anesthesia and other sedation in labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\\" + }, + { + "displayName": "(668.91) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\\(668.91) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\\" + }, + { + "displayName": "(668.92) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\\(668.92) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\\" + }, + { + "displayName": "(668.93) Unspecified complication of anesthesia and other sedation in labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\\(668.93) Unspecified complication of anesthesia and other sedation in labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\\" + }, + { + "displayName": "(668.94) Unspecified complication of anesthesia and other sedation in labor and delivery, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\\(668.94) Unspecified complication of anesthesia and other sedation in labor and delivery, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\\" + }, + { + "displayName": "Long labor (662)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\" + }, + { + "displayName": "Delayed delivery of second twin, triplet, etc. (662.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Delayed delivery of second twin, triplet, etc. (662.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\" + }, + { + "displayName": "(662.30) Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Delayed delivery of second twin, triplet, etc. (662.3)\\(662.30) Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Delayed delivery of second twin, triplet, etc. (662.3)\\" + }, + { + "displayName": "(662.31) Delayed delivery of second twin, triplet, etc., delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Delayed delivery of second twin, triplet, etc. (662.3)\\(662.31) Delayed delivery of second twin, triplet, etc., delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Delayed delivery of second twin, triplet, etc. (662.3)\\" + }, + { + "displayName": "(662.33) Delayed delivery of second twin, triplet, etc., antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Delayed delivery of second twin, triplet, etc. (662.3)\\(662.33) Delayed delivery of second twin, triplet, etc., antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Delayed delivery of second twin, triplet, etc. (662.3)\\" + }, + { + "displayName": "Prolonged first stage of labor (662.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged first stage of labor (662.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\" + }, + { + "displayName": "(662.00) Prolonged first stage of labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged first stage of labor (662.0)\\(662.00) Prolonged first stage of labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Long labor (662)\\\\Prolonged first stage of labor (662.0)\\\\(662.00) Prolonged first stage of labor, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged first stage of labor (662.0)\\" + }, + { + "displayName": "(662.01) Prolonged first stage of labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged first stage of labor (662.0)\\(662.01) Prolonged first stage of labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged first stage of labor (662.0)\\" + }, + { + "displayName": "(662.03) Prolonged first stage of labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged first stage of labor (662.0)\\(662.03) Prolonged first stage of labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Long labor (662)\\\\Prolonged first stage of labor (662.0)\\\\(662.03) Prolonged first stage of labor, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged first stage of labor (662.0)\\" + }, + { + "displayName": "Prolonged labor, unspecified (662.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged labor, unspecified (662.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Long labor (662)\\\\Prolonged labor, unspecified (662.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\" + }, + { + "displayName": "(662.10) Unspecified prolonged labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged labor, unspecified (662.1)\\(662.10) Unspecified prolonged labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Long labor (662)\\\\Prolonged labor, unspecified (662.1)\\\\(662.10) Unspecified prolonged labor, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged labor, unspecified (662.1)\\" + }, + { + "displayName": "(662.11) Unspecified prolonged labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged labor, unspecified (662.1)\\(662.11) Unspecified prolonged labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged labor, unspecified (662.1)\\" + }, + { + "displayName": "(662.13) Unspecified prolonged labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged labor, unspecified (662.1)\\(662.13) Unspecified prolonged labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Long labor (662)\\\\Prolonged labor, unspecified (662.1)\\\\(662.13) Unspecified prolonged labor, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged labor, unspecified (662.1)\\" + }, + { + "displayName": "Prolonged second stage of labor (662.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged second stage of labor (662.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\" + }, + { + "displayName": "(662.20) Prolonged second stage of labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged second stage of labor (662.2)\\(662.20) Prolonged second stage of labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Long labor (662)\\\\Prolonged second stage of labor (662.2)\\\\(662.20) Prolonged second stage of labor, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged second stage of labor (662.2)\\" + }, + { + "displayName": "(662.21) Prolonged second stage of labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged second stage of labor (662.2)\\(662.21) Prolonged second stage of labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Long labor (662)\\\\Prolonged second stage of labor (662.2)\\\\(662.21) Prolonged second stage of labor, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged second stage of labor (662.2)\\" + }, + { + "displayName": "(662.23) Prolonged second stage of labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged second stage of labor (662.2)\\(662.23) Prolonged second stage of labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Long labor (662)\\\\Prolonged second stage of labor (662.2)\\\\(662.23) Prolonged second stage of labor, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Long labor (662)\\Prolonged second stage of labor (662.2)\\" + }, + { + "displayName": "Obstructed labor (660)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\" + }, + { + "displayName": "Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\" + }, + { + "displayName": "(660.30) Deep transverse arrest and persistent occipitoposterior position, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\\(660.30) Deep transverse arrest and persistent occipitoposterior position, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\\" + }, + { + "displayName": "(660.31) Deep transverse arrest and persistent occipitoposterior position, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\\(660.31) Deep transverse arrest and persistent occipitoposterior position, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\\" + }, + { + "displayName": "(660.33) Deep transverse arrest and persistent occipitoposterior position, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\\(660.33) Deep transverse arrest and persistent occipitoposterior position, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\\" + }, + { + "displayName": "Failed forceps or vacuum extractor, unspecified (660.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed forceps or vacuum extractor, unspecified (660.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\" + }, + { + "displayName": "(660.70) Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed forceps or vacuum extractor, unspecified (660.7)\\(660.70) Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed forceps or vacuum extractor, unspecified (660.7)\\" + }, + { + "displayName": "(660.71) Failed forceps or vacuum extractor, unspecified, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed forceps or vacuum extractor, unspecified (660.7)\\(660.71) Failed forceps or vacuum extractor, unspecified, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed forceps or vacuum extractor, unspecified (660.7)\\" + }, + { + "displayName": "(660.73) Failed forceps or vacuum extractor, unspecified, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed forceps or vacuum extractor, unspecified (660.7)\\(660.73) Failed forceps or vacuum extractor, unspecified, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed forceps or vacuum extractor, unspecified (660.7)\\" + }, + { + "displayName": "Failed trial of labor, unspecified (660.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed trial of labor, unspecified (660.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Obstructed labor (660)\\\\Failed trial of labor, unspecified (660.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\" + }, + { + "displayName": "(660.60) Unspecified failed trial of labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed trial of labor, unspecified (660.6)\\(660.60) Unspecified failed trial of labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Obstructed labor (660)\\\\Failed trial of labor, unspecified (660.6)\\\\(660.60) Unspecified failed trial of labor, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed trial of labor, unspecified (660.6)\\" + }, + { + "displayName": "(660.61) Unspecified failed trial of labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed trial of labor, unspecified (660.6)\\(660.61) Unspecified failed trial of labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed trial of labor, unspecified (660.6)\\" + }, + { + "displayName": "(660.63) Unspecified failed trial of labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed trial of labor, unspecified (660.6)\\(660.63) Unspecified failed trial of labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Obstructed labor (660)\\\\Failed trial of labor, unspecified (660.6)\\\\(660.63) Unspecified failed trial of labor, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Failed trial of labor, unspecified (660.6)\\" + }, + { + "displayName": "Locked twins (660.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Locked twins (660.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\" + }, + { + "displayName": "(660.50) Locked twins, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Locked twins (660.5)\\(660.50) Locked twins, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Obstructed labor (660)\\\\Locked twins (660.5)\\\\(660.50) Locked twins, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Locked twins (660.5)\\" + }, + { + "displayName": "(660.51) Locked twins, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Locked twins (660.5)\\(660.51) Locked twins, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Obstructed labor (660)\\\\Locked twins (660.5)\\\\(660.51) Locked twins, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Locked twins (660.5)\\" + }, + { + "displayName": "(660.53) Locked twins, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Locked twins (660.5)\\(660.53) Locked twins, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Locked twins (660.5)\\" + }, + { + "displayName": "Obstruction by abnormal pelvic soft tissues during labor (660.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by abnormal pelvic soft tissues during labor (660.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\" + }, + { + "displayName": "(660.20) Obstruction by abnormal pelvic soft tissues during labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by abnormal pelvic soft tissues during labor (660.2)\\(660.20) Obstruction by abnormal pelvic soft tissues during labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by abnormal pelvic soft tissues during labor (660.2)\\" + }, + { + "displayName": "(660.21) Obstruction by abnormal pelvic soft tissues during labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by abnormal pelvic soft tissues during labor (660.2)\\(660.21) Obstruction by abnormal pelvic soft tissues during labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by abnormal pelvic soft tissues during labor (660.2)\\" + }, + { + "displayName": "(660.23) Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by abnormal pelvic soft tissues during labor (660.2)\\(660.23) Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by abnormal pelvic soft tissues during labor (660.2)\\" + }, + { + "displayName": "Obstruction by bony pelvis during labor (660.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by bony pelvis during labor (660.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\" + }, + { + "displayName": "(660.10) Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by bony pelvis during labor (660.1)\\(660.10) Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by bony pelvis during labor (660.1)\\" + }, + { + "displayName": "(660.11) Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by bony pelvis during labor (660.1)\\(660.11) Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by bony pelvis during labor (660.1)\\" + }, + { + "displayName": "(660.13) Obstruction by bony pelvis during labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by bony pelvis during labor (660.1)\\(660.13) Obstruction by bony pelvis during labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Obstructed labor (660)\\\\Obstruction by bony pelvis during labor (660.1)\\\\(660.13) Obstruction by bony pelvis during labor, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction by bony pelvis during labor (660.1)\\" + }, + { + "displayName": "Obstruction caused by malposition of fetus at onset of labor (660.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction caused by malposition of fetus at onset of labor (660.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\" + }, + { + "displayName": "(660.00) Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction caused by malposition of fetus at onset of labor (660.0)\\(660.00) Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Obstructed labor (660)\\\\Obstruction caused by malposition of fetus at onset of labor (660.0)\\\\(660.00) Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction caused by malposition of fetus at onset of labor (660.0)\\" + }, + { + "displayName": "(660.01) Obstruction caused by malposition of fetus at onset of labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction caused by malposition of fetus at onset of labor (660.0)\\(660.01) Obstruction caused by malposition of fetus at onset of labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction caused by malposition of fetus at onset of labor (660.0)\\" + }, + { + "displayName": "(660.03) Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction caused by malposition of fetus at onset of labor (660.0)\\(660.03) Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Obstructed labor (660)\\\\Obstruction caused by malposition of fetus at onset of labor (660.0)\\\\(660.03) Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Obstruction caused by malposition of fetus at onset of labor (660.0)\\" + }, + { + "displayName": "Other causes of obstructed labor (660.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Other causes of obstructed labor (660.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\" + }, + { + "displayName": "(660.80) Other causes of obstructed labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Other causes of obstructed labor (660.8)\\(660.80) Other causes of obstructed labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Obstructed labor (660)\\\\Other causes of obstructed labor (660.8)\\\\(660.80) Other causes of obstructed labor, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Other causes of obstructed labor (660.8)\\" + }, + { + "displayName": "(660.81) Other causes of obstructed labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Other causes of obstructed labor (660.8)\\(660.81) Other causes of obstructed labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Other causes of obstructed labor (660.8)\\" + }, + { + "displayName": "(660.83) Other causes of obstructed labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Other causes of obstructed labor (660.8)\\(660.83) Other causes of obstructed labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Other causes of obstructed labor (660.8)\\" + }, + { + "displayName": "Shoulder (girdle) dystocia during labor and delivery (660.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Shoulder (girdle) dystocia during labor and delivery (660.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\" + }, + { + "displayName": "(660.40) Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Shoulder (girdle) dystocia during labor and delivery (660.4)\\(660.40) Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Shoulder (girdle) dystocia during labor and delivery (660.4)\\" + }, + { + "displayName": "(660.41) Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Shoulder (girdle) dystocia during labor and delivery (660.4)\\(660.41) Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Obstructed labor (660)\\\\Shoulder (girdle) dystocia during labor and delivery (660.4)\\\\(660.41) Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Shoulder (girdle) dystocia during labor and delivery (660.4)\\" + }, + { + "displayName": "(660.43) Shoulder (girdle) dystocia, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Shoulder (girdle) dystocia during labor and delivery (660.4)\\(660.43) Shoulder (girdle) dystocia, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Shoulder (girdle) dystocia during labor and delivery (660.4)\\" + }, + { + "displayName": "Unspecified obstructed labor (660.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Unspecified obstructed labor (660.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\" + }, + { + "displayName": "(660.90) Unspecified obstructed labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Unspecified obstructed labor (660.9)\\(660.90) Unspecified obstructed labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Unspecified obstructed labor (660.9)\\" + }, + { + "displayName": "(660.91) Unspecified obstructed labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Unspecified obstructed labor (660.9)\\(660.91) Unspecified obstructed labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Unspecified obstructed labor (660.9)\\" + }, + { + "displayName": "(660.93) Unspecified obstructed labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Unspecified obstructed labor (660.9)\\(660.93) Unspecified obstructed labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Obstructed labor (660)\\Unspecified obstructed labor (660.9)\\" + }, + { + "displayName": "Other complications of labor and delivery, not elsewhere classified (669)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\" + }, + { + "displayName": "Acute kidney failure following labor and delivery (669.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Acute kidney failure following labor and delivery (669.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\" + }, + { + "displayName": "(669.30) Acute kidney failure following labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Acute kidney failure following labor and delivery (669.3)\\(669.30) Acute kidney failure following labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Acute kidney failure following labor and delivery (669.3)\\" + }, + { + "displayName": "(669.32) Acute kidney failure following labor and delivery, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Acute kidney failure following labor and delivery (669.3)\\(669.32) Acute kidney failure following labor and delivery, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Acute kidney failure following labor and delivery (669.3)\\" + }, + { + "displayName": "(669.34) Acute kidney failure following labor and delivery, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Acute kidney failure following labor and delivery (669.3)\\(669.34) Acute kidney failure following labor and delivery, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Acute kidney failure following labor and delivery (669.3)\\" + }, + { + "displayName": "Breech extraction, without mention of indication (669.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Breech extraction, without mention of indication (669.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\" + }, + { + "displayName": "(669.60) Breech extraction, without mention of indication, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Breech extraction, without mention of indication (669.6)\\(669.60) Breech extraction, without mention of indication, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Breech extraction, without mention of indication (669.6)\\" + }, + { + "displayName": "(669.61) Breech extraction, without mention of indication, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Breech extraction, without mention of indication (669.6)\\(669.61) Breech extraction, without mention of indication, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Breech extraction, without mention of indication (669.6)\\" + }, + { + "displayName": "Cesarean delivery, without mention of indication (669.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Cesarean delivery, without mention of indication (669.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\" + }, + { + "displayName": "(669.70) Cesarean delivery, without mention of indication, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Cesarean delivery, without mention of indication (669.7)\\(669.70) Cesarean delivery, without mention of indication, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Cesarean delivery, without mention of indication (669.7)\\" + }, + { + "displayName": "(669.71) Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Cesarean delivery, without mention of indication (669.7)\\(669.71) Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Cesarean delivery, without mention of indication (669.7)\\\\(669.71) Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Cesarean delivery, without mention of indication (669.7)\\" + }, + { + "displayName": "Forceps or vacuum extractor delivery without mention of indication (669.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Forceps or vacuum extractor delivery without mention of indication (669.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Forceps or vacuum extractor delivery without mention of indication (669.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\" + }, + { + "displayName": "(669.50) Forceps or vacuum extractor delivery without mention of indication, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Forceps or vacuum extractor delivery without mention of indication (669.5)\\(669.50) Forceps or vacuum extractor delivery without mention of indication, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Forceps or vacuum extractor delivery without mention of indication (669.5)\\" + }, + { + "displayName": "(669.51) Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Forceps or vacuum extractor delivery without mention of indication (669.5)\\(669.51) Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Forceps or vacuum extractor delivery without mention of indication (669.5)\\\\(669.51) Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Forceps or vacuum extractor delivery without mention of indication (669.5)\\" + }, + { + "displayName": "Maternal distress (669.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal distress (669.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\" + }, + { + "displayName": "(669.00) Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal distress (669.0)\\(669.00) Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Maternal distress (669.0)\\\\(669.00) Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal distress (669.0)\\" + }, + { + "displayName": "(669.01) Maternal distress complicating labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal distress (669.0)\\(669.01) Maternal distress complicating labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal distress (669.0)\\" + }, + { + "displayName": "(669.02) Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal distress (669.0)\\(669.02) Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Maternal distress (669.0)\\\\(669.02) Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal distress (669.0)\\" + }, + { + "displayName": "(669.03) Maternal distress complicating labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal distress (669.0)\\(669.03) Maternal distress complicating labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Maternal distress (669.0)\\\\(669.03) Maternal distress complicating labor and delivery, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal distress (669.0)\\" + }, + { + "displayName": "(669.04) Maternal distress complicating labor and delivery, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal distress (669.0)\\(669.04) Maternal distress complicating labor and delivery, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal distress (669.0)\\" + }, + { + "displayName": "Maternal hypotension syndrome (669.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal hypotension syndrome (669.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Maternal hypotension syndrome (669.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\" + }, + { + "displayName": "(669.20) Maternal hypotension syndrome, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal hypotension syndrome (669.2)\\(669.20) Maternal hypotension syndrome, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal hypotension syndrome (669.2)\\" + }, + { + "displayName": "(669.21) Maternal hypotension syndrome, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal hypotension syndrome (669.2)\\(669.21) Maternal hypotension syndrome, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal hypotension syndrome (669.2)\\" + }, + { + "displayName": "(669.22) Maternal hypotension syndrome, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal hypotension syndrome (669.2)\\(669.22) Maternal hypotension syndrome, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal hypotension syndrome (669.2)\\" + }, + { + "displayName": "(669.23) Maternal hypotension syndrome, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal hypotension syndrome (669.2)\\(669.23) Maternal hypotension syndrome, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal hypotension syndrome (669.2)\\" + }, + { + "displayName": "(669.24) Maternal hypotension syndrome, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal hypotension syndrome (669.2)\\(669.24) Maternal hypotension syndrome, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Maternal hypotension syndrome (669.2)\\" + }, + { + "displayName": "Other complications of labor and delivery (669.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of labor and delivery (669.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Other complications of labor and delivery (669.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\" + }, + { + "displayName": "(669.80) Other complications of labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of labor and delivery (669.8)\\(669.80) Other complications of labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Other complications of labor and delivery (669.8)\\\\(669.80) Other complications of labor and delivery, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of labor and delivery (669.8)\\" + }, + { + "displayName": "(669.81) Other complications of labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of labor and delivery (669.8)\\(669.81) Other complications of labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Other complications of labor and delivery (669.8)\\\\(669.81) Other complications of labor and delivery, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of labor and delivery (669.8)\\" + }, + { + "displayName": "(669.82) Other complications of labor and delivery, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of labor and delivery (669.8)\\(669.82) Other complications of labor and delivery, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of labor and delivery (669.8)\\" + }, + { + "displayName": "(669.83) Other complications of labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of labor and delivery (669.8)\\(669.83) Other complications of labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Other complications of labor and delivery (669.8)\\\\(669.83) Other complications of labor and delivery, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of labor and delivery (669.8)\\" + }, + { + "displayName": "(669.84) Other complications of labor and delivery, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of labor and delivery (669.8)\\(669.84) Other complications of labor and delivery, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Other complications of labor and delivery (669.8)\\\\(669.84) Other complications of labor and delivery, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of labor and delivery (669.8)\\" + }, + { + "displayName": "Other complications of obstetrical surgery and procedures (669.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of obstetrical surgery and procedures (669.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\" + }, + { + "displayName": "(669.40) Other complications of obstetrical surgery and procedures, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of obstetrical surgery and procedures (669.4)\\(669.40) Other complications of obstetrical surgery and procedures, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of obstetrical surgery and procedures (669.4)\\" + }, + { + "displayName": "(669.41) Other complications of obstetrical surgery and procedures, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of obstetrical surgery and procedures (669.4)\\(669.41) Other complications of obstetrical surgery and procedures, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of obstetrical surgery and procedures (669.4)\\" + }, + { + "displayName": "(669.42) Other complications of obstetrical surgery and procedures, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of obstetrical surgery and procedures (669.4)\\(669.42) Other complications of obstetrical surgery and procedures, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of obstetrical surgery and procedures (669.4)\\" + }, + { + "displayName": "(669.43) Other complications of obstetrical surgery and procedures, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of obstetrical surgery and procedures (669.4)\\(669.43) Other complications of obstetrical surgery and procedures, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of obstetrical surgery and procedures (669.4)\\" + }, + { + "displayName": "(669.44) Other complications of obstetrical surgery and procedures, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of obstetrical surgery and procedures (669.4)\\(669.44) Other complications of obstetrical surgery and procedures, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Other complications of obstetrical surgery and procedures (669.4)\\\\(669.44) Other complications of obstetrical surgery and procedures, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Other complications of obstetrical surgery and procedures (669.4)\\" + }, + { + "displayName": "Shock during or following labor and delivery (669.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Shock during or following labor and delivery (669.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\" + }, + { + "displayName": "(669.10) Shock during or following labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Shock during or following labor and delivery (669.1)\\(669.10) Shock during or following labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Shock during or following labor and delivery (669.1)\\\\(669.10) Shock during or following labor and delivery, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Shock during or following labor and delivery (669.1)\\" + }, + { + "displayName": "(669.11) Shock during or following labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Shock during or following labor and delivery (669.1)\\(669.11) Shock during or following labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Shock during or following labor and delivery (669.1)\\" + }, + { + "displayName": "(669.12) Shock during or following labor and delivery, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Shock during or following labor and delivery (669.1)\\(669.12) Shock during or following labor and delivery, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Shock during or following labor and delivery (669.1)\\\\(669.12) Shock during or following labor and delivery, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Shock during or following labor and delivery (669.1)\\" + }, + { + "displayName": "(669.13) Shock during or following labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Shock during or following labor and delivery (669.1)\\(669.13) Shock during or following labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other complications of labor and delivery, not elsewhere classified (669)\\\\Shock during or following labor and delivery (669.1)\\\\(669.13) Shock during or following labor and delivery, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Shock during or following labor and delivery (669.1)\\" + }, + { + "displayName": "(669.14) Shock during or following labor and delivery, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Shock during or following labor and delivery (669.1)\\(669.14) Shock during or following labor and delivery, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Shock during or following labor and delivery (669.1)\\" + }, + { + "displayName": "Unspecified complication of labor and delivery (669.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Unspecified complication of labor and delivery (669.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\" + }, + { + "displayName": "(669.90) Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Unspecified complication of labor and delivery (669.9)\\(669.90) Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Unspecified complication of labor and delivery (669.9)\\" + }, + { + "displayName": "(669.91) Unspecified complication of labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Unspecified complication of labor and delivery (669.9)\\(669.91) Unspecified complication of labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Unspecified complication of labor and delivery (669.9)\\" + }, + { + "displayName": "(669.92) Unspecified complication of labor and delivery, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Unspecified complication of labor and delivery (669.9)\\(669.92) Unspecified complication of labor and delivery, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Unspecified complication of labor and delivery (669.9)\\" + }, + { + "displayName": "(669.93) Unspecified complication of labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Unspecified complication of labor and delivery (669.9)\\(669.93) Unspecified complication of labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Unspecified complication of labor and delivery (669.9)\\" + }, + { + "displayName": "(669.94) Unspecified complication of labor and delivery, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Unspecified complication of labor and delivery (669.9)\\(669.94) Unspecified complication of labor and delivery, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other complications of labor and delivery, not elsewhere classified (669)\\Unspecified complication of labor and delivery (669.9)\\" + }, + { + "displayName": "Other obstetrical trauma (665)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\" + }, + { + "displayName": "High vaginal laceration during and after labor (665.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\High vaginal laceration during and after labor (665.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\High vaginal laceration during and after labor (665.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\" + }, + { + "displayName": "(665.40) High vaginal laceration, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\High vaginal laceration during and after labor (665.4)\\(665.40) High vaginal laceration, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\High vaginal laceration during and after labor (665.4)\\\\(665.40) High vaginal laceration, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\High vaginal laceration during and after labor (665.4)\\" + }, + { + "displayName": "(665.41) High vaginal laceration, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\High vaginal laceration during and after labor (665.4)\\(665.41) High vaginal laceration, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\High vaginal laceration during and after labor (665.4)\\\\(665.41) High vaginal laceration, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\High vaginal laceration during and after labor (665.4)\\" + }, + { + "displayName": "(665.44) High vaginal laceration, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\High vaginal laceration during and after labor (665.4)\\(665.44) High vaginal laceration, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\High vaginal laceration during and after labor (665.4)\\\\(665.44) High vaginal laceration, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\High vaginal laceration during and after labor (665.4)\\" + }, + { + "displayName": "Obstetrical damage to pelvic joints and ligaments (665.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical damage to pelvic joints and ligaments (665.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\" + }, + { + "displayName": "(665.60) Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical damage to pelvic joints and ligaments (665.6)\\(665.60) Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical damage to pelvic joints and ligaments (665.6)\\" + }, + { + "displayName": "(665.61) Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical damage to pelvic joints and ligaments (665.6)\\(665.61) Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical damage to pelvic joints and ligaments (665.6)\\" + }, + { + "displayName": "(665.64) Damage to pelvic joints and ligaments, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical damage to pelvic joints and ligaments (665.6)\\(665.64) Damage to pelvic joints and ligaments, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical damage to pelvic joints and ligaments (665.6)\\" + }, + { + "displayName": "Obstetrical inversion of uterus (665.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical inversion of uterus (665.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\" + }, + { + "displayName": "(665.20) Inversion of uterus, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical inversion of uterus (665.2)\\(665.20) Inversion of uterus, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical inversion of uterus (665.2)\\" + }, + { + "displayName": "(665.22) Inversion of uterus, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical inversion of uterus (665.2)\\(665.22) Inversion of uterus, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical inversion of uterus (665.2)\\" + }, + { + "displayName": "(665.24) Inversion of uterus, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical inversion of uterus (665.2)\\(665.24) Inversion of uterus, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical inversion of uterus (665.2)\\" + }, + { + "displayName": "Obstetrical laceration of cervix (665.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical laceration of cervix (665.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\Obstetrical laceration of cervix (665.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\" + }, + { + "displayName": "(665.30) Laceration of cervix, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical laceration of cervix (665.3)\\(665.30) Laceration of cervix, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\Obstetrical laceration of cervix (665.3)\\\\(665.30) Laceration of cervix, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical laceration of cervix (665.3)\\" + }, + { + "displayName": "(665.31) Laceration of cervix, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical laceration of cervix (665.3)\\(665.31) Laceration of cervix, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\Obstetrical laceration of cervix (665.3)\\\\(665.31) Laceration of cervix, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical laceration of cervix (665.3)\\" + }, + { + "displayName": "(665.34) Laceration of cervix, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical laceration of cervix (665.3)\\(665.34) Laceration of cervix, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical laceration of cervix (665.3)\\" + }, + { + "displayName": "Obstetrical pelvic hematoma (665.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical pelvic hematoma (665.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\Obstetrical pelvic hematoma (665.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\" + }, + { + "displayName": "(665.70) Pelvic hematoma, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical pelvic hematoma (665.7)\\(665.70) Pelvic hematoma, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical pelvic hematoma (665.7)\\" + }, + { + "displayName": "(665.71) Pelvic hematoma, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical pelvic hematoma (665.7)\\(665.71) Pelvic hematoma, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\Obstetrical pelvic hematoma (665.7)\\\\(665.71) Pelvic hematoma, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical pelvic hematoma (665.7)\\" + }, + { + "displayName": "(665.72) Pelvic hematoma, delivered with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical pelvic hematoma (665.7)\\(665.72) Pelvic hematoma, delivered with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\Obstetrical pelvic hematoma (665.7)\\\\(665.72) Pelvic hematoma, delivered with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical pelvic hematoma (665.7)\\" + }, + { + "displayName": "(665.74) Pelvic hematoma, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical pelvic hematoma (665.7)\\(665.74) Pelvic hematoma, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Obstetrical pelvic hematoma (665.7)\\" + }, + { + "displayName": "Other obstetrical injury to pelvic organs (665.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other obstetrical injury to pelvic organs (665.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\Other obstetrical injury to pelvic organs (665.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\" + }, + { + "displayName": "(665.50) Other injury to pelvic organs, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other obstetrical injury to pelvic organs (665.5)\\(665.50) Other injury to pelvic organs, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other obstetrical injury to pelvic organs (665.5)\\" + }, + { + "displayName": "(665.51) Other injury to pelvic organs, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other obstetrical injury to pelvic organs (665.5)\\(665.51) Other injury to pelvic organs, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other obstetrical injury to pelvic organs (665.5)\\" + }, + { + "displayName": "(665.54) Other injury to pelvic organs, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other obstetrical injury to pelvic organs (665.5)\\(665.54) Other injury to pelvic organs, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other obstetrical injury to pelvic organs (665.5)\\" + }, + { + "displayName": "Other specified obstetrical trauma (665.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other specified obstetrical trauma (665.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\" + }, + { + "displayName": "(665.80) Other specified obstetrical trauma, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other specified obstetrical trauma (665.8)\\(665.80) Other specified obstetrical trauma, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other specified obstetrical trauma (665.8)\\" + }, + { + "displayName": "(665.81) Other specified obstetrical trauma, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other specified obstetrical trauma (665.8)\\(665.81) Other specified obstetrical trauma, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other specified obstetrical trauma (665.8)\\" + }, + { + "displayName": "(665.82) Other specified obstetrical trauma, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other specified obstetrical trauma (665.8)\\(665.82) Other specified obstetrical trauma, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\Other specified obstetrical trauma (665.8)\\\\(665.82) Other specified obstetrical trauma, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other specified obstetrical trauma (665.8)\\" + }, + { + "displayName": "(665.83) Other specified obstetrical trauma, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other specified obstetrical trauma (665.8)\\(665.83) Other specified obstetrical trauma, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Other obstetrical trauma (665)\\\\Other specified obstetrical trauma (665.8)\\\\(665.83) Other specified obstetrical trauma, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other specified obstetrical trauma (665.8)\\" + }, + { + "displayName": "(665.84) Other specified obstetrical trauma, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other specified obstetrical trauma (665.8)\\(665.84) Other specified obstetrical trauma, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Other specified obstetrical trauma (665.8)\\" + }, + { + "displayName": "Rupture of uterus before onset of labor (665.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus before onset of labor (665.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\" + }, + { + "displayName": "(665.00) Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus before onset of labor (665.0)\\(665.00) Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus before onset of labor (665.0)\\" + }, + { + "displayName": "(665.01) Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus before onset of labor (665.0)\\(665.01) Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus before onset of labor (665.0)\\" + }, + { + "displayName": "(665.03) Rupture of uterus before onset of labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus before onset of labor (665.0)\\(665.03) Rupture of uterus before onset of labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus before onset of labor (665.0)\\" + }, + { + "displayName": "Rupture of uterus during labor (665.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus during labor (665.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\" + }, + { + "displayName": "(665.10) Rupture of uterus during labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus during labor (665.1)\\(665.10) Rupture of uterus during labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus during labor (665.1)\\" + }, + { + "displayName": "(665.11) Rupture of uterus during labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus during labor (665.1)\\(665.11) Rupture of uterus during labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Rupture of uterus during labor (665.1)\\" + }, + { + "displayName": "Unspecified obstetrical trauma (665.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Unspecified obstetrical trauma (665.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\" + }, + { + "displayName": "(665.90) Unspecified obstetrical trauma, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Unspecified obstetrical trauma (665.9)\\(665.90) Unspecified obstetrical trauma, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Unspecified obstetrical trauma (665.9)\\" + }, + { + "displayName": "(665.91) Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Unspecified obstetrical trauma (665.9)\\(665.91) Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Unspecified obstetrical trauma (665.9)\\" + }, + { + "displayName": "(665.92) Unspecified obstetrical trauma, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Unspecified obstetrical trauma (665.9)\\(665.92) Unspecified obstetrical trauma, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Unspecified obstetrical trauma (665.9)\\" + }, + { + "displayName": "(665.93) Unspecified obstetrical trauma, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Unspecified obstetrical trauma (665.9)\\(665.93) Unspecified obstetrical trauma, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Unspecified obstetrical trauma (665.9)\\" + }, + { + "displayName": "(665.94) Unspecified obstetrical trauma, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Unspecified obstetrical trauma (665.9)\\(665.94) Unspecified obstetrical trauma, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Other obstetrical trauma (665)\\Unspecified obstetrical trauma (665.9)\\" + }, + { + "displayName": "Postpartum hemorrhage (666)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\" + }, + { + "displayName": "Delayed and secondary postpartum hemorrhage (666.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Delayed and secondary postpartum hemorrhage (666.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Postpartum hemorrhage (666)\\\\Delayed and secondary postpartum hemorrhage (666.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\" + }, + { + "displayName": "(666.20) Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Delayed and secondary postpartum hemorrhage (666.2)\\(666.20) Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Delayed and secondary postpartum hemorrhage (666.2)\\" + }, + { + "displayName": "(666.22) Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Delayed and secondary postpartum hemorrhage (666.2)\\(666.22) Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Delayed and secondary postpartum hemorrhage (666.2)\\" + }, + { + "displayName": "(666.24) Delayed and secondary postpartum hemorrhage, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Delayed and secondary postpartum hemorrhage (666.2)\\(666.24) Delayed and secondary postpartum hemorrhage, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Postpartum hemorrhage (666)\\\\Delayed and secondary postpartum hemorrhage (666.2)\\\\(666.24) Delayed and secondary postpartum hemorrhage, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Delayed and secondary postpartum hemorrhage (666.2)\\" + }, + { + "displayName": "Other immediate postpartum hemorrhage (666.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Other immediate postpartum hemorrhage (666.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Postpartum hemorrhage (666)\\\\Other immediate postpartum hemorrhage (666.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\" + }, + { + "displayName": "(666.10) Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Other immediate postpartum hemorrhage (666.1)\\(666.10) Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Other immediate postpartum hemorrhage (666.1)\\" + }, + { + "displayName": "(666.12) Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Other immediate postpartum hemorrhage (666.1)\\(666.12) Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Other immediate postpartum hemorrhage (666.1)\\" + }, + { + "displayName": "(666.14) Other immediate postpartum hemorrhage, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Other immediate postpartum hemorrhage (666.1)\\(666.14) Other immediate postpartum hemorrhage, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Other immediate postpartum hemorrhage (666.1)\\" + }, + { + "displayName": "Postpartum coagulation defects (666.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Postpartum coagulation defects (666.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Postpartum hemorrhage (666)\\\\Postpartum coagulation defects (666.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\" + }, + { + "displayName": "(666.30) Postpartum coagulation defects, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Postpartum coagulation defects (666.3)\\(666.30) Postpartum coagulation defects, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Postpartum hemorrhage (666)\\\\Postpartum coagulation defects (666.3)\\\\(666.30) Postpartum coagulation defects, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Postpartum coagulation defects (666.3)\\" + }, + { + "displayName": "(666.32) Postpartum coagulation defects, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Postpartum coagulation defects (666.3)\\(666.32) Postpartum coagulation defects, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Postpartum coagulation defects (666.3)\\" + }, + { + "displayName": "(666.34) Postpartum coagulation defects, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Postpartum coagulation defects (666.3)\\(666.34) Postpartum coagulation defects, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Postpartum hemorrhage (666)\\\\Postpartum coagulation defects (666.3)\\\\(666.34) Postpartum coagulation defects, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Postpartum coagulation defects (666.3)\\" + }, + { + "displayName": "Third-stage postpartum hemorrhage (666.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Third-stage postpartum hemorrhage (666.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\" + }, + { + "displayName": "(666.00) Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Third-stage postpartum hemorrhage (666.0)\\(666.00) Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Third-stage postpartum hemorrhage (666.0)\\" + }, + { + "displayName": "(666.02) Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Third-stage postpartum hemorrhage (666.0)\\(666.02) Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Third-stage postpartum hemorrhage (666.0)\\" + }, + { + "displayName": "(666.04) Third-stage postpartum hemorrhage, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Third-stage postpartum hemorrhage (666.0)\\(666.04) Third-stage postpartum hemorrhage, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Postpartum hemorrhage (666)\\Third-stage postpartum hemorrhage (666.0)\\" + }, + { + "displayName": "Retained placenta or membranes, without hemorrhage (667)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\" + }, + { + "displayName": "Retained placenta without hemorrhage (667.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained placenta without hemorrhage (667.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Retained placenta or membranes, without hemorrhage (667)\\\\Retained placenta without hemorrhage (667.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\" + }, + { + "displayName": "(667.00) Retained placenta without hemorrhage, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained placenta without hemorrhage (667.0)\\(667.00) Retained placenta without hemorrhage, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained placenta without hemorrhage (667.0)\\" + }, + { + "displayName": "(667.02) Retained placenta without hemorrhage, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained placenta without hemorrhage (667.0)\\(667.02) Retained placenta without hemorrhage, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained placenta without hemorrhage (667.0)\\" + }, + { + "displayName": "(667.04) Retained placenta without hemorrhage, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained placenta without hemorrhage (667.0)\\(667.04) Retained placenta without hemorrhage, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained placenta without hemorrhage (667.0)\\" + }, + { + "displayName": "Retained portions of placenta or membranes, without hemorrhage (667.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained portions of placenta or membranes, without hemorrhage (667.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\" + }, + { + "displayName": "(667.10) Retained portions of placenta or membranes, without hemorrhage, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained portions of placenta or membranes, without hemorrhage (667.1)\\(667.10) Retained portions of placenta or membranes, without hemorrhage, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained portions of placenta or membranes, without hemorrhage (667.1)\\" + }, + { + "displayName": "(667.12) Retained portions of placenta or membranes, without hemorrhage, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained portions of placenta or membranes, without hemorrhage (667.1)\\(667.12) Retained portions of placenta or membranes, without hemorrhage, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained portions of placenta or membranes, without hemorrhage (667.1)\\" + }, + { + "displayName": "(667.14) Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained portions of placenta or membranes, without hemorrhage (667.1)\\(667.14) Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Retained placenta or membranes, without hemorrhage (667)\\Retained portions of placenta or membranes, without hemorrhage (667.1)\\" + }, + { + "displayName": "Trauma to perineum and vulva during delivery (664)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\" + }, + { + "displayName": "Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\" + }, + { + "displayName": "(664.60) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\\(664.60) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\\" + }, + { + "displayName": "(664.61) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\\(664.61) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\\" + }, + { + "displayName": "(664.64) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\\(664.64) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\\" + }, + { + "displayName": "First-degree perineal laceration during delivery (664.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\First-degree perineal laceration during delivery (664.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\" + }, + { + "displayName": "(664.00) First-degree perineal laceration, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\First-degree perineal laceration during delivery (664.0)\\(664.00) First-degree perineal laceration, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\First-degree perineal laceration during delivery (664.0)\\" + }, + { + "displayName": "(664.01) First-degree perineal laceration, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\First-degree perineal laceration during delivery (664.0)\\(664.01) First-degree perineal laceration, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\First-degree perineal laceration during delivery (664.0)\\" + }, + { + "displayName": "(664.04) First-degree perineal laceration, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\First-degree perineal laceration during delivery (664.0)\\(664.04) First-degree perineal laceration, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\First-degree perineal laceration during delivery (664.0)\\\\(664.04) First-degree perineal laceration, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\First-degree perineal laceration during delivery (664.0)\\" + }, + { + "displayName": "Fourth-degree perineal laceration during delivery (664.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Fourth-degree perineal laceration during delivery (664.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\" + }, + { + "displayName": "(664.30) Fourth-degree perineal laceration, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Fourth-degree perineal laceration during delivery (664.3)\\(664.30) Fourth-degree perineal laceration, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Fourth-degree perineal laceration during delivery (664.3)\\\\(664.30) Fourth-degree perineal laceration, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Fourth-degree perineal laceration during delivery (664.3)\\" + }, + { + "displayName": "(664.31) Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Fourth-degree perineal laceration during delivery (664.3)\\(664.31) Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Fourth-degree perineal laceration during delivery (664.3)\\\\(664.31) Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Fourth-degree perineal laceration during delivery (664.3)\\" + }, + { + "displayName": "(664.34) Fourth-degree perineal laceration, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Fourth-degree perineal laceration during delivery (664.3)\\(664.34) Fourth-degree perineal laceration, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Fourth-degree perineal laceration during delivery (664.3)\\\\(664.34) Fourth-degree perineal laceration, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Fourth-degree perineal laceration during delivery (664.3)\\" + }, + { + "displayName": "Other specified trauma to perineum and vulva during delivery (664.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Other specified trauma to perineum and vulva during delivery (664.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\" + }, + { + "displayName": "(664.80) Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Other specified trauma to perineum and vulva during delivery (664.8)\\(664.80) Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Other specified trauma to perineum and vulva during delivery (664.8)\\\\(664.80) Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Other specified trauma to perineum and vulva during delivery (664.8)\\" + }, + { + "displayName": "(664.81) Other specified trauma to perineum and vulva, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Other specified trauma to perineum and vulva during delivery (664.8)\\(664.81) Other specified trauma to perineum and vulva, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Other specified trauma to perineum and vulva during delivery (664.8)\\" + }, + { + "displayName": "(664.84) Other specified trauma to perineum and vulva, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Other specified trauma to perineum and vulva during delivery (664.8)\\(664.84) Other specified trauma to perineum and vulva, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Other specified trauma to perineum and vulva during delivery (664.8)\\\\(664.84) Other specified trauma to perineum and vulva, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Other specified trauma to perineum and vulva during delivery (664.8)\\" + }, + { + "displayName": "Second-degree perineal laceration during delivery (664.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Second-degree perineal laceration during delivery (664.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Second-degree perineal laceration during delivery (664.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\" + }, + { + "displayName": "(664.10) Second-degree perineal laceration, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Second-degree perineal laceration during delivery (664.1)\\(664.10) Second-degree perineal laceration, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Second-degree perineal laceration during delivery (664.1)\\" + }, + { + "displayName": "(664.11) Second-degree perineal laceration, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Second-degree perineal laceration during delivery (664.1)\\(664.11) Second-degree perineal laceration, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Second-degree perineal laceration during delivery (664.1)\\\\(664.11) Second-degree perineal laceration, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Second-degree perineal laceration during delivery (664.1)\\" + }, + { + "displayName": "(664.14) Second-degree perineal laceration, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Second-degree perineal laceration during delivery (664.1)\\(664.14) Second-degree perineal laceration, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Second-degree perineal laceration during delivery (664.1)\\\\(664.14) Second-degree perineal laceration, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Second-degree perineal laceration during delivery (664.1)\\" + }, + { + "displayName": "Third-degree perineal laceration during delivery (664.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Third-degree perineal laceration during delivery (664.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\" + }, + { + "displayName": "(664.20) Third-degree perineal laceration, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Third-degree perineal laceration during delivery (664.2)\\(664.20) Third-degree perineal laceration, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Third-degree perineal laceration during delivery (664.2)\\\\(664.20) Third-degree perineal laceration, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Third-degree perineal laceration during delivery (664.2)\\" + }, + { + "displayName": "(664.21) Third-degree perineal laceration, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Third-degree perineal laceration during delivery (664.2)\\(664.21) Third-degree perineal laceration, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Third-degree perineal laceration during delivery (664.2)\\\\(664.21) Third-degree perineal laceration, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Third-degree perineal laceration during delivery (664.2)\\" + }, + { + "displayName": "(664.24) Third-degree perineal laceration, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Third-degree perineal laceration during delivery (664.2)\\(664.24) Third-degree perineal laceration, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Third-degree perineal laceration during delivery (664.2)\\" + }, + { + "displayName": "Unspecified perineal laceration during delivery (664.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified perineal laceration during delivery (664.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\" + }, + { + "displayName": "(664.40) Unspecified perineal laceration, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified perineal laceration during delivery (664.4)\\(664.40) Unspecified perineal laceration, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Unspecified perineal laceration during delivery (664.4)\\\\(664.40) Unspecified perineal laceration, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified perineal laceration during delivery (664.4)\\" + }, + { + "displayName": "(664.41) Unspecified perineal laceration, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified perineal laceration during delivery (664.4)\\(664.41) Unspecified perineal laceration, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified perineal laceration during delivery (664.4)\\" + }, + { + "displayName": "(664.44) Unspecified perineal laceration, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified perineal laceration during delivery (664.4)\\(664.44) Unspecified perineal laceration, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified perineal laceration during delivery (664.4)\\" + }, + { + "displayName": "Unspecified trauma to perineum and vulva during delivery (664.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified trauma to perineum and vulva during delivery (664.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\" + }, + { + "displayName": "(664.90) Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified trauma to perineum and vulva during delivery (664.9)\\(664.90) Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified trauma to perineum and vulva during delivery (664.9)\\" + }, + { + "displayName": "(664.91) Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified trauma to perineum and vulva during delivery (664.9)\\(664.91) Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified trauma to perineum and vulva during delivery (664.9)\\" + }, + { + "displayName": "(664.94) Unspecified trauma to perineum and vulva, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified trauma to perineum and vulva during delivery (664.9)\\(664.94) Unspecified trauma to perineum and vulva, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Unspecified trauma to perineum and vulva during delivery (664.9)\\" + }, + { + "displayName": "Vulvar and perineal hematoma during delivery (664.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Vulvar and perineal hematoma during delivery (664.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Vulvar and perineal hematoma during delivery (664.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\" + }, + { + "displayName": "(664.50) Vulvar and perineal hematoma, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Vulvar and perineal hematoma during delivery (664.5)\\(664.50) Vulvar and perineal hematoma, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Trauma to perineum and vulva during delivery (664)\\\\Vulvar and perineal hematoma during delivery (664.5)\\\\(664.50) Vulvar and perineal hematoma, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Vulvar and perineal hematoma during delivery (664.5)\\" + }, + { + "displayName": "(664.51) Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Vulvar and perineal hematoma during delivery (664.5)\\(664.51) Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Vulvar and perineal hematoma during delivery (664.5)\\" + }, + { + "displayName": "(664.54) Vulvar and perineal hematoma, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Vulvar and perineal hematoma during delivery (664.5)\\(664.54) Vulvar and perineal hematoma, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Trauma to perineum and vulva during delivery (664)\\Vulvar and perineal hematoma during delivery (664.5)\\" + }, + { + "displayName": "Umbilical cord complications during labor and delivery (663)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\" + }, + { + "displayName": "Cord around neck, with compression, complicating labor and delivery (663.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Cord around neck, with compression, complicating labor and delivery (663.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\" + }, + { + "displayName": "(663.10) Cord around neck with compression, complicating labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Cord around neck, with compression, complicating labor and delivery (663.1)\\(663.10) Cord around neck with compression, complicating labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Cord around neck, with compression, complicating labor and delivery (663.1)\\" + }, + { + "displayName": "(663.11) Cord around neck, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Cord around neck, with compression, complicating labor and delivery (663.1)\\(663.11) Cord around neck, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Cord around neck, with compression, complicating labor and delivery (663.1)\\" + }, + { + "displayName": "(663.13) Cord around neck, with compression, complicating labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Cord around neck, with compression, complicating labor and delivery (663.1)\\(663.13) Cord around neck, with compression, complicating labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Cord around neck, with compression, complicating labor and delivery (663.1)\\" + }, + { + "displayName": "Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\" + }, + { + "displayName": "(663.20) Other and unspecified cord entanglement, with compression, complicating labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\\(663.20) Other and unspecified cord entanglement, with compression, complicating labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\\" + }, + { + "displayName": "(663.21) Other and unspecified cord entanglement, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\\(663.21) Other and unspecified cord entanglement, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\\" + }, + { + "displayName": "(663.23) Other and unspecified cord entanglement, with compression, complicating labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\\(663.23) Other and unspecified cord entanglement, with compression, complicating labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\\" + }, + { + "displayName": "Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\" + }, + { + "displayName": "(663.30) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\\(663.30) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\\" + }, + { + "displayName": "(663.31) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\\(663.31) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\\" + }, + { + "displayName": "(663.33) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\\(663.33) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Umbilical cord complications during labor and delivery (663)\\\\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\\\\(663.33) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\\" + }, + { + "displayName": "Other umbilical cord complications during labor and delivery (663.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other umbilical cord complications during labor and delivery (663.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Umbilical cord complications during labor and delivery (663)\\\\Other umbilical cord complications during labor and delivery (663.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\" + }, + { + "displayName": "(663.80) Other umbilical cord complications complicating labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other umbilical cord complications during labor and delivery (663.8)\\(663.80) Other umbilical cord complications complicating labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other umbilical cord complications during labor and delivery (663.8)\\" + }, + { + "displayName": "(663.81) Other umbilical cord complications complicating labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other umbilical cord complications during labor and delivery (663.8)\\(663.81) Other umbilical cord complications complicating labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other umbilical cord complications during labor and delivery (663.8)\\" + }, + { + "displayName": "(663.83) Other umbilical cord complications complicating labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other umbilical cord complications during labor and delivery (663.8)\\(663.83) Other umbilical cord complications complicating labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Umbilical cord complications during labor and delivery (663)\\\\Other umbilical cord complications during labor and delivery (663.8)\\\\(663.83) Other umbilical cord complications complicating labor and delivery, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Other umbilical cord complications during labor and delivery (663.8)\\" + }, + { + "displayName": "Prolapse of cord complicating labor and delivery (663.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Prolapse of cord complicating labor and delivery (663.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Umbilical cord complications during labor and delivery (663)\\\\Prolapse of cord complicating labor and delivery (663.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\" + }, + { + "displayName": "(663.00) Prolapse of cord complicating labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Prolapse of cord complicating labor and delivery (663.0)\\(663.00) Prolapse of cord complicating labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Prolapse of cord complicating labor and delivery (663.0)\\" + }, + { + "displayName": "(663.01) Prolapse of cord complicating labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Prolapse of cord complicating labor and delivery (663.0)\\(663.01) Prolapse of cord complicating labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Prolapse of cord complicating labor and delivery (663.0)\\" + }, + { + "displayName": "(663.03) Prolapse of cord complicating labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Prolapse of cord complicating labor and delivery (663.0)\\(663.03) Prolapse of cord complicating labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Prolapse of cord complicating labor and delivery (663.0)\\" + }, + { + "displayName": "Short cord complicating labor and delivery (663.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Short cord complicating labor and delivery (663.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\" + }, + { + "displayName": "(663.40) Short cord complicating labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Short cord complicating labor and delivery (663.4)\\(663.40) Short cord complicating labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Short cord complicating labor and delivery (663.4)\\" + }, + { + "displayName": "(663.41) Short cord complicating labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Short cord complicating labor and delivery (663.4)\\(663.41) Short cord complicating labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Short cord complicating labor and delivery (663.4)\\" + }, + { + "displayName": "(663.43) Short cord complicating labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Short cord complicating labor and delivery (663.4)\\(663.43) Short cord complicating labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Short cord complicating labor and delivery (663.4)\\" + }, + { + "displayName": "Unspecified umbilical cord complication during labor and delivery (663.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Unspecified umbilical cord complication during labor and delivery (663.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\" + }, + { + "displayName": "(663.90) Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Unspecified umbilical cord complication during labor and delivery (663.9)\\(663.90) Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Umbilical cord complications during labor and delivery (663)\\\\Unspecified umbilical cord complication during labor and delivery (663.9)\\\\(663.90) Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Unspecified umbilical cord complication during labor and delivery (663.9)\\" + }, + { + "displayName": "(663.91) Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Unspecified umbilical cord complication during labor and delivery (663.9)\\(663.91) Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Umbilical cord complications during labor and delivery (663)\\\\Unspecified umbilical cord complication during labor and delivery (663.9)\\\\(663.91) Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Unspecified umbilical cord complication during labor and delivery (663.9)\\" + }, + { + "displayName": "(663.93) Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Unspecified umbilical cord complication during labor and delivery (663.9)\\(663.93) Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\\\Umbilical cord complications during labor and delivery (663)\\\\Unspecified umbilical cord complication during labor and delivery (663.9)\\\\(663.93) Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Unspecified umbilical cord complication during labor and delivery (663.9)\\" + }, + { + "displayName": "Vasa previa complicating labor and delivery (663.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vasa previa complicating labor and delivery (663.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\" + }, + { + "displayName": "(663.50) Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vasa previa complicating labor and delivery (663.5)\\(663.50) Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vasa previa complicating labor and delivery (663.5)\\" + }, + { + "displayName": "(663.51) Vasa previa complicating labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vasa previa complicating labor and delivery (663.5)\\(663.51) Vasa previa complicating labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vasa previa complicating labor and delivery (663.5)\\" + }, + { + "displayName": "(663.53) Vasa previa complicating labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vasa previa complicating labor and delivery (663.5)\\(663.53) Vasa previa complicating labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vasa previa complicating labor and delivery (663.5)\\" + }, + { + "displayName": "Vascular lesions of cord complicating labor and delivery (663.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vascular lesions of cord complicating labor and delivery (663.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\" + }, + { + "displayName": "(663.60) Vascular lesions of cord complicating labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vascular lesions of cord complicating labor and delivery (663.6)\\(663.60) Vascular lesions of cord complicating labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vascular lesions of cord complicating labor and delivery (663.6)\\" + }, + { + "displayName": "(663.61) Vascular lesions of cord complicating labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vascular lesions of cord complicating labor and delivery (663.6)\\(663.61) Vascular lesions of cord complicating labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vascular lesions of cord complicating labor and delivery (663.6)\\" + }, + { + "displayName": "(663.63) Vascular lesions of cord complicating labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vascular lesions of cord complicating labor and delivery (663.6)\\(663.63) Vascular lesions of cord complicating labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications occurring mainly in the course of labor and delivery (660-669.99)\\Umbilical cord complications during labor and delivery (663)\\Vascular lesions of cord complicating labor and delivery (663.6)\\" + }, + { + "displayName": "Complications of the puerperium (670-677.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\" + }, + { + "displayName": "(677) Late effect of complication of pregnancy, childbirth, and the puerperium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\(677) Late effect of complication of pregnancy, childbirth, and the puerperium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\" + }, + { + "displayName": "Infections of the breast and nipple associated with childbirth (675)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\" + }, + { + "displayName": "Abscess of breast associated with childbirth (675.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Abscess of breast associated with childbirth (675.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\" + }, + { + "displayName": "(675.10) Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Abscess of breast associated with childbirth (675.1)\\(675.10) Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Abscess of breast associated with childbirth (675.1)\\" + }, + { + "displayName": "(675.11) Abscess of breast associated with childbirth, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Abscess of breast associated with childbirth (675.1)\\(675.11) Abscess of breast associated with childbirth, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Abscess of breast associated with childbirth (675.1)\\" + }, + { + "displayName": "(675.12) Abscess of breast associated with childbirth, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Abscess of breast associated with childbirth (675.1)\\(675.12) Abscess of breast associated with childbirth, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Abscess of breast associated with childbirth (675.1)\\" + }, + { + "displayName": "(675.13) Abscess of breast associated with childbirth, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Abscess of breast associated with childbirth (675.1)\\(675.13) Abscess of breast associated with childbirth, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Infections of the breast and nipple associated with childbirth (675)\\\\Abscess of breast associated with childbirth (675.1)\\\\(675.13) Abscess of breast associated with childbirth, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Abscess of breast associated with childbirth (675.1)\\" + }, + { + "displayName": "(675.14) Abscess of breast associated with childbirth, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Abscess of breast associated with childbirth (675.1)\\(675.14) Abscess of breast associated with childbirth, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Abscess of breast associated with childbirth (675.1)\\" + }, + { + "displayName": "Infections of nipple associated with childbirth (675.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Infections of nipple associated with childbirth (675.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\" + }, + { + "displayName": "(675.00) Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Infections of nipple associated with childbirth (675.0)\\(675.00) Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Infections of nipple associated with childbirth (675.0)\\" + }, + { + "displayName": "(675.01) Infections of nipple associated with childbirth, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Infections of nipple associated with childbirth (675.0)\\(675.01) Infections of nipple associated with childbirth, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Infections of nipple associated with childbirth (675.0)\\" + }, + { + "displayName": "(675.02) Infections of nipple associated with childbirth, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Infections of nipple associated with childbirth (675.0)\\(675.02) Infections of nipple associated with childbirth, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Infections of nipple associated with childbirth (675.0)\\" + }, + { + "displayName": "(675.03) Infections of nipple associated with childbirth, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Infections of nipple associated with childbirth (675.0)\\(675.03) Infections of nipple associated with childbirth, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Infections of nipple associated with childbirth (675.0)\\" + }, + { + "displayName": "(675.04) Infections of nipple associated with childbirth, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Infections of nipple associated with childbirth (675.0)\\(675.04) Infections of nipple associated with childbirth, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Infections of the breast and nipple associated with childbirth (675)\\\\Infections of nipple associated with childbirth (675.0)\\\\(675.04) Infections of nipple associated with childbirth, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Infections of nipple associated with childbirth (675.0)\\" + }, + { + "displayName": "Nonpurulent mastitis associated with childbirth (675.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Nonpurulent mastitis associated with childbirth (675.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\" + }, + { + "displayName": "(675.20) Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Nonpurulent mastitis associated with childbirth (675.2)\\(675.20) Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Nonpurulent mastitis associated with childbirth (675.2)\\" + }, + { + "displayName": "(675.21) Nonpurulent mastitis associated with childbirth, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Nonpurulent mastitis associated with childbirth (675.2)\\(675.21) Nonpurulent mastitis associated with childbirth, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Nonpurulent mastitis associated with childbirth (675.2)\\" + }, + { + "displayName": "(675.22) Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Nonpurulent mastitis associated with childbirth (675.2)\\(675.22) Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Nonpurulent mastitis associated with childbirth (675.2)\\" + }, + { + "displayName": "(675.23) Nonpurulent mastitis associated with childbirth, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Nonpurulent mastitis associated with childbirth (675.2)\\(675.23) Nonpurulent mastitis associated with childbirth, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Nonpurulent mastitis associated with childbirth (675.2)\\" + }, + { + "displayName": "(675.24) Nonpurulent mastitis associated with childbirth, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Nonpurulent mastitis associated with childbirth (675.2)\\(675.24) Nonpurulent mastitis associated with childbirth, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Nonpurulent mastitis associated with childbirth (675.2)\\" + }, + { + "displayName": "Other specified infections of the breast and nipple associated with childbirth (675.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Other specified infections of the breast and nipple associated with childbirth (675.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\" + }, + { + "displayName": "(675.80) Other specified infections of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Other specified infections of the breast and nipple associated with childbirth (675.8)\\(675.80) Other specified infections of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Other specified infections of the breast and nipple associated with childbirth (675.8)\\" + }, + { + "displayName": "(675.81) Other specified infections of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Other specified infections of the breast and nipple associated with childbirth (675.8)\\(675.81) Other specified infections of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Other specified infections of the breast and nipple associated with childbirth (675.8)\\" + }, + { + "displayName": "(675.82) Other specified infections of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Other specified infections of the breast and nipple associated with childbirth (675.8)\\(675.82) Other specified infections of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Other specified infections of the breast and nipple associated with childbirth (675.8)\\" + }, + { + "displayName": "(675.83) Other specified infections of the breast and nipple associated with childbirth, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Other specified infections of the breast and nipple associated with childbirth (675.8)\\(675.83) Other specified infections of the breast and nipple associated with childbirth, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Other specified infections of the breast and nipple associated with childbirth (675.8)\\" + }, + { + "displayName": "(675.84) Other specified infections of the breast and nipple associated with childbirth, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Other specified infections of the breast and nipple associated with childbirth (675.8)\\(675.84) Other specified infections of the breast and nipple associated with childbirth, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Other specified infections of the breast and nipple associated with childbirth (675.8)\\" + }, + { + "displayName": "Unspecified infection of the breast and nipple associated with childbirth (675.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\" + }, + { + "displayName": "(675.90) Unspecified infection of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\(675.90) Unspecified infection of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\" + }, + { + "displayName": "(675.91) Unspecified infection of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\(675.91) Unspecified infection of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\" + }, + { + "displayName": "(675.92) Unspecified infection of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\(675.92) Unspecified infection of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\" + }, + { + "displayName": "(675.93) Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\(675.93) Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Infections of the breast and nipple associated with childbirth (675)\\\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\\\(675.93) Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\" + }, + { + "displayName": "(675.94) Unspecified infection of the breast and nipple associated with childbirth, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\(675.94) Unspecified infection of the breast and nipple associated with childbirth, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Infections of the breast and nipple associated with childbirth (675)\\Unspecified infection of the breast and nipple associated with childbirth (675.9)\\" + }, + { + "displayName": "Major puerperal infection (670)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Major puerperal infection (670)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\" + }, + { + "displayName": "Major puerperal infection, unspecified (670.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Major puerperal infection, unspecified (670.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\" + }, + { + "displayName": "(670.00) Major puerperal infection, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Major puerperal infection, unspecified (670.0)\\(670.00) Major puerperal infection, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Major puerperal infection (670)\\\\Major puerperal infection, unspecified (670.0)\\\\(670.00) Major puerperal infection, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Major puerperal infection, unspecified (670.0)\\" + }, + { + "displayName": "(670.02) Major puerperal infection, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Major puerperal infection, unspecified (670.0)\\(670.02) Major puerperal infection, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Major puerperal infection (670)\\\\Major puerperal infection, unspecified (670.0)\\\\(670.02) Major puerperal infection, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Major puerperal infection, unspecified (670.0)\\" + }, + { + "displayName": "(670.04) Major puerperal infection, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Major puerperal infection, unspecified (670.0)\\(670.04) Major puerperal infection, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Major puerperal infection, unspecified (670.0)\\" + }, + { + "displayName": "Other major puerperal infection (670.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Other major puerperal infection (670.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\" + }, + { + "displayName": "(670.82) Other major puerperal infection, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Other major puerperal infection (670.8)\\(670.82) Other major puerperal infection, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Other major puerperal infection (670.8)\\" + }, + { + "displayName": "(670.84) Other major puerperal infection, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Other major puerperal infection (670.8)\\(670.84) Other major puerperal infection, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Other major puerperal infection (670.8)\\" + }, + { + "displayName": "Puerperal endometritis (670.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Puerperal endometritis (670.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\" + }, + { + "displayName": "(670.12) Puerperal endometritis, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Puerperal endometritis (670.1)\\(670.12) Puerperal endometritis, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Puerperal endometritis (670.1)\\" + }, + { + "displayName": "(670.14) Puerperal endometritis, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Puerperal endometritis (670.1)\\(670.14) Puerperal endometritis, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Major puerperal infection (670)\\\\Puerperal endometritis (670.1)\\\\(670.14) Puerperal endometritis, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Puerperal endometritis (670.1)\\" + }, + { + "displayName": "Puerperal sepsis (670.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Puerperal sepsis (670.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Major puerperal infection (670)\\\\Puerperal sepsis (670.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\" + }, + { + "displayName": "(670.20) Puerperal sepsis, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Puerperal sepsis (670.2)\\(670.20) Puerperal sepsis, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Major puerperal infection (670)\\\\Puerperal sepsis (670.2)\\\\(670.20) Puerperal sepsis, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Puerperal sepsis (670.2)\\" + }, + { + "displayName": "(670.24) Puerperal sepsis, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Puerperal sepsis (670.2)\\(670.24) Puerperal sepsis, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Major puerperal infection (670)\\Puerperal sepsis (670.2)\\" + }, + { + "displayName": "Obstetrical pulmonary embolism (673)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Obstetrical pulmonary embolism (673)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\" + }, + { + "displayName": "Amniotic fluid embolism (673.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Amniotic fluid embolism (673.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Obstetrical pulmonary embolism (673)\\\\Amniotic fluid embolism (673.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\" + }, + { + "displayName": "(673.10) Amniotic fluid embolism, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Amniotic fluid embolism (673.1)\\(673.10) Amniotic fluid embolism, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Amniotic fluid embolism (673.1)\\" + }, + { + "displayName": "(673.11) Amniotic fluid embolism, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Amniotic fluid embolism (673.1)\\(673.11) Amniotic fluid embolism, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Amniotic fluid embolism (673.1)\\" + }, + { + "displayName": "(673.12) Amniotic fluid embolism, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Amniotic fluid embolism (673.1)\\(673.12) Amniotic fluid embolism, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Amniotic fluid embolism (673.1)\\" + }, + { + "displayName": "(673.13) Amniotic fluid embolism, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Amniotic fluid embolism (673.1)\\(673.13) Amniotic fluid embolism, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Amniotic fluid embolism (673.1)\\" + }, + { + "displayName": "(673.14) Amniotic fluid embolism, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Amniotic fluid embolism (673.1)\\(673.14) Amniotic fluid embolism, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Amniotic fluid embolism (673.1)\\" + }, + { + "displayName": "Obstetrical air embolism (673.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical air embolism (673.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\" + }, + { + "displayName": "(673.00) Obstetrical air embolism, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical air embolism (673.0)\\(673.00) Obstetrical air embolism, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical air embolism (673.0)\\" + }, + { + "displayName": "(673.01) Obstetrical air embolism, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical air embolism (673.0)\\(673.01) Obstetrical air embolism, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical air embolism (673.0)\\" + }, + { + "displayName": "(673.02) Obstetrical air embolism, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical air embolism (673.0)\\(673.02) Obstetrical air embolism, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Obstetrical pulmonary embolism (673)\\\\Obstetrical air embolism (673.0)\\\\(673.02) Obstetrical air embolism, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical air embolism (673.0)\\" + }, + { + "displayName": "(673.03) Obstetrical air embolism, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical air embolism (673.0)\\(673.03) Obstetrical air embolism, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Obstetrical pulmonary embolism (673)\\\\Obstetrical air embolism (673.0)\\\\(673.03) Obstetrical air embolism, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical air embolism (673.0)\\" + }, + { + "displayName": "(673.04) Obstetrical air embolism, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical air embolism (673.0)\\(673.04) Obstetrical air embolism, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical air embolism (673.0)\\" + }, + { + "displayName": "Obstetrical blood-clot embolism (673.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical blood-clot embolism (673.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\" + }, + { + "displayName": "(673.20) Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical blood-clot embolism (673.2)\\(673.20) Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical blood-clot embolism (673.2)\\" + }, + { + "displayName": "(673.21) Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical blood-clot embolism (673.2)\\(673.21) Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical blood-clot embolism (673.2)\\" + }, + { + "displayName": "(673.22) Obstetrical blood-clot embolism, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical blood-clot embolism (673.2)\\(673.22) Obstetrical blood-clot embolism, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical blood-clot embolism (673.2)\\" + }, + { + "displayName": "(673.23) Obstetrical blood-clot embolism, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical blood-clot embolism (673.2)\\(673.23) Obstetrical blood-clot embolism, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical blood-clot embolism (673.2)\\" + }, + { + "displayName": "(673.24) Obstetrical blood-clot embolism, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical blood-clot embolism (673.2)\\(673.24) Obstetrical blood-clot embolism, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Obstetrical pulmonary embolism (673)\\\\Obstetrical blood-clot embolism (673.2)\\\\(673.24) Obstetrical blood-clot embolism, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical blood-clot embolism (673.2)\\" + }, + { + "displayName": "Obstetrical pyemic and septic embolism (673.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical pyemic and septic embolism (673.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Obstetrical pulmonary embolism (673)\\\\Obstetrical pyemic and septic embolism (673.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\" + }, + { + "displayName": "(673.30) Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical pyemic and septic embolism (673.3)\\(673.30) Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Obstetrical pulmonary embolism (673)\\\\Obstetrical pyemic and septic embolism (673.3)\\\\(673.30) Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical pyemic and septic embolism (673.3)\\" + }, + { + "displayName": "(673.31) Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical pyemic and septic embolism (673.3)\\(673.31) Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical pyemic and septic embolism (673.3)\\" + }, + { + "displayName": "(673.32) Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical pyemic and septic embolism (673.3)\\(673.32) Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical pyemic and septic embolism (673.3)\\" + }, + { + "displayName": "(673.33) Obstetrical pyemic and septic embolism, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical pyemic and septic embolism (673.3)\\(673.33) Obstetrical pyemic and septic embolism, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical pyemic and septic embolism (673.3)\\" + }, + { + "displayName": "(673.34) Obstetrical pyemic and septic embolism, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical pyemic and septic embolism (673.3)\\(673.34) Obstetrical pyemic and septic embolism, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Obstetrical pyemic and septic embolism (673.3)\\" + }, + { + "displayName": "Other obstetrical pulmonary embolism (673.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Other obstetrical pulmonary embolism (673.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\" + }, + { + "displayName": "(673.80) Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Other obstetrical pulmonary embolism (673.8)\\(673.80) Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Other obstetrical pulmonary embolism (673.8)\\" + }, + { + "displayName": "(673.81) Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Other obstetrical pulmonary embolism (673.8)\\(673.81) Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Other obstetrical pulmonary embolism (673.8)\\" + }, + { + "displayName": "(673.82) Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Other obstetrical pulmonary embolism (673.8)\\(673.82) Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Other obstetrical pulmonary embolism (673.8)\\" + }, + { + "displayName": "(673.83) Other obstetrical pulmonary embolism, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Other obstetrical pulmonary embolism (673.8)\\(673.83) Other obstetrical pulmonary embolism, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Other obstetrical pulmonary embolism (673.8)\\" + }, + { + "displayName": "(673.84) Other obstetrical pulmonary embolism, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Other obstetrical pulmonary embolism (673.8)\\(673.84) Other obstetrical pulmonary embolism, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Obstetrical pulmonary embolism (673)\\Other obstetrical pulmonary embolism (673.8)\\" + }, + { + "displayName": "Other and unspecified complications of the puerperium, not elsewhere classified (674)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\" + }, + { + "displayName": "Cerebrovascular disorders in the puerperium (674.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Cerebrovascular disorders in the puerperium (674.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\\\Cerebrovascular disorders in the puerperium (674.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\" + }, + { + "displayName": "(674.00) Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Cerebrovascular disorders in the puerperium (674.0)\\(674.00) Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\\\Cerebrovascular disorders in the puerperium (674.0)\\\\(674.00) Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Cerebrovascular disorders in the puerperium (674.0)\\" + }, + { + "displayName": "(674.01) Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Cerebrovascular disorders in the puerperium (674.0)\\(674.01) Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\\\Cerebrovascular disorders in the puerperium (674.0)\\\\(674.01) Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Cerebrovascular disorders in the puerperium (674.0)\\" + }, + { + "displayName": "(674.02) Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Cerebrovascular disorders in the puerperium (674.0)\\(674.02) Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\\\Cerebrovascular disorders in the puerperium (674.0)\\\\(674.02) Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Cerebrovascular disorders in the puerperium (674.0)\\" + }, + { + "displayName": "(674.03) Cerebrovascular disorders in the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Cerebrovascular disorders in the puerperium (674.0)\\(674.03) Cerebrovascular disorders in the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\\\Cerebrovascular disorders in the puerperium (674.0)\\\\(674.03) Cerebrovascular disorders in the puerperium, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Cerebrovascular disorders in the puerperium (674.0)\\" + }, + { + "displayName": "(674.04) Cerebrovascular disorders in the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Cerebrovascular disorders in the puerperium (674.0)\\(674.04) Cerebrovascular disorders in the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Cerebrovascular disorders in the puerperium (674.0)\\" + }, + { + "displayName": "Disruption of cesarean wound (674.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of cesarean wound (674.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\" + }, + { + "displayName": "(674.10) Disruption of cesarean wound, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of cesarean wound (674.1)\\(674.10) Disruption of cesarean wound, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of cesarean wound (674.1)\\" + }, + { + "displayName": "(674.12) Disruption of cesarean wound, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of cesarean wound (674.1)\\(674.12) Disruption of cesarean wound, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of cesarean wound (674.1)\\" + }, + { + "displayName": "(674.14) Disruption of cesarean wound, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of cesarean wound (674.1)\\(674.14) Disruption of cesarean wound, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of cesarean wound (674.1)\\" + }, + { + "displayName": "Disruption of obstetrical perineal wound (674.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of obstetrical perineal wound (674.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\" + }, + { + "displayName": "(674.20) Disruption of perineal wound, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of obstetrical perineal wound (674.2)\\(674.20) Disruption of perineal wound, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of obstetrical perineal wound (674.2)\\" + }, + { + "displayName": "(674.22) Disruption of perineal wound, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of obstetrical perineal wound (674.2)\\(674.22) Disruption of perineal wound, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of obstetrical perineal wound (674.2)\\" + }, + { + "displayName": "(674.24) Disruption of perineal wound, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of obstetrical perineal wound (674.2)\\(674.24) Disruption of perineal wound, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Disruption of obstetrical perineal wound (674.2)\\" + }, + { + "displayName": "Other complications of obstetrical surgical wounds (674.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of obstetrical surgical wounds (674.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\\\Other complications of obstetrical surgical wounds (674.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\" + }, + { + "displayName": "(674.30) Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of obstetrical surgical wounds (674.3)\\(674.30) Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\\\Other complications of obstetrical surgical wounds (674.3)\\\\(674.30) Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of obstetrical surgical wounds (674.3)\\" + }, + { + "displayName": "(674.32) Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of obstetrical surgical wounds (674.3)\\(674.32) Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\\\Other complications of obstetrical surgical wounds (674.3)\\\\(674.32) Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of obstetrical surgical wounds (674.3)\\" + }, + { + "displayName": "(674.34) Other complications of obstetrical surgical wounds, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of obstetrical surgical wounds (674.3)\\(674.34) Other complications of obstetrical surgical wounds, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\\\Other complications of obstetrical surgical wounds (674.3)\\\\(674.34) Other complications of obstetrical surgical wounds, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of obstetrical surgical wounds (674.3)\\" + }, + { + "displayName": "Other complications of the puerperium (674.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of the puerperium (674.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\" + }, + { + "displayName": "(674.80) Other complications of puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of the puerperium (674.8)\\(674.80) Other complications of puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of the puerperium (674.8)\\" + }, + { + "displayName": "(674.82) Other complications of puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of the puerperium (674.8)\\(674.82) Other complications of puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of the puerperium (674.8)\\" + }, + { + "displayName": "(674.84) Other complications of puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of the puerperium (674.8)\\(674.84) Other complications of puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Other complications of the puerperium (674.8)\\" + }, + { + "displayName": "Peripartum cardiomyopathy (674.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Peripartum cardiomyopathy (674.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\" + }, + { + "displayName": "(674.50) Peripartum cardiomyopathy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Peripartum cardiomyopathy (674.5)\\(674.50) Peripartum cardiomyopathy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Peripartum cardiomyopathy (674.5)\\" + }, + { + "displayName": "(674.51) Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Peripartum cardiomyopathy (674.5)\\(674.51) Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Peripartum cardiomyopathy (674.5)\\" + }, + { + "displayName": "(674.52) Peripartum cardiomyopathy, delivered, with mention of postpartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Peripartum cardiomyopathy (674.5)\\(674.52) Peripartum cardiomyopathy, delivered, with mention of postpartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Peripartum cardiomyopathy (674.5)\\" + }, + { + "displayName": "(674.53) Peripartum cardiomyopathy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Peripartum cardiomyopathy (674.5)\\(674.53) Peripartum cardiomyopathy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Peripartum cardiomyopathy (674.5)\\" + }, + { + "displayName": "(674.54) Peripartum cardiomyopathy, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Peripartum cardiomyopathy (674.5)\\(674.54) Peripartum cardiomyopathy, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Peripartum cardiomyopathy (674.5)\\" + }, + { + "displayName": "Placental polyp (674.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Placental polyp (674.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\" + }, + { + "displayName": "(674.40) Placental polyp, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Placental polyp (674.4)\\(674.40) Placental polyp, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Placental polyp (674.4)\\" + }, + { + "displayName": "(674.42) Placental polyp, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Placental polyp (674.4)\\(674.42) Placental polyp, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Placental polyp (674.4)\\" + }, + { + "displayName": "(674.44) Placental polyp, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Placental polyp (674.4)\\(674.44) Placental polyp, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Placental polyp (674.4)\\" + }, + { + "displayName": "Unspecified complications of the puerperium (674.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Unspecified complications of the puerperium (674.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\" + }, + { + "displayName": "(674.90) Unspecified complications of puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Unspecified complications of the puerperium (674.9)\\(674.90) Unspecified complications of puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Unspecified complications of the puerperium (674.9)\\" + }, + { + "displayName": "(674.92) Unspecified complications of puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Unspecified complications of the puerperium (674.9)\\(674.92) Unspecified complications of puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Unspecified complications of the puerperium (674.9)\\" + }, + { + "displayName": "(674.94) Unspecified complications of puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Unspecified complications of the puerperium (674.9)\\(674.94) Unspecified complications of puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other and unspecified complications of the puerperium, not elsewhere classified (674)\\Unspecified complications of the puerperium (674.9)\\" + }, + { + "displayName": "Other disorders of the breast associated with childbirth and disorders of lactation (676)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\" + }, + { + "displayName": "Cracked nipple associated with childbirth (676.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Cracked nipple associated with childbirth (676.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\" + }, + { + "displayName": "(676.10) Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Cracked nipple associated with childbirth (676.1)\\(676.10) Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Cracked nipple associated with childbirth (676.1)\\" + }, + { + "displayName": "(676.11) Cracked nipple associated with childbirth, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Cracked nipple associated with childbirth (676.1)\\(676.11) Cracked nipple associated with childbirth, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Cracked nipple associated with childbirth (676.1)\\" + }, + { + "displayName": "(676.12) Cracked nipple associated with childbirth, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Cracked nipple associated with childbirth (676.1)\\(676.12) Cracked nipple associated with childbirth, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Cracked nipple associated with childbirth (676.1)\\" + }, + { + "displayName": "(676.13) Cracked nipple associated with childbirth, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Cracked nipple associated with childbirth (676.1)\\(676.13) Cracked nipple associated with childbirth, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Cracked nipple associated with childbirth (676.1)\\" + }, + { + "displayName": "(676.14) Cracked nipple associated with childbirth, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Cracked nipple associated with childbirth (676.1)\\(676.14) Cracked nipple associated with childbirth, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Cracked nipple associated with childbirth (676.1)\\\\(676.14) Cracked nipple associated with childbirth, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Cracked nipple associated with childbirth (676.1)\\" + }, + { + "displayName": "Engorgement of breasts associated with childbirth (676.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Engorgement of breasts associated with childbirth (676.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Engorgement of breasts associated with childbirth (676.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\" + }, + { + "displayName": "(676.20) Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Engorgement of breasts associated with childbirth (676.2)\\(676.20) Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Engorgement of breasts associated with childbirth (676.2)\\\\(676.20) Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Engorgement of breasts associated with childbirth (676.2)\\" + }, + { + "displayName": "(676.21) Engorgement of breasts associated with childbirth, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Engorgement of breasts associated with childbirth (676.2)\\(676.21) Engorgement of breasts associated with childbirth, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Engorgement of breasts associated with childbirth (676.2)\\" + }, + { + "displayName": "(676.22) Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Engorgement of breasts associated with childbirth (676.2)\\(676.22) Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Engorgement of breasts associated with childbirth (676.2)\\\\(676.22) Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Engorgement of breasts associated with childbirth (676.2)\\" + }, + { + "displayName": "(676.23) Engorgement of breasts associated with childbirth, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Engorgement of breasts associated with childbirth (676.2)\\(676.23) Engorgement of breasts associated with childbirth, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Engorgement of breasts associated with childbirth (676.2)\\\\(676.23) Engorgement of breasts associated with childbirth, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Engorgement of breasts associated with childbirth (676.2)\\" + }, + { + "displayName": "(676.24) Engorgement of breasts associated with childbirth, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Engorgement of breasts associated with childbirth (676.2)\\(676.24) Engorgement of breasts associated with childbirth, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Engorgement of breasts associated with childbirth (676.2)\\" + }, + { + "displayName": "Failure of lactation (676.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Failure of lactation (676.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Failure of lactation (676.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\" + }, + { + "displayName": "(676.40) Failure of lactation, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Failure of lactation (676.4)\\(676.40) Failure of lactation, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Failure of lactation (676.4)\\\\(676.40) Failure of lactation, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Failure of lactation (676.4)\\" + }, + { + "displayName": "(676.41) Failure of lactation, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Failure of lactation (676.4)\\(676.41) Failure of lactation, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Failure of lactation (676.4)\\\\(676.41) Failure of lactation, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Failure of lactation (676.4)\\" + }, + { + "displayName": "(676.42) Failure of lactation, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Failure of lactation (676.4)\\(676.42) Failure of lactation, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Failure of lactation (676.4)\\" + }, + { + "displayName": "(676.43) Failure of lactation, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Failure of lactation (676.4)\\(676.43) Failure of lactation, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Failure of lactation (676.4)\\" + }, + { + "displayName": "(676.44) Failure of lactation, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Failure of lactation (676.4)\\(676.44) Failure of lactation, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Failure of lactation (676.4)\\" + }, + { + "displayName": "Galactorrhea (676.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Galactorrhea (676.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\" + }, + { + "displayName": "(676.60) Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Galactorrhea (676.6)\\(676.60) Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Galactorrhea (676.6)\\" + }, + { + "displayName": "(676.61) Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Galactorrhea (676.6)\\(676.61) Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Galactorrhea (676.6)\\" + }, + { + "displayName": "(676.62) Galactorrhea associated with childbirth, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Galactorrhea (676.6)\\(676.62) Galactorrhea associated with childbirth, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Galactorrhea (676.6)\\" + }, + { + "displayName": "(676.63) Galactorrhea associated with childbirth, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Galactorrhea (676.6)\\(676.63) Galactorrhea associated with childbirth, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Galactorrhea (676.6)\\" + }, + { + "displayName": "(676.64) Galactorrhea associated with childbirth, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Galactorrhea (676.6)\\(676.64) Galactorrhea associated with childbirth, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Galactorrhea (676.6)\\" + }, + { + "displayName": "Other and unspecified disorder of breast associated with childbirth (676.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other and unspecified disorder of breast associated with childbirth (676.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\" + }, + { + "displayName": "(676.30) Other and unspecified disorder of breast associated with childbirth, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other and unspecified disorder of breast associated with childbirth (676.3)\\(676.30) Other and unspecified disorder of breast associated with childbirth, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other and unspecified disorder of breast associated with childbirth (676.3)\\" + }, + { + "displayName": "(676.31) Other and unspecified disorder of breast associated with childbirth, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other and unspecified disorder of breast associated with childbirth (676.3)\\(676.31) Other and unspecified disorder of breast associated with childbirth, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other and unspecified disorder of breast associated with childbirth (676.3)\\" + }, + { + "displayName": "(676.32) Other and unspecified disorder of breast associated with childbirth, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other and unspecified disorder of breast associated with childbirth (676.3)\\(676.32) Other and unspecified disorder of breast associated with childbirth, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other and unspecified disorder of breast associated with childbirth (676.3)\\" + }, + { + "displayName": "(676.33) Other and unspecified disorder of breast associated with childbirth, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other and unspecified disorder of breast associated with childbirth (676.3)\\(676.33) Other and unspecified disorder of breast associated with childbirth, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other and unspecified disorder of breast associated with childbirth (676.3)\\" + }, + { + "displayName": "(676.34) Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other and unspecified disorder of breast associated with childbirth (676.3)\\(676.34) Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Other and unspecified disorder of breast associated with childbirth (676.3)\\\\(676.34) Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other and unspecified disorder of breast associated with childbirth (676.3)\\" + }, + { + "displayName": "Other disorders of lactation (676.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other disorders of lactation (676.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Other disorders of lactation (676.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\" + }, + { + "displayName": "(676.80) Other disorders of lactation, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other disorders of lactation (676.8)\\(676.80) Other disorders of lactation, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other disorders of lactation (676.8)\\" + }, + { + "displayName": "(676.81) Other disorders of lactation, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other disorders of lactation (676.8)\\(676.81) Other disorders of lactation, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other disorders of lactation (676.8)\\" + }, + { + "displayName": "(676.82) Other disorders of lactation, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other disorders of lactation (676.8)\\(676.82) Other disorders of lactation, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other disorders of lactation (676.8)\\" + }, + { + "displayName": "(676.83) Other disorders of lactation, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other disorders of lactation (676.8)\\(676.83) Other disorders of lactation, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other disorders of lactation (676.8)\\" + }, + { + "displayName": "(676.84) Other disorders of lactation, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other disorders of lactation (676.8)\\(676.84) Other disorders of lactation, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Other disorders of lactation (676.8)\\" + }, + { + "displayName": "Retracted nipple associated with childbirth (676.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Retracted nipple associated with childbirth (676.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Retracted nipple associated with childbirth (676.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\" + }, + { + "displayName": "(676.00) Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Retracted nipple associated with childbirth (676.0)\\(676.00) Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Retracted nipple associated with childbirth (676.0)\\\\(676.00) Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Retracted nipple associated with childbirth (676.0)\\" + }, + { + "displayName": "(676.01) Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Retracted nipple associated with childbirth (676.0)\\(676.01) Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Retracted nipple associated with childbirth (676.0)\\\\(676.01) Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Retracted nipple associated with childbirth (676.0)\\" + }, + { + "displayName": "(676.02) Retracted nipple associated with childbirth, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Retracted nipple associated with childbirth (676.0)\\(676.02) Retracted nipple associated with childbirth, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Retracted nipple associated with childbirth (676.0)\\" + }, + { + "displayName": "(676.03) Retracted nipple associated with childbirth, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Retracted nipple associated with childbirth (676.0)\\(676.03) Retracted nipple associated with childbirth, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Retracted nipple associated with childbirth (676.0)\\" + }, + { + "displayName": "(676.04) Retracted nipple associated with childbirth, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Retracted nipple associated with childbirth (676.0)\\(676.04) Retracted nipple associated with childbirth, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Retracted nipple associated with childbirth (676.0)\\" + }, + { + "displayName": "Suppressed lactation (676.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Suppressed lactation (676.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\" + }, + { + "displayName": "(676.50) Suppressed lactation, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Suppressed lactation (676.5)\\(676.50) Suppressed lactation, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Suppressed lactation (676.5)\\" + }, + { + "displayName": "(676.51) Suppressed lactation, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Suppressed lactation (676.5)\\(676.51) Suppressed lactation, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Suppressed lactation (676.5)\\" + }, + { + "displayName": "(676.52) Suppressed lactation, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Suppressed lactation (676.5)\\(676.52) Suppressed lactation, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Suppressed lactation (676.5)\\" + }, + { + "displayName": "(676.53) Suppressed lactation, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Suppressed lactation (676.5)\\(676.53) Suppressed lactation, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Suppressed lactation (676.5)\\\\(676.53) Suppressed lactation, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Suppressed lactation (676.5)\\" + }, + { + "displayName": "(676.54) Suppressed lactation, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Suppressed lactation (676.5)\\(676.54) Suppressed lactation, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Suppressed lactation (676.5)\\\\(676.54) Suppressed lactation, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Suppressed lactation (676.5)\\" + }, + { + "displayName": "Unspecified disorder of lactation (676.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Unspecified disorder of lactation (676.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Unspecified disorder of lactation (676.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\" + }, + { + "displayName": "(676.90) Unspecified disorder of lactation, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Unspecified disorder of lactation (676.9)\\(676.90) Unspecified disorder of lactation, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Unspecified disorder of lactation (676.9)\\\\(676.90) Unspecified disorder of lactation, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Unspecified disorder of lactation (676.9)\\" + }, + { + "displayName": "(676.91) Unspecified disorder of lactation, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Unspecified disorder of lactation (676.9)\\(676.91) Unspecified disorder of lactation, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Unspecified disorder of lactation (676.9)\\\\(676.91) Unspecified disorder of lactation, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Unspecified disorder of lactation (676.9)\\" + }, + { + "displayName": "(676.92) Unspecified disorder of lactation, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Unspecified disorder of lactation (676.9)\\(676.92) Unspecified disorder of lactation, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Unspecified disorder of lactation (676.9)\\\\(676.92) Unspecified disorder of lactation, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Unspecified disorder of lactation (676.9)\\" + }, + { + "displayName": "(676.93) Unspecified disorder of lactation, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Unspecified disorder of lactation (676.9)\\(676.93) Unspecified disorder of lactation, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Unspecified disorder of lactation (676.9)\\\\(676.93) Unspecified disorder of lactation, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Unspecified disorder of lactation (676.9)\\" + }, + { + "displayName": "(676.94) Unspecified disorder of lactation, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Unspecified disorder of lactation (676.9)\\(676.94) Unspecified disorder of lactation, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\\\Unspecified disorder of lactation (676.9)\\\\(676.94) Unspecified disorder of lactation, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Other disorders of the breast associated with childbirth and disorders of lactation (676)\\Unspecified disorder of lactation (676.9)\\" + }, + { + "displayName": "Pyrexia of unknown origin during the puerperium (672)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Pyrexia of unknown origin during the puerperium (672)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Pyrexia of unknown origin during the puerperium (672)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\" + }, + { + "displayName": "Pyrexia of unknown origin during the puerperium (672.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Pyrexia of unknown origin during the puerperium (672)\\Pyrexia of unknown origin during the puerperium (672.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Pyrexia of unknown origin during the puerperium (672)\\" + }, + { + "displayName": "(672.00) Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Pyrexia of unknown origin during the puerperium (672)\\Pyrexia of unknown origin during the puerperium (672.0)\\(672.00) Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Pyrexia of unknown origin during the puerperium (672)\\Pyrexia of unknown origin during the puerperium (672.0)\\" + }, + { + "displayName": "(672.02) Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Pyrexia of unknown origin during the puerperium (672)\\Pyrexia of unknown origin during the puerperium (672.0)\\(672.02) Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Pyrexia of unknown origin during the puerperium (672)\\Pyrexia of unknown origin during the puerperium (672.0)\\" + }, + { + "displayName": "(672.04) Pyrexia of unknown origin during the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Pyrexia of unknown origin during the puerperium (672)\\Pyrexia of unknown origin during the puerperium (672.0)\\(672.04) Pyrexia of unknown origin during the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Pyrexia of unknown origin during the puerperium (672)\\Pyrexia of unknown origin during the puerperium (672.0)\\" + }, + { + "displayName": "Venous complications in pregnancy and the puerperium (671)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\" + }, + { + "displayName": "Deep phlebothrombosis, antepartum (671.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, antepartum (671.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\" + }, + { + "displayName": "(671.30) Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, antepartum (671.3)\\(671.30) Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, antepartum (671.3)\\" + }, + { + "displayName": "(671.31) Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, antepartum (671.3)\\(671.31) Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, antepartum (671.3)\\" + }, + { + "displayName": "(671.33) Deep phlebothrombosis, antepartum, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, antepartum (671.3)\\(671.33) Deep phlebothrombosis, antepartum, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, antepartum (671.3)\\" + }, + { + "displayName": "Deep phlebothrombosis, postpartum (671.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, postpartum (671.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\" + }, + { + "displayName": "(671.40) Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, postpartum (671.4)\\(671.40) Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, postpartum (671.4)\\" + }, + { + "displayName": "(671.42) Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, postpartum (671.4)\\(671.42) Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, postpartum (671.4)\\" + }, + { + "displayName": "(671.44) Deep phlebothrombosis, postpartum, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, postpartum (671.4)\\(671.44) Deep phlebothrombosis, postpartum, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Deep phlebothrombosis, postpartum (671.4)\\" + }, + { + "displayName": "Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\" + }, + { + "displayName": "(671.50) Other phlebitis and thrombosis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\(671.50) Other phlebitis and thrombosis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\" + }, + { + "displayName": "(671.51) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\(671.51) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\" + }, + { + "displayName": "(671.52) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\(671.52) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\" + }, + { + "displayName": "(671.53) Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\(671.53) Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Venous complications in pregnancy and the puerperium (671)\\\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\\\(671.53) Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\" + }, + { + "displayName": "(671.54) Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\(671.54) Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Venous complications in pregnancy and the puerperium (671)\\\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\\\(671.54) Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\\" + }, + { + "displayName": "Other venous complications in pregnancy and the puerperium (671.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other venous complications in pregnancy and the puerperium (671.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Venous complications in pregnancy and the puerperium (671)\\\\Other venous complications in pregnancy and the puerperium (671.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\" + }, + { + "displayName": "(671.80) Other venous complications of pregnancy and the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other venous complications in pregnancy and the puerperium (671.8)\\(671.80) Other venous complications of pregnancy and the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other venous complications in pregnancy and the puerperium (671.8)\\" + }, + { + "displayName": "(671.81) Other venous complications of pregnancy and the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other venous complications in pregnancy and the puerperium (671.8)\\(671.81) Other venous complications of pregnancy and the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other venous complications in pregnancy and the puerperium (671.8)\\" + }, + { + "displayName": "(671.82) Other venous complications of pregnancy and the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other venous complications in pregnancy and the puerperium (671.8)\\(671.82) Other venous complications of pregnancy and the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other venous complications in pregnancy and the puerperium (671.8)\\" + }, + { + "displayName": "(671.83) Other venous complications of pregnancy and the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other venous complications in pregnancy and the puerperium (671.8)\\(671.83) Other venous complications of pregnancy and the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other venous complications in pregnancy and the puerperium (671.8)\\" + }, + { + "displayName": "(671.84) Other venous complications of pregnancy and the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other venous complications in pregnancy and the puerperium (671.8)\\(671.84) Other venous complications of pregnancy and the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Other venous complications in pregnancy and the puerperium (671.8)\\" + }, + { + "displayName": "Superficial thrombophlebitis in pregnancy and the puerperium (671.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\" + }, + { + "displayName": "(671.20) Superficial thrombophlebitis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\(671.20) Superficial thrombophlebitis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\" + }, + { + "displayName": "(671.21) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\(671.21) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\" + }, + { + "displayName": "(671.22) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\(671.22) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Venous complications in pregnancy and the puerperium (671)\\\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\\\(671.22) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\" + }, + { + "displayName": "(671.23) Superficial thrombophlebitis complicating pregnancy and the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\(671.23) Superficial thrombophlebitis complicating pregnancy and the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\" + }, + { + "displayName": "(671.24) Superficial thrombophlebitis complicating pregnancy and the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\(671.24) Superficial thrombophlebitis complicating pregnancy and the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\\" + }, + { + "displayName": "Unspecified venous complication in pregnancy and the puerperium (671.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Unspecified venous complication in pregnancy and the puerperium (671.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\" + }, + { + "displayName": "(671.90) Unspecified venous complication of pregnancy and the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Unspecified venous complication in pregnancy and the puerperium (671.9)\\(671.90) Unspecified venous complication of pregnancy and the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Unspecified venous complication in pregnancy and the puerperium (671.9)\\" + }, + { + "displayName": "(671.91) Unspecified venous complication of pregnancy and the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Unspecified venous complication in pregnancy and the puerperium (671.9)\\(671.91) Unspecified venous complication of pregnancy and the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Unspecified venous complication in pregnancy and the puerperium (671.9)\\" + }, + { + "displayName": "(671.92) Unspecified venous complication of pregnancy and the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Unspecified venous complication in pregnancy and the puerperium (671.9)\\(671.92) Unspecified venous complication of pregnancy and the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Unspecified venous complication in pregnancy and the puerperium (671.9)\\" + }, + { + "displayName": "(671.93) Unspecified venous complication of pregnancy and the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Unspecified venous complication in pregnancy and the puerperium (671.9)\\(671.93) Unspecified venous complication of pregnancy and the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Unspecified venous complication in pregnancy and the puerperium (671.9)\\" + }, + { + "displayName": "(671.94) Unspecified venous complication of pregnancy and the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Unspecified venous complication in pregnancy and the puerperium (671.9)\\(671.94) Unspecified venous complication of pregnancy and the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Unspecified venous complication in pregnancy and the puerperium (671.9)\\" + }, + { + "displayName": "Varicose veins of legs in pregnancy and the puerperium (671.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\" + }, + { + "displayName": "(671.00) Varicose veins of legs complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\(671.00) Varicose veins of legs complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\" + }, + { + "displayName": "(671.01) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\(671.01) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Venous complications in pregnancy and the puerperium (671)\\\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\\\(671.01) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\" + }, + { + "displayName": "(671.02) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\(671.02) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Venous complications in pregnancy and the puerperium (671)\\\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\\\(671.02) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\" + }, + { + "displayName": "(671.03) Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\(671.03) Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Venous complications in pregnancy and the puerperium (671)\\\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\\\(671.03) Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\" + }, + { + "displayName": "(671.04) Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\(671.04) Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Complications of the puerperium (670-677.99)\\\\Venous complications in pregnancy and the puerperium (671)\\\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\\\(671.04) Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of legs in pregnancy and the puerperium (671.0)\\" + }, + { + "displayName": "Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\" + }, + { + "displayName": "(671.10) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\\(671.10) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\\" + }, + { + "displayName": "(671.11) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\\(671.11) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\\" + }, + { + "displayName": "(671.12) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\\(671.12) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\\" + }, + { + "displayName": "(671.13) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\\(671.13) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\\" + }, + { + "displayName": "(671.14) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\\(671.14) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Complications of the puerperium (670-677.99)\\Venous complications in pregnancy and the puerperium (671)\\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\\" + }, + { + "displayName": "Ectopic and molar pregnancy (630-633.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\" + }, + { + "displayName": "(630) Hydatidiform mole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\(630) Hydatidiform mole\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Ectopic and molar pregnancy (630-633.99)\\\\(630) Hydatidiform mole\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\" + }, + { + "displayName": "(632) Missed abortion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\(632) Missed abortion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Ectopic and molar pregnancy (630-633.99)\\\\(632) Missed abortion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\" + }, + { + "displayName": "Ectopic pregnancy (633)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Ectopic and molar pregnancy (630-633.99)\\\\Ectopic pregnancy (633)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\" + }, + { + "displayName": "Abdominal pregnancy (633.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Abdominal pregnancy (633.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Ectopic and molar pregnancy (630-633.99)\\\\Ectopic pregnancy (633)\\\\Abdominal pregnancy (633.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\" + }, + { + "displayName": "(633.00) Abdominal pregnancy without intrauterine pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Abdominal pregnancy (633.0)\\(633.00) Abdominal pregnancy without intrauterine pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Ectopic and molar pregnancy (630-633.99)\\\\Ectopic pregnancy (633)\\\\Abdominal pregnancy (633.0)\\\\(633.00) Abdominal pregnancy without intrauterine pregnancy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Abdominal pregnancy (633.0)\\" + }, + { + "displayName": "(633.01) Abdominal pregnancy with intrauterine pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Abdominal pregnancy (633.0)\\(633.01) Abdominal pregnancy with intrauterine pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Ectopic and molar pregnancy (630-633.99)\\\\Ectopic pregnancy (633)\\\\Abdominal pregnancy (633.0)\\\\(633.01) Abdominal pregnancy with intrauterine pregnancy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Abdominal pregnancy (633.0)\\" + }, + { + "displayName": "Other ectopic pregnancy (633.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Other ectopic pregnancy (633.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Ectopic and molar pregnancy (630-633.99)\\\\Ectopic pregnancy (633)\\\\Other ectopic pregnancy (633.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\" + }, + { + "displayName": "(633.80) Other ectopic pregnancy without intrauterine pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Other ectopic pregnancy (633.8)\\(633.80) Other ectopic pregnancy without intrauterine pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Other ectopic pregnancy (633.8)\\" + }, + { + "displayName": "(633.81) Other ectopic pregnancy with intrauterine pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Other ectopic pregnancy (633.8)\\(633.81) Other ectopic pregnancy with intrauterine pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Other ectopic pregnancy (633.8)\\" + }, + { + "displayName": "Ovarian pregnancy (633.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Ovarian pregnancy (633.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\" + }, + { + "displayName": "(633.20) Ovarian pregnancy without intrauterine pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Ovarian pregnancy (633.2)\\(633.20) Ovarian pregnancy without intrauterine pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Ovarian pregnancy (633.2)\\" + }, + { + "displayName": "(633.21) Ovarian pregnancy with intrauterine pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Ovarian pregnancy (633.2)\\(633.21) Ovarian pregnancy with intrauterine pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Ovarian pregnancy (633.2)\\" + }, + { + "displayName": "Tubal pregnancy (633.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Tubal pregnancy (633.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\" + }, + { + "displayName": "(633.10) Tubal pregnancy without intrauterine pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Tubal pregnancy (633.1)\\(633.10) Tubal pregnancy without intrauterine pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Tubal pregnancy (633.1)\\" + }, + { + "displayName": "(633.11) Tubal pregnancy with intrauterine pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Tubal pregnancy (633.1)\\(633.11) Tubal pregnancy with intrauterine pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Tubal pregnancy (633.1)\\" + }, + { + "displayName": "Unspecified ectopic pregnancy (633.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Unspecified ectopic pregnancy (633.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\" + }, + { + "displayName": "(633.90) Unspecified ectopic pregnancy without intrauterine pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Unspecified ectopic pregnancy (633.9)\\(633.90) Unspecified ectopic pregnancy without intrauterine pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Unspecified ectopic pregnancy (633.9)\\" + }, + { + "displayName": "(633.91) Unspecified ectopic pregnancy with intrauterine pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Unspecified ectopic pregnancy (633.9)\\(633.91) Unspecified ectopic pregnancy with intrauterine pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Ectopic pregnancy (633)\\Unspecified ectopic pregnancy (633.9)\\" + }, + { + "displayName": "Other abnormal product of conception (631)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Other abnormal product of conception (631)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\" + }, + { + "displayName": "(631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Other abnormal product of conception (631)\\(631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Ectopic and molar pregnancy (630-633.99)\\\\Other abnormal product of conception (631)\\\\(631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Other abnormal product of conception (631)\\" + }, + { + "displayName": "(631.8) Other abnormal products of conception", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Other abnormal product of conception (631)\\(631.8) Other abnormal products of conception\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Ectopic and molar pregnancy (630-633.99)\\\\Other abnormal product of conception (631)\\\\(631.8) Other abnormal products of conception\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Ectopic and molar pregnancy (630-633.99)\\Other abnormal product of conception (631)\\" + }, + { + "displayName": "Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\" + }, + { + "displayName": "(650) Normal delivery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\(650) Normal delivery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\(650) Normal delivery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\" + }, + { + "displayName": "Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\" + }, + { + "displayName": "Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\" + }, + { + "displayName": "(654.50) Cervical incompetence, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\(654.50) Cervical incompetence, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\" + }, + { + "displayName": "(654.51) Cervical incompetence, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\(654.51) Cervical incompetence, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\" + }, + { + "displayName": "(654.52) Cervical incompetence, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\(654.52) Cervical incompetence, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\" + }, + { + "displayName": "(654.53) Cervical incompetence, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\(654.53) Cervical incompetence, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\" + }, + { + "displayName": "(654.54) Cervical incompetence, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\(654.54) Cervical incompetence, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\\\(654.54) Cervical incompetence, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\\" + }, + { + "displayName": "Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\" + }, + { + "displayName": "(654.00) Congenital abnormalities of uterus, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\(654.00) Congenital abnormalities of uterus, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\" + }, + { + "displayName": "(654.01) Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\(654.01) Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\" + }, + { + "displayName": "(654.02) Congenital abnormalities of uterus, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\(654.02) Congenital abnormalities of uterus, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\" + }, + { + "displayName": "(654.03) Congenital abnormalities of uterus, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\(654.03) Congenital abnormalities of uterus, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\" + }, + { + "displayName": "(654.04) Congenital abnormalities of uterus, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\(654.04) Congenital abnormalities of uterus, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\\" + }, + { + "displayName": "Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\" + }, + { + "displayName": "(654.70) Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\\(654.70) Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\\" + }, + { + "displayName": "(654.71) Congenital or acquired abnormality of vagina, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\\(654.71) Congenital or acquired abnormality of vagina, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\\" + }, + { + "displayName": "(654.72) Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\\(654.72) Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\\" + }, + { + "displayName": "(654.73) Congenital or acquired abnormality of vagina, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\\(654.73) Congenital or acquired abnormality of vagina, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\\" + }, + { + "displayName": "(654.74) Congenital or acquired abnormality of vagina, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\\(654.74) Congenital or acquired abnormality of vagina, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\\" + }, + { + "displayName": "Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\" + }, + { + "displayName": "(654.80) Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\(654.80) Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\\\(654.80) Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\" + }, + { + "displayName": "(654.81) Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\(654.81) Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\\\(654.81) Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\" + }, + { + "displayName": "(654.82) Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\(654.82) Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\\\(654.82) Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\" + }, + { + "displayName": "(654.83) Congenital or acquired abnormality of vulva, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\(654.83) Congenital or acquired abnormality of vulva, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\\\(654.83) Congenital or acquired abnormality of vulva, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\" + }, + { + "displayName": "(654.84) Congenital or acquired abnormality of vulva, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\(654.84) Congenital or acquired abnormality of vulva, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\\\(654.84) Congenital or acquired abnormality of vulva, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\\" + }, + { + "displayName": "Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\" + }, + { + "displayName": "(654.40) Other abnormalities in shape or position of gravid uterus and of neighboring structures, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\\(654.40) Other abnormalities in shape or position of gravid uterus and of neighboring structures, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\\" + }, + { + "displayName": "(654.41) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\\(654.41) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\\" + }, + { + "displayName": "(654.42) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\\(654.42) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\\" + }, + { + "displayName": "(654.43) Other abnormalities in shape or position of gravid uterus and of neighboring structures, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\\(654.43) Other abnormalities in shape or position of gravid uterus and of neighboring structures, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\\" + }, + { + "displayName": "(654.44) Other abnormalities in shape or position of gravid uterus and of neighboring structures, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\\(654.44) Other abnormalities in shape or position of gravid uterus and of neighboring structures, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\\" + }, + { + "displayName": "Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\" + }, + { + "displayName": "(654.90) Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\(654.90) Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\\\(654.90) Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\" + }, + { + "displayName": "(654.91) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\(654.91) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\\\(654.91) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\" + }, + { + "displayName": "(654.92) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\(654.92) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\\\(654.92) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\" + }, + { + "displayName": "(654.93) Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\(654.93) Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\\\(654.93) Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\" + }, + { + "displayName": "(654.94) Other and unspecified abnormality of organs and soft tissues of pelvis, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\(654.94) Other and unspecified abnormality of organs and soft tissues of pelvis, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\\" + }, + { + "displayName": "Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\" + }, + { + "displayName": "(654.60) Other congenital or acquired abnormality of cervix, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\(654.60) Other congenital or acquired abnormality of cervix, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\" + }, + { + "displayName": "(654.61) Other congenital or acquired abnormality of cervix, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\(654.61) Other congenital or acquired abnormality of cervix, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\" + }, + { + "displayName": "(654.62) Other congenital or acquired abnormality of cervix, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\(654.62) Other congenital or acquired abnormality of cervix, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\" + }, + { + "displayName": "(654.63) Other congenital or acquired abnormality of cervix, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\(654.63) Other congenital or acquired abnormality of cervix, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\" + }, + { + "displayName": "(654.64) Other congenital or acquired abnormality of cervix, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\(654.64) Other congenital or acquired abnormality of cervix, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\\" + }, + { + "displayName": "Previous cesarean section complicating pregnancy or childbirth (654.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Previous cesarean section complicating pregnancy or childbirth (654.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Previous cesarean section complicating pregnancy or childbirth (654.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\" + }, + { + "displayName": "(654.20) Previous cesarean delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Previous cesarean section complicating pregnancy or childbirth (654.2)\\(654.20) Previous cesarean delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Previous cesarean section complicating pregnancy or childbirth (654.2)\\\\(654.20) Previous cesarean delivery, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Previous cesarean section complicating pregnancy or childbirth (654.2)\\" + }, + { + "displayName": "(654.21) Previous cesarean delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Previous cesarean section complicating pregnancy or childbirth (654.2)\\(654.21) Previous cesarean delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Previous cesarean section complicating pregnancy or childbirth (654.2)\\\\(654.21) Previous cesarean delivery, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Previous cesarean section complicating pregnancy or childbirth (654.2)\\" + }, + { + "displayName": "(654.23) Previous cesarean delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Previous cesarean section complicating pregnancy or childbirth (654.2)\\(654.23) Previous cesarean delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Previous cesarean section complicating pregnancy or childbirth (654.2)\\\\(654.23) Previous cesarean delivery, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Previous cesarean section complicating pregnancy or childbirth (654.2)\\" + }, + { + "displayName": "Retroverted and incarcerated gravid uterus (654.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Retroverted and incarcerated gravid uterus (654.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\" + }, + { + "displayName": "(654.30) Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Retroverted and incarcerated gravid uterus (654.3)\\(654.30) Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Retroverted and incarcerated gravid uterus (654.3)\\" + }, + { + "displayName": "(654.31) Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Retroverted and incarcerated gravid uterus (654.3)\\(654.31) Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Retroverted and incarcerated gravid uterus (654.3)\\" + }, + { + "displayName": "(654.32) Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Retroverted and incarcerated gravid uterus (654.3)\\(654.32) Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Retroverted and incarcerated gravid uterus (654.3)\\\\(654.32) Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Retroverted and incarcerated gravid uterus (654.3)\\" + }, + { + "displayName": "(654.33) Retroverted and incarcerated gravid uterus, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Retroverted and incarcerated gravid uterus (654.3)\\(654.33) Retroverted and incarcerated gravid uterus, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Retroverted and incarcerated gravid uterus (654.3)\\\\(654.33) Retroverted and incarcerated gravid uterus, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Retroverted and incarcerated gravid uterus (654.3)\\" + }, + { + "displayName": "(654.34) Retroverted and incarcerated gravid uterus, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Retroverted and incarcerated gravid uterus (654.3)\\(654.34) Retroverted and incarcerated gravid uterus, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Retroverted and incarcerated gravid uterus (654.3)\\" + }, + { + "displayName": "Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\" + }, + { + "displayName": "(654.10) Tumors of body of uterus, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\(654.10) Tumors of body of uterus, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\" + }, + { + "displayName": "(654.11) Tumors of body of uterus, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\(654.11) Tumors of body of uterus, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\" + }, + { + "displayName": "(654.12) Tumors of body of uterus, delivered, with mention of postpartum complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\(654.12) Tumors of body of uterus, delivered, with mention of postpartum complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\" + }, + { + "displayName": "(654.13) Tumors of body of uterus, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\(654.13) Tumors of body of uterus, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\\\(654.13) Tumors of body of uterus, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\" + }, + { + "displayName": "(654.14) Tumors of body of uterus, postpartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\(654.14) Tumors of body of uterus, postpartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\\\(654.14) Tumors of body of uterus, postpartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\\" + }, + { + "displayName": "Disproportion in pregnancy, labor, and delivery (653)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\" + }, + { + "displayName": "Disproportion of other origin in pregnancy, labor, and delivery (653.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\" + }, + { + "displayName": "(653.80) Disproportion of other origin, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\\(653.80) Disproportion of other origin, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\\" + }, + { + "displayName": "(653.81) Disproportion of other origin, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\\(653.81) Disproportion of other origin, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\\" + }, + { + "displayName": "(653.83) Disproportion of other origin, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\\(653.83) Disproportion of other origin, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\\" + }, + { + "displayName": "Fetopelvic disproportion (653.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Fetopelvic disproportion (653.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\" + }, + { + "displayName": "(653.40) Fetopelvic disproportion, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Fetopelvic disproportion (653.4)\\(653.40) Fetopelvic disproportion, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Fetopelvic disproportion (653.4)\\" + }, + { + "displayName": "(653.41) Fetopelvic disproportion, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Fetopelvic disproportion (653.4)\\(653.41) Fetopelvic disproportion, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Fetopelvic disproportion (653.4)\\" + }, + { + "displayName": "(653.43) Fetopelvic disproportion, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Fetopelvic disproportion (653.4)\\(653.43) Fetopelvic disproportion, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Fetopelvic disproportion (653.4)\\" + }, + { + "displayName": "Generally contracted pelvis in pregnancy, labor, and delivery (653.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\" + }, + { + "displayName": "(653.10) Generally contracted pelvis, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\\(653.10) Generally contracted pelvis, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\\" + }, + { + "displayName": "(653.11) Generally contracted pelvis, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\\(653.11) Generally contracted pelvis, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\\" + }, + { + "displayName": "(653.13) Generally contracted pelvis, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\\(653.13) Generally contracted pelvis, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\\" + }, + { + "displayName": "Hydrocephalic fetus causing disproportion (653.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Hydrocephalic fetus causing disproportion (653.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\" + }, + { + "displayName": "(653.60) Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Hydrocephalic fetus causing disproportion (653.6)\\(653.60) Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Hydrocephalic fetus causing disproportion (653.6)\\" + }, + { + "displayName": "(653.61) Hydrocephalic fetus causing disproportion, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Hydrocephalic fetus causing disproportion (653.6)\\(653.61) Hydrocephalic fetus causing disproportion, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Hydrocephalic fetus causing disproportion (653.6)\\" + }, + { + "displayName": "(653.63) Hydrocephalic fetus causing disproportion, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Hydrocephalic fetus causing disproportion (653.6)\\(653.63) Hydrocephalic fetus causing disproportion, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Hydrocephalic fetus causing disproportion (653.6)\\" + }, + { + "displayName": "Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Disproportion in pregnancy, labor, and delivery (653)\\\\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\" + }, + { + "displayName": "(653.20) Inlet contraction of pelvis, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\\(653.20) Inlet contraction of pelvis, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Disproportion in pregnancy, labor, and delivery (653)\\\\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\\\\(653.20) Inlet contraction of pelvis, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\\" + }, + { + "displayName": "(653.21) Inlet contraction of pelvis, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\\(653.21) Inlet contraction of pelvis, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Disproportion in pregnancy, labor, and delivery (653)\\\\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\\\\(653.21) Inlet contraction of pelvis, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\\" + }, + { + "displayName": "(653.23) Inlet contraction of pelvis, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\\(653.23) Inlet contraction of pelvis, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Disproportion in pregnancy, labor, and delivery (653)\\\\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\\\\(653.23) Inlet contraction of pelvis, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\\" + }, + { + "displayName": "Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\" + }, + { + "displayName": "(653.00) Major abnormality of bony pelvis, not further specified, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\\(653.00) Major abnormality of bony pelvis, not further specified, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\\" + }, + { + "displayName": "(653.01) Major abnormality of bony pelvis, not further specified, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\\(653.01) Major abnormality of bony pelvis, not further specified, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\\" + }, + { + "displayName": "(653.03) Major abnormality of bony pelvis, not further specified, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\\(653.03) Major abnormality of bony pelvis, not further specified, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\\" + }, + { + "displayName": "Other fetal abnormality causing disproportion (653.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Other fetal abnormality causing disproportion (653.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\" + }, + { + "displayName": "(653.70) Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Other fetal abnormality causing disproportion (653.7)\\(653.70) Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Other fetal abnormality causing disproportion (653.7)\\" + }, + { + "displayName": "(653.71) Other fetal abnormality causing disproportion, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Other fetal abnormality causing disproportion (653.7)\\(653.71) Other fetal abnormality causing disproportion, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Other fetal abnormality causing disproportion (653.7)\\" + }, + { + "displayName": "(653.73) Other fetal abnormality causing disproportion, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Other fetal abnormality causing disproportion (653.7)\\(653.73) Other fetal abnormality causing disproportion, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Other fetal abnormality causing disproportion (653.7)\\" + }, + { + "displayName": "Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Disproportion in pregnancy, labor, and delivery (653)\\\\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\" + }, + { + "displayName": "(653.30) Outlet contraction of pelvis, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\\(653.30) Outlet contraction of pelvis, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Disproportion in pregnancy, labor, and delivery (653)\\\\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\\\\(653.30) Outlet contraction of pelvis, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\\" + }, + { + "displayName": "(653.31) Outlet contraction of pelvis, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\\(653.31) Outlet contraction of pelvis, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Disproportion in pregnancy, labor, and delivery (653)\\\\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\\\\(653.31) Outlet contraction of pelvis, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\\" + }, + { + "displayName": "(653.33) Outlet contraction of pelvis, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\\(653.33) Outlet contraction of pelvis, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\\" + }, + { + "displayName": "Unspecified disproportion in pregnancy, labor, and delivery (653.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\" + }, + { + "displayName": "(653.90) Unspecified disproportion, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\\(653.90) Unspecified disproportion, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\\" + }, + { + "displayName": "(653.91) Unspecified disproportion, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\\(653.91) Unspecified disproportion, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\\" + }, + { + "displayName": "(653.93) Unspecified disproportion, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\\(653.93) Unspecified disproportion, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\\" + }, + { + "displayName": "Unusually large fetus causing disproportion (653.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unusually large fetus causing disproportion (653.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\" + }, + { + "displayName": "(653.50) Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unusually large fetus causing disproportion (653.5)\\(653.50) Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Disproportion in pregnancy, labor, and delivery (653)\\\\Unusually large fetus causing disproportion (653.5)\\\\(653.50) Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unusually large fetus causing disproportion (653.5)\\" + }, + { + "displayName": "(653.51) Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unusually large fetus causing disproportion (653.5)\\(653.51) Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Disproportion in pregnancy, labor, and delivery (653)\\\\Unusually large fetus causing disproportion (653.5)\\\\(653.51) Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unusually large fetus causing disproportion (653.5)\\" + }, + { + "displayName": "(653.53) Unusually large fetus causing disproportion, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unusually large fetus causing disproportion (653.5)\\(653.53) Unusually large fetus causing disproportion, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Disproportion in pregnancy, labor, and delivery (653)\\\\Unusually large fetus causing disproportion (653.5)\\\\(653.53) Unusually large fetus causing disproportion, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Disproportion in pregnancy, labor, and delivery (653)\\Unusually large fetus causing disproportion (653.5)\\" + }, + { + "displayName": "Known or suspected fetal abnormality affecting management of mother (655)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\" + }, + { + "displayName": "Central nervous system malformation in fetus affecting management of mother (655.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Central nervous system malformation in fetus affecting management of mother (655.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Central nervous system malformation in fetus affecting management of mother (655.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\" + }, + { + "displayName": "(655.00) Central nervous system malformation in fetus, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Central nervous system malformation in fetus affecting management of mother (655.0)\\(655.00) Central nervous system malformation in fetus, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Central nervous system malformation in fetus affecting management of mother (655.0)\\" + }, + { + "displayName": "(655.01) Central nervous system malformation in fetus, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Central nervous system malformation in fetus affecting management of mother (655.0)\\(655.01) Central nervous system malformation in fetus, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Central nervous system malformation in fetus affecting management of mother (655.0)\\" + }, + { + "displayName": "(655.03) Central nervous system malformation in fetus, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Central nervous system malformation in fetus affecting management of mother (655.0)\\(655.03) Central nervous system malformation in fetus, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Central nervous system malformation in fetus affecting management of mother (655.0)\\" + }, + { + "displayName": "Chromosomal abnormality in fetus affecting management of mother (655.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Chromosomal abnormality in fetus affecting management of mother (655.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\" + }, + { + "displayName": "(655.10) Chromosomal abnormality in fetus, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Chromosomal abnormality in fetus affecting management of mother (655.1)\\(655.10) Chromosomal abnormality in fetus, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Chromosomal abnormality in fetus affecting management of mother (655.1)\\" + }, + { + "displayName": "(655.11) Chromosomal abnormality in fetus, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Chromosomal abnormality in fetus affecting management of mother (655.1)\\(655.11) Chromosomal abnormality in fetus, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Chromosomal abnormality in fetus affecting management of mother (655.1)\\" + }, + { + "displayName": "(655.13) Chromosomal abnormality in fetus, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Chromosomal abnormality in fetus affecting management of mother (655.1)\\(655.13) Chromosomal abnormality in fetus, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Chromosomal abnormality in fetus affecting management of mother (655.1)\\" + }, + { + "displayName": "Decreased fetal movements, affecting management of mother (655.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Decreased fetal movements, affecting management of mother (655.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\" + }, + { + "displayName": "(655.70) Decreased fetal movements, affecting management of mother, unspecified as to episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Decreased fetal movements, affecting management of mother (655.7)\\(655.70) Decreased fetal movements, affecting management of mother, unspecified as to episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Decreased fetal movements, affecting management of mother (655.7)\\" + }, + { + "displayName": "(655.71) Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Decreased fetal movements, affecting management of mother (655.7)\\(655.71) Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Decreased fetal movements, affecting management of mother (655.7)\\\\(655.71) Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Decreased fetal movements, affecting management of mother (655.7)\\" + }, + { + "displayName": "(655.73) Decreased fetal movements, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Decreased fetal movements, affecting management of mother (655.7)\\(655.73) Decreased fetal movements, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Decreased fetal movements, affecting management of mother (655.7)\\\\(655.73) Decreased fetal movements, affecting management of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Decreased fetal movements, affecting management of mother (655.7)\\" + }, + { + "displayName": "Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\" + }, + { + "displayName": "(655.20) Hereditary disease in family possibly affecting fetus, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\\(655.20) Hereditary disease in family possibly affecting fetus, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\\" + }, + { + "displayName": "(655.21) Hereditary disease in family possibly affecting fetus, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\\(655.21) Hereditary disease in family possibly affecting fetus, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\\" + }, + { + "displayName": "(655.23) Hereditary disease in family possibly affecting fetus, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\\(655.23) Hereditary disease in family possibly affecting fetus, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\\" + }, + { + "displayName": "Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\" + }, + { + "displayName": "(655.80) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\\(655.80) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\\\\(655.80) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\\" + }, + { + "displayName": "(655.81) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\\(655.81) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\\" + }, + { + "displayName": "(655.83) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\\(655.83) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\\" + }, + { + "displayName": "Suspected damage to fetus from drugs, affecting management of mother (655.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from drugs, affecting management of mother (655.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\" + }, + { + "displayName": "(655.50) Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from drugs, affecting management of mother (655.5)\\(655.50) Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Suspected damage to fetus from drugs, affecting management of mother (655.5)\\\\(655.50) Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from drugs, affecting management of mother (655.5)\\" + }, + { + "displayName": "(655.51) Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from drugs, affecting management of mother (655.5)\\(655.51) Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Suspected damage to fetus from drugs, affecting management of mother (655.5)\\\\(655.51) Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from drugs, affecting management of mother (655.5)\\" + }, + { + "displayName": "(655.53) Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from drugs, affecting management of mother (655.5)\\(655.53) Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Suspected damage to fetus from drugs, affecting management of mother (655.5)\\\\(655.53) Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from drugs, affecting management of mother (655.5)\\" + }, + { + "displayName": "Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\" + }, + { + "displayName": "(655.40) Suspected damage to fetus from other disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\\(655.40) Suspected damage to fetus from other disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\\" + }, + { + "displayName": "(655.41) Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\\(655.41) Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\\\\(655.41) Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\\" + }, + { + "displayName": "(655.43) Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\\(655.43) Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\\\\(655.43) Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\\" + }, + { + "displayName": "Suspected damage to fetus from radiation, affecting management of mother (655.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from radiation, affecting management of mother (655.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Suspected damage to fetus from radiation, affecting management of mother (655.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\" + }, + { + "displayName": "(655.60) Suspected damage to fetus from radiation, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from radiation, affecting management of mother (655.6)\\(655.60) Suspected damage to fetus from radiation, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from radiation, affecting management of mother (655.6)\\" + }, + { + "displayName": "(655.61) Suspected damage to fetus from radiation, affecting management of mother, delivered,", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from radiation, affecting management of mother (655.6)\\(655.61) Suspected damage to fetus from radiation, affecting management of mother, delivered,\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Suspected damage to fetus from radiation, affecting management of mother (655.6)\\\\(655.61) Suspected damage to fetus from radiation, affecting management of mother, delivered,\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from radiation, affecting management of mother (655.6)\\" + }, + { + "displayName": "(655.63) Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from radiation, affecting management of mother (655.6)\\(655.63) Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Known or suspected fetal abnormality affecting management of mother (655)\\\\Suspected damage to fetus from radiation, affecting management of mother (655.6)\\\\(655.63) Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from radiation, affecting management of mother (655.6)\\" + }, + { + "displayName": "Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\" + }, + { + "displayName": "(655.30) Suspected damage to fetus from viral disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\\(655.30) Suspected damage to fetus from viral disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\\" + }, + { + "displayName": "(655.31) Suspected damage to fetus from viral disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\\(655.31) Suspected damage to fetus from viral disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\\" + }, + { + "displayName": "(655.33) Suspected damage to fetus from viral disease in the mother, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\\(655.33) Suspected damage to fetus from viral disease in the mother, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\\" + }, + { + "displayName": "Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\" + }, + { + "displayName": "(655.90) Unspecified suspected fetal abnormality, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\\(655.90) Unspecified suspected fetal abnormality, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\\" + }, + { + "displayName": "(655.91) Unspecified suspected fetal abnormality, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\\(655.91) Unspecified suspected fetal abnormality, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\\" + }, + { + "displayName": "(655.93) Unspecified suspected fetal abnormality, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\\(655.93) Unspecified suspected fetal abnormality, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Known or suspected fetal abnormality affecting management of mother (655)\\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\\" + }, + { + "displayName": "Malposition and malpresentation of fetus (652)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\" + }, + { + "displayName": "Breech or other malpresentation successfully converted to cephalic presentation (652.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\" + }, + { + "displayName": "(652.10) Breech or other malpresentation successfully converted to cephalic presentation, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\\(652.10) Breech or other malpresentation successfully converted to cephalic presentation, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\\" + }, + { + "displayName": "(652.11) Breech or other malpresentation successfully converted to cephalic presentation, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\\(652.11) Breech or other malpresentation successfully converted to cephalic presentation, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\\" + }, + { + "displayName": "(652.13) Breech or other malpresentation successfully converted to cephalic presentation, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\\(652.13) Breech or other malpresentation successfully converted to cephalic presentation, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\\" + }, + { + "displayName": "Breech presentation without mention of version (652.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech presentation without mention of version (652.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\" + }, + { + "displayName": "(652.20) Breech presentation without mention of version, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech presentation without mention of version (652.2)\\(652.20) Breech presentation without mention of version, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Breech presentation without mention of version (652.2)\\\\(652.20) Breech presentation without mention of version, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech presentation without mention of version (652.2)\\" + }, + { + "displayName": "(652.21) Breech presentation without mention of version, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech presentation without mention of version (652.2)\\(652.21) Breech presentation without mention of version, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Breech presentation without mention of version (652.2)\\\\(652.21) Breech presentation without mention of version, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech presentation without mention of version (652.2)\\" + }, + { + "displayName": "(652.23) Breech presentation without mention of version, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech presentation without mention of version (652.2)\\(652.23) Breech presentation without mention of version, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Breech presentation without mention of version (652.2)\\\\(652.23) Breech presentation without mention of version, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Breech presentation without mention of version (652.2)\\" + }, + { + "displayName": "Face or brow presentation of fetus (652.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Face or brow presentation of fetus (652.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Face or brow presentation of fetus (652.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\" + }, + { + "displayName": "(652.40) Face or brow presentation, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Face or brow presentation of fetus (652.4)\\(652.40) Face or brow presentation, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Face or brow presentation of fetus (652.4)\\" + }, + { + "displayName": "(652.41) Face or brow presentation, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Face or brow presentation of fetus (652.4)\\(652.41) Face or brow presentation, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Face or brow presentation of fetus (652.4)\\" + }, + { + "displayName": "(652.43) Face or brow presentation, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Face or brow presentation of fetus (652.4)\\(652.43) Face or brow presentation, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Face or brow presentation of fetus (652.4)\\" + }, + { + "displayName": "High fetal head at term (652.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\High fetal head at term (652.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\" + }, + { + "displayName": "(652.50) High head at term, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\High fetal head at term (652.5)\\(652.50) High head at term, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\High fetal head at term (652.5)\\" + }, + { + "displayName": "(652.51) High head at term, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\High fetal head at term (652.5)\\(652.51) High head at term, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\High fetal head at term (652.5)\\" + }, + { + "displayName": "(652.53) High head at term, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\High fetal head at term (652.5)\\(652.53) High head at term, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\High fetal head at term (652.5)\\\\(652.53) High head at term, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\High fetal head at term (652.5)\\" + }, + { + "displayName": "Multiple gestation with malpresentation of one fetus or more (652.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Multiple gestation with malpresentation of one fetus or more (652.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Multiple gestation with malpresentation of one fetus or more (652.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\" + }, + { + "displayName": "(652.60) Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Multiple gestation with malpresentation of one fetus or more (652.6)\\(652.60) Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Multiple gestation with malpresentation of one fetus or more (652.6)\\\\(652.60) Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Multiple gestation with malpresentation of one fetus or more (652.6)\\" + }, + { + "displayName": "(652.61) Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Multiple gestation with malpresentation of one fetus or more (652.6)\\(652.61) Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Multiple gestation with malpresentation of one fetus or more (652.6)\\\\(652.61) Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Multiple gestation with malpresentation of one fetus or more (652.6)\\" + }, + { + "displayName": "(652.63) Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Multiple gestation with malpresentation of one fetus or more (652.6)\\(652.63) Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Multiple gestation with malpresentation of one fetus or more (652.6)\\\\(652.63) Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Multiple gestation with malpresentation of one fetus or more (652.6)\\" + }, + { + "displayName": "Other specified malposition or malpresentation of fetus (652.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Other specified malposition or malpresentation of fetus (652.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Other specified malposition or malpresentation of fetus (652.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\" + }, + { + "displayName": "(652.80) Other specified malposition or malpresentation, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Other specified malposition or malpresentation of fetus (652.8)\\(652.80) Other specified malposition or malpresentation, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Other specified malposition or malpresentation of fetus (652.8)\\\\(652.80) Other specified malposition or malpresentation, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Other specified malposition or malpresentation of fetus (652.8)\\" + }, + { + "displayName": "(652.81) Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Other specified malposition or malpresentation of fetus (652.8)\\(652.81) Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Other specified malposition or malpresentation of fetus (652.8)\\\\(652.81) Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Other specified malposition or malpresentation of fetus (652.8)\\" + }, + { + "displayName": "(652.83) Other specified malposition or malpresentation, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Other specified malposition or malpresentation of fetus (652.8)\\(652.83) Other specified malposition or malpresentation, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Other specified malposition or malpresentation of fetus (652.8)\\\\(652.83) Other specified malposition or malpresentation, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Other specified malposition or malpresentation of fetus (652.8)\\" + }, + { + "displayName": "Prolapsed arm of fetus (652.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Prolapsed arm of fetus (652.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\" + }, + { + "displayName": "(652.70) Prolapsed arm of fetus, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Prolapsed arm of fetus (652.7)\\(652.70) Prolapsed arm of fetus, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Prolapsed arm of fetus (652.7)\\" + }, + { + "displayName": "(652.71) Prolapsed arm of fetus, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Prolapsed arm of fetus (652.7)\\(652.71) Prolapsed arm of fetus, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Prolapsed arm of fetus (652.7)\\\\(652.71) Prolapsed arm of fetus, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Prolapsed arm of fetus (652.7)\\" + }, + { + "displayName": "(652.73) Prolapsed arm of fetus, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Prolapsed arm of fetus (652.7)\\(652.73) Prolapsed arm of fetus, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Prolapsed arm of fetus (652.7)\\" + }, + { + "displayName": "Transverse or oblique presentation of fetus (652.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Transverse or oblique presentation of fetus (652.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\" + }, + { + "displayName": "(652.30) Transverse or oblique presentation, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Transverse or oblique presentation of fetus (652.3)\\(652.30) Transverse or oblique presentation, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Transverse or oblique presentation of fetus (652.3)\\\\(652.30) Transverse or oblique presentation, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Transverse or oblique presentation of fetus (652.3)\\" + }, + { + "displayName": "(652.31) Transverse or oblique presentation, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Transverse or oblique presentation of fetus (652.3)\\(652.31) Transverse or oblique presentation, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Transverse or oblique presentation of fetus (652.3)\\" + }, + { + "displayName": "(652.33) Transverse or oblique presentation, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Transverse or oblique presentation of fetus (652.3)\\(652.33) Transverse or oblique presentation, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Transverse or oblique presentation of fetus (652.3)\\" + }, + { + "displayName": "Unspecified malposition or malpresentation of fetus (652.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unspecified malposition or malpresentation of fetus (652.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Unspecified malposition or malpresentation of fetus (652.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\" + }, + { + "displayName": "(652.90) Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unspecified malposition or malpresentation of fetus (652.9)\\(652.90) Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unspecified malposition or malpresentation of fetus (652.9)\\" + }, + { + "displayName": "(652.91) Unspecified malposition or malpresentation, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unspecified malposition or malpresentation of fetus (652.9)\\(652.91) Unspecified malposition or malpresentation, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unspecified malposition or malpresentation of fetus (652.9)\\" + }, + { + "displayName": "(652.93) Unspecified malposition or malpresentation, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unspecified malposition or malpresentation of fetus (652.9)\\(652.93) Unspecified malposition or malpresentation, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unspecified malposition or malpresentation of fetus (652.9)\\" + }, + { + "displayName": "Unstable lie of fetus (652.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unstable lie of fetus (652.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\" + }, + { + "displayName": "(652.00) Unstable lie, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unstable lie of fetus (652.0)\\(652.00) Unstable lie, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Unstable lie of fetus (652.0)\\\\(652.00) Unstable lie, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unstable lie of fetus (652.0)\\" + }, + { + "displayName": "(652.01) Unstable lie, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unstable lie of fetus (652.0)\\(652.01) Unstable lie, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Malposition and malpresentation of fetus (652)\\\\Unstable lie of fetus (652.0)\\\\(652.01) Unstable lie, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unstable lie of fetus (652.0)\\" + }, + { + "displayName": "(652.03) Unstable lie, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unstable lie of fetus (652.0)\\(652.03) Unstable lie, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Malposition and malpresentation of fetus (652)\\Unstable lie of fetus (652.0)\\" + }, + { + "displayName": "Multiple gestation (651)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\" + }, + { + "displayName": "Multiple gestation following (elective) fetal reduction (651.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Multiple gestation following (elective) fetal reduction (651.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\" + }, + { + "displayName": "(651.70) Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Multiple gestation following (elective) fetal reduction (651.7)\\(651.70) Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Multiple gestation following (elective) fetal reduction (651.7)\\\\(651.70) Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Multiple gestation following (elective) fetal reduction (651.7)\\" + }, + { + "displayName": "(651.71) Multiple gestation following (elective) fetal reduction,delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Multiple gestation following (elective) fetal reduction (651.7)\\(651.71) Multiple gestation following (elective) fetal reduction,delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Multiple gestation following (elective) fetal reduction (651.7)\\" + }, + { + "displayName": "(651.73) Multiple gestation following (elective) fetal reduction, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Multiple gestation following (elective) fetal reduction (651.7)\\(651.73) Multiple gestation following (elective) fetal reduction, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Multiple gestation following (elective) fetal reduction (651.7)\\\\(651.73) Multiple gestation following (elective) fetal reduction, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Multiple gestation following (elective) fetal reduction (651.7)\\" + }, + { + "displayName": "Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\" + }, + { + "displayName": "(651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\\(651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\\\\(651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\\" + }, + { + "displayName": "(651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\\(651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\\" + }, + { + "displayName": "(651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\\(651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\\\\(651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\\" + }, + { + "displayName": "Other specified multiple gestation (651.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other specified multiple gestation (651.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\" + }, + { + "displayName": "(651.80) Other specified multiple gestation, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other specified multiple gestation (651.8)\\(651.80) Other specified multiple gestation, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Other specified multiple gestation (651.8)\\\\(651.80) Other specified multiple gestation, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other specified multiple gestation (651.8)\\" + }, + { + "displayName": "(651.81) Other specified multiple gestation, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other specified multiple gestation (651.8)\\(651.81) Other specified multiple gestation, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other specified multiple gestation (651.8)\\" + }, + { + "displayName": "(651.83) Other specified multiple gestation, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other specified multiple gestation (651.8)\\(651.83) Other specified multiple gestation, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Other specified multiple gestation (651.8)\\" + }, + { + "displayName": "Quadruplet pregnancy (651.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy (651.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\" + }, + { + "displayName": "(651.20) Quadruplet pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy (651.2)\\(651.20) Quadruplet pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Quadruplet pregnancy (651.2)\\\\(651.20) Quadruplet pregnancy, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy (651.2)\\" + }, + { + "displayName": "(651.21) Quadruplet pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy (651.2)\\(651.21) Quadruplet pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Quadruplet pregnancy (651.2)\\\\(651.21) Quadruplet pregnancy, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy (651.2)\\" + }, + { + "displayName": "(651.23) Quadruplet pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy (651.2)\\(651.23) Quadruplet pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Quadruplet pregnancy (651.2)\\\\(651.23) Quadruplet pregnancy, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy (651.2)\\" + }, + { + "displayName": "Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\" + }, + { + "displayName": "(651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\\(651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\\\\(651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\\" + }, + { + "displayName": "(651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\\(651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\\\\(651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\\" + }, + { + "displayName": "(651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\\(651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\\" + }, + { + "displayName": "Triplet pregnancy (651.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy (651.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\" + }, + { + "displayName": "(651.10) Triplet pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy (651.1)\\(651.10) Triplet pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy (651.1)\\" + }, + { + "displayName": "(651.11) Triplet pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy (651.1)\\(651.11) Triplet pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy (651.1)\\" + }, + { + "displayName": "(651.13) Triplet pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy (651.1)\\(651.13) Triplet pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy (651.1)\\" + }, + { + "displayName": "Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\" + }, + { + "displayName": "(651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\\(651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\\" + }, + { + "displayName": "(651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\\(651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\\" + }, + { + "displayName": "(651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\\(651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\\" + }, + { + "displayName": "Twin pregnancy (651.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy (651.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\" + }, + { + "displayName": "(651.00) Twin pregnancy, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy (651.0)\\(651.00) Twin pregnancy, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy (651.0)\\" + }, + { + "displayName": "(651.01) Twin pregnancy, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy (651.0)\\(651.01) Twin pregnancy, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy (651.0)\\" + }, + { + "displayName": "(651.03) Twin pregnancy, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy (651.0)\\(651.03) Twin pregnancy, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy (651.0)\\" + }, + { + "displayName": "Twin pregnancy with fetal loss and retention of one fetus (651.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy with fetal loss and retention of one fetus (651.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\" + }, + { + "displayName": "(651.30) Twin pregnancy with fetal loss and retention of one fetus, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy with fetal loss and retention of one fetus (651.3)\\(651.30) Twin pregnancy with fetal loss and retention of one fetus, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy with fetal loss and retention of one fetus (651.3)\\" + }, + { + "displayName": "(651.31) Twin pregnancy with fetal loss and retention of one fetus, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy with fetal loss and retention of one fetus (651.3)\\(651.31) Twin pregnancy with fetal loss and retention of one fetus, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy with fetal loss and retention of one fetus (651.3)\\" + }, + { + "displayName": "(651.33) Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy with fetal loss and retention of one fetus (651.3)\\(651.33) Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Twin pregnancy with fetal loss and retention of one fetus (651.3)\\\\(651.33) Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Twin pregnancy with fetal loss and retention of one fetus (651.3)\\" + }, + { + "displayName": "Unspecified multiple gestation (651.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Unspecified multiple gestation (651.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Unspecified multiple gestation (651.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\" + }, + { + "displayName": "(651.90) Unspecified multiple gestation, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Unspecified multiple gestation (651.9)\\(651.90) Unspecified multiple gestation, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Unspecified multiple gestation (651.9)\\\\(651.90) Unspecified multiple gestation, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Unspecified multiple gestation (651.9)\\" + }, + { + "displayName": "(651.91) Unspecified multiple gestation, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Unspecified multiple gestation (651.9)\\(651.91) Unspecified multiple gestation, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Unspecified multiple gestation (651.9)\\\\(651.91) Unspecified multiple gestation, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Unspecified multiple gestation (651.9)\\" + }, + { + "displayName": "(651.93) Unspecified multiple gestation, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Unspecified multiple gestation (651.9)\\(651.93) Unspecified multiple gestation, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Multiple gestation (651)\\\\Unspecified multiple gestation (651.9)\\\\(651.93) Unspecified multiple gestation, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Multiple gestation (651)\\Unspecified multiple gestation (651.9)\\" + }, + { + "displayName": "Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\" + }, + { + "displayName": "Abnormality in fetal heart rate or rhythm (659.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Abnormality in fetal heart rate or rhythm (659.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\" + }, + { + "displayName": "(659.70) Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Abnormality in fetal heart rate or rhythm (659.7)\\(659.70) Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Abnormality in fetal heart rate or rhythm (659.7)\\" + }, + { + "displayName": "(659.71) Abnormality in fetal heart rate or rhythm, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Abnormality in fetal heart rate or rhythm (659.7)\\(659.71) Abnormality in fetal heart rate or rhythm, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Abnormality in fetal heart rate or rhythm (659.7)\\" + }, + { + "displayName": "(659.73) Abnormality in fetal heart rate or rhythm, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Abnormality in fetal heart rate or rhythm (659.7)\\(659.73) Abnormality in fetal heart rate or rhythm, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Abnormality in fetal heart rate or rhythm (659.7)\\" + }, + { + "displayName": "Elderly multigravida (659.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly multigravida (659.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\" + }, + { + "displayName": "(659.60) Elderly multigravida, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly multigravida (659.6)\\(659.60) Elderly multigravida, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly multigravida (659.6)\\" + }, + { + "displayName": "(659.61) Elderly multigravida, delivered with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly multigravida (659.6)\\(659.61) Elderly multigravida, delivered with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly multigravida (659.6)\\" + }, + { + "displayName": "(659.63) Elderly multigravida, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly multigravida (659.6)\\(659.63) Elderly multigravida, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly multigravida (659.6)\\" + }, + { + "displayName": "Elderly primigravida (659.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly primigravida (659.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\" + }, + { + "displayName": "(659.50) Elderly primigravida, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly primigravida (659.5)\\(659.50) Elderly primigravida, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly primigravida (659.5)\\" + }, + { + "displayName": "(659.51) Elderly primigravida, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly primigravida (659.5)\\(659.51) Elderly primigravida, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly primigravida (659.5)\\" + }, + { + "displayName": "(659.53) Elderly primigravida, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly primigravida (659.5)\\(659.53) Elderly primigravida, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Elderly primigravida (659.5)\\" + }, + { + "displayName": "Failed mechanical induction of labor (659.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed mechanical induction of labor (659.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Failed mechanical induction of labor (659.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\" + }, + { + "displayName": "(659.00) Failed mechanical induction of labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed mechanical induction of labor (659.0)\\(659.00) Failed mechanical induction of labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Failed mechanical induction of labor (659.0)\\\\(659.00) Failed mechanical induction of labor, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed mechanical induction of labor (659.0)\\" + }, + { + "displayName": "(659.01) Failed mechanical induction of labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed mechanical induction of labor (659.0)\\(659.01) Failed mechanical induction of labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Failed mechanical induction of labor (659.0)\\\\(659.01) Failed mechanical induction of labor, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed mechanical induction of labor (659.0)\\" + }, + { + "displayName": "(659.03) Failed mechanical induction of labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed mechanical induction of labor (659.0)\\(659.03) Failed mechanical induction of labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Failed mechanical induction of labor (659.0)\\\\(659.03) Failed mechanical induction of labor, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed mechanical induction of labor (659.0)\\" + }, + { + "displayName": "Failed medical or unspecified induction of labor (659.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed medical or unspecified induction of labor (659.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Failed medical or unspecified induction of labor (659.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\" + }, + { + "displayName": "(659.10) Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed medical or unspecified induction of labor (659.1)\\(659.10) Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Failed medical or unspecified induction of labor (659.1)\\\\(659.10) Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed medical or unspecified induction of labor (659.1)\\" + }, + { + "displayName": "(659.11) Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed medical or unspecified induction of labor (659.1)\\(659.11) Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Failed medical or unspecified induction of labor (659.1)\\\\(659.11) Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed medical or unspecified induction of labor (659.1)\\" + }, + { + "displayName": "(659.13) Failed medical or unspecified induction of labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed medical or unspecified induction of labor (659.1)\\(659.13) Failed medical or unspecified induction of labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Failed medical or unspecified induction of labor (659.1)\\\\(659.13) Failed medical or unspecified induction of labor, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Failed medical or unspecified induction of labor (659.1)\\" + }, + { + "displayName": "Generalized infection during labor (659.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Generalized infection during labor (659.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\" + }, + { + "displayName": "(659.30) Generalized infection during labor, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Generalized infection during labor (659.3)\\(659.30) Generalized infection during labor, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Generalized infection during labor (659.3)\\\\(659.30) Generalized infection during labor, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Generalized infection during labor (659.3)\\" + }, + { + "displayName": "(659.31) Generalized infection during labor, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Generalized infection during labor (659.3)\\(659.31) Generalized infection during labor, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Generalized infection during labor (659.3)\\" + }, + { + "displayName": "(659.33) Generalized infection during labor, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Generalized infection during labor (659.3)\\(659.33) Generalized infection during labor, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Generalized infection during labor (659.3)\\\\(659.33) Generalized infection during labor, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Generalized infection during labor (659.3)\\" + }, + { + "displayName": "Grand multiparity, with current pregnancy (659.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Grand multiparity, with current pregnancy (659.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\" + }, + { + "displayName": "(659.40) Grand multiparity, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Grand multiparity, with current pregnancy (659.4)\\(659.40) Grand multiparity, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Grand multiparity, with current pregnancy (659.4)\\\\(659.40) Grand multiparity, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Grand multiparity, with current pregnancy (659.4)\\" + }, + { + "displayName": "(659.41) Grand multiparity, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Grand multiparity, with current pregnancy (659.4)\\(659.41) Grand multiparity, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Grand multiparity, with current pregnancy (659.4)\\" + }, + { + "displayName": "(659.43) Grand multiparity, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Grand multiparity, with current pregnancy (659.4)\\(659.43) Grand multiparity, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Grand multiparity, with current pregnancy (659.4)\\" + }, + { + "displayName": "Maternal pyrexia during labor, unspecified (659.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Maternal pyrexia during labor, unspecified (659.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Maternal pyrexia during labor, unspecified (659.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\" + }, + { + "displayName": "(659.20) Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Maternal pyrexia during labor, unspecified (659.2)\\(659.20) Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Maternal pyrexia during labor, unspecified (659.2)\\\\(659.20) Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Maternal pyrexia during labor, unspecified (659.2)\\" + }, + { + "displayName": "(659.21) Maternal pyrexia during labor, unspecified, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Maternal pyrexia during labor, unspecified (659.2)\\(659.21) Maternal pyrexia during labor, unspecified, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Maternal pyrexia during labor, unspecified (659.2)\\" + }, + { + "displayName": "(659.23) Maternal pyrexia during labor, unspecified, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Maternal pyrexia during labor, unspecified (659.2)\\(659.23) Maternal pyrexia during labor, unspecified, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Maternal pyrexia during labor, unspecified (659.2)\\\\(659.23) Maternal pyrexia during labor, unspecified, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Maternal pyrexia during labor, unspecified (659.2)\\" + }, + { + "displayName": "Other specified indications for care or intervention related to labor and delivery (659.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Other specified indications for care or intervention related to labor and delivery (659.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\" + }, + { + "displayName": "(659.80) Other specified indications for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Other specified indications for care or intervention related to labor and delivery (659.8)\\(659.80) Other specified indications for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Other specified indications for care or intervention related to labor and delivery (659.8)\\" + }, + { + "displayName": "(659.81) Other specified indications for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Other specified indications for care or intervention related to labor and delivery (659.8)\\(659.81) Other specified indications for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Other specified indications for care or intervention related to labor and delivery (659.8)\\" + }, + { + "displayName": "(659.83) Other specified indications for care or intervention related to labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Other specified indications for care or intervention related to labor and delivery (659.8)\\(659.83) Other specified indications for care or intervention related to labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Other specified indications for care or intervention related to labor and delivery (659.8)\\" + }, + { + "displayName": "Unspecified indication for care or intervention related to labor and delivery (659.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Unspecified indication for care or intervention related to labor and delivery (659.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\" + }, + { + "displayName": "(659.90) Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Unspecified indication for care or intervention related to labor and delivery (659.9)\\(659.90) Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Unspecified indication for care or intervention related to labor and delivery (659.9)\\\\(659.90) Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Unspecified indication for care or intervention related to labor and delivery (659.9)\\" + }, + { + "displayName": "(659.91) Unspecified indication for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Unspecified indication for care or intervention related to labor and delivery (659.9)\\(659.91) Unspecified indication for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Unspecified indication for care or intervention related to labor and delivery (659.9)\\" + }, + { + "displayName": "(659.93) Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Unspecified indication for care or intervention related to labor and delivery (659.9)\\(659.93) Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\\\Unspecified indication for care or intervention related to labor and delivery (659.9)\\\\(659.93) Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\\Unspecified indication for care or intervention related to labor and delivery (659.9)\\" + }, + { + "displayName": "Other known or suspected fetal and placental problems affecting management of mother (656)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\" + }, + { + "displayName": "Excessive fetal growth affecting management of mother (656.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Excessive fetal growth affecting management of mother (656.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Excessive fetal growth affecting management of mother (656.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\" + }, + { + "displayName": "(656.60) Excessive fetal growth, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Excessive fetal growth affecting management of mother (656.6)\\(656.60) Excessive fetal growth, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Excessive fetal growth affecting management of mother (656.6)\\" + }, + { + "displayName": "(656.61) Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Excessive fetal growth affecting management of mother (656.6)\\(656.61) Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Excessive fetal growth affecting management of mother (656.6)\\\\(656.61) Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Excessive fetal growth affecting management of mother (656.6)\\" + }, + { + "displayName": "(656.63) Excessive fetal growth, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Excessive fetal growth affecting management of mother (656.6)\\(656.63) Excessive fetal growth, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Excessive fetal growth affecting management of mother (656.6)\\" + }, + { + "displayName": "Fetal distress affecting management of mother (656.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal distress affecting management of mother (656.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Fetal distress affecting management of mother (656.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\" + }, + { + "displayName": "(656.30) Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal distress affecting management of mother (656.3)\\(656.30) Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Fetal distress affecting management of mother (656.3)\\\\(656.30) Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal distress affecting management of mother (656.3)\\" + }, + { + "displayName": "(656.31) Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal distress affecting management of mother (656.3)\\(656.31) Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Fetal distress affecting management of mother (656.3)\\\\(656.31) Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal distress affecting management of mother (656.3)\\" + }, + { + "displayName": "(656.33) Fetal distress, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal distress affecting management of mother (656.3)\\(656.33) Fetal distress, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Fetal distress affecting management of mother (656.3)\\\\(656.33) Fetal distress, affecting management of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal distress affecting management of mother (656.3)\\" + }, + { + "displayName": "Fetal-maternal hemorrhage affecting management of mother (656.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal-maternal hemorrhage affecting management of mother (656.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\" + }, + { + "displayName": "(656.00) Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal-maternal hemorrhage affecting management of mother (656.0)\\(656.00) Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal-maternal hemorrhage affecting management of mother (656.0)\\" + }, + { + "displayName": "(656.01) Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal-maternal hemorrhage affecting management of mother (656.0)\\(656.01) Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal-maternal hemorrhage affecting management of mother (656.0)\\" + }, + { + "displayName": "(656.03) Fetal-maternal hemorrhage, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal-maternal hemorrhage affecting management of mother (656.0)\\(656.03) Fetal-maternal hemorrhage, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Fetal-maternal hemorrhage affecting management of mother (656.0)\\\\(656.03) Fetal-maternal hemorrhage, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Fetal-maternal hemorrhage affecting management of mother (656.0)\\" + }, + { + "displayName": "Intrauterine death affecting management of mother (656.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Intrauterine death affecting management of mother (656.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Intrauterine death affecting management of mother (656.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\" + }, + { + "displayName": "(656.40) Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Intrauterine death affecting management of mother (656.4)\\(656.40) Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Intrauterine death affecting management of mother (656.4)\\\\(656.40) Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Intrauterine death affecting management of mother (656.4)\\" + }, + { + "displayName": "(656.41) Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Intrauterine death affecting management of mother (656.4)\\(656.41) Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Intrauterine death affecting management of mother (656.4)\\\\(656.41) Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Intrauterine death affecting management of mother (656.4)\\" + }, + { + "displayName": "(656.43) Intrauterine death, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Intrauterine death affecting management of mother (656.4)\\(656.43) Intrauterine death, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Intrauterine death affecting management of mother (656.4)\\\\(656.43) Intrauterine death, affecting management of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Intrauterine death affecting management of mother (656.4)\\" + }, + { + "displayName": "Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\" + }, + { + "displayName": "(656.20) Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\\(656.20) Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\\\\(656.20) Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\\" + }, + { + "displayName": "(656.21) Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\\(656.21) Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\\\\(656.21) Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\\" + }, + { + "displayName": "(656.23) Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\\(656.23) Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\\\\(656.23) Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\\" + }, + { + "displayName": "Other placental conditions affecting management of mother (656.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other placental conditions affecting management of mother (656.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Other placental conditions affecting management of mother (656.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\" + }, + { + "displayName": "(656.70) Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other placental conditions affecting management of mother (656.7)\\(656.70) Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Other placental conditions affecting management of mother (656.7)\\\\(656.70) Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other placental conditions affecting management of mother (656.7)\\" + }, + { + "displayName": "(656.71) Other placental conditions, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other placental conditions affecting management of mother (656.7)\\(656.71) Other placental conditions, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other placental conditions affecting management of mother (656.7)\\" + }, + { + "displayName": "(656.73) Other placental conditions, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other placental conditions affecting management of mother (656.7)\\(656.73) Other placental conditions, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Other placental conditions affecting management of mother (656.7)\\\\(656.73) Other placental conditions, affecting management of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other placental conditions affecting management of mother (656.7)\\" + }, + { + "displayName": "Other specified fetal and placental problems affecting management of mother (656.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other specified fetal and placental problems affecting management of mother (656.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Other specified fetal and placental problems affecting management of mother (656.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\" + }, + { + "displayName": "(656.80) Other specified fetal and placental problems, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other specified fetal and placental problems affecting management of mother (656.8)\\(656.80) Other specified fetal and placental problems, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other specified fetal and placental problems affecting management of mother (656.8)\\" + }, + { + "displayName": "(656.81) Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other specified fetal and placental problems affecting management of mother (656.8)\\(656.81) Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Other specified fetal and placental problems affecting management of mother (656.8)\\\\(656.81) Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other specified fetal and placental problems affecting management of mother (656.8)\\" + }, + { + "displayName": "(656.83) Other specified fetal and placental problems, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other specified fetal and placental problems affecting management of mother (656.8)\\(656.83) Other specified fetal and placental problems, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Other specified fetal and placental problems affecting management of mother (656.8)\\" + }, + { + "displayName": "Poor fetal growth affecting management of mother (656.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Poor fetal growth affecting management of mother (656.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Poor fetal growth affecting management of mother (656.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\" + }, + { + "displayName": "(656.50) Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Poor fetal growth affecting management of mother (656.5)\\(656.50) Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Poor fetal growth affecting management of mother (656.5)\\\\(656.50) Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Poor fetal growth affecting management of mother (656.5)\\" + }, + { + "displayName": "(656.51) Poor fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Poor fetal growth affecting management of mother (656.5)\\(656.51) Poor fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Poor fetal growth affecting management of mother (656.5)\\" + }, + { + "displayName": "(656.53) Poor fetal growth, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Poor fetal growth affecting management of mother (656.5)\\(656.53) Poor fetal growth, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Poor fetal growth affecting management of mother (656.5)\\\\(656.53) Poor fetal growth, affecting management of mother, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Poor fetal growth affecting management of mother (656.5)\\" + }, + { + "displayName": "Rhesus isoimmunization affecting management of mother (656.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Rhesus isoimmunization affecting management of mother (656.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Rhesus isoimmunization affecting management of mother (656.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\" + }, + { + "displayName": "(656.10) Rhesus isoimmunization, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Rhesus isoimmunization affecting management of mother (656.1)\\(656.10) Rhesus isoimmunization, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Rhesus isoimmunization affecting management of mother (656.1)\\\\(656.10) Rhesus isoimmunization, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Rhesus isoimmunization affecting management of mother (656.1)\\" + }, + { + "displayName": "(656.11) Rhesus isoimmunization, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Rhesus isoimmunization affecting management of mother (656.1)\\(656.11) Rhesus isoimmunization, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Rhesus isoimmunization affecting management of mother (656.1)\\\\(656.11) Rhesus isoimmunization, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Rhesus isoimmunization affecting management of mother (656.1)\\" + }, + { + "displayName": "(656.13) Rhesus isoimmunization, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Rhesus isoimmunization affecting management of mother (656.1)\\(656.13) Rhesus isoimmunization, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Rhesus isoimmunization affecting management of mother (656.1)\\\\(656.13) Rhesus isoimmunization, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Rhesus isoimmunization affecting management of mother (656.1)\\" + }, + { + "displayName": "Unspecified fetal and placental problem affecting management of mother (656.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Unspecified fetal and placental problem affecting management of mother (656.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Unspecified fetal and placental problem affecting management of mother (656.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\" + }, + { + "displayName": "(656.90) Unspecified fetal and placental problem, affecting management of mother, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Unspecified fetal and placental problem affecting management of mother (656.9)\\(656.90) Unspecified fetal and placental problem, affecting management of mother, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Unspecified fetal and placental problem affecting management of mother (656.9)\\" + }, + { + "displayName": "(656.91) Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Unspecified fetal and placental problem affecting management of mother (656.9)\\(656.91) Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other known or suspected fetal and placental problems affecting management of mother (656)\\\\Unspecified fetal and placental problem affecting management of mother (656.9)\\\\(656.91) Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Unspecified fetal and placental problem affecting management of mother (656.9)\\" + }, + { + "displayName": "(656.93) Unspecified fetal and placental problem, affecting management of mother, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Unspecified fetal and placental problem affecting management of mother (656.9)\\(656.93) Unspecified fetal and placental problem, affecting management of mother, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other known or suspected fetal and placental problems affecting management of mother (656)\\Unspecified fetal and placental problem affecting management of mother (656.9)\\" + }, + { + "displayName": "Other problems associated with amniotic cavity and membranes (658)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\" + }, + { + "displayName": "Delayed delivery after artificial rupture of membranes (658.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after artificial rupture of membranes (658.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Delayed delivery after artificial rupture of membranes (658.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\" + }, + { + "displayName": "(658.30) Delayed delivery after artificial rupture of membranes, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after artificial rupture of membranes (658.3)\\(658.30) Delayed delivery after artificial rupture of membranes, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after artificial rupture of membranes (658.3)\\" + }, + { + "displayName": "(658.31) Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after artificial rupture of membranes (658.3)\\(658.31) Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Delayed delivery after artificial rupture of membranes (658.3)\\\\(658.31) Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after artificial rupture of membranes (658.3)\\" + }, + { + "displayName": "(658.33) Delayed delivery after artificial rupture of membranes, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after artificial rupture of membranes (658.3)\\(658.33) Delayed delivery after artificial rupture of membranes, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Delayed delivery after artificial rupture of membranes (658.3)\\\\(658.33) Delayed delivery after artificial rupture of membranes, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after artificial rupture of membranes (658.3)\\" + }, + { + "displayName": "Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\" + }, + { + "displayName": "(658.20) Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\\(658.20) Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\\\\(658.20) Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\\" + }, + { + "displayName": "(658.21) Delayed delivery after spontaneous or unspecified rupture of membranes, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\\(658.21) Delayed delivery after spontaneous or unspecified rupture of membranes, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\\" + }, + { + "displayName": "(658.23) Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\\(658.23) Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\\\\(658.23) Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\\" + }, + { + "displayName": "Infection of amniotic cavity (658.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Infection of amniotic cavity (658.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Infection of amniotic cavity (658.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\" + }, + { + "displayName": "(658.40) Infection of amniotic cavity, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Infection of amniotic cavity (658.4)\\(658.40) Infection of amniotic cavity, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Infection of amniotic cavity (658.4)\\" + }, + { + "displayName": "(658.41) Infection of amniotic cavity, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Infection of amniotic cavity (658.4)\\(658.41) Infection of amniotic cavity, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Infection of amniotic cavity (658.4)\\\\(658.41) Infection of amniotic cavity, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Infection of amniotic cavity (658.4)\\" + }, + { + "displayName": "(658.43) Infection of amniotic cavity, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Infection of amniotic cavity (658.4)\\(658.43) Infection of amniotic cavity, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Infection of amniotic cavity (658.4)\\\\(658.43) Infection of amniotic cavity, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Infection of amniotic cavity (658.4)\\" + }, + { + "displayName": "Oligohydramnios (658.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Oligohydramnios (658.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Oligohydramnios (658.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\" + }, + { + "displayName": "(658.00) Oligohydramnios, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Oligohydramnios (658.0)\\(658.00) Oligohydramnios, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Oligohydramnios (658.0)\\" + }, + { + "displayName": "(658.01) Oligohydramnios, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Oligohydramnios (658.0)\\(658.01) Oligohydramnios, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Oligohydramnios (658.0)\\\\(658.01) Oligohydramnios, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Oligohydramnios (658.0)\\" + }, + { + "displayName": "(658.03) Oligohydramnios, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Oligohydramnios (658.0)\\(658.03) Oligohydramnios, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Oligohydramnios (658.0)\\\\(658.03) Oligohydramnios, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Oligohydramnios (658.0)\\" + }, + { + "displayName": "Other problems associated with amniotic cavity and membranes (658.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Other problems associated with amniotic cavity and membranes (658.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\" + }, + { + "displayName": "(658.80) Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Other problems associated with amniotic cavity and membranes (658.8)\\(658.80) Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Other problems associated with amniotic cavity and membranes (658.8)\\\\(658.80) Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Other problems associated with amniotic cavity and membranes (658.8)\\" + }, + { + "displayName": "(658.81) Other problems associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Other problems associated with amniotic cavity and membranes (658.8)\\(658.81) Other problems associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Other problems associated with amniotic cavity and membranes (658.8)\\" + }, + { + "displayName": "(658.83) Other problems associated with amniotic cavity and membranes, antepartum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Other problems associated with amniotic cavity and membranes (658.8)\\(658.83) Other problems associated with amniotic cavity and membranes, antepartum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Other problems associated with amniotic cavity and membranes (658.8)\\" + }, + { + "displayName": "Premature rupture of membranes (658.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Premature rupture of membranes (658.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Premature rupture of membranes (658.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\" + }, + { + "displayName": "(658.10) Premature rupture of membranes, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Premature rupture of membranes (658.1)\\(658.10) Premature rupture of membranes, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Premature rupture of membranes (658.1)\\\\(658.10) Premature rupture of membranes, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Premature rupture of membranes (658.1)\\" + }, + { + "displayName": "(658.11) Premature rupture of membranes, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Premature rupture of membranes (658.1)\\(658.11) Premature rupture of membranes, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Premature rupture of membranes (658.1)\\\\(658.11) Premature rupture of membranes, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Premature rupture of membranes (658.1)\\" + }, + { + "displayName": "(658.13) Premature rupture of membranes, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Premature rupture of membranes (658.1)\\(658.13) Premature rupture of membranes, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Premature rupture of membranes (658.1)\\" + }, + { + "displayName": "Unspecified problem associated with amniotic cavity and membranes (658.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Unspecified problem associated with amniotic cavity and membranes (658.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Unspecified problem associated with amniotic cavity and membranes (658.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\" + }, + { + "displayName": "(658.90) Unspecified problem associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Unspecified problem associated with amniotic cavity and membranes (658.9)\\(658.90) Unspecified problem associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Unspecified problem associated with amniotic cavity and membranes (658.9)\\" + }, + { + "displayName": "(658.91) Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Unspecified problem associated with amniotic cavity and membranes (658.9)\\(658.91) Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Other problems associated with amniotic cavity and membranes (658)\\\\Unspecified problem associated with amniotic cavity and membranes (658.9)\\\\(658.91) Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Unspecified problem associated with amniotic cavity and membranes (658.9)\\" + }, + { + "displayName": "(658.93) Unspecified problem associated with amniotic cavity and membranes, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Unspecified problem associated with amniotic cavity and membranes (658.9)\\(658.93) Unspecified problem associated with amniotic cavity and membranes, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Other problems associated with amniotic cavity and membranes (658)\\Unspecified problem associated with amniotic cavity and membranes (658.9)\\" + }, + { + "displayName": "Polyhydramnios (657)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Polyhydramnios (657)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Polyhydramnios (657)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\" + }, + { + "displayName": "Polyhydramnios (657.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Polyhydramnios (657)\\Polyhydramnios (657.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Polyhydramnios (657)\\" + }, + { + "displayName": "(657.00) Polyhydramnios, unspecified as to episode of care or not applicable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Polyhydramnios (657)\\Polyhydramnios (657.0)\\(657.00) Polyhydramnios, unspecified as to episode of care or not applicable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Polyhydramnios (657)\\\\Polyhydramnios (657.0)\\\\(657.00) Polyhydramnios, unspecified as to episode of care or not applicable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Polyhydramnios (657)\\Polyhydramnios (657.0)\\" + }, + { + "displayName": "(657.01) Polyhydramnios, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Polyhydramnios (657)\\Polyhydramnios (657.0)\\(657.01) Polyhydramnios, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Polyhydramnios (657)\\\\Polyhydramnios (657.0)\\\\(657.01) Polyhydramnios, delivered, with or without mention of antepartum condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Polyhydramnios (657)\\Polyhydramnios (657.0)\\" + }, + { + "displayName": "(657.03) Polyhydramnios, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Polyhydramnios (657)\\Polyhydramnios (657.0)\\(657.03) Polyhydramnios, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\\\Polyhydramnios (657)\\\\Polyhydramnios (657.0)\\\\(657.03) Polyhydramnios, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\\Polyhydramnios (657)\\Polyhydramnios (657.0)\\" + }, + { + "displayName": "Other maternal and fetal complications (678-679.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\" + }, + { + "displayName": "Other fetal conditions (678)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\Other fetal conditions (678)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other maternal and fetal complications (678-679.99)\\\\Other fetal conditions (678)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\" + }, + { + "displayName": "Fetal conjoined twins (678.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\Other fetal conditions (678)\\Fetal conjoined twins (678.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other maternal and fetal complications (678-679.99)\\\\Other fetal conditions (678)\\\\Fetal conjoined twins (678.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\Other fetal conditions (678)\\" + }, + { + "displayName": "(678.13) Fetal conjoined twins, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\Other fetal conditions (678)\\Fetal conjoined twins (678.1)\\(678.13) Fetal conjoined twins, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other maternal and fetal complications (678-679.99)\\\\Other fetal conditions (678)\\\\Fetal conjoined twins (678.1)\\\\(678.13) Fetal conjoined twins, antepartum condition or complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\Other fetal conditions (678)\\Fetal conjoined twins (678.1)\\" + }, + { + "displayName": "Fetal hematologic conditions (678.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\Other fetal conditions (678)\\Fetal hematologic conditions (678.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\Other fetal conditions (678)\\" + }, + { + "displayName": "(678.01) Fetal hematologic conditions, delivered, with or without mention of antepartum condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\Other fetal conditions (678)\\Fetal hematologic conditions (678.0)\\(678.01) Fetal hematologic conditions, delivered, with or without mention of antepartum condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\Other fetal conditions (678)\\Fetal hematologic conditions (678.0)\\" + }, + { + "displayName": "(678.03) Fetal hematologic conditions, antepartum condition or complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\Other fetal conditions (678)\\Fetal hematologic conditions (678.0)\\(678.03) Fetal hematologic conditions, antepartum condition or complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other maternal and fetal complications (678-679.99)\\Other fetal conditions (678)\\Fetal hematologic conditions (678.0)\\" + }, + { + "displayName": "Other pregnancy with abortive outcome (634-639.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\" + }, + { + "displayName": "Complications following abortion or ectopic and molar pregnancies (639)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\" + }, + { + "displayName": "(639.0) Genital tract and pelvic infection following abortion or ectopic and molar pregnancies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\(639.0) Genital tract and pelvic infection following abortion or ectopic and molar pregnancies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Complications following abortion or ectopic and molar pregnancies (639)\\\\(639.0) Genital tract and pelvic infection following abortion or ectopic and molar pregnancies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\" + }, + { + "displayName": "(639.1) Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\(639.1) Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Complications following abortion or ectopic and molar pregnancies (639)\\\\(639.1) Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\" + }, + { + "displayName": "(639.2) Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\(639.2) Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\" + }, + { + "displayName": "(639.3) Kidney failure following abortion and ectopic and molar pregnancies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\(639.3) Kidney failure following abortion and ectopic and molar pregnancies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Complications following abortion or ectopic and molar pregnancies (639)\\\\(639.3) Kidney failure following abortion and ectopic and molar pregnancies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\" + }, + { + "displayName": "(639.4) Metabolic disorders following abortion or ectopic and molar pregnancies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\(639.4) Metabolic disorders following abortion or ectopic and molar pregnancies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Complications following abortion or ectopic and molar pregnancies (639)\\\\(639.4) Metabolic disorders following abortion or ectopic and molar pregnancies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\" + }, + { + "displayName": "(639.5) Shock following abortion or ectopic and molar pregnancies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\(639.5) Shock following abortion or ectopic and molar pregnancies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Complications following abortion or ectopic and molar pregnancies (639)\\\\(639.5) Shock following abortion or ectopic and molar pregnancies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\" + }, + { + "displayName": "(639.6) Embolism following abortion or ectopic and molar pregnancies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\(639.6) Embolism following abortion or ectopic and molar pregnancies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Complications following abortion or ectopic and molar pregnancies (639)\\\\(639.6) Embolism following abortion or ectopic and molar pregnancies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\" + }, + { + "displayName": "(639.8) Other specified complications following abortion or ectopic and molar pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\(639.8) Other specified complications following abortion or ectopic and molar pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\" + }, + { + "displayName": "(639.9) Unspecified complication following abortion or ectopic and molar pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\(639.9) Unspecified complication following abortion or ectopic and molar pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Complications following abortion or ectopic and molar pregnancies (639)\\\\(639.9) Unspecified complication following abortion or ectopic and molar pregnancy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Complications following abortion or ectopic and molar pregnancies (639)\\" + }, + { + "displayName": "Failed attempted abortion (638)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Failed attempted abortion (638)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\" + }, + { + "displayName": "(638.0) Failed attempted abortion complicated by genital tract and pelvic infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\(638.0) Failed attempted abortion complicated by genital tract and pelvic infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\" + }, + { + "displayName": "(638.1) Failed attempted abortion complicated by delayed or excessive hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\(638.1) Failed attempted abortion complicated by delayed or excessive hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Failed attempted abortion (638)\\\\(638.1) Failed attempted abortion complicated by delayed or excessive hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\" + }, + { + "displayName": "(638.2) Failed attempted abortion complicated by damage to pelvic organs or tissues", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\(638.2) Failed attempted abortion complicated by damage to pelvic organs or tissues\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Failed attempted abortion (638)\\\\(638.2) Failed attempted abortion complicated by damage to pelvic organs or tissues\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\" + }, + { + "displayName": "(638.3) Failed attempted abortion complicated by renal failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\(638.3) Failed attempted abortion complicated by renal failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Failed attempted abortion (638)\\\\(638.3) Failed attempted abortion complicated by renal failure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\" + }, + { + "displayName": "(638.4) Failed attempted abortion complicated by metabolic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\(638.4) Failed attempted abortion complicated by metabolic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\" + }, + { + "displayName": "(638.5) Failed attempted abortion complicated by shock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\(638.5) Failed attempted abortion complicated by shock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Failed attempted abortion (638)\\\\(638.5) Failed attempted abortion complicated by shock\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\" + }, + { + "displayName": "(638.6) Failed attempted abortion complicated by embolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\(638.6) Failed attempted abortion complicated by embolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Failed attempted abortion (638)\\\\(638.6) Failed attempted abortion complicated by embolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\" + }, + { + "displayName": "(638.7) Failed attempted abortion with other specified complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\(638.7) Failed attempted abortion with other specified complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Failed attempted abortion (638)\\\\(638.7) Failed attempted abortion with other specified complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\" + }, + { + "displayName": "(638.8) Failed attempted abortion with unspecified complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\(638.8) Failed attempted abortion with unspecified complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Failed attempted abortion (638)\\\\(638.8) Failed attempted abortion with unspecified complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\" + }, + { + "displayName": "(638.9) Failed attempted abortion without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\(638.9) Failed attempted abortion without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Failed attempted abortion (638)\\" + }, + { + "displayName": "Illegally induced abortion (636)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\" + }, + { + "displayName": "Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\" + }, + { + "displayName": "(636.20) Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\\(636.20) Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\\\\(636.20) Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\\" + }, + { + "displayName": "(636.21) Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\\(636.21) Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\\" + }, + { + "displayName": "(636.22) Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\\(636.22) Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\\\\(636.22) Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\\" + }, + { + "displayName": "Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\" + }, + { + "displayName": "(636.10) Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\\(636.10) Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\\\\(636.10) Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\\" + }, + { + "displayName": "(636.11) Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\\(636.11) Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\\\\(636.11) Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\\" + }, + { + "displayName": "(636.12) Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\\(636.12) Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\\\\(636.12) Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\\" + }, + { + "displayName": "Illegally induced abortion complicated by embolism (636.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by embolism (636.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\" + }, + { + "displayName": "(636.60) Illegally induced abortion, complicated by embolism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by embolism (636.6)\\(636.60) Illegally induced abortion, complicated by embolism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion complicated by embolism (636.6)\\\\(636.60) Illegally induced abortion, complicated by embolism, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by embolism (636.6)\\" + }, + { + "displayName": "(636.61) Illegally induced abortion, complicated by embolism, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by embolism (636.6)\\(636.61) Illegally induced abortion, complicated by embolism, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion complicated by embolism (636.6)\\\\(636.61) Illegally induced abortion, complicated by embolism, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by embolism (636.6)\\" + }, + { + "displayName": "(636.62) Illegally induced abortion, complicated by embolism, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by embolism (636.6)\\(636.62) Illegally induced abortion, complicated by embolism, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by embolism (636.6)\\" + }, + { + "displayName": "Illegally induced abortion complicated by genital tract and pelvic infection (636.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\" + }, + { + "displayName": "(636.00) Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\\(636.00) Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\\" + }, + { + "displayName": "(636.01) Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\\(636.01) Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\\" + }, + { + "displayName": "(636.02) Illegally induced abortion, complicated by genital tract and pelvic infection, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\\(636.02) Illegally induced abortion, complicated by genital tract and pelvic infection, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\\" + }, + { + "displayName": "Illegally induced abortion complicated by metabolic disorder (636.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by metabolic disorder (636.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\" + }, + { + "displayName": "(636.40) Illegally induced abortion, complicated by metabolic disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by metabolic disorder (636.4)\\(636.40) Illegally induced abortion, complicated by metabolic disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by metabolic disorder (636.4)\\" + }, + { + "displayName": "(636.41) Illegally induced abortion, complicated by metabolic disorder, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by metabolic disorder (636.4)\\(636.41) Illegally induced abortion, complicated by metabolic disorder, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by metabolic disorder (636.4)\\" + }, + { + "displayName": "(636.42) Illegally induced abortion, complicated by metabolic disorder, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by metabolic disorder (636.4)\\(636.42) Illegally induced abortion, complicated by metabolic disorder, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by metabolic disorder (636.4)\\" + }, + { + "displayName": "Illegally induced abortion complicated by renal failure (636.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by renal failure (636.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\" + }, + { + "displayName": "(636.30) Illegally induced abortion, complicated by renal failure, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by renal failure (636.3)\\(636.30) Illegally induced abortion, complicated by renal failure, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by renal failure (636.3)\\" + }, + { + "displayName": "(636.31) Illegally induced abortion, complicated by renal failure, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by renal failure (636.3)\\(636.31) Illegally induced abortion, complicated by renal failure, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by renal failure (636.3)\\" + }, + { + "displayName": "(636.32) Illegally induced abortion, complicated by renal failure, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by renal failure (636.3)\\(636.32) Illegally induced abortion, complicated by renal failure, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by renal failure (636.3)\\" + }, + { + "displayName": "Illegally induced abortion complicated by shock (636.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by shock (636.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\" + }, + { + "displayName": "(636.50) Illegally induced abortion, complicated by shock, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by shock (636.5)\\(636.50) Illegally induced abortion, complicated by shock, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion complicated by shock (636.5)\\\\(636.50) Illegally induced abortion, complicated by shock, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by shock (636.5)\\" + }, + { + "displayName": "(636.51) Illegally induced abortion, complicated by shock, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by shock (636.5)\\(636.51) Illegally induced abortion, complicated by shock, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by shock (636.5)\\" + }, + { + "displayName": "(636.52) Illegally induced abortion, complicated by shock, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by shock (636.5)\\(636.52) Illegally induced abortion, complicated by shock, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion complicated by shock (636.5)\\\\(636.52) Illegally induced abortion, complicated by shock, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion complicated by shock (636.5)\\" + }, + { + "displayName": "Illegally induced abortion with other specified complications (636.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with other specified complications (636.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion with other specified complications (636.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\" + }, + { + "displayName": "(636.70) Illegally induced abortion, with other specified complications, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with other specified complications (636.7)\\(636.70) Illegally induced abortion, with other specified complications, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with other specified complications (636.7)\\" + }, + { + "displayName": "(636.71) Illegally induced abortion, with other specified complications, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with other specified complications (636.7)\\(636.71) Illegally induced abortion, with other specified complications, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with other specified complications (636.7)\\" + }, + { + "displayName": "(636.72) Illegally induced abortion, with other specified complications, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with other specified complications (636.7)\\(636.72) Illegally induced abortion, with other specified complications, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion with other specified complications (636.7)\\\\(636.72) Illegally induced abortion, with other specified complications, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with other specified complications (636.7)\\" + }, + { + "displayName": "Illegally induced abortion with unspecified complication (636.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with unspecified complication (636.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion with unspecified complication (636.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\" + }, + { + "displayName": "(636.80) Illegally induced abortion, with unspecified complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with unspecified complication (636.8)\\(636.80) Illegally induced abortion, with unspecified complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with unspecified complication (636.8)\\" + }, + { + "displayName": "(636.81) Illegally induced abortion, with unspecified complication, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with unspecified complication (636.8)\\(636.81) Illegally induced abortion, with unspecified complication, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion with unspecified complication (636.8)\\\\(636.81) Illegally induced abortion, with unspecified complication, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with unspecified complication (636.8)\\" + }, + { + "displayName": "(636.82) Illegally induced abortion, with unspecified complication, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with unspecified complication (636.8)\\(636.82) Illegally induced abortion, with unspecified complication, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion with unspecified complication (636.8)\\\\(636.82) Illegally induced abortion, with unspecified complication, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion with unspecified complication (636.8)\\" + }, + { + "displayName": "Illegally induced abortion without mention of complication (636.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion without mention of complication (636.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion without mention of complication (636.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\" + }, + { + "displayName": "(636.90) Illegally induced abortion, without mention of complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion without mention of complication (636.9)\\(636.90) Illegally induced abortion, without mention of complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion without mention of complication (636.9)\\" + }, + { + "displayName": "(636.91) Illegally induced abortion, without mention of complication, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion without mention of complication (636.9)\\(636.91) Illegally induced abortion, without mention of complication, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion without mention of complication (636.9)\\\\(636.91) Illegally induced abortion, without mention of complication, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion without mention of complication (636.9)\\" + }, + { + "displayName": "(636.92) Illegally induced abortion, without mention of complication, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion without mention of complication (636.9)\\(636.92) Illegally induced abortion, without mention of complication, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Illegally induced abortion (636)\\\\Illegally induced abortion without mention of complication (636.9)\\\\(636.92) Illegally induced abortion, without mention of complication, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Illegally induced abortion (636)\\Illegally induced abortion without mention of complication (636.9)\\" + }, + { + "displayName": "Legally induced abortion (635)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\" + }, + { + "displayName": "Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\" + }, + { + "displayName": "(635.20) Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\\(635.20) Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\\\\(635.20) Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\\" + }, + { + "displayName": "(635.21) Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\\(635.21) Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\\\\(635.21) Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\\" + }, + { + "displayName": "(635.22) Legally induced abortion, complicated by damage to pelvic organs or tissues, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\\(635.22) Legally induced abortion, complicated by damage to pelvic organs or tissues, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\\" + }, + { + "displayName": "Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\" + }, + { + "displayName": "(635.10) Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\\(635.10) Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\\" + }, + { + "displayName": "(635.11) Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\\(635.11) Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\\\\(635.11) Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\\" + }, + { + "displayName": "(635.12) Legally induced abortion, complicated by delayed or excessive hemorrhage, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\\(635.12) Legally induced abortion, complicated by delayed or excessive hemorrhage, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\\\\(635.12) Legally induced abortion, complicated by delayed or excessive hemorrhage, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\\" + }, + { + "displayName": "Legally induced abortion complicated by embolism (635.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by embolism (635.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\" + }, + { + "displayName": "(635.60) Legally induced abortion, complicated by embolism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by embolism (635.6)\\(635.60) Legally induced abortion, complicated by embolism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by embolism (635.6)\\\\(635.60) Legally induced abortion, complicated by embolism, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by embolism (635.6)\\" + }, + { + "displayName": "(635.61) Legally induced abortion, complicated by embolism, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by embolism (635.6)\\(635.61) Legally induced abortion, complicated by embolism, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by embolism (635.6)\\\\(635.61) Legally induced abortion, complicated by embolism, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by embolism (635.6)\\" + }, + { + "displayName": "(635.62) Legally induced abortion, complicated by embolism, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by embolism (635.6)\\(635.62) Legally induced abortion, complicated by embolism, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by embolism (635.6)\\" + }, + { + "displayName": "Legally induced abortion complicated by genital tract and pelvic infection (635.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\" + }, + { + "displayName": "(635.00) Legally induced abortion, complicated by genital tract and pelvic infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\\(635.00) Legally induced abortion, complicated by genital tract and pelvic infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\\" + }, + { + "displayName": "(635.01) Legally induced abortion, complicated by genital tract and pelvic infection, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\\(635.01) Legally induced abortion, complicated by genital tract and pelvic infection, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\\\\(635.01) Legally induced abortion, complicated by genital tract and pelvic infection, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\\" + }, + { + "displayName": "(635.02) Legally induced abortion, complicated by genital tract and pelvic infection, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\\(635.02) Legally induced abortion, complicated by genital tract and pelvic infection, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\\" + }, + { + "displayName": "Legally induced abortion complicated by metabolic disorder (635.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by metabolic disorder (635.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\" + }, + { + "displayName": "(635.40) Legally induced abortion, complicated by metabolic disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by metabolic disorder (635.4)\\(635.40) Legally induced abortion, complicated by metabolic disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by metabolic disorder (635.4)\\" + }, + { + "displayName": "(635.41) Legally induced abortion, complicated by metabolic disorder, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by metabolic disorder (635.4)\\(635.41) Legally induced abortion, complicated by metabolic disorder, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by metabolic disorder (635.4)\\" + }, + { + "displayName": "(635.42) Legally induced abortion, complicated by metabolic disorder, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by metabolic disorder (635.4)\\(635.42) Legally induced abortion, complicated by metabolic disorder, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by metabolic disorder (635.4)\\" + }, + { + "displayName": "Legally induced abortion complicated by renal failure (635.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by renal failure (635.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\" + }, + { + "displayName": "(635.30) Legally induced abortion, complicated by renal failure,unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by renal failure (635.3)\\(635.30) Legally induced abortion, complicated by renal failure,unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by renal failure (635.3)\\" + }, + { + "displayName": "(635.31) Legally induced abortion, complicated by renal failure, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by renal failure (635.3)\\(635.31) Legally induced abortion, complicated by renal failure, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by renal failure (635.3)\\" + }, + { + "displayName": "(635.32) Legally induced abortion, complicated by renal failure, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by renal failure (635.3)\\(635.32) Legally induced abortion, complicated by renal failure, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by renal failure (635.3)\\\\(635.32) Legally induced abortion, complicated by renal failure, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by renal failure (635.3)\\" + }, + { + "displayName": "Legally induced abortion complicated by shock (635.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by shock (635.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by shock (635.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\" + }, + { + "displayName": "(635.50) Legally induced abortion, complicated by shock, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by shock (635.5)\\(635.50) Legally induced abortion, complicated by shock, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by shock (635.5)\\\\(635.50) Legally induced abortion, complicated by shock, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by shock (635.5)\\" + }, + { + "displayName": "(635.51) Legally induced abortion, complicated by shock, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by shock (635.5)\\(635.51) Legally induced abortion, complicated by shock, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by shock (635.5)\\\\(635.51) Legally induced abortion, complicated by shock, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by shock (635.5)\\" + }, + { + "displayName": "(635.52) Legally induced abortion, complicated by shock, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by shock (635.5)\\(635.52) Legally induced abortion, complicated by shock, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion complicated by shock (635.5)\\\\(635.52) Legally induced abortion, complicated by shock, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion complicated by shock (635.5)\\" + }, + { + "displayName": "Legally induced abortion with other specified complications (635.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with other specified complications (635.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\" + }, + { + "displayName": "(635.70) Legally induced abortion, with other specified complications, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with other specified complications (635.7)\\(635.70) Legally induced abortion, with other specified complications, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion with other specified complications (635.7)\\\\(635.70) Legally induced abortion, with other specified complications, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with other specified complications (635.7)\\" + }, + { + "displayName": "(635.71) Legally induced abortion, with other specified complications, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with other specified complications (635.7)\\(635.71) Legally induced abortion, with other specified complications, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion with other specified complications (635.7)\\\\(635.71) Legally induced abortion, with other specified complications, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with other specified complications (635.7)\\" + }, + { + "displayName": "(635.72) Legally induced abortion, with other specified complications, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with other specified complications (635.7)\\(635.72) Legally induced abortion, with other specified complications, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion with other specified complications (635.7)\\\\(635.72) Legally induced abortion, with other specified complications, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with other specified complications (635.7)\\" + }, + { + "displayName": "Legally induced abortion with unspecified complication (635.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with unspecified complication (635.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\" + }, + { + "displayName": "(635.80) Legally induced abortion, with unspecified complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with unspecified complication (635.8)\\(635.80) Legally induced abortion, with unspecified complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion with unspecified complication (635.8)\\\\(635.80) Legally induced abortion, with unspecified complication, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with unspecified complication (635.8)\\" + }, + { + "displayName": "(635.81) Legally induced abortion, with unspecified complication, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with unspecified complication (635.8)\\(635.81) Legally induced abortion, with unspecified complication, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion with unspecified complication (635.8)\\\\(635.81) Legally induced abortion, with unspecified complication, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with unspecified complication (635.8)\\" + }, + { + "displayName": "(635.82) Legally induced abortion, with unspecified complication, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with unspecified complication (635.8)\\(635.82) Legally induced abortion, with unspecified complication, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion with unspecified complication (635.8)\\" + }, + { + "displayName": "Legally induced abortion without mention of complication (635.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion without mention of complication (635.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion without mention of complication (635.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\" + }, + { + "displayName": "(635.90) Legally induced abortion, without mention of complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion without mention of complication (635.9)\\(635.90) Legally induced abortion, without mention of complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion without mention of complication (635.9)\\\\(635.90) Legally induced abortion, without mention of complication, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion without mention of complication (635.9)\\" + }, + { + "displayName": "(635.91) Legally induced abortion, without mention of complication, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion without mention of complication (635.9)\\(635.91) Legally induced abortion, without mention of complication, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion without mention of complication (635.9)\\" + }, + { + "displayName": "(635.92) Legally induced abortion, without mention of complication, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion without mention of complication (635.9)\\(635.92) Legally induced abortion, without mention of complication, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Legally induced abortion (635)\\\\Legally induced abortion without mention of complication (635.9)\\\\(635.92) Legally induced abortion, without mention of complication, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Legally induced abortion (635)\\Legally induced abortion without mention of complication (635.9)\\" + }, + { + "displayName": "Spontaneous abortion (634)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\" + }, + { + "displayName": "Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\" + }, + { + "displayName": "(634.20) Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\\(634.20) Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\\" + }, + { + "displayName": "(634.21) Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\\(634.21) Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\\" + }, + { + "displayName": "(634.22) Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\\(634.22) Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\\" + }, + { + "displayName": "Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\" + }, + { + "displayName": "(634.10) Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\\(634.10) Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\\" + }, + { + "displayName": "(634.11) Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\\(634.11) Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\\" + }, + { + "displayName": "(634.12) Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\\(634.12) Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\\\\(634.12) Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\\" + }, + { + "displayName": "Spontaneous abortion complicated by embolism (634.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by embolism (634.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion complicated by embolism (634.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\" + }, + { + "displayName": "(634.60) Spontaneous abortion, complicated by embolism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by embolism (634.6)\\(634.60) Spontaneous abortion, complicated by embolism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by embolism (634.6)\\" + }, + { + "displayName": "(634.61) Spontaneous abortion, complicated by embolism, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by embolism (634.6)\\(634.61) Spontaneous abortion, complicated by embolism, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion complicated by embolism (634.6)\\\\(634.61) Spontaneous abortion, complicated by embolism, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by embolism (634.6)\\" + }, + { + "displayName": "(634.62) Spontaneous abortion, complicated by embolism, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by embolism (634.6)\\(634.62) Spontaneous abortion, complicated by embolism, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion complicated by embolism (634.6)\\\\(634.62) Spontaneous abortion, complicated by embolism, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by embolism (634.6)\\" + }, + { + "displayName": "Spontaneous abortion complicated by genital tract and pelvic infection (634.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\" + }, + { + "displayName": "(634.00) Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\\(634.00) Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\\\\(634.00) Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\\" + }, + { + "displayName": "(634.01) Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\\(634.01) Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\\" + }, + { + "displayName": "(634.02) Spontaneous abortion, complicated by genital tract and pelvic infection, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\\(634.02) Spontaneous abortion, complicated by genital tract and pelvic infection, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\\" + }, + { + "displayName": "Spontaneous abortion complicated by metabolic disorder (634.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by metabolic disorder (634.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\" + }, + { + "displayName": "(634.40) Spontaneous abortion, complicated by metabolic disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by metabolic disorder (634.4)\\(634.40) Spontaneous abortion, complicated by metabolic disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by metabolic disorder (634.4)\\" + }, + { + "displayName": "(634.41) Spontaneous abortion, complicated by metabolic disorder, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by metabolic disorder (634.4)\\(634.41) Spontaneous abortion, complicated by metabolic disorder, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion complicated by metabolic disorder (634.4)\\\\(634.41) Spontaneous abortion, complicated by metabolic disorder, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by metabolic disorder (634.4)\\" + }, + { + "displayName": "(634.42) Spontaneous abortion, complicated by metabolic disorder, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by metabolic disorder (634.4)\\(634.42) Spontaneous abortion, complicated by metabolic disorder, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion complicated by metabolic disorder (634.4)\\\\(634.42) Spontaneous abortion, complicated by metabolic disorder, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by metabolic disorder (634.4)\\" + }, + { + "displayName": "Spontaneous abortion complicated by renal failure (634.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by renal failure (634.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion complicated by renal failure (634.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\" + }, + { + "displayName": "(634.30) Spontaneous abortion, complicated by renal failure, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by renal failure (634.3)\\(634.30) Spontaneous abortion, complicated by renal failure, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion complicated by renal failure (634.3)\\\\(634.30) Spontaneous abortion, complicated by renal failure, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by renal failure (634.3)\\" + }, + { + "displayName": "(634.31) Spontaneous abortion, complicated by renal failure, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by renal failure (634.3)\\(634.31) Spontaneous abortion, complicated by renal failure, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by renal failure (634.3)\\" + }, + { + "displayName": "(634.32) Spontaneous abortion, complicated by renal failure, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by renal failure (634.3)\\(634.32) Spontaneous abortion, complicated by renal failure, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by renal failure (634.3)\\" + }, + { + "displayName": "Spontaneous abortion complicated by shock (634.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by shock (634.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\" + }, + { + "displayName": "(634.50) Spontaneous abortion, complicated by shock, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by shock (634.5)\\(634.50) Spontaneous abortion, complicated by shock, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by shock (634.5)\\" + }, + { + "displayName": "(634.51) Spontaneous abortion, complicated by shock, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by shock (634.5)\\(634.51) Spontaneous abortion, complicated by shock, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by shock (634.5)\\" + }, + { + "displayName": "(634.52) Spontaneous abortion, complicated by shock, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by shock (634.5)\\(634.52) Spontaneous abortion, complicated by shock, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion complicated by shock (634.5)\\" + }, + { + "displayName": "Spontaneous abortion with other specified complications (634.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with other specified complications (634.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion with other specified complications (634.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\" + }, + { + "displayName": "(634.70) Spontaneous abortion, with other specified complications, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with other specified complications (634.7)\\(634.70) Spontaneous abortion, with other specified complications, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion with other specified complications (634.7)\\\\(634.70) Spontaneous abortion, with other specified complications, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with other specified complications (634.7)\\" + }, + { + "displayName": "(634.71) Spontaneous abortion, with other specified complications, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with other specified complications (634.7)\\(634.71) Spontaneous abortion, with other specified complications, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion with other specified complications (634.7)\\\\(634.71) Spontaneous abortion, with other specified complications, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with other specified complications (634.7)\\" + }, + { + "displayName": "(634.72) Spontaneous abortion, with other specified complications, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with other specified complications (634.7)\\(634.72) Spontaneous abortion, with other specified complications, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion with other specified complications (634.7)\\\\(634.72) Spontaneous abortion, with other specified complications, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with other specified complications (634.7)\\" + }, + { + "displayName": "Spontaneous abortion with unspecified complication (634.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with unspecified complication (634.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\" + }, + { + "displayName": "(634.80) Spontaneous abortion, with unspecified complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with unspecified complication (634.8)\\(634.80) Spontaneous abortion, with unspecified complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with unspecified complication (634.8)\\" + }, + { + "displayName": "(634.81) Spontaneous abortion, with unspecified complication, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with unspecified complication (634.8)\\(634.81) Spontaneous abortion, with unspecified complication, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with unspecified complication (634.8)\\" + }, + { + "displayName": "(634.82) Spontaneous abortion, with unspecified complication, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with unspecified complication (634.8)\\(634.82) Spontaneous abortion, with unspecified complication, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion with unspecified complication (634.8)\\" + }, + { + "displayName": "Spontaneous abortion without mention of complication (634.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion without mention of complication (634.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\" + }, + { + "displayName": "(634.90) Spontaneous abortion, without mention of complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion without mention of complication (634.9)\\(634.90) Spontaneous abortion, without mention of complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion without mention of complication (634.9)\\\\(634.90) Spontaneous abortion, without mention of complication, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion without mention of complication (634.9)\\" + }, + { + "displayName": "(634.91) Spontaneous abortion, without mention of complication, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion without mention of complication (634.9)\\(634.91) Spontaneous abortion, without mention of complication, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion without mention of complication (634.9)\\\\(634.91) Spontaneous abortion, without mention of complication, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion without mention of complication (634.9)\\" + }, + { + "displayName": "(634.92) Spontaneous abortion, without mention of complication, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion without mention of complication (634.9)\\(634.92) Spontaneous abortion, without mention of complication, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Spontaneous abortion (634)\\\\Spontaneous abortion without mention of complication (634.9)\\\\(634.92) Spontaneous abortion, without mention of complication, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Spontaneous abortion (634)\\Spontaneous abortion without mention of complication (634.9)\\" + }, + { + "displayName": "Unspecified abortion (637)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Unspecified abortion (637)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\" + }, + { + "displayName": "Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Unspecified abortion (637)\\\\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\" + }, + { + "displayName": "(637.20) Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\\(637.20) Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\\" + }, + { + "displayName": "(637.21) Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\\(637.21) Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\\" + }, + { + "displayName": "(637.22) Unspecified abortion, complicated by damage to pelvic organs or tissues, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\\(637.22) Unspecified abortion, complicated by damage to pelvic organs or tissues, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\\" + }, + { + "displayName": "Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\" + }, + { + "displayName": "(637.10) Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\\(637.10) Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\\" + }, + { + "displayName": "(637.11) Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\\(637.11) Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\\" + }, + { + "displayName": "(637.12) Unspecified abortion, complicated by delayed or excessive hemorrhage, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\\(637.12) Unspecified abortion, complicated by delayed or excessive hemorrhage, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\\" + }, + { + "displayName": "Unspecified abortion complicated by embolism (637.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by embolism (637.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Unspecified abortion (637)\\\\Unspecified abortion complicated by embolism (637.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\" + }, + { + "displayName": "(637.60) Unspecified abortion, complicated by embolism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by embolism (637.6)\\(637.60) Unspecified abortion, complicated by embolism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Unspecified abortion (637)\\\\Unspecified abortion complicated by embolism (637.6)\\\\(637.60) Unspecified abortion, complicated by embolism, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by embolism (637.6)\\" + }, + { + "displayName": "(637.61) Unspecified abortion, complicated by embolism, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by embolism (637.6)\\(637.61) Unspecified abortion, complicated by embolism, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Unspecified abortion (637)\\\\Unspecified abortion complicated by embolism (637.6)\\\\(637.61) Unspecified abortion, complicated by embolism, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by embolism (637.6)\\" + }, + { + "displayName": "(637.62) Unspecified abortion, complicated by embolism, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by embolism (637.6)\\(637.62) Unspecified abortion, complicated by embolism, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by embolism (637.6)\\" + }, + { + "displayName": "Unspecified abortion complicated by genital tract and pelvic infection (637.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\" + }, + { + "displayName": "(637.00) Unspecified abortion, complicated by genital tract and pelvic infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\\(637.00) Unspecified abortion, complicated by genital tract and pelvic infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\\" + }, + { + "displayName": "(637.01) Unspecified abortion, complicated by genital tract and pelvic infection, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\\(637.01) Unspecified abortion, complicated by genital tract and pelvic infection, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\\" + }, + { + "displayName": "(637.02) Unspecified abortion, complicated by genital tract and pelvic infection, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\\(637.02) Unspecified abortion, complicated by genital tract and pelvic infection, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\\" + }, + { + "displayName": "Unspecified abortion complicated by metabolic disorder (637.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by metabolic disorder (637.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\" + }, + { + "displayName": "(637.40) Unspecified abortion, complicated by metabolic disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by metabolic disorder (637.4)\\(637.40) Unspecified abortion, complicated by metabolic disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by metabolic disorder (637.4)\\" + }, + { + "displayName": "(637.41) Unspecified abortion, complicated by metabolic disorder, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by metabolic disorder (637.4)\\(637.41) Unspecified abortion, complicated by metabolic disorder, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by metabolic disorder (637.4)\\" + }, + { + "displayName": "(637.42) Unspecified abortion, complicated by metabolic disorder, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by metabolic disorder (637.4)\\(637.42) Unspecified abortion, complicated by metabolic disorder, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by metabolic disorder (637.4)\\" + }, + { + "displayName": "Unspecified abortion complicated by renal failure (637.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by renal failure (637.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\" + }, + { + "displayName": "(637.30) Unspecified abortion, complicated by renal failure, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by renal failure (637.3)\\(637.30) Unspecified abortion, complicated by renal failure, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by renal failure (637.3)\\" + }, + { + "displayName": "(637.31) Unspecified abortion, complicated by renal failure, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by renal failure (637.3)\\(637.31) Unspecified abortion, complicated by renal failure, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by renal failure (637.3)\\" + }, + { + "displayName": "(637.32) Unspecified abortion, complicated by renal failure, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by renal failure (637.3)\\(637.32) Unspecified abortion, complicated by renal failure, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by renal failure (637.3)\\" + }, + { + "displayName": "Unspecified abortion complicated by shock (637.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by shock (637.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\" + }, + { + "displayName": "(637.50) Unspecified abortion, complicated by shock, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by shock (637.5)\\(637.50) Unspecified abortion, complicated by shock, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by shock (637.5)\\" + }, + { + "displayName": "(637.51) Unspecified abortion, complicated by shock, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by shock (637.5)\\(637.51) Unspecified abortion, complicated by shock, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by shock (637.5)\\" + }, + { + "displayName": "(637.52) Unspecified abortion, complicated by shock, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by shock (637.5)\\(637.52) Unspecified abortion, complicated by shock, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion complicated by shock (637.5)\\" + }, + { + "displayName": "Unspecified abortion with other specified complications (637.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with other specified complications (637.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\" + }, + { + "displayName": "(637.70) Unspecified abortion, with other specified complications, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with other specified complications (637.7)\\(637.70) Unspecified abortion, with other specified complications, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with other specified complications (637.7)\\" + }, + { + "displayName": "(637.71) Unspecified abortion, with other specified complications, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with other specified complications (637.7)\\(637.71) Unspecified abortion, with other specified complications, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with other specified complications (637.7)\\" + }, + { + "displayName": "(637.72) Unspecified abortion, with other specified complications, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with other specified complications (637.7)\\(637.72) Unspecified abortion, with other specified complications, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with other specified complications (637.7)\\" + }, + { + "displayName": "Unspecified abortion with unspecified complication (637.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with unspecified complication (637.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\" + }, + { + "displayName": "(637.80) Unspecified abortion, with unspecified complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with unspecified complication (637.8)\\(637.80) Unspecified abortion, with unspecified complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with unspecified complication (637.8)\\" + }, + { + "displayName": "(637.81) Unspecified abortion, with unspecified complication, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with unspecified complication (637.8)\\(637.81) Unspecified abortion, with unspecified complication, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with unspecified complication (637.8)\\" + }, + { + "displayName": "(637.82) Unspecified abortion, with unspecified complication, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with unspecified complication (637.8)\\(637.82) Unspecified abortion, with unspecified complication, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion with unspecified complication (637.8)\\" + }, + { + "displayName": "Unspecified abortion without mention of complication (637.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion without mention of complication (637.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Unspecified abortion (637)\\\\Unspecified abortion without mention of complication (637.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\" + }, + { + "displayName": "(637.90) Unspecified abortion, without mention of complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion without mention of complication (637.9)\\(637.90) Unspecified abortion, without mention of complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion without mention of complication (637.9)\\" + }, + { + "displayName": "(637.91) Unspecified abortion, without mention of complication, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion without mention of complication (637.9)\\(637.91) Unspecified abortion, without mention of complication, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion without mention of complication (637.9)\\" + }, + { + "displayName": "(637.92) Unspecified abortion, without mention of complication, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion without mention of complication (637.9)\\(637.92) Unspecified abortion, without mention of complication, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\Other pregnancy with abortive outcome (634-639.99)\\\\Unspecified abortion (637)\\\\Unspecified abortion without mention of complication (637.9)\\\\(637.92) Unspecified abortion, without mention of complication, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\Other pregnancy with abortive outcome (634-639.99)\\Unspecified abortion (637)\\Unspecified abortion without mention of complication (637.9)\\" + }, + { + "displayName": "Congenital anomalies (740-759.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Anencephalus and similar anomalies (740)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Anencephalus and similar anomalies (740)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(740.0) Anencephalus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.0) Anencephalus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\" + }, + { + "displayName": "(740.1) Craniorachischisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.1) Craniorachischisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\" + }, + { + "displayName": "(740.2) Iniencephaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\(740.2) Iniencephaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anencephalus and similar anomalies (740)\\" + }, + { + "displayName": "Anomalies of respiratory system, congenital (748)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(748.0) Choanal atresia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\(748.0) Choanal atresia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\" + }, + { + "displayName": "(748.1) Other anomalies of nose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\(748.1) Other anomalies of nose\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\" + }, + { + "displayName": "(748.2) Web of larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\(748.2) Web of larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\" + }, + { + "displayName": "(748.3) Other anomalies of larynx, trachea, and bronchus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\(748.3) Other anomalies of larynx, trachea, and bronchus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\" + }, + { + "displayName": "(748.4) Congenital cystic lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\(748.4) Congenital cystic lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\" + }, + { + "displayName": "(748.5) Agenesis, hypoplasia, and dysplasia of lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\(748.5) Agenesis, hypoplasia, and dysplasia of lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\" + }, + { + "displayName": "(748.8) Other specified anomalies of respiratory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\(748.8) Other specified anomalies of respiratory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Anomalies of respiratory system, congenital (748)\\\\(748.8) Other specified anomalies of respiratory system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\" + }, + { + "displayName": "(748.9) Unspecified anomaly of respiratory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\(748.9) Unspecified anomaly of respiratory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Anomalies of respiratory system, congenital (748)\\\\(748.9) Unspecified anomaly of respiratory system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\" + }, + { + "displayName": "Congenital other anomalies of lung (748.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\Congenital other anomalies of lung (748.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\" + }, + { + "displayName": "(748.60) Anomaly of lung, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\Congenital other anomalies of lung (748.6)\\(748.60) Anomaly of lung, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Anomalies of respiratory system, congenital (748)\\\\Congenital other anomalies of lung (748.6)\\\\(748.60) Anomaly of lung, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\Congenital other anomalies of lung (748.6)\\" + }, + { + "displayName": "(748.61) Congenital bronchiectasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\Congenital other anomalies of lung (748.6)\\(748.61) Congenital bronchiectasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\Congenital other anomalies of lung (748.6)\\" + }, + { + "displayName": "(748.69) Other congenital anomalies of lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\Congenital other anomalies of lung (748.6)\\(748.69) Other congenital anomalies of lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Anomalies of respiratory system, congenital (748)\\\\Congenital other anomalies of lung (748.6)\\\\(748.69) Other congenital anomalies of lung\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Anomalies of respiratory system, congenital (748)\\Congenital other anomalies of lung (748.6)\\" + }, + { + "displayName": "Bulbus cordis anomalies and anomalies of cardiac septal closure (745)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(745.0) Common truncus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\(745.0) Common truncus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\\\(745.0) Common truncus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\" + }, + { + "displayName": "(745.2) Tetralogy of fallot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\(745.2) Tetralogy of fallot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\" + }, + { + "displayName": "(745.3) Common ventricle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\(745.3) Common ventricle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\\\(745.3) Common ventricle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\" + }, + { + "displayName": "(745.4) Ventricular septal defect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\(745.4) Ventricular septal defect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\" + }, + { + "displayName": "(745.5) Ostium secundum type atrial septal defect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\(745.5) Ostium secundum type atrial septal defect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\\\(745.5) Ostium secundum type atrial septal defect\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\" + }, + { + "displayName": "(745.7) Cor biloculare", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\(745.7) Cor biloculare\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\" + }, + { + "displayName": "(745.8) Other bulbus cordis anomalies and anomalies of cardiac septal closure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\(745.8) Other bulbus cordis anomalies and anomalies of cardiac septal closure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\\\(745.8) Other bulbus cordis anomalies and anomalies of cardiac septal closure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\" + }, + { + "displayName": "(745.9) Unspecified defect of septal closure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\(745.9) Unspecified defect of septal closure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\\\(745.9) Unspecified defect of septal closure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\" + }, + { + "displayName": "Endocardial cushion defects (745.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Endocardial cushion defects (745.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\\\Endocardial cushion defects (745.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\" + }, + { + "displayName": "(745.60) Endocardial cushion defect, unspecified type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Endocardial cushion defects (745.6)\\(745.60) Endocardial cushion defect, unspecified type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\\\Endocardial cushion defects (745.6)\\\\(745.60) Endocardial cushion defect, unspecified type\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Endocardial cushion defects (745.6)\\" + }, + { + "displayName": "(745.61) Ostium primum defect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Endocardial cushion defects (745.6)\\(745.61) Ostium primum defect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\\\Endocardial cushion defects (745.6)\\\\(745.61) Ostium primum defect\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Endocardial cushion defects (745.6)\\" + }, + { + "displayName": "(745.69) Other endocardial cushion defects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Endocardial cushion defects (745.6)\\(745.69) Other endocardial cushion defects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Endocardial cushion defects (745.6)\\" + }, + { + "displayName": "Transposition of great vessels (745.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Transposition of great vessels (745.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\" + }, + { + "displayName": "(745.10) Complete transposition of great vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Transposition of great vessels (745.1)\\(745.10) Complete transposition of great vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Transposition of great vessels (745.1)\\" + }, + { + "displayName": "(745.11) Double outlet right ventricle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Transposition of great vessels (745.1)\\(745.11) Double outlet right ventricle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Transposition of great vessels (745.1)\\" + }, + { + "displayName": "(745.12) Corrected transposition of great vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Transposition of great vessels (745.1)\\(745.12) Corrected transposition of great vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Transposition of great vessels (745.1)\\" + }, + { + "displayName": "(745.19) Other transposition of great vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Transposition of great vessels (745.1)\\(745.19) Other transposition of great vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\\Transposition of great vessels (745.1)\\" + }, + { + "displayName": "Certain congenital musculoskeletal deformities (754)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(754.0) Congenital musculoskeletal deformities of skull, face, and jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\" + }, + { + "displayName": "(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\" + }, + { + "displayName": "(754.2) Congenital musculoskeletal deformities of spine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\(754.2) Congenital musculoskeletal deformities of spine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\" + }, + { + "displayName": "Congenital dislocation of hip (754.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital dislocation of hip (754.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\" + }, + { + "displayName": "(754.30) Congenital dislocation of hip, unilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital dislocation of hip (754.3)\\(754.30) Congenital dislocation of hip, unilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Certain congenital musculoskeletal deformities (754)\\\\Congenital dislocation of hip (754.3)\\\\(754.30) Congenital dislocation of hip, unilateral\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital dislocation of hip (754.3)\\" + }, + { + "displayName": "(754.31) Congenital dislocation of hip, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital dislocation of hip (754.3)\\(754.31) Congenital dislocation of hip, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital dislocation of hip (754.3)\\" + }, + { + "displayName": "(754.32) Congenital subluxation of hip, unilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital dislocation of hip (754.3)\\(754.32) Congenital subluxation of hip, unilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital dislocation of hip (754.3)\\" + }, + { + "displayName": "(754.33) Congenital subluxation of hip, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital dislocation of hip (754.3)\\(754.33) Congenital subluxation of hip, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital dislocation of hip (754.3)\\" + }, + { + "displayName": "(754.35) Congenital dislocation of one hip with subluxation of other hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital dislocation of hip (754.3)\\(754.35) Congenital dislocation of one hip with subluxation of other hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital dislocation of hip (754.3)\\" + }, + { + "displayName": "Congenital genu recurvatum and bowing of long bones of leg (754.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Certain congenital musculoskeletal deformities (754)\\\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\" + }, + { + "displayName": "(754.40) Genu recurvatum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\(754.40) Genu recurvatum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\" + }, + { + "displayName": "(754.41) Congenital dislocation of knee (with genu recurvatum)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\(754.41) Congenital dislocation of knee (with genu recurvatum)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Certain congenital musculoskeletal deformities (754)\\\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\\\(754.41) Congenital dislocation of knee (with genu recurvatum)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\" + }, + { + "displayName": "(754.42) Congenital bowing of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\(754.42) Congenital bowing of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\" + }, + { + "displayName": "(754.43) Congenital bowing of tibia and fibula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\(754.43) Congenital bowing of tibia and fibula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Certain congenital musculoskeletal deformities (754)\\\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\\\(754.43) Congenital bowing of tibia and fibula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\" + }, + { + "displayName": "(754.44) Congenital bowing of unspecified long bones of leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\(754.44) Congenital bowing of unspecified long bones of leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Congenital genu recurvatum and bowing of long bones of leg (754.4)\\" + }, + { + "displayName": "Other congenital deformities of feet (754.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other congenital deformities of feet (754.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\" + }, + { + "displayName": "(754.70) Talipes, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other congenital deformities of feet (754.7)\\(754.70) Talipes, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other congenital deformities of feet (754.7)\\" + }, + { + "displayName": "(754.71) Talipes cavus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other congenital deformities of feet (754.7)\\(754.71) Talipes cavus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other congenital deformities of feet (754.7)\\" + }, + { + "displayName": "(754.79) Other deformities of feet", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other congenital deformities of feet (754.7)\\(754.79) Other deformities of feet\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other congenital deformities of feet (754.7)\\" + }, + { + "displayName": "Other specified nonteratogenic anomalies (754.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other specified nonteratogenic anomalies (754.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\" + }, + { + "displayName": "(754.81) Pectus excavatum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other specified nonteratogenic anomalies (754.8)\\(754.81) Pectus excavatum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other specified nonteratogenic anomalies (754.8)\\" + }, + { + "displayName": "(754.82) Pectus carinatum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other specified nonteratogenic anomalies (754.8)\\(754.82) Pectus carinatum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other specified nonteratogenic anomalies (754.8)\\" + }, + { + "displayName": "(754.89) Other specified nonteratogenic anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other specified nonteratogenic anomalies (754.8)\\(754.89) Other specified nonteratogenic anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Other specified nonteratogenic anomalies (754.8)\\" + }, + { + "displayName": "Valgus deformities of feet, congenital (754.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Valgus deformities of feet, congenital (754.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\" + }, + { + "displayName": "(754.60) Talipes valgus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Valgus deformities of feet, congenital (754.6)\\(754.60) Talipes valgus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Valgus deformities of feet, congenital (754.6)\\" + }, + { + "displayName": "(754.61) Congenital pes planus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Valgus deformities of feet, congenital (754.6)\\(754.61) Congenital pes planus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Certain congenital musculoskeletal deformities (754)\\\\Valgus deformities of feet, congenital (754.6)\\\\(754.61) Congenital pes planus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Valgus deformities of feet, congenital (754.6)\\" + }, + { + "displayName": "(754.62) Talipes calcaneovalgus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Valgus deformities of feet, congenital (754.6)\\(754.62) Talipes calcaneovalgus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Valgus deformities of feet, congenital (754.6)\\" + }, + { + "displayName": "(754.69) Other valgus deformities of feet", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Valgus deformities of feet, congenital (754.6)\\(754.69) Other valgus deformities of feet\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Certain congenital musculoskeletal deformities (754)\\\\Valgus deformities of feet, congenital (754.6)\\\\(754.69) Other valgus deformities of feet\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Valgus deformities of feet, congenital (754.6)\\" + }, + { + "displayName": "Varus deformities of feet, congenital (754.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Varus deformities of feet, congenital (754.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\" + }, + { + "displayName": "(754.50) Talipes varus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Varus deformities of feet, congenital (754.5)\\(754.50) Talipes varus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Certain congenital musculoskeletal deformities (754)\\\\Varus deformities of feet, congenital (754.5)\\\\(754.50) Talipes varus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Varus deformities of feet, congenital (754.5)\\" + }, + { + "displayName": "(754.51) Talipes equinovarus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Varus deformities of feet, congenital (754.5)\\(754.51) Talipes equinovarus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Varus deformities of feet, congenital (754.5)\\" + }, + { + "displayName": "(754.52) Metatarsus primus varus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Varus deformities of feet, congenital (754.5)\\(754.52) Metatarsus primus varus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Certain congenital musculoskeletal deformities (754)\\\\Varus deformities of feet, congenital (754.5)\\\\(754.52) Metatarsus primus varus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Varus deformities of feet, congenital (754.5)\\" + }, + { + "displayName": "(754.53) Metatarsus varus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Varus deformities of feet, congenital (754.5)\\(754.53) Metatarsus varus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Certain congenital musculoskeletal deformities (754)\\\\Varus deformities of feet, congenital (754.5)\\\\(754.53) Metatarsus varus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Varus deformities of feet, congenital (754.5)\\" + }, + { + "displayName": "(754.59) Other varus deformities of feet", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Varus deformities of feet, congenital (754.5)\\(754.59) Other varus deformities of feet\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Certain congenital musculoskeletal deformities (754)\\\\Varus deformities of feet, congenital (754.5)\\\\(754.59) Other varus deformities of feet\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Certain congenital musculoskeletal deformities (754)\\Varus deformities of feet, congenital (754.5)\\" + }, + { + "displayName": "Chromosomal anomalies (758)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Chromosomal anomalies (758)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(758.0) Down's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\(758.0) Down's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Chromosomal anomalies (758)\\\\(758.0) Down's syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\" + }, + { + "displayName": "(758.1) Patau's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\(758.1) Patau's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Chromosomal anomalies (758)\\\\(758.1) Patau's syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\" + }, + { + "displayName": "(758.2) Edwards' syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\(758.2) Edwards' syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Chromosomal anomalies (758)\\\\(758.2) Edwards' syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\" + }, + { + "displayName": "(758.4) Balanced autosomal translocation in normal individual", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\(758.4) Balanced autosomal translocation in normal individual\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\" + }, + { + "displayName": "(758.5) Other conditions due to autosomal anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\(758.5) Other conditions due to autosomal anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Chromosomal anomalies (758)\\\\(758.5) Other conditions due to autosomal anomalies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\" + }, + { + "displayName": "(758.6) Gonadal dysgenesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\(758.6) Gonadal dysgenesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\" + }, + { + "displayName": "(758.7) Klinefelter's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\(758.7) Klinefelter's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Chromosomal anomalies (758)\\\\(758.7) Klinefelter's syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\" + }, + { + "displayName": "(758.9) Conditions due to anomaly of unspecified chromosome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\(758.9) Conditions due to anomaly of unspecified chromosome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\" + }, + { + "displayName": "Autosomal deletion syndromes (758.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Autosomal deletion syndromes (758.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Chromosomal anomalies (758)\\\\Autosomal deletion syndromes (758.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\" + }, + { + "displayName": "(758.31) Cri-du-chat syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Autosomal deletion syndromes (758.3)\\(758.31) Cri-du-chat syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Chromosomal anomalies (758)\\\\Autosomal deletion syndromes (758.3)\\\\(758.31) Cri-du-chat syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Autosomal deletion syndromes (758.3)\\" + }, + { + "displayName": "(758.32) Velo-cardio-facial syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Autosomal deletion syndromes (758.3)\\(758.32) Velo-cardio-facial syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Autosomal deletion syndromes (758.3)\\" + }, + { + "displayName": "(758.33) Other microdeletions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Autosomal deletion syndromes (758.3)\\(758.33) Other microdeletions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Chromosomal anomalies (758)\\\\Autosomal deletion syndromes (758.3)\\\\(758.33) Other microdeletions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Autosomal deletion syndromes (758.3)\\" + }, + { + "displayName": "(758.39) Other autosomal deletions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Autosomal deletion syndromes (758.3)\\(758.39) Other autosomal deletions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Autosomal deletion syndromes (758.3)\\" + }, + { + "displayName": "Other conditions due to chromosome anomalies (758.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Other conditions due to chromosome anomalies (758.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\" + }, + { + "displayName": "(758.81) Other conditions due to sex chromosome anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Other conditions due to chromosome anomalies (758.8)\\(758.81) Other conditions due to sex chromosome anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Chromosomal anomalies (758)\\\\Other conditions due to chromosome anomalies (758.8)\\\\(758.81) Other conditions due to sex chromosome anomalies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Other conditions due to chromosome anomalies (758.8)\\" + }, + { + "displayName": "(758.89) Other conditions due to chromosome anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Other conditions due to chromosome anomalies (758.8)\\(758.89) Other conditions due to chromosome anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Chromosomal anomalies (758)\\Other conditions due to chromosome anomalies (758.8)\\" + }, + { + "displayName": "Cleft palate and cleft lip (749)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Cleft palate and cleft lip (749)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "Cleft lip (749.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft lip (749.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Cleft palate and cleft lip (749)\\\\Cleft lip (749.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\" + }, + { + "displayName": "(749.10) Cleft lip, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft lip (749.1)\\(749.10) Cleft lip, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft lip (749.1)\\" + }, + { + "displayName": "(749.11) Cleft lip, unilateral, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft lip (749.1)\\(749.11) Cleft lip, unilateral, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft lip (749.1)\\" + }, + { + "displayName": "(749.12) Cleft lip, unilateral, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft lip (749.1)\\(749.12) Cleft lip, unilateral, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft lip (749.1)\\" + }, + { + "displayName": "(749.13) Cleft lip, bilateral, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft lip (749.1)\\(749.13) Cleft lip, bilateral, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft lip (749.1)\\" + }, + { + "displayName": "(749.14) Cleft lip, bilateral, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft lip (749.1)\\(749.14) Cleft lip, bilateral, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft lip (749.1)\\" + }, + { + "displayName": "Cleft palate (749.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate (749.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\" + }, + { + "displayName": "(749.00) Cleft palate, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate (749.0)\\(749.00) Cleft palate, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate (749.0)\\" + }, + { + "displayName": "(749.01) Cleft palate, unilateral, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate (749.0)\\(749.01) Cleft palate, unilateral, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate (749.0)\\" + }, + { + "displayName": "(749.02) Cleft palate, unilateral, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate (749.0)\\(749.02) Cleft palate, unilateral, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate (749.0)\\" + }, + { + "displayName": "(749.03) Cleft palate, bilateral, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate (749.0)\\(749.03) Cleft palate, bilateral, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate (749.0)\\" + }, + { + "displayName": "(749.04) Cleft palate, bilateral, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate (749.0)\\(749.04) Cleft palate, bilateral, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Cleft palate and cleft lip (749)\\\\Cleft palate (749.0)\\\\(749.04) Cleft palate, bilateral, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate (749.0)\\" + }, + { + "displayName": "Cleft palate with cleft lip (749.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Cleft palate and cleft lip (749)\\\\Cleft palate with cleft lip (749.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\" + }, + { + "displayName": "(749.20) Cleft palate with cleft lip, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\(749.20) Cleft palate with cleft lip, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\" + }, + { + "displayName": "(749.21) Cleft palate with cleft lip, unilateral, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\(749.21) Cleft palate with cleft lip, unilateral, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\" + }, + { + "displayName": "(749.22) Cleft palate with cleft lip, unilateral, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\(749.22) Cleft palate with cleft lip, unilateral, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\" + }, + { + "displayName": "(749.23) Cleft palate with cleft lip, bilateral, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\(749.23) Cleft palate with cleft lip, bilateral, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\" + }, + { + "displayName": "(749.24) Cleft palate with cleft lip, bilateral, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\(749.24) Cleft palate with cleft lip, bilateral, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\" + }, + { + "displayName": "(749.25) Other combinations of cleft palate with cleft lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\(749.25) Other combinations of cleft palate with cleft lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Cleft palate and cleft lip (749)\\Cleft palate with cleft lip (749.2)\\" + }, + { + "displayName": "Congenital anomalies of ear, face, and neck (744)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(744.1) Accessory auricle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\(744.1) Accessory auricle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\" + }, + { + "displayName": "(744.3) Unspecified anomaly of ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\(744.3) Unspecified anomaly of ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\(744.3) Unspecified anomaly of ear\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\" + }, + { + "displayName": "(744.5) Webbing of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\(744.5) Webbing of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\(744.5) Webbing of neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\" + }, + { + "displayName": "(744.9) Unspecified congenital anomalies of face and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\(744.9) Unspecified congenital anomalies of face and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\" + }, + { + "displayName": "Branchial cleft cyst or fistula; preauricular sinus (744.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\" + }, + { + "displayName": "(744.41) Branchial cleft sinus or fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\(744.41) Branchial cleft sinus or fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\\\(744.41) Branchial cleft sinus or fistula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\" + }, + { + "displayName": "(744.42) Branchial cleft cyst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\(744.42) Branchial cleft cyst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\" + }, + { + "displayName": "(744.43) Cervical auricle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\(744.43) Cervical auricle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\" + }, + { + "displayName": "(744.46) Preauricular sinus or fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\(744.46) Preauricular sinus or fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\" + }, + { + "displayName": "(744.47) Preauricular cyst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\(744.47) Preauricular cyst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\" + }, + { + "displayName": "(744.49) Other branchial cleft cyst or fistula; preauricular sinus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\(744.49) Other branchial cleft cyst or fistula; preauricular sinus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Branchial cleft cyst or fistula; preauricular sinus (744.4)\\" + }, + { + "displayName": "Congenital anomalies of ear causing impairment of hearing (744.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\" + }, + { + "displayName": "(744.00) Unspecified anomaly of ear with impairment of hearing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\(744.00) Unspecified anomaly of ear with impairment of hearing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\" + }, + { + "displayName": "(744.01) Absence of external ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\(744.01) Absence of external ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\" + }, + { + "displayName": "(744.02) Other anomalies of external ear with impairment of hearing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\(744.02) Other anomalies of external ear with impairment of hearing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\" + }, + { + "displayName": "(744.03) Anomaly of middle ear, except ossicles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\(744.03) Anomaly of middle ear, except ossicles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\" + }, + { + "displayName": "(744.04) Anomalies of ear ossicles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\(744.04) Anomalies of ear ossicles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\Congenital anomalies of ear causing impairment of hearing (744.0)\\\\(744.04) Anomalies of ear ossicles\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\" + }, + { + "displayName": "(744.05) Anomalies of inner ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\(744.05) Anomalies of inner ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\Congenital anomalies of ear causing impairment of hearing (744.0)\\\\(744.05) Anomalies of inner ear\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\" + }, + { + "displayName": "(744.09) Other anomalies of ear causing impairment of hearing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\(744.09) Other anomalies of ear causing impairment of hearing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Congenital anomalies of ear causing impairment of hearing (744.0)\\" + }, + { + "displayName": "Other specified congenital anomalies of ear (744.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of ear (744.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\Other specified congenital anomalies of ear (744.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\" + }, + { + "displayName": "(744.21) Absence of ear lobe, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of ear (744.2)\\(744.21) Absence of ear lobe, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\Other specified congenital anomalies of ear (744.2)\\\\(744.21) Absence of ear lobe, congenital\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of ear (744.2)\\" + }, + { + "displayName": "(744.22) Macrotia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of ear (744.2)\\(744.22) Macrotia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\Other specified congenital anomalies of ear (744.2)\\\\(744.22) Macrotia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of ear (744.2)\\" + }, + { + "displayName": "(744.23) Microtia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of ear (744.2)\\(744.23) Microtia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\Other specified congenital anomalies of ear (744.2)\\\\(744.23) Microtia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of ear (744.2)\\" + }, + { + "displayName": "(744.24) Specified anomalies of Eustachian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of ear (744.2)\\(744.24) Specified anomalies of Eustachian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\Other specified congenital anomalies of ear (744.2)\\\\(744.24) Specified anomalies of Eustachian tube\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of ear (744.2)\\" + }, + { + "displayName": "(744.29) Other specified anomalies of ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of ear (744.2)\\(744.29) Other specified anomalies of ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of ear (744.2)\\" + }, + { + "displayName": "Other specified congenital anomalies of face and neck (744.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of face and neck (744.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\" + }, + { + "displayName": "(744.81) Macrocheilia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of face and neck (744.8)\\(744.81) Macrocheilia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of face and neck (744.8)\\" + }, + { + "displayName": "(744.82) Microcheilia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of face and neck (744.8)\\(744.82) Microcheilia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of face and neck (744.8)\\" + }, + { + "displayName": "(744.83) Macrostomia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of face and neck (744.8)\\(744.83) Macrostomia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of face and neck (744.8)\\" + }, + { + "displayName": "(744.84) Microstomia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of face and neck (744.8)\\(744.84) Microstomia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of face and neck (744.8)\\" + }, + { + "displayName": "(744.89) Other specified congenital anomalies of face and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of face and neck (744.8)\\(744.89) Other specified congenital anomalies of face and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of ear, face, and neck (744)\\\\Other specified congenital anomalies of face and neck (744.8)\\\\(744.89) Other specified congenital anomalies of face and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of ear, face, and neck (744)\\Other specified congenital anomalies of face and neck (744.8)\\" + }, + { + "displayName": "Congenital anomalies of eye (743)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(743.8) Other specified anomalies of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\(743.8) Other specified anomalies of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\" + }, + { + "displayName": "(743.9) Unspecified anomaly of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\(743.9) Unspecified anomaly of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\" + }, + { + "displayName": "Anophthalmos (743.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Anophthalmos (743.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\" + }, + { + "displayName": "(743.00) Clinical anophthalmos, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Anophthalmos (743.0)\\(743.00) Clinical anophthalmos, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Anophthalmos (743.0)\\" + }, + { + "displayName": "(743.03) Cystic eyeball, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Anophthalmos (743.0)\\(743.03) Cystic eyeball, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Anophthalmos (743.0)\\" + }, + { + "displayName": "(743.06) Cryptophthalmos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Anophthalmos (743.0)\\(743.06) Cryptophthalmos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Anophthalmos (743.0)\\" + }, + { + "displayName": "Buphthalmos (743.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Buphthalmos (743.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\" + }, + { + "displayName": "(743.20) Buphthalmos, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Buphthalmos (743.2)\\(743.20) Buphthalmos, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Buphthalmos (743.2)\\" + }, + { + "displayName": "(743.21) Simple buphthalmos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Buphthalmos (743.2)\\(743.21) Simple buphthalmos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\Buphthalmos (743.2)\\\\(743.21) Simple buphthalmos\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Buphthalmos (743.2)\\" + }, + { + "displayName": "(743.22) Buphthalmos associated with other ocular anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Buphthalmos (743.2)\\(743.22) Buphthalmos associated with other ocular anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Buphthalmos (743.2)\\" + }, + { + "displayName": "Coloboma and other anomalies of anterior segment (743.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\Coloboma and other anomalies of anterior segment (743.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\" + }, + { + "displayName": "(743.41) Congenital anomalies of corneal size and shape", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\(743.41) Congenital anomalies of corneal size and shape\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\Coloboma and other anomalies of anterior segment (743.4)\\\\(743.41) Congenital anomalies of corneal size and shape\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\" + }, + { + "displayName": "(743.42) Corneal opacities, interfering with vision, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\(743.42) Corneal opacities, interfering with vision, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\" + }, + { + "displayName": "(743.43) Other corneal opacities, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\(743.43) Other corneal opacities, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\Coloboma and other anomalies of anterior segment (743.4)\\\\(743.43) Other corneal opacities, congenital\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\" + }, + { + "displayName": "(743.44) Specified congenital anomalies of anterior chamber, chamber angle, and related structures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\(743.44) Specified congenital anomalies of anterior chamber, chamber angle, and related structures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\Coloboma and other anomalies of anterior segment (743.4)\\\\(743.44) Specified congenital anomalies of anterior chamber, chamber angle, and related structures\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\" + }, + { + "displayName": "(743.45) Aniridia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\(743.45) Aniridia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\" + }, + { + "displayName": "(743.46) Other specified congenital anomalies of iris and ciliary body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\(743.46) Other specified congenital anomalies of iris and ciliary body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\" + }, + { + "displayName": "(743.47) Specified congenital anomalies of sclera", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\(743.47) Specified congenital anomalies of sclera\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\" + }, + { + "displayName": "(743.48) Multiple and combined congenital anomalies of anterior segment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\(743.48) Multiple and combined congenital anomalies of anterior segment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\" + }, + { + "displayName": "(743.49) Other congenital anomalies of anterior segment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\(743.49) Other congenital anomalies of anterior segment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Coloboma and other anomalies of anterior segment (743.4)\\" + }, + { + "displayName": "Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\" + }, + { + "displayName": "(743.61) Congenital ptosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\(743.61) Congenital ptosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\" + }, + { + "displayName": "(743.62) Congenital deformities of eyelids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\(743.62) Congenital deformities of eyelids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\" + }, + { + "displayName": "(743.63) Other specified congenital anomalies of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\(743.63) Other specified congenital anomalies of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\\\(743.63) Other specified congenital anomalies of eyelid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\" + }, + { + "displayName": "(743.64) Specified congenital anomalies of lacrimal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\(743.64) Specified congenital anomalies of lacrimal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\\\(743.64) Specified congenital anomalies of lacrimal gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\" + }, + { + "displayName": "(743.65) Specified congenital anomalies of lacrimal passages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\(743.65) Specified congenital anomalies of lacrimal passages\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\\\(743.65) Specified congenital anomalies of lacrimal passages\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\" + }, + { + "displayName": "(743.66) Specified congenital anomalies of orbit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\(743.66) Specified congenital anomalies of orbit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\\\(743.66) Specified congenital anomalies of orbit\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\" + }, + { + "displayName": "(743.69) Other congenital anomalies of eyelids, lacrimal system, and orbit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\(743.69) Other congenital anomalies of eyelids, lacrimal system, and orbit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\\\(743.69) Other congenital anomalies of eyelids, lacrimal system, and orbit\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\\" + }, + { + "displayName": "Congenital anomalies of posterior segment (743.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\" + }, + { + "displayName": "(743.51) Vitreous anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\(743.51) Vitreous anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\" + }, + { + "displayName": "(743.52) Fundus coloboma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\(743.52) Fundus coloboma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\" + }, + { + "displayName": "(743.53) Chorioretinal degeneration, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\(743.53) Chorioretinal degeneration, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\" + }, + { + "displayName": "(743.54) Congenital folds and cysts of posterior segment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\(743.54) Congenital folds and cysts of posterior segment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\" + }, + { + "displayName": "(743.55) Congenital macular changes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\(743.55) Congenital macular changes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of eye (743)\\\\Congenital anomalies of posterior segment (743.5)\\\\(743.55) Congenital macular changes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\" + }, + { + "displayName": "(743.56) Other retinal changes, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\(743.56) Other retinal changes, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\" + }, + { + "displayName": "(743.57) Specified congenital anomalies of optic disc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\(743.57) Specified congenital anomalies of optic disc\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\" + }, + { + "displayName": "(743.58) Vascular anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\(743.58) Vascular anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\" + }, + { + "displayName": "(743.59) Other congenital anomalies of posterior segment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\(743.59) Other congenital anomalies of posterior segment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital anomalies of posterior segment (743.5)\\" + }, + { + "displayName": "Congenital cataract and lens anomalies (743.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\" + }, + { + "displayName": "(743.30) Congenital cataract, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\(743.30) Congenital cataract, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\" + }, + { + "displayName": "(743.31) Congenital capsular and subcapsular cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\(743.31) Congenital capsular and subcapsular cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\" + }, + { + "displayName": "(743.32) Congenital cortical and zonular cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\(743.32) Congenital cortical and zonular cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\" + }, + { + "displayName": "(743.33) Congenital nuclear cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\(743.33) Congenital nuclear cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\" + }, + { + "displayName": "(743.34) Total and subtotal cataract, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\(743.34) Total and subtotal cataract, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\" + }, + { + "displayName": "(743.35) Congenital aphakia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\(743.35) Congenital aphakia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\" + }, + { + "displayName": "(743.36) Congenital anomalies of lens shape", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\(743.36) Congenital anomalies of lens shape\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\" + }, + { + "displayName": "(743.37) Congenital ectopic lens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\(743.37) Congenital ectopic lens\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\" + }, + { + "displayName": "(743.39) Other congenital cataract and lens anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\(743.39) Other congenital cataract and lens anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Congenital cataract and lens anomalies (743.3)\\" + }, + { + "displayName": "Microphthalmos (743.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\" + }, + { + "displayName": "(743.10) Microphthalmos, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\(743.10) Microphthalmos, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\" + }, + { + "displayName": "(743.11) Simple microphthalmos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\(743.11) Simple microphthalmos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\" + }, + { + "displayName": "(743.12) Microphthalmos associated with other anomalies of eye and adnexa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\(743.12) Microphthalmos associated with other anomalies of eye and adnexa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of eye (743)\\Microphthalmos (743.1)\\" + }, + { + "displayName": "Congenital anomalies of genital organs (752)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(752.0) Anomalies of ovaries", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\(752.0) Anomalies of ovaries\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\" + }, + { + "displayName": "(752.2) Doubling of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\(752.2) Doubling of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\" + }, + { + "displayName": "(752.7) Indeterminate sex and pseudohermaphroditism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\(752.7) Indeterminate sex and pseudohermaphroditism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\" + }, + { + "displayName": "(752.9) Unspecified anomaly of genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\(752.9) Unspecified anomaly of genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\" + }, + { + "displayName": "Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\" + }, + { + "displayName": "(752.40) Unspecified anomaly of cervix, vagina, and external female genitalia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\(752.40) Unspecified anomaly of cervix, vagina, and external female genitalia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\" + }, + { + "displayName": "(752.41) Embryonic cyst of cervix, vagina, and external female genitalia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\(752.41) Embryonic cyst of cervix, vagina, and external female genitalia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of genital organs (752)\\\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\\\(752.41) Embryonic cyst of cervix, vagina, and external female genitalia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\" + }, + { + "displayName": "(752.42) Imperforate hymen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\(752.42) Imperforate hymen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of genital organs (752)\\\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\\\(752.42) Imperforate hymen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\" + }, + { + "displayName": "(752.43) Cervical agenesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\(752.43) Cervical agenesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\" + }, + { + "displayName": "(752.45) Vaginal agenesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\(752.45) Vaginal agenesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\" + }, + { + "displayName": "(752.47) Longitudinal vaginal septum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\(752.47) Longitudinal vaginal septum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\" + }, + { + "displayName": "(752.49) Other anomalies of cervix, vagina, and external female genitalia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\(752.49) Other anomalies of cervix, vagina, and external female genitalia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of genital organs (752)\\\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\\\(752.49) Other anomalies of cervix, vagina, and external female genitalia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\\" + }, + { + "displayName": "Anomalies of fallopian tubes and broad ligaments, congenital (752.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\" + }, + { + "displayName": "(752.10) Unspecified anomaly of fallopian tubes and broad ligaments", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\\(752.10) Unspecified anomaly of fallopian tubes and broad ligaments\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of genital organs (752)\\\\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\\\\(752.10) Unspecified anomaly of fallopian tubes and broad ligaments\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\\" + }, + { + "displayName": "(752.11) Embryonic cyst of fallopian tubes and broad ligaments", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\\(752.11) Embryonic cyst of fallopian tubes and broad ligaments\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\\" + }, + { + "displayName": "(752.19) Other anomalies of fallopian tubes and broad ligaments", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\\(752.19) Other anomalies of fallopian tubes and broad ligaments\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\\" + }, + { + "displayName": "Hypospadias and epispadias and other penile anomalies (752.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\" + }, + { + "displayName": "(752.61) Hypospadias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\(752.61) Hypospadias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\" + }, + { + "displayName": "(752.62) Epispadias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\(752.62) Epispadias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\" + }, + { + "displayName": "(752.63) Congenital chordee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\(752.63) Congenital chordee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\" + }, + { + "displayName": "(752.64) Micropenis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\(752.64) Micropenis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\" + }, + { + "displayName": "(752.65) Hidden penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\(752.65) Hidden penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\" + }, + { + "displayName": "(752.69) Other penile anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\(752.69) Other penile anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Hypospadias and epispadias and other penile anomalies (752.6)\\" + }, + { + "displayName": "Other congenital anomalies of uterus (752.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other congenital anomalies of uterus (752.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\" + }, + { + "displayName": "(752.33) Unicornuate uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other congenital anomalies of uterus (752.3)\\(752.33) Unicornuate uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other congenital anomalies of uterus (752.3)\\" + }, + { + "displayName": "(752.34) Bicornuate uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other congenital anomalies of uterus (752.3)\\(752.34) Bicornuate uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other congenital anomalies of uterus (752.3)\\" + }, + { + "displayName": "(752.35) Septate uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other congenital anomalies of uterus (752.3)\\(752.35) Septate uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other congenital anomalies of uterus (752.3)\\" + }, + { + "displayName": "(752.36) Arcuate uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other congenital anomalies of uterus (752.3)\\(752.36) Arcuate uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other congenital anomalies of uterus (752.3)\\" + }, + { + "displayName": "(752.39) Other anomalies of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other congenital anomalies of uterus (752.3)\\(752.39) Other anomalies of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other congenital anomalies of uterus (752.3)\\" + }, + { + "displayName": "Other specified congenital anomalies of genital organs (752.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other specified congenital anomalies of genital organs (752.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\" + }, + { + "displayName": "(752.81) Scrotal transposition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other specified congenital anomalies of genital organs (752.8)\\(752.81) Scrotal transposition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other specified congenital anomalies of genital organs (752.8)\\" + }, + { + "displayName": "(752.89) Other specified anomalies of genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other specified congenital anomalies of genital organs (752.8)\\(752.89) Other specified anomalies of genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of genital organs (752)\\\\Other specified congenital anomalies of genital organs (752.8)\\\\(752.89) Other specified anomalies of genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Other specified congenital anomalies of genital organs (752.8)\\" + }, + { + "displayName": "Undescended and retractile testicle (752.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Undescended and retractile testicle (752.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\" + }, + { + "displayName": "(752.51) Undescended testis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Undescended and retractile testicle (752.5)\\(752.51) Undescended testis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Undescended and retractile testicle (752.5)\\" + }, + { + "displayName": "(752.52) Retractile testis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Undescended and retractile testicle (752.5)\\(752.52) Retractile testis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of genital organs (752)\\Undescended and retractile testicle (752.5)\\" + }, + { + "displayName": "Congenital anomalies of the integument (757)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(757.0) Hereditary edema of legs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\(757.0) Hereditary edema of legs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\" + }, + { + "displayName": "(757.1) Ichthyosis congenita", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\(757.1) Ichthyosis congenita\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\" + }, + { + "displayName": "(757.2) Dermatoglyphic anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\(757.2) Dermatoglyphic anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\" + }, + { + "displayName": "(757.4) Specified anomalies of hair", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\(757.4) Specified anomalies of hair\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\" + }, + { + "displayName": "(757.5) Specified anomalies of nails", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\(757.5) Specified anomalies of nails\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\" + }, + { + "displayName": "(757.6) Specified congenital anomalies of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\(757.6) Specified congenital anomalies of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\" + }, + { + "displayName": "(757.8) Other specified anomalies of the integument", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\(757.8) Other specified anomalies of the integument\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\" + }, + { + "displayName": "(757.9) Unspecified congenital anomaly of the integument", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\(757.9) Unspecified congenital anomaly of the integument\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of the integument (757)\\\\(757.9) Unspecified congenital anomaly of the integument\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\" + }, + { + "displayName": "Other specified congenital anomalies of skin (757.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\Other specified congenital anomalies of skin (757.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\" + }, + { + "displayName": "(757.31) Congenital ectodermal dysplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\Other specified congenital anomalies of skin (757.3)\\(757.31) Congenital ectodermal dysplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of the integument (757)\\\\Other specified congenital anomalies of skin (757.3)\\\\(757.31) Congenital ectodermal dysplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\Other specified congenital anomalies of skin (757.3)\\" + }, + { + "displayName": "(757.32) Vascular hamartomas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\Other specified congenital anomalies of skin (757.3)\\(757.32) Vascular hamartomas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\Other specified congenital anomalies of skin (757.3)\\" + }, + { + "displayName": "(757.33) Congenital pigmentary anomalies of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\Other specified congenital anomalies of skin (757.3)\\(757.33) Congenital pigmentary anomalies of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of the integument (757)\\\\Other specified congenital anomalies of skin (757.3)\\\\(757.33) Congenital pigmentary anomalies of skin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\Other specified congenital anomalies of skin (757.3)\\" + }, + { + "displayName": "(757.39) Other specified anomalies of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\Other specified congenital anomalies of skin (757.3)\\(757.39) Other specified anomalies of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of the integument (757)\\\\Other specified congenital anomalies of skin (757.3)\\\\(757.39) Other specified anomalies of skin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of the integument (757)\\Other specified congenital anomalies of skin (757.3)\\" + }, + { + "displayName": "Congenital anomalies of urinary system (753)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of urinary system (753)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(753.0) Renal agenesis and dysgenesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\(753.0) Renal agenesis and dysgenesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\" + }, + { + "displayName": "(753.3) Other specified anomalies of kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\(753.3) Other specified anomalies of kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of urinary system (753)\\\\(753.3) Other specified anomalies of kidney\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\" + }, + { + "displayName": "(753.4) Other specified anomalies of ureter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\(753.4) Other specified anomalies of ureter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of urinary system (753)\\\\(753.4) Other specified anomalies of ureter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\" + }, + { + "displayName": "(753.5) Exstrophy of urinary bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\(753.5) Exstrophy of urinary bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of urinary system (753)\\\\(753.5) Exstrophy of urinary bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\" + }, + { + "displayName": "(753.6) Atresia and stenosis of urethra and bladder neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\(753.6) Atresia and stenosis of urethra and bladder neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\" + }, + { + "displayName": "(753.7) Anomalies of urachus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\(753.7) Anomalies of urachus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\" + }, + { + "displayName": "(753.8) Other specified anomalies of bladder and urethra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\(753.8) Other specified anomalies of bladder and urethra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\" + }, + { + "displayName": "(753.9) Unspecified anomaly of urinary system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\(753.9) Unspecified anomaly of urinary system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\" + }, + { + "displayName": "Cystic kidney disease (753.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\" + }, + { + "displayName": "(753.10) Cystic kidney disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\(753.10) Cystic kidney disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\" + }, + { + "displayName": "(753.11) Congenital single renal cyst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\(753.11) Congenital single renal cyst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of urinary system (753)\\\\Cystic kidney disease (753.1)\\\\(753.11) Congenital single renal cyst\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\" + }, + { + "displayName": "(753.12) Polycystic kidney, unspecified type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\(753.12) Polycystic kidney, unspecified type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of urinary system (753)\\\\Cystic kidney disease (753.1)\\\\(753.12) Polycystic kidney, unspecified type\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\" + }, + { + "displayName": "(753.13) Polycystic kidney, autosomal dominant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\(753.13) Polycystic kidney, autosomal dominant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of urinary system (753)\\\\Cystic kidney disease (753.1)\\\\(753.13) Polycystic kidney, autosomal dominant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\" + }, + { + "displayName": "(753.14) Polycystic kidney, autosomal recessive", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\(753.14) Polycystic kidney, autosomal recessive\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\" + }, + { + "displayName": "(753.15) Renal dysplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\(753.15) Renal dysplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of urinary system (753)\\\\Cystic kidney disease (753.1)\\\\(753.15) Renal dysplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\" + }, + { + "displayName": "(753.16) Medullary cystic kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\(753.16) Medullary cystic kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\" + }, + { + "displayName": "(753.17) Medullary sponge kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\(753.17) Medullary sponge kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\" + }, + { + "displayName": "(753.19) Other specified cystic kidney disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\(753.19) Other specified cystic kidney disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Cystic kidney disease (753.1)\\" + }, + { + "displayName": "Obstructive defects of renal pelvis and ureter, congenital (753.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\" + }, + { + "displayName": "(753.20) Unspecified obstructive defect of renal pelvis and ureter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\(753.20) Unspecified obstructive defect of renal pelvis and ureter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\" + }, + { + "displayName": "(753.21) Congenital obstruction of ureteropelvic junction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\(753.21) Congenital obstruction of ureteropelvic junction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\" + }, + { + "displayName": "(753.22) Congenital obstruction of ureterovesical junction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\(753.22) Congenital obstruction of ureterovesical junction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\" + }, + { + "displayName": "(753.23) Congenital ureterocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\(753.23) Congenital ureterocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of urinary system (753)\\\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\\\(753.23) Congenital ureterocele\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\" + }, + { + "displayName": "(753.29) Other obstructive defects of renal pelvis and ureter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\(753.29) Other obstructive defects of renal pelvis and ureter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Congenital anomalies of urinary system (753)\\\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\\\(753.29) Other obstructive defects of renal pelvis and ureter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Congenital anomalies of urinary system (753)\\Obstructive defects of renal pelvis and ureter, congenital (753.2)\\" + }, + { + "displayName": "Other and unspecified congenital anomalies (759)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other and unspecified congenital anomalies (759)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(759.0) Anomalies of spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\(759.0) Anomalies of spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other and unspecified congenital anomalies (759)\\\\(759.0) Anomalies of spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\" + }, + { + "displayName": "(759.1) Anomalies of adrenal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\(759.1) Anomalies of adrenal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\" + }, + { + "displayName": "(759.2) Anomalies of other endocrine glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\(759.2) Anomalies of other endocrine glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other and unspecified congenital anomalies (759)\\\\(759.2) Anomalies of other endocrine glands\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\" + }, + { + "displayName": "(759.3) Situs inversus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\(759.3) Situs inversus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other and unspecified congenital anomalies (759)\\\\(759.3) Situs inversus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\" + }, + { + "displayName": "(759.4) Conjoined twins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\(759.4) Conjoined twins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\" + }, + { + "displayName": "(759.5) Tuberous sclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\(759.5) Tuberous sclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other and unspecified congenital anomalies (759)\\\\(759.5) Tuberous sclerosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\" + }, + { + "displayName": "(759.6) Other hamartoses, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\(759.6) Other hamartoses, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\" + }, + { + "displayName": "(759.7) Multiple congenital anomalies, so described", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\(759.7) Multiple congenital anomalies, so described\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other and unspecified congenital anomalies (759)\\\\(759.7) Multiple congenital anomalies, so described\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\" + }, + { + "displayName": "(759.9) Congenital anomaly, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\(759.9) Congenital anomaly, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\" + }, + { + "displayName": "Other specified anomalies (759.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\Other specified anomalies (759.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other and unspecified congenital anomalies (759)\\\\Other specified anomalies (759.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\" + }, + { + "displayName": "(759.81) Prader-Willi syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\Other specified anomalies (759.8)\\(759.81) Prader-Willi syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\Other specified anomalies (759.8)\\" + }, + { + "displayName": "(759.82) Marfan syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\Other specified anomalies (759.8)\\(759.82) Marfan syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other and unspecified congenital anomalies (759)\\\\Other specified anomalies (759.8)\\\\(759.82) Marfan syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\Other specified anomalies (759.8)\\" + }, + { + "displayName": "(759.83) Fragile X syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\Other specified anomalies (759.8)\\(759.83) Fragile X syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other and unspecified congenital anomalies (759)\\\\Other specified anomalies (759.8)\\\\(759.83) Fragile X syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\Other specified anomalies (759.8)\\" + }, + { + "displayName": "(759.89) Other specified congenital anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\Other specified anomalies (759.8)\\(759.89) Other specified congenital anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other and unspecified congenital anomalies (759)\\\\Other specified anomalies (759.8)\\\\(759.89) Other specified congenital anomalies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other and unspecified congenital anomalies (759)\\Other specified anomalies (759.8)\\" + }, + { + "displayName": "Other congenital anomalies of circulatory system (747)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of circulatory system (747)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(747.0) Patent ductus arteriosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\(747.0) Patent ductus arteriosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\" + }, + { + "displayName": "(747.5) Absence or hypoplasia of umbilical artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\(747.5) Absence or hypoplasia of umbilical artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of circulatory system (747)\\\\(747.5) Absence or hypoplasia of umbilical artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\" + }, + { + "displayName": "(747.9) Unspecified anomaly of circulatory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\(747.9) Unspecified anomaly of circulatory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of circulatory system (747)\\\\(747.9) Unspecified anomaly of circulatory system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\" + }, + { + "displayName": "Anomalies of great veins, congenital (747.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of great veins, congenital (747.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\" + }, + { + "displayName": "(747.40) Anomaly of great veins, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of great veins, congenital (747.4)\\(747.40) Anomaly of great veins, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of circulatory system (747)\\\\Anomalies of great veins, congenital (747.4)\\\\(747.40) Anomaly of great veins, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of great veins, congenital (747.4)\\" + }, + { + "displayName": "(747.41) Total anomalous pulmonary venous connection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of great veins, congenital (747.4)\\(747.41) Total anomalous pulmonary venous connection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of circulatory system (747)\\\\Anomalies of great veins, congenital (747.4)\\\\(747.41) Total anomalous pulmonary venous connection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of great veins, congenital (747.4)\\" + }, + { + "displayName": "(747.42) Partial anomalous pulmonary venous connection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of great veins, congenital (747.4)\\(747.42) Partial anomalous pulmonary venous connection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of circulatory system (747)\\\\Anomalies of great veins, congenital (747.4)\\\\(747.42) Partial anomalous pulmonary venous connection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of great veins, congenital (747.4)\\" + }, + { + "displayName": "(747.49) Other anomalies of great veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of great veins, congenital (747.4)\\(747.49) Other anomalies of great veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of circulatory system (747)\\\\Anomalies of great veins, congenital (747.4)\\\\(747.49) Other anomalies of great veins\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of great veins, congenital (747.4)\\" + }, + { + "displayName": "Anomalies of pulmonary artery, congenital (747.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of pulmonary artery, congenital (747.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\" + }, + { + "displayName": "(747.31) Pulmonary artery coarctation and atresia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of pulmonary artery, congenital (747.3)\\(747.31) Pulmonary artery coarctation and atresia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of circulatory system (747)\\\\Anomalies of pulmonary artery, congenital (747.3)\\\\(747.31) Pulmonary artery coarctation and atresia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of pulmonary artery, congenital (747.3)\\" + }, + { + "displayName": "(747.32) Pulmonary arteriovenous malformation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of pulmonary artery, congenital (747.3)\\(747.32) Pulmonary arteriovenous malformation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of pulmonary artery, congenital (747.3)\\" + }, + { + "displayName": "(747.39) Other anomalies of pulmonary artery and pulmonary circulation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of pulmonary artery, congenital (747.3)\\(747.39) Other anomalies of pulmonary artery and pulmonary circulation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of circulatory system (747)\\\\Anomalies of pulmonary artery, congenital (747.3)\\\\(747.39) Other anomalies of pulmonary artery and pulmonary circulation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Anomalies of pulmonary artery, congenital (747.3)\\" + }, + { + "displayName": "Coarctation of aorta (747.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Coarctation of aorta (747.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\" + }, + { + "displayName": "(747.10) Coarctation of aorta (preductal) (postductal)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Coarctation of aorta (747.1)\\(747.10) Coarctation of aorta (preductal) (postductal)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of circulatory system (747)\\\\Coarctation of aorta (747.1)\\\\(747.10) Coarctation of aorta (preductal) (postductal)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Coarctation of aorta (747.1)\\" + }, + { + "displayName": "(747.11) Interruption of aortic arch", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Coarctation of aorta (747.1)\\(747.11) Interruption of aortic arch\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Coarctation of aorta (747.1)\\" + }, + { + "displayName": "Other congenital anomalies of aorta (747.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of aorta (747.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\" + }, + { + "displayName": "(747.20) Anomaly of aorta, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of aorta (747.2)\\(747.20) Anomaly of aorta, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of aorta (747.2)\\" + }, + { + "displayName": "(747.21) Anomalies of aortic arch", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of aorta (747.2)\\(747.21) Anomalies of aortic arch\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of aorta (747.2)\\" + }, + { + "displayName": "(747.22) Atresia and stenosis of aorta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of aorta (747.2)\\(747.22) Atresia and stenosis of aorta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of aorta (747.2)\\" + }, + { + "displayName": "(747.29) Other anomalies of aorta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of aorta (747.2)\\(747.29) Other anomalies of aorta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of aorta (747.2)\\" + }, + { + "displayName": "Other congenital anomalies of peripheral vascular system (747.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\" + }, + { + "displayName": "(747.60) Anomaly of the peripheral vascular system, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\(747.60) Anomaly of the peripheral vascular system, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\" + }, + { + "displayName": "(747.61) Gastrointestinal vessel anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\(747.61) Gastrointestinal vessel anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\" + }, + { + "displayName": "(747.62) Renal vessel anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\(747.62) Renal vessel anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\" + }, + { + "displayName": "(747.63) Upper limb vessel anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\(747.63) Upper limb vessel anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\" + }, + { + "displayName": "(747.64) Lower limb vessel anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\(747.64) Lower limb vessel anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\" + }, + { + "displayName": "(747.69) Anomalies of other specified sites of peripheral vascular system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\(747.69) Anomalies of other specified sites of peripheral vascular system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other congenital anomalies of peripheral vascular system (747.6)\\" + }, + { + "displayName": "Other specified congenital anomalies of circulatory system (747.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other specified congenital anomalies of circulatory system (747.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\" + }, + { + "displayName": "(747.81) Anomalies of cerebrovascular system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other specified congenital anomalies of circulatory system (747.8)\\(747.81) Anomalies of cerebrovascular system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other specified congenital anomalies of circulatory system (747.8)\\" + }, + { + "displayName": "(747.82) Spinal vessel anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other specified congenital anomalies of circulatory system (747.8)\\(747.82) Spinal vessel anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other specified congenital anomalies of circulatory system (747.8)\\" + }, + { + "displayName": "(747.83) Persistent fetal circulation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other specified congenital anomalies of circulatory system (747.8)\\(747.83) Persistent fetal circulation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other specified congenital anomalies of circulatory system (747.8)\\" + }, + { + "displayName": "(747.89) Other specified anomalies of circulatory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other specified congenital anomalies of circulatory system (747.8)\\(747.89) Other specified anomalies of circulatory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of circulatory system (747)\\Other specified congenital anomalies of circulatory system (747.8)\\" + }, + { + "displayName": "Other congenital anomalies of digestive system (751)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(751.0) Meckel's diverticulum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\(751.0) Meckel's diverticulum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\" + }, + { + "displayName": "(751.1) Atresia and stenosis of small intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\(751.1) Atresia and stenosis of small intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\" + }, + { + "displayName": "(751.2) Atresia and stenosis of large intestine, rectum, and anal canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\(751.2) Atresia and stenosis of large intestine, rectum, and anal canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of digestive system (751)\\\\(751.2) Atresia and stenosis of large intestine, rectum, and anal canal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\" + }, + { + "displayName": "(751.3) Hirschsprung's disease and other congenital functional disorders of colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\(751.3) Hirschsprung's disease and other congenital functional disorders of colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of digestive system (751)\\\\(751.3) Hirschsprung's disease and other congenital functional disorders of colon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\" + }, + { + "displayName": "(751.4) Anomalies of intestinal fixation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\(751.4) Anomalies of intestinal fixation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of digestive system (751)\\\\(751.4) Anomalies of intestinal fixation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\" + }, + { + "displayName": "(751.5) Other anomalies of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\(751.5) Other anomalies of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of digestive system (751)\\\\(751.5) Other anomalies of intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\" + }, + { + "displayName": "(751.7) Anomalies of pancreas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\(751.7) Anomalies of pancreas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\" + }, + { + "displayName": "(751.8) Other specified anomalies of digestive system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\(751.8) Other specified anomalies of digestive system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\" + }, + { + "displayName": "(751.9) Unspecified anomaly of digestive system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\(751.9) Unspecified anomaly of digestive system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\" + }, + { + "displayName": "Anomalies of gallbladder, bile ducts, and liver (751.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\Anomalies of gallbladder, bile ducts, and liver (751.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\" + }, + { + "displayName": "(751.60) Unspecified anomaly of gallbladder, bile ducts, and liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\Anomalies of gallbladder, bile ducts, and liver (751.6)\\(751.60) Unspecified anomaly of gallbladder, bile ducts, and liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\Anomalies of gallbladder, bile ducts, and liver (751.6)\\" + }, + { + "displayName": "(751.61) Biliary atresia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\Anomalies of gallbladder, bile ducts, and liver (751.6)\\(751.61) Biliary atresia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\Anomalies of gallbladder, bile ducts, and liver (751.6)\\" + }, + { + "displayName": "(751.62) Congenital cystic disease of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\Anomalies of gallbladder, bile ducts, and liver (751.6)\\(751.62) Congenital cystic disease of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\Anomalies of gallbladder, bile ducts, and liver (751.6)\\" + }, + { + "displayName": "(751.69) Other anomalies of gallbladder, bile ducts, and liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\Anomalies of gallbladder, bile ducts, and liver (751.6)\\(751.69) Other anomalies of gallbladder, bile ducts, and liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of digestive system (751)\\Anomalies of gallbladder, bile ducts, and liver (751.6)\\" + }, + { + "displayName": "Other congenital anomalies of heart (746)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(746.1) Tricuspid atresia and stenosis, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\(746.1) Tricuspid atresia and stenosis, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\" + }, + { + "displayName": "(746.2) Ebstein's anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\(746.2) Ebstein's anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\" + }, + { + "displayName": "(746.3) Congenital stenosis of aortic valve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\(746.3) Congenital stenosis of aortic valve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\" + }, + { + "displayName": "(746.4) Congenital insufficiency of aortic valve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\(746.4) Congenital insufficiency of aortic valve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\" + }, + { + "displayName": "(746.5) Congenital mitral stenosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\(746.5) Congenital mitral stenosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\" + }, + { + "displayName": "(746.6) Congenital mitral insufficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\(746.6) Congenital mitral insufficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\" + }, + { + "displayName": "(746.7) Hypoplastic left heart syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\(746.7) Hypoplastic left heart syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\" + }, + { + "displayName": "(746.9) Unspecified congenital anomaly of heart", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\(746.9) Unspecified congenital anomaly of heart\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\" + }, + { + "displayName": "Anomalies of pulmonary valve, congenital (746.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Anomalies of pulmonary valve, congenital (746.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\" + }, + { + "displayName": "(746.00) Congenital pulmonary valve anomaly, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Anomalies of pulmonary valve, congenital (746.0)\\(746.00) Congenital pulmonary valve anomaly, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Anomalies of pulmonary valve, congenital (746.0)\\" + }, + { + "displayName": "(746.01) Atresia of pulmonary valve, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Anomalies of pulmonary valve, congenital (746.0)\\(746.01) Atresia of pulmonary valve, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Anomalies of pulmonary valve, congenital (746.0)\\" + }, + { + "displayName": "(746.02) Stenosis of pulmonary valve, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Anomalies of pulmonary valve, congenital (746.0)\\(746.02) Stenosis of pulmonary valve, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Anomalies of pulmonary valve, congenital (746.0)\\" + }, + { + "displayName": "(746.09) Other congenital anomalies of pulmonary valve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Anomalies of pulmonary valve, congenital (746.0)\\(746.09) Other congenital anomalies of pulmonary valve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Anomalies of pulmonary valve, congenital (746.0)\\" + }, + { + "displayName": "Other specified congenital anomalies of heart (746.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\" + }, + { + "displayName": "(746.81) Subaortic stenosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\(746.81) Subaortic stenosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\" + }, + { + "displayName": "(746.82) Cor triatriatum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\(746.82) Cor triatriatum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\" + }, + { + "displayName": "(746.83) Infundibular pulmonic stenosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\(746.83) Infundibular pulmonic stenosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\" + }, + { + "displayName": "(746.84) Obstructive anomalies of heart, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\(746.84) Obstructive anomalies of heart, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\" + }, + { + "displayName": "(746.85) Coronary artery anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\(746.85) Coronary artery anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\" + }, + { + "displayName": "(746.86) Congenital heart block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\(746.86) Congenital heart block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\" + }, + { + "displayName": "(746.87) Malposition of heart and cardiac apex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\(746.87) Malposition of heart and cardiac apex\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\" + }, + { + "displayName": "(746.89) Other specified congenital anomalies of heart", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\(746.89) Other specified congenital anomalies of heart\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of heart (746)\\Other specified congenital anomalies of heart (746.8)\\" + }, + { + "displayName": "Other congenital anomalies of limbs (755)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(755.4) Reduction deformities, unspecified limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\(755.4) Reduction deformities, unspecified limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\" + }, + { + "displayName": "(755.8) Other specified anomalies of unspecified limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\(755.8) Other specified anomalies of unspecified limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\" + }, + { + "displayName": "(755.9) Unspecified anomaly of unspecified limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\(755.9) Unspecified anomaly of unspecified limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\" + }, + { + "displayName": "Other congenital anomalies of lower limb, including pelvic girdle (755.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\" + }, + { + "displayName": "(755.60) Unspecified anomaly of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\(755.60) Unspecified anomaly of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\" + }, + { + "displayName": "(755.61) Coxa valga, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\(755.61) Coxa valga, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\" + }, + { + "displayName": "(755.62) Coxa vara, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\(755.62) Coxa vara, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\" + }, + { + "displayName": "(755.63) Other congenital deformity of hip (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\(755.63) Other congenital deformity of hip (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\" + }, + { + "displayName": "(755.64) Congenital deformity of knee (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\(755.64) Congenital deformity of knee (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\" + }, + { + "displayName": "(755.65) Macrodactylia of toes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\(755.65) Macrodactylia of toes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\" + }, + { + "displayName": "(755.66) Other anomalies of toes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\(755.66) Other anomalies of toes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\" + }, + { + "displayName": "(755.67) Anomalies of foot, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\(755.67) Anomalies of foot, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\" + }, + { + "displayName": "(755.69) Other anomalies of lower limb, including pelvic girdle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\(755.69) Other anomalies of lower limb, including pelvic girdle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\\" + }, + { + "displayName": "Other congenital anomalies of upper limb, including shoulder girdle (755.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\" + }, + { + "displayName": "(755.50) Unspecified anomaly of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\(755.50) Unspecified anomaly of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\" + }, + { + "displayName": "(755.51) Congenital deformity of clavicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\(755.51) Congenital deformity of clavicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\" + }, + { + "displayName": "(755.52) Congenital elevation of scapula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\(755.52) Congenital elevation of scapula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\" + }, + { + "displayName": "(755.53) Radioulnar synostosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\(755.53) Radioulnar synostosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\" + }, + { + "displayName": "(755.54) Madelung's deformity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\(755.54) Madelung's deformity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\" + }, + { + "displayName": "(755.55) Acrocephalosyndactyly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\(755.55) Acrocephalosyndactyly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\" + }, + { + "displayName": "(755.56) Accessory carpal bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\(755.56) Accessory carpal bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\" + }, + { + "displayName": "(755.57) Macrodactylia (fingers)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\(755.57) Macrodactylia (fingers)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\" + }, + { + "displayName": "(755.58) Cleft hand, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\(755.58) Cleft hand, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\" + }, + { + "displayName": "(755.59) Other anomalies of upper limb, including shoulder girdle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\(755.59) Other anomalies of upper limb, including shoulder girdle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\\" + }, + { + "displayName": "Polydactyly (755.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Polydactyly (755.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\" + }, + { + "displayName": "(755.00) Polydactyly, unspecified digits", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Polydactyly (755.0)\\(755.00) Polydactyly, unspecified digits\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Polydactyly (755.0)\\" + }, + { + "displayName": "(755.01) Polydactyly of fingers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Polydactyly (755.0)\\(755.01) Polydactyly of fingers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Polydactyly (755.0)\\" + }, + { + "displayName": "(755.02) Polydactyly of toes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Polydactyly (755.0)\\(755.02) Polydactyly of toes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Polydactyly (755.0)\\" + }, + { + "displayName": "Reduction deformities of lower limb, congenital (755.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\" + }, + { + "displayName": "(755.30) Unspecified reduction deformity of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\(755.30) Unspecified reduction deformity of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\" + }, + { + "displayName": "(755.31) Transverse deficiency of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\(755.31) Transverse deficiency of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\" + }, + { + "displayName": "(755.32) Longitudinal deficiency of lower limb, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\(755.32) Longitudinal deficiency of lower limb, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\" + }, + { + "displayName": "(755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\(755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\" + }, + { + "displayName": "(755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\(755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\" + }, + { + "displayName": "(755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\(755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\" + }, + { + "displayName": "(755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\(755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\" + }, + { + "displayName": "(755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\(755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\" + }, + { + "displayName": "(755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\(755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\" + }, + { + "displayName": "(755.39) Longitudinal deficiency, phalanges, complete or partial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\(755.39) Longitudinal deficiency, phalanges, complete or partial\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of lower limb, congenital (755.3)\\" + }, + { + "displayName": "Reduction deformities of upper limb, congenital (755.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\" + }, + { + "displayName": "(755.20) Unspecified reduction deformity of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\(755.20) Unspecified reduction deformity of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\" + }, + { + "displayName": "(755.21) Transverse deficiency of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\(755.21) Transverse deficiency of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of limbs (755)\\\\Reduction deformities of upper limb, congenital (755.2)\\\\(755.21) Transverse deficiency of upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\" + }, + { + "displayName": "(755.22) Longitudinal deficiency of upper limb, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\(755.22) Longitudinal deficiency of upper limb, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of limbs (755)\\\\Reduction deformities of upper limb, congenital (755.2)\\\\(755.22) Longitudinal deficiency of upper limb, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\" + }, + { + "displayName": "(755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\(755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of limbs (755)\\\\Reduction deformities of upper limb, congenital (755.2)\\\\(755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\" + }, + { + "displayName": "(755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\(755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\" + }, + { + "displayName": "(755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\(755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\" + }, + { + "displayName": "(755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\(755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\" + }, + { + "displayName": "(755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\(755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\" + }, + { + "displayName": "(755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\(755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\" + }, + { + "displayName": "(755.29) Longitudinal deficiency, phalanges, complete or partial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\(755.29) Longitudinal deficiency, phalanges, complete or partial\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of limbs (755)\\\\Reduction deformities of upper limb, congenital (755.2)\\\\(755.29) Longitudinal deficiency, phalanges, complete or partial\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Reduction deformities of upper limb, congenital (755.2)\\" + }, + { + "displayName": "Syndactyly (755.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Syndactyly (755.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of limbs (755)\\\\Syndactyly (755.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\" + }, + { + "displayName": "(755.10) Syndactyly of multiple and unspecified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Syndactyly (755.1)\\(755.10) Syndactyly of multiple and unspecified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of limbs (755)\\\\Syndactyly (755.1)\\\\(755.10) Syndactyly of multiple and unspecified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Syndactyly (755.1)\\" + }, + { + "displayName": "(755.11) Syndactyly of fingers without fusion of bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Syndactyly (755.1)\\(755.11) Syndactyly of fingers without fusion of bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Syndactyly (755.1)\\" + }, + { + "displayName": "(755.12) Syndactyly of fingers with fusion of bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Syndactyly (755.1)\\(755.12) Syndactyly of fingers with fusion of bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of limbs (755)\\\\Syndactyly (755.1)\\\\(755.12) Syndactyly of fingers with fusion of bone\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Syndactyly (755.1)\\" + }, + { + "displayName": "(755.13) Syndactyly of toes without fusion of bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Syndactyly (755.1)\\(755.13) Syndactyly of toes without fusion of bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Syndactyly (755.1)\\" + }, + { + "displayName": "(755.14) Syndactyly of toes with fusion of bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Syndactyly (755.1)\\(755.14) Syndactyly of toes with fusion of bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of limbs (755)\\Syndactyly (755.1)\\" + }, + { + "displayName": "Other congenital anomalies of nervous system (742)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(742.0) Encephalocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\(742.0) Encephalocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\" + }, + { + "displayName": "(742.1) Microcephalus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\(742.1) Microcephalus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\" + }, + { + "displayName": "(742.2) Congenital reduction deformities of brain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\(742.2) Congenital reduction deformities of brain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\" + }, + { + "displayName": "(742.3) Congenital hydrocephalus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\(742.3) Congenital hydrocephalus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\" + }, + { + "displayName": "(742.4) Other specified congenital anomalies of brain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\(742.4) Other specified congenital anomalies of brain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of nervous system (742)\\\\(742.4) Other specified congenital anomalies of brain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\" + }, + { + "displayName": "(742.8) Other specified congenital anomalies of nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\(742.8) Other specified congenital anomalies of nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\" + }, + { + "displayName": "(742.9) Unspecified congenital anomaly of brain, spinal cord, and nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\(742.9) Unspecified congenital anomaly of brain, spinal cord, and nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of nervous system (742)\\\\(742.9) Unspecified congenital anomaly of brain, spinal cord, and nervous system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\" + }, + { + "displayName": "Other specified congenital anomalies of spinal cord (742.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\Other specified congenital anomalies of spinal cord (742.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of nervous system (742)\\\\Other specified congenital anomalies of spinal cord (742.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\" + }, + { + "displayName": "(742.51) Diastematomyelia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\Other specified congenital anomalies of spinal cord (742.5)\\(742.51) Diastematomyelia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of nervous system (742)\\\\Other specified congenital anomalies of spinal cord (742.5)\\\\(742.51) Diastematomyelia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\Other specified congenital anomalies of spinal cord (742.5)\\" + }, + { + "displayName": "(742.53) Hydromyelia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\Other specified congenital anomalies of spinal cord (742.5)\\(742.53) Hydromyelia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\Other specified congenital anomalies of spinal cord (742.5)\\" + }, + { + "displayName": "(742.59) Other specified congenital anomalies of spinal cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\Other specified congenital anomalies of spinal cord (742.5)\\(742.59) Other specified congenital anomalies of spinal cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of nervous system (742)\\\\Other specified congenital anomalies of spinal cord (742.5)\\\\(742.59) Other specified congenital anomalies of spinal cord\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of nervous system (742)\\Other specified congenital anomalies of spinal cord (742.5)\\" + }, + { + "displayName": "Other congenital anomalies of upper alimentary tract (750)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(750.0) Tongue tie", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\(750.0) Tongue tie\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\" + }, + { + "displayName": "(750.3) Tracheoesophageal fistula, esophageal atresia and stenosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\(750.3) Tracheoesophageal fistula, esophageal atresia and stenosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\(750.3) Tracheoesophageal fistula, esophageal atresia and stenosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\" + }, + { + "displayName": "(750.4) Other specified anomalies of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\(750.4) Other specified anomalies of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\(750.4) Other specified anomalies of esophagus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\" + }, + { + "displayName": "(750.5) Congenital hypertrophic pyloric stenosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\(750.5) Congenital hypertrophic pyloric stenosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\(750.5) Congenital hypertrophic pyloric stenosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\" + }, + { + "displayName": "(750.6) Congenital hiatus hernia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\(750.6) Congenital hiatus hernia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\" + }, + { + "displayName": "(750.7) Other specified anomalies of stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\(750.7) Other specified anomalies of stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\(750.7) Other specified anomalies of stomach\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\" + }, + { + "displayName": "(750.8) Other specified anomalies of upper alimentary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\(750.8) Other specified anomalies of upper alimentary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\(750.8) Other specified anomalies of upper alimentary tract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\" + }, + { + "displayName": "(750.9) Unspecified anomaly of upper alimentary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\(750.9) Unspecified anomaly of upper alimentary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\" + }, + { + "displayName": "Other congenital anomalies of tongue (750.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\Other congenital anomalies of tongue (750.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\" + }, + { + "displayName": "(750.10) Congenital anomaly of tongue, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\(750.10) Congenital anomaly of tongue, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\Other congenital anomalies of tongue (750.1)\\\\(750.10) Congenital anomaly of tongue, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\" + }, + { + "displayName": "(750.11) Aglossia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\(750.11) Aglossia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\" + }, + { + "displayName": "(750.12) Congenital adhesions of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\(750.12) Congenital adhesions of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\Other congenital anomalies of tongue (750.1)\\\\(750.12) Congenital adhesions of tongue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\" + }, + { + "displayName": "(750.13) Fissure of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\(750.13) Fissure of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\" + }, + { + "displayName": "(750.15) Macroglossia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\(750.15) Macroglossia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\Other congenital anomalies of tongue (750.1)\\\\(750.15) Macroglossia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\" + }, + { + "displayName": "(750.16) Microglossia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\(750.16) Microglossia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\" + }, + { + "displayName": "(750.19) Other congenital anomalies of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\(750.19) Other congenital anomalies of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other congenital anomalies of tongue (750.1)\\" + }, + { + "displayName": "Other specified congenital anomalies of mouth and pharynx (750.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\Other specified congenital anomalies of mouth and pharynx (750.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\" + }, + { + "displayName": "(750.21) Absence of salivary gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\(750.21) Absence of salivary gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\Other specified congenital anomalies of mouth and pharynx (750.2)\\\\(750.21) Absence of salivary gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\" + }, + { + "displayName": "(750.22) Accessory salivary gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\(750.22) Accessory salivary gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\" + }, + { + "displayName": "(750.23) Atresia, salivary duct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\(750.23) Atresia, salivary duct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\Other specified congenital anomalies of mouth and pharynx (750.2)\\\\(750.23) Atresia, salivary duct\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\" + }, + { + "displayName": "(750.24) Congenital fistula of salivary gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\(750.24) Congenital fistula of salivary gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\Other specified congenital anomalies of mouth and pharynx (750.2)\\\\(750.24) Congenital fistula of salivary gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\" + }, + { + "displayName": "(750.25) Congenital fistula of lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\(750.25) Congenital fistula of lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\" + }, + { + "displayName": "(750.26) Other specified anomalies of mouth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\(750.26) Other specified anomalies of mouth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\Other specified congenital anomalies of mouth and pharynx (750.2)\\\\(750.26) Other specified anomalies of mouth\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\" + }, + { + "displayName": "(750.27) Diverticulum of pharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\(750.27) Diverticulum of pharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital anomalies of upper alimentary tract (750)\\\\Other specified congenital anomalies of mouth and pharynx (750.2)\\\\(750.27) Diverticulum of pharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\" + }, + { + "displayName": "(750.29) Other specified anomalies of pharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\(750.29) Other specified anomalies of pharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital anomalies of upper alimentary tract (750)\\Other specified congenital anomalies of mouth and pharynx (750.2)\\" + }, + { + "displayName": "Other congenital musculoskeletal anomalies (756)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "(756.0) Anomalies of skull and face bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\(756.0) Anomalies of skull and face bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\(756.0) Anomalies of skull and face bones\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\" + }, + { + "displayName": "(756.2) Cervical rib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\(756.2) Cervical rib\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\" + }, + { + "displayName": "(756.3) Other anomalies of ribs and sternum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\(756.3) Other anomalies of ribs and sternum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\(756.3) Other anomalies of ribs and sternum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\" + }, + { + "displayName": "(756.4) Chondrodystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\(756.4) Chondrodystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\(756.4) Chondrodystrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\" + }, + { + "displayName": "(756.6) Anomalies of diaphragm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\(756.6) Anomalies of diaphragm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\" + }, + { + "displayName": "(756.9) Other and unspecified anomalies of musculoskeletal system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\(756.9) Other and unspecified anomalies of musculoskeletal system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\(756.9) Other and unspecified anomalies of musculoskeletal system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\" + }, + { + "displayName": "Anomalies of abdominal wall, congenital (756.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of abdominal wall, congenital (756.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Anomalies of abdominal wall, congenital (756.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\" + }, + { + "displayName": "(756.70) Anomaly of abdominal wall, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of abdominal wall, congenital (756.7)\\(756.70) Anomaly of abdominal wall, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of abdominal wall, congenital (756.7)\\" + }, + { + "displayName": "(756.71) Prune belly syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of abdominal wall, congenital (756.7)\\(756.71) Prune belly syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Anomalies of abdominal wall, congenital (756.7)\\\\(756.71) Prune belly syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of abdominal wall, congenital (756.7)\\" + }, + { + "displayName": "(756.72) Omphalocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of abdominal wall, congenital (756.7)\\(756.72) Omphalocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Anomalies of abdominal wall, congenital (756.7)\\\\(756.72) Omphalocele\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of abdominal wall, congenital (756.7)\\" + }, + { + "displayName": "(756.73) Gastroschisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of abdominal wall, congenital (756.7)\\(756.73) Gastroschisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Anomalies of abdominal wall, congenital (756.7)\\\\(756.73) Gastroschisis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of abdominal wall, congenital (756.7)\\" + }, + { + "displayName": "(756.79) Other congenital anomalies of abdominal wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of abdominal wall, congenital (756.7)\\(756.79) Other congenital anomalies of abdominal wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Anomalies of abdominal wall, congenital (756.7)\\\\(756.79) Other congenital anomalies of abdominal wall\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of abdominal wall, congenital (756.7)\\" + }, + { + "displayName": "Anomalies of spine, congenital (756.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Anomalies of spine, congenital (756.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\" + }, + { + "displayName": "(756.10) Anomaly of spine, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\(756.10) Anomaly of spine, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Anomalies of spine, congenital (756.1)\\\\(756.10) Anomaly of spine, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\" + }, + { + "displayName": "(756.11) Spondylolysis, lumbosacral region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\(756.11) Spondylolysis, lumbosacral region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Anomalies of spine, congenital (756.1)\\\\(756.11) Spondylolysis, lumbosacral region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\" + }, + { + "displayName": "(756.12) Spondylolisthesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\(756.12) Spondylolisthesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Anomalies of spine, congenital (756.1)\\\\(756.12) Spondylolisthesis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\" + }, + { + "displayName": "(756.13) Absence of vertebra, congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\(756.13) Absence of vertebra, congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Anomalies of spine, congenital (756.1)\\\\(756.13) Absence of vertebra, congenital\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\" + }, + { + "displayName": "(756.14) Hemivertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\(756.14) Hemivertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\" + }, + { + "displayName": "(756.15) Fusion of spine (vertebra), congenital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\(756.15) Fusion of spine (vertebra), congenital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\" + }, + { + "displayName": "(756.16) Klippel-Feil syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\(756.16) Klippel-Feil syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\" + }, + { + "displayName": "(756.17) Spina bifida occulta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\(756.17) Spina bifida occulta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\" + }, + { + "displayName": "(756.19) Other anomalies of spine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\(756.19) Other anomalies of spine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Anomalies of spine, congenital (756.1)\\" + }, + { + "displayName": "Congenital osteodystrophies (756.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\" + }, + { + "displayName": "(756.50) Congenital osteodystrophy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\(756.50) Congenital osteodystrophy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\" + }, + { + "displayName": "(756.51) Osteogenesis imperfecta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\(756.51) Osteogenesis imperfecta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\" + }, + { + "displayName": "(756.52) Osteopetrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\(756.52) Osteopetrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Congenital osteodystrophies (756.5)\\\\(756.52) Osteopetrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\" + }, + { + "displayName": "(756.53) Osteopoikilosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\(756.53) Osteopoikilosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Congenital osteodystrophies (756.5)\\\\(756.53) Osteopoikilosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\" + }, + { + "displayName": "(756.54) Polyostotic fibrous dysplasia of bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\(756.54) Polyostotic fibrous dysplasia of bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\" + }, + { + "displayName": "(756.55) Chondroectodermal dysplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\(756.55) Chondroectodermal dysplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Congenital osteodystrophies (756.5)\\\\(756.55) Chondroectodermal dysplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\" + }, + { + "displayName": "(756.56) Multiple epiphyseal dysplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\(756.56) Multiple epiphyseal dysplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Other congenital musculoskeletal anomalies (756)\\\\Congenital osteodystrophies (756.5)\\\\(756.56) Multiple epiphyseal dysplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\" + }, + { + "displayName": "(756.59) Other osteodystrophies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\(756.59) Other osteodystrophies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Congenital osteodystrophies (756.5)\\" + }, + { + "displayName": "Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\" + }, + { + "displayName": "(756.81) Absence of muscle and tendon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\\(756.81) Absence of muscle and tendon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\\" + }, + { + "displayName": "(756.82) Accessory muscle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\\(756.82) Accessory muscle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\\" + }, + { + "displayName": "(756.83) Ehlers-Danlos syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\\(756.83) Ehlers-Danlos syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\\" + }, + { + "displayName": "(756.89) Other specified anomalies of muscle, tendon, fascia, and connective tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\\(756.89) Other specified anomalies of muscle, tendon, fascia, and connective tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Other congenital musculoskeletal anomalies (756)\\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\\" + }, + { + "displayName": "Spina bifida (741)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\" + }, + { + "displayName": "Spina bifida with hydrocephalus (741.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida with hydrocephalus (741.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\" + }, + { + "displayName": "(741.00) Spina bifida with hydrocephalus, unspecified region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida with hydrocephalus (741.0)\\(741.00) Spina bifida with hydrocephalus, unspecified region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida with hydrocephalus (741.0)\\" + }, + { + "displayName": "(741.01) Spina bifida with hydrocephalus, cervical region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida with hydrocephalus (741.0)\\(741.01) Spina bifida with hydrocephalus, cervical region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida with hydrocephalus (741.0)\\" + }, + { + "displayName": "(741.02) Spina bifida with hydrocephalus, dorsal (thoracic) region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida with hydrocephalus (741.0)\\(741.02) Spina bifida with hydrocephalus, dorsal (thoracic) region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida with hydrocephalus (741.0)\\" + }, + { + "displayName": "(741.03) Spina bifida with hydrocephalus, lumbar region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida with hydrocephalus (741.0)\\(741.03) Spina bifida with hydrocephalus, lumbar region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida with hydrocephalus (741.0)\\" + }, + { + "displayName": "Spina bifida without mention of hydrocephalus (741.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida without mention of hydrocephalus (741.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\" + }, + { + "displayName": "(741.90) Spina bifida without mention of hydrocephalus, unspecified region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida without mention of hydrocephalus (741.9)\\(741.90) Spina bifida without mention of hydrocephalus, unspecified region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida without mention of hydrocephalus (741.9)\\" + }, + { + "displayName": "(741.91) Spina bifida without mention of hydrocephalus, cervical region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida without mention of hydrocephalus (741.9)\\(741.91) Spina bifida without mention of hydrocephalus, cervical region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida without mention of hydrocephalus (741.9)\\" + }, + { + "displayName": "(741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic) region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida without mention of hydrocephalus (741.9)\\(741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic) region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Congenital anomalies (740-759.99)\\\\Spina bifida (741)\\\\Spina bifida without mention of hydrocephalus (741.9)\\\\(741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic) region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida without mention of hydrocephalus (741.9)\\" + }, + { + "displayName": "(741.93) Spina bifida without mention of hydrocephalus, lumbar region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida without mention of hydrocephalus (741.9)\\(741.93) Spina bifida without mention of hydrocephalus, lumbar region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Congenital anomalies (740-759.99)\\Spina bifida (741)\\Spina bifida without mention of hydrocephalus (741.9)\\" + }, + { + "displayName": "Diseases of the blood and blood-forming organs (280-289.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Acquired hemolytic anemias (283)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Acquired hemolytic anemias (283)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\" + }, + { + "displayName": "(283.0) Autoimmune hemolytic anemias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\(283.0) Autoimmune hemolytic anemias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\" + }, + { + "displayName": "(283.2) Hemoglobinuria due to hemolysis from external causes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\(283.2) Hemoglobinuria due to hemolysis from external causes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Acquired hemolytic anemias (283)\\\\(283.2) Hemoglobinuria due to hemolysis from external causes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\" + }, + { + "displayName": "(283.9) Acquired hemolytic anemia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\(283.9) Acquired hemolytic anemia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\" + }, + { + "displayName": "Non-autoimmune hemolytic anemias (283.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\Non-autoimmune hemolytic anemias (283.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Acquired hemolytic anemias (283)\\\\Non-autoimmune hemolytic anemias (283.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\" + }, + { + "displayName": "(283.10) Non-autoimmune hemolytic anemia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\Non-autoimmune hemolytic anemias (283.1)\\(283.10) Non-autoimmune hemolytic anemia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Acquired hemolytic anemias (283)\\\\Non-autoimmune hemolytic anemias (283.1)\\\\(283.10) Non-autoimmune hemolytic anemia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\Non-autoimmune hemolytic anemias (283.1)\\" + }, + { + "displayName": "(283.11) Hemolytic-uremic syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\Non-autoimmune hemolytic anemias (283.1)\\(283.11) Hemolytic-uremic syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\Non-autoimmune hemolytic anemias (283.1)\\" + }, + { + "displayName": "(283.19) Other non-autoimmune hemolytic anemias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\Non-autoimmune hemolytic anemias (283.1)\\(283.19) Other non-autoimmune hemolytic anemias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Acquired hemolytic anemias (283)\\\\Non-autoimmune hemolytic anemias (283.1)\\\\(283.19) Other non-autoimmune hemolytic anemias\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Acquired hemolytic anemias (283)\\Non-autoimmune hemolytic anemias (283.1)\\" + }, + { + "displayName": "Aplastic anemia and other bone marrow failure syndromes (284)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Aplastic anemia and other bone marrow failure syndromes (284)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\" + }, + { + "displayName": "(284.2) Myelophthisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\(284.2) Myelophthisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Aplastic anemia and other bone marrow failure syndromes (284)\\\\(284.2) Myelophthisis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\" + }, + { + "displayName": "(284.9) Aplastic anemia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\(284.9) Aplastic anemia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Aplastic anemia and other bone marrow failure syndromes (284)\\\\(284.9) Aplastic anemia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\" + }, + { + "displayName": "Constitutional aplastic anemia (284.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Constitutional aplastic anemia (284.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\" + }, + { + "displayName": "(284.01) Constitutional red blood cell aplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Constitutional aplastic anemia (284.0)\\(284.01) Constitutional red blood cell aplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Constitutional aplastic anemia (284.0)\\" + }, + { + "displayName": "(284.09) Other constitutional aplastic anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Constitutional aplastic anemia (284.0)\\(284.09) Other constitutional aplastic anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Constitutional aplastic anemia (284.0)\\" + }, + { + "displayName": "Other specified aplastic anemias (284.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Other specified aplastic anemias (284.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\" + }, + { + "displayName": "(284.81) Red cell aplasia (acquired)(adult)(with thymoma)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Other specified aplastic anemias (284.8)\\(284.81) Red cell aplasia (acquired)(adult)(with thymoma)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Aplastic anemia and other bone marrow failure syndromes (284)\\\\Other specified aplastic anemias (284.8)\\\\(284.81) Red cell aplasia (acquired)(adult)(with thymoma)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Other specified aplastic anemias (284.8)\\" + }, + { + "displayName": "(284.89) Other specified aplastic anemias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Other specified aplastic anemias (284.8)\\(284.89) Other specified aplastic anemias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Other specified aplastic anemias (284.8)\\" + }, + { + "displayName": "Pancytopenia (284.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Pancytopenia (284.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Aplastic anemia and other bone marrow failure syndromes (284)\\\\Pancytopenia (284.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\" + }, + { + "displayName": "(284.11) Antineoplastic chemotherapy induced pancytopenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Pancytopenia (284.1)\\(284.11) Antineoplastic chemotherapy induced pancytopenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Aplastic anemia and other bone marrow failure syndromes (284)\\\\Pancytopenia (284.1)\\\\(284.11) Antineoplastic chemotherapy induced pancytopenia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Pancytopenia (284.1)\\" + }, + { + "displayName": "(284.12) Other drug-induced pancytopenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Pancytopenia (284.1)\\(284.12) Other drug-induced pancytopenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Aplastic anemia and other bone marrow failure syndromes (284)\\\\Pancytopenia (284.1)\\\\(284.12) Other drug-induced pancytopenia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Pancytopenia (284.1)\\" + }, + { + "displayName": "(284.19) Other pancytopenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Pancytopenia (284.1)\\(284.19) Other pancytopenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Aplastic anemia and other bone marrow failure syndromes (284)\\Pancytopenia (284.1)\\" + }, + { + "displayName": "Coagulation defects (286)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\" + }, + { + "displayName": "(286.0) Congenital factor VIII disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\(286.0) Congenital factor VIII disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\" + }, + { + "displayName": "(286.1) Congenital factor IX disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\(286.1) Congenital factor IX disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\" + }, + { + "displayName": "(286.2) Congenital factor XI deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\(286.2) Congenital factor XI deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Coagulation defects (286)\\\\(286.2) Congenital factor XI deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\" + }, + { + "displayName": "(286.3) Congenital deficiency of other clotting factors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\(286.3) Congenital deficiency of other clotting factors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Coagulation defects (286)\\\\(286.3) Congenital deficiency of other clotting factors\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\" + }, + { + "displayName": "(286.4) Von Willebrand's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\(286.4) Von Willebrand's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\" + }, + { + "displayName": "(286.6) Defibrination syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\(286.6) Defibrination syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Coagulation defects (286)\\\\(286.6) Defibrination syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\" + }, + { + "displayName": "(286.7) Acquired coagulation factor deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\(286.7) Acquired coagulation factor deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Coagulation defects (286)\\\\(286.7) Acquired coagulation factor deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\" + }, + { + "displayName": "(286.9) Other and unspecified coagulation defects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\(286.9) Other and unspecified coagulation defects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Coagulation defects (286)\\\\(286.9) Other and unspecified coagulation defects\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\" + }, + { + "displayName": "Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\" + }, + { + "displayName": "(286.52) Acquired hemophilia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\\(286.52) Acquired hemophilia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Coagulation defects (286)\\\\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\\\\(286.52) Acquired hemophilia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\\" + }, + { + "displayName": "(286.53) Antiphospholipid antibody with hemorrhagic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\\(286.53) Antiphospholipid antibody with hemorrhagic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\\" + }, + { + "displayName": "(286.59) Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\\(286.59) Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Coagulation defects (286)\\\\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\\\\(286.59) Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Coagulation defects (286)\\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\\" + }, + { + "displayName": "Diseases of white blood cells (288)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Diseases of white blood cells (288)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\" + }, + { + "displayName": "(288.1) Functional disorders of polymorphonuclear neutrophils", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\(288.1) Functional disorders of polymorphonuclear neutrophils\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Diseases of white blood cells (288)\\\\(288.1) Functional disorders of polymorphonuclear neutrophils\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\" + }, + { + "displayName": "(288.2) Genetic anomalies of leukocytes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\(288.2) Genetic anomalies of leukocytes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\" + }, + { + "displayName": "(288.3) Eosinophilia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\(288.3) Eosinophilia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\" + }, + { + "displayName": "(288.4) Hemophagocytic syndromes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\(288.4) Hemophagocytic syndromes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\" + }, + { + "displayName": "(288.8) Other specified disease of white blood cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\(288.8) Other specified disease of white blood cells\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\" + }, + { + "displayName": "(288.9) Unspecified disease of white blood cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\(288.9) Unspecified disease of white blood cells\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\" + }, + { + "displayName": "Decreased white blood cell count (288.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Decreased white blood cell count (288.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\" + }, + { + "displayName": "(288.50) Leukocytopenia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Decreased white blood cell count (288.5)\\(288.50) Leukocytopenia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Decreased white blood cell count (288.5)\\" + }, + { + "displayName": "(288.51) Lymphocytopenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Decreased white blood cell count (288.5)\\(288.51) Lymphocytopenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Decreased white blood cell count (288.5)\\" + }, + { + "displayName": "(288.59) Other decreased white blood cell count", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Decreased white blood cell count (288.5)\\(288.59) Other decreased white blood cell count\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Decreased white blood cell count (288.5)\\" + }, + { + "displayName": "Elevated white blood cell count (288.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Diseases of white blood cells (288)\\\\Elevated white blood cell count (288.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\" + }, + { + "displayName": "(288.60) Leukocytosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\(288.60) Leukocytosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Diseases of white blood cells (288)\\\\Elevated white blood cell count (288.6)\\\\(288.60) Leukocytosis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\" + }, + { + "displayName": "(288.61) Lymphocytosis (symptomatic)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\(288.61) Lymphocytosis (symptomatic)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\" + }, + { + "displayName": "(288.62) Leukemoid reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\(288.62) Leukemoid reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\" + }, + { + "displayName": "(288.63) Monocytosis (symptomatic)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\(288.63) Monocytosis (symptomatic)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\" + }, + { + "displayName": "(288.64) Plasmacytosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\(288.64) Plasmacytosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\" + }, + { + "displayName": "(288.65) Basophilia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\(288.65) Basophilia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\" + }, + { + "displayName": "(288.66) Bandemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\(288.66) Bandemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\" + }, + { + "displayName": "(288.69) Other elevated white blood cell count", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\(288.69) Other elevated white blood cell count\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Elevated white blood cell count (288.6)\\" + }, + { + "displayName": "Neutropenia (288.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\" + }, + { + "displayName": "(288.00) Neutropenia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\(288.00) Neutropenia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\" + }, + { + "displayName": "(288.01) Congenital neutropenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\(288.01) Congenital neutropenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\" + }, + { + "displayName": "(288.02) Cyclic neutropenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\(288.02) Cyclic neutropenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\" + }, + { + "displayName": "(288.03) Drug induced neutropenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\(288.03) Drug induced neutropenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Diseases of white blood cells (288)\\\\Neutropenia (288.0)\\\\(288.03) Drug induced neutropenia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\" + }, + { + "displayName": "(288.04) Neutropenia due to infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\(288.04) Neutropenia due to infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Diseases of white blood cells (288)\\\\Neutropenia (288.0)\\\\(288.04) Neutropenia due to infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\" + }, + { + "displayName": "(288.09) Other neutropenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\(288.09) Other neutropenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Diseases of white blood cells (288)\\\\Neutropenia (288.0)\\\\(288.09) Other neutropenia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Diseases of white blood cells (288)\\Neutropenia (288.0)\\" + }, + { + "displayName": "Hereditary hemolytic anemias (282)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\" + }, + { + "displayName": "(282.0) Hereditary spherocytosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\(282.0) Hereditary spherocytosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\(282.0) Hereditary spherocytosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\" + }, + { + "displayName": "(282.1) Hereditary elliptocytosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\(282.1) Hereditary elliptocytosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\" + }, + { + "displayName": "(282.2) Anemias due to disorders of glutathione metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\(282.2) Anemias due to disorders of glutathione metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\(282.2) Anemias due to disorders of glutathione metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\" + }, + { + "displayName": "(282.3) Other hemolytic anemias due to enzyme deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\(282.3) Other hemolytic anemias due to enzyme deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\(282.3) Other hemolytic anemias due to enzyme deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\" + }, + { + "displayName": "(282.5) Sickle-cell trait", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\(282.5) Sickle-cell trait\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\" + }, + { + "displayName": "(282.7) Other hemoglobinopathies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\(282.7) Other hemoglobinopathies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\(282.7) Other hemoglobinopathies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\" + }, + { + "displayName": "(282.8) Other specified hereditary hemolytic anemias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\(282.8) Other specified hereditary hemolytic anemias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\(282.8) Other specified hereditary hemolytic anemias\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\" + }, + { + "displayName": "(282.9) Hereditary hemolytic anemia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\(282.9) Hereditary hemolytic anemia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\" + }, + { + "displayName": "Sickle-cell disease (282.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\Sickle-cell disease (282.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\" + }, + { + "displayName": "(282.60) Sickle-cell disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\(282.60) Sickle-cell disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\Sickle-cell disease (282.6)\\\\(282.60) Sickle-cell disease, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\" + }, + { + "displayName": "(282.61) Hb-SS disease without crisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\(282.61) Hb-SS disease without crisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\Sickle-cell disease (282.6)\\\\(282.61) Hb-SS disease without crisis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\" + }, + { + "displayName": "(282.62) Hb-SS disease with crisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\(282.62) Hb-SS disease with crisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\" + }, + { + "displayName": "(282.63) Sickle-cell/Hb-C disease without crisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\(282.63) Sickle-cell/Hb-C disease without crisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\Sickle-cell disease (282.6)\\\\(282.63) Sickle-cell/Hb-C disease without crisis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\" + }, + { + "displayName": "(282.64) Sickle-cell/Hb-C disease with crisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\(282.64) Sickle-cell/Hb-C disease with crisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\Sickle-cell disease (282.6)\\\\(282.64) Sickle-cell/Hb-C disease with crisis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\" + }, + { + "displayName": "(282.68) Other sickle-cell disease without crisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\(282.68) Other sickle-cell disease without crisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\Sickle-cell disease (282.6)\\\\(282.68) Other sickle-cell disease without crisis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\" + }, + { + "displayName": "(282.69) Other sickle-cell disease with crisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\(282.69) Other sickle-cell disease with crisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Sickle-cell disease (282.6)\\" + }, + { + "displayName": "Thalassemias (282.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\" + }, + { + "displayName": "(282.40) Thalassemia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\(282.40) Thalassemia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\" + }, + { + "displayName": "(282.41) Sickle-cell thalassemia without crisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\(282.41) Sickle-cell thalassemia without crisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\" + }, + { + "displayName": "(282.42) Sickle-cell thalassemia with crisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\(282.42) Sickle-cell thalassemia with crisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\" + }, + { + "displayName": "(282.44) Beta thalassemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\(282.44) Beta thalassemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\Thalassemias (282.4)\\\\(282.44) Beta thalassemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\" + }, + { + "displayName": "(282.46) Thalassemia minor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\(282.46) Thalassemia minor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\Thalassemias (282.4)\\\\(282.46) Thalassemia minor\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\" + }, + { + "displayName": "(282.49) Other thalassemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\(282.49) Other thalassemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Hereditary hemolytic anemias (282)\\\\Thalassemias (282.4)\\\\(282.49) Other thalassemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Hereditary hemolytic anemias (282)\\Thalassemias (282.4)\\" + }, + { + "displayName": "Iron deficiency anemias (280)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Iron deficiency anemias (280)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Iron deficiency anemias (280)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\" + }, + { + "displayName": "(280.0) Iron deficiency anemia secondary to blood loss (chronic)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Iron deficiency anemias (280)\\(280.0) Iron deficiency anemia secondary to blood loss (chronic)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Iron deficiency anemias (280)\\\\(280.0) Iron deficiency anemia secondary to blood loss (chronic)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Iron deficiency anemias (280)\\" + }, + { + "displayName": "(280.1) Iron deficiency anemia secondary to inadequate dietary iron intake", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Iron deficiency anemias (280)\\(280.1) Iron deficiency anemia secondary to inadequate dietary iron intake\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Iron deficiency anemias (280)\\\\(280.1) Iron deficiency anemia secondary to inadequate dietary iron intake\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Iron deficiency anemias (280)\\" + }, + { + "displayName": "(280.8) Other specified iron deficiency anemias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Iron deficiency anemias (280)\\(280.8) Other specified iron deficiency anemias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Iron deficiency anemias (280)\\\\(280.8) Other specified iron deficiency anemias\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Iron deficiency anemias (280)\\" + }, + { + "displayName": "(280.9) Iron deficiency anemia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Iron deficiency anemias (280)\\(280.9) Iron deficiency anemia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Iron deficiency anemias (280)\\" + }, + { + "displayName": "Other and unspecified anemias (285)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\" + }, + { + "displayName": "(285.0) Sideroblastic anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\(285.0) Sideroblastic anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\" + }, + { + "displayName": "(285.1) Acute posthemorrhagic anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\(285.1) Acute posthemorrhagic anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\" + }, + { + "displayName": "(285.3) Antineoplastic chemotherapy induced anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\(285.3) Antineoplastic chemotherapy induced anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\" + }, + { + "displayName": "(285.8) Other specified anemias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\(285.8) Other specified anemias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\" + }, + { + "displayName": "(285.9) Anemia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\(285.9) Anemia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\" + }, + { + "displayName": "Anemia of chronic disease (285.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\Anemia of chronic disease (285.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\" + }, + { + "displayName": "(285.21) Anemia in chronic kidney disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\Anemia of chronic disease (285.2)\\(285.21) Anemia in chronic kidney disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\Anemia of chronic disease (285.2)\\" + }, + { + "displayName": "(285.22) Anemia in neoplastic disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\Anemia of chronic disease (285.2)\\(285.22) Anemia in neoplastic disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\Anemia of chronic disease (285.2)\\" + }, + { + "displayName": "(285.29) Anemia of other chronic disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\Anemia of chronic disease (285.2)\\(285.29) Anemia of other chronic disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other and unspecified anemias (285)\\Anemia of chronic disease (285.2)\\" + }, + { + "displayName": "Other deficiency anemias (281)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\" + }, + { + "displayName": "(281.0) Pernicious anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\(281.0) Pernicious anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\" + }, + { + "displayName": "(281.1) Other vitamin B12 deficiency anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\(281.1) Other vitamin B12 deficiency anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\" + }, + { + "displayName": "(281.2) Folate-deficiency anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\(281.2) Folate-deficiency anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\" + }, + { + "displayName": "(281.3) Other specified megaloblastic anemias not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\(281.3) Other specified megaloblastic anemias not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\" + }, + { + "displayName": "(281.4) Protein-deficiency anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\(281.4) Protein-deficiency anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\" + }, + { + "displayName": "(281.8) Anemia associated with other specified nutritional deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\(281.8) Anemia associated with other specified nutritional deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\" + }, + { + "displayName": "(281.9) Unspecified deficiency anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\(281.9) Unspecified deficiency anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other deficiency anemias (281)\\" + }, + { + "displayName": "Other diseases of blood and blood-forming organs (289)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\" + }, + { + "displayName": "(289.0) Polycythemia, secondary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\(289.0) Polycythemia, secondary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\" + }, + { + "displayName": "(289.1) Chronic lymphadenitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\(289.1) Chronic lymphadenitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\" + }, + { + "displayName": "(289.2) Nonspecific mesenteric lymphadenitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\(289.2) Nonspecific mesenteric lymphadenitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\" + }, + { + "displayName": "(289.3) Lymphadenitis, unspecified, except mesenteric", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\(289.3) Lymphadenitis, unspecified, except mesenteric\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\" + }, + { + "displayName": "(289.4) Hypersplenism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\(289.4) Hypersplenism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\" + }, + { + "displayName": "(289.6) Familial polycythemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\(289.6) Familial polycythemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\" + }, + { + "displayName": "(289.7) Methemoglobinemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\(289.7) Methemoglobinemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\" + }, + { + "displayName": "(289.9) Unspecified diseases of blood and blood-forming organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\(289.9) Unspecified diseases of blood and blood-forming organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Other diseases of blood and blood-forming organs (289)\\\\(289.9) Unspecified diseases of blood and blood-forming organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\" + }, + { + "displayName": "Other diseases of spleen (289.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other diseases of spleen (289.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\" + }, + { + "displayName": "(289.50) Disease of spleen, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other diseases of spleen (289.5)\\(289.50) Disease of spleen, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Other diseases of blood and blood-forming organs (289)\\\\Other diseases of spleen (289.5)\\\\(289.50) Disease of spleen, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other diseases of spleen (289.5)\\" + }, + { + "displayName": "(289.51) Chronic congestive splenomegaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other diseases of spleen (289.5)\\(289.51) Chronic congestive splenomegaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Other diseases of blood and blood-forming organs (289)\\\\Other diseases of spleen (289.5)\\\\(289.51) Chronic congestive splenomegaly\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other diseases of spleen (289.5)\\" + }, + { + "displayName": "(289.52) Splenic sequestration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other diseases of spleen (289.5)\\(289.52) Splenic sequestration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other diseases of spleen (289.5)\\" + }, + { + "displayName": "(289.53) Neutropenic splenomegaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other diseases of spleen (289.5)\\(289.53) Neutropenic splenomegaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other diseases of spleen (289.5)\\" + }, + { + "displayName": "(289.59) Other diseases of spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other diseases of spleen (289.5)\\(289.59) Other diseases of spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other diseases of spleen (289.5)\\" + }, + { + "displayName": "Other specified diseases of blood and blood-forming organs (289.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other specified diseases of blood and blood-forming organs (289.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\" + }, + { + "displayName": "(289.81) Primary hypercoagulable state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other specified diseases of blood and blood-forming organs (289.8)\\(289.81) Primary hypercoagulable state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Other diseases of blood and blood-forming organs (289)\\\\Other specified diseases of blood and blood-forming organs (289.8)\\\\(289.81) Primary hypercoagulable state\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other specified diseases of blood and blood-forming organs (289.8)\\" + }, + { + "displayName": "(289.82) Secondary hypercoagulable state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other specified diseases of blood and blood-forming organs (289.8)\\(289.82) Secondary hypercoagulable state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Other diseases of blood and blood-forming organs (289)\\\\Other specified diseases of blood and blood-forming organs (289.8)\\\\(289.82) Secondary hypercoagulable state\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other specified diseases of blood and blood-forming organs (289.8)\\" + }, + { + "displayName": "(289.83) Myelofibrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other specified diseases of blood and blood-forming organs (289.8)\\(289.83) Myelofibrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Other diseases of blood and blood-forming organs (289)\\\\Other specified diseases of blood and blood-forming organs (289.8)\\\\(289.83) Myelofibrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other specified diseases of blood and blood-forming organs (289.8)\\" + }, + { + "displayName": "(289.84) Heparin-induced thrombocytopenia (HIT)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other specified diseases of blood and blood-forming organs (289.8)\\(289.84) Heparin-induced thrombocytopenia (HIT)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Other diseases of blood and blood-forming organs (289)\\\\Other specified diseases of blood and blood-forming organs (289.8)\\\\(289.84) Heparin-induced thrombocytopenia (HIT)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other specified diseases of blood and blood-forming organs (289.8)\\" + }, + { + "displayName": "(289.89) Other specified diseases of blood and blood-forming organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other specified diseases of blood and blood-forming organs (289.8)\\(289.89) Other specified diseases of blood and blood-forming organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Other diseases of blood and blood-forming organs (289)\\\\Other specified diseases of blood and blood-forming organs (289.8)\\\\(289.89) Other specified diseases of blood and blood-forming organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Other diseases of blood and blood-forming organs (289)\\Other specified diseases of blood and blood-forming organs (289.8)\\" + }, + { + "displayName": "Purpura and other hemorrhagic conditions (287)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Purpura and other hemorrhagic conditions (287)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\" + }, + { + "displayName": "(287.0) Allergic purpura", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\(287.0) Allergic purpura\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Purpura and other hemorrhagic conditions (287)\\\\(287.0) Allergic purpura\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\" + }, + { + "displayName": "(287.1) Qualitative platelet defects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\(287.1) Qualitative platelet defects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\" + }, + { + "displayName": "(287.2) Other nonthrombocytopenic purpuras", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\(287.2) Other nonthrombocytopenic purpuras\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Purpura and other hemorrhagic conditions (287)\\\\(287.2) Other nonthrombocytopenic purpuras\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\" + }, + { + "displayName": "(287.5) Thrombocytopenia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\(287.5) Thrombocytopenia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Purpura and other hemorrhagic conditions (287)\\\\(287.5) Thrombocytopenia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\" + }, + { + "displayName": "(287.8) Other specified hemorrhagic conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\(287.8) Other specified hemorrhagic conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Purpura and other hemorrhagic conditions (287)\\\\(287.8) Other specified hemorrhagic conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\" + }, + { + "displayName": "(287.9) Unspecified hemorrhagic conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\(287.9) Unspecified hemorrhagic conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\" + }, + { + "displayName": "Primary thrombocytopenia (287.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Primary thrombocytopenia (287.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Purpura and other hemorrhagic conditions (287)\\\\Primary thrombocytopenia (287.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\" + }, + { + "displayName": "(287.30) Primary thrombocytopenia,unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Primary thrombocytopenia (287.3)\\(287.30) Primary thrombocytopenia,unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Primary thrombocytopenia (287.3)\\" + }, + { + "displayName": "(287.31) Immune thrombocytopenic purpura", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Primary thrombocytopenia (287.3)\\(287.31) Immune thrombocytopenic purpura\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Purpura and other hemorrhagic conditions (287)\\\\Primary thrombocytopenia (287.3)\\\\(287.31) Immune thrombocytopenic purpura\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Primary thrombocytopenia (287.3)\\" + }, + { + "displayName": "(287.32) Evans' syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Primary thrombocytopenia (287.3)\\(287.32) Evans' syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Primary thrombocytopenia (287.3)\\" + }, + { + "displayName": "(287.33) Congenital and hereditary thrombocytopenic purpura", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Primary thrombocytopenia (287.3)\\(287.33) Congenital and hereditary thrombocytopenic purpura\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Purpura and other hemorrhagic conditions (287)\\\\Primary thrombocytopenia (287.3)\\\\(287.33) Congenital and hereditary thrombocytopenic purpura\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Primary thrombocytopenia (287.3)\\" + }, + { + "displayName": "(287.39) Other primary thrombocytopenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Primary thrombocytopenia (287.3)\\(287.39) Other primary thrombocytopenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Purpura and other hemorrhagic conditions (287)\\\\Primary thrombocytopenia (287.3)\\\\(287.39) Other primary thrombocytopenia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Primary thrombocytopenia (287.3)\\" + }, + { + "displayName": "Secondary thrombocytopenia (287.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Secondary thrombocytopenia (287.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\" + }, + { + "displayName": "(287.41) Posttransfusion purpura", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Secondary thrombocytopenia (287.4)\\(287.41) Posttransfusion purpura\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Purpura and other hemorrhagic conditions (287)\\\\Secondary thrombocytopenia (287.4)\\\\(287.41) Posttransfusion purpura\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Secondary thrombocytopenia (287.4)\\" + }, + { + "displayName": "(287.49) Other secondary thrombocytopenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Secondary thrombocytopenia (287.4)\\(287.49) Other secondary thrombocytopenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\Purpura and other hemorrhagic conditions (287)\\\\Secondary thrombocytopenia (287.4)\\\\(287.49) Other secondary thrombocytopenia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the blood and blood-forming organs (280-289.99)\\Purpura and other hemorrhagic conditions (287)\\Secondary thrombocytopenia (287.4)\\" + }, + { + "displayName": "Diseases of the circulatory system (390-459.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Acute rheumatic fever (390-392.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Acute rheumatic fever (390-392.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\" + }, + { + "displayName": "(390) Rheumatic fever without mention of heart involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\(390) Rheumatic fever without mention of heart involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Acute rheumatic fever (390-392.99)\\\\(390) Rheumatic fever without mention of heart involvement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\" + }, + { + "displayName": "Rheumatic chorea (392)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic chorea (392)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\" + }, + { + "displayName": "(392.0) Rheumatic chorea with heart involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic chorea (392)\\(392.0) Rheumatic chorea with heart involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Acute rheumatic fever (390-392.99)\\\\Rheumatic chorea (392)\\\\(392.0) Rheumatic chorea with heart involvement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic chorea (392)\\" + }, + { + "displayName": "(392.9) Rheumatic chorea without mention of heart involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic chorea (392)\\(392.9) Rheumatic chorea without mention of heart involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic chorea (392)\\" + }, + { + "displayName": "Rheumatic fever with heart involvement (391)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic fever with heart involvement (391)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Acute rheumatic fever (390-392.99)\\\\Rheumatic fever with heart involvement (391)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\" + }, + { + "displayName": "(391.0) Acute rheumatic pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic fever with heart involvement (391)\\(391.0) Acute rheumatic pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic fever with heart involvement (391)\\" + }, + { + "displayName": "(391.1) Acute rheumatic endocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic fever with heart involvement (391)\\(391.1) Acute rheumatic endocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Acute rheumatic fever (390-392.99)\\\\Rheumatic fever with heart involvement (391)\\\\(391.1) Acute rheumatic endocarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic fever with heart involvement (391)\\" + }, + { + "displayName": "(391.2) Acute rheumatic myocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic fever with heart involvement (391)\\(391.2) Acute rheumatic myocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Acute rheumatic fever (390-392.99)\\\\Rheumatic fever with heart involvement (391)\\\\(391.2) Acute rheumatic myocarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic fever with heart involvement (391)\\" + }, + { + "displayName": "(391.8) Other acute rheumatic heart disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic fever with heart involvement (391)\\(391.8) Other acute rheumatic heart disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Acute rheumatic fever (390-392.99)\\\\Rheumatic fever with heart involvement (391)\\\\(391.8) Other acute rheumatic heart disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic fever with heart involvement (391)\\" + }, + { + "displayName": "(391.9) Acute rheumatic heart disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic fever with heart involvement (391)\\(391.9) Acute rheumatic heart disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Acute rheumatic fever (390-392.99)\\Rheumatic fever with heart involvement (391)\\" + }, + { + "displayName": "Cerebrovascular disease (430-438.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\" + }, + { + "displayName": "(430) Subarachnoid hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\(430) Subarachnoid hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\" + }, + { + "displayName": "(431) Intracerebral hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\(431) Intracerebral hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\" + }, + { + "displayName": "(436) Acute, but ill-defined, cerebrovascular disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\(436) Acute, but ill-defined, cerebrovascular disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\" + }, + { + "displayName": "Late effects of cerebrovascular disease (438)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\" + }, + { + "displayName": "(438.0) Late effects of cerebrovascular disease, cognitive deficits", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\(438.0) Late effects of cerebrovascular disease, cognitive deficits\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\" + }, + { + "displayName": "(438.6) Late effects of cerebrovascular disease, alterations of sensations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\(438.6) Late effects of cerebrovascular disease, alterations of sensations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\" + }, + { + "displayName": "(438.7) Late effects of cerebrovascular disease, disturbances of vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\(438.7) Late effects of cerebrovascular disease, disturbances of vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\" + }, + { + "displayName": "(438.9) Unspecified late effects of cerebrovascular disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\(438.9) Unspecified late effects of cerebrovascular disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\" + }, + { + "displayName": "Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\" + }, + { + "displayName": "(438.20) Late effects of cerebrovascular disease, hemiplegia affecting unspecified side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\\(438.20) Late effects of cerebrovascular disease, hemiplegia affecting unspecified side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Late effects of cerebrovascular disease (438)\\\\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\\\\(438.20) Late effects of cerebrovascular disease, hemiplegia affecting unspecified side\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\\" + }, + { + "displayName": "(438.21) Late effects of cerebrovascular disease, hemiplegia affecting dominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\\(438.21) Late effects of cerebrovascular disease, hemiplegia affecting dominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\\" + }, + { + "displayName": "(438.22) Late effects of cerebrovascular disease, hemiplegia affecting nondominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\\(438.22) Late effects of cerebrovascular disease, hemiplegia affecting nondominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\\" + }, + { + "displayName": "Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\" + }, + { + "displayName": "(438.40) Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\\(438.40) Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\\" + }, + { + "displayName": "(438.41) Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\\(438.41) Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\\" + }, + { + "displayName": "(438.42) Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\\(438.42) Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\\" + }, + { + "displayName": "Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\" + }, + { + "displayName": "(438.30) Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\\(438.30) Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Late effects of cerebrovascular disease (438)\\\\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\\\\(438.30) Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\\" + }, + { + "displayName": "(438.31) Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\\(438.31) Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\\" + }, + { + "displayName": "(438.32) Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\\(438.32) Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Late effects of cerebrovascular disease (438)\\\\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\\\\(438.32) Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\\" + }, + { + "displayName": "Other late effects of cerebrovascular disease (438.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\" + }, + { + "displayName": "(438.81) Other late effects of cerebrovascular disease, apraxia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\(438.81) Other late effects of cerebrovascular disease, apraxia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\" + }, + { + "displayName": "(438.82) Other late effects of cerebrovascular disease, dysphagia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\(438.82) Other late effects of cerebrovascular disease, dysphagia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\" + }, + { + "displayName": "(438.83) Other late effects of cerebrovascular disease, facial weakness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\(438.83) Other late effects of cerebrovascular disease, facial weakness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\" + }, + { + "displayName": "(438.84) Other late effects of cerebrovascular disease, ataxia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\(438.84) Other late effects of cerebrovascular disease, ataxia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\" + }, + { + "displayName": "(438.85) Other late effects of cerebrovascular disease, vertigo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\(438.85) Other late effects of cerebrovascular disease, vertigo\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\" + }, + { + "displayName": "(438.89) Other late effects of cerebrovascular disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\(438.89) Other late effects of cerebrovascular disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Late effects of cerebrovascular disease (438)\\\\Other late effects of cerebrovascular disease (438.8)\\\\(438.89) Other late effects of cerebrovascular disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other late effects of cerebrovascular disease (438.8)\\" + }, + { + "displayName": "Other paralytic syndrome as late effect of cerebrovascular disease (438.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Late effects of cerebrovascular disease (438)\\\\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\" + }, + { + "displayName": "(438.50) Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\\(438.50) Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\\" + }, + { + "displayName": "(438.51) Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\\(438.51) Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\\" + }, + { + "displayName": "(438.52) Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\\(438.52) Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\\" + }, + { + "displayName": "(438.53) Late effects of cerebrovascular disease, other paralytic syndrome, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\\(438.53) Late effects of cerebrovascular disease, other paralytic syndrome, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\\" + }, + { + "displayName": "Speech and language deficits as late effect of cerebrovascular disease (438.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\" + }, + { + "displayName": "(438.10) Late effects of cerebrovascular disease, speech and language deficit, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\(438.10) Late effects of cerebrovascular disease, speech and language deficit, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\" + }, + { + "displayName": "(438.11) Late effects of cerebrovascular disease, aphasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\(438.11) Late effects of cerebrovascular disease, aphasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\" + }, + { + "displayName": "(438.12) Late effects of cerebrovascular disease, dysphasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\(438.12) Late effects of cerebrovascular disease, dysphasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Late effects of cerebrovascular disease (438)\\\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\\\(438.12) Late effects of cerebrovascular disease, dysphasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\" + }, + { + "displayName": "(438.13) Late effects of cerebrovascular disease, dysarthria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\(438.13) Late effects of cerebrovascular disease, dysarthria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Late effects of cerebrovascular disease (438)\\\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\\\(438.13) Late effects of cerebrovascular disease, dysarthria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\" + }, + { + "displayName": "(438.19) Late effects of cerebrovascular disease, other speech and language deficits", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\(438.19) Late effects of cerebrovascular disease, other speech and language deficits\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Late effects of cerebrovascular disease (438)\\\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\\\(438.19) Late effects of cerebrovascular disease, other speech and language deficits\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Late effects of cerebrovascular disease (438)\\Speech and language deficits as late effect of cerebrovascular disease (438.1)\\" + }, + { + "displayName": "Occlusion and stenosis of precerebral arteries (433)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Occlusion and stenosis of precerebral arteries (433)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\" + }, + { + "displayName": "Occlusion and stenosis of basilar artery (433.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of basilar artery (433.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\" + }, + { + "displayName": "(433.00) Occlusion and stenosis of basilar artery without mention of cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of basilar artery (433.0)\\(433.00) Occlusion and stenosis of basilar artery without mention of cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Occlusion and stenosis of precerebral arteries (433)\\\\Occlusion and stenosis of basilar artery (433.0)\\\\(433.00) Occlusion and stenosis of basilar artery without mention of cerebral infarction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of basilar artery (433.0)\\" + }, + { + "displayName": "(433.01) Occlusion and stenosis of basilar artery with cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of basilar artery (433.0)\\(433.01) Occlusion and stenosis of basilar artery with cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Occlusion and stenosis of precerebral arteries (433)\\\\Occlusion and stenosis of basilar artery (433.0)\\\\(433.01) Occlusion and stenosis of basilar artery with cerebral infarction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of basilar artery (433.0)\\" + }, + { + "displayName": "Occlusion and stenosis of carotid artery (433.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of carotid artery (433.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\" + }, + { + "displayName": "(433.10) Occlusion and stenosis of carotid artery without mention of cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of carotid artery (433.1)\\(433.10) Occlusion and stenosis of carotid artery without mention of cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of carotid artery (433.1)\\" + }, + { + "displayName": "(433.11) Occlusion and stenosis of carotid artery with cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of carotid artery (433.1)\\(433.11) Occlusion and stenosis of carotid artery with cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of carotid artery (433.1)\\" + }, + { + "displayName": "Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\" + }, + { + "displayName": "(433.30) Occlusion and stenosis of multiple and bilateral precerebral arteries without mention of cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\\(433.30) Occlusion and stenosis of multiple and bilateral precerebral arteries without mention of cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\\" + }, + { + "displayName": "(433.31) Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\\(433.31) Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\\" + }, + { + "displayName": "Occlusion and stenosis of other specified precerebral artery (433.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of other specified precerebral artery (433.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\" + }, + { + "displayName": "(433.80) Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of other specified precerebral artery (433.8)\\(433.80) Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of other specified precerebral artery (433.8)\\" + }, + { + "displayName": "(433.81) Occlusion and stenosis of other specified precerebral artery with cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of other specified precerebral artery (433.8)\\(433.81) Occlusion and stenosis of other specified precerebral artery with cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of other specified precerebral artery (433.8)\\" + }, + { + "displayName": "Occlusion and stenosis of unspecified precerebral artery (433.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of unspecified precerebral artery (433.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\" + }, + { + "displayName": "(433.90) Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of unspecified precerebral artery (433.9)\\(433.90) Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Occlusion and stenosis of precerebral arteries (433)\\\\Occlusion and stenosis of unspecified precerebral artery (433.9)\\\\(433.90) Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of unspecified precerebral artery (433.9)\\" + }, + { + "displayName": "(433.91) Occlusion and stenosis of unspecified precerebral artery with cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of unspecified precerebral artery (433.9)\\(433.91) Occlusion and stenosis of unspecified precerebral artery with cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Occlusion and stenosis of precerebral arteries (433)\\\\Occlusion and stenosis of unspecified precerebral artery (433.9)\\\\(433.91) Occlusion and stenosis of unspecified precerebral artery with cerebral infarction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of unspecified precerebral artery (433.9)\\" + }, + { + "displayName": "Occlusion and stenosis of vertebral artery (433.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of vertebral artery (433.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\" + }, + { + "displayName": "(433.20) Occlusion and stenosis of vertebral artery without mention of cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of vertebral artery (433.2)\\(433.20) Occlusion and stenosis of vertebral artery without mention of cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Occlusion and stenosis of precerebral arteries (433)\\\\Occlusion and stenosis of vertebral artery (433.2)\\\\(433.20) Occlusion and stenosis of vertebral artery without mention of cerebral infarction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of vertebral artery (433.2)\\" + }, + { + "displayName": "(433.21) Occlusion and stenosis of vertebral artery with cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of vertebral artery (433.2)\\(433.21) Occlusion and stenosis of vertebral artery with cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion and stenosis of precerebral arteries (433)\\Occlusion and stenosis of vertebral artery (433.2)\\" + }, + { + "displayName": "Occlusion of cerebral arteries (434)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\" + }, + { + "displayName": "Cerebral artery occlusion, unspecified (434.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral artery occlusion, unspecified (434.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\" + }, + { + "displayName": "(434.90) Cerebral artery occlusion, unspecified without mention of cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral artery occlusion, unspecified (434.9)\\(434.90) Cerebral artery occlusion, unspecified without mention of cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral artery occlusion, unspecified (434.9)\\" + }, + { + "displayName": "(434.91) Cerebral artery occlusion, unspecified with cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral artery occlusion, unspecified (434.9)\\(434.91) Cerebral artery occlusion, unspecified with cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral artery occlusion, unspecified (434.9)\\" + }, + { + "displayName": "Cerebral embolism (434.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral embolism (434.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\" + }, + { + "displayName": "(434.10) Cerebral embolism without mention of cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral embolism (434.1)\\(434.10) Cerebral embolism without mention of cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Occlusion of cerebral arteries (434)\\\\Cerebral embolism (434.1)\\\\(434.10) Cerebral embolism without mention of cerebral infarction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral embolism (434.1)\\" + }, + { + "displayName": "(434.11) Cerebral embolism with cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral embolism (434.1)\\(434.11) Cerebral embolism with cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Occlusion of cerebral arteries (434)\\\\Cerebral embolism (434.1)\\\\(434.11) Cerebral embolism with cerebral infarction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral embolism (434.1)\\" + }, + { + "displayName": "Cerebral thrombosis (434.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral thrombosis (434.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\" + }, + { + "displayName": "(434.00) Cerebral thrombosis without mention of cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral thrombosis (434.0)\\(434.00) Cerebral thrombosis without mention of cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral thrombosis (434.0)\\" + }, + { + "displayName": "(434.01) Cerebral thrombosis with cerebral infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral thrombosis (434.0)\\(434.01) Cerebral thrombosis with cerebral infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Occlusion of cerebral arteries (434)\\\\Cerebral thrombosis (434.0)\\\\(434.01) Cerebral thrombosis with cerebral infarction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Occlusion of cerebral arteries (434)\\Cerebral thrombosis (434.0)\\" + }, + { + "displayName": "Other and ill-defined cerebrovascular disease (437)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\" + }, + { + "displayName": "(437.0) Cerebral atherosclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\(437.0) Cerebral atherosclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\" + }, + { + "displayName": "(437.1) Other generalized ischemic cerebrovascular disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\(437.1) Other generalized ischemic cerebrovascular disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\" + }, + { + "displayName": "(437.2) Hypertensive encephalopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\(437.2) Hypertensive encephalopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\" + }, + { + "displayName": "(437.3) Cerebral aneurysm, nonruptured", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\(437.3) Cerebral aneurysm, nonruptured\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\" + }, + { + "displayName": "(437.4) Cerebral arteritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\(437.4) Cerebral arteritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\" + }, + { + "displayName": "(437.5) Moyamoya disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\(437.5) Moyamoya disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\" + }, + { + "displayName": "(437.6) Nonpyogenic thrombosis of intracranial venous sinus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\(437.6) Nonpyogenic thrombosis of intracranial venous sinus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\" + }, + { + "displayName": "(437.7) Transient global amnesia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\(437.7) Transient global amnesia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\" + }, + { + "displayName": "(437.8) Other ill-defined cerebrovascular disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\(437.8) Other ill-defined cerebrovascular disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\" + }, + { + "displayName": "(437.9) Unspecified cerebrovascular disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\(437.9) Unspecified cerebrovascular disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Other and ill-defined cerebrovascular disease (437)\\\\(437.9) Unspecified cerebrovascular disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and ill-defined cerebrovascular disease (437)\\" + }, + { + "displayName": "Other and unspecified intracranial hemorrhage (432)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and unspecified intracranial hemorrhage (432)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Other and unspecified intracranial hemorrhage (432)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\" + }, + { + "displayName": "(432.0) Nontraumatic extradural hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and unspecified intracranial hemorrhage (432)\\(432.0) Nontraumatic extradural hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and unspecified intracranial hemorrhage (432)\\" + }, + { + "displayName": "(432.1) Subdural hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and unspecified intracranial hemorrhage (432)\\(432.1) Subdural hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and unspecified intracranial hemorrhage (432)\\" + }, + { + "displayName": "(432.9) Unspecified intracranial hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and unspecified intracranial hemorrhage (432)\\(432.9) Unspecified intracranial hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Other and unspecified intracranial hemorrhage (432)\\" + }, + { + "displayName": "Transient cerebral ischemia (435)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\" + }, + { + "displayName": "(435.0) Basilar artery syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\(435.0) Basilar artery syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Cerebrovascular disease (430-438.99)\\\\Transient cerebral ischemia (435)\\\\(435.0) Basilar artery syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\" + }, + { + "displayName": "(435.1) Vertebral artery syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\(435.1) Vertebral artery syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\" + }, + { + "displayName": "(435.2) Subclavian steal syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\(435.2) Subclavian steal syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\" + }, + { + "displayName": "(435.3) Vertebrobasilar artery syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\(435.3) Vertebrobasilar artery syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\" + }, + { + "displayName": "(435.8) Other specified transient cerebral ischemias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\(435.8) Other specified transient cerebral ischemias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\" + }, + { + "displayName": "(435.9) Unspecified transient cerebral ischemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\(435.9) Unspecified transient cerebral ischemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Cerebrovascular disease (430-438.99)\\Transient cerebral ischemia (435)\\" + }, + { + "displayName": "Chronic rheumatic heart disease (393-398.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\" + }, + { + "displayName": "(393) Chronic rheumatic pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\(393) Chronic rheumatic pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\" + }, + { + "displayName": "Diseases of aortic valve (395)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of aortic valve (395)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\" + }, + { + "displayName": "(395.0) Rheumatic aortic stenosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of aortic valve (395)\\(395.0) Rheumatic aortic stenosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of aortic valve (395)\\" + }, + { + "displayName": "(395.1) Rheumatic aortic insufficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of aortic valve (395)\\(395.1) Rheumatic aortic insufficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of aortic valve (395)\\" + }, + { + "displayName": "(395.2) Rheumatic aortic stenosis with insufficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of aortic valve (395)\\(395.2) Rheumatic aortic stenosis with insufficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of aortic valve (395)\\" + }, + { + "displayName": "(395.9) Other and unspecified rheumatic aortic diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of aortic valve (395)\\(395.9) Other and unspecified rheumatic aortic diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of aortic valve (395)\\" + }, + { + "displayName": "Diseases of mitral and aortic valves (396)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\" + }, + { + "displayName": "(396.0) Mitral valve stenosis and aortic valve stenosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\(396.0) Mitral valve stenosis and aortic valve stenosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Chronic rheumatic heart disease (393-398.99)\\\\Diseases of mitral and aortic valves (396)\\\\(396.0) Mitral valve stenosis and aortic valve stenosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\" + }, + { + "displayName": "(396.1) Mitral valve stenosis and aortic valve insufficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\(396.1) Mitral valve stenosis and aortic valve insufficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\" + }, + { + "displayName": "(396.2) Mitral valve insufficiency and aortic valve stenosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\(396.2) Mitral valve insufficiency and aortic valve stenosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\" + }, + { + "displayName": "(396.3) Mitral valve insufficiency and aortic valve insufficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\(396.3) Mitral valve insufficiency and aortic valve insufficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\" + }, + { + "displayName": "(396.8) Multiple involvement of mitral and aortic valves", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\(396.8) Multiple involvement of mitral and aortic valves\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\" + }, + { + "displayName": "(396.9) Mitral and aortic valve diseases, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\(396.9) Mitral and aortic valve diseases, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral and aortic valves (396)\\" + }, + { + "displayName": "Diseases of mitral valve (394)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral valve (394)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\" + }, + { + "displayName": "(394.0) Mitral stenosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral valve (394)\\(394.0) Mitral stenosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral valve (394)\\" + }, + { + "displayName": "(394.1) Rheumatic mitral insufficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral valve (394)\\(394.1) Rheumatic mitral insufficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral valve (394)\\" + }, + { + "displayName": "(394.2) Mitral stenosis with insufficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral valve (394)\\(394.2) Mitral stenosis with insufficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral valve (394)\\" + }, + { + "displayName": "(394.9) Other and unspecified mitral valve diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral valve (394)\\(394.9) Other and unspecified mitral valve diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of mitral valve (394)\\" + }, + { + "displayName": "Diseases of other endocardial structures (397)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of other endocardial structures (397)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Chronic rheumatic heart disease (393-398.99)\\\\Diseases of other endocardial structures (397)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\" + }, + { + "displayName": "(397.0) Diseases of tricuspid valve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of other endocardial structures (397)\\(397.0) Diseases of tricuspid valve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Chronic rheumatic heart disease (393-398.99)\\\\Diseases of other endocardial structures (397)\\\\(397.0) Diseases of tricuspid valve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of other endocardial structures (397)\\" + }, + { + "displayName": "(397.1) Rheumatic diseases of pulmonary valve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of other endocardial structures (397)\\(397.1) Rheumatic diseases of pulmonary valve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of other endocardial structures (397)\\" + }, + { + "displayName": "(397.9) Rheumatic diseases of endocardium, valve unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of other endocardial structures (397)\\(397.9) Rheumatic diseases of endocardium, valve unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Chronic rheumatic heart disease (393-398.99)\\\\Diseases of other endocardial structures (397)\\\\(397.9) Rheumatic diseases of endocardium, valve unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Diseases of other endocardial structures (397)\\" + }, + { + "displayName": "Other rheumatic heart disease (398)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Other rheumatic heart disease (398)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\" + }, + { + "displayName": "(398.0) Rheumatic myocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Other rheumatic heart disease (398)\\(398.0) Rheumatic myocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Other rheumatic heart disease (398)\\" + }, + { + "displayName": "Other and unspecified rheumatic heart diseases (398.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Other rheumatic heart disease (398)\\Other and unspecified rheumatic heart diseases (398.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Other rheumatic heart disease (398)\\" + }, + { + "displayName": "(398.90) Rheumatic heart disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Other rheumatic heart disease (398)\\Other and unspecified rheumatic heart diseases (398.9)\\(398.90) Rheumatic heart disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Other rheumatic heart disease (398)\\Other and unspecified rheumatic heart diseases (398.9)\\" + }, + { + "displayName": "(398.91) Rheumatic heart failure (congestive)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Other rheumatic heart disease (398)\\Other and unspecified rheumatic heart diseases (398.9)\\(398.91) Rheumatic heart failure (congestive)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Other rheumatic heart disease (398)\\Other and unspecified rheumatic heart diseases (398.9)\\" + }, + { + "displayName": "(398.99) Other rheumatic heart diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Other rheumatic heart disease (398)\\Other and unspecified rheumatic heart diseases (398.9)\\(398.99) Other rheumatic heart diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Chronic rheumatic heart disease (393-398.99)\\\\Other rheumatic heart disease (398)\\\\Other and unspecified rheumatic heart diseases (398.9)\\\\(398.99) Other rheumatic heart diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Chronic rheumatic heart disease (393-398.99)\\Other rheumatic heart disease (398)\\Other and unspecified rheumatic heart diseases (398.9)\\" + }, + { + "displayName": "Diseases of arteries, arterioles, and capillaries (440-449.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\" + }, + { + "displayName": "(449) Septic arterial embolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\(449) Septic arterial embolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\(449) Septic arterial embolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\" + }, + { + "displayName": "Aortic aneurysm and dissection (441)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Aortic aneurysm and dissection (441)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\" + }, + { + "displayName": "(441.1) Thoracic aneurysm, ruptured", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\(441.1) Thoracic aneurysm, ruptured\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\" + }, + { + "displayName": "(441.2) Thoracic aneurysm without mention of rupture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\(441.2) Thoracic aneurysm without mention of rupture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Aortic aneurysm and dissection (441)\\\\(441.2) Thoracic aneurysm without mention of rupture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\" + }, + { + "displayName": "(441.3) Abdominal aneurysm, ruptured", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\(441.3) Abdominal aneurysm, ruptured\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Aortic aneurysm and dissection (441)\\\\(441.3) Abdominal aneurysm, ruptured\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\" + }, + { + "displayName": "(441.4) Abdominal aneurysm without mention of rupture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\(441.4) Abdominal aneurysm without mention of rupture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Aortic aneurysm and dissection (441)\\\\(441.4) Abdominal aneurysm without mention of rupture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\" + }, + { + "displayName": "(441.5) Aortic aneurysm of unspecified site, ruptured", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\(441.5) Aortic aneurysm of unspecified site, ruptured\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\" + }, + { + "displayName": "(441.6) Thoracoabdominal aneurysm, ruptured", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\(441.6) Thoracoabdominal aneurysm, ruptured\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Aortic aneurysm and dissection (441)\\\\(441.6) Thoracoabdominal aneurysm, ruptured\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\" + }, + { + "displayName": "(441.7) Thoracoabdominal aneurysm, without mention of rupture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\(441.7) Thoracoabdominal aneurysm, without mention of rupture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Aortic aneurysm and dissection (441)\\\\(441.7) Thoracoabdominal aneurysm, without mention of rupture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\" + }, + { + "displayName": "(441.9) Aortic aneurysm of unspecified site without mention of rupture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\(441.9) Aortic aneurysm of unspecified site without mention of rupture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Aortic aneurysm and dissection (441)\\\\(441.9) Aortic aneurysm of unspecified site without mention of rupture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\" + }, + { + "displayName": "Dissecting aneurysm of aorta (441.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\Dissecting aneurysm of aorta (441.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\" + }, + { + "displayName": "(441.00) Dissection of aorta, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\Dissecting aneurysm of aorta (441.0)\\(441.00) Dissection of aorta, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Aortic aneurysm and dissection (441)\\\\Dissecting aneurysm of aorta (441.0)\\\\(441.00) Dissection of aorta, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\Dissecting aneurysm of aorta (441.0)\\" + }, + { + "displayName": "(441.01) Dissection of aorta, thoracic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\Dissecting aneurysm of aorta (441.0)\\(441.01) Dissection of aorta, thoracic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Aortic aneurysm and dissection (441)\\\\Dissecting aneurysm of aorta (441.0)\\\\(441.01) Dissection of aorta, thoracic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\Dissecting aneurysm of aorta (441.0)\\" + }, + { + "displayName": "(441.02) Dissection of aorta, abdominal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\Dissecting aneurysm of aorta (441.0)\\(441.02) Dissection of aorta, abdominal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\Dissecting aneurysm of aorta (441.0)\\" + }, + { + "displayName": "(441.03) Dissection of aorta, thoracoabdominal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\Dissecting aneurysm of aorta (441.0)\\(441.03) Dissection of aorta, thoracoabdominal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Aortic aneurysm and dissection (441)\\\\Dissecting aneurysm of aorta (441.0)\\\\(441.03) Dissection of aorta, thoracoabdominal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Aortic aneurysm and dissection (441)\\Dissecting aneurysm of aorta (441.0)\\" + }, + { + "displayName": "Arterial embolism and thrombosis (444)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\" + }, + { + "displayName": "(444.1) Embolism and thrombosis of thoracic aorta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\(444.1) Embolism and thrombosis of thoracic aorta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Arterial embolism and thrombosis (444)\\\\(444.1) Embolism and thrombosis of thoracic aorta\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\" + }, + { + "displayName": "(444.9) Embolism and thrombosis of unspecified artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\(444.9) Embolism and thrombosis of unspecified artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Arterial embolism and thrombosis (444)\\\\(444.9) Embolism and thrombosis of unspecified artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\" + }, + { + "displayName": "Embolism and thrombosis of abdominal aorta (444.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of abdominal aorta (444.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Arterial embolism and thrombosis (444)\\\\Embolism and thrombosis of abdominal aorta (444.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\" + }, + { + "displayName": "(444.09) Other arterial embolism and thrombosis of abdominal aorta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of abdominal aorta (444.0)\\(444.09) Other arterial embolism and thrombosis of abdominal aorta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of abdominal aorta (444.0)\\" + }, + { + "displayName": "Embolism and thrombosis of arteries of the extremities (444.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of arteries of the extremities (444.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\" + }, + { + "displayName": "(444.21) Arterial embolism and thrombosis of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of arteries of the extremities (444.2)\\(444.21) Arterial embolism and thrombosis of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of arteries of the extremities (444.2)\\" + }, + { + "displayName": "(444.22) Arterial embolism and thrombosis of lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of arteries of the extremities (444.2)\\(444.22) Arterial embolism and thrombosis of lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of arteries of the extremities (444.2)\\" + }, + { + "displayName": "Embolism and thrombosis of other specified artery (444.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of other specified artery (444.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\" + }, + { + "displayName": "(444.81) Embolism and thrombosis of iliac artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of other specified artery (444.8)\\(444.81) Embolism and thrombosis of iliac artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of other specified artery (444.8)\\" + }, + { + "displayName": "(444.89) Embolism and thrombosis of other specified artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of other specified artery (444.8)\\(444.89) Embolism and thrombosis of other specified artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Arterial embolism and thrombosis (444)\\Embolism and thrombosis of other specified artery (444.8)\\" + }, + { + "displayName": "Atheroembolism (445)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\" + }, + { + "displayName": "Atheroembolism Of extremities (445.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\Atheroembolism Of extremities (445.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\" + }, + { + "displayName": "(445.01) Atheroembolism of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\Atheroembolism Of extremities (445.0)\\(445.01) Atheroembolism of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Atheroembolism (445)\\\\Atheroembolism Of extremities (445.0)\\\\(445.01) Atheroembolism of upper extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\Atheroembolism Of extremities (445.0)\\" + }, + { + "displayName": "(445.02) Atheroembolism of lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\Atheroembolism Of extremities (445.0)\\(445.02) Atheroembolism of lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\Atheroembolism Of extremities (445.0)\\" + }, + { + "displayName": "Atheroembolism of other sites (445.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\Atheroembolism of other sites (445.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\" + }, + { + "displayName": "(445.81) Atheroembolism of kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\Atheroembolism of other sites (445.8)\\(445.81) Atheroembolism of kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\Atheroembolism of other sites (445.8)\\" + }, + { + "displayName": "(445.89) Atheroembolism of other site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\Atheroembolism of other sites (445.8)\\(445.89) Atheroembolism of other site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atheroembolism (445)\\Atheroembolism of other sites (445.8)\\" + }, + { + "displayName": "Atherosclerosis (440)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\" + }, + { + "displayName": "(440.0) Atherosclerosis of aorta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\(440.0) Atherosclerosis of aorta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\" + }, + { + "displayName": "(440.1) Atherosclerosis of renal artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\(440.1) Atherosclerosis of renal artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\" + }, + { + "displayName": "(440.4) Chronic total occlusion of artery of the extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\(440.4) Chronic total occlusion of artery of the extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Atherosclerosis (440)\\\\(440.4) Chronic total occlusion of artery of the extremities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\" + }, + { + "displayName": "(440.8) Atherosclerosis of other specified arteries", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\(440.8) Atherosclerosis of other specified arteries\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\" + }, + { + "displayName": "(440.9) Generalized and unspecified atherosclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\(440.9) Generalized and unspecified atherosclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Atherosclerosis (440)\\\\(440.9) Generalized and unspecified atherosclerosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\" + }, + { + "displayName": "Atherosclerosis of native arteries of the extremities (440.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Atherosclerosis (440)\\\\Atherosclerosis of native arteries of the extremities (440.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\" + }, + { + "displayName": "(440.20) Atherosclerosis of native arteries of the extremities, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\(440.20) Atherosclerosis of native arteries of the extremities, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\" + }, + { + "displayName": "(440.21) Atherosclerosis of native arteries of the extremities with intermittent claudication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\(440.21) Atherosclerosis of native arteries of the extremities with intermittent claudication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Atherosclerosis (440)\\\\Atherosclerosis of native arteries of the extremities (440.2)\\\\(440.21) Atherosclerosis of native arteries of the extremities with intermittent claudication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\" + }, + { + "displayName": "(440.22) Atherosclerosis of native arteries of the extremities with rest pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\(440.22) Atherosclerosis of native arteries of the extremities with rest pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\" + }, + { + "displayName": "(440.23) Atherosclerosis of native arteries of the extremities with ulceration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\(440.23) Atherosclerosis of native arteries of the extremities with ulceration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\" + }, + { + "displayName": "(440.24) Atherosclerosis of native arteries of the extremities with gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\(440.24) Atherosclerosis of native arteries of the extremities with gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\" + }, + { + "displayName": "(440.29) Other atherosclerosis of native arteries of the extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\(440.29) Other atherosclerosis of native arteries of the extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Atherosclerosis of native arteries of the extremities (440.2)\\" + }, + { + "displayName": "Of bypass graft of the extremities (440.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Of bypass graft of the extremities (440.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\" + }, + { + "displayName": "(440.30) Atherosclerosis of unspecified bypass graft of the extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Of bypass graft of the extremities (440.3)\\(440.30) Atherosclerosis of unspecified bypass graft of the extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Of bypass graft of the extremities (440.3)\\" + }, + { + "displayName": "(440.31) Atherosclerosis of autologous vein bypass graft of the extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Of bypass graft of the extremities (440.3)\\(440.31) Atherosclerosis of autologous vein bypass graft of the extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Atherosclerosis (440)\\\\Of bypass graft of the extremities (440.3)\\\\(440.31) Atherosclerosis of autologous vein bypass graft of the extremities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Of bypass graft of the extremities (440.3)\\" + }, + { + "displayName": "(440.32) Atherosclerosis of nonautologous biological bypass graft of the extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Of bypass graft of the extremities (440.3)\\(440.32) Atherosclerosis of nonautologous biological bypass graft of the extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Atherosclerosis (440)\\\\Of bypass graft of the extremities (440.3)\\\\(440.32) Atherosclerosis of nonautologous biological bypass graft of the extremities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Atherosclerosis (440)\\Of bypass graft of the extremities (440.3)\\" + }, + { + "displayName": "Disease of capillaries (448)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Disease of capillaries (448)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Disease of capillaries (448)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\" + }, + { + "displayName": "(448.0) Hereditary hemorrhagic telangiectasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Disease of capillaries (448)\\(448.0) Hereditary hemorrhagic telangiectasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Disease of capillaries (448)\\" + }, + { + "displayName": "(448.1) Nevus, non-neoplastic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Disease of capillaries (448)\\(448.1) Nevus, non-neoplastic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Disease of capillaries (448)\\\\(448.1) Nevus, non-neoplastic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Disease of capillaries (448)\\" + }, + { + "displayName": "(448.9) Other and unspecified capillary diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Disease of capillaries (448)\\(448.9) Other and unspecified capillary diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Disease of capillaries (448)\\\\(448.9) Other and unspecified capillary diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Disease of capillaries (448)\\" + }, + { + "displayName": "Other aneurysm (442)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\" + }, + { + "displayName": "(442.0) Aneurysm of artery of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\(442.0) Aneurysm of artery of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other aneurysm (442)\\\\(442.0) Aneurysm of artery of upper extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\" + }, + { + "displayName": "(442.1) Aneurysm of renal artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\(442.1) Aneurysm of renal artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other aneurysm (442)\\\\(442.1) Aneurysm of renal artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\" + }, + { + "displayName": "(442.2) Aneurysm of iliac artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\(442.2) Aneurysm of iliac artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\" + }, + { + "displayName": "(442.3) Aneurysm of artery of lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\(442.3) Aneurysm of artery of lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other aneurysm (442)\\\\(442.3) Aneurysm of artery of lower extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\" + }, + { + "displayName": "(442.9) Aneurysm of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\(442.9) Aneurysm of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other aneurysm (442)\\\\(442.9) Aneurysm of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\" + }, + { + "displayName": "Aneurysm of other specified artery (442.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\Aneurysm of other specified artery (442.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\" + }, + { + "displayName": "(442.81) Aneurysm of artery of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\Aneurysm of other specified artery (442.8)\\(442.81) Aneurysm of artery of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other aneurysm (442)\\\\Aneurysm of other specified artery (442.8)\\\\(442.81) Aneurysm of artery of neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\Aneurysm of other specified artery (442.8)\\" + }, + { + "displayName": "(442.82) Aneurysm of subclavian artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\Aneurysm of other specified artery (442.8)\\(442.82) Aneurysm of subclavian artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\Aneurysm of other specified artery (442.8)\\" + }, + { + "displayName": "(442.83) Aneurysm of splenic artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\Aneurysm of other specified artery (442.8)\\(442.83) Aneurysm of splenic artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other aneurysm (442)\\\\Aneurysm of other specified artery (442.8)\\\\(442.83) Aneurysm of splenic artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\Aneurysm of other specified artery (442.8)\\" + }, + { + "displayName": "(442.84) Aneurysm of other visceral artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\Aneurysm of other specified artery (442.8)\\(442.84) Aneurysm of other visceral artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other aneurysm (442)\\\\Aneurysm of other specified artery (442.8)\\\\(442.84) Aneurysm of other visceral artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\Aneurysm of other specified artery (442.8)\\" + }, + { + "displayName": "(442.89) Aneurysm of other specified artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\Aneurysm of other specified artery (442.8)\\(442.89) Aneurysm of other specified artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other aneurysm (442)\\\\Aneurysm of other specified artery (442.8)\\\\(442.89) Aneurysm of other specified artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other aneurysm (442)\\Aneurysm of other specified artery (442.8)\\" + }, + { + "displayName": "Other disorders of arteries and arterioles (447)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other disorders of arteries and arterioles (447)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\" + }, + { + "displayName": "(447.0) Arteriovenous fistula, acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\(447.0) Arteriovenous fistula, acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\" + }, + { + "displayName": "(447.1) Stricture of artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\(447.1) Stricture of artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other disorders of arteries and arterioles (447)\\\\(447.1) Stricture of artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\" + }, + { + "displayName": "(447.2) Rupture of artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\(447.2) Rupture of artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\" + }, + { + "displayName": "(447.3) Hyperplasia of renal artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\(447.3) Hyperplasia of renal artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other disorders of arteries and arterioles (447)\\\\(447.3) Hyperplasia of renal artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\" + }, + { + "displayName": "(447.4) Celiac artery compression syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\(447.4) Celiac artery compression syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other disorders of arteries and arterioles (447)\\\\(447.4) Celiac artery compression syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\" + }, + { + "displayName": "(447.5) Necrosis of artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\(447.5) Necrosis of artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\" + }, + { + "displayName": "(447.6) Arteritis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\(447.6) Arteritis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other disorders of arteries and arterioles (447)\\\\(447.6) Arteritis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\" + }, + { + "displayName": "(447.8) Other specified disorders of arteries and arterioles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\(447.8) Other specified disorders of arteries and arterioles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\" + }, + { + "displayName": "(447.9) Unspecified disorders of arteries and arterioles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\(447.9) Unspecified disorders of arteries and arterioles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\" + }, + { + "displayName": "Aortic ectasia (447.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\Aortic ectasia (447.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\" + }, + { + "displayName": "(447.70) Aortic ectasia, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\Aortic ectasia (447.7)\\(447.70) Aortic ectasia, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\Aortic ectasia (447.7)\\" + }, + { + "displayName": "(447.71) Thoracic aortic ectasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\Aortic ectasia (447.7)\\(447.71) Thoracic aortic ectasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\Aortic ectasia (447.7)\\" + }, + { + "displayName": "(447.72) Abdominal aortic ectasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\Aortic ectasia (447.7)\\(447.72) Abdominal aortic ectasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\Aortic ectasia (447.7)\\" + }, + { + "displayName": "(447.73) Thoracoabdominal aortic ectasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\Aortic ectasia (447.7)\\(447.73) Thoracoabdominal aortic ectasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other disorders of arteries and arterioles (447)\\Aortic ectasia (447.7)\\" + }, + { + "displayName": "Other peripheral vascular disease (443)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other peripheral vascular disease (443)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\" + }, + { + "displayName": "(443.0) Raynaud's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\(443.0) Raynaud's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other peripheral vascular disease (443)\\\\(443.0) Raynaud's syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\" + }, + { + "displayName": "(443.1) Thromboangiitis obliterans [Buerger's disease]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\(443.1) Thromboangiitis obliterans [Buerger's disease]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\" + }, + { + "displayName": "(443.9) Peripheral vascular disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\(443.9) Peripheral vascular disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other peripheral vascular disease (443)\\\\(443.9) Peripheral vascular disease, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\" + }, + { + "displayName": "Other arterial dissection (443.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other arterial dissection (443.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\" + }, + { + "displayName": "(443.21) Dissection of carotid artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other arterial dissection (443.2)\\(443.21) Dissection of carotid artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other peripheral vascular disease (443)\\\\Other arterial dissection (443.2)\\\\(443.21) Dissection of carotid artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other arterial dissection (443.2)\\" + }, + { + "displayName": "(443.22) Dissection of iliac artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other arterial dissection (443.2)\\(443.22) Dissection of iliac artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other peripheral vascular disease (443)\\\\Other arterial dissection (443.2)\\\\(443.22) Dissection of iliac artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other arterial dissection (443.2)\\" + }, + { + "displayName": "(443.23) Dissection of renal artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other arterial dissection (443.2)\\(443.23) Dissection of renal artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other peripheral vascular disease (443)\\\\Other arterial dissection (443.2)\\\\(443.23) Dissection of renal artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other arterial dissection (443.2)\\" + }, + { + "displayName": "(443.24) Dissection of vertebral artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other arterial dissection (443.2)\\(443.24) Dissection of vertebral artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other peripheral vascular disease (443)\\\\Other arterial dissection (443.2)\\\\(443.24) Dissection of vertebral artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other arterial dissection (443.2)\\" + }, + { + "displayName": "(443.29) Dissection of other artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other arterial dissection (443.2)\\(443.29) Dissection of other artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other arterial dissection (443.2)\\" + }, + { + "displayName": "Other specified peripheral vascular diseases (443.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other specified peripheral vascular diseases (443.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other peripheral vascular disease (443)\\\\Other specified peripheral vascular diseases (443.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\" + }, + { + "displayName": "(443.81) Peripheral angiopathy in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other specified peripheral vascular diseases (443.8)\\(443.81) Peripheral angiopathy in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other peripheral vascular disease (443)\\\\Other specified peripheral vascular diseases (443.8)\\\\(443.81) Peripheral angiopathy in diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other specified peripheral vascular diseases (443.8)\\" + }, + { + "displayName": "(443.82) Erythromelalgia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other specified peripheral vascular diseases (443.8)\\(443.82) Erythromelalgia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Other peripheral vascular disease (443)\\\\Other specified peripheral vascular diseases (443.8)\\\\(443.82) Erythromelalgia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other specified peripheral vascular diseases (443.8)\\" + }, + { + "displayName": "(443.89) Other specified peripheral vascular diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other specified peripheral vascular diseases (443.8)\\(443.89) Other specified peripheral vascular diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Other peripheral vascular disease (443)\\Other specified peripheral vascular diseases (443.8)\\" + }, + { + "displayName": "Polyarteritis nodosa and allied conditions (446)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Polyarteritis nodosa and allied conditions (446)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\" + }, + { + "displayName": "(446.0) Polyarteritis nodosa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\(446.0) Polyarteritis nodosa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\" + }, + { + "displayName": "(446.1) Acute febrile mucocutaneous lymph node syndrome [MCLS]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\(446.1) Acute febrile mucocutaneous lymph node syndrome [MCLS]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Polyarteritis nodosa and allied conditions (446)\\\\(446.1) Acute febrile mucocutaneous lymph node syndrome [MCLS]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\" + }, + { + "displayName": "(446.3) Lethal midline granuloma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\(446.3) Lethal midline granuloma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Polyarteritis nodosa and allied conditions (446)\\\\(446.3) Lethal midline granuloma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\" + }, + { + "displayName": "(446.4) Wegener's granulomatosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\(446.4) Wegener's granulomatosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Polyarteritis nodosa and allied conditions (446)\\\\(446.4) Wegener's granulomatosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\" + }, + { + "displayName": "(446.5) Giant cell arteritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\(446.5) Giant cell arteritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Polyarteritis nodosa and allied conditions (446)\\\\(446.5) Giant cell arteritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\" + }, + { + "displayName": "(446.6) Thrombotic microangiopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\(446.6) Thrombotic microangiopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\\\Polyarteritis nodosa and allied conditions (446)\\\\(446.6) Thrombotic microangiopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\" + }, + { + "displayName": "(446.7) Takayasu's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\(446.7) Takayasu's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\" + }, + { + "displayName": "Hypersensitivity angiitis (446.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\Hypersensitivity angiitis (446.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\" + }, + { + "displayName": "(446.20) Hypersensitivity angiitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\Hypersensitivity angiitis (446.2)\\(446.20) Hypersensitivity angiitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\Hypersensitivity angiitis (446.2)\\" + }, + { + "displayName": "(446.21) Goodpasture's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\Hypersensitivity angiitis (446.2)\\(446.21) Goodpasture's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\Hypersensitivity angiitis (446.2)\\" + }, + { + "displayName": "(446.29) Other specified hypersensitivity angiitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\Hypersensitivity angiitis (446.2)\\(446.29) Other specified hypersensitivity angiitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of arteries, arterioles, and capillaries (440-449.99)\\Polyarteritis nodosa and allied conditions (446)\\Hypersensitivity angiitis (446.2)\\" + }, + { + "displayName": "Diseases of pulmonary circulation (415-417.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of pulmonary circulation (415-417.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\" + }, + { + "displayName": "Acute pulmonary heart disease (415)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of pulmonary circulation (415-417.99)\\\\Acute pulmonary heart disease (415)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\" + }, + { + "displayName": "(415.0) Acute cor pulmonale", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\(415.0) Acute cor pulmonale\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\" + }, + { + "displayName": "Pulmonary embolism and infarction (415.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\Pulmonary embolism and infarction (415.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of pulmonary circulation (415-417.99)\\\\Acute pulmonary heart disease (415)\\\\Pulmonary embolism and infarction (415.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\" + }, + { + "displayName": "(415.11) Iatrogenic pulmonary embolism and infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\Pulmonary embolism and infarction (415.1)\\(415.11) Iatrogenic pulmonary embolism and infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of pulmonary circulation (415-417.99)\\\\Acute pulmonary heart disease (415)\\\\Pulmonary embolism and infarction (415.1)\\\\(415.11) Iatrogenic pulmonary embolism and infarction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\Pulmonary embolism and infarction (415.1)\\" + }, + { + "displayName": "(415.12) Septic pulmonary embolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\Pulmonary embolism and infarction (415.1)\\(415.12) Septic pulmonary embolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\Pulmonary embolism and infarction (415.1)\\" + }, + { + "displayName": "(415.13) Saddle embolus of pulmonary artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\Pulmonary embolism and infarction (415.1)\\(415.13) Saddle embolus of pulmonary artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\Pulmonary embolism and infarction (415.1)\\" + }, + { + "displayName": "(415.19) Other pulmonary embolism and infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\Pulmonary embolism and infarction (415.1)\\(415.19) Other pulmonary embolism and infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Acute pulmonary heart disease (415)\\Pulmonary embolism and infarction (415.1)\\" + }, + { + "displayName": "Chronic pulmonary heart disease (416)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Chronic pulmonary heart disease (416)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\" + }, + { + "displayName": "(416.0) Primary pulmonary hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Chronic pulmonary heart disease (416)\\(416.0) Primary pulmonary hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Chronic pulmonary heart disease (416)\\" + }, + { + "displayName": "(416.1) Kyphoscoliotic heart disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Chronic pulmonary heart disease (416)\\(416.1) Kyphoscoliotic heart disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Chronic pulmonary heart disease (416)\\" + }, + { + "displayName": "(416.2) Chronic pulmonary embolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Chronic pulmonary heart disease (416)\\(416.2) Chronic pulmonary embolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Chronic pulmonary heart disease (416)\\" + }, + { + "displayName": "(416.8) Other chronic pulmonary heart diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Chronic pulmonary heart disease (416)\\(416.8) Other chronic pulmonary heart diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Chronic pulmonary heart disease (416)\\" + }, + { + "displayName": "(416.9) Chronic pulmonary heart disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Chronic pulmonary heart disease (416)\\(416.9) Chronic pulmonary heart disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Chronic pulmonary heart disease (416)\\" + }, + { + "displayName": "Other diseases of pulmonary circulation (417)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Other diseases of pulmonary circulation (417)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\" + }, + { + "displayName": "(417.0) Arteriovenous fistula of pulmonary vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Other diseases of pulmonary circulation (417)\\(417.0) Arteriovenous fistula of pulmonary vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Other diseases of pulmonary circulation (417)\\" + }, + { + "displayName": "(417.1) Aneurysm of pulmonary artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Other diseases of pulmonary circulation (417)\\(417.1) Aneurysm of pulmonary artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Other diseases of pulmonary circulation (417)\\" + }, + { + "displayName": "(417.8) Other specified diseases of pulmonary circulation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Other diseases of pulmonary circulation (417)\\(417.8) Other specified diseases of pulmonary circulation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Other diseases of pulmonary circulation (417)\\" + }, + { + "displayName": "(417.9) Unspecified disease of pulmonary circulation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Other diseases of pulmonary circulation (417)\\(417.9) Unspecified disease of pulmonary circulation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of pulmonary circulation (415-417.99)\\\\Other diseases of pulmonary circulation (417)\\\\(417.9) Unspecified disease of pulmonary circulation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of pulmonary circulation (415-417.99)\\Other diseases of pulmonary circulation (417)\\" + }, + { + "displayName": "Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\" + }, + { + "displayName": "(452) Portal vein thrombosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\(452) Portal vein thrombosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\" + }, + { + "displayName": "Hemorrhoids (455)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\" + }, + { + "displayName": "(455.0) Internal hemorrhoids without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\(455.0) Internal hemorrhoids without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Hemorrhoids (455)\\\\(455.0) Internal hemorrhoids without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\" + }, + { + "displayName": "(455.1) Internal thrombosed hemorrhoids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\(455.1) Internal thrombosed hemorrhoids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\" + }, + { + "displayName": "(455.2) Internal hemorrhoids with other complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\(455.2) Internal hemorrhoids with other complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\" + }, + { + "displayName": "(455.3) External hemorrhoids without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\(455.3) External hemorrhoids without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\" + }, + { + "displayName": "(455.4) External thrombosed hemorrhoids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\(455.4) External thrombosed hemorrhoids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\" + }, + { + "displayName": "(455.5) External hemorrhoids with other complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\(455.5) External hemorrhoids with other complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\" + }, + { + "displayName": "(455.6) Unspecified hemorrhoids without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\(455.6) Unspecified hemorrhoids without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Hemorrhoids (455)\\\\(455.6) Unspecified hemorrhoids without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\" + }, + { + "displayName": "(455.7) Unspecified thrombosed hemorrhoids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\(455.7) Unspecified thrombosed hemorrhoids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\" + }, + { + "displayName": "(455.8) Unspecified hemorrhoids with other complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\(455.8) Unspecified hemorrhoids with other complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Hemorrhoids (455)\\\\(455.8) Unspecified hemorrhoids with other complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\" + }, + { + "displayName": "(455.9) Residual hemorrhoidal skin tags", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\(455.9) Residual hemorrhoidal skin tags\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hemorrhoids (455)\\" + }, + { + "displayName": "Hypotension (458)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Hypotension (458)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\" + }, + { + "displayName": "(458.0) Orthostatic hypotension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\(458.0) Orthostatic hypotension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Hypotension (458)\\\\(458.0) Orthostatic hypotension\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\" + }, + { + "displayName": "(458.1) Chronic hypotension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\(458.1) Chronic hypotension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\" + }, + { + "displayName": "(458.8) Other specified hypotension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\(458.8) Other specified hypotension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\" + }, + { + "displayName": "(458.9) Hypotension, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\(458.9) Hypotension, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\" + }, + { + "displayName": "Iatrogenic hypotension (458.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\Iatrogenic hypotension (458.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\" + }, + { + "displayName": "(458.21) Hypotension of hemodialysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\Iatrogenic hypotension (458.2)\\(458.21) Hypotension of hemodialysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\Iatrogenic hypotension (458.2)\\" + }, + { + "displayName": "(458.29) Other iatrogenic hypotension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\Iatrogenic hypotension (458.2)\\(458.29) Other iatrogenic hypotension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Hypotension (458)\\Iatrogenic hypotension (458.2)\\" + }, + { + "displayName": "Noninfectious disorders of lymphatic channels (457)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Noninfectious disorders of lymphatic channels (457)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Noninfectious disorders of lymphatic channels (457)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\" + }, + { + "displayName": "(457.0) Postmastectomy lymphedema syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Noninfectious disorders of lymphatic channels (457)\\(457.0) Postmastectomy lymphedema syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Noninfectious disorders of lymphatic channels (457)\\\\(457.0) Postmastectomy lymphedema syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Noninfectious disorders of lymphatic channels (457)\\" + }, + { + "displayName": "(457.1) Other lymphedema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Noninfectious disorders of lymphatic channels (457)\\(457.1) Other lymphedema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Noninfectious disorders of lymphatic channels (457)\\" + }, + { + "displayName": "(457.2) Lymphangitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Noninfectious disorders of lymphatic channels (457)\\(457.2) Lymphangitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Noninfectious disorders of lymphatic channels (457)\\" + }, + { + "displayName": "(457.8) Other noninfectious disorders of lymphatic channels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Noninfectious disorders of lymphatic channels (457)\\(457.8) Other noninfectious disorders of lymphatic channels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Noninfectious disorders of lymphatic channels (457)\\" + }, + { + "displayName": "(457.9) Unspecified noninfectious disorder of lymphatic channels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Noninfectious disorders of lymphatic channels (457)\\(457.9) Unspecified noninfectious disorder of lymphatic channels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Noninfectious disorders of lymphatic channels (457)\\" + }, + { + "displayName": "Other disorders of circulatory system (459)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\" + }, + { + "displayName": "(459.0) Hemorrhage, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\(459.0) Hemorrhage, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\" + }, + { + "displayName": "(459.2) Compression of vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\(459.2) Compression of vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other disorders of circulatory system (459)\\\\(459.2) Compression of vein\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\" + }, + { + "displayName": "(459.9) Unspecified circulatory system disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\(459.9) Unspecified circulatory system disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other disorders of circulatory system (459)\\\\(459.9) Unspecified circulatory system disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\" + }, + { + "displayName": "Chronic venous hypertension (idiopathic) (459.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Chronic venous hypertension (idiopathic) (459.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other disorders of circulatory system (459)\\\\Chronic venous hypertension (idiopathic) (459.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\" + }, + { + "displayName": "(459.30) Chronic venous hypertension without complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Chronic venous hypertension (idiopathic) (459.3)\\(459.30) Chronic venous hypertension without complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Chronic venous hypertension (idiopathic) (459.3)\\" + }, + { + "displayName": "(459.31) Chronic venous hypertension with ulcer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Chronic venous hypertension (idiopathic) (459.3)\\(459.31) Chronic venous hypertension with ulcer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Chronic venous hypertension (idiopathic) (459.3)\\" + }, + { + "displayName": "(459.32) Chronic venous hypertension with inflammation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Chronic venous hypertension (idiopathic) (459.3)\\(459.32) Chronic venous hypertension with inflammation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Chronic venous hypertension (idiopathic) (459.3)\\" + }, + { + "displayName": "(459.33) Chronic venous hypertension with ulcer and inflammation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Chronic venous hypertension (idiopathic) (459.3)\\(459.33) Chronic venous hypertension with ulcer and inflammation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Chronic venous hypertension (idiopathic) (459.3)\\" + }, + { + "displayName": "(459.39) Chronic venous hypertension with other complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Chronic venous hypertension (idiopathic) (459.3)\\(459.39) Chronic venous hypertension with other complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Chronic venous hypertension (idiopathic) (459.3)\\" + }, + { + "displayName": "Other specified disorders of circulatory system (459.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Other specified disorders of circulatory system (459.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\" + }, + { + "displayName": "(459.81) Venous (peripheral) insufficiency, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Other specified disorders of circulatory system (459.8)\\(459.81) Venous (peripheral) insufficiency, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Other specified disorders of circulatory system (459.8)\\" + }, + { + "displayName": "(459.89) Other specified disorders of circulatory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Other specified disorders of circulatory system (459.8)\\(459.89) Other specified disorders of circulatory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Other specified disorders of circulatory system (459.8)\\" + }, + { + "displayName": "Postphlebitic syndrome (459.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Postphlebitic syndrome (459.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\" + }, + { + "displayName": "(459.10) Postphlebetic syndrome without complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Postphlebitic syndrome (459.1)\\(459.10) Postphlebetic syndrome without complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other disorders of circulatory system (459)\\\\Postphlebitic syndrome (459.1)\\\\(459.10) Postphlebetic syndrome without complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Postphlebitic syndrome (459.1)\\" + }, + { + "displayName": "(459.11) Postphlebetic syndrome with ulcer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Postphlebitic syndrome (459.1)\\(459.11) Postphlebetic syndrome with ulcer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other disorders of circulatory system (459)\\\\Postphlebitic syndrome (459.1)\\\\(459.11) Postphlebetic syndrome with ulcer\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Postphlebitic syndrome (459.1)\\" + }, + { + "displayName": "(459.12) Postphlebetic syndrome with inflammation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Postphlebitic syndrome (459.1)\\(459.12) Postphlebetic syndrome with inflammation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other disorders of circulatory system (459)\\\\Postphlebitic syndrome (459.1)\\\\(459.12) Postphlebetic syndrome with inflammation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Postphlebitic syndrome (459.1)\\" + }, + { + "displayName": "(459.13) Postphlebetic syndrome with ulcer and inflammation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Postphlebitic syndrome (459.1)\\(459.13) Postphlebetic syndrome with ulcer and inflammation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Postphlebitic syndrome (459.1)\\" + }, + { + "displayName": "(459.19) Postphlebetic syndrome with other complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Postphlebitic syndrome (459.1)\\(459.19) Postphlebetic syndrome with other complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other disorders of circulatory system (459)\\\\Postphlebitic syndrome (459.1)\\\\(459.19) Postphlebetic syndrome with other complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other disorders of circulatory system (459)\\Postphlebitic syndrome (459.1)\\" + }, + { + "displayName": "Other venous embolism and thrombosis (453)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\" + }, + { + "displayName": "(453.0) Budd-chiari syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\(453.0) Budd-chiari syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\(453.0) Budd-chiari syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\" + }, + { + "displayName": "(453.1) Thrombophlebitis migrans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\(453.1) Thrombophlebitis migrans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\(453.1) Thrombophlebitis migrans\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\" + }, + { + "displayName": "(453.2) Other venous embolism and thrombosis of inferior vena cava", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\(453.2) Other venous embolism and thrombosis of inferior vena cava\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\" + }, + { + "displayName": "(453.3) Other venous embolism and thrombosis of renal vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\(453.3) Other venous embolism and thrombosis of renal vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\(453.3) Other venous embolism and thrombosis of renal vein\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\" + }, + { + "displayName": "(453.6) Venous embolism and thrombosis of superficial vessels of lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\(453.6) Venous embolism and thrombosis of superficial vessels of lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\(453.6) Venous embolism and thrombosis of superficial vessels of lower extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\" + }, + { + "displayName": "(453.9) Other venous embolism and thrombosis of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\(453.9) Other venous embolism and thrombosis of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\" + }, + { + "displayName": "Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\" + }, + { + "displayName": "(453.40) Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\\(453.40) Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\\" + }, + { + "displayName": "(453.41) Acute venous embolism and thrombosis of deep vessels of proximal lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\\(453.41) Acute venous embolism and thrombosis of deep vessels of proximal lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\\\\(453.41) Acute venous embolism and thrombosis of deep vessels of proximal lower extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\\" + }, + { + "displayName": "(453.42) Acute venous embolism and thrombosis of deep vessels of distal lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\\(453.42) Acute venous embolism and thrombosis of deep vessels of distal lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\\" + }, + { + "displayName": "Acute venous embolism and thrombosis of other specified veins (453.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Acute venous embolism and thrombosis of other specified veins (453.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\" + }, + { + "displayName": "(453.81) Acute venous embolism and thrombosis of superficial veins of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\(453.81) Acute venous embolism and thrombosis of superficial veins of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\" + }, + { + "displayName": "(453.82) Acute venous embolism and thrombosis of deep veins of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\(453.82) Acute venous embolism and thrombosis of deep veins of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Acute venous embolism and thrombosis of other specified veins (453.8)\\\\(453.82) Acute venous embolism and thrombosis of deep veins of upper extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\" + }, + { + "displayName": "(453.83) Acute venous embolism and thrombosis of upper extremity, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\(453.83) Acute venous embolism and thrombosis of upper extremity, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Acute venous embolism and thrombosis of other specified veins (453.8)\\\\(453.83) Acute venous embolism and thrombosis of upper extremity, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\" + }, + { + "displayName": "(453.84) Acute venous embolism and thrombosis of axillary veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\(453.84) Acute venous embolism and thrombosis of axillary veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\" + }, + { + "displayName": "(453.85) Acute venous embolism and thrombosis of subclavian veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\(453.85) Acute venous embolism and thrombosis of subclavian veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\" + }, + { + "displayName": "(453.86) Acute venous embolism and thrombosis of internal jugular veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\(453.86) Acute venous embolism and thrombosis of internal jugular veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\" + }, + { + "displayName": "(453.87) Acute venous embolism and thrombosis of other thoracic veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\(453.87) Acute venous embolism and thrombosis of other thoracic veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\" + }, + { + "displayName": "(453.89) Acute venous embolism and thrombosis of other specified veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\(453.89) Acute venous embolism and thrombosis of other specified veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Acute venous embolism and thrombosis of other specified veins (453.8)\\" + }, + { + "displayName": "Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\" + }, + { + "displayName": "(453.50) Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\\(453.50) Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\\\\(453.50) Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\\" + }, + { + "displayName": "(453.51) Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\\(453.51) Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\\\\(453.51) Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\\" + }, + { + "displayName": "(453.52) Chronic venous embolism and thrombosis of deep vessels of distal lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\\(453.52) Chronic venous embolism and thrombosis of deep vessels of distal lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\\\\(453.52) Chronic venous embolism and thrombosis of deep vessels of distal lower extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\\" + }, + { + "displayName": "Chronic venous embolism and thrombosis of other specified vessels (453.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\" + }, + { + "displayName": "(453.71) Chronic venous embolism and thrombosis of superficial veins of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\(453.71) Chronic venous embolism and thrombosis of superficial veins of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\\\(453.71) Chronic venous embolism and thrombosis of superficial veins of upper extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\" + }, + { + "displayName": "(453.72) Chronic venous embolism and thrombosis of deep veins of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\(453.72) Chronic venous embolism and thrombosis of deep veins of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\\\(453.72) Chronic venous embolism and thrombosis of deep veins of upper extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\" + }, + { + "displayName": "(453.73) Chronic venous embolism and thrombosis of upper extremity, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\(453.73) Chronic venous embolism and thrombosis of upper extremity, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\\\(453.73) Chronic venous embolism and thrombosis of upper extremity, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\" + }, + { + "displayName": "(453.74) Chronic venous embolism and thrombosis of axillary veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\(453.74) Chronic venous embolism and thrombosis of axillary veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\" + }, + { + "displayName": "(453.75) Chronic venous embolism and thrombosis of subclavian veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\(453.75) Chronic venous embolism and thrombosis of subclavian veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\\\(453.75) Chronic venous embolism and thrombosis of subclavian veins\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\" + }, + { + "displayName": "(453.76) Chronic venous embolism and thrombosis of internal jugular veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\(453.76) Chronic venous embolism and thrombosis of internal jugular veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Other venous embolism and thrombosis (453)\\\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\\\(453.76) Chronic venous embolism and thrombosis of internal jugular veins\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\" + }, + { + "displayName": "(453.77) Chronic venous embolism and thrombosis of other thoracic veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\(453.77) Chronic venous embolism and thrombosis of other thoracic veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\" + }, + { + "displayName": "(453.79) Chronic venous embolism and thrombosis of other specified veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\(453.79) Chronic venous embolism and thrombosis of other specified veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Other venous embolism and thrombosis (453)\\Chronic venous embolism and thrombosis of other specified vessels (453.7)\\" + }, + { + "displayName": "Phlebitis and thrombophlebitis (451)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\" + }, + { + "displayName": "(451.0) Phlebitis and thrombophlebitis of superficial vessels of lower extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\(451.0) Phlebitis and thrombophlebitis of superficial vessels of lower extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\" + }, + { + "displayName": "(451.2) Phlebitis and thrombophlebitis of lower extremities, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\(451.2) Phlebitis and thrombophlebitis of lower extremities, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\" + }, + { + "displayName": "(451.9) Phlebitis and thrombophlebitis of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\(451.9) Phlebitis and thrombophlebitis of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Phlebitis and thrombophlebitis (451)\\\\(451.9) Phlebitis and thrombophlebitis of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\" + }, + { + "displayName": "Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\" + }, + { + "displayName": "(451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\\(451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Phlebitis and thrombophlebitis (451)\\\\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\\\\(451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\\" + }, + { + "displayName": "(451.19) Phlebitis and thrombophlebitis of deep veins of lower extremities, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\\(451.19) Phlebitis and thrombophlebitis of deep veins of lower extremities, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\\" + }, + { + "displayName": "Phlebitis and thrombophlebitis of other sites (451.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of other sites (451.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Phlebitis and thrombophlebitis (451)\\\\Phlebitis and thrombophlebitis of other sites (451.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\" + }, + { + "displayName": "(451.81) Phlebitis and thrombophlebitis of iliac vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of other sites (451.8)\\(451.81) Phlebitis and thrombophlebitis of iliac vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Phlebitis and thrombophlebitis (451)\\\\Phlebitis and thrombophlebitis of other sites (451.8)\\\\(451.81) Phlebitis and thrombophlebitis of iliac vein\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of other sites (451.8)\\" + }, + { + "displayName": "(451.82) Phlebitis and thrombophlebitis of superficial veins of upper extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of other sites (451.8)\\(451.82) Phlebitis and thrombophlebitis of superficial veins of upper extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Phlebitis and thrombophlebitis (451)\\\\Phlebitis and thrombophlebitis of other sites (451.8)\\\\(451.82) Phlebitis and thrombophlebitis of superficial veins of upper extremities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of other sites (451.8)\\" + }, + { + "displayName": "(451.83) Phlebitis and thrombophlebitis of deep veins of upper extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of other sites (451.8)\\(451.83) Phlebitis and thrombophlebitis of deep veins of upper extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Phlebitis and thrombophlebitis (451)\\\\Phlebitis and thrombophlebitis of other sites (451.8)\\\\(451.83) Phlebitis and thrombophlebitis of deep veins of upper extremities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of other sites (451.8)\\" + }, + { + "displayName": "(451.84) Phlebitis and thrombophlebitis of upper extremities, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of other sites (451.8)\\(451.84) Phlebitis and thrombophlebitis of upper extremities, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of other sites (451.8)\\" + }, + { + "displayName": "(451.89) Phlebitis and thrombophlebitis of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of other sites (451.8)\\(451.89) Phlebitis and thrombophlebitis of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Phlebitis and thrombophlebitis (451)\\Phlebitis and thrombophlebitis of other sites (451.8)\\" + }, + { + "displayName": "Varicose veins of lower extremities (454)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of lower extremities (454)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\" + }, + { + "displayName": "(454.0) Varicose veins of lower extremities with ulcer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of lower extremities (454)\\(454.0) Varicose veins of lower extremities with ulcer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of lower extremities (454)\\" + }, + { + "displayName": "(454.1) Varicose veins of lower extremities with inflammation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of lower extremities (454)\\(454.1) Varicose veins of lower extremities with inflammation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of lower extremities (454)\\" + }, + { + "displayName": "(454.2) Varicose veins of lower extremities with ulcer and inflammation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of lower extremities (454)\\(454.2) Varicose veins of lower extremities with ulcer and inflammation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of lower extremities (454)\\" + }, + { + "displayName": "(454.8) Varicose veins of lower extremities with other complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of lower extremities (454)\\(454.8) Varicose veins of lower extremities with other complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Varicose veins of lower extremities (454)\\\\(454.8) Varicose veins of lower extremities with other complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of lower extremities (454)\\" + }, + { + "displayName": "(454.9) Asymptomatic varicose veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of lower extremities (454)\\(454.9) Asymptomatic varicose veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Varicose veins of lower extremities (454)\\\\(454.9) Asymptomatic varicose veins\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of lower extremities (454)\\" + }, + { + "displayName": "Varicose veins of other sites (456)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Varicose veins of other sites (456)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\" + }, + { + "displayName": "(456.0) Esophageal varices with bleeding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\(456.0) Esophageal varices with bleeding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Varicose veins of other sites (456)\\\\(456.0) Esophageal varices with bleeding\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\" + }, + { + "displayName": "(456.1) Esophageal varices without mention of bleeding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\(456.1) Esophageal varices without mention of bleeding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Varicose veins of other sites (456)\\\\(456.1) Esophageal varices without mention of bleeding\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\" + }, + { + "displayName": "(456.3) Sublingual varices", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\(456.3) Sublingual varices\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\\\Varicose veins of other sites (456)\\\\(456.3) Sublingual varices\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\" + }, + { + "displayName": "(456.4) Scrotal varices", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\(456.4) Scrotal varices\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\" + }, + { + "displayName": "(456.5) Pelvic varices", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\(456.5) Pelvic varices\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\" + }, + { + "displayName": "(456.6) Vulval varices", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\(456.6) Vulval varices\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\" + }, + { + "displayName": "(456.8) Varices of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\(456.8) Varices of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\" + }, + { + "displayName": "Esophageal varices in diseases classified elsewhere (456.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\Esophageal varices in diseases classified elsewhere (456.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\" + }, + { + "displayName": "(456.20) Esophageal varices in diseases classified elsewhere, with bleeding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\Esophageal varices in diseases classified elsewhere (456.2)\\(456.20) Esophageal varices in diseases classified elsewhere, with bleeding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\Esophageal varices in diseases classified elsewhere (456.2)\\" + }, + { + "displayName": "(456.21) Esophageal varices in diseases classified elsewhere, without mention of bleeding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\Esophageal varices in diseases classified elsewhere (456.2)\\(456.21) Esophageal varices in diseases classified elsewhere, without mention of bleeding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\\Varicose veins of other sites (456)\\Esophageal varices in diseases classified elsewhere (456.2)\\" + }, + { + "displayName": "Hypertensive disease (401-405.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\" + }, + { + "displayName": "Essential hypertension (401)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Essential hypertension (401)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\" + }, + { + "displayName": "(401.0) Malignant essential hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\(401.0) Malignant essential hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\" + }, + { + "displayName": "(401.1) Benign essential hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\(401.1) Benign essential hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\" + }, + { + "displayName": "(401.9) Unspecified essential hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\(401.9) Unspecified essential hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Essential hypertension (401)\\" + }, + { + "displayName": "Hypertensive chronic kidney disease (403)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\" + }, + { + "displayName": "Hypertensive chronic kidney disease, malignant (403.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive chronic kidney disease, malignant (403.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Hypertensive chronic kidney disease (403)\\\\Hypertensive chronic kidney disease, malignant (403.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\" + }, + { + "displayName": "(403.00) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive chronic kidney disease, malignant (403.0)\\(403.00) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Hypertensive chronic kidney disease (403)\\\\Hypertensive chronic kidney disease, malignant (403.0)\\\\(403.00) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive chronic kidney disease, malignant (403.0)\\" + }, + { + "displayName": "(403.01) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive chronic kidney disease, malignant (403.0)\\(403.01) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Hypertensive chronic kidney disease (403)\\\\Hypertensive chronic kidney disease, malignant (403.0)\\\\(403.01) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive chronic kidney disease, malignant (403.0)\\" + }, + { + "displayName": "Hypertensive renal disease, benign (403.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive renal disease, benign (403.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Hypertensive chronic kidney disease (403)\\\\Hypertensive renal disease, benign (403.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\" + }, + { + "displayName": "(403.10) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive renal disease, benign (403.1)\\(403.10) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Hypertensive chronic kidney disease (403)\\\\Hypertensive renal disease, benign (403.1)\\\\(403.10) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive renal disease, benign (403.1)\\" + }, + { + "displayName": "(403.11) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive renal disease, benign (403.1)\\(403.11) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive renal disease, benign (403.1)\\" + }, + { + "displayName": "Hypertensive renal disease, unspecified (403.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive renal disease, unspecified (403.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\" + }, + { + "displayName": "(403.90) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive renal disease, unspecified (403.9)\\(403.90) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive renal disease, unspecified (403.9)\\" + }, + { + "displayName": "(403.91) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive renal disease, unspecified (403.9)\\(403.91) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive chronic kidney disease (403)\\Hypertensive renal disease, unspecified (403.9)\\" + }, + { + "displayName": "Hypertensive heart and chronic kidney disease (404)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\" + }, + { + "displayName": "Hypertensive heart and chronic kidney disease, malignant (404.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and chronic kidney disease, malignant (404.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\" + }, + { + "displayName": "(404.00) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and chronic kidney disease, malignant (404.0)\\(404.00) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and chronic kidney disease, malignant (404.0)\\" + }, + { + "displayName": "(404.01) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and chronic kidney disease, malignant (404.0)\\(404.01) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and chronic kidney disease, malignant (404.0)\\" + }, + { + "displayName": "(404.02) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and chronic kidney disease, malignant (404.0)\\(404.02) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and chronic kidney disease, malignant (404.0)\\" + }, + { + "displayName": "(404.03) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and chronic kidney disease, malignant (404.0)\\(404.03) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and chronic kidney disease, malignant (404.0)\\" + }, + { + "displayName": "Hypertensive heart and renal disease, benign (404.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, benign (404.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\" + }, + { + "displayName": "(404.10) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, benign (404.1)\\(404.10) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, benign (404.1)\\" + }, + { + "displayName": "(404.11) Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, benign (404.1)\\(404.11) Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Hypertensive heart and chronic kidney disease (404)\\\\Hypertensive heart and renal disease, benign (404.1)\\\\(404.11) Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, benign (404.1)\\" + }, + { + "displayName": "(404.12) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, benign (404.1)\\(404.12) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Hypertensive heart and chronic kidney disease (404)\\\\Hypertensive heart and renal disease, benign (404.1)\\\\(404.12) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, benign (404.1)\\" + }, + { + "displayName": "(404.13) Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, benign (404.1)\\(404.13) Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Hypertensive heart and chronic kidney disease (404)\\\\Hypertensive heart and renal disease, benign (404.1)\\\\(404.13) Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, benign (404.1)\\" + }, + { + "displayName": "Hypertensive heart and renal disease, unspecified (404.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, unspecified (404.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\" + }, + { + "displayName": "(404.90) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, unspecified (404.9)\\(404.90) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, unspecified (404.9)\\" + }, + { + "displayName": "(404.91) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, unspecified (404.9)\\(404.91) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, unspecified (404.9)\\" + }, + { + "displayName": "(404.92) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, unspecified (404.9)\\(404.92) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, unspecified (404.9)\\" + }, + { + "displayName": "(404.93) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, unspecified (404.9)\\(404.93) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart and chronic kidney disease (404)\\Hypertensive heart and renal disease, unspecified (404.9)\\" + }, + { + "displayName": "Hypertensive heart disease (402)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Hypertensive heart disease (402)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\" + }, + { + "displayName": "Benign hypertensive heart disease (402.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Benign hypertensive heart disease (402.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\" + }, + { + "displayName": "(402.10) Benign hypertensive heart disease without heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Benign hypertensive heart disease (402.1)\\(402.10) Benign hypertensive heart disease without heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Benign hypertensive heart disease (402.1)\\" + }, + { + "displayName": "(402.11) Benign hypertensive heart disease with heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Benign hypertensive heart disease (402.1)\\(402.11) Benign hypertensive heart disease with heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Benign hypertensive heart disease (402.1)\\" + }, + { + "displayName": "Malignant hypertensive heart disease (402.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Malignant hypertensive heart disease (402.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Hypertensive heart disease (402)\\\\Malignant hypertensive heart disease (402.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\" + }, + { + "displayName": "(402.00) Malignant hypertensive heart disease without heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Malignant hypertensive heart disease (402.0)\\(402.00) Malignant hypertensive heart disease without heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Malignant hypertensive heart disease (402.0)\\" + }, + { + "displayName": "(402.01) Malignant hypertensive heart disease with heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Malignant hypertensive heart disease (402.0)\\(402.01) Malignant hypertensive heart disease with heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Malignant hypertensive heart disease (402.0)\\" + }, + { + "displayName": "Unspecified hypertensive heart disease (402.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Unspecified hypertensive heart disease (402.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\" + }, + { + "displayName": "(402.90) Unspecified hypertensive heart disease without heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Unspecified hypertensive heart disease (402.9)\\(402.90) Unspecified hypertensive heart disease without heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Unspecified hypertensive heart disease (402.9)\\" + }, + { + "displayName": "(402.91) Unspecified hypertensive heart disease with heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Unspecified hypertensive heart disease (402.9)\\(402.91) Unspecified hypertensive heart disease with heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Hypertensive heart disease (402)\\Unspecified hypertensive heart disease (402.9)\\" + }, + { + "displayName": "Secondary hypertension (405)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\" + }, + { + "displayName": "Benign secondary hypertension (405.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Benign secondary hypertension (405.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\" + }, + { + "displayName": "(405.11) Benign renovascular hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Benign secondary hypertension (405.1)\\(405.11) Benign renovascular hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Benign secondary hypertension (405.1)\\" + }, + { + "displayName": "(405.19) Other benign secondary hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Benign secondary hypertension (405.1)\\(405.19) Other benign secondary hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Benign secondary hypertension (405.1)\\" + }, + { + "displayName": "Malignant secondary hypertension (405.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Malignant secondary hypertension (405.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\" + }, + { + "displayName": "(405.01) Malignant renovascular hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Malignant secondary hypertension (405.0)\\(405.01) Malignant renovascular hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Secondary hypertension (405)\\\\Malignant secondary hypertension (405.0)\\\\(405.01) Malignant renovascular hypertension\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Malignant secondary hypertension (405.0)\\" + }, + { + "displayName": "(405.09) Other malignant secondary hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Malignant secondary hypertension (405.0)\\(405.09) Other malignant secondary hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Secondary hypertension (405)\\\\Malignant secondary hypertension (405.0)\\\\(405.09) Other malignant secondary hypertension\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Malignant secondary hypertension (405.0)\\" + }, + { + "displayName": "Unspecified secondary hypertension (405.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Unspecified secondary hypertension (405.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Secondary hypertension (405)\\\\Unspecified secondary hypertension (405.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\" + }, + { + "displayName": "(405.91) Unspecified renovascular hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Unspecified secondary hypertension (405.9)\\(405.91) Unspecified renovascular hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Hypertensive disease (401-405.99)\\\\Secondary hypertension (405)\\\\Unspecified secondary hypertension (405.9)\\\\(405.91) Unspecified renovascular hypertension\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Unspecified secondary hypertension (405.9)\\" + }, + { + "displayName": "(405.99) Other unspecified secondary hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Unspecified secondary hypertension (405.9)\\(405.99) Other unspecified secondary hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Hypertensive disease (401-405.99)\\Secondary hypertension (405)\\Unspecified secondary hypertension (405.9)\\" + }, + { + "displayName": "Ischemic heart disease (410-414.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\" + }, + { + "displayName": "(412) Old myocardial infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\(412) Old myocardial infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\" + }, + { + "displayName": "Acute myocardial infarction (410)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\" + }, + { + "displayName": "Acute myocardial infarction, of anterolateral wall (410.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of anterolateral wall (410.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\" + }, + { + "displayName": "(410.00) Acute myocardial infarction of anterolateral wall, episode of care unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of anterolateral wall (410.0)\\(410.00) Acute myocardial infarction of anterolateral wall, episode of care unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of anterolateral wall (410.0)\\" + }, + { + "displayName": "(410.01) Acute myocardial infarction of anterolateral wall, initial episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of anterolateral wall (410.0)\\(410.01) Acute myocardial infarction of anterolateral wall, initial episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of anterolateral wall (410.0)\\" + }, + { + "displayName": "(410.02) Acute myocardial infarction of anterolateral wall, subsequent episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of anterolateral wall (410.0)\\(410.02) Acute myocardial infarction of anterolateral wall, subsequent episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of anterolateral wall (410.0)\\" + }, + { + "displayName": "Acute myocardial infarction, of inferolateral wall (410.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferolateral wall (410.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\" + }, + { + "displayName": "(410.20) Acute myocardial infarction of inferolateral wall, episode of care unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferolateral wall (410.2)\\(410.20) Acute myocardial infarction of inferolateral wall, episode of care unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferolateral wall (410.2)\\" + }, + { + "displayName": "(410.21) Acute myocardial infarction of inferolateral wall, initial episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferolateral wall (410.2)\\(410.21) Acute myocardial infarction of inferolateral wall, initial episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferolateral wall (410.2)\\" + }, + { + "displayName": "(410.22) Acute myocardial infarction of inferolateral wall, subsequent episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferolateral wall (410.2)\\(410.22) Acute myocardial infarction of inferolateral wall, subsequent episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, of inferolateral wall (410.2)\\\\(410.22) Acute myocardial infarction of inferolateral wall, subsequent episode of care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferolateral wall (410.2)\\" + }, + { + "displayName": "Acute myocardial infarction, of inferoposterior wall (410.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferoposterior wall (410.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\" + }, + { + "displayName": "(410.30) Acute myocardial infarction of inferoposterior wall, episode of care unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferoposterior wall (410.3)\\(410.30) Acute myocardial infarction of inferoposterior wall, episode of care unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferoposterior wall (410.3)\\" + }, + { + "displayName": "(410.31) Acute myocardial infarction of inferoposterior wall, initial episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferoposterior wall (410.3)\\(410.31) Acute myocardial infarction of inferoposterior wall, initial episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferoposterior wall (410.3)\\" + }, + { + "displayName": "(410.32) Acute myocardial infarction of inferoposterior wall, subsequent episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferoposterior wall (410.3)\\(410.32) Acute myocardial infarction of inferoposterior wall, subsequent episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of inferoposterior wall (410.3)\\" + }, + { + "displayName": "Acute myocardial infarction, of other anterior wall (410.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other anterior wall (410.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\" + }, + { + "displayName": "(410.10) Acute myocardial infarction of other anterior wall, episode of care unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other anterior wall (410.1)\\(410.10) Acute myocardial infarction of other anterior wall, episode of care unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other anterior wall (410.1)\\" + }, + { + "displayName": "(410.11) Acute myocardial infarction of other anterior wall, initial episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other anterior wall (410.1)\\(410.11) Acute myocardial infarction of other anterior wall, initial episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other anterior wall (410.1)\\" + }, + { + "displayName": "(410.12) Acute myocardial infarction of other anterior wall, subsequent episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other anterior wall (410.1)\\(410.12) Acute myocardial infarction of other anterior wall, subsequent episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, of other anterior wall (410.1)\\\\(410.12) Acute myocardial infarction of other anterior wall, subsequent episode of care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other anterior wall (410.1)\\" + }, + { + "displayName": "Acute myocardial infarction, of other inferior wall (410.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other inferior wall (410.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, of other inferior wall (410.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\" + }, + { + "displayName": "(410.40) Acute myocardial infarction of other inferior wall, episode of care unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other inferior wall (410.4)\\(410.40) Acute myocardial infarction of other inferior wall, episode of care unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, of other inferior wall (410.4)\\\\(410.40) Acute myocardial infarction of other inferior wall, episode of care unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other inferior wall (410.4)\\" + }, + { + "displayName": "(410.41) Acute myocardial infarction of other inferior wall, initial episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other inferior wall (410.4)\\(410.41) Acute myocardial infarction of other inferior wall, initial episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, of other inferior wall (410.4)\\\\(410.41) Acute myocardial infarction of other inferior wall, initial episode of care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other inferior wall (410.4)\\" + }, + { + "displayName": "(410.42) Acute myocardial infarction of other inferior wall, subsequent episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other inferior wall (410.4)\\(410.42) Acute myocardial infarction of other inferior wall, subsequent episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, of other inferior wall (410.4)\\\\(410.42) Acute myocardial infarction of other inferior wall, subsequent episode of care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other inferior wall (410.4)\\" + }, + { + "displayName": "Acute myocardial infarction, of other lateral wall (410.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other lateral wall (410.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, of other lateral wall (410.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\" + }, + { + "displayName": "(410.50) Acute myocardial infarction of other lateral wall, episode of care unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other lateral wall (410.5)\\(410.50) Acute myocardial infarction of other lateral wall, episode of care unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other lateral wall (410.5)\\" + }, + { + "displayName": "(410.51) Acute myocardial infarction of other lateral wall, initial episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other lateral wall (410.5)\\(410.51) Acute myocardial infarction of other lateral wall, initial episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other lateral wall (410.5)\\" + }, + { + "displayName": "(410.52) Acute myocardial infarction of other lateral wall, subsequent episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other lateral wall (410.5)\\(410.52) Acute myocardial infarction of other lateral wall, subsequent episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other lateral wall (410.5)\\" + }, + { + "displayName": "Acute myocardial infarction, of other specified sites (410.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other specified sites (410.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\" + }, + { + "displayName": "(410.80) Acute myocardial infarction of other specified sites, episode of care unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other specified sites (410.8)\\(410.80) Acute myocardial infarction of other specified sites, episode of care unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other specified sites (410.8)\\" + }, + { + "displayName": "(410.81) Acute myocardial infarction of other specified sites, initial episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other specified sites (410.8)\\(410.81) Acute myocardial infarction of other specified sites, initial episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other specified sites (410.8)\\" + }, + { + "displayName": "(410.82) Acute myocardial infarction of other specified sites, subsequent episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other specified sites (410.8)\\(410.82) Acute myocardial infarction of other specified sites, subsequent episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, of other specified sites (410.8)\\" + }, + { + "displayName": "Acute myocardial infarction, subendocardial infarction (410.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, subendocardial infarction (410.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, subendocardial infarction (410.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\" + }, + { + "displayName": "(410.70) Subendocardial infarction, episode of care unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, subendocardial infarction (410.7)\\(410.70) Subendocardial infarction, episode of care unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, subendocardial infarction (410.7)\\" + }, + { + "displayName": "(410.71) Subendocardial infarction, initial episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, subendocardial infarction (410.7)\\(410.71) Subendocardial infarction, initial episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, subendocardial infarction (410.7)\\" + }, + { + "displayName": "(410.72) Subendocardial infarction, subsequent episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, subendocardial infarction (410.7)\\(410.72) Subendocardial infarction, subsequent episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, subendocardial infarction (410.7)\\\\(410.72) Subendocardial infarction, subsequent episode of care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, subendocardial infarction (410.7)\\" + }, + { + "displayName": "Acute myocardial infarction, true posterior wall infarction (410.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, true posterior wall infarction (410.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, true posterior wall infarction (410.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\" + }, + { + "displayName": "(410.60) True posterior wall infarction, episode of care unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, true posterior wall infarction (410.6)\\(410.60) True posterior wall infarction, episode of care unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, true posterior wall infarction (410.6)\\" + }, + { + "displayName": "(410.61) True posterior wall infarction, initial episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, true posterior wall infarction (410.6)\\(410.61) True posterior wall infarction, initial episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, true posterior wall infarction (410.6)\\\\(410.61) True posterior wall infarction, initial episode of care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, true posterior wall infarction (410.6)\\" + }, + { + "displayName": "(410.62) True posterior wall infarction, subsequent episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, true posterior wall infarction (410.6)\\(410.62) True posterior wall infarction, subsequent episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, true posterior wall infarction (410.6)\\\\(410.62) True posterior wall infarction, subsequent episode of care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, true posterior wall infarction (410.6)\\" + }, + { + "displayName": "Acute myocardial infarction, unspecified site (410.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, unspecified site (410.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, unspecified site (410.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\" + }, + { + "displayName": "(410.90) Acute myocardial infarction of unspecified site, episode of care unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, unspecified site (410.9)\\(410.90) Acute myocardial infarction of unspecified site, episode of care unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Acute myocardial infarction (410)\\\\Acute myocardial infarction, unspecified site (410.9)\\\\(410.90) Acute myocardial infarction of unspecified site, episode of care unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, unspecified site (410.9)\\" + }, + { + "displayName": "(410.91) Acute myocardial infarction of unspecified site, initial episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, unspecified site (410.9)\\(410.91) Acute myocardial infarction of unspecified site, initial episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, unspecified site (410.9)\\" + }, + { + "displayName": "(410.92) Acute myocardial infarction of unspecified site, subsequent episode of care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, unspecified site (410.9)\\(410.92) Acute myocardial infarction of unspecified site, subsequent episode of care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Acute myocardial infarction (410)\\Acute myocardial infarction, unspecified site (410.9)\\" + }, + { + "displayName": "Angina pectoris (413)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Angina pectoris (413)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\" + }, + { + "displayName": "(413.0) Angina decubitus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Angina pectoris (413)\\(413.0) Angina decubitus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Angina pectoris (413)\\" + }, + { + "displayName": "(413.1) Prinzmetal angina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Angina pectoris (413)\\(413.1) Prinzmetal angina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Angina pectoris (413)\\\\(413.1) Prinzmetal angina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Angina pectoris (413)\\" + }, + { + "displayName": "(413.9) Other and unspecified angina pectoris", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Angina pectoris (413)\\(413.9) Other and unspecified angina pectoris\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Angina pectoris (413)\\\\(413.9) Other and unspecified angina pectoris\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Angina pectoris (413)\\" + }, + { + "displayName": "Other acute and subacute forms of ischemic heart disease (411)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other acute and subacute forms of ischemic heart disease (411)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other acute and subacute forms of ischemic heart disease (411)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\" + }, + { + "displayName": "(411.0) Postmyocardial infarction syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other acute and subacute forms of ischemic heart disease (411)\\(411.0) Postmyocardial infarction syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other acute and subacute forms of ischemic heart disease (411)\\\\(411.0) Postmyocardial infarction syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other acute and subacute forms of ischemic heart disease (411)\\" + }, + { + "displayName": "(411.1) Intermediate coronary syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other acute and subacute forms of ischemic heart disease (411)\\(411.1) Intermediate coronary syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other acute and subacute forms of ischemic heart disease (411)\\" + }, + { + "displayName": "Other acute and subacute forms of ischemic heart disease (411.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other acute and subacute forms of ischemic heart disease (411)\\Other acute and subacute forms of ischemic heart disease (411.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other acute and subacute forms of ischemic heart disease (411)\\\\Other acute and subacute forms of ischemic heart disease (411.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other acute and subacute forms of ischemic heart disease (411)\\" + }, + { + "displayName": "(411.81) Acute coronary occlusion without myocardial infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other acute and subacute forms of ischemic heart disease (411)\\Other acute and subacute forms of ischemic heart disease (411.8)\\(411.81) Acute coronary occlusion without myocardial infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other acute and subacute forms of ischemic heart disease (411)\\\\Other acute and subacute forms of ischemic heart disease (411.8)\\\\(411.81) Acute coronary occlusion without myocardial infarction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other acute and subacute forms of ischemic heart disease (411)\\Other acute and subacute forms of ischemic heart disease (411.8)\\" + }, + { + "displayName": "(411.89) Other acute and subacute forms of ischemic heart disease, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other acute and subacute forms of ischemic heart disease (411)\\Other acute and subacute forms of ischemic heart disease (411.8)\\(411.89) Other acute and subacute forms of ischemic heart disease, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other acute and subacute forms of ischemic heart disease (411)\\\\Other acute and subacute forms of ischemic heart disease (411.8)\\\\(411.89) Other acute and subacute forms of ischemic heart disease, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other acute and subacute forms of ischemic heart disease (411)\\Other acute and subacute forms of ischemic heart disease (411.8)\\" + }, + { + "displayName": "Other forms of chronic ischemic heart disease (414)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\" + }, + { + "displayName": "(414.2) Chronic total occlusion of coronary artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\(414.2) Chronic total occlusion of coronary artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other forms of chronic ischemic heart disease (414)\\\\(414.2) Chronic total occlusion of coronary artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\" + }, + { + "displayName": "(414.3) Coronary atherosclerosis due to lipid rich plaque", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\(414.3) Coronary atherosclerosis due to lipid rich plaque\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\" + }, + { + "displayName": "(414.8) Other specified forms of chronic ischemic heart disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\(414.8) Other specified forms of chronic ischemic heart disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other forms of chronic ischemic heart disease (414)\\\\(414.8) Other specified forms of chronic ischemic heart disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\" + }, + { + "displayName": "(414.9) Chronic ischemic heart disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\(414.9) Chronic ischemic heart disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\" + }, + { + "displayName": "Aneurysm and dissection of heart (414.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Aneurysm and dissection of heart (414.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other forms of chronic ischemic heart disease (414)\\\\Aneurysm and dissection of heart (414.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\" + }, + { + "displayName": "(414.10) Aneurysm of heart (wall)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Aneurysm and dissection of heart (414.1)\\(414.10) Aneurysm of heart (wall)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other forms of chronic ischemic heart disease (414)\\\\Aneurysm and dissection of heart (414.1)\\\\(414.10) Aneurysm of heart (wall)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Aneurysm and dissection of heart (414.1)\\" + }, + { + "displayName": "(414.11) Aneurysm of coronary vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Aneurysm and dissection of heart (414.1)\\(414.11) Aneurysm of coronary vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Aneurysm and dissection of heart (414.1)\\" + }, + { + "displayName": "(414.12) Dissection of coronary artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Aneurysm and dissection of heart (414.1)\\(414.12) Dissection of coronary artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other forms of chronic ischemic heart disease (414)\\\\Aneurysm and dissection of heart (414.1)\\\\(414.12) Dissection of coronary artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Aneurysm and dissection of heart (414.1)\\" + }, + { + "displayName": "(414.19) Other aneurysm of heart", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Aneurysm and dissection of heart (414.1)\\(414.19) Other aneurysm of heart\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Aneurysm and dissection of heart (414.1)\\" + }, + { + "displayName": "Coronary atherosclerosis (414.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other forms of chronic ischemic heart disease (414)\\\\Coronary atherosclerosis (414.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\" + }, + { + "displayName": "(414.00) Coronary atherosclerosis of unspecified type of vessel, native or graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\(414.00) Coronary atherosclerosis of unspecified type of vessel, native or graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other forms of chronic ischemic heart disease (414)\\\\Coronary atherosclerosis (414.0)\\\\(414.00) Coronary atherosclerosis of unspecified type of vessel, native or graft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\" + }, + { + "displayName": "(414.01) Coronary atherosclerosis of native coronary artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\(414.01) Coronary atherosclerosis of native coronary artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\" + }, + { + "displayName": "(414.02) Coronary atherosclerosis of autologous vein bypass graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\(414.02) Coronary atherosclerosis of autologous vein bypass graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Ischemic heart disease (410-414.99)\\\\Other forms of chronic ischemic heart disease (414)\\\\Coronary atherosclerosis (414.0)\\\\(414.02) Coronary atherosclerosis of autologous vein bypass graft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\" + }, + { + "displayName": "(414.03) Coronary atherosclerosis of nonautologous biological bypass graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\(414.03) Coronary atherosclerosis of nonautologous biological bypass graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\" + }, + { + "displayName": "(414.04) Coronary atherosclerosis of artery bypass graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\(414.04) Coronary atherosclerosis of artery bypass graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\" + }, + { + "displayName": "(414.05) Coronary atherosclerosis of unspecified bypass graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\(414.05) Coronary atherosclerosis of unspecified bypass graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\" + }, + { + "displayName": "(414.06) Coronary atherosclerosis of native coronary artery of transplanted heart", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\(414.06) Coronary atherosclerosis of native coronary artery of transplanted heart\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\" + }, + { + "displayName": "(414.07) Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\(414.07) Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Ischemic heart disease (410-414.99)\\Other forms of chronic ischemic heart disease (414)\\Coronary atherosclerosis (414.0)\\" + }, + { + "displayName": "Other forms of heart disease (420-429.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\" + }, + { + "displayName": "Acute and subacute endocarditis (421)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute and subacute endocarditis (421)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Acute and subacute endocarditis (421)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\" + }, + { + "displayName": "(421.0) Acute and subacute bacterial endocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute and subacute endocarditis (421)\\(421.0) Acute and subacute bacterial endocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Acute and subacute endocarditis (421)\\\\(421.0) Acute and subacute bacterial endocarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute and subacute endocarditis (421)\\" + }, + { + "displayName": "(421.1) Acute and subacute infective endocarditis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute and subacute endocarditis (421)\\(421.1) Acute and subacute infective endocarditis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Acute and subacute endocarditis (421)\\\\(421.1) Acute and subacute infective endocarditis in diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute and subacute endocarditis (421)\\" + }, + { + "displayName": "(421.9) Acute endocarditis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute and subacute endocarditis (421)\\(421.9) Acute endocarditis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute and subacute endocarditis (421)\\" + }, + { + "displayName": "Acute myocarditis (422)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\" + }, + { + "displayName": "(422.0) Acute myocarditis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\(422.0) Acute myocarditis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\" + }, + { + "displayName": "Other and unspecified acute myocarditis (422.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\Other and unspecified acute myocarditis (422.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\" + }, + { + "displayName": "(422.90) Acute myocarditis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\Other and unspecified acute myocarditis (422.9)\\(422.90) Acute myocarditis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\Other and unspecified acute myocarditis (422.9)\\" + }, + { + "displayName": "(422.91) Idiopathic myocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\Other and unspecified acute myocarditis (422.9)\\(422.91) Idiopathic myocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Acute myocarditis (422)\\\\Other and unspecified acute myocarditis (422.9)\\\\(422.91) Idiopathic myocarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\Other and unspecified acute myocarditis (422.9)\\" + }, + { + "displayName": "(422.92) Septic myocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\Other and unspecified acute myocarditis (422.9)\\(422.92) Septic myocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\Other and unspecified acute myocarditis (422.9)\\" + }, + { + "displayName": "(422.93) Toxic myocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\Other and unspecified acute myocarditis (422.9)\\(422.93) Toxic myocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Acute myocarditis (422)\\\\Other and unspecified acute myocarditis (422.9)\\\\(422.93) Toxic myocarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\Other and unspecified acute myocarditis (422.9)\\" + }, + { + "displayName": "(422.99) Other acute myocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\Other and unspecified acute myocarditis (422.9)\\(422.99) Other acute myocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute myocarditis (422)\\Other and unspecified acute myocarditis (422.9)\\" + }, + { + "displayName": "Acute pericarditis (420)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute pericarditis (420)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Acute pericarditis (420)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\" + }, + { + "displayName": "(420.0) Acute pericarditis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute pericarditis (420)\\(420.0) Acute pericarditis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute pericarditis (420)\\" + }, + { + "displayName": "Other and unspecified acute pericarditis (420.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute pericarditis (420)\\Other and unspecified acute pericarditis (420.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Acute pericarditis (420)\\\\Other and unspecified acute pericarditis (420.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute pericarditis (420)\\" + }, + { + "displayName": "(420.90) Acute pericarditis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute pericarditis (420)\\Other and unspecified acute pericarditis (420.9)\\(420.90) Acute pericarditis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute pericarditis (420)\\Other and unspecified acute pericarditis (420.9)\\" + }, + { + "displayName": "(420.91) Acute idiopathic pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute pericarditis (420)\\Other and unspecified acute pericarditis (420.9)\\(420.91) Acute idiopathic pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Acute pericarditis (420)\\\\Other and unspecified acute pericarditis (420.9)\\\\(420.91) Acute idiopathic pericarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute pericarditis (420)\\Other and unspecified acute pericarditis (420.9)\\" + }, + { + "displayName": "(420.99) Other acute pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute pericarditis (420)\\Other and unspecified acute pericarditis (420.9)\\(420.99) Other acute pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Acute pericarditis (420)\\\\Other and unspecified acute pericarditis (420.9)\\\\(420.99) Other acute pericarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Acute pericarditis (420)\\Other and unspecified acute pericarditis (420.9)\\" + }, + { + "displayName": "Cardiac dysrhythmias (427)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\" + }, + { + "displayName": "(427.0) Paroxysmal supraventricular tachycardia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\(427.0) Paroxysmal supraventricular tachycardia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiac dysrhythmias (427)\\\\(427.0) Paroxysmal supraventricular tachycardia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\" + }, + { + "displayName": "(427.1) Paroxysmal ventricular tachycardia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\(427.1) Paroxysmal ventricular tachycardia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiac dysrhythmias (427)\\\\(427.1) Paroxysmal ventricular tachycardia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\" + }, + { + "displayName": "(427.2) Paroxysmal tachycardia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\(427.2) Paroxysmal tachycardia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\" + }, + { + "displayName": "(427.5) Cardiac arrest", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\(427.5) Cardiac arrest\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\" + }, + { + "displayName": "(427.9) Cardiac dysrhythmia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\(427.9) Cardiac dysrhythmia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\" + }, + { + "displayName": "Atrial fibrillation and flutter (427.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Atrial fibrillation and flutter (427.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\" + }, + { + "displayName": "(427.31) Atrial fibrillation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Atrial fibrillation and flutter (427.3)\\(427.31) Atrial fibrillation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiac dysrhythmias (427)\\\\Atrial fibrillation and flutter (427.3)\\\\(427.31) Atrial fibrillation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Atrial fibrillation and flutter (427.3)\\" + }, + { + "displayName": "(427.32) Atrial flutter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Atrial fibrillation and flutter (427.3)\\(427.32) Atrial flutter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiac dysrhythmias (427)\\\\Atrial fibrillation and flutter (427.3)\\\\(427.32) Atrial flutter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Atrial fibrillation and flutter (427.3)\\" + }, + { + "displayName": "Other specified cardiac dysrhythmias (427.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Other specified cardiac dysrhythmias (427.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiac dysrhythmias (427)\\\\Other specified cardiac dysrhythmias (427.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\" + }, + { + "displayName": "(427.81) Sinoatrial node dysfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Other specified cardiac dysrhythmias (427.8)\\(427.81) Sinoatrial node dysfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Other specified cardiac dysrhythmias (427.8)\\" + }, + { + "displayName": "(427.89) Other specified cardiac dysrhythmias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Other specified cardiac dysrhythmias (427.8)\\(427.89) Other specified cardiac dysrhythmias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Other specified cardiac dysrhythmias (427.8)\\" + }, + { + "displayName": "Premature beats (427.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Premature beats (427.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\" + }, + { + "displayName": "(427.60) Premature beats, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Premature beats (427.6)\\(427.60) Premature beats, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Premature beats (427.6)\\" + }, + { + "displayName": "(427.61) Supraventricular premature beats", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Premature beats (427.6)\\(427.61) Supraventricular premature beats\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Premature beats (427.6)\\" + }, + { + "displayName": "(427.69) Other premature beats", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Premature beats (427.6)\\(427.69) Other premature beats\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiac dysrhythmias (427)\\\\Premature beats (427.6)\\\\(427.69) Other premature beats\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Premature beats (427.6)\\" + }, + { + "displayName": "Ventricular fibrillation and flutter (427.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Ventricular fibrillation and flutter (427.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiac dysrhythmias (427)\\\\Ventricular fibrillation and flutter (427.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\" + }, + { + "displayName": "(427.41) Ventricular fibrillation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Ventricular fibrillation and flutter (427.4)\\(427.41) Ventricular fibrillation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Ventricular fibrillation and flutter (427.4)\\" + }, + { + "displayName": "(427.42) Ventricular flutter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Ventricular fibrillation and flutter (427.4)\\(427.42) Ventricular flutter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiac dysrhythmias (427)\\\\Ventricular fibrillation and flutter (427.4)\\\\(427.42) Ventricular flutter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiac dysrhythmias (427)\\Ventricular fibrillation and flutter (427.4)\\" + }, + { + "displayName": "Cardiomyopathy (425)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiomyopathy (425)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\" + }, + { + "displayName": "(425.0) Endomyocardial fibrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\(425.0) Endomyocardial fibrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiomyopathy (425)\\\\(425.0) Endomyocardial fibrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\" + }, + { + "displayName": "(425.2) Obscure cardiomyopathy of Africa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\(425.2) Obscure cardiomyopathy of Africa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiomyopathy (425)\\\\(425.2) Obscure cardiomyopathy of Africa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\" + }, + { + "displayName": "(425.3) Endocardial fibroelastosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\(425.3) Endocardial fibroelastosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\" + }, + { + "displayName": "(425.4) Other primary cardiomyopathies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\(425.4) Other primary cardiomyopathies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiomyopathy (425)\\\\(425.4) Other primary cardiomyopathies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\" + }, + { + "displayName": "(425.5) Alcoholic cardiomyopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\(425.5) Alcoholic cardiomyopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\" + }, + { + "displayName": "(425.7) Nutritional and metabolic cardiomyopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\(425.7) Nutritional and metabolic cardiomyopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiomyopathy (425)\\\\(425.7) Nutritional and metabolic cardiomyopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\" + }, + { + "displayName": "(425.8) Cardiomyopathy in other diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\(425.8) Cardiomyopathy in other diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\" + }, + { + "displayName": "(425.9) Secondary cardiomyopathy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\(425.9) Secondary cardiomyopathy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\" + }, + { + "displayName": "Hypertrophic cardiomyopathy (425.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\Hypertrophic cardiomyopathy (425.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiomyopathy (425)\\\\Hypertrophic cardiomyopathy (425.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\" + }, + { + "displayName": "(425.11) Hypertrophic obstructive cardiomyopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\Hypertrophic cardiomyopathy (425.1)\\(425.11) Hypertrophic obstructive cardiomyopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\Hypertrophic cardiomyopathy (425.1)\\" + }, + { + "displayName": "(425.18) Other hypertrophic cardiomyopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\Hypertrophic cardiomyopathy (425.1)\\(425.18) Other hypertrophic cardiomyopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Cardiomyopathy (425)\\\\Hypertrophic cardiomyopathy (425.1)\\\\(425.18) Other hypertrophic cardiomyopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Cardiomyopathy (425)\\Hypertrophic cardiomyopathy (425.1)\\" + }, + { + "displayName": "Conduction disorders (426)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Conduction disorders (426)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\" + }, + { + "displayName": "(426.0) Atrioventricular block, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\(426.0) Atrioventricular block, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\" + }, + { + "displayName": "(426.2) Left bundle branch hemiblock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\(426.2) Left bundle branch hemiblock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Conduction disorders (426)\\\\(426.2) Left bundle branch hemiblock\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\" + }, + { + "displayName": "(426.3) Other left bundle branch block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\(426.3) Other left bundle branch block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\" + }, + { + "displayName": "(426.4) Right bundle branch block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\(426.4) Right bundle branch block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Conduction disorders (426)\\\\(426.4) Right bundle branch block\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\" + }, + { + "displayName": "(426.6) Other heart block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\(426.6) Other heart block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Conduction disorders (426)\\\\(426.6) Other heart block\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\" + }, + { + "displayName": "(426.7) Anomalous atrioventricular excitation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\(426.7) Anomalous atrioventricular excitation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\" + }, + { + "displayName": "(426.9) Conduction disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\(426.9) Conduction disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\" + }, + { + "displayName": "Atrioventricular block, other and unspecified (426.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Atrioventricular block, other and unspecified (426.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Conduction disorders (426)\\\\Atrioventricular block, other and unspecified (426.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\" + }, + { + "displayName": "(426.10) Atrioventricular block, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Atrioventricular block, other and unspecified (426.1)\\(426.10) Atrioventricular block, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Atrioventricular block, other and unspecified (426.1)\\" + }, + { + "displayName": "(426.11) First degree atrioventricular block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Atrioventricular block, other and unspecified (426.1)\\(426.11) First degree atrioventricular block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Conduction disorders (426)\\\\Atrioventricular block, other and unspecified (426.1)\\\\(426.11) First degree atrioventricular block\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Atrioventricular block, other and unspecified (426.1)\\" + }, + { + "displayName": "(426.12) Mobitz (type) II atrioventricular block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Atrioventricular block, other and unspecified (426.1)\\(426.12) Mobitz (type) II atrioventricular block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Conduction disorders (426)\\\\Atrioventricular block, other and unspecified (426.1)\\\\(426.12) Mobitz (type) II atrioventricular block\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Atrioventricular block, other and unspecified (426.1)\\" + }, + { + "displayName": "(426.13) Other second degree atrioventricular block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Atrioventricular block, other and unspecified (426.1)\\(426.13) Other second degree atrioventricular block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Atrioventricular block, other and unspecified (426.1)\\" + }, + { + "displayName": "Bundle branch block, other and unspecified (426.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Bundle branch block, other and unspecified (426.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Conduction disorders (426)\\\\Bundle branch block, other and unspecified (426.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\" + }, + { + "displayName": "(426.50) Bundle branch block, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Bundle branch block, other and unspecified (426.5)\\(426.50) Bundle branch block, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Bundle branch block, other and unspecified (426.5)\\" + }, + { + "displayName": "(426.51) Right bundle branch block and left posterior fascicular block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Bundle branch block, other and unspecified (426.5)\\(426.51) Right bundle branch block and left posterior fascicular block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Bundle branch block, other and unspecified (426.5)\\" + }, + { + "displayName": "(426.52) Right bundle branch block and left anterior fascicular block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Bundle branch block, other and unspecified (426.5)\\(426.52) Right bundle branch block and left anterior fascicular block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Bundle branch block, other and unspecified (426.5)\\" + }, + { + "displayName": "(426.53) Other bilateral bundle branch block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Bundle branch block, other and unspecified (426.5)\\(426.53) Other bilateral bundle branch block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Bundle branch block, other and unspecified (426.5)\\" + }, + { + "displayName": "(426.54) Trifascicular block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Bundle branch block, other and unspecified (426.5)\\(426.54) Trifascicular block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Bundle branch block, other and unspecified (426.5)\\" + }, + { + "displayName": "Other specified conduction disorders (426.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Other specified conduction disorders (426.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\" + }, + { + "displayName": "(426.81) Lown-Ganong-Levine syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Other specified conduction disorders (426.8)\\(426.81) Lown-Ganong-Levine syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Other specified conduction disorders (426.8)\\" + }, + { + "displayName": "(426.82) Long QT syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Other specified conduction disorders (426.8)\\(426.82) Long QT syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Conduction disorders (426)\\\\Other specified conduction disorders (426.8)\\\\(426.82) Long QT syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Other specified conduction disorders (426.8)\\" + }, + { + "displayName": "(426.89) Other specified conduction disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Other specified conduction disorders (426.8)\\(426.89) Other specified conduction disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Conduction disorders (426)\\Other specified conduction disorders (426.8)\\" + }, + { + "displayName": "Heart failure (428)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Heart failure (428)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\" + }, + { + "displayName": "(428.0) Congestive heart failure, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\(428.0) Congestive heart failure, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\" + }, + { + "displayName": "(428.1) Left heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\(428.1) Left heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\" + }, + { + "displayName": "(428.9) Heart failure, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\(428.9) Heart failure, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Heart failure (428)\\\\(428.9) Heart failure, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\" + }, + { + "displayName": "Combined systolic and diastolic heart failure (428.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Combined systolic and diastolic heart failure (428.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\" + }, + { + "displayName": "(428.40) Combined systolic and diastolic heart failure, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Combined systolic and diastolic heart failure (428.4)\\(428.40) Combined systolic and diastolic heart failure, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Heart failure (428)\\\\Combined systolic and diastolic heart failure (428.4)\\\\(428.40) Combined systolic and diastolic heart failure, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Combined systolic and diastolic heart failure (428.4)\\" + }, + { + "displayName": "(428.41) Acute combined systolic and diastolic heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Combined systolic and diastolic heart failure (428.4)\\(428.41) Acute combined systolic and diastolic heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Heart failure (428)\\\\Combined systolic and diastolic heart failure (428.4)\\\\(428.41) Acute combined systolic and diastolic heart failure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Combined systolic and diastolic heart failure (428.4)\\" + }, + { + "displayName": "(428.42) Chronic combined systolic and diastolic heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Combined systolic and diastolic heart failure (428.4)\\(428.42) Chronic combined systolic and diastolic heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Heart failure (428)\\\\Combined systolic and diastolic heart failure (428.4)\\\\(428.42) Chronic combined systolic and diastolic heart failure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Combined systolic and diastolic heart failure (428.4)\\" + }, + { + "displayName": "(428.43) Acute on chronic combined systolic and diastolic heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Combined systolic and diastolic heart failure (428.4)\\(428.43) Acute on chronic combined systolic and diastolic heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Combined systolic and diastolic heart failure (428.4)\\" + }, + { + "displayName": "Diastolic heart failure (428.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Diastolic heart failure (428.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\" + }, + { + "displayName": "(428.30) Diastolic heart failure, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Diastolic heart failure (428.3)\\(428.30) Diastolic heart failure, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Diastolic heart failure (428.3)\\" + }, + { + "displayName": "(428.31) Acute diastolic heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Diastolic heart failure (428.3)\\(428.31) Acute diastolic heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Diastolic heart failure (428.3)\\" + }, + { + "displayName": "(428.32) Chronic diastolic heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Diastolic heart failure (428.3)\\(428.32) Chronic diastolic heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Diastolic heart failure (428.3)\\" + }, + { + "displayName": "(428.33) Acute on chronic diastolic heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Diastolic heart failure (428.3)\\(428.33) Acute on chronic diastolic heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Diastolic heart failure (428.3)\\" + }, + { + "displayName": "Systolic heart failure (428.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Systolic heart failure (428.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\" + }, + { + "displayName": "(428.20) Systolic heart failure, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Systolic heart failure (428.2)\\(428.20) Systolic heart failure, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Systolic heart failure (428.2)\\" + }, + { + "displayName": "(428.21) Acute systolic heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Systolic heart failure (428.2)\\(428.21) Acute systolic heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Heart failure (428)\\\\Systolic heart failure (428.2)\\\\(428.21) Acute systolic heart failure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Systolic heart failure (428.2)\\" + }, + { + "displayName": "(428.22) Chronic systolic heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Systolic heart failure (428.2)\\(428.22) Chronic systolic heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Heart failure (428)\\\\Systolic heart failure (428.2)\\\\(428.22) Chronic systolic heart failure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Systolic heart failure (428.2)\\" + }, + { + "displayName": "(428.23) Acute on chronic systolic heart failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Systolic heart failure (428.2)\\(428.23) Acute on chronic systolic heart failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Heart failure (428)\\\\Systolic heart failure (428.2)\\\\(428.23) Acute on chronic systolic heart failure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Heart failure (428)\\Systolic heart failure (428.2)\\" + }, + { + "displayName": "Ill-defined descriptions and complications of heart disease (429)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\" + }, + { + "displayName": "(429.0) Myocarditis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\(429.0) Myocarditis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\" + }, + { + "displayName": "(429.1) Myocardial degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\(429.1) Myocardial degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\" + }, + { + "displayName": "(429.2) Cardiovascular disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\(429.2) Cardiovascular disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\" + }, + { + "displayName": "(429.3) Cardiomegaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\(429.3) Cardiomegaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\" + }, + { + "displayName": "(429.4) Functional disturbances following cardiac surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\(429.4) Functional disturbances following cardiac surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\" + }, + { + "displayName": "(429.5) Rupture of chordae tendineae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\(429.5) Rupture of chordae tendineae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\" + }, + { + "displayName": "(429.6) Rupture of papillary muscle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\(429.6) Rupture of papillary muscle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Ill-defined descriptions and complications of heart disease (429)\\\\(429.6) Rupture of papillary muscle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\" + }, + { + "displayName": "(429.9) Heart disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\(429.9) Heart disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Ill-defined descriptions and complications of heart disease (429)\\\\(429.9) Heart disease, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\" + }, + { + "displayName": "Certain sequelae of myocardial infarction, not elsewhere classified (429.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Ill-defined descriptions and complications of heart disease (429)\\\\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\" + }, + { + "displayName": "(429.71) Acquired cardiac septal defect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\\(429.71) Acquired cardiac septal defect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Ill-defined descriptions and complications of heart disease (429)\\\\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\\\\(429.71) Acquired cardiac septal defect\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\\" + }, + { + "displayName": "(429.79) Certain sequelae of myocardial infarction, not elsewhere classified, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\\(429.79) Certain sequelae of myocardial infarction, not elsewhere classified, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Ill-defined descriptions and complications of heart disease (429)\\\\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\\\\(429.79) Certain sequelae of myocardial infarction, not elsewhere classified, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\\" + }, + { + "displayName": "Other ill-defined heart diseases (429.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Other ill-defined heart diseases (429.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Ill-defined descriptions and complications of heart disease (429)\\\\Other ill-defined heart diseases (429.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\" + }, + { + "displayName": "(429.81) Other disorders of papillary muscle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Other ill-defined heart diseases (429.8)\\(429.81) Other disorders of papillary muscle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Ill-defined descriptions and complications of heart disease (429)\\\\Other ill-defined heart diseases (429.8)\\\\(429.81) Other disorders of papillary muscle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Other ill-defined heart diseases (429.8)\\" + }, + { + "displayName": "(429.82) Hyperkinetic heart disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Other ill-defined heart diseases (429.8)\\(429.82) Hyperkinetic heart disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Other ill-defined heart diseases (429.8)\\" + }, + { + "displayName": "(429.83) Takotsubo syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Other ill-defined heart diseases (429.8)\\(429.83) Takotsubo syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Other ill-defined heart diseases (429.8)\\" + }, + { + "displayName": "(429.89) Other ill-defined heart diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Other ill-defined heart diseases (429.8)\\(429.89) Other ill-defined heart diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Ill-defined descriptions and complications of heart disease (429)\\Other ill-defined heart diseases (429.8)\\" + }, + { + "displayName": "Other diseases of endocardium (424)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\" + }, + { + "displayName": "(424.0) Mitral valve disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\(424.0) Mitral valve disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Other diseases of endocardium (424)\\\\(424.0) Mitral valve disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\" + }, + { + "displayName": "(424.1) Aortic valve disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\(424.1) Aortic valve disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Other diseases of endocardium (424)\\\\(424.1) Aortic valve disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\" + }, + { + "displayName": "(424.2) Tricuspid valve disorders, specified as nonrheumatic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\(424.2) Tricuspid valve disorders, specified as nonrheumatic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Other diseases of endocardium (424)\\\\(424.2) Tricuspid valve disorders, specified as nonrheumatic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\" + }, + { + "displayName": "(424.3) Pulmonary valve disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\(424.3) Pulmonary valve disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Other diseases of endocardium (424)\\\\(424.3) Pulmonary valve disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\" + }, + { + "displayName": "Endocarditis, valve unspecified (424.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\Endocarditis, valve unspecified (424.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\" + }, + { + "displayName": "(424.90) Endocarditis, valve unspecified, unspecified cause", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\Endocarditis, valve unspecified (424.9)\\(424.90) Endocarditis, valve unspecified, unspecified cause\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\Endocarditis, valve unspecified (424.9)\\" + }, + { + "displayName": "(424.91) Endocarditis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\Endocarditis, valve unspecified (424.9)\\(424.91) Endocarditis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\Endocarditis, valve unspecified (424.9)\\" + }, + { + "displayName": "(424.99) Other endocarditis, valve unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\Endocarditis, valve unspecified (424.9)\\(424.99) Other endocarditis, valve unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of endocardium (424)\\Endocarditis, valve unspecified (424.9)\\" + }, + { + "displayName": "Other diseases of pericardium (423)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\" + }, + { + "displayName": "(423.0) Hemopericardium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\(423.0) Hemopericardium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\" + }, + { + "displayName": "(423.1) Adhesive pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\(423.1) Adhesive pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\" + }, + { + "displayName": "(423.2) Constrictive pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\(423.2) Constrictive pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Other diseases of pericardium (423)\\\\(423.2) Constrictive pericarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\" + }, + { + "displayName": "(423.3) Cardiac tamponade", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\(423.3) Cardiac tamponade\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\" + }, + { + "displayName": "(423.8) Other specified diseases of pericardium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\(423.8) Other specified diseases of pericardium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Other diseases of pericardium (423)\\\\(423.8) Other specified diseases of pericardium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\" + }, + { + "displayName": "(423.9) Unspecified disease of pericardium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\(423.9) Unspecified disease of pericardium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\Other forms of heart disease (420-429.99)\\\\Other diseases of pericardium (423)\\\\(423.9) Unspecified disease of pericardium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the circulatory system (390-459.99)\\Other forms of heart disease (420-429.99)\\Other diseases of pericardium (423)\\" + }, + { + "displayName": "Diseases of the digestive system (520-579.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "-538 gastrointestinal mucositis (ulcerative)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\(538) gastrointestinal mucositis (ulcerative)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\(538) gastrointestinal mucositis (ulcerative)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\" + }, + { + "displayName": "Appendicitis (540-543.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Appendicitis (540-543.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\" + }, + { + "displayName": "(541) Appendicitis, unqualified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\(541) Appendicitis, unqualified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\" + }, + { + "displayName": "(542) Other appendicitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\(542) Other appendicitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Appendicitis (540-543.99)\\\\(542) Other appendicitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\" + }, + { + "displayName": "Acute appendicitis (540)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Acute appendicitis (540)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Appendicitis (540-543.99)\\\\Acute appendicitis (540)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\" + }, + { + "displayName": "(540.0) Acute appendicitis with generalized peritonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Acute appendicitis (540)\\(540.0) Acute appendicitis with generalized peritonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Appendicitis (540-543.99)\\\\Acute appendicitis (540)\\\\(540.0) Acute appendicitis with generalized peritonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Acute appendicitis (540)\\" + }, + { + "displayName": "(540.1) Acute appendicitis with peritoneal abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Acute appendicitis (540)\\(540.1) Acute appendicitis with peritoneal abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Acute appendicitis (540)\\" + }, + { + "displayName": "(540.9) Acute appendicitis without mention of peritonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Acute appendicitis (540)\\(540.9) Acute appendicitis without mention of peritonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Acute appendicitis (540)\\" + }, + { + "displayName": "Other diseases of appendix (543)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Other diseases of appendix (543)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\" + }, + { + "displayName": "(543.0) Hyperplasia of appendix (lymphoid)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Other diseases of appendix (543)\\(543.0) Hyperplasia of appendix (lymphoid)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Other diseases of appendix (543)\\" + }, + { + "displayName": "(543.9) Other and unspecified diseases of appendix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Other diseases of appendix (543)\\(543.9) Other and unspecified diseases of appendix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Appendicitis (540-543.99)\\Other diseases of appendix (543)\\" + }, + { + "displayName": "Diseases of esophagus, stomach, and duodenum (530-539.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\" + }, + { + "displayName": "Complications of bariatric procedures (539)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Complications of bariatric procedures (539)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\" + }, + { + "displayName": "Complications of gastric band procedure (539.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Complications of bariatric procedures (539)\\Complications of gastric band procedure (539.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Complications of bariatric procedures (539)\\" + }, + { + "displayName": "(539.09) Other complications of gastric band procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Complications of bariatric procedures (539)\\Complications of gastric band procedure (539.0)\\(539.09) Other complications of gastric band procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Complications of bariatric procedures (539)\\\\Complications of gastric band procedure (539.0)\\\\(539.09) Other complications of gastric band procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Complications of bariatric procedures (539)\\Complications of gastric band procedure (539.0)\\" + }, + { + "displayName": "Complications of other bariatric procedure (539.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Complications of bariatric procedures (539)\\Complications of other bariatric procedure (539.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Complications of bariatric procedures (539)\\" + }, + { + "displayName": "(539.89) Other complications of other bariatric procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Complications of bariatric procedures (539)\\Complications of other bariatric procedure (539.8)\\(539.89) Other complications of other bariatric procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Complications of bariatric procedures (539)\\\\Complications of other bariatric procedure (539.8)\\\\(539.89) Other complications of other bariatric procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Complications of bariatric procedures (539)\\Complications of other bariatric procedure (539.8)\\" + }, + { + "displayName": "Diseases of esophagus (530)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Diseases of esophagus (530)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\" + }, + { + "displayName": "(530.0) Achalasia and cardiospasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\(530.0) Achalasia and cardiospasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\" + }, + { + "displayName": "(530.3) Stricture and stenosis of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\(530.3) Stricture and stenosis of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\" + }, + { + "displayName": "(530.4) Perforation of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\(530.4) Perforation of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\" + }, + { + "displayName": "(530.5) Dyskinesia of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\(530.5) Dyskinesia of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\" + }, + { + "displayName": "(530.6) Diverticulum of esophagus, acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\(530.6) Diverticulum of esophagus, acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Diseases of esophagus (530)\\\\(530.6) Diverticulum of esophagus, acquired\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\" + }, + { + "displayName": "(530.7) Gastroesophageal laceration-hemorrhage syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\(530.7) Gastroesophageal laceration-hemorrhage syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Diseases of esophagus (530)\\\\(530.7) Gastroesophageal laceration-hemorrhage syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\" + }, + { + "displayName": "(530.9) Unspecified disorder of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\(530.9) Unspecified disorder of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\" + }, + { + "displayName": "Esophagitis (530.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Esophagitis (530.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Diseases of esophagus (530)\\\\Esophagitis (530.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\" + }, + { + "displayName": "(530.10) Esophagitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Esophagitis (530.1)\\(530.10) Esophagitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Esophagitis (530.1)\\" + }, + { + "displayName": "(530.11) Reflux esophagitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Esophagitis (530.1)\\(530.11) Reflux esophagitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Diseases of esophagus (530)\\\\Esophagitis (530.1)\\\\(530.11) Reflux esophagitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Esophagitis (530.1)\\" + }, + { + "displayName": "(530.12) Acute esophagitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Esophagitis (530.1)\\(530.12) Acute esophagitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Diseases of esophagus (530)\\\\Esophagitis (530.1)\\\\(530.12) Acute esophagitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Esophagitis (530.1)\\" + }, + { + "displayName": "(530.13) Eosinophilic esophagitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Esophagitis (530.1)\\(530.13) Eosinophilic esophagitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Esophagitis (530.1)\\" + }, + { + "displayName": "(530.19) Other esophagitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Esophagitis (530.1)\\(530.19) Other esophagitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Esophagitis (530.1)\\" + }, + { + "displayName": "Other specified disorders of esophagus (530.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\" + }, + { + "displayName": "(530.81) Esophageal reflux", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\(530.81) Esophageal reflux\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\" + }, + { + "displayName": "(530.82) Esophageal hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\(530.82) Esophageal hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\" + }, + { + "displayName": "(530.83) Esophageal leukoplakia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\(530.83) Esophageal leukoplakia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Diseases of esophagus (530)\\\\Other specified disorders of esophagus (530.8)\\\\(530.83) Esophageal leukoplakia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\" + }, + { + "displayName": "(530.84) Tracheoesophageal fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\(530.84) Tracheoesophageal fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Diseases of esophagus (530)\\\\Other specified disorders of esophagus (530.8)\\\\(530.84) Tracheoesophageal fistula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\" + }, + { + "displayName": "(530.85) Barrett's esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\(530.85) Barrett's esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\" + }, + { + "displayName": "(530.86) Infection of esophagostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\(530.86) Infection of esophagostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Diseases of esophagus (530)\\\\Other specified disorders of esophagus (530.8)\\\\(530.86) Infection of esophagostomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\" + }, + { + "displayName": "(530.87) Mechanical complication of esophagostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\(530.87) Mechanical complication of esophagostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Diseases of esophagus (530)\\\\Other specified disorders of esophagus (530.8)\\\\(530.87) Mechanical complication of esophagostomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\" + }, + { + "displayName": "(530.89) Other specified disorders of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\(530.89) Other specified disorders of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Other specified disorders of esophagus (530.8)\\" + }, + { + "displayName": "Ulcer of esophagus (530.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Ulcer of esophagus (530.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Diseases of esophagus (530)\\\\Ulcer of esophagus (530.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\" + }, + { + "displayName": "(530.20) Ulcer of esophagus without bleeding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Ulcer of esophagus (530.2)\\(530.20) Ulcer of esophagus without bleeding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Ulcer of esophagus (530.2)\\" + }, + { + "displayName": "(530.21) Ulcer of esophagus with bleeding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Ulcer of esophagus (530.2)\\(530.21) Ulcer of esophagus with bleeding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Diseases of esophagus (530)\\Ulcer of esophagus (530.2)\\" + }, + { + "displayName": "Disorders of function of stomach (536)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\" + }, + { + "displayName": "(536.0) Achlorhydria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\(536.0) Achlorhydria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\" + }, + { + "displayName": "(536.1) Acute dilatation of stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\(536.1) Acute dilatation of stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\" + }, + { + "displayName": "(536.2) Persistent vomiting", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\(536.2) Persistent vomiting\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\" + }, + { + "displayName": "(536.3) Gastroparesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\(536.3) Gastroparesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Disorders of function of stomach (536)\\\\(536.3) Gastroparesis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\" + }, + { + "displayName": "(536.8) Dyspepsia and other specified disorders of function of stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\(536.8) Dyspepsia and other specified disorders of function of stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Disorders of function of stomach (536)\\\\(536.8) Dyspepsia and other specified disorders of function of stomach\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\" + }, + { + "displayName": "(536.9) Unspecified functional disorder of stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\(536.9) Unspecified functional disorder of stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Disorders of function of stomach (536)\\\\(536.9) Unspecified functional disorder of stomach\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\" + }, + { + "displayName": "Gastrostomy complications (536.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\Gastrostomy complications (536.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Disorders of function of stomach (536)\\\\Gastrostomy complications (536.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\" + }, + { + "displayName": "(536.40) Gastrostomy complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\Gastrostomy complications (536.4)\\(536.40) Gastrostomy complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Disorders of function of stomach (536)\\\\Gastrostomy complications (536.4)\\\\(536.40) Gastrostomy complication, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\Gastrostomy complications (536.4)\\" + }, + { + "displayName": "(536.41) Infection of gastrostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\Gastrostomy complications (536.4)\\(536.41) Infection of gastrostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\Gastrostomy complications (536.4)\\" + }, + { + "displayName": "(536.42) Mechanical complication of gastrostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\Gastrostomy complications (536.4)\\(536.42) Mechanical complication of gastrostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\Gastrostomy complications (536.4)\\" + }, + { + "displayName": "(536.49) Other gastrostomy complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\Gastrostomy complications (536.4)\\(536.49) Other gastrostomy complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Disorders of function of stomach (536)\\Gastrostomy complications (536.4)\\" + }, + { + "displayName": "Duodenal ulcer (532)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\" + }, + { + "displayName": "Acute duodenal ulcer with hemorrhage (532.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with hemorrhage (532.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\" + }, + { + "displayName": "(532.00) Acute duodenal ulcer with hemorrhage, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with hemorrhage (532.0)\\(532.00) Acute duodenal ulcer with hemorrhage, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with hemorrhage (532.0)\\" + }, + { + "displayName": "(532.01) Acute duodenal ulcer with hemorrhage, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with hemorrhage (532.0)\\(532.01) Acute duodenal ulcer with hemorrhage, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with hemorrhage (532.0)\\" + }, + { + "displayName": "Acute duodenal ulcer with hemorrhage and perforation (532.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with hemorrhage and perforation (532.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\" + }, + { + "displayName": "(532.20) Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with hemorrhage and perforation (532.2)\\(532.20) Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with hemorrhage and perforation (532.2)\\" + }, + { + "displayName": "(532.21) Acute duodenal ulcer with hemorrhage and perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with hemorrhage and perforation (532.2)\\(532.21) Acute duodenal ulcer with hemorrhage and perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with hemorrhage and perforation (532.2)\\" + }, + { + "displayName": "Acute duodenal ulcer with perforation (532.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with perforation (532.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Duodenal ulcer (532)\\\\Acute duodenal ulcer with perforation (532.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\" + }, + { + "displayName": "(532.10) Acute duodenal ulcer with perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with perforation (532.1)\\(532.10) Acute duodenal ulcer with perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Duodenal ulcer (532)\\\\Acute duodenal ulcer with perforation (532.1)\\\\(532.10) Acute duodenal ulcer with perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with perforation (532.1)\\" + }, + { + "displayName": "(532.11) Acute duodenal ulcer with perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with perforation (532.1)\\(532.11) Acute duodenal ulcer with perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Duodenal ulcer (532)\\\\Acute duodenal ulcer with perforation (532.1)\\\\(532.11) Acute duodenal ulcer with perforation, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer with perforation (532.1)\\" + }, + { + "displayName": "Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Duodenal ulcer (532)\\\\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\" + }, + { + "displayName": "(532.30) Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\\(532.30) Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Duodenal ulcer (532)\\\\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\\\\(532.30) Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\\" + }, + { + "displayName": "(532.31) Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\\(532.31) Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Duodenal ulcer (532)\\\\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\\\\(532.31) Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\\" + }, + { + "displayName": "Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Duodenal ulcer (532)\\\\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\" + }, + { + "displayName": "(532.70) Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\\(532.70) Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Duodenal ulcer (532)\\\\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\\\\(532.70) Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\\" + }, + { + "displayName": "(532.71) Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\\(532.71) Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Duodenal ulcer (532)\\\\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\\\\(532.71) Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\\" + }, + { + "displayName": "Chronic or unspecified duodenal ulcer with hemorrhage (532.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Duodenal ulcer (532)\\\\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\" + }, + { + "displayName": "(532.40) Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\\(532.40) Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\\" + }, + { + "displayName": "(532.41) Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\\(532.41) Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\\" + }, + { + "displayName": "Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\" + }, + { + "displayName": "(532.60) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\\(532.60) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\\" + }, + { + "displayName": "(532.61) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\\(532.61) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\\" + }, + { + "displayName": "Chronic or unspecified duodenal ulcer with perforation (532.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with perforation (532.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\" + }, + { + "displayName": "(532.50) Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with perforation (532.5)\\(532.50) Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with perforation (532.5)\\" + }, + { + "displayName": "(532.51) Chronic or unspecified duodenal ulcer with perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with perforation (532.5)\\(532.51) Chronic or unspecified duodenal ulcer with perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Chronic or unspecified duodenal ulcer with perforation (532.5)\\" + }, + { + "displayName": "Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\" + }, + { + "displayName": "(532.90) Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\\(532.90) Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\\" + }, + { + "displayName": "(532.91) Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\\(532.91) Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Duodenal ulcer (532)\\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\\" + }, + { + "displayName": "Gastric ulcer (531)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastric ulcer (531)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\" + }, + { + "displayName": "Acute gastric ulcer with hemorrhage (531.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with hemorrhage (531.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastric ulcer (531)\\\\Acute gastric ulcer with hemorrhage (531.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\" + }, + { + "displayName": "(531.00) Acute gastric ulcer with hemorrhage, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with hemorrhage (531.0)\\(531.00) Acute gastric ulcer with hemorrhage, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastric ulcer (531)\\\\Acute gastric ulcer with hemorrhage (531.0)\\\\(531.00) Acute gastric ulcer with hemorrhage, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with hemorrhage (531.0)\\" + }, + { + "displayName": "(531.01) Acute gastric ulcer with hemorrhage, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with hemorrhage (531.0)\\(531.01) Acute gastric ulcer with hemorrhage, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastric ulcer (531)\\\\Acute gastric ulcer with hemorrhage (531.0)\\\\(531.01) Acute gastric ulcer with hemorrhage, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with hemorrhage (531.0)\\" + }, + { + "displayName": "Acute gastric ulcer with hemorrhage and perforation (531.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with hemorrhage and perforation (531.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastric ulcer (531)\\\\Acute gastric ulcer with hemorrhage and perforation (531.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\" + }, + { + "displayName": "(531.20) Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with hemorrhage and perforation (531.2)\\(531.20) Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with hemorrhage and perforation (531.2)\\" + }, + { + "displayName": "(531.21) Acute gastric ulcer with hemorrhage and perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with hemorrhage and perforation (531.2)\\(531.21) Acute gastric ulcer with hemorrhage and perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with hemorrhage and perforation (531.2)\\" + }, + { + "displayName": "Acute gastric ulcer with perforation (531.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with perforation (531.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\" + }, + { + "displayName": "(531.10) Acute gastric ulcer with perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with perforation (531.1)\\(531.10) Acute gastric ulcer with perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with perforation (531.1)\\" + }, + { + "displayName": "(531.11) Acute gastric ulcer with perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with perforation (531.1)\\(531.11) Acute gastric ulcer with perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer with perforation (531.1)\\" + }, + { + "displayName": "Acute gastric ulcer without mention of hemorrhage or perforation (531.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\" + }, + { + "displayName": "(531.30) Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\\(531.30) Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\\" + }, + { + "displayName": "(531.31) Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\\(531.31) Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\\" + }, + { + "displayName": "Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\" + }, + { + "displayName": "(531.70) Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\\(531.70) Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastric ulcer (531)\\\\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\\\\(531.70) Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\\" + }, + { + "displayName": "(531.71) Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\\(531.71) Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastric ulcer (531)\\\\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\\\\(531.71) Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\\" + }, + { + "displayName": "Chronic or unspecified gastric ulcer with hemorrhage (531.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastric ulcer (531)\\\\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\" + }, + { + "displayName": "(531.40) Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\\(531.40) Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\\" + }, + { + "displayName": "(531.41) Chronic or unspecified gastric ulcer with hemorrhage, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\\(531.41) Chronic or unspecified gastric ulcer with hemorrhage, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastric ulcer (531)\\\\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\\\\(531.41) Chronic or unspecified gastric ulcer with hemorrhage, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\\" + }, + { + "displayName": "Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\" + }, + { + "displayName": "(531.60) Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\\(531.60) Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastric ulcer (531)\\\\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\\\\(531.60) Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\\" + }, + { + "displayName": "(531.61) Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\\(531.61) Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\\" + }, + { + "displayName": "Chronic or unspecified gastric ulcer with perforation (531.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with perforation (531.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\" + }, + { + "displayName": "(531.50) Chronic or unspecified gastric ulcer with perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with perforation (531.5)\\(531.50) Chronic or unspecified gastric ulcer with perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with perforation (531.5)\\" + }, + { + "displayName": "(531.51) Chronic or unspecified gastric ulcer with perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with perforation (531.5)\\(531.51) Chronic or unspecified gastric ulcer with perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Chronic or unspecified gastric ulcer with perforation (531.5)\\" + }, + { + "displayName": "Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\" + }, + { + "displayName": "(531.90) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\\(531.90) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\\" + }, + { + "displayName": "(531.91) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\\(531.91) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastric ulcer (531)\\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\\" + }, + { + "displayName": "Gastritis and duodenitis (535)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\" + }, + { + "displayName": "Acute gastritis (535.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Acute gastritis (535.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Acute gastritis (535.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\" + }, + { + "displayName": "(535.00) Acute gastritis, without mention of hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Acute gastritis (535.0)\\(535.00) Acute gastritis, without mention of hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Acute gastritis (535.0)\\" + }, + { + "displayName": "(535.01) Acute gastritis, with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Acute gastritis (535.0)\\(535.01) Acute gastritis, with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Acute gastritis (535.0)\\\\(535.01) Acute gastritis, with hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Acute gastritis (535.0)\\" + }, + { + "displayName": "Alcoholic gastritis (535.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Alcoholic gastritis (535.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Alcoholic gastritis (535.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\" + }, + { + "displayName": "(535.30) Alcoholic gastritis, without mention of hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Alcoholic gastritis (535.3)\\(535.30) Alcoholic gastritis, without mention of hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Alcoholic gastritis (535.3)\\\\(535.30) Alcoholic gastritis, without mention of hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Alcoholic gastritis (535.3)\\" + }, + { + "displayName": "(535.31) Alcoholic gastritis, with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Alcoholic gastritis (535.3)\\(535.31) Alcoholic gastritis, with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Alcoholic gastritis (535.3)\\\\(535.31) Alcoholic gastritis, with hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Alcoholic gastritis (535.3)\\" + }, + { + "displayName": "Atrophic gastritis (535.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Atrophic gastritis (535.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Atrophic gastritis (535.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\" + }, + { + "displayName": "(535.10) Atrophic gastritis, without mention of hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Atrophic gastritis (535.1)\\(535.10) Atrophic gastritis, without mention of hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Atrophic gastritis (535.1)\\\\(535.10) Atrophic gastritis, without mention of hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Atrophic gastritis (535.1)\\" + }, + { + "displayName": "(535.11) Atrophic gastritis, with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Atrophic gastritis (535.1)\\(535.11) Atrophic gastritis, with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Atrophic gastritis (535.1)\\" + }, + { + "displayName": "Duodenitis (535.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Duodenitis (535.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\" + }, + { + "displayName": "(535.60) Duodenitis, without mention of hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Duodenitis (535.6)\\(535.60) Duodenitis, without mention of hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Duodenitis (535.6)\\" + }, + { + "displayName": "(535.61) Duodenitis, with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Duodenitis (535.6)\\(535.61) Duodenitis, with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Duodenitis (535.6)\\" + }, + { + "displayName": "Eosinophilic gastritis (535.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Eosinophilic gastritis (535.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\" + }, + { + "displayName": "(535.70) Eosinophilic gastritis, without mention of hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Eosinophilic gastritis (535.7)\\(535.70) Eosinophilic gastritis, without mention of hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Eosinophilic gastritis (535.7)\\" + }, + { + "displayName": "Gastric mucosal hypertrophy (535.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Gastric mucosal hypertrophy (535.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\" + }, + { + "displayName": "(535.20) Gastric mucosal hypertrophy, without mention of hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Gastric mucosal hypertrophy (535.2)\\(535.20) Gastric mucosal hypertrophy, without mention of hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Gastric mucosal hypertrophy (535.2)\\" + }, + { + "displayName": "(535.21) Gastric mucosal hypertrophy, with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Gastric mucosal hypertrophy (535.2)\\(535.21) Gastric mucosal hypertrophy, with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Gastric mucosal hypertrophy (535.2)\\" + }, + { + "displayName": "Other specified gastritis (535.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Other specified gastritis (535.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Other specified gastritis (535.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\" + }, + { + "displayName": "(535.40) Other specified gastritis, without mention of hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Other specified gastritis (535.4)\\(535.40) Other specified gastritis, without mention of hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Other specified gastritis (535.4)\\\\(535.40) Other specified gastritis, without mention of hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Other specified gastritis (535.4)\\" + }, + { + "displayName": "(535.41) Other specified gastritis, with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Other specified gastritis (535.4)\\(535.41) Other specified gastritis, with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Other specified gastritis (535.4)\\\\(535.41) Other specified gastritis, with hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Other specified gastritis (535.4)\\" + }, + { + "displayName": "Unspecified gastritis and gastroduodenitis (535.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Unspecified gastritis and gastroduodenitis (535.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Unspecified gastritis and gastroduodenitis (535.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\" + }, + { + "displayName": "(535.50) Unspecified gastritis and gastroduodenitis, without mention of hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Unspecified gastritis and gastroduodenitis (535.5)\\(535.50) Unspecified gastritis and gastroduodenitis, without mention of hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Unspecified gastritis and gastroduodenitis (535.5)\\\\(535.50) Unspecified gastritis and gastroduodenitis, without mention of hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Unspecified gastritis and gastroduodenitis (535.5)\\" + }, + { + "displayName": "(535.51) Unspecified gastritis and gastroduodenitis, with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Unspecified gastritis and gastroduodenitis (535.5)\\(535.51) Unspecified gastritis and gastroduodenitis, with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastritis and duodenitis (535)\\\\Unspecified gastritis and gastroduodenitis (535.5)\\\\(535.51) Unspecified gastritis and gastroduodenitis, with hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastritis and duodenitis (535)\\Unspecified gastritis and gastroduodenitis (535.5)\\" + }, + { + "displayName": "Gastrojejunal ulcer (534)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\" + }, + { + "displayName": "Acute gastrojejunal ulcer with hemorrhage (534.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with hemorrhage (534.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\" + }, + { + "displayName": "(534.00) Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with hemorrhage (534.0)\\(534.00) Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with hemorrhage (534.0)\\" + }, + { + "displayName": "(534.01) Acute gastrojejunal ulcer, with hemorrhage, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with hemorrhage (534.0)\\(534.01) Acute gastrojejunal ulcer, with hemorrhage, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with hemorrhage (534.0)\\" + }, + { + "displayName": "Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\" + }, + { + "displayName": "(534.20) Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\\(534.20) Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\\" + }, + { + "displayName": "(534.21) Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\\(534.21) Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\\" + }, + { + "displayName": "Acute gastrojejunal ulcer with perforation (534.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with perforation (534.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\" + }, + { + "displayName": "(534.10) Acute gastrojejunal ulcer with perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with perforation (534.1)\\(534.10) Acute gastrojejunal ulcer with perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastrojejunal ulcer (534)\\\\Acute gastrojejunal ulcer with perforation (534.1)\\\\(534.10) Acute gastrojejunal ulcer with perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with perforation (534.1)\\" + }, + { + "displayName": "(534.11) Acute gastrojejunal ulcer with perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with perforation (534.1)\\(534.11) Acute gastrojejunal ulcer with perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastrojejunal ulcer (534)\\\\Acute gastrojejunal ulcer with perforation (534.1)\\\\(534.11) Acute gastrojejunal ulcer with perforation, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer with perforation (534.1)\\" + }, + { + "displayName": "Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastrojejunal ulcer (534)\\\\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\" + }, + { + "displayName": "(534.30) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\\(534.30) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastrojejunal ulcer (534)\\\\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\\\\(534.30) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\\" + }, + { + "displayName": "(534.31) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\\(534.31) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\\" + }, + { + "displayName": "Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\" + }, + { + "displayName": "(534.70) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\\(534.70) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\\" + }, + { + "displayName": "(534.71) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\\(534.71) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\\" + }, + { + "displayName": "Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\" + }, + { + "displayName": "(534.40) Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\\(534.40) Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\\" + }, + { + "displayName": "(534.41) Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\\(534.41) Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\\" + }, + { + "displayName": "Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\" + }, + { + "displayName": "(534.60) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\\(534.60) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\\" + }, + { + "displayName": "(534.61) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\\(534.61) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastrojejunal ulcer (534)\\\\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\\\\(534.61) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\\" + }, + { + "displayName": "Chronic or unspecified gastrojejunal ulcer with perforation (534.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastrojejunal ulcer (534)\\\\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\" + }, + { + "displayName": "(534.50) Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\\(534.50) Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastrojejunal ulcer (534)\\\\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\\\\(534.50) Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\\" + }, + { + "displayName": "(534.51) Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\\(534.51) Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastrojejunal ulcer (534)\\\\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\\\\(534.51) Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\\" + }, + { + "displayName": "Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Gastrojejunal ulcer (534)\\\\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\" + }, + { + "displayName": "(534.90) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\\(534.90) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\\" + }, + { + "displayName": "(534.91) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\\(534.91) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Gastrojejunal ulcer (534)\\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\\" + }, + { + "displayName": "Other disorders of stomach and duodenum (537)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\" + }, + { + "displayName": "(537.0) Acquired hypertrophic pyloric stenosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\(537.0) Acquired hypertrophic pyloric stenosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\" + }, + { + "displayName": "(537.1) Gastric diverticulum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\(537.1) Gastric diverticulum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\" + }, + { + "displayName": "(537.2) Chronic duodenal ileus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\(537.2) Chronic duodenal ileus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\" + }, + { + "displayName": "(537.3) Other obstruction of duodenum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\(537.3) Other obstruction of duodenum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\" + }, + { + "displayName": "(537.4) Fistula of stomach or duodenum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\(537.4) Fistula of stomach or duodenum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\" + }, + { + "displayName": "(537.5) Gastroptosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\(537.5) Gastroptosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\" + }, + { + "displayName": "(537.6) Hourglass stricture or stenosis of stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\(537.6) Hourglass stricture or stenosis of stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\" + }, + { + "displayName": "(537.9) Unspecified disorder of stomach and duodenum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\(537.9) Unspecified disorder of stomach and duodenum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Other disorders of stomach and duodenum (537)\\\\(537.9) Unspecified disorder of stomach and duodenum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\" + }, + { + "displayName": "Other specified disorders of stomach and duodenum (537.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\Other specified disorders of stomach and duodenum (537.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Other disorders of stomach and duodenum (537)\\\\Other specified disorders of stomach and duodenum (537.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\" + }, + { + "displayName": "(537.81) Pylorospasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\Other specified disorders of stomach and duodenum (537.8)\\(537.81) Pylorospasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\Other specified disorders of stomach and duodenum (537.8)\\" + }, + { + "displayName": "(537.82) Angiodysplasia of stomach and duodenum without mention of hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\Other specified disorders of stomach and duodenum (537.8)\\(537.82) Angiodysplasia of stomach and duodenum without mention of hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\Other specified disorders of stomach and duodenum (537.8)\\" + }, + { + "displayName": "(537.83) Angiodysplasia of stomach and duodenum with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\Other specified disorders of stomach and duodenum (537.8)\\(537.83) Angiodysplasia of stomach and duodenum with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\Other specified disorders of stomach and duodenum (537.8)\\" + }, + { + "displayName": "(537.84) Dieulafoy lesion (hemorrhagic) of stomach and duodenum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\Other specified disorders of stomach and duodenum (537.8)\\(537.84) Dieulafoy lesion (hemorrhagic) of stomach and duodenum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\Other specified disorders of stomach and duodenum (537.8)\\" + }, + { + "displayName": "(537.89) Other specified disorders of stomach and duodenum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\Other specified disorders of stomach and duodenum (537.8)\\(537.89) Other specified disorders of stomach and duodenum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Other disorders of stomach and duodenum (537)\\Other specified disorders of stomach and duodenum (537.8)\\" + }, + { + "displayName": "Peptic ulcer, site unspecified (533)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\" + }, + { + "displayName": "Acute peptic ulcer of unspecified site with hemorrhage (533.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\" + }, + { + "displayName": "(533.00) Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\\(533.00) Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\\" + }, + { + "displayName": "(533.01) Acute peptic ulcer of unspecified site with hemorrhage, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\\(533.01) Acute peptic ulcer of unspecified site with hemorrhage, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\\" + }, + { + "displayName": "Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\" + }, + { + "displayName": "(533.20) Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\\(533.20) Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\\\\(533.20) Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\\" + }, + { + "displayName": "(533.21) Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\\(533.21) Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\\" + }, + { + "displayName": "Acute peptic ulcer of unspecified site with perforation (533.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with perforation (533.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Acute peptic ulcer of unspecified site with perforation (533.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\" + }, + { + "displayName": "(533.10) Acute peptic ulcer of unspecified site with perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with perforation (533.1)\\(533.10) Acute peptic ulcer of unspecified site with perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Acute peptic ulcer of unspecified site with perforation (533.1)\\\\(533.10) Acute peptic ulcer of unspecified site with perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with perforation (533.1)\\" + }, + { + "displayName": "(533.11) Acute peptic ulcer of unspecified site with perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with perforation (533.1)\\(533.11) Acute peptic ulcer of unspecified site with perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site with perforation (533.1)\\" + }, + { + "displayName": "Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\" + }, + { + "displayName": "(533.30) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\\(533.30) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\\" + }, + { + "displayName": "(533.31) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\\(533.31) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\\\\(533.31) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\\" + }, + { + "displayName": "Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\" + }, + { + "displayName": "(533.40) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\\(533.40) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\\\\(533.40) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\\" + }, + { + "displayName": "(533.41) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\\(533.41) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\\\\(533.41) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\\" + }, + { + "displayName": "Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\" + }, + { + "displayName": "(533.60) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\\(533.60) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\\\\(533.60) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\\" + }, + { + "displayName": "(533.61) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\\(533.61) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\\\\(533.61) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\\" + }, + { + "displayName": "Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\" + }, + { + "displayName": "(533.50) Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\\(533.50) Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\\\\(533.50) Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\\" + }, + { + "displayName": "(533.51) Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\\(533.51) Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\\" + }, + { + "displayName": "Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\" + }, + { + "displayName": "(533.70) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\\(533.70) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\\\Peptic ulcer, site unspecified (533)\\\\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\\\\(533.70) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\\" + }, + { + "displayName": "(533.71) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\\(533.71) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\\" + }, + { + "displayName": "Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\" + }, + { + "displayName": "(533.90) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\\(533.90) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\\" + }, + { + "displayName": "(533.91) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\\(533.91) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of esophagus, stomach, and duodenum (530-539.99)\\Peptic ulcer, site unspecified (533)\\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\\" + }, + { + "displayName": "Diseases of oral cavity, salivary glands, and jaws (520-529.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\" + }, + { + "displayName": "Dentofacial anomalies, including malocclusion (524)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\" + }, + { + "displayName": "(524.4) Malocclusion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\(524.4) Malocclusion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\" + }, + { + "displayName": "(524.9) Unspecified dentofacial anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\(524.9) Unspecified dentofacial anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\" + }, + { + "displayName": "Anomalies of dental arch relationship (524.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Anomalies of dental arch relationship (524.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\" + }, + { + "displayName": "(524.20) Unspecified anomaly of dental arch relationship", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\(524.20) Unspecified anomaly of dental arch relationship\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Anomalies of dental arch relationship (524.2)\\\\(524.20) Unspecified anomaly of dental arch relationship\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\" + }, + { + "displayName": "(524.21) Malocclusion, Angle's class I", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\(524.21) Malocclusion, Angle's class I\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Anomalies of dental arch relationship (524.2)\\\\(524.21) Malocclusion, Angle's class I\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\" + }, + { + "displayName": "(524.22) Malocclusion, Angle's class II", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\(524.22) Malocclusion, Angle's class II\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Anomalies of dental arch relationship (524.2)\\\\(524.22) Malocclusion, Angle's class II\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\" + }, + { + "displayName": "(524.23) Malocclusion, Angle's class III", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\(524.23) Malocclusion, Angle's class III\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Anomalies of dental arch relationship (524.2)\\\\(524.23) Malocclusion, Angle's class III\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\" + }, + { + "displayName": "(524.24) Open anterior occlusal relationship", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\(524.24) Open anterior occlusal relationship\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Anomalies of dental arch relationship (524.2)\\\\(524.24) Open anterior occlusal relationship\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\" + }, + { + "displayName": "(524.25) Open posterior occlusal relationship", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\(524.25) Open posterior occlusal relationship\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\" + }, + { + "displayName": "(524.26) Excessive horizontal overlap", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\(524.26) Excessive horizontal overlap\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\" + }, + { + "displayName": "(524.27) Reverse articulation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\(524.27) Reverse articulation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\" + }, + { + "displayName": "(524.28) Anomalies of interarch distance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\(524.28) Anomalies of interarch distance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\" + }, + { + "displayName": "(524.29) Other anomalies of dental arch relationship", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\(524.29) Other anomalies of dental arch relationship\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of dental arch relationship (524.2)\\" + }, + { + "displayName": "Anomalies of relationship of jaw to cranial base (524.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of relationship of jaw to cranial base (524.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\" + }, + { + "displayName": "(524.10) Anomalies of relationship of jaw to cranial base, unspecified anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of relationship of jaw to cranial base (524.1)\\(524.10) Anomalies of relationship of jaw to cranial base, unspecified anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of relationship of jaw to cranial base (524.1)\\" + }, + { + "displayName": "(524.11) Anomalies of relationship of jaw to cranial base, maxillary asymmetry", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of relationship of jaw to cranial base (524.1)\\(524.11) Anomalies of relationship of jaw to cranial base, maxillary asymmetry\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of relationship of jaw to cranial base (524.1)\\" + }, + { + "displayName": "(524.12) Anomalies of relationship of jaw to cranial base, other jaw asymmetry", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of relationship of jaw to cranial base (524.1)\\(524.12) Anomalies of relationship of jaw to cranial base, other jaw asymmetry\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of relationship of jaw to cranial base (524.1)\\" + }, + { + "displayName": "(524.19) Anomalies of relationship of jaw to cranial base, other specified anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of relationship of jaw to cranial base (524.1)\\(524.19) Anomalies of relationship of jaw to cranial base, other specified anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of relationship of jaw to cranial base (524.1)\\" + }, + { + "displayName": "Anomalies of tooth position of fully erupted teeth (524.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\" + }, + { + "displayName": "(524.30) Unspecified anomaly of tooth position", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\(524.30) Unspecified anomaly of tooth position\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\" + }, + { + "displayName": "(524.31) Crowding of teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\(524.31) Crowding of teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\" + }, + { + "displayName": "(524.32) Excessive spacing of teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\(524.32) Excessive spacing of teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\" + }, + { + "displayName": "(524.33) Horizontal displacement of teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\(524.33) Horizontal displacement of teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\" + }, + { + "displayName": "(524.34) Vertical displacement of teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\(524.34) Vertical displacement of teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\" + }, + { + "displayName": "(524.35) Rotation of tooth/teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\(524.35) Rotation of tooth/teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\" + }, + { + "displayName": "(524.36) Insufficient interocclusal distance of teeth (ridge)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\(524.36) Insufficient interocclusal distance of teeth (ridge)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\" + }, + { + "displayName": "(524.37) Excessive interocclusal distance of teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\(524.37) Excessive interocclusal distance of teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Anomalies of tooth position of fully erupted teeth (524.3)\\\\(524.37) Excessive interocclusal distance of teeth\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\" + }, + { + "displayName": "(524.39) Other anomalies of tooth position", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\(524.39) Other anomalies of tooth position\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Anomalies of tooth position of fully erupted teeth (524.3)\\\\(524.39) Other anomalies of tooth position\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Anomalies of tooth position of fully erupted teeth (524.3)\\" + }, + { + "displayName": "Dental alveolar anomalies (524.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Dental alveolar anomalies (524.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\" + }, + { + "displayName": "(524.70) Dental alveolar anomalies, unspecified alveolar anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\(524.70) Dental alveolar anomalies, unspecified alveolar anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Dental alveolar anomalies (524.7)\\\\(524.70) Dental alveolar anomalies, unspecified alveolar anomaly\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\" + }, + { + "displayName": "(524.71) Alveolar maxillary hyperplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\(524.71) Alveolar maxillary hyperplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Dental alveolar anomalies (524.7)\\\\(524.71) Alveolar maxillary hyperplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\" + }, + { + "displayName": "(524.72) Alveolar mandibular hyperplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\(524.72) Alveolar mandibular hyperplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Dental alveolar anomalies (524.7)\\\\(524.72) Alveolar mandibular hyperplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\" + }, + { + "displayName": "(524.73) Alveolar maxillary hypoplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\(524.73) Alveolar maxillary hypoplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\" + }, + { + "displayName": "(524.74) Alveolar mandibular hypoplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\(524.74) Alveolar mandibular hypoplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\" + }, + { + "displayName": "(524.75) Vertical displacement of alveolus and teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\(524.75) Vertical displacement of alveolus and teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\" + }, + { + "displayName": "(524.76) Occlusal plane deviation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\(524.76) Occlusal plane deviation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\" + }, + { + "displayName": "(524.79) Other specified alveolar anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\(524.79) Other specified alveolar anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dental alveolar anomalies (524.7)\\" + }, + { + "displayName": "Dentofacial functional abnormalities (524.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\" + }, + { + "displayName": "(524.50) Dentofacial functional abnormality, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\(524.50) Dentofacial functional abnormality, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\" + }, + { + "displayName": "(524.51) Abnormal jaw closure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\(524.51) Abnormal jaw closure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\" + }, + { + "displayName": "(524.52) Limited mandibular range of motion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\(524.52) Limited mandibular range of motion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\" + }, + { + "displayName": "(524.53) Deviation in opening and closing of the mandible", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\(524.53) Deviation in opening and closing of the mandible\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Dentofacial functional abnormalities (524.5)\\\\(524.53) Deviation in opening and closing of the mandible\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\" + }, + { + "displayName": "(524.54) Insufficient anterior guidance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\(524.54) Insufficient anterior guidance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Dentofacial functional abnormalities (524.5)\\\\(524.54) Insufficient anterior guidance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\" + }, + { + "displayName": "(524.55) Centric occlusion maximum intercuspation discrepancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\(524.55) Centric occlusion maximum intercuspation discrepancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\" + }, + { + "displayName": "(524.56) Non-working side interference", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\(524.56) Non-working side interference\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\" + }, + { + "displayName": "(524.57) Lack of posterior occlusal support", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\(524.57) Lack of posterior occlusal support\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\" + }, + { + "displayName": "(524.59) Other dentofacial functional abnormalities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\(524.59) Other dentofacial functional abnormalities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Dentofacial functional abnormalities (524.5)\\" + }, + { + "displayName": "Major anomalies of jaw size (524.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\" + }, + { + "displayName": "(524.00) Major anomalies of jaw size, unspecified anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\(524.00) Major anomalies of jaw size, unspecified anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\" + }, + { + "displayName": "(524.01) Major anomalies of jaw size, maxillary hyperplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\(524.01) Major anomalies of jaw size, maxillary hyperplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\" + }, + { + "displayName": "(524.02) Major anomalies of jaw size, mandibular hyperplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\(524.02) Major anomalies of jaw size, mandibular hyperplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\" + }, + { + "displayName": "(524.03) Major anomalies of jaw size, maxillary hypoplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\(524.03) Major anomalies of jaw size, maxillary hypoplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\" + }, + { + "displayName": "(524.04) Major anomalies of jaw size, mandibular hypoplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\(524.04) Major anomalies of jaw size, mandibular hypoplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Major anomalies of jaw size (524.0)\\\\(524.04) Major anomalies of jaw size, mandibular hypoplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\" + }, + { + "displayName": "(524.05) Major anomalies of jaw size, macrogenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\(524.05) Major anomalies of jaw size, macrogenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Major anomalies of jaw size (524.0)\\\\(524.05) Major anomalies of jaw size, macrogenia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\" + }, + { + "displayName": "(524.06) Major anomalies of jaw size, microgenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\(524.06) Major anomalies of jaw size, microgenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\" + }, + { + "displayName": "(524.07) Excessive tuberosity of jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\(524.07) Excessive tuberosity of jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\" + }, + { + "displayName": "(524.09) Major anomalies of jaw size, other specified anomaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\(524.09) Major anomalies of jaw size, other specified anomaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Major anomalies of jaw size (524.0)\\" + }, + { + "displayName": "Other specified dentofacial anomalies (524.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Other specified dentofacial anomalies (524.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Other specified dentofacial anomalies (524.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\" + }, + { + "displayName": "(524.81) Anterior soft tissue impingement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Other specified dentofacial anomalies (524.8)\\(524.81) Anterior soft tissue impingement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Other specified dentofacial anomalies (524.8)\\\\(524.81) Anterior soft tissue impingement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Other specified dentofacial anomalies (524.8)\\" + }, + { + "displayName": "(524.82) Posterior soft tissue impingement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Other specified dentofacial anomalies (524.8)\\(524.82) Posterior soft tissue impingement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Other specified dentofacial anomalies (524.8)\\\\(524.82) Posterior soft tissue impingement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Other specified dentofacial anomalies (524.8)\\" + }, + { + "displayName": "(524.89) Other specified dentofacial anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Other specified dentofacial anomalies (524.8)\\(524.89) Other specified dentofacial anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Other specified dentofacial anomalies (524.8)\\" + }, + { + "displayName": "Temporomandibular joint disorders (524.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Temporomandibular joint disorders (524.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\" + }, + { + "displayName": "(524.60) Temporomandibular joint disorders, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\(524.60) Temporomandibular joint disorders, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Temporomandibular joint disorders (524.6)\\\\(524.60) Temporomandibular joint disorders, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\" + }, + { + "displayName": "(524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\(524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Temporomandibular joint disorders (524.6)\\\\(524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\" + }, + { + "displayName": "(524.62) Temporomandibular joint disorders, arthralgia of temporomandibular joint", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\(524.62) Temporomandibular joint disorders, arthralgia of temporomandibular joint\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\" + }, + { + "displayName": "(524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\(524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Temporomandibular joint disorders (524.6)\\\\(524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\" + }, + { + "displayName": "(524.64) Temporomandibular joint sounds on opening and/or closing the jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\(524.64) Temporomandibular joint sounds on opening and/or closing the jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Temporomandibular joint disorders (524.6)\\\\(524.64) Temporomandibular joint sounds on opening and/or closing the jaw\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\" + }, + { + "displayName": "(524.69) Other specified temporomandibular joint disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\(524.69) Other specified temporomandibular joint disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Dentofacial anomalies, including malocclusion (524)\\\\Temporomandibular joint disorders (524.6)\\\\(524.69) Other specified temporomandibular joint disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Dentofacial anomalies, including malocclusion (524)\\Temporomandibular joint disorders (524.6)\\" + }, + { + "displayName": "Diseases and other conditions of the tongue (529)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases and other conditions of the tongue (529)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\" + }, + { + "displayName": "(529.0) Glossitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\(529.0) Glossitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases and other conditions of the tongue (529)\\\\(529.0) Glossitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\" + }, + { + "displayName": "(529.1) Geographic tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\(529.1) Geographic tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases and other conditions of the tongue (529)\\\\(529.1) Geographic tongue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\" + }, + { + "displayName": "(529.2) Median rhomboid glossitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\(529.2) Median rhomboid glossitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\" + }, + { + "displayName": "(529.3) Hypertrophy of tongue papillae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\(529.3) Hypertrophy of tongue papillae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\" + }, + { + "displayName": "(529.4) Atrophy of tongue papillae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\(529.4) Atrophy of tongue papillae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\" + }, + { + "displayName": "(529.5) Plicated tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\(529.5) Plicated tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\" + }, + { + "displayName": "(529.6) Glossodynia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\(529.6) Glossodynia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\" + }, + { + "displayName": "(529.8) Other specified conditions of the tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\(529.8) Other specified conditions of the tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\" + }, + { + "displayName": "(529.9) Unspecified condition of the tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\(529.9) Unspecified condition of the tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases and other conditions of the tongue (529)\\" + }, + { + "displayName": "Diseases of hard tissues of teeth (521)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\" + }, + { + "displayName": "(521.5) Hypercementosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\(521.5) Hypercementosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\" + }, + { + "displayName": "(521.6) Ankylosis of teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\(521.6) Ankylosis of teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\" + }, + { + "displayName": "(521.7) Intrinsic posteruptive color changes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\(521.7) Intrinsic posteruptive color changes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\" + }, + { + "displayName": "(521.9) Unspecified disease of hard tissues of teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\(521.9) Unspecified disease of hard tissues of teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of hard tissues of teeth (521)\\\\(521.9) Unspecified disease of hard tissues of teeth\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\" + }, + { + "displayName": "Abrasion of teeth (521.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\" + }, + { + "displayName": "(521.20) Abrasion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\(521.20) Abrasion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of hard tissues of teeth (521)\\\\Abrasion of teeth (521.2)\\\\(521.20) Abrasion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\" + }, + { + "displayName": "(521.21) Abrasion, limited to enamel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\(521.21) Abrasion, limited to enamel\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of hard tissues of teeth (521)\\\\Abrasion of teeth (521.2)\\\\(521.21) Abrasion, limited to enamel\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\" + }, + { + "displayName": "(521.22) Abrasion, extending into dentine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\(521.22) Abrasion, extending into dentine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of hard tissues of teeth (521)\\\\Abrasion of teeth (521.2)\\\\(521.22) Abrasion, extending into dentine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\" + }, + { + "displayName": "(521.23) Abrasion, extending into pulp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\(521.23) Abrasion, extending into pulp\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\" + }, + { + "displayName": "(521.24) Abrasion, localized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\(521.24) Abrasion, localized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\" + }, + { + "displayName": "(521.25) Abrasion, generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\(521.25) Abrasion, generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Abrasion of teeth (521.2)\\" + }, + { + "displayName": "Dental caries (521.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\" + }, + { + "displayName": "(521.00) Dental caries, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\(521.00) Dental caries, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\" + }, + { + "displayName": "(521.01) Dental caries limited to enamel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\(521.01) Dental caries limited to enamel\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\" + }, + { + "displayName": "(521.02) Dental caries extending into dentine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\(521.02) Dental caries extending into dentine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\" + }, + { + "displayName": "(521.03) Dental caries extending into pulp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\(521.03) Dental caries extending into pulp\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\" + }, + { + "displayName": "(521.04) Arrested dental caries", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\(521.04) Arrested dental caries\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\" + }, + { + "displayName": "(521.05) Odontoclasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\(521.05) Odontoclasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\" + }, + { + "displayName": "(521.06) Dental caries pit and fissure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\(521.06) Dental caries pit and fissure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\" + }, + { + "displayName": "(521.07) Dental caries of smooth surface", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\(521.07) Dental caries of smooth surface\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\" + }, + { + "displayName": "(521.08) Dental caries of root surface", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\(521.08) Dental caries of root surface\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of hard tissues of teeth (521)\\\\Dental caries (521.0)\\\\(521.08) Dental caries of root surface\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\" + }, + { + "displayName": "(521.09) Other dental caries", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\(521.09) Other dental caries\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of hard tissues of teeth (521)\\\\Dental caries (521.0)\\\\(521.09) Other dental caries\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Dental caries (521.0)\\" + }, + { + "displayName": "Erosion of teeth (521.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of hard tissues of teeth (521)\\\\Erosion of teeth (521.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\" + }, + { + "displayName": "(521.30) Erosion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\(521.30) Erosion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\" + }, + { + "displayName": "(521.31) Erosion, limited to enamel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\(521.31) Erosion, limited to enamel\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\" + }, + { + "displayName": "(521.32) Erosion, extending into dentine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\(521.32) Erosion, extending into dentine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\" + }, + { + "displayName": "(521.33) Erosion, extending into pulp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\(521.33) Erosion, extending into pulp\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\" + }, + { + "displayName": "(521.34) Erosion, localized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\(521.34) Erosion, localized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\" + }, + { + "displayName": "(521.35) Erosion, generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\(521.35) Erosion, generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Erosion of teeth (521.3)\\" + }, + { + "displayName": "Excessive dental attrition [approximal wear] [occlusal wear] (521.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\" + }, + { + "displayName": "(521.10) Excessive attrition, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\(521.10) Excessive attrition, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\" + }, + { + "displayName": "(521.11) Excessive attrition, limited to enamel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\(521.11) Excessive attrition, limited to enamel\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\" + }, + { + "displayName": "(521.12) Excessive attrition, extending into dentine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\(521.12) Excessive attrition, extending into dentine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\" + }, + { + "displayName": "(521.13) Excessive attrition, extending into pulp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\(521.13) Excessive attrition, extending into pulp\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\" + }, + { + "displayName": "(521.14) Excessive attrition, localized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\(521.14) Excessive attrition, localized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\" + }, + { + "displayName": "(521.15) Excessive attrition, generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\(521.15) Excessive attrition, generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\\" + }, + { + "displayName": "Other specified diseases of hard tissues of teeth (521.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Other specified diseases of hard tissues of teeth (521.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\" + }, + { + "displayName": "(521.81) Cracked tooth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Other specified diseases of hard tissues of teeth (521.8)\\(521.81) Cracked tooth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Other specified diseases of hard tissues of teeth (521.8)\\" + }, + { + "displayName": "(521.89) Other specific diseases of hard tissues of teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Other specified diseases of hard tissues of teeth (521.8)\\(521.89) Other specific diseases of hard tissues of teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Other specified diseases of hard tissues of teeth (521.8)\\" + }, + { + "displayName": "Pathological tooth resorption (521.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Pathological tooth resorption (521.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\" + }, + { + "displayName": "(521.40) Pathological resorption, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Pathological tooth resorption (521.4)\\(521.40) Pathological resorption, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Pathological tooth resorption (521.4)\\" + }, + { + "displayName": "(521.41) Pathological resorption, internal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Pathological tooth resorption (521.4)\\(521.41) Pathological resorption, internal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Pathological tooth resorption (521.4)\\" + }, + { + "displayName": "(521.42) Pathological resorption, external", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Pathological tooth resorption (521.4)\\(521.42) Pathological resorption, external\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Pathological tooth resorption (521.4)\\" + }, + { + "displayName": "(521.49) Other pathological resorption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Pathological tooth resorption (521.4)\\(521.49) Other pathological resorption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of hard tissues of teeth (521)\\\\Pathological tooth resorption (521.4)\\\\(521.49) Other pathological resorption\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of hard tissues of teeth (521)\\Pathological tooth resorption (521.4)\\" + }, + { + "displayName": "Diseases of pulp and periapical tissues (522)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of pulp and periapical tissues (522)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\" + }, + { + "displayName": "(522.0) Pulpitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\(522.0) Pulpitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of pulp and periapical tissues (522)\\\\(522.0) Pulpitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\" + }, + { + "displayName": "(522.1) Necrosis of the pulp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\(522.1) Necrosis of the pulp\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\" + }, + { + "displayName": "(522.2) Pulp degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\(522.2) Pulp degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of pulp and periapical tissues (522)\\\\(522.2) Pulp degeneration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\" + }, + { + "displayName": "(522.3) Abnormal hard tissue formation in pulp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\(522.3) Abnormal hard tissue formation in pulp\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\" + }, + { + "displayName": "(522.4) Acute apical periodontitis of pulpal origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\(522.4) Acute apical periodontitis of pulpal origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of pulp and periapical tissues (522)\\\\(522.4) Acute apical periodontitis of pulpal origin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\" + }, + { + "displayName": "(522.5) Periapical abscess without sinus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\(522.5) Periapical abscess without sinus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of pulp and periapical tissues (522)\\\\(522.5) Periapical abscess without sinus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\" + }, + { + "displayName": "(522.6) Chronic apical periodontitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\(522.6) Chronic apical periodontitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of pulp and periapical tissues (522)\\\\(522.6) Chronic apical periodontitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\" + }, + { + "displayName": "(522.7) Periapical abscess with sinus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\(522.7) Periapical abscess with sinus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of pulp and periapical tissues (522)\\\\(522.7) Periapical abscess with sinus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\" + }, + { + "displayName": "(522.8) Radicular cyst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\(522.8) Radicular cyst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of pulp and periapical tissues (522)\\\\(522.8) Radicular cyst\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\" + }, + { + "displayName": "(522.9) Other and unspecified diseases of pulp and periapical tissues", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\(522.9) Other and unspecified diseases of pulp and periapical tissues\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of pulp and periapical tissues (522)\\" + }, + { + "displayName": "Diseases of the jaws (526)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\" + }, + { + "displayName": "(526.0) Developmental odontogenic cysts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\(526.0) Developmental odontogenic cysts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\(526.0) Developmental odontogenic cysts\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\" + }, + { + "displayName": "(526.1) Fissural cysts of jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\(526.1) Fissural cysts of jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\" + }, + { + "displayName": "(526.2) Other cysts of jaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\(526.2) Other cysts of jaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\(526.2) Other cysts of jaws\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\" + }, + { + "displayName": "(526.3) Central giant cell (reparative) granuloma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\(526.3) Central giant cell (reparative) granuloma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\(526.3) Central giant cell (reparative) granuloma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\" + }, + { + "displayName": "(526.4) Inflammatory conditions of jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\(526.4) Inflammatory conditions of jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\" + }, + { + "displayName": "(526.5) Alveolitis of jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\(526.5) Alveolitis of jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\(526.5) Alveolitis of jaw\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\" + }, + { + "displayName": "(526.9) Unspecified disease of the jaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\(526.9) Unspecified disease of the jaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\(526.9) Unspecified disease of the jaws\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\" + }, + { + "displayName": "Other specified diseases of the jaws (526.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Other specified diseases of the jaws (526.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\Other specified diseases of the jaws (526.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\" + }, + { + "displayName": "(526.81) Exostosis of jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Other specified diseases of the jaws (526.8)\\(526.81) Exostosis of jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\Other specified diseases of the jaws (526.8)\\\\(526.81) Exostosis of jaw\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Other specified diseases of the jaws (526.8)\\" + }, + { + "displayName": "(526.89) Other specified diseases of the jaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Other specified diseases of the jaws (526.8)\\(526.89) Other specified diseases of the jaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Other specified diseases of the jaws (526.8)\\" + }, + { + "displayName": "Periradicular pathology associated with previous endodontic treatment (526.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Periradicular pathology associated with previous endodontic treatment (526.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\Periradicular pathology associated with previous endodontic treatment (526.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\" + }, + { + "displayName": "(526.61) Perforation of root canal space", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Periradicular pathology associated with previous endodontic treatment (526.6)\\(526.61) Perforation of root canal space\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\Periradicular pathology associated with previous endodontic treatment (526.6)\\\\(526.61) Perforation of root canal space\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Periradicular pathology associated with previous endodontic treatment (526.6)\\" + }, + { + "displayName": "(526.62) Endodontic overfill", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Periradicular pathology associated with previous endodontic treatment (526.6)\\(526.62) Endodontic overfill\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\Periradicular pathology associated with previous endodontic treatment (526.6)\\\\(526.62) Endodontic overfill\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Periradicular pathology associated with previous endodontic treatment (526.6)\\" + }, + { + "displayName": "(526.63) Endodontic underfill", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Periradicular pathology associated with previous endodontic treatment (526.6)\\(526.63) Endodontic underfill\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Periradicular pathology associated with previous endodontic treatment (526.6)\\" + }, + { + "displayName": "(526.69) Other periradicular pathology associated with previous endodontic treatment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Periradicular pathology associated with previous endodontic treatment (526.6)\\(526.69) Other periradicular pathology associated with previous endodontic treatment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the jaws (526)\\\\Periradicular pathology associated with previous endodontic treatment (526.6)\\\\(526.69) Other periradicular pathology associated with previous endodontic treatment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the jaws (526)\\Periradicular pathology associated with previous endodontic treatment (526.6)\\" + }, + { + "displayName": "Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\" + }, + { + "displayName": "(528.1) Cancrum oris", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\(528.1) Cancrum oris\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\(528.1) Cancrum oris\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\" + }, + { + "displayName": "(528.2) Oral aphthae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\(528.2) Oral aphthae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\(528.2) Oral aphthae\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\" + }, + { + "displayName": "(528.3) Cellulitis and abscess of oral soft tissues", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\(528.3) Cellulitis and abscess of oral soft tissues\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\" + }, + { + "displayName": "(528.4) Cysts of oral soft tissues", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\(528.4) Cysts of oral soft tissues\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\(528.4) Cysts of oral soft tissues\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\" + }, + { + "displayName": "(528.5) Diseases of lips", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\(528.5) Diseases of lips\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\(528.5) Diseases of lips\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\" + }, + { + "displayName": "(528.6) Leukoplakia of oral mucosa, including tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\(528.6) Leukoplakia of oral mucosa, including tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\(528.6) Leukoplakia of oral mucosa, including tongue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\" + }, + { + "displayName": "(528.8) Oral submucosal fibrosis, including of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\(528.8) Oral submucosal fibrosis, including of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\(528.8) Oral submucosal fibrosis, including of tongue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\" + }, + { + "displayName": "(528.9) Other and unspecified diseases of the oral soft tissues", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\(528.9) Other and unspecified diseases of the oral soft tissues\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\(528.9) Other and unspecified diseases of the oral soft tissues\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\" + }, + { + "displayName": "Other disturbances of oral epithelium, including tongue (528.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Other disturbances of oral epithelium, including tongue (528.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\Other disturbances of oral epithelium, including tongue (528.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\" + }, + { + "displayName": "(528.71) Minimal keratinized residual ridge mucosa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Other disturbances of oral epithelium, including tongue (528.7)\\(528.71) Minimal keratinized residual ridge mucosa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\Other disturbances of oral epithelium, including tongue (528.7)\\\\(528.71) Minimal keratinized residual ridge mucosa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Other disturbances of oral epithelium, including tongue (528.7)\\" + }, + { + "displayName": "(528.72) Excessive keratinized residual ridge mucosa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Other disturbances of oral epithelium, including tongue (528.7)\\(528.72) Excessive keratinized residual ridge mucosa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Other disturbances of oral epithelium, including tongue (528.7)\\" + }, + { + "displayName": "(528.79) Other disturbances of oral epithelium, including tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Other disturbances of oral epithelium, including tongue (528.7)\\(528.79) Other disturbances of oral epithelium, including tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\Other disturbances of oral epithelium, including tongue (528.7)\\\\(528.79) Other disturbances of oral epithelium, including tongue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Other disturbances of oral epithelium, including tongue (528.7)\\" + }, + { + "displayName": "Stomatitis and mucositis (ulcerative) (528.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Stomatitis and mucositis (ulcerative) (528.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\Stomatitis and mucositis (ulcerative) (528.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\" + }, + { + "displayName": "(528.00) Stomatitis and mucositis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Stomatitis and mucositis (ulcerative) (528.0)\\(528.00) Stomatitis and mucositis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\Stomatitis and mucositis (ulcerative) (528.0)\\\\(528.00) Stomatitis and mucositis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Stomatitis and mucositis (ulcerative) (528.0)\\" + }, + { + "displayName": "(528.01) Mucositis (ulcerative) due to antineoplastic therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Stomatitis and mucositis (ulcerative) (528.0)\\(528.01) Mucositis (ulcerative) due to antineoplastic therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Stomatitis and mucositis (ulcerative) (528.0)\\" + }, + { + "displayName": "(528.02) Mucositis (ulcerative) due to other drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Stomatitis and mucositis (ulcerative) (528.0)\\(528.02) Mucositis (ulcerative) due to other drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\Stomatitis and mucositis (ulcerative) (528.0)\\\\(528.02) Mucositis (ulcerative) due to other drugs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Stomatitis and mucositis (ulcerative) (528.0)\\" + }, + { + "displayName": "(528.09) Other stomatitis and mucositis (ulcerative)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Stomatitis and mucositis (ulcerative) (528.0)\\(528.09) Other stomatitis and mucositis (ulcerative)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\\\Stomatitis and mucositis (ulcerative) (528.0)\\\\(528.09) Other stomatitis and mucositis (ulcerative)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\\Stomatitis and mucositis (ulcerative) (528.0)\\" + }, + { + "displayName": "Diseases of the salivary glands (527)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\" + }, + { + "displayName": "(527.0) Atrophy of salivary gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\(527.0) Atrophy of salivary gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the salivary glands (527)\\\\(527.0) Atrophy of salivary gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\" + }, + { + "displayName": "(527.1) Hypertrophy of salivary gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\(527.1) Hypertrophy of salivary gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the salivary glands (527)\\\\(527.1) Hypertrophy of salivary gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\" + }, + { + "displayName": "(527.2) Sialoadenitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\(527.2) Sialoadenitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the salivary glands (527)\\\\(527.2) Sialoadenitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\" + }, + { + "displayName": "(527.3) Abscess of salivary gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\(527.3) Abscess of salivary gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the salivary glands (527)\\\\(527.3) Abscess of salivary gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\" + }, + { + "displayName": "(527.4) Fistula of salivary gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\(527.4) Fistula of salivary gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\" + }, + { + "displayName": "(527.5) Sialolithiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\(527.5) Sialolithiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the salivary glands (527)\\\\(527.5) Sialolithiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\" + }, + { + "displayName": "(527.6) Mucocele of salivary gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\(527.6) Mucocele of salivary gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the salivary glands (527)\\\\(527.6) Mucocele of salivary gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\" + }, + { + "displayName": "(527.7) Disturbance of salivary secretion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\(527.7) Disturbance of salivary secretion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the salivary glands (527)\\\\(527.7) Disturbance of salivary secretion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\" + }, + { + "displayName": "(527.8) Other specified diseases of the salivary glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\(527.8) Other specified diseases of the salivary glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Diseases of the salivary glands (527)\\\\(527.8) Other specified diseases of the salivary glands\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\" + }, + { + "displayName": "(527.9) Unspecified disease of the salivary glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\(527.9) Unspecified disease of the salivary glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Diseases of the salivary glands (527)\\" + }, + { + "displayName": "Disorders of tooth development and eruption (520)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Disorders of tooth development and eruption (520)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\" + }, + { + "displayName": "(520.0) Anodontia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\(520.0) Anodontia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Disorders of tooth development and eruption (520)\\\\(520.0) Anodontia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\" + }, + { + "displayName": "(520.1) Supernumerary teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\(520.1) Supernumerary teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Disorders of tooth development and eruption (520)\\\\(520.1) Supernumerary teeth\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\" + }, + { + "displayName": "(520.2) Abnormalities of size and form of teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\(520.2) Abnormalities of size and form of teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Disorders of tooth development and eruption (520)\\\\(520.2) Abnormalities of size and form of teeth\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\" + }, + { + "displayName": "(520.3) Mottled teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\(520.3) Mottled teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\" + }, + { + "displayName": "(520.4) Disturbances of tooth formation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\(520.4) Disturbances of tooth formation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Disorders of tooth development and eruption (520)\\\\(520.4) Disturbances of tooth formation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\" + }, + { + "displayName": "(520.5) Hereditary disturbances in tooth structure, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\(520.5) Hereditary disturbances in tooth structure, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Disorders of tooth development and eruption (520)\\\\(520.5) Hereditary disturbances in tooth structure, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\" + }, + { + "displayName": "(520.6) Disturbances in tooth eruption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\(520.6) Disturbances in tooth eruption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Disorders of tooth development and eruption (520)\\\\(520.6) Disturbances in tooth eruption\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\" + }, + { + "displayName": "(520.7) Teething syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\(520.7) Teething syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Disorders of tooth development and eruption (520)\\\\(520.7) Teething syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\" + }, + { + "displayName": "(520.8) Other specified disorders of tooth development and eruption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\(520.8) Other specified disorders of tooth development and eruption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\" + }, + { + "displayName": "(520.9) Unspecified disorder of tooth development and eruption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\(520.9) Unspecified disorder of tooth development and eruption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Disorders of tooth development and eruption (520)\\\\(520.9) Unspecified disorder of tooth development and eruption\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Disorders of tooth development and eruption (520)\\" + }, + { + "displayName": "Gingival and periodontal diseases (523)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\" + }, + { + "displayName": "(523.5) Periodontosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\(523.5) Periodontosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\" + }, + { + "displayName": "(523.6) Accretions on teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\(523.6) Accretions on teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\(523.6) Accretions on teeth\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\" + }, + { + "displayName": "(523.8) Other specified periodontal diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\(523.8) Other specified periodontal diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\(523.8) Other specified periodontal diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\" + }, + { + "displayName": "(523.9) Unspecified gingival and periodontal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\(523.9) Unspecified gingival and periodontal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\(523.9) Unspecified gingival and periodontal disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\" + }, + { + "displayName": "Acute gingivitis (523.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Acute gingivitis (523.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Acute gingivitis (523.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\" + }, + { + "displayName": "(523.00) Acute gingivitis, plaque induced", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Acute gingivitis (523.0)\\(523.00) Acute gingivitis, plaque induced\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Acute gingivitis (523.0)\\\\(523.00) Acute gingivitis, plaque induced\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Acute gingivitis (523.0)\\" + }, + { + "displayName": "(523.01) Acute gingivitis, non-plaque induced", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Acute gingivitis (523.0)\\(523.01) Acute gingivitis, non-plaque induced\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Acute gingivitis (523.0)\\\\(523.01) Acute gingivitis, non-plaque induced\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Acute gingivitis (523.0)\\" + }, + { + "displayName": "Aggressive and acute periodontitis (523.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Aggressive and acute periodontitis (523.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\" + }, + { + "displayName": "(523.30) Aggressive periodontitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Aggressive and acute periodontitis (523.3)\\(523.30) Aggressive periodontitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Aggressive and acute periodontitis (523.3)\\" + }, + { + "displayName": "(523.31) Aggressive periodontitis, localized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Aggressive and acute periodontitis (523.3)\\(523.31) Aggressive periodontitis, localized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Aggressive and acute periodontitis (523.3)\\" + }, + { + "displayName": "(523.32) Aggressive periodontitis, generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Aggressive and acute periodontitis (523.3)\\(523.32) Aggressive periodontitis, generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Aggressive and acute periodontitis (523.3)\\\\(523.32) Aggressive periodontitis, generalized\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Aggressive and acute periodontitis (523.3)\\" + }, + { + "displayName": "(523.33) Acute periodontitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Aggressive and acute periodontitis (523.3)\\(523.33) Acute periodontitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Aggressive and acute periodontitis (523.3)\\" + }, + { + "displayName": "Chronic gingivitis (523.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic gingivitis (523.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Chronic gingivitis (523.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\" + }, + { + "displayName": "(523.10) Chronic gingivitis, plaque induced", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic gingivitis (523.1)\\(523.10) Chronic gingivitis, plaque induced\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Chronic gingivitis (523.1)\\\\(523.10) Chronic gingivitis, plaque induced\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic gingivitis (523.1)\\" + }, + { + "displayName": "(523.11) Chronic gingivitis, non-plaque induced", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic gingivitis (523.1)\\(523.11) Chronic gingivitis, non-plaque induced\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic gingivitis (523.1)\\" + }, + { + "displayName": "Chronic periodontitis (523.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic periodontitis (523.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Chronic periodontitis (523.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\" + }, + { + "displayName": "(523.40) Chronic periodontitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic periodontitis (523.4)\\(523.40) Chronic periodontitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Chronic periodontitis (523.4)\\\\(523.40) Chronic periodontitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic periodontitis (523.4)\\" + }, + { + "displayName": "(523.41) Chronic periodontitis, localized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic periodontitis (523.4)\\(523.41) Chronic periodontitis, localized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Chronic periodontitis (523.4)\\\\(523.41) Chronic periodontitis, localized\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic periodontitis (523.4)\\" + }, + { + "displayName": "(523.42) Chronic periodontitis, generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic periodontitis (523.4)\\(523.42) Chronic periodontitis, generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Chronic periodontitis (523.4)\\" + }, + { + "displayName": "Gingival recession (523.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Gingival recession (523.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\" + }, + { + "displayName": "(523.20) Gingival recession, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\(523.20) Gingival recession, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Gingival recession (523.2)\\\\(523.20) Gingival recession, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\" + }, + { + "displayName": "(523.21) Gingival recession, minimal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\(523.21) Gingival recession, minimal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\" + }, + { + "displayName": "(523.22) Gingival recession, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\(523.22) Gingival recession, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Gingival recession (523.2)\\\\(523.22) Gingival recession, moderate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\" + }, + { + "displayName": "(523.23) Gingival recession, severe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\(523.23) Gingival recession, severe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\" + }, + { + "displayName": "(523.24) Gingival recession, localized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\(523.24) Gingival recession, localized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Gingival and periodontal diseases (523)\\\\Gingival recession (523.2)\\\\(523.24) Gingival recession, localized\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\" + }, + { + "displayName": "(523.25) Gingival recession, generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\(523.25) Gingival recession, generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Gingival and periodontal diseases (523)\\Gingival recession (523.2)\\" + }, + { + "displayName": "Other diseases and conditions of the teeth and supporting structures (525)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\" + }, + { + "displayName": "(525.0) Exfoliation of teeth due to systemic causes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\(525.0) Exfoliation of teeth due to systemic causes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\" + }, + { + "displayName": "(525.3) Retained dental root", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\(525.3) Retained dental root\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\(525.3) Retained dental root\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\" + }, + { + "displayName": "(525.8) Other specified disorders of the teeth and supporting structures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\(525.8) Other specified disorders of the teeth and supporting structures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\(525.8) Other specified disorders of the teeth and supporting structures\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\" + }, + { + "displayName": "(525.9) Unspecified disorder of the teeth and supporting structures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\(525.9) Unspecified disorder of the teeth and supporting structures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\(525.9) Unspecified disorder of the teeth and supporting structures\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\" + }, + { + "displayName": "Atrophy of edentulous alveolar ridge (525.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\" + }, + { + "displayName": "(525.20) Unspecified atrophy of edentulous alveolar ridge", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\(525.20) Unspecified atrophy of edentulous alveolar ridge\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\" + }, + { + "displayName": "(525.21) Minimal atrophy of the mandible", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\(525.21) Minimal atrophy of the mandible\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Atrophy of edentulous alveolar ridge (525.2)\\\\(525.21) Minimal atrophy of the mandible\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\" + }, + { + "displayName": "(525.22) Moderate atrophy of the mandible", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\(525.22) Moderate atrophy of the mandible\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\" + }, + { + "displayName": "(525.23) Severe atrophy of the mandible", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\(525.23) Severe atrophy of the mandible\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Atrophy of edentulous alveolar ridge (525.2)\\\\(525.23) Severe atrophy of the mandible\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\" + }, + { + "displayName": "(525.24) Minimal atrophy of the maxilla", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\(525.24) Minimal atrophy of the maxilla\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\" + }, + { + "displayName": "(525.25) Moderate atrophy of the maxilla", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\(525.25) Moderate atrophy of the maxilla\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Atrophy of edentulous alveolar ridge (525.2)\\\\(525.25) Moderate atrophy of the maxilla\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\" + }, + { + "displayName": "(525.26) Severe atrophy of the maxilla", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\(525.26) Severe atrophy of the maxilla\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Atrophy of edentulous alveolar ridge (525.2)\\\\(525.26) Severe atrophy of the maxilla\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Atrophy of edentulous alveolar ridge (525.2)\\" + }, + { + "displayName": "Complete edentulism (525.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Complete edentulism (525.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Complete edentulism (525.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\" + }, + { + "displayName": "(525.40) Complete edentulism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Complete edentulism (525.4)\\(525.40) Complete edentulism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Complete edentulism (525.4)\\\\(525.40) Complete edentulism, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Complete edentulism (525.4)\\" + }, + { + "displayName": "(525.41) Complete edentulism, class I", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Complete edentulism (525.4)\\(525.41) Complete edentulism, class I\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Complete edentulism (525.4)\\" + }, + { + "displayName": "(525.42) Complete edentulism, class II", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Complete edentulism (525.4)\\(525.42) Complete edentulism, class II\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Complete edentulism (525.4)\\" + }, + { + "displayName": "(525.43) Complete edentulism, class III", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Complete edentulism (525.4)\\(525.43) Complete edentulism, class III\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Complete edentulism (525.4)\\" + }, + { + "displayName": "(525.44) Complete edentulism, class IV", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Complete edentulism (525.4)\\(525.44) Complete edentulism, class IV\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Complete edentulism (525.4)\\" + }, + { + "displayName": "Endosseous dental implant failure (525.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Endosseous dental implant failure (525.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\" + }, + { + "displayName": "(525.71) Osseointegration failure of dental implant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Endosseous dental implant failure (525.7)\\(525.71) Osseointegration failure of dental implant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Endosseous dental implant failure (525.7)\\" + }, + { + "displayName": "(525.72) Post-osseointegration biological failure of dental implant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Endosseous dental implant failure (525.7)\\(525.72) Post-osseointegration biological failure of dental implant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Endosseous dental implant failure (525.7)\\" + }, + { + "displayName": "(525.73) Post-osseointegration mechanical failure of dental implant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Endosseous dental implant failure (525.7)\\(525.73) Post-osseointegration mechanical failure of dental implant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Endosseous dental implant failure (525.7)\\" + }, + { + "displayName": "(525.79) Other endosseous dental implant failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Endosseous dental implant failure (525.7)\\(525.79) Other endosseous dental implant failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Endosseous dental implant failure (525.7)\\" + }, + { + "displayName": "Loss of teeth due to trauma, extraction, or periodontal disease (525.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\" + }, + { + "displayName": "(525.10) Acquired absence of teeth, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\(525.10) Acquired absence of teeth, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\" + }, + { + "displayName": "(525.11) Loss of teeth due to trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\(525.11) Loss of teeth due to trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\\\(525.11) Loss of teeth due to trauma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\" + }, + { + "displayName": "(525.12) Loss of teeth due to periodontal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\(525.12) Loss of teeth due to periodontal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\\\(525.12) Loss of teeth due to periodontal disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\" + }, + { + "displayName": "(525.13) Loss of teeth due to caries", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\(525.13) Loss of teeth due to caries\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\" + }, + { + "displayName": "(525.19) Other loss of teeth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\(525.19) Other loss of teeth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\\" + }, + { + "displayName": "Partial edentulism (525.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Partial edentulism (525.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Partial edentulism (525.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\" + }, + { + "displayName": "(525.50) Partial edentulism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Partial edentulism (525.5)\\(525.50) Partial edentulism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Partial edentulism (525.5)\\" + }, + { + "displayName": "(525.51) Partial edentulism, class I", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Partial edentulism (525.5)\\(525.51) Partial edentulism, class I\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Partial edentulism (525.5)\\\\(525.51) Partial edentulism, class I\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Partial edentulism (525.5)\\" + }, + { + "displayName": "(525.52) Partial edentulism, class II", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Partial edentulism (525.5)\\(525.52) Partial edentulism, class II\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Partial edentulism (525.5)\\\\(525.52) Partial edentulism, class II\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Partial edentulism (525.5)\\" + }, + { + "displayName": "(525.53) Partial edentulism, class III", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Partial edentulism (525.5)\\(525.53) Partial edentulism, class III\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Partial edentulism (525.5)\\" + }, + { + "displayName": "(525.54) Partial edentulism, class IV", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Partial edentulism (525.5)\\(525.54) Partial edentulism, class IV\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Partial edentulism (525.5)\\\\(525.54) Partial edentulism, class IV\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Partial edentulism (525.5)\\" + }, + { + "displayName": "Unsatisfactory restoration of tooth (525.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\" + }, + { + "displayName": "(525.60) Unspecified unsatisfactory restoration of tooth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\(525.60) Unspecified unsatisfactory restoration of tooth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\" + }, + { + "displayName": "(525.61) Open restoration margins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\(525.61) Open restoration margins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Unsatisfactory restoration of tooth (525.6)\\\\(525.61) Open restoration margins\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\" + }, + { + "displayName": "(525.62) Unrepairable overhanging of dental restorative materials", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\(525.62) Unrepairable overhanging of dental restorative materials\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Unsatisfactory restoration of tooth (525.6)\\\\(525.62) Unrepairable overhanging of dental restorative materials\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\" + }, + { + "displayName": "(525.63) Fractured dental restorative material without loss of material", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\(525.63) Fractured dental restorative material without loss of material\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Unsatisfactory restoration of tooth (525.6)\\\\(525.63) Fractured dental restorative material without loss of material\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\" + }, + { + "displayName": "(525.64) Fractured dental restorative material with loss of material", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\(525.64) Fractured dental restorative material with loss of material\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\" + }, + { + "displayName": "(525.65) Contour of existing restoration of tooth biologically incompatible with oral health", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\(525.65) Contour of existing restoration of tooth biologically incompatible with oral health\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\" + }, + { + "displayName": "(525.66) Allergy to existing dental restorative material", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\(525.66) Allergy to existing dental restorative material\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\" + }, + { + "displayName": "(525.67) Poor aesthetics of existing restoration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\(525.67) Poor aesthetics of existing restoration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\\\Other diseases and conditions of the teeth and supporting structures (525)\\\\Unsatisfactory restoration of tooth (525.6)\\\\(525.67) Poor aesthetics of existing restoration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\" + }, + { + "displayName": "(525.69) Other unsatisfactory restoration of existing tooth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\(525.69) Other unsatisfactory restoration of existing tooth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\\Other diseases and conditions of the teeth and supporting structures (525)\\Unsatisfactory restoration of tooth (525.6)\\" + }, + { + "displayName": "Hernia of abdominal cavity (550-553.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\" + }, + { + "displayName": "Inguinal hernia (550)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\" + }, + { + "displayName": "Inguinal hernia, with gangrene (550.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with gangrene (550.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\Inguinal hernia, with gangrene (550.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\" + }, + { + "displayName": "(550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with gangrene (550.0)\\(550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with gangrene (550.0)\\" + }, + { + "displayName": "(550.01) Inguinal hernia, with gangrene, unilateral or unspecified, recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with gangrene (550.0)\\(550.01) Inguinal hernia, with gangrene, unilateral or unspecified, recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\Inguinal hernia, with gangrene (550.0)\\\\(550.01) Inguinal hernia, with gangrene, unilateral or unspecified, recurrent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with gangrene (550.0)\\" + }, + { + "displayName": "(550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with gangrene (550.0)\\(550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\Inguinal hernia, with gangrene (550.0)\\\\(550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with gangrene (550.0)\\" + }, + { + "displayName": "(550.03) Inguinal hernia, with gangrene, bilateral, recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with gangrene (550.0)\\(550.03) Inguinal hernia, with gangrene, bilateral, recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\Inguinal hernia, with gangrene (550.0)\\\\(550.03) Inguinal hernia, with gangrene, bilateral, recurrent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with gangrene (550.0)\\" + }, + { + "displayName": "Inguinal hernia, with obstruction, without mention of gangrene (550.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\" + }, + { + "displayName": "(550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\(550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\" + }, + { + "displayName": "(550.11) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\(550.11) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\\\(550.11) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\" + }, + { + "displayName": "(550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\(550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\" + }, + { + "displayName": "(550.13) Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\(550.13) Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\\\(550.13) Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\\" + }, + { + "displayName": "Inguinal hernia, without mention of obstruction or gangrene (550.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\" + }, + { + "displayName": "(550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\(550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\" + }, + { + "displayName": "(550.91) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\(550.91) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\\\(550.91) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\" + }, + { + "displayName": "(550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\(550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\\\(550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\" + }, + { + "displayName": "(550.93) Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\(550.93) Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Inguinal hernia (550)\\\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\\\(550.93) Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Inguinal hernia (550)\\Inguinal hernia, without mention of obstruction or gangrene (550.9)\\" + }, + { + "displayName": "Other hernia of abdominal cavity without mention of obstruction or gangrene (553)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\" + }, + { + "displayName": "(553.1) Umbilical hernia without mention of obstruction or gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\(553.1) Umbilical hernia without mention of obstruction or gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\\\(553.1) Umbilical hernia without mention of obstruction or gangrene\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\" + }, + { + "displayName": "(553.3) Diaphragmatic hernia without mention of obstruction or gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\(553.3) Diaphragmatic hernia without mention of obstruction or gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\" + }, + { + "displayName": "(553.8) Hernia of other specified sites without mention of obstruction or gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\(553.8) Hernia of other specified sites without mention of obstruction or gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\\\(553.8) Hernia of other specified sites without mention of obstruction or gangrene\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\" + }, + { + "displayName": "(553.9) Hernia of unspecified site without mention of obstruction or gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\(553.9) Hernia of unspecified site without mention of obstruction or gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\\\(553.9) Hernia of unspecified site without mention of obstruction or gangrene\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\" + }, + { + "displayName": "Femoral hernia without mention of obstruction or gangrene (553.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Femoral hernia without mention of obstruction or gangrene (553.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\\\Femoral hernia without mention of obstruction or gangrene (553.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\" + }, + { + "displayName": "(553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Femoral hernia without mention of obstruction or gangrene (553.0)\\(553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\\\Femoral hernia without mention of obstruction or gangrene (553.0)\\\\(553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Femoral hernia without mention of obstruction or gangrene (553.0)\\" + }, + { + "displayName": "(553.01) Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Femoral hernia without mention of obstruction or gangrene (553.0)\\(553.01) Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Femoral hernia without mention of obstruction or gangrene (553.0)\\" + }, + { + "displayName": "(553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Femoral hernia without mention of obstruction or gangrene (553.0)\\(553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\\\Femoral hernia without mention of obstruction or gangrene (553.0)\\\\(553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Femoral hernia without mention of obstruction or gangrene (553.0)\\" + }, + { + "displayName": "(553.03) Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Femoral hernia without mention of obstruction or gangrene (553.0)\\(553.03) Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\\\Femoral hernia without mention of obstruction or gangrene (553.0)\\\\(553.03) Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Femoral hernia without mention of obstruction or gangrene (553.0)\\" + }, + { + "displayName": "Ventral hernia without mention of obstruction or gangrene (553.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Ventral hernia without mention of obstruction or gangrene (553.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\\\Ventral hernia without mention of obstruction or gangrene (553.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\" + }, + { + "displayName": "(553.20) Ventral, unspecified, hernia without mention of obstruction or gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Ventral hernia without mention of obstruction or gangrene (553.2)\\(553.20) Ventral, unspecified, hernia without mention of obstruction or gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\\\Ventral hernia without mention of obstruction or gangrene (553.2)\\\\(553.20) Ventral, unspecified, hernia without mention of obstruction or gangrene\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Ventral hernia without mention of obstruction or gangrene (553.2)\\" + }, + { + "displayName": "(553.21) Incisional hernia without mention of obstruction or gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Ventral hernia without mention of obstruction or gangrene (553.2)\\(553.21) Incisional hernia without mention of obstruction or gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Ventral hernia without mention of obstruction or gangrene (553.2)\\" + }, + { + "displayName": "(553.29) Other ventral hernia without mention of obstruction or gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Ventral hernia without mention of obstruction or gangrene (553.2)\\(553.29) Other ventral hernia without mention of obstruction or gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\\\Ventral hernia without mention of obstruction or gangrene (553.2)\\\\(553.29) Other ventral hernia without mention of obstruction or gangrene\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\\Ventral hernia without mention of obstruction or gangrene (553.2)\\" + }, + { + "displayName": "Other hernia of abdominal cavity, with gangrene (551)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with gangrene (551)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\" + }, + { + "displayName": "(551.1) Umbilical hernia with gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\(551.1) Umbilical hernia with gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\" + }, + { + "displayName": "(551.3) Diaphragmatic hernia with gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\(551.3) Diaphragmatic hernia with gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\" + }, + { + "displayName": "(551.8) Hernia of other specified sites, with gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\(551.8) Hernia of other specified sites, with gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with gangrene (551)\\\\(551.8) Hernia of other specified sites, with gangrene\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\" + }, + { + "displayName": "(551.9) Hernia of unspecified site, with gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\(551.9) Hernia of unspecified site, with gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with gangrene (551)\\\\(551.9) Hernia of unspecified site, with gangrene\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\" + }, + { + "displayName": "Femoral hernia with gangrene (551.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Femoral hernia with gangrene (551.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with gangrene (551)\\\\Femoral hernia with gangrene (551.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\" + }, + { + "displayName": "(551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Femoral hernia with gangrene (551.0)\\(551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with gangrene (551)\\\\Femoral hernia with gangrene (551.0)\\\\(551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Femoral hernia with gangrene (551.0)\\" + }, + { + "displayName": "(551.01) Femoral hernia with gangrene, unilateral or unspecified, recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Femoral hernia with gangrene (551.0)\\(551.01) Femoral hernia with gangrene, unilateral or unspecified, recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with gangrene (551)\\\\Femoral hernia with gangrene (551.0)\\\\(551.01) Femoral hernia with gangrene, unilateral or unspecified, recurrent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Femoral hernia with gangrene (551.0)\\" + }, + { + "displayName": "(551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Femoral hernia with gangrene (551.0)\\(551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with gangrene (551)\\\\Femoral hernia with gangrene (551.0)\\\\(551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Femoral hernia with gangrene (551.0)\\" + }, + { + "displayName": "(551.03) Femoral hernia with gangrene, bilateral, recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Femoral hernia with gangrene (551.0)\\(551.03) Femoral hernia with gangrene, bilateral, recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with gangrene (551)\\\\Femoral hernia with gangrene (551.0)\\\\(551.03) Femoral hernia with gangrene, bilateral, recurrent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Femoral hernia with gangrene (551.0)\\" + }, + { + "displayName": "Ventral hernia with gangrene (551.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Ventral hernia with gangrene (551.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with gangrene (551)\\\\Ventral hernia with gangrene (551.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\" + }, + { + "displayName": "(551.20) Ventral hernia, unspecified, with gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Ventral hernia with gangrene (551.2)\\(551.20) Ventral hernia, unspecified, with gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with gangrene (551)\\\\Ventral hernia with gangrene (551.2)\\\\(551.20) Ventral hernia, unspecified, with gangrene\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Ventral hernia with gangrene (551.2)\\" + }, + { + "displayName": "(551.21) Incisional ventral hernia, with gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Ventral hernia with gangrene (551.2)\\(551.21) Incisional ventral hernia, with gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Ventral hernia with gangrene (551.2)\\" + }, + { + "displayName": "(551.29) Other ventral hernia with gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Ventral hernia with gangrene (551.2)\\(551.29) Other ventral hernia with gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with gangrene (551)\\Ventral hernia with gangrene (551.2)\\" + }, + { + "displayName": "Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\" + }, + { + "displayName": "(552.1) Umbilical hernia with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\(552.1) Umbilical hernia with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\" + }, + { + "displayName": "(552.3) Diaphragmatic hernia with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\(552.3) Diaphragmatic hernia with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\" + }, + { + "displayName": "(552.8) Hernia of other specified sites, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\(552.8) Hernia of other specified sites, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\\\(552.8) Hernia of other specified sites, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\" + }, + { + "displayName": "(552.9) Hernia of unspecified site, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\(552.9) Hernia of unspecified site, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\\\(552.9) Hernia of unspecified site, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\" + }, + { + "displayName": "Femoral hernia with obstruction (552.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Femoral hernia with obstruction (552.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\" + }, + { + "displayName": "(552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Femoral hernia with obstruction (552.0)\\(552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\\\Femoral hernia with obstruction (552.0)\\\\(552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Femoral hernia with obstruction (552.0)\\" + }, + { + "displayName": "(552.01) Femoral hernia with obstruction, unilateral or unspecified, recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Femoral hernia with obstruction (552.0)\\(552.01) Femoral hernia with obstruction, unilateral or unspecified, recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\\\Femoral hernia with obstruction (552.0)\\\\(552.01) Femoral hernia with obstruction, unilateral or unspecified, recurrent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Femoral hernia with obstruction (552.0)\\" + }, + { + "displayName": "(552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Femoral hernia with obstruction (552.0)\\(552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Femoral hernia with obstruction (552.0)\\" + }, + { + "displayName": "(552.03) Femoral hernia with obstruction, bilateral, recurrent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Femoral hernia with obstruction (552.0)\\(552.03) Femoral hernia with obstruction, bilateral, recurrent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\\\Femoral hernia with obstruction (552.0)\\\\(552.03) Femoral hernia with obstruction, bilateral, recurrent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Femoral hernia with obstruction (552.0)\\" + }, + { + "displayName": "Ventral hernia with obstruction (552.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Ventral hernia with obstruction (552.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\\\Ventral hernia with obstruction (552.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\" + }, + { + "displayName": "(552.20) Ventral, unspecified, hernia with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Ventral hernia with obstruction (552.2)\\(552.20) Ventral, unspecified, hernia with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\\\Ventral hernia with obstruction (552.2)\\\\(552.20) Ventral, unspecified, hernia with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Ventral hernia with obstruction (552.2)\\" + }, + { + "displayName": "(552.21) Incisional ventral hernia with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Ventral hernia with obstruction (552.2)\\(552.21) Incisional ventral hernia with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Ventral hernia with obstruction (552.2)\\" + }, + { + "displayName": "(552.29) Other ventral hernia with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Ventral hernia with obstruction (552.2)\\(552.29) Other ventral hernia with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Hernia of abdominal cavity (550-553.99)\\\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\\\Ventral hernia with obstruction (552.2)\\\\(552.29) Other ventral hernia with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Hernia of abdominal cavity (550-553.99)\\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\\Ventral hernia with obstruction (552.2)\\" + }, + { + "displayName": "Noninfectious enteritis and colitis (555-558.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\" + }, + { + "displayName": "Other and unspecified noninfectious gastroenteritis and colitis (558)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\" + }, + { + "displayName": "(558.1) Gastroenteritis and colitis due to radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\(558.1) Gastroenteritis and colitis due to radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\\\(558.1) Gastroenteritis and colitis due to radiation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\" + }, + { + "displayName": "(558.2) Toxic gastroenteritis and colitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\(558.2) Toxic gastroenteritis and colitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\" + }, + { + "displayName": "(558.3) Allergic gastroenteritis and colitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\(558.3) Allergic gastroenteritis and colitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\\\(558.3) Allergic gastroenteritis and colitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\" + }, + { + "displayName": "(558.9) Other and unspecified noninfectious gastroenteritis and colitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\(558.9) Other and unspecified noninfectious gastroenteritis and colitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\\\(558.9) Other and unspecified noninfectious gastroenteritis and colitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\" + }, + { + "displayName": "Eosinophilic gastroenteritis and colitis (558.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\Eosinophilic gastroenteritis and colitis (558.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\\\Eosinophilic gastroenteritis and colitis (558.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\" + }, + { + "displayName": "(558.41) Eosinophilic gastroenteritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\Eosinophilic gastroenteritis and colitis (558.4)\\(558.41) Eosinophilic gastroenteritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\Eosinophilic gastroenteritis and colitis (558.4)\\" + }, + { + "displayName": "(558.42) Eosinophilic colitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\Eosinophilic gastroenteritis and colitis (558.4)\\(558.42) Eosinophilic colitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\\\Eosinophilic gastroenteritis and colitis (558.4)\\\\(558.42) Eosinophilic colitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Other and unspecified noninfectious gastroenteritis and colitis (558)\\Eosinophilic gastroenteritis and colitis (558.4)\\" + }, + { + "displayName": "Regional enteritis (555)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Regional enteritis (555)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Regional enteritis (555)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\" + }, + { + "displayName": "(555.0) Regional enteritis of small intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Regional enteritis (555)\\(555.0) Regional enteritis of small intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Regional enteritis (555)\\\\(555.0) Regional enteritis of small intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Regional enteritis (555)\\" + }, + { + "displayName": "(555.1) Regional enteritis of large intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Regional enteritis (555)\\(555.1) Regional enteritis of large intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Regional enteritis (555)\\" + }, + { + "displayName": "(555.2) Regional enteritis of small intestine with large intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Regional enteritis (555)\\(555.2) Regional enteritis of small intestine with large intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Regional enteritis (555)\\\\(555.2) Regional enteritis of small intestine with large intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Regional enteritis (555)\\" + }, + { + "displayName": "(555.9) Regional enteritis of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Regional enteritis (555)\\(555.9) Regional enteritis of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Regional enteritis (555)\\\\(555.9) Regional enteritis of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Regional enteritis (555)\\" + }, + { + "displayName": "Ulcerative colitis (556)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Ulcerative colitis (556)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\" + }, + { + "displayName": "(556.0) Ulcerative (chronic) enterocolitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\(556.0) Ulcerative (chronic) enterocolitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Ulcerative colitis (556)\\\\(556.0) Ulcerative (chronic) enterocolitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\" + }, + { + "displayName": "(556.1) Ulcerative (chronic) ileocolitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\(556.1) Ulcerative (chronic) ileocolitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Ulcerative colitis (556)\\\\(556.1) Ulcerative (chronic) ileocolitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\" + }, + { + "displayName": "(556.2) Ulcerative (chronic) proctitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\(556.2) Ulcerative (chronic) proctitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Ulcerative colitis (556)\\\\(556.2) Ulcerative (chronic) proctitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\" + }, + { + "displayName": "(556.3) Ulcerative (chronic) proctosigmoiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\(556.3) Ulcerative (chronic) proctosigmoiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Ulcerative colitis (556)\\\\(556.3) Ulcerative (chronic) proctosigmoiditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\" + }, + { + "displayName": "(556.4) Pseudopolyposis of colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\(556.4) Pseudopolyposis of colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Noninfectious enteritis and colitis (555-558.99)\\\\Ulcerative colitis (556)\\\\(556.4) Pseudopolyposis of colon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\" + }, + { + "displayName": "(556.5) Left-sided ulcerative (chronic) colitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\(556.5) Left-sided ulcerative (chronic) colitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\" + }, + { + "displayName": "(556.6) Universal ulcerative (chronic) colitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\(556.6) Universal ulcerative (chronic) colitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\" + }, + { + "displayName": "(556.8) Other ulcerative colitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\(556.8) Other ulcerative colitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\" + }, + { + "displayName": "(556.9) Ulcerative colitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\(556.9) Ulcerative colitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Ulcerative colitis (556)\\" + }, + { + "displayName": "Vascular insufficiency of intestine (557)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Vascular insufficiency of intestine (557)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\" + }, + { + "displayName": "(557.0) Acute vascular insufficiency of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Vascular insufficiency of intestine (557)\\(557.0) Acute vascular insufficiency of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Vascular insufficiency of intestine (557)\\" + }, + { + "displayName": "(557.1) Chronic vascular insufficiency of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Vascular insufficiency of intestine (557)\\(557.1) Chronic vascular insufficiency of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Vascular insufficiency of intestine (557)\\" + }, + { + "displayName": "(557.9) Unspecified vascular insufficiency of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Vascular insufficiency of intestine (557)\\(557.9) Unspecified vascular insufficiency of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Noninfectious enteritis and colitis (555-558.99)\\Vascular insufficiency of intestine (557)\\" + }, + { + "displayName": "Other diseases of digestive system (570-579.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\" + }, + { + "displayName": "(570) Acute and subacute necrosis of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\(570) Acute and subacute necrosis of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\" + }, + { + "displayName": "Cholelithiasis (574)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\" + }, + { + "displayName": "Calculus of bile duct with acute cholecystitis (574.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct with acute cholecystitis (574.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\" + }, + { + "displayName": "(574.30) Calculus of bile duct with acute cholecystitis, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct with acute cholecystitis (574.3)\\(574.30) Calculus of bile duct with acute cholecystitis, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct with acute cholecystitis (574.3)\\" + }, + { + "displayName": "(574.31) Calculus of bile duct with acute cholecystitis, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct with acute cholecystitis (574.3)\\(574.31) Calculus of bile duct with acute cholecystitis, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct with acute cholecystitis (574.3)\\" + }, + { + "displayName": "Calculus of bile duct with other cholecystitis (574.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct with other cholecystitis (574.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\" + }, + { + "displayName": "(574.40) Calculus of bile duct with other cholecystitis, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct with other cholecystitis (574.4)\\(574.40) Calculus of bile duct with other cholecystitis, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Cholelithiasis (574)\\\\Calculus of bile duct with other cholecystitis (574.4)\\\\(574.40) Calculus of bile duct with other cholecystitis, without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct with other cholecystitis (574.4)\\" + }, + { + "displayName": "(574.41) Calculus of bile duct with other cholecystitis, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct with other cholecystitis (574.4)\\(574.41) Calculus of bile duct with other cholecystitis, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Cholelithiasis (574)\\\\Calculus of bile duct with other cholecystitis (574.4)\\\\(574.41) Calculus of bile duct with other cholecystitis, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct with other cholecystitis (574.4)\\" + }, + { + "displayName": "Calculus of bile duct without mention of cholecystitis (574.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct without mention of cholecystitis (574.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\" + }, + { + "displayName": "(574.50) Calculus of bile duct without mention of cholecystitis, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct without mention of cholecystitis (574.5)\\(574.50) Calculus of bile duct without mention of cholecystitis, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct without mention of cholecystitis (574.5)\\" + }, + { + "displayName": "(574.51) Calculus of bile duct without mention of cholecystitis, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct without mention of cholecystitis (574.5)\\(574.51) Calculus of bile duct without mention of cholecystitis, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of bile duct without mention of cholecystitis (574.5)\\" + }, + { + "displayName": "Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\" + }, + { + "displayName": "(574.80) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\\(574.80) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\\" + }, + { + "displayName": "(574.81) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\\(574.81) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\\" + }, + { + "displayName": "Calculus of gallbladder and bile duct with acute cholecystitis (574.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\" + }, + { + "displayName": "(574.60) Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\\(574.60) Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\\" + }, + { + "displayName": "(574.61) Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\\(574.61) Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\\" + }, + { + "displayName": "Calculus of gallbladder and bile duct with other cholecystitis (574.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\" + }, + { + "displayName": "(574.70) Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\\(574.70) Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\\" + }, + { + "displayName": "(574.71) Calculus of gallbladder and bile duct with other cholecystitis, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\\(574.71) Calculus of gallbladder and bile duct with other cholecystitis, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\\" + }, + { + "displayName": "Calculus of gallbladder and bile duct without cholecystitis (574.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct without cholecystitis (574.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\" + }, + { + "displayName": "(574.90) Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct without cholecystitis (574.9)\\(574.90) Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct without cholecystitis (574.9)\\" + }, + { + "displayName": "(574.91) Calculus of gallbladder and bile duct without cholecystitis, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct without cholecystitis (574.9)\\(574.91) Calculus of gallbladder and bile duct without cholecystitis, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder and bile duct without cholecystitis (574.9)\\" + }, + { + "displayName": "Calculus of gallbladder with acute cholecystitis (574.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder with acute cholecystitis (574.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\" + }, + { + "displayName": "(574.00) Calculus of gallbladder with acute cholecystitis, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder with acute cholecystitis (574.0)\\(574.00) Calculus of gallbladder with acute cholecystitis, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder with acute cholecystitis (574.0)\\" + }, + { + "displayName": "(574.01) Calculus of gallbladder with acute cholecystitis, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder with acute cholecystitis (574.0)\\(574.01) Calculus of gallbladder with acute cholecystitis, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder with acute cholecystitis (574.0)\\" + }, + { + "displayName": "Calculus of gallbladder with other cholecystitis (574.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder with other cholecystitis (574.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\" + }, + { + "displayName": "(574.10) Calculus of gallbladder with other cholecystitis, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder with other cholecystitis (574.1)\\(574.10) Calculus of gallbladder with other cholecystitis, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder with other cholecystitis (574.1)\\" + }, + { + "displayName": "(574.11) Calculus of gallbladder with other cholecystitis, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder with other cholecystitis (574.1)\\(574.11) Calculus of gallbladder with other cholecystitis, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder with other cholecystitis (574.1)\\" + }, + { + "displayName": "Calculus of gallbladder without mention of cholecystitis (574.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder without mention of cholecystitis (574.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\" + }, + { + "displayName": "(574.20) Calculus of gallbladder without mention of cholecystitis, without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder without mention of cholecystitis (574.2)\\(574.20) Calculus of gallbladder without mention of cholecystitis, without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder without mention of cholecystitis (574.2)\\" + }, + { + "displayName": "(574.21) Calculus of gallbladder without mention of cholecystitis, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder without mention of cholecystitis (574.2)\\(574.21) Calculus of gallbladder without mention of cholecystitis, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Cholelithiasis (574)\\Calculus of gallbladder without mention of cholecystitis (574.2)\\" + }, + { + "displayName": "Chronic liver disease and cirrhosis (571)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\" + }, + { + "displayName": "(571.0) Alcoholic fatty liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\(571.0) Alcoholic fatty liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\" + }, + { + "displayName": "(571.1) Acute alcoholic hepatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\(571.1) Acute alcoholic hepatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\" + }, + { + "displayName": "(571.2) Alcoholic cirrhosis of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\(571.2) Alcoholic cirrhosis of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\" + }, + { + "displayName": "(571.3) Alcoholic liver damage, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\(571.3) Alcoholic liver damage, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\" + }, + { + "displayName": "(571.5) Cirrhosis of liver without mention of alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\(571.5) Cirrhosis of liver without mention of alcohol\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\" + }, + { + "displayName": "(571.6) Biliary cirrhosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\(571.6) Biliary cirrhosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\" + }, + { + "displayName": "(571.8) Other chronic nonalcoholic liver disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\(571.8) Other chronic nonalcoholic liver disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\" + }, + { + "displayName": "(571.9) Unspecified chronic liver disease without mention of alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\(571.9) Unspecified chronic liver disease without mention of alcohol\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\" + }, + { + "displayName": "Chronic hepatitis (571.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\Chronic hepatitis (571.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\" + }, + { + "displayName": "(571.40) Chronic hepatitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\Chronic hepatitis (571.4)\\(571.40) Chronic hepatitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\Chronic hepatitis (571.4)\\" + }, + { + "displayName": "(571.41) Chronic persistent hepatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\Chronic hepatitis (571.4)\\(571.41) Chronic persistent hepatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Chronic liver disease and cirrhosis (571)\\\\Chronic hepatitis (571.4)\\\\(571.41) Chronic persistent hepatitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\Chronic hepatitis (571.4)\\" + }, + { + "displayName": "(571.42) Autoimmune hepatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\Chronic hepatitis (571.4)\\(571.42) Autoimmune hepatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\Chronic hepatitis (571.4)\\" + }, + { + "displayName": "(571.49) Other chronic hepatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\Chronic hepatitis (571.4)\\(571.49) Other chronic hepatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Chronic liver disease and cirrhosis (571)\\\\Chronic hepatitis (571.4)\\\\(571.49) Other chronic hepatitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Chronic liver disease and cirrhosis (571)\\Chronic hepatitis (571.4)\\" + }, + { + "displayName": "Diseases of pancreas (577)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Diseases of pancreas (577)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\" + }, + { + "displayName": "(577.0) Acute pancreatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Diseases of pancreas (577)\\(577.0) Acute pancreatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Diseases of pancreas (577)\\" + }, + { + "displayName": "(577.1) Chronic pancreatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Diseases of pancreas (577)\\(577.1) Chronic pancreatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Diseases of pancreas (577)\\\\(577.1) Chronic pancreatitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Diseases of pancreas (577)\\" + }, + { + "displayName": "(577.2) Cyst and pseudocyst of pancreas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Diseases of pancreas (577)\\(577.2) Cyst and pseudocyst of pancreas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Diseases of pancreas (577)\\\\(577.2) Cyst and pseudocyst of pancreas\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Diseases of pancreas (577)\\" + }, + { + "displayName": "(577.8) Other specified diseases of pancreas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Diseases of pancreas (577)\\(577.8) Other specified diseases of pancreas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Diseases of pancreas (577)\\\\(577.8) Other specified diseases of pancreas\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Diseases of pancreas (577)\\" + }, + { + "displayName": "(577.9) Unspecified disease of pancreas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Diseases of pancreas (577)\\(577.9) Unspecified disease of pancreas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Diseases of pancreas (577)\\" + }, + { + "displayName": "Gastrointestinal hemorrhage (578)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Gastrointestinal hemorrhage (578)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Gastrointestinal hemorrhage (578)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\" + }, + { + "displayName": "(578.0) Hematemesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Gastrointestinal hemorrhage (578)\\(578.0) Hematemesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Gastrointestinal hemorrhage (578)\\\\(578.0) Hematemesis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Gastrointestinal hemorrhage (578)\\" + }, + { + "displayName": "(578.1) Blood in stool", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Gastrointestinal hemorrhage (578)\\(578.1) Blood in stool\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Gastrointestinal hemorrhage (578)\\\\(578.1) Blood in stool\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Gastrointestinal hemorrhage (578)\\" + }, + { + "displayName": "(578.9) Hemorrhage of gastrointestinal tract, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Gastrointestinal hemorrhage (578)\\(578.9) Hemorrhage of gastrointestinal tract, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Gastrointestinal hemorrhage (578)\\" + }, + { + "displayName": "Intestinal malabsorption (579)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\" + }, + { + "displayName": "(579.0) Celiac disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\(579.0) Celiac disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\" + }, + { + "displayName": "(579.1) Tropical sprue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\(579.1) Tropical sprue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\" + }, + { + "displayName": "(579.2) Blind loop syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\(579.2) Blind loop syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\" + }, + { + "displayName": "(579.3) Other and unspecified postsurgical nonabsorption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\(579.3) Other and unspecified postsurgical nonabsorption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Intestinal malabsorption (579)\\\\(579.3) Other and unspecified postsurgical nonabsorption\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\" + }, + { + "displayName": "(579.4) Pancreatic steatorrhea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\(579.4) Pancreatic steatorrhea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Intestinal malabsorption (579)\\\\(579.4) Pancreatic steatorrhea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\" + }, + { + "displayName": "(579.8) Other specified intestinal malabsorption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\(579.8) Other specified intestinal malabsorption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\" + }, + { + "displayName": "(579.9) Unspecified intestinal malabsorption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\(579.9) Unspecified intestinal malabsorption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Intestinal malabsorption (579)\\" + }, + { + "displayName": "Liver abscess and sequelae of chronic liver disease (572)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\" + }, + { + "displayName": "(572.0) Abscess of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\(572.0) Abscess of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\" + }, + { + "displayName": "(572.1) Portal pyemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\(572.1) Portal pyemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\" + }, + { + "displayName": "(572.2) Hepatic encephalopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\(572.2) Hepatic encephalopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\" + }, + { + "displayName": "(572.3) Portal hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\(572.3) Portal hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\" + }, + { + "displayName": "(572.4) Hepatorenal syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\(572.4) Hepatorenal syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\" + }, + { + "displayName": "(572.8) Other sequelae of chronic liver disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\(572.8) Other sequelae of chronic liver disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Liver abscess and sequelae of chronic liver disease (572)\\\\(572.8) Other sequelae of chronic liver disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Liver abscess and sequelae of chronic liver disease (572)\\" + }, + { + "displayName": "Other disorders of biliary tract (576)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of biliary tract (576)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\" + }, + { + "displayName": "(576.0) Postcholecystectomy syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\(576.0) Postcholecystectomy syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of biliary tract (576)\\\\(576.0) Postcholecystectomy syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\" + }, + { + "displayName": "(576.1) Cholangitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\(576.1) Cholangitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\" + }, + { + "displayName": "(576.2) Obstruction of bile duct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\(576.2) Obstruction of bile duct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of biliary tract (576)\\\\(576.2) Obstruction of bile duct\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\" + }, + { + "displayName": "(576.3) Perforation of bile duct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\(576.3) Perforation of bile duct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of biliary tract (576)\\\\(576.3) Perforation of bile duct\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\" + }, + { + "displayName": "(576.4) Fistula of bile duct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\(576.4) Fistula of bile duct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\" + }, + { + "displayName": "(576.5) Spasm of sphincter of Oddi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\(576.5) Spasm of sphincter of Oddi\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of biliary tract (576)\\\\(576.5) Spasm of sphincter of Oddi\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\" + }, + { + "displayName": "(576.8) Other specified disorders of biliary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\(576.8) Other specified disorders of biliary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\" + }, + { + "displayName": "(576.9) Unspecified disorder of biliary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\(576.9) Unspecified disorder of biliary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of biliary tract (576)\\\\(576.9) Unspecified disorder of biliary tract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of biliary tract (576)\\" + }, + { + "displayName": "Other disorders of gallbladder (575)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of gallbladder (575)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\" + }, + { + "displayName": "(575.0) Acute cholecystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\(575.0) Acute cholecystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\" + }, + { + "displayName": "(575.2) Obstruction of gallbladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\(575.2) Obstruction of gallbladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of gallbladder (575)\\\\(575.2) Obstruction of gallbladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\" + }, + { + "displayName": "(575.3) Hydrops of gallbladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\(575.3) Hydrops of gallbladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of gallbladder (575)\\\\(575.3) Hydrops of gallbladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\" + }, + { + "displayName": "(575.4) Perforation of gallbladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\(575.4) Perforation of gallbladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of gallbladder (575)\\\\(575.4) Perforation of gallbladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\" + }, + { + "displayName": "(575.5) Fistula of gallbladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\(575.5) Fistula of gallbladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\" + }, + { + "displayName": "(575.6) Cholesterolosis of gallbladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\(575.6) Cholesterolosis of gallbladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of gallbladder (575)\\\\(575.6) Cholesterolosis of gallbladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\" + }, + { + "displayName": "(575.8) Other specified disorders of gallbladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\(575.8) Other specified disorders of gallbladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of gallbladder (575)\\\\(575.8) Other specified disorders of gallbladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\" + }, + { + "displayName": "(575.9) Unspecified disorder of gallbladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\(575.9) Unspecified disorder of gallbladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of gallbladder (575)\\\\(575.9) Unspecified disorder of gallbladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\" + }, + { + "displayName": "Other cholecystitis (575.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\Other cholecystitis (575.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\" + }, + { + "displayName": "(575.10) Cholecystitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\Other cholecystitis (575.1)\\(575.10) Cholecystitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of gallbladder (575)\\\\Other cholecystitis (575.1)\\\\(575.10) Cholecystitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\Other cholecystitis (575.1)\\" + }, + { + "displayName": "(575.11) Chronic cholecystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\Other cholecystitis (575.1)\\(575.11) Chronic cholecystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\Other cholecystitis (575.1)\\" + }, + { + "displayName": "(575.12) Acute and chronic cholecystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\Other cholecystitis (575.1)\\(575.12) Acute and chronic cholecystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of gallbladder (575)\\\\Other cholecystitis (575.1)\\\\(575.12) Acute and chronic cholecystitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of gallbladder (575)\\Other cholecystitis (575.1)\\" + }, + { + "displayName": "Other disorders of liver (573)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of liver (573)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\" + }, + { + "displayName": "(573.0) Chronic passive congestion of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\(573.0) Chronic passive congestion of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of liver (573)\\\\(573.0) Chronic passive congestion of liver\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\" + }, + { + "displayName": "(573.1) Hepatitis in viral diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\(573.1) Hepatitis in viral diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of liver (573)\\\\(573.1) Hepatitis in viral diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\" + }, + { + "displayName": "(573.2) Hepatitis in other infectious diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\(573.2) Hepatitis in other infectious diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of liver (573)\\\\(573.2) Hepatitis in other infectious diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\" + }, + { + "displayName": "(573.3) Hepatitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\(573.3) Hepatitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of liver (573)\\\\(573.3) Hepatitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\" + }, + { + "displayName": "(573.4) Hepatic infarction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\(573.4) Hepatic infarction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of liver (573)\\\\(573.4) Hepatic infarction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\" + }, + { + "displayName": "(573.8) Other specified disorders of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\(573.8) Other specified disorders of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of liver (573)\\\\(573.8) Other specified disorders of liver\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\" + }, + { + "displayName": "(573.9) Unspecified disorder of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\(573.9) Unspecified disorder of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of digestive system (570-579.99)\\\\Other disorders of liver (573)\\\\(573.9) Unspecified disorder of liver\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of digestive system (570-579.99)\\Other disorders of liver (573)\\" + }, + { + "displayName": "Other diseases of intestines and peritoneum (560-569.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\" + }, + { + "displayName": "(566) Abscess of anal and rectal regions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\(566) Abscess of anal and rectal regions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\(566) Abscess of anal and rectal regions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\" + }, + { + "displayName": "Anal fissure and fistula (565)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Anal fissure and fistula (565)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\" + }, + { + "displayName": "(565.0) Anal fissure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Anal fissure and fistula (565)\\(565.0) Anal fissure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Anal fissure and fistula (565)\\\\(565.0) Anal fissure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Anal fissure and fistula (565)\\" + }, + { + "displayName": "(565.1) Anal fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Anal fissure and fistula (565)\\(565.1) Anal fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Anal fissure and fistula (565)\\\\(565.1) Anal fistula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Anal fissure and fistula (565)\\" + }, + { + "displayName": "Diverticula of intestine (562)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\" + }, + { + "displayName": "Diverticula of colon (562.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of colon (562.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Diverticula of intestine (562)\\\\Diverticula of colon (562.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\" + }, + { + "displayName": "(562.10) Diverticulosis of colon (without mention of hemorrhage)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of colon (562.1)\\(562.10) Diverticulosis of colon (without mention of hemorrhage)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of colon (562.1)\\" + }, + { + "displayName": "(562.11) Diverticulitis of colon (without mention of hemorrhage)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of colon (562.1)\\(562.11) Diverticulitis of colon (without mention of hemorrhage)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Diverticula of intestine (562)\\\\Diverticula of colon (562.1)\\\\(562.11) Diverticulitis of colon (without mention of hemorrhage)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of colon (562.1)\\" + }, + { + "displayName": "(562.12) Diverticulosis of colon with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of colon (562.1)\\(562.12) Diverticulosis of colon with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of colon (562.1)\\" + }, + { + "displayName": "(562.13) Diverticulitis of colon with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of colon (562.1)\\(562.13) Diverticulitis of colon with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of colon (562.1)\\" + }, + { + "displayName": "Diverticula of small intestine (562.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of small intestine (562.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\" + }, + { + "displayName": "(562.00) Diverticulosis of small intestine (without mention of hemorrhage)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of small intestine (562.0)\\(562.00) Diverticulosis of small intestine (without mention of hemorrhage)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of small intestine (562.0)\\" + }, + { + "displayName": "(562.01) Diverticulitis of small intestine (without mention of hemorrhage)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of small intestine (562.0)\\(562.01) Diverticulitis of small intestine (without mention of hemorrhage)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of small intestine (562.0)\\" + }, + { + "displayName": "(562.02) Diverticulosis of small intestine with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of small intestine (562.0)\\(562.02) Diverticulosis of small intestine with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Diverticula of intestine (562)\\\\Diverticula of small intestine (562.0)\\\\(562.02) Diverticulosis of small intestine with hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of small intestine (562.0)\\" + }, + { + "displayName": "(562.03) Diverticulitis of small intestine with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of small intestine (562.0)\\(562.03) Diverticulitis of small intestine with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Diverticula of intestine (562)\\Diverticula of small intestine (562.0)\\" + }, + { + "displayName": "Functional digestive disorders, not elsewhere classified (564)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Functional digestive disorders, not elsewhere classified (564)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\" + }, + { + "displayName": "(564.1) Irritable bowel syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\(564.1) Irritable bowel syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\" + }, + { + "displayName": "(564.2) Postgastric surgery syndromes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\(564.2) Postgastric surgery syndromes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Functional digestive disorders, not elsewhere classified (564)\\\\(564.2) Postgastric surgery syndromes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\" + }, + { + "displayName": "(564.3) Vomiting following gastrointestinal surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\(564.3) Vomiting following gastrointestinal surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Functional digestive disorders, not elsewhere classified (564)\\\\(564.3) Vomiting following gastrointestinal surgery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\" + }, + { + "displayName": "(564.4) Other postoperative functional disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\(564.4) Other postoperative functional disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\" + }, + { + "displayName": "(564.5) Functional diarrhea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\(564.5) Functional diarrhea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Functional digestive disorders, not elsewhere classified (564)\\\\(564.5) Functional diarrhea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\" + }, + { + "displayName": "(564.6) Anal spasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\(564.6) Anal spasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\" + }, + { + "displayName": "(564.7) Megacolon, other than Hirschsprung's", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\(564.7) Megacolon, other than Hirschsprung's\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Functional digestive disorders, not elsewhere classified (564)\\\\(564.7) Megacolon, other than Hirschsprung's\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\" + }, + { + "displayName": "(564.9) Unspecified functional disorder of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\(564.9) Unspecified functional disorder of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Functional digestive disorders, not elsewhere classified (564)\\\\(564.9) Unspecified functional disorder of intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\" + }, + { + "displayName": "Constipation (564.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Constipation (564.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\" + }, + { + "displayName": "(564.00) Constipation, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Constipation (564.0)\\(564.00) Constipation, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Functional digestive disorders, not elsewhere classified (564)\\\\Constipation (564.0)\\\\(564.00) Constipation, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Constipation (564.0)\\" + }, + { + "displayName": "(564.01) Slow transit constipation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Constipation (564.0)\\(564.01) Slow transit constipation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Functional digestive disorders, not elsewhere classified (564)\\\\Constipation (564.0)\\\\(564.01) Slow transit constipation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Constipation (564.0)\\" + }, + { + "displayName": "(564.02) Outlet dysfunction constipation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Constipation (564.0)\\(564.02) Outlet dysfunction constipation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Constipation (564.0)\\" + }, + { + "displayName": "(564.09) Other constipation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Constipation (564.0)\\(564.09) Other constipation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Functional digestive disorders, not elsewhere classified (564)\\\\Constipation (564.0)\\\\(564.09) Other constipation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Constipation (564.0)\\" + }, + { + "displayName": "Other specified functional disorders of intestine (564.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Other specified functional disorders of intestine (564.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\" + }, + { + "displayName": "(564.81) Neurogenic bowel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Other specified functional disorders of intestine (564.8)\\(564.81) Neurogenic bowel\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Other specified functional disorders of intestine (564.8)\\" + }, + { + "displayName": "(564.89) Other functional disorders of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Other specified functional disorders of intestine (564.8)\\(564.89) Other functional disorders of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Functional digestive disorders, not elsewhere classified (564)\\Other specified functional disorders of intestine (564.8)\\" + }, + { + "displayName": "Intestinal obstruction without mention of hernia (560)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\" + }, + { + "displayName": "(560.0) Intussusception", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\(560.0) Intussusception\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\" + }, + { + "displayName": "(560.1) Paralytic ileus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\(560.1) Paralytic ileus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\" + }, + { + "displayName": "(560.2) Volvulus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\(560.2) Volvulus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\" + }, + { + "displayName": "(560.9) Unspecified intestinal obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\(560.9) Unspecified intestinal obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\" + }, + { + "displayName": "Impaction of intestine (560.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Impaction of intestine (560.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\" + }, + { + "displayName": "(560.30) Impaction of intestine, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Impaction of intestine (560.3)\\(560.30) Impaction of intestine, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Impaction of intestine (560.3)\\" + }, + { + "displayName": "(560.31) Gallstone ileus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Impaction of intestine (560.3)\\(560.31) Gallstone ileus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Impaction of intestine (560.3)\\" + }, + { + "displayName": "(560.32) Fecal impaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Impaction of intestine (560.3)\\(560.32) Fecal impaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Impaction of intestine (560.3)\\" + }, + { + "displayName": "(560.39) Other impaction of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Impaction of intestine (560.3)\\(560.39) Other impaction of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Impaction of intestine (560.3)\\" + }, + { + "displayName": "Other specified intestinal obstruction (560.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Other specified intestinal obstruction (560.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\" + }, + { + "displayName": "(560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Other specified intestinal obstruction (560.8)\\(560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Other specified intestinal obstruction (560.8)\\" + }, + { + "displayName": "(560.89) Other specified intestinal obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Other specified intestinal obstruction (560.8)\\(560.89) Other specified intestinal obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Intestinal obstruction without mention of hernia (560)\\Other specified intestinal obstruction (560.8)\\" + }, + { + "displayName": "Other disorders of intestine (569)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\" + }, + { + "displayName": "(569.0) Anal and rectal polyp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\(569.0) Anal and rectal polyp\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\" + }, + { + "displayName": "(569.1) Rectal prolapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\(569.1) Rectal prolapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\" + }, + { + "displayName": "(569.2) Stenosis of rectum and anus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\(569.2) Stenosis of rectum and anus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\" + }, + { + "displayName": "(569.3) Hemorrhage of rectum and anus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\(569.3) Hemorrhage of rectum and anus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\" + }, + { + "displayName": "(569.5) Abscess of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\(569.5) Abscess of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\" + }, + { + "displayName": "(569.9) Unspecified disorder of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\(569.9) Unspecified disorder of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\" + }, + { + "displayName": "Colostomy and enterostomy complications (569.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Colostomy and enterostomy complications (569.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\" + }, + { + "displayName": "(569.60) Colostomy and enterostomy complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Colostomy and enterostomy complications (569.6)\\(569.60) Colostomy and enterostomy complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Colostomy and enterostomy complications (569.6)\\" + }, + { + "displayName": "(569.61) Infection of colostomy or enterostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Colostomy and enterostomy complications (569.6)\\(569.61) Infection of colostomy or enterostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Colostomy and enterostomy complications (569.6)\\" + }, + { + "displayName": "(569.62) Mechanical complication of colostomy and enterostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Colostomy and enterostomy complications (569.6)\\(569.62) Mechanical complication of colostomy and enterostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Colostomy and enterostomy complications (569.6)\\" + }, + { + "displayName": "(569.69) Other colostomy and enterostomy complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Colostomy and enterostomy complications (569.6)\\(569.69) Other colostomy and enterostomy complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Colostomy and enterostomy complications (569.6)\\" + }, + { + "displayName": "Complications of intestinal pouch (569.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Complications of intestinal pouch (569.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\" + }, + { + "displayName": "(569.71) Pouchitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Complications of intestinal pouch (569.7)\\(569.71) Pouchitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Complications of intestinal pouch (569.7)\\" + }, + { + "displayName": "(569.79) Other complications of intestinal pouch", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Complications of intestinal pouch (569.7)\\(569.79) Other complications of intestinal pouch\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Complications of intestinal pouch (569.7)\\" + }, + { + "displayName": "Other specified disorders of intestine (569.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\" + }, + { + "displayName": "(569.81) Fistula of intestine, excluding rectum and anus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\(569.81) Fistula of intestine, excluding rectum and anus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\" + }, + { + "displayName": "(569.82) Ulceration of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\(569.82) Ulceration of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\" + }, + { + "displayName": "(569.83) Perforation of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\(569.83) Perforation of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\" + }, + { + "displayName": "(569.84) Angiodysplasia of intestine (without mention of hemorrhage)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\(569.84) Angiodysplasia of intestine (without mention of hemorrhage)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\" + }, + { + "displayName": "(569.85) Angiodysplasia of intestine with hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\(569.85) Angiodysplasia of intestine with hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\" + }, + { + "displayName": "(569.86) Dieulafoy lesion (hemorrhagic) of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\(569.86) Dieulafoy lesion (hemorrhagic) of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Other disorders of intestine (569)\\\\Other specified disorders of intestine (569.8)\\\\(569.86) Dieulafoy lesion (hemorrhagic) of intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\" + }, + { + "displayName": "(569.89) Other specified disorders of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\(569.89) Other specified disorders of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Other disorders of intestine (569)\\\\Other specified disorders of intestine (569.8)\\\\(569.89) Other specified disorders of intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of intestine (569.8)\\" + }, + { + "displayName": "Other specified disorders of rectum and anus (569.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of rectum and anus (569.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Other disorders of intestine (569)\\\\Other specified disorders of rectum and anus (569.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\" + }, + { + "displayName": "(569.41) Ulcer of anus and rectum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of rectum and anus (569.4)\\(569.41) Ulcer of anus and rectum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of rectum and anus (569.4)\\" + }, + { + "displayName": "(569.42) Anal or rectal pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of rectum and anus (569.4)\\(569.42) Anal or rectal pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Other disorders of intestine (569)\\\\Other specified disorders of rectum and anus (569.4)\\\\(569.42) Anal or rectal pain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of rectum and anus (569.4)\\" + }, + { + "displayName": "(569.43) Anal sphincter tear (healed) (old)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of rectum and anus (569.4)\\(569.43) Anal sphincter tear (healed) (old)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Other disorders of intestine (569)\\\\Other specified disorders of rectum and anus (569.4)\\\\(569.43) Anal sphincter tear (healed) (old)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of rectum and anus (569.4)\\" + }, + { + "displayName": "(569.44) Dysplasia of anus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of rectum and anus (569.4)\\(569.44) Dysplasia of anus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Other disorders of intestine (569)\\\\Other specified disorders of rectum and anus (569.4)\\\\(569.44) Dysplasia of anus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of rectum and anus (569.4)\\" + }, + { + "displayName": "(569.49) Other specified disorders of rectum and anus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of rectum and anus (569.4)\\(569.49) Other specified disorders of rectum and anus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of intestine (569)\\Other specified disorders of rectum and anus (569.4)\\" + }, + { + "displayName": "Other disorders of peritoneum (568)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\" + }, + { + "displayName": "(568.0) Peritoneal adhesions (postoperative) (postinfection)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\(568.0) Peritoneal adhesions (postoperative) (postinfection)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\" + }, + { + "displayName": "(568.9) Unspecified disorder of peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\(568.9) Unspecified disorder of peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\" + }, + { + "displayName": "Other specified disorders of peritoneum (568.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\Other specified disorders of peritoneum (568.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\" + }, + { + "displayName": "(568.81) Hemoperitoneum (nontraumatic)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\Other specified disorders of peritoneum (568.8)\\(568.81) Hemoperitoneum (nontraumatic)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\Other specified disorders of peritoneum (568.8)\\" + }, + { + "displayName": "(568.82) Peritoneal effusion (chronic)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\Other specified disorders of peritoneum (568.8)\\(568.82) Peritoneal effusion (chronic)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\Other specified disorders of peritoneum (568.8)\\" + }, + { + "displayName": "(568.89) Other specified disorders of peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\Other specified disorders of peritoneum (568.8)\\(568.89) Other specified disorders of peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Other disorders of peritoneum (568)\\Other specified disorders of peritoneum (568.8)\\" + }, + { + "displayName": "Peritonitis and retroperitoneal infections (567)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\" + }, + { + "displayName": "(567.0) Peritonitis in infectious diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\(567.0) Peritonitis in infectious diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\(567.0) Peritonitis in infectious diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\" + }, + { + "displayName": "(567.1) Pneumococcal peritonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\(567.1) Pneumococcal peritonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\(567.1) Pneumococcal peritonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\" + }, + { + "displayName": "(567.9) Unspecified peritonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\(567.9) Unspecified peritonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\" + }, + { + "displayName": "Other specified peritonitis (567.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other specified peritonitis (567.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\Other specified peritonitis (567.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\" + }, + { + "displayName": "(567.81) Choleperitonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other specified peritonitis (567.8)\\(567.81) Choleperitonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\Other specified peritonitis (567.8)\\\\(567.81) Choleperitonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other specified peritonitis (567.8)\\" + }, + { + "displayName": "(567.82) Sclerosing mesenteritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other specified peritonitis (567.8)\\(567.82) Sclerosing mesenteritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other specified peritonitis (567.8)\\" + }, + { + "displayName": "(567.89) Other specified peritonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other specified peritonitis (567.8)\\(567.89) Other specified peritonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\Other specified peritonitis (567.8)\\\\(567.89) Other specified peritonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other specified peritonitis (567.8)\\" + }, + { + "displayName": "Other suppurative peritonitis (567.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other suppurative peritonitis (567.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\Other suppurative peritonitis (567.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\" + }, + { + "displayName": "(567.21) Peritonitis (acute) generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other suppurative peritonitis (567.2)\\(567.21) Peritonitis (acute) generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other suppurative peritonitis (567.2)\\" + }, + { + "displayName": "(567.22) Peritoneal abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other suppurative peritonitis (567.2)\\(567.22) Peritoneal abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\Other suppurative peritonitis (567.2)\\\\(567.22) Peritoneal abscess\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other suppurative peritonitis (567.2)\\" + }, + { + "displayName": "(567.23) Spontaneous bacterial peritonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other suppurative peritonitis (567.2)\\(567.23) Spontaneous bacterial peritonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\Other suppurative peritonitis (567.2)\\\\(567.23) Spontaneous bacterial peritonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other suppurative peritonitis (567.2)\\" + }, + { + "displayName": "(567.29) Other suppurative peritonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other suppurative peritonitis (567.2)\\(567.29) Other suppurative peritonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\Other suppurative peritonitis (567.2)\\\\(567.29) Other suppurative peritonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Other suppurative peritonitis (567.2)\\" + }, + { + "displayName": "Retroperitoneal infections (567.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Retroperitoneal infections (567.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\" + }, + { + "displayName": "(567.31) Psoas muscle abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Retroperitoneal infections (567.3)\\(567.31) Psoas muscle abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\Retroperitoneal infections (567.3)\\\\(567.31) Psoas muscle abscess\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Retroperitoneal infections (567.3)\\" + }, + { + "displayName": "(567.38) Other retroperitoneal abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Retroperitoneal infections (567.3)\\(567.38) Other retroperitoneal abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\Retroperitoneal infections (567.3)\\\\(567.38) Other retroperitoneal abscess\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Retroperitoneal infections (567.3)\\" + }, + { + "displayName": "(567.39) Other retroperitoneal infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Retroperitoneal infections (567.3)\\(567.39) Other retroperitoneal infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the digestive system (520-579.99)\\\\Other diseases of intestines and peritoneum (560-569.99)\\\\Peritonitis and retroperitoneal infections (567)\\\\Retroperitoneal infections (567.3)\\\\(567.39) Other retroperitoneal infections\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the digestive system (520-579.99)\\Other diseases of intestines and peritoneum (560-569.99)\\Peritonitis and retroperitoneal infections (567)\\Retroperitoneal infections (567.3)\\" + }, + { + "displayName": "Diseases of the genitourinary system (580-629.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Diseases of male genital organs (600-608.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\" + }, + { + "displayName": "(605) Redundant prepuce and phimosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\(605) Redundant prepuce and phimosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\(605) Redundant prepuce and phimosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\" + }, + { + "displayName": "Disorders of penis (607)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\" + }, + { + "displayName": "(607.0) Leukoplakia of penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\(607.0) Leukoplakia of penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Disorders of penis (607)\\\\(607.0) Leukoplakia of penis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\" + }, + { + "displayName": "(607.1) Balanoposthitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\(607.1) Balanoposthitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Disorders of penis (607)\\\\(607.1) Balanoposthitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\" + }, + { + "displayName": "(607.2) Other inflammatory disorders of penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\(607.2) Other inflammatory disorders of penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Disorders of penis (607)\\\\(607.2) Other inflammatory disorders of penis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\" + }, + { + "displayName": "(607.3) Priapism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\(607.3) Priapism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\" + }, + { + "displayName": "(607.9) Unspecified disorder of penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\(607.9) Unspecified disorder of penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\" + }, + { + "displayName": "Other specified disorders of penis (607.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\" + }, + { + "displayName": "(607.81) Balanitis xerotica obliterans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\(607.81) Balanitis xerotica obliterans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\" + }, + { + "displayName": "(607.82) Vascular disorders of penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\(607.82) Vascular disorders of penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\" + }, + { + "displayName": "(607.83) Edema of penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\(607.83) Edema of penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\" + }, + { + "displayName": "(607.84) Impotence of organic origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\(607.84) Impotence of organic origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\" + }, + { + "displayName": "(607.85) Peyronie's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\(607.85) Peyronie's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\" + }, + { + "displayName": "(607.89) Other specified disorders of penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\(607.89) Other specified disorders of penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Disorders of penis (607)\\Other specified disorders of penis (607.8)\\" + }, + { + "displayName": "Hydrocele (603)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hydrocele (603)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\" + }, + { + "displayName": "(603.0) Encysted hydrocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hydrocele (603)\\(603.0) Encysted hydrocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hydrocele (603)\\" + }, + { + "displayName": "(603.1) Infected hydrocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hydrocele (603)\\(603.1) Infected hydrocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hydrocele (603)\\" + }, + { + "displayName": "(603.8) Other specified types of hydrocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hydrocele (603)\\(603.8) Other specified types of hydrocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hydrocele (603)\\\\(603.8) Other specified types of hydrocele\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hydrocele (603)\\" + }, + { + "displayName": "(603.9) Hydrocele, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hydrocele (603)\\(603.9) Hydrocele, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hydrocele (603)\\\\(603.9) Hydrocele, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hydrocele (603)\\" + }, + { + "displayName": "Hyperplasia of prostate (600)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\" + }, + { + "displayName": "(600.3) Cyst of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\(600.3) Cyst of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hyperplasia of prostate (600)\\\\(600.3) Cyst of prostate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\" + }, + { + "displayName": "Benign localized hyperplasia of prostate (600.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Benign localized hyperplasia of prostate (600.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\" + }, + { + "displayName": "(600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Benign localized hyperplasia of prostate (600.2)\\(600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hyperplasia of prostate (600)\\\\Benign localized hyperplasia of prostate (600.2)\\\\(600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Benign localized hyperplasia of prostate (600.2)\\" + }, + { + "displayName": "(600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Benign localized hyperplasia of prostate (600.2)\\(600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hyperplasia of prostate (600)\\\\Benign localized hyperplasia of prostate (600.2)\\\\(600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Benign localized hyperplasia of prostate (600.2)\\" + }, + { + "displayName": "Hyperplasia of prostate, unspecified (600.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Hyperplasia of prostate, unspecified (600.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hyperplasia of prostate (600)\\\\Hyperplasia of prostate, unspecified (600.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\" + }, + { + "displayName": "(600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Hyperplasia of prostate, unspecified (600.9)\\(600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hyperplasia of prostate (600)\\\\Hyperplasia of prostate, unspecified (600.9)\\\\(600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Hyperplasia of prostate, unspecified (600.9)\\" + }, + { + "displayName": "(600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Hyperplasia of prostate, unspecified (600.9)\\(600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Hyperplasia of prostate, unspecified (600.9)\\" + }, + { + "displayName": "Hypertrophy (benign) of prostate (600.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Hypertrophy (benign) of prostate (600.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hyperplasia of prostate (600)\\\\Hypertrophy (benign) of prostate (600.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\" + }, + { + "displayName": "(600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Hypertrophy (benign) of prostate (600.0)\\(600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hyperplasia of prostate (600)\\\\Hypertrophy (benign) of prostate (600.0)\\\\(600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Hypertrophy (benign) of prostate (600.0)\\" + }, + { + "displayName": "(600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Hypertrophy (benign) of prostate (600.0)\\(600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hyperplasia of prostate (600)\\\\Hypertrophy (benign) of prostate (600.0)\\\\(600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Hypertrophy (benign) of prostate (600.0)\\" + }, + { + "displayName": "Nodular prostate (600.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Nodular prostate (600.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\" + }, + { + "displayName": "(600.10) Nodular prostate without urinary obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Nodular prostate (600.1)\\(600.10) Nodular prostate without urinary obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hyperplasia of prostate (600)\\\\Nodular prostate (600.1)\\\\(600.10) Nodular prostate without urinary obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Nodular prostate (600.1)\\" + }, + { + "displayName": "(600.11) Nodular prostate with urinary obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Nodular prostate (600.1)\\(600.11) Nodular prostate with urinary obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Hyperplasia of prostate (600)\\\\Nodular prostate (600.1)\\\\(600.11) Nodular prostate with urinary obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Hyperplasia of prostate (600)\\Nodular prostate (600.1)\\" + }, + { + "displayName": "Infertility, male (606)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Infertility, male (606)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\" + }, + { + "displayName": "(606.0) Azoospermia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Infertility, male (606)\\(606.0) Azoospermia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Infertility, male (606)\\" + }, + { + "displayName": "(606.1) Oligospermia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Infertility, male (606)\\(606.1) Oligospermia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Infertility, male (606)\\" + }, + { + "displayName": "(606.8) Infertility due to extratesticular causes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Infertility, male (606)\\(606.8) Infertility due to extratesticular causes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Infertility, male (606)\\" + }, + { + "displayName": "(606.9) Male infertility, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Infertility, male (606)\\(606.9) Male infertility, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Infertility, male (606)\\" + }, + { + "displayName": "Inflammatory diseases of prostate (601)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\" + }, + { + "displayName": "(601.0) Acute prostatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\(601.0) Acute prostatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Inflammatory diseases of prostate (601)\\\\(601.0) Acute prostatitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\" + }, + { + "displayName": "(601.1) Chronic prostatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\(601.1) Chronic prostatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\" + }, + { + "displayName": "(601.2) Abscess of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\(601.2) Abscess of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\" + }, + { + "displayName": "(601.3) Prostatocystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\(601.3) Prostatocystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\" + }, + { + "displayName": "(601.4) Prostatitis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\(601.4) Prostatitis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\" + }, + { + "displayName": "(601.8) Other specified inflammatory diseases of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\(601.8) Other specified inflammatory diseases of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\" + }, + { + "displayName": "(601.9) Prostatitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\(601.9) Prostatitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Inflammatory diseases of prostate (601)\\" + }, + { + "displayName": "Orchitis and epididymitis (604)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Orchitis and epididymitis (604)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\" + }, + { + "displayName": "(604.0) Orchitis, epididymitis, and epididymo-orchitis, with abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Orchitis and epididymitis (604)\\(604.0) Orchitis, epididymitis, and epididymo-orchitis, with abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Orchitis and epididymitis (604)\\" + }, + { + "displayName": "Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Orchitis and epididymitis (604)\\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Orchitis and epididymitis (604)\\" + }, + { + "displayName": "(604.90) Orchitis and epididymitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Orchitis and epididymitis (604)\\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\\(604.90) Orchitis and epididymitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Orchitis and epididymitis (604)\\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\\" + }, + { + "displayName": "(604.91) Orchitis and epididymitis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Orchitis and epididymitis (604)\\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\\(604.91) Orchitis and epididymitis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Orchitis and epididymitis (604)\\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\\" + }, + { + "displayName": "(604.99) Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Orchitis and epididymitis (604)\\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\\(604.99) Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Orchitis and epididymitis (604)\\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\\" + }, + { + "displayName": "Other disorders of male genital organs (608)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\" + }, + { + "displayName": "(608.0) Seminal vesiculitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\(608.0) Seminal vesiculitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\(608.0) Seminal vesiculitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\" + }, + { + "displayName": "(608.1) Spermatocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\(608.1) Spermatocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\" + }, + { + "displayName": "(608.3) Atrophy of testis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\(608.3) Atrophy of testis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\(608.3) Atrophy of testis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\" + }, + { + "displayName": "(608.4) Other inflammatory disorders of male genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\(608.4) Other inflammatory disorders of male genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\" + }, + { + "displayName": "(608.9) Unspecified disorder of male genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\(608.9) Unspecified disorder of male genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\(608.9) Unspecified disorder of male genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\" + }, + { + "displayName": "Other specified disorders of male genital organs (608.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Other specified disorders of male genital organs (608.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\" + }, + { + "displayName": "(608.81) Disorders of male genital organs in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\(608.81) Disorders of male genital organs in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Other specified disorders of male genital organs (608.8)\\\\(608.81) Disorders of male genital organs in diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\" + }, + { + "displayName": "(608.82) Hematospermia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\(608.82) Hematospermia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Other specified disorders of male genital organs (608.8)\\\\(608.82) Hematospermia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\" + }, + { + "displayName": "(608.83) Vascular disorders of male genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\(608.83) Vascular disorders of male genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\" + }, + { + "displayName": "(608.84) Chylocele of tunica vaginalis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\(608.84) Chylocele of tunica vaginalis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Other specified disorders of male genital organs (608.8)\\\\(608.84) Chylocele of tunica vaginalis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\" + }, + { + "displayName": "(608.85) Stricture of male genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\(608.85) Stricture of male genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\" + }, + { + "displayName": "(608.86) Edema of male genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\(608.86) Edema of male genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Other specified disorders of male genital organs (608.8)\\\\(608.86) Edema of male genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\" + }, + { + "displayName": "(608.87) Retrograde ejaculation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\(608.87) Retrograde ejaculation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Other specified disorders of male genital organs (608.8)\\\\(608.87) Retrograde ejaculation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\" + }, + { + "displayName": "(608.89) Other specified disorders of male genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\(608.89) Other specified disorders of male genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Other specified disorders of male genital organs (608.8)\\" + }, + { + "displayName": "Torsion of testis (608.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Torsion of testis (608.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Torsion of testis (608.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\" + }, + { + "displayName": "(608.20) Torsion of testis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Torsion of testis (608.2)\\(608.20) Torsion of testis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Torsion of testis (608.2)\\\\(608.20) Torsion of testis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Torsion of testis (608.2)\\" + }, + { + "displayName": "(608.21) Extravaginal torsion of spermatic cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Torsion of testis (608.2)\\(608.21) Extravaginal torsion of spermatic cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Torsion of testis (608.2)\\\\(608.21) Extravaginal torsion of spermatic cord\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Torsion of testis (608.2)\\" + }, + { + "displayName": "(608.22) Intravaginal torsion of spermatic cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Torsion of testis (608.2)\\(608.22) Intravaginal torsion of spermatic cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Torsion of testis (608.2)\\\\(608.22) Intravaginal torsion of spermatic cord\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Torsion of testis (608.2)\\" + }, + { + "displayName": "(608.23) Torsion of appendix testis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Torsion of testis (608.2)\\(608.23) Torsion of appendix testis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Torsion of testis (608.2)\\\\(608.23) Torsion of appendix testis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Torsion of testis (608.2)\\" + }, + { + "displayName": "(608.24) Torsion of appendix epididymis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Torsion of testis (608.2)\\(608.24) Torsion of appendix epididymis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Diseases of male genital organs (600-608.99)\\\\Other disorders of male genital organs (608)\\\\Torsion of testis (608.2)\\\\(608.24) Torsion of appendix epididymis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of male genital organs (608)\\Torsion of testis (608.2)\\" + }, + { + "displayName": "Other disorders of prostate (602)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\" + }, + { + "displayName": "(602.0) Calculus of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\(602.0) Calculus of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\" + }, + { + "displayName": "(602.1) Congestion or hemorrhage of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\(602.1) Congestion or hemorrhage of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\" + }, + { + "displayName": "(602.2) Atrophy of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\(602.2) Atrophy of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\" + }, + { + "displayName": "(602.3) Dysplasia of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\(602.3) Dysplasia of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\" + }, + { + "displayName": "(602.8) Other specified disorders of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\(602.8) Other specified disorders of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\" + }, + { + "displayName": "(602.9) Unspecified disorder of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\(602.9) Unspecified disorder of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Diseases of male genital organs (600-608.99)\\Other disorders of prostate (602)\\" + }, + { + "displayName": "Disorders of breast (610-612.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\" + }, + { + "displayName": "Benign mammary dysplasias (610)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\" + }, + { + "displayName": "(610.0) Solitary cyst of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\(610.0) Solitary cyst of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\" + }, + { + "displayName": "(610.1) Diffuse cystic mastopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\(610.1) Diffuse cystic mastopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\" + }, + { + "displayName": "(610.2) Fibroadenosis of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\(610.2) Fibroadenosis of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Benign mammary dysplasias (610)\\\\(610.2) Fibroadenosis of breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\" + }, + { + "displayName": "(610.3) Fibrosclerosis of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\(610.3) Fibrosclerosis of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Benign mammary dysplasias (610)\\\\(610.3) Fibrosclerosis of breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\" + }, + { + "displayName": "(610.4) Mammary duct ectasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\(610.4) Mammary duct ectasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Benign mammary dysplasias (610)\\\\(610.4) Mammary duct ectasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\" + }, + { + "displayName": "(610.8) Other specified benign mammary dysplasias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\(610.8) Other specified benign mammary dysplasias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\" + }, + { + "displayName": "(610.9) Benign mammary dysplasia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\(610.9) Benign mammary dysplasia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Benign mammary dysplasias (610)\\\\(610.9) Benign mammary dysplasia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Benign mammary dysplasias (610)\\" + }, + { + "displayName": "Deformity and disproportion of reconstructed breast (612)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Deformity and disproportion of reconstructed breast (612)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Deformity and disproportion of reconstructed breast (612)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\" + }, + { + "displayName": "(612.0) Deformity of reconstructed breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Deformity and disproportion of reconstructed breast (612)\\(612.0) Deformity of reconstructed breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Deformity and disproportion of reconstructed breast (612)\\\\(612.0) Deformity of reconstructed breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Deformity and disproportion of reconstructed breast (612)\\" + }, + { + "displayName": "(612.1) Disproportion of reconstructed breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Deformity and disproportion of reconstructed breast (612)\\(612.1) Disproportion of reconstructed breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Deformity and disproportion of reconstructed breast (612)\\\\(612.1) Disproportion of reconstructed breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Deformity and disproportion of reconstructed breast (612)\\" + }, + { + "displayName": "Other disorders of breast (611)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Other disorders of breast (611)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\" + }, + { + "displayName": "(611.0) Inflammatory disease of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\(611.0) Inflammatory disease of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\" + }, + { + "displayName": "(611.1) Hypertrophy of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\(611.1) Hypertrophy of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Other disorders of breast (611)\\\\(611.1) Hypertrophy of breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\" + }, + { + "displayName": "(611.2) Fissure of nipple", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\(611.2) Fissure of nipple\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Other disorders of breast (611)\\\\(611.2) Fissure of nipple\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\" + }, + { + "displayName": "(611.3) Fat necrosis of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\(611.3) Fat necrosis of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Other disorders of breast (611)\\\\(611.3) Fat necrosis of breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\" + }, + { + "displayName": "(611.4) Atrophy of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\(611.4) Atrophy of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Other disorders of breast (611)\\\\(611.4) Atrophy of breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\" + }, + { + "displayName": "(611.5) Galactocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\(611.5) Galactocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Other disorders of breast (611)\\\\(611.5) Galactocele\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\" + }, + { + "displayName": "(611.6) Galactorrhea not associated with childbirth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\(611.6) Galactorrhea not associated with childbirth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\" + }, + { + "displayName": "(611.9) Unspecified breast disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\(611.9) Unspecified breast disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Disorders of breast (610-612.99)\\\\Other disorders of breast (611)\\\\(611.9) Unspecified breast disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\" + }, + { + "displayName": "Other specified disorders of breast (611.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Other specified disorders of breast (611.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\" + }, + { + "displayName": "(611.81) Ptosis of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Other specified disorders of breast (611.8)\\(611.81) Ptosis of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Other specified disorders of breast (611.8)\\" + }, + { + "displayName": "(611.82) Hypoplasia of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Other specified disorders of breast (611.8)\\(611.82) Hypoplasia of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Other specified disorders of breast (611.8)\\" + }, + { + "displayName": "(611.83) Capsular contracture of breast implant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Other specified disorders of breast (611.8)\\(611.83) Capsular contracture of breast implant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Other specified disorders of breast (611.8)\\" + }, + { + "displayName": "(611.89) Other specified disorders of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Other specified disorders of breast (611.8)\\(611.89) Other specified disorders of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Other specified disorders of breast (611.8)\\" + }, + { + "displayName": "Signs and symptoms in breast (611.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Signs and symptoms in breast (611.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\" + }, + { + "displayName": "(611.71) Mastodynia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Signs and symptoms in breast (611.7)\\(611.71) Mastodynia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Signs and symptoms in breast (611.7)\\" + }, + { + "displayName": "(611.72) Lump or mass in breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Signs and symptoms in breast (611.7)\\(611.72) Lump or mass in breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Signs and symptoms in breast (611.7)\\" + }, + { + "displayName": "(611.79) Other signs and symptoms in breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Signs and symptoms in breast (611.7)\\(611.79) Other signs and symptoms in breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Disorders of breast (610-612.99)\\Other disorders of breast (611)\\Signs and symptoms in breast (611.7)\\" + }, + { + "displayName": "Inflammatory disease of female pelvic organs (614-616.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\" + }, + { + "displayName": "Inflammatory disease of cervix, vagina, and vulva (616)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\" + }, + { + "displayName": "(616.0) Cervicitis and endocervicitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\(616.0) Cervicitis and endocervicitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\" + }, + { + "displayName": "(616.2) Cyst of Bartholin's gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\(616.2) Cyst of Bartholin's gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\" + }, + { + "displayName": "(616.3) Abscess of Bartholin's gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\(616.3) Abscess of Bartholin's gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\" + }, + { + "displayName": "(616.4) Other abscess of vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\(616.4) Other abscess of vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\" + }, + { + "displayName": "(616.9) Unspecified inflammatory disease of cervix, vagina, and vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\(616.9) Unspecified inflammatory disease of cervix, vagina, and vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\" + }, + { + "displayName": "Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\" + }, + { + "displayName": "(616.81) Mucositis (ulcerative) of cervix, vagina, and vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\\(616.81) Mucositis (ulcerative) of cervix, vagina, and vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\\" + }, + { + "displayName": "(616.89) Other inflammatory disease of cervix, vagina and vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\\(616.89) Other inflammatory disease of cervix, vagina and vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\\" + }, + { + "displayName": "Ulceration of vulva (616.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Ulceration of vulva (616.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\" + }, + { + "displayName": "(616.50) Ulceration of vulva, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Ulceration of vulva (616.5)\\(616.50) Ulceration of vulva, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Ulceration of vulva (616.5)\\" + }, + { + "displayName": "(616.51) Ulceration of vulva in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Ulceration of vulva (616.5)\\(616.51) Ulceration of vulva in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Ulceration of vulva (616.5)\\" + }, + { + "displayName": "Vaginitis and vulvovaginitis (616.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Vaginitis and vulvovaginitis (616.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\" + }, + { + "displayName": "(616.10) Vaginitis and vulvovaginitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Vaginitis and vulvovaginitis (616.1)\\(616.10) Vaginitis and vulvovaginitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Vaginitis and vulvovaginitis (616.1)\\" + }, + { + "displayName": "(616.11) Vaginitis and vulvovaginitis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Vaginitis and vulvovaginitis (616.1)\\(616.11) Vaginitis and vulvovaginitis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of cervix, vagina, and vulva (616)\\Vaginitis and vulvovaginitis (616.1)\\" + }, + { + "displayName": "Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\" + }, + { + "displayName": "(614.0) Acute salpingitis and oophoritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\(614.0) Acute salpingitis and oophoritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\" + }, + { + "displayName": "(614.1) Chronic salpingitis and oophoritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\(614.1) Chronic salpingitis and oophoritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\" + }, + { + "displayName": "(614.2) Salpingitis and oophoritis not specified as acute, subacute, or chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\(614.2) Salpingitis and oophoritis not specified as acute, subacute, or chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\" + }, + { + "displayName": "(614.3) Acute parametritis and pelvic cellulitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\(614.3) Acute parametritis and pelvic cellulitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\" + }, + { + "displayName": "(614.4) Chronic or unspecified parametritis and pelvic cellulitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\(614.4) Chronic or unspecified parametritis and pelvic cellulitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Inflammatory disease of female pelvic organs (614-616.99)\\\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\\\(614.4) Chronic or unspecified parametritis and pelvic cellulitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\" + }, + { + "displayName": "(614.5) Acute or unspecified pelvic peritonitis, female", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\(614.5) Acute or unspecified pelvic peritonitis, female\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Inflammatory disease of female pelvic organs (614-616.99)\\\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\\\(614.5) Acute or unspecified pelvic peritonitis, female\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\" + }, + { + "displayName": "(614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\(614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Inflammatory disease of female pelvic organs (614-616.99)\\\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\\\(614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\" + }, + { + "displayName": "(614.7) Other chronic pelvic peritonitis, female", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\(614.7) Other chronic pelvic peritonitis, female\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Inflammatory disease of female pelvic organs (614-616.99)\\\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\\\(614.7) Other chronic pelvic peritonitis, female\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\" + }, + { + "displayName": "(614.8) Other specified inflammatory disease of female pelvic organs and tissues", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\(614.8) Other specified inflammatory disease of female pelvic organs and tissues\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Inflammatory disease of female pelvic organs (614-616.99)\\\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\\\(614.8) Other specified inflammatory disease of female pelvic organs and tissues\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\" + }, + { + "displayName": "(614.9) Unspecified inflammatory disease of female pelvic organs and tissues", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\(614.9) Unspecified inflammatory disease of female pelvic organs and tissues\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Inflammatory disease of female pelvic organs (614-616.99)\\\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\\\(614.9) Unspecified inflammatory disease of female pelvic organs and tissues\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\\" + }, + { + "displayName": "Inflammatory diseases of uterus, except cervix (615)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory diseases of uterus, except cervix (615)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Inflammatory disease of female pelvic organs (614-616.99)\\\\Inflammatory diseases of uterus, except cervix (615)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\" + }, + { + "displayName": "(615.0) Acute inflammatory diseases of uterus, except cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory diseases of uterus, except cervix (615)\\(615.0) Acute inflammatory diseases of uterus, except cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Inflammatory disease of female pelvic organs (614-616.99)\\\\Inflammatory diseases of uterus, except cervix (615)\\\\(615.0) Acute inflammatory diseases of uterus, except cervix\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory diseases of uterus, except cervix (615)\\" + }, + { + "displayName": "(615.1) Chronic inflammatory diseases of uterus, except cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory diseases of uterus, except cervix (615)\\(615.1) Chronic inflammatory diseases of uterus, except cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Inflammatory disease of female pelvic organs (614-616.99)\\\\Inflammatory diseases of uterus, except cervix (615)\\\\(615.1) Chronic inflammatory diseases of uterus, except cervix\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory diseases of uterus, except cervix (615)\\" + }, + { + "displayName": "(615.9) Unspecified inflammatory disease of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory diseases of uterus, except cervix (615)\\(615.9) Unspecified inflammatory disease of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Inflammatory disease of female pelvic organs (614-616.99)\\\\Inflammatory diseases of uterus, except cervix (615)\\\\(615.9) Unspecified inflammatory disease of uterus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Inflammatory disease of female pelvic organs (614-616.99)\\Inflammatory diseases of uterus, except cervix (615)\\" + }, + { + "displayName": "Nephritis, nephrotic syndrome, and nephrosis (580-589.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\" + }, + { + "displayName": "(586) Renal failure, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\(586) Renal failure, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\(586) Renal failure, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\" + }, + { + "displayName": "(587) Renal sclerosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\(587) Renal sclerosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\(587) Renal sclerosis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\" + }, + { + "displayName": "Acute glomerulonephritis (580)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Acute glomerulonephritis (580)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\" + }, + { + "displayName": "(580.0) Acute glomerulonephritis with lesion of proliferative glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\(580.0) Acute glomerulonephritis with lesion of proliferative glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Acute glomerulonephritis (580)\\\\(580.0) Acute glomerulonephritis with lesion of proliferative glomerulonephritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\" + }, + { + "displayName": "(580.4) Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\(580.4) Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Acute glomerulonephritis (580)\\\\(580.4) Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\" + }, + { + "displayName": "(580.9) Acute glomerulonephritis with unspecified pathological lesion in kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\(580.9) Acute glomerulonephritis with unspecified pathological lesion in kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\" + }, + { + "displayName": "Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\" + }, + { + "displayName": "(580.81) Acute glomerulonephritis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\\(580.81) Acute glomerulonephritis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\\" + }, + { + "displayName": "(580.89) Acute glomerulonephritis with other specified pathological lesion in kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\\(580.89) Acute glomerulonephritis with other specified pathological lesion in kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute glomerulonephritis (580)\\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\\" + }, + { + "displayName": "Acute kidney failure (584)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute kidney failure (584)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\" + }, + { + "displayName": "(584.5) Acute kidney failure with lesion of tubular necrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute kidney failure (584)\\(584.5) Acute kidney failure with lesion of tubular necrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute kidney failure (584)\\" + }, + { + "displayName": "(584.6) Acute kidney failure with lesion of renal cortical necrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute kidney failure (584)\\(584.6) Acute kidney failure with lesion of renal cortical necrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute kidney failure (584)\\" + }, + { + "displayName": "(584.7) Acute kidney failure with lesion of renal medullary [papillary] necrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute kidney failure (584)\\(584.7) Acute kidney failure with lesion of renal medullary [papillary] necrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute kidney failure (584)\\" + }, + { + "displayName": "(584.8) Acute kidney failure with other specified pathological lesion in kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute kidney failure (584)\\(584.8) Acute kidney failure with other specified pathological lesion in kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute kidney failure (584)\\" + }, + { + "displayName": "(584.9) Acute kidney failure, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute kidney failure (584)\\(584.9) Acute kidney failure, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Acute kidney failure (584)\\" + }, + { + "displayName": "Chronic glomerulonephritis (582)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\" + }, + { + "displayName": "(582.0) Chronic glomerulonephritis with lesion of proliferative glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\(582.0) Chronic glomerulonephritis with lesion of proliferative glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\" + }, + { + "displayName": "(582.1) Chronic glomerulonephritis with lesion of membranous glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\(582.1) Chronic glomerulonephritis with lesion of membranous glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Chronic glomerulonephritis (582)\\\\(582.1) Chronic glomerulonephritis with lesion of membranous glomerulonephritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\" + }, + { + "displayName": "(582.2) Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\(582.2) Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Chronic glomerulonephritis (582)\\\\(582.2) Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\" + }, + { + "displayName": "(582.4) Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\(582.4) Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\" + }, + { + "displayName": "(582.9) Chronic glomerulonephritis with unspecified pathological lesion in kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\(582.9) Chronic glomerulonephritis with unspecified pathological lesion in kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Chronic glomerulonephritis (582)\\\\(582.9) Chronic glomerulonephritis with unspecified pathological lesion in kidney\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\" + }, + { + "displayName": "Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Chronic glomerulonephritis (582)\\\\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\" + }, + { + "displayName": "(582.81) Chronic glomerulonephritis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\\(582.81) Chronic glomerulonephritis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Chronic glomerulonephritis (582)\\\\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\\\\(582.81) Chronic glomerulonephritis in diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\\" + }, + { + "displayName": "(582.89) Chronic glomerulonephritis with other specified pathological lesion in kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\\(582.89) Chronic glomerulonephritis with other specified pathological lesion in kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic glomerulonephritis (582)\\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\\" + }, + { + "displayName": "Chronic kidney disease (CKD) (585)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Chronic kidney disease (CKD) (585)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\" + }, + { + "displayName": "(585.1) Chronic kidney disease, Stage I", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\(585.1) Chronic kidney disease, Stage I\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Chronic kidney disease (CKD) (585)\\\\(585.1) Chronic kidney disease, Stage I\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\" + }, + { + "displayName": "(585.2) Chronic kidney disease, Stage II (mild)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\(585.2) Chronic kidney disease, Stage II (mild)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\" + }, + { + "displayName": "(585.3) Chronic kidney disease, Stage III (moderate)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\(585.3) Chronic kidney disease, Stage III (moderate)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Chronic kidney disease (CKD) (585)\\\\(585.3) Chronic kidney disease, Stage III (moderate)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\" + }, + { + "displayName": "(585.4) Chronic kidney disease, Stage IV (severe)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\(585.4) Chronic kidney disease, Stage IV (severe)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Chronic kidney disease (CKD) (585)\\\\(585.4) Chronic kidney disease, Stage IV (severe)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\" + }, + { + "displayName": "(585.5) Chronic kidney disease, Stage V", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\(585.5) Chronic kidney disease, Stage V\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\" + }, + { + "displayName": "(585.6) End stage renal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\(585.6) End stage renal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Chronic kidney disease (CKD) (585)\\\\(585.6) End stage renal disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\" + }, + { + "displayName": "(585.9) Chronic kidney disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\(585.9) Chronic kidney disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Chronic kidney disease (CKD) (585)\\\\(585.9) Chronic kidney disease, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Chronic kidney disease (CKD) (585)\\" + }, + { + "displayName": "Disorders resulting from impaired renal function (588)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\" + }, + { + "displayName": "(588.0) Renal osteodystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\(588.0) Renal osteodystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Disorders resulting from impaired renal function (588)\\\\(588.0) Renal osteodystrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\" + }, + { + "displayName": "(588.1) Nephrogenic diabetes insipidus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\(588.1) Nephrogenic diabetes insipidus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\" + }, + { + "displayName": "(588.9) Unspecified disorder resulting from impaired renal function", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\(588.9) Unspecified disorder resulting from impaired renal function\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\" + }, + { + "displayName": "Other specified disorders resulting from impaired renal function (588.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\Other specified disorders resulting from impaired renal function (588.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\" + }, + { + "displayName": "(588.81) Secondary hyperparathyroidism (of renal origin)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\Other specified disorders resulting from impaired renal function (588.8)\\(588.81) Secondary hyperparathyroidism (of renal origin)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\Other specified disorders resulting from impaired renal function (588.8)\\" + }, + { + "displayName": "(588.89) Other specified disorders resulting from impaired renal function", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\Other specified disorders resulting from impaired renal function (588.8)\\(588.89) Other specified disorders resulting from impaired renal function\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Disorders resulting from impaired renal function (588)\\Other specified disorders resulting from impaired renal function (588.8)\\" + }, + { + "displayName": "Nephritis and nephropathy, not specified as acute or chronic (583)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\" + }, + { + "displayName": "(583.0) Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\(583.0) Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\" + }, + { + "displayName": "(583.1) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\(583.1) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\" + }, + { + "displayName": "(583.2) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\(583.2) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Nephritis and nephropathy, not specified as acute or chronic (583)\\\\(583.2) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\" + }, + { + "displayName": "(583.4) Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\(583.4) Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\" + }, + { + "displayName": "(583.6) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\(583.6) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\" + }, + { + "displayName": "(583.7) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\(583.7) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Nephritis and nephropathy, not specified as acute or chronic (583)\\\\(583.7) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\" + }, + { + "displayName": "(583.9) Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\(583.9) Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\" + }, + { + "displayName": "Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Nephritis and nephropathy, not specified as acute or chronic (583)\\\\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\" + }, + { + "displayName": "(583.81) Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\\(583.81) Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\\" + }, + { + "displayName": "(583.89) Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\\(583.89) Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephritis and nephropathy, not specified as acute or chronic (583)\\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\\" + }, + { + "displayName": "Nephrotic syndrome (581)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Nephrotic syndrome (581)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\" + }, + { + "displayName": "(581.0) Nephrotic syndrome with lesion of proliferative glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\(581.0) Nephrotic syndrome with lesion of proliferative glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Nephrotic syndrome (581)\\\\(581.0) Nephrotic syndrome with lesion of proliferative glomerulonephritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\" + }, + { + "displayName": "(581.1) Nephrotic syndrome with lesion of membranous glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\(581.1) Nephrotic syndrome with lesion of membranous glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\" + }, + { + "displayName": "(581.2) Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\(581.2) Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Nephrotic syndrome (581)\\\\(581.2) Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\" + }, + { + "displayName": "(581.3) Nephrotic syndrome with lesion of minimal change glomerulonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\(581.3) Nephrotic syndrome with lesion of minimal change glomerulonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\" + }, + { + "displayName": "(581.9) Nephrotic syndrome with unspecified pathological lesion in kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\(581.9) Nephrotic syndrome with unspecified pathological lesion in kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Nephrotic syndrome (581)\\\\(581.9) Nephrotic syndrome with unspecified pathological lesion in kidney\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\" + }, + { + "displayName": "Nephrotic syndrome with other specified pathological lesion in kidney (581.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\" + }, + { + "displayName": "(581.81) Nephrotic syndrome in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\\(581.81) Nephrotic syndrome in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Nephrotic syndrome (581)\\\\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\\\\(581.81) Nephrotic syndrome in diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\\" + }, + { + "displayName": "(581.89) Nephrotic syndrome with other specified pathological lesion in kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\\(581.89) Nephrotic syndrome with other specified pathological lesion in kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Nephrotic syndrome (581)\\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\\" + }, + { + "displayName": "Small kidney of unknown cause (589)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Small kidney of unknown cause (589)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Small kidney of unknown cause (589)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\" + }, + { + "displayName": "(589.0) Unilateral small kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Small kidney of unknown cause (589)\\(589.0) Unilateral small kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Small kidney of unknown cause (589)\\" + }, + { + "displayName": "(589.1) Bilateral small kidneys", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Small kidney of unknown cause (589)\\(589.1) Bilateral small kidneys\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Small kidney of unknown cause (589)\\\\(589.1) Bilateral small kidneys\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Small kidney of unknown cause (589)\\" + }, + { + "displayName": "(589.9) Small kidney, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Small kidney of unknown cause (589)\\(589.9) Small kidney, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\\\Small kidney of unknown cause (589)\\\\(589.9) Small kidney, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\\Small kidney of unknown cause (589)\\" + }, + { + "displayName": "Other diseases of urinary system (590-599.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\" + }, + { + "displayName": "(591) Hydronephrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\(591) Hydronephrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\(591) Hydronephrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\" + }, + { + "displayName": "Calculus of kidney and ureter (592)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of kidney and ureter (592)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Calculus of kidney and ureter (592)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\" + }, + { + "displayName": "(592.0) Calculus of kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of kidney and ureter (592)\\(592.0) Calculus of kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Calculus of kidney and ureter (592)\\\\(592.0) Calculus of kidney\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of kidney and ureter (592)\\" + }, + { + "displayName": "(592.1) Calculus of ureter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of kidney and ureter (592)\\(592.1) Calculus of ureter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Calculus of kidney and ureter (592)\\\\(592.1) Calculus of ureter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of kidney and ureter (592)\\" + }, + { + "displayName": "(592.9) Urinary calculus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of kidney and ureter (592)\\(592.9) Urinary calculus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Calculus of kidney and ureter (592)\\\\(592.9) Urinary calculus, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of kidney and ureter (592)\\" + }, + { + "displayName": "Calculus of lower urinary tract (594)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of lower urinary tract (594)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Calculus of lower urinary tract (594)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\" + }, + { + "displayName": "(594.0) Calculus in diverticulum of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of lower urinary tract (594)\\(594.0) Calculus in diverticulum of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Calculus of lower urinary tract (594)\\\\(594.0) Calculus in diverticulum of bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of lower urinary tract (594)\\" + }, + { + "displayName": "(594.1) Other calculus in bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of lower urinary tract (594)\\(594.1) Other calculus in bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Calculus of lower urinary tract (594)\\\\(594.1) Other calculus in bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of lower urinary tract (594)\\" + }, + { + "displayName": "(594.2) Calculus in urethra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of lower urinary tract (594)\\(594.2) Calculus in urethra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Calculus of lower urinary tract (594)\\\\(594.2) Calculus in urethra\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of lower urinary tract (594)\\" + }, + { + "displayName": "(594.8) Other lower urinary tract calculus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of lower urinary tract (594)\\(594.8) Other lower urinary tract calculus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Calculus of lower urinary tract (594)\\\\(594.8) Other lower urinary tract calculus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of lower urinary tract (594)\\" + }, + { + "displayName": "(594.9) Calculus of lower urinary tract, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of lower urinary tract (594)\\(594.9) Calculus of lower urinary tract, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Calculus of lower urinary tract (594)\\" + }, + { + "displayName": "Cystitis (595)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\" + }, + { + "displayName": "(595.0) Acute cystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\(595.0) Acute cystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\" + }, + { + "displayName": "(595.1) Chronic interstitial cystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\(595.1) Chronic interstitial cystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\" + }, + { + "displayName": "(595.2) Other chronic cystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\(595.2) Other chronic cystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\" + }, + { + "displayName": "(595.3) Trigonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\(595.3) Trigonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\" + }, + { + "displayName": "(595.4) Cystitis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\(595.4) Cystitis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\" + }, + { + "displayName": "(595.9) Cystitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\(595.9) Cystitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\" + }, + { + "displayName": "Other specified types of cystitis (595.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\Other specified types of cystitis (595.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\" + }, + { + "displayName": "(595.81) Cystitis cystica", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\Other specified types of cystitis (595.8)\\(595.81) Cystitis cystica\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\Other specified types of cystitis (595.8)\\" + }, + { + "displayName": "(595.82) Irradiation cystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\Other specified types of cystitis (595.8)\\(595.82) Irradiation cystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\Other specified types of cystitis (595.8)\\" + }, + { + "displayName": "(595.89) Other specified types of cystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\Other specified types of cystitis (595.8)\\(595.89) Other specified types of cystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Cystitis (595)\\Other specified types of cystitis (595.8)\\" + }, + { + "displayName": "Infections of kidney (590)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Infections of kidney (590)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\" + }, + { + "displayName": "(590.2) Renal and perinephric abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\(590.2) Renal and perinephric abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Infections of kidney (590)\\\\(590.2) Renal and perinephric abscess\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\" + }, + { + "displayName": "(590.3) Pyeloureteritis cystica", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\(590.3) Pyeloureteritis cystica\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\" + }, + { + "displayName": "(590.9) Infection of kidney, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\(590.9) Infection of kidney, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Infections of kidney (590)\\\\(590.9) Infection of kidney, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\" + }, + { + "displayName": "Acute pyelonephritis (590.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Acute pyelonephritis (590.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Infections of kidney (590)\\\\Acute pyelonephritis (590.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\" + }, + { + "displayName": "(590.10) Acute pyelonephritis without lesion of renal medullary necrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Acute pyelonephritis (590.1)\\(590.10) Acute pyelonephritis without lesion of renal medullary necrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Infections of kidney (590)\\\\Acute pyelonephritis (590.1)\\\\(590.10) Acute pyelonephritis without lesion of renal medullary necrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Acute pyelonephritis (590.1)\\" + }, + { + "displayName": "(590.11) Acute pyelonephritis with lesion of renal medullary necrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Acute pyelonephritis (590.1)\\(590.11) Acute pyelonephritis with lesion of renal medullary necrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Infections of kidney (590)\\\\Acute pyelonephritis (590.1)\\\\(590.11) Acute pyelonephritis with lesion of renal medullary necrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Acute pyelonephritis (590.1)\\" + }, + { + "displayName": "Chronic pyelonephritis (590.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Chronic pyelonephritis (590.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\" + }, + { + "displayName": "(590.00) Chronic pyelonephritis without lesion of renal medullary necrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Chronic pyelonephritis (590.0)\\(590.00) Chronic pyelonephritis without lesion of renal medullary necrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Infections of kidney (590)\\\\Chronic pyelonephritis (590.0)\\\\(590.00) Chronic pyelonephritis without lesion of renal medullary necrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Chronic pyelonephritis (590.0)\\" + }, + { + "displayName": "(590.01) Chronic pyelonephritis with lesion of renal medullary necrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Chronic pyelonephritis (590.0)\\(590.01) Chronic pyelonephritis with lesion of renal medullary necrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Chronic pyelonephritis (590.0)\\" + }, + { + "displayName": "Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Infections of kidney (590)\\\\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\" + }, + { + "displayName": "(590.80) Pyelonephritis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\\(590.80) Pyelonephritis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Infections of kidney (590)\\\\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\\\\(590.80) Pyelonephritis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\\" + }, + { + "displayName": "(590.81) Pyelitis or pyelonephritis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\\(590.81) Pyelitis or pyelonephritis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Infections of kidney (590)\\\\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\\\\(590.81) Pyelitis or pyelonephritis in diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Infections of kidney (590)\\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\\" + }, + { + "displayName": "Other disorders of bladder (596)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of bladder (596)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\" + }, + { + "displayName": "(596.0) Bladder neck obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\(596.0) Bladder neck obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\" + }, + { + "displayName": "(596.1) Intestinovesical fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\(596.1) Intestinovesical fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of bladder (596)\\\\(596.1) Intestinovesical fistula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\" + }, + { + "displayName": "(596.2) Vesical fistula, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\(596.2) Vesical fistula, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\" + }, + { + "displayName": "(596.3) Diverticulum of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\(596.3) Diverticulum of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\" + }, + { + "displayName": "(596.4) Atony of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\(596.4) Atony of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\" + }, + { + "displayName": "(596.6) Rupture of bladder, nontraumatic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\(596.6) Rupture of bladder, nontraumatic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\" + }, + { + "displayName": "(596.7) Hemorrhage into bladder wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\(596.7) Hemorrhage into bladder wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\" + }, + { + "displayName": "(596.9) Unspecified disorder of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\(596.9) Unspecified disorder of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\" + }, + { + "displayName": "Other functional disorders of bladder (596.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\" + }, + { + "displayName": "(596.51) Hypertonicity of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\(596.51) Hypertonicity of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\" + }, + { + "displayName": "(596.52) Low bladder compliance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\(596.52) Low bladder compliance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\" + }, + { + "displayName": "(596.53) Paralysis of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\(596.53) Paralysis of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of bladder (596)\\\\Other functional disorders of bladder (596.5)\\\\(596.53) Paralysis of bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\" + }, + { + "displayName": "(596.54) Neurogenic bladder NOS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\(596.54) Neurogenic bladder NOS\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of bladder (596)\\\\Other functional disorders of bladder (596.5)\\\\(596.54) Neurogenic bladder NOS\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\" + }, + { + "displayName": "(596.55) Detrusor sphincter dyssynergia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\(596.55) Detrusor sphincter dyssynergia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of bladder (596)\\\\Other functional disorders of bladder (596.5)\\\\(596.55) Detrusor sphincter dyssynergia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\" + }, + { + "displayName": "(596.59) Other functional disorder of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\(596.59) Other functional disorder of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of bladder (596)\\\\Other functional disorders of bladder (596.5)\\\\(596.59) Other functional disorder of bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other functional disorders of bladder (596.5)\\" + }, + { + "displayName": "Other specified disorders of bladder (596.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other specified disorders of bladder (596.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of bladder (596)\\\\Other specified disorders of bladder (596.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\" + }, + { + "displayName": "(596.81) Infection of cystostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other specified disorders of bladder (596.8)\\(596.81) Infection of cystostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of bladder (596)\\\\Other specified disorders of bladder (596.8)\\\\(596.81) Infection of cystostomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other specified disorders of bladder (596.8)\\" + }, + { + "displayName": "(596.82) Mechanical complication of cystostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other specified disorders of bladder (596.8)\\(596.82) Mechanical complication of cystostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of bladder (596)\\\\Other specified disorders of bladder (596.8)\\\\(596.82) Mechanical complication of cystostomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other specified disorders of bladder (596.8)\\" + }, + { + "displayName": "(596.83) Other complication of cystostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other specified disorders of bladder (596.8)\\(596.83) Other complication of cystostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of bladder (596)\\\\Other specified disorders of bladder (596.8)\\\\(596.83) Other complication of cystostomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other specified disorders of bladder (596.8)\\" + }, + { + "displayName": "(596.89) Other specified disorders of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other specified disorders of bladder (596.8)\\(596.89) Other specified disorders of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of bladder (596)\\\\Other specified disorders of bladder (596.8)\\\\(596.89) Other specified disorders of bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of bladder (596)\\Other specified disorders of bladder (596.8)\\" + }, + { + "displayName": "Other disorders of kidney and ureter (593)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\" + }, + { + "displayName": "(593.0) Nephroptosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\(593.0) Nephroptosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\" + }, + { + "displayName": "(593.1) Hypertrophy of kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\(593.1) Hypertrophy of kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\" + }, + { + "displayName": "(593.2) Cyst of kidney, acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\(593.2) Cyst of kidney, acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\" + }, + { + "displayName": "(593.3) Stricture or kinking of ureter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\(593.3) Stricture or kinking of ureter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of kidney and ureter (593)\\\\(593.3) Stricture or kinking of ureter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\" + }, + { + "displayName": "(593.4) Other ureteric obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\(593.4) Other ureteric obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\" + }, + { + "displayName": "(593.5) Hydroureter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\(593.5) Hydroureter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of kidney and ureter (593)\\\\(593.5) Hydroureter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\" + }, + { + "displayName": "(593.6) Postural proteinuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\(593.6) Postural proteinuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of kidney and ureter (593)\\\\(593.6) Postural proteinuria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\" + }, + { + "displayName": "(593.9) Unspecified disorder of kidney and ureter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\(593.9) Unspecified disorder of kidney and ureter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\" + }, + { + "displayName": "Other specified disorders of kidney and ureter (593.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Other specified disorders of kidney and ureter (593.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of kidney and ureter (593)\\\\Other specified disorders of kidney and ureter (593.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\" + }, + { + "displayName": "(593.81) Vascular disorders of kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Other specified disorders of kidney and ureter (593.8)\\(593.81) Vascular disorders of kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of kidney and ureter (593)\\\\Other specified disorders of kidney and ureter (593.8)\\\\(593.81) Vascular disorders of kidney\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Other specified disorders of kidney and ureter (593.8)\\" + }, + { + "displayName": "(593.82) Ureteral fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Other specified disorders of kidney and ureter (593.8)\\(593.82) Ureteral fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Other specified disorders of kidney and ureter (593.8)\\" + }, + { + "displayName": "(593.89) Other specified disorders of kidney and ureter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Other specified disorders of kidney and ureter (593.8)\\(593.89) Other specified disorders of kidney and ureter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of kidney and ureter (593)\\\\Other specified disorders of kidney and ureter (593.8)\\\\(593.89) Other specified disorders of kidney and ureter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Other specified disorders of kidney and ureter (593.8)\\" + }, + { + "displayName": "Vesicoureteral reflux (593.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Vesicoureteral reflux (593.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\" + }, + { + "displayName": "(593.70) Vesicoureteral reflux unspecified or without reflux nephropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Vesicoureteral reflux (593.7)\\(593.70) Vesicoureteral reflux unspecified or without reflux nephropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of kidney and ureter (593)\\\\Vesicoureteral reflux (593.7)\\\\(593.70) Vesicoureteral reflux unspecified or without reflux nephropathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Vesicoureteral reflux (593.7)\\" + }, + { + "displayName": "(593.71) Vesicoureteral reflux with reflux nephropathy, unilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Vesicoureteral reflux (593.7)\\(593.71) Vesicoureteral reflux with reflux nephropathy, unilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of kidney and ureter (593)\\\\Vesicoureteral reflux (593.7)\\\\(593.71) Vesicoureteral reflux with reflux nephropathy, unilateral\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Vesicoureteral reflux (593.7)\\" + }, + { + "displayName": "(593.72) Vesicoureteral reflux with reflux nephropathy, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Vesicoureteral reflux (593.7)\\(593.72) Vesicoureteral reflux with reflux nephropathy, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Vesicoureteral reflux (593.7)\\" + }, + { + "displayName": "(593.73) Other vesicoureteral reflux with reflux nephropathy NOS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Vesicoureteral reflux (593.7)\\(593.73) Other vesicoureteral reflux with reflux nephropathy NOS\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of kidney and ureter (593)\\\\Vesicoureteral reflux (593.7)\\\\(593.73) Other vesicoureteral reflux with reflux nephropathy NOS\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of kidney and ureter (593)\\Vesicoureteral reflux (593.7)\\" + }, + { + "displayName": "Other disorders of urethra and urinary tract (599)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\" + }, + { + "displayName": "(599.0) Urinary tract infection, site not specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\(599.0) Urinary tract infection, site not specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of urethra and urinary tract (599)\\\\(599.0) Urinary tract infection, site not specified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\" + }, + { + "displayName": "(599.1) Urethral fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\(599.1) Urethral fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of urethra and urinary tract (599)\\\\(599.1) Urethral fistula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\" + }, + { + "displayName": "(599.2) Urethral diverticulum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\(599.2) Urethral diverticulum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\" + }, + { + "displayName": "(599.3) Urethral caruncle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\(599.3) Urethral caruncle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of urethra and urinary tract (599)\\\\(599.3) Urethral caruncle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\" + }, + { + "displayName": "(599.4) Urethral false passage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\(599.4) Urethral false passage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\" + }, + { + "displayName": "(599.5) Prolapsed urethral mucosa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\(599.5) Prolapsed urethral mucosa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of urethra and urinary tract (599)\\\\(599.5) Prolapsed urethral mucosa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\" + }, + { + "displayName": "(599.9) Unspecified disorder of urethra and urinary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\(599.9) Unspecified disorder of urethra and urinary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\" + }, + { + "displayName": "Hematuria (599.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Hematuria (599.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\" + }, + { + "displayName": "(599.70) Hematuria, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Hematuria (599.7)\\(599.70) Hematuria, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Hematuria (599.7)\\" + }, + { + "displayName": "(599.71) Gross hematuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Hematuria (599.7)\\(599.71) Gross hematuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of urethra and urinary tract (599)\\\\Hematuria (599.7)\\\\(599.71) Gross hematuria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Hematuria (599.7)\\" + }, + { + "displayName": "(599.72) Microscopic hematuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Hematuria (599.7)\\(599.72) Microscopic hematuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of urethra and urinary tract (599)\\\\Hematuria (599.7)\\\\(599.72) Microscopic hematuria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Hematuria (599.7)\\" + }, + { + "displayName": "Other specified disorders of urethra and urinary tract (599.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Other specified disorders of urethra and urinary tract (599.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of urethra and urinary tract (599)\\\\Other specified disorders of urethra and urinary tract (599.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\" + }, + { + "displayName": "(599.81) Urethral hypermobility", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Other specified disorders of urethra and urinary tract (599.8)\\(599.81) Urethral hypermobility\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Other specified disorders of urethra and urinary tract (599.8)\\" + }, + { + "displayName": "(599.82) Intrinsic (urethral) sphincter deficiency [ISD]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Other specified disorders of urethra and urinary tract (599.8)\\(599.82) Intrinsic (urethral) sphincter deficiency [ISD]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Other specified disorders of urethra and urinary tract (599.8)\\" + }, + { + "displayName": "(599.83) Urethral instability", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Other specified disorders of urethra and urinary tract (599.8)\\(599.83) Urethral instability\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Other disorders of urethra and urinary tract (599)\\\\Other specified disorders of urethra and urinary tract (599.8)\\\\(599.83) Urethral instability\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Other specified disorders of urethra and urinary tract (599.8)\\" + }, + { + "displayName": "(599.84) Other specified disorders of urethra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Other specified disorders of urethra and urinary tract (599.8)\\(599.84) Other specified disorders of urethra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Other specified disorders of urethra and urinary tract (599.8)\\" + }, + { + "displayName": "(599.89) Other specified disorders of urinary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Other specified disorders of urethra and urinary tract (599.8)\\(599.89) Other specified disorders of urinary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Other specified disorders of urethra and urinary tract (599.8)\\" + }, + { + "displayName": "Urinary obstruction (599.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Urinary obstruction (599.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\" + }, + { + "displayName": "(599.60) Urinary obstruction, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Urinary obstruction (599.6)\\(599.60) Urinary obstruction, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Urinary obstruction (599.6)\\" + }, + { + "displayName": "(599.69) Urinary obstruction, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Urinary obstruction (599.6)\\(599.69) Urinary obstruction, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Other disorders of urethra and urinary tract (599)\\Urinary obstruction (599.6)\\" + }, + { + "displayName": "Urethral stricture (598)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\" + }, + { + "displayName": "(598.1) Traumatic urethral stricture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\(598.1) Traumatic urethral stricture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\" + }, + { + "displayName": "(598.2) Postoperative urethral stricture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\(598.2) Postoperative urethral stricture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\" + }, + { + "displayName": "(598.8) Other specified causes of urethral stricture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\(598.8) Other specified causes of urethral stricture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\" + }, + { + "displayName": "(598.9) Urethral stricture, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\(598.9) Urethral stricture, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\" + }, + { + "displayName": "Urethral stricture due to infection (598.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\Urethral stricture due to infection (598.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\" + }, + { + "displayName": "(598.00) Urethral stricture due to unspecified infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\Urethral stricture due to infection (598.0)\\(598.00) Urethral stricture due to unspecified infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\Urethral stricture due to infection (598.0)\\" + }, + { + "displayName": "(598.01) Urethral stricture due to infective diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\Urethral stricture due to infection (598.0)\\(598.01) Urethral stricture due to infective diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Urethral stricture (598)\\\\Urethral stricture due to infection (598.0)\\\\(598.01) Urethral stricture due to infective diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethral stricture (598)\\Urethral stricture due to infection (598.0)\\" + }, + { + "displayName": "Urethritis, not sexually transmitted, and urethral syndrome (597)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other diseases of urinary system (590-599.99)\\\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\" + }, + { + "displayName": "(597.0) Urethral abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\(597.0) Urethral abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\" + }, + { + "displayName": "Other urethritis (597.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\Other urethritis (597.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\" + }, + { + "displayName": "(597.80) Urethritis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\Other urethritis (597.8)\\(597.80) Urethritis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\Other urethritis (597.8)\\" + }, + { + "displayName": "(597.81) Urethral syndrome NOS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\Other urethritis (597.8)\\(597.81) Urethral syndrome NOS\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\Other urethritis (597.8)\\" + }, + { + "displayName": "(597.89) Other urethritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\Other urethritis (597.8)\\(597.89) Other urethritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other diseases of urinary system (590-599.99)\\Urethritis, not sexually transmitted, and urethral syndrome (597)\\Other urethritis (597.8)\\" + }, + { + "displayName": "Other disorders of female genital tract (617-629.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\" + }, + { + "displayName": "Disorders of menstruation and other abnormal bleeding from female genital tract (626)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(626.0) Absence of menstruation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\(626.0) Absence of menstruation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\" + }, + { + "displayName": "(626.1) Scanty or infrequent menstruation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\(626.1) Scanty or infrequent menstruation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\" + }, + { + "displayName": "(626.2) Excessive or frequent menstruation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\(626.2) Excessive or frequent menstruation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\" + }, + { + "displayName": "(626.3) Puberty bleeding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\(626.3) Puberty bleeding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\" + }, + { + "displayName": "(626.4) Irregular menstrual cycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\(626.4) Irregular menstrual cycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\" + }, + { + "displayName": "(626.5) Ovulation bleeding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\(626.5) Ovulation bleeding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\" + }, + { + "displayName": "(626.6) Metrorrhagia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\(626.6) Metrorrhagia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\" + }, + { + "displayName": "(626.7) Postcoital bleeding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\(626.7) Postcoital bleeding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\\\(626.7) Postcoital bleeding\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\" + }, + { + "displayName": "(626.8) Other disorders of menstruation and other abnormal bleeding from female genital tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\(626.8) Other disorders of menstruation and other abnormal bleeding from female genital tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\\\(626.8) Other disorders of menstruation and other abnormal bleeding from female genital tract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\" + }, + { + "displayName": "(626.9) Unspecified disorders of menstruation and other abnormal bleeding from female genital tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\(626.9) Unspecified disorders of menstruation and other abnormal bleeding from female genital tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\\\(626.9) Unspecified disorders of menstruation and other abnormal bleeding from female genital tract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\\" + }, + { + "displayName": "Disorders of uterus, not elsewhere classified (621)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(621.0) Polyp of corpus uteri", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\(621.0) Polyp of corpus uteri\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\" + }, + { + "displayName": "(621.1) Chronic subinvolution of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\(621.1) Chronic subinvolution of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\" + }, + { + "displayName": "(621.2) Hypertrophy of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\(621.2) Hypertrophy of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\" + }, + { + "displayName": "(621.4) Hematometra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\(621.4) Hematometra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\" + }, + { + "displayName": "(621.5) Intrauterine synechiae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\(621.5) Intrauterine synechiae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\" + }, + { + "displayName": "(621.6) Malposition of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\(621.6) Malposition of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\" + }, + { + "displayName": "(621.7) Chronic inversion of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\(621.7) Chronic inversion of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\" + }, + { + "displayName": "(621.8) Other specified disorders of uterus, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\(621.8) Other specified disorders of uterus, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\" + }, + { + "displayName": "(621.9) Unspecified disorder of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\(621.9) Unspecified disorder of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\" + }, + { + "displayName": "Endometrial hyperplasia (621.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\" + }, + { + "displayName": "(621.30) Endometrial hyperplasia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\(621.30) Endometrial hyperplasia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\" + }, + { + "displayName": "(621.31) Simple endometrial hyperplasia without atypia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\(621.31) Simple endometrial hyperplasia without atypia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\" + }, + { + "displayName": "(621.32) Complex endometrial hyperplasia without atypia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\(621.32) Complex endometrial hyperplasia without atypia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\" + }, + { + "displayName": "(621.33) Endometrial hyperplasia with atypia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\(621.33) Endometrial hyperplasia with atypia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\" + }, + { + "displayName": "(621.34) Benign endometrial hyperplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\(621.34) Benign endometrial hyperplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\" + }, + { + "displayName": "(621.35) Endometrial intraepithelial neoplasia [EIN]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\(621.35) Endometrial intraepithelial neoplasia [EIN]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Disorders of uterus, not elsewhere classified (621)\\Endometrial hyperplasia (621.3)\\" + }, + { + "displayName": "Endometriosis (617)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(617.0) Endometriosis of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\(617.0) Endometriosis of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\" + }, + { + "displayName": "(617.1) Endometriosis of ovary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\(617.1) Endometriosis of ovary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Endometriosis (617)\\\\(617.1) Endometriosis of ovary\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\" + }, + { + "displayName": "(617.2) Endometriosis of fallopian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\(617.2) Endometriosis of fallopian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Endometriosis (617)\\\\(617.2) Endometriosis of fallopian tube\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\" + }, + { + "displayName": "(617.3) Endometriosis of pelvic peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\(617.3) Endometriosis of pelvic peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Endometriosis (617)\\\\(617.3) Endometriosis of pelvic peritoneum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\" + }, + { + "displayName": "(617.4) Endometriosis of rectovaginal septum and vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\(617.4) Endometriosis of rectovaginal septum and vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\" + }, + { + "displayName": "(617.5) Endometriosis of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\(617.5) Endometriosis of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Endometriosis (617)\\\\(617.5) Endometriosis of intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\" + }, + { + "displayName": "(617.6) Endometriosis in scar of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\(617.6) Endometriosis in scar of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Endometriosis (617)\\\\(617.6) Endometriosis in scar of skin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\" + }, + { + "displayName": "(617.8) Endometriosis of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\(617.8) Endometriosis of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\" + }, + { + "displayName": "(617.9) Endometriosis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\(617.9) Endometriosis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Endometriosis (617)\\\\(617.9) Endometriosis, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Endometriosis (617)\\" + }, + { + "displayName": "Fistula involving female genital tract (619)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Fistula involving female genital tract (619)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Fistula involving female genital tract (619)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(619.0) Urinary-genital tract fistula, female", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Fistula involving female genital tract (619)\\(619.0) Urinary-genital tract fistula, female\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Fistula involving female genital tract (619)\\\\(619.0) Urinary-genital tract fistula, female\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Fistula involving female genital tract (619)\\" + }, + { + "displayName": "(619.1) Digestive-genital tract fistula, female", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Fistula involving female genital tract (619)\\(619.1) Digestive-genital tract fistula, female\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Fistula involving female genital tract (619)\\\\(619.1) Digestive-genital tract fistula, female\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Fistula involving female genital tract (619)\\" + }, + { + "displayName": "(619.2) Genital tract-skin fistula, female", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Fistula involving female genital tract (619)\\(619.2) Genital tract-skin fistula, female\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Fistula involving female genital tract (619)\\\\(619.2) Genital tract-skin fistula, female\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Fistula involving female genital tract (619)\\" + }, + { + "displayName": "(619.8) Other specified fistulas involving female genital tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Fistula involving female genital tract (619)\\(619.8) Other specified fistulas involving female genital tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Fistula involving female genital tract (619)\\\\(619.8) Other specified fistulas involving female genital tract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Fistula involving female genital tract (619)\\" + }, + { + "displayName": "(619.9) Unspecified fistula involving female genital tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Fistula involving female genital tract (619)\\(619.9) Unspecified fistula involving female genital tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Fistula involving female genital tract (619)\\\\(619.9) Unspecified fistula involving female genital tract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Fistula involving female genital tract (619)\\" + }, + { + "displayName": "Genital prolapse (618)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(618.1) Uterine prolapse without mention of vaginal wall prolapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\(618.1) Uterine prolapse without mention of vaginal wall prolapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\" + }, + { + "displayName": "(618.2) Uterovaginal prolapse, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\(618.2) Uterovaginal prolapse, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\" + }, + { + "displayName": "(618.3) Uterovaginal prolapse, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\(618.3) Uterovaginal prolapse, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\" + }, + { + "displayName": "(618.4) Uterovaginal prolapse, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\(618.4) Uterovaginal prolapse, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\" + }, + { + "displayName": "(618.5) Prolapse of vaginal vault after hysterectomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\(618.5) Prolapse of vaginal vault after hysterectomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\" + }, + { + "displayName": "(618.6) Vaginal enterocele, congenital or acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\(618.6) Vaginal enterocele, congenital or acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\" + }, + { + "displayName": "(618.7) Old laceration of muscles of pelvic floor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\(618.7) Old laceration of muscles of pelvic floor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\" + }, + { + "displayName": "(618.9) Unspecified genital prolapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\(618.9) Unspecified genital prolapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Genital prolapse (618)\\\\(618.9) Unspecified genital prolapse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\" + }, + { + "displayName": "Other specified genital prolapse (618.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Other specified genital prolapse (618.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Genital prolapse (618)\\\\Other specified genital prolapse (618.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\" + }, + { + "displayName": "(618.81) Incompetence or weakening of pubocervical tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Other specified genital prolapse (618.8)\\(618.81) Incompetence or weakening of pubocervical tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Genital prolapse (618)\\\\Other specified genital prolapse (618.8)\\\\(618.81) Incompetence or weakening of pubocervical tissue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Other specified genital prolapse (618.8)\\" + }, + { + "displayName": "(618.82) Incompetence or weakening of rectovaginal tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Other specified genital prolapse (618.8)\\(618.82) Incompetence or weakening of rectovaginal tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Other specified genital prolapse (618.8)\\" + }, + { + "displayName": "(618.83) Pelvic muscle wasting", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Other specified genital prolapse (618.8)\\(618.83) Pelvic muscle wasting\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Other specified genital prolapse (618.8)\\" + }, + { + "displayName": "(618.84) Cervical stump prolapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Other specified genital prolapse (618.8)\\(618.84) Cervical stump prolapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Other specified genital prolapse (618.8)\\" + }, + { + "displayName": "(618.89) Other specified genital prolapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Other specified genital prolapse (618.8)\\(618.89) Other specified genital prolapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Other specified genital prolapse (618.8)\\" + }, + { + "displayName": "Prolapse of vaginal walls without mention of uterine prolapse (618.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\" + }, + { + "displayName": "(618.00) Unspecified prolapse of vaginal walls", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\(618.00) Unspecified prolapse of vaginal walls\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\" + }, + { + "displayName": "(618.01) Cystocele, midline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\(618.01) Cystocele, midline\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\" + }, + { + "displayName": "(618.02) Cystocele, lateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\(618.02) Cystocele, lateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\" + }, + { + "displayName": "(618.03) Urethrocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\(618.03) Urethrocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\" + }, + { + "displayName": "(618.04) Rectocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\(618.04) Rectocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Genital prolapse (618)\\\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\\\(618.04) Rectocele\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\" + }, + { + "displayName": "(618.05) Perineocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\(618.05) Perineocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Genital prolapse (618)\\\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\\\(618.05) Perineocele\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\" + }, + { + "displayName": "(618.09) Other prolapse of vaginal walls without mention of uterine prolapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\(618.09) Other prolapse of vaginal walls without mention of uterine prolapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Genital prolapse (618)\\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\\" + }, + { + "displayName": "Infertility, female (628)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Infertility, female (628)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(628.0) Infertility, female, associated with anovulation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\(628.0) Infertility, female, associated with anovulation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Infertility, female (628)\\\\(628.0) Infertility, female, associated with anovulation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\" + }, + { + "displayName": "(628.1) Infertility, female, of pituitary-hypothalamic origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\(628.1) Infertility, female, of pituitary-hypothalamic origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\" + }, + { + "displayName": "(628.2) Infertility, female, of tubal origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\(628.2) Infertility, female, of tubal origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\" + }, + { + "displayName": "(628.3) Infertility, female, of uterine origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\(628.3) Infertility, female, of uterine origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\" + }, + { + "displayName": "(628.4) Infertility, female, of cervical or vaginal origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\(628.4) Infertility, female, of cervical or vaginal origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\" + }, + { + "displayName": "(628.8) Infertility, female, of other specified origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\(628.8) Infertility, female, of other specified origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Infertility, female (628)\\\\(628.8) Infertility, female, of other specified origin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\" + }, + { + "displayName": "(628.9) Infertility, female, of unspecified origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\(628.9) Infertility, female, of unspecified origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Infertility, female (628)\\\\(628.9) Infertility, female, of unspecified origin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Infertility, female (628)\\" + }, + { + "displayName": "Menopausal and postmenopausal disorders (627)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(627.0) Premenopausal menorrhagia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\(627.0) Premenopausal menorrhagia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Menopausal and postmenopausal disorders (627)\\\\(627.0) Premenopausal menorrhagia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\" + }, + { + "displayName": "(627.1) Postmenopausal bleeding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\(627.1) Postmenopausal bleeding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Menopausal and postmenopausal disorders (627)\\\\(627.1) Postmenopausal bleeding\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\" + }, + { + "displayName": "(627.2) Symptomatic menopausal or female climacteric states", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\(627.2) Symptomatic menopausal or female climacteric states\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\" + }, + { + "displayName": "(627.3) Postmenopausal atrophic vaginitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\(627.3) Postmenopausal atrophic vaginitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Menopausal and postmenopausal disorders (627)\\\\(627.3) Postmenopausal atrophic vaginitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\" + }, + { + "displayName": "(627.4) Symptomatic states associated with artificial menopause", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\(627.4) Symptomatic states associated with artificial menopause\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\" + }, + { + "displayName": "(627.8) Other specified menopausal and postmenopausal disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\(627.8) Other specified menopausal and postmenopausal disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Menopausal and postmenopausal disorders (627)\\\\(627.8) Other specified menopausal and postmenopausal disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\" + }, + { + "displayName": "(627.9) Unspecified menopausal and postmenopausal disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\(627.9) Unspecified menopausal and postmenopausal disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Menopausal and postmenopausal disorders (627)\\\\(627.9) Unspecified menopausal and postmenopausal disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Menopausal and postmenopausal disorders (627)\\" + }, + { + "displayName": "Noninflammatory disorders of cervix (622)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(622.0) Erosion and ectropion of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\(622.0) Erosion and ectropion of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of cervix (622)\\\\(622.0) Erosion and ectropion of cervix\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\" + }, + { + "displayName": "(622.2) Leukoplakia of cervix (uteri)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\(622.2) Leukoplakia of cervix (uteri)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\" + }, + { + "displayName": "(622.3) Old laceration of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\(622.3) Old laceration of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of cervix (622)\\\\(622.3) Old laceration of cervix\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\" + }, + { + "displayName": "(622.4) Stricture and stenosis of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\(622.4) Stricture and stenosis of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of cervix (622)\\\\(622.4) Stricture and stenosis of cervix\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\" + }, + { + "displayName": "(622.5) Incompetence of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\(622.5) Incompetence of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\" + }, + { + "displayName": "(622.6) Hypertrophic elongation of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\(622.6) Hypertrophic elongation of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\" + }, + { + "displayName": "(622.7) Mucous polyp of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\(622.7) Mucous polyp of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\" + }, + { + "displayName": "(622.8) Other specified noninflammatory disorders of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\(622.8) Other specified noninflammatory disorders of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\" + }, + { + "displayName": "(622.9) Unspecified noninflammatory disorder of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\(622.9) Unspecified noninflammatory disorder of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\" + }, + { + "displayName": "Dysplasia of cervix (uteri) (622.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\Dysplasia of cervix (uteri) (622.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\" + }, + { + "displayName": "(622.10) Dysplasia of cervix, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\Dysplasia of cervix (uteri) (622.1)\\(622.10) Dysplasia of cervix, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\Dysplasia of cervix (uteri) (622.1)\\" + }, + { + "displayName": "(622.11) Mild dysplasia of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\Dysplasia of cervix (uteri) (622.1)\\(622.11) Mild dysplasia of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\Dysplasia of cervix (uteri) (622.1)\\" + }, + { + "displayName": "(622.12) Moderate dysplasia of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\Dysplasia of cervix (uteri) (622.1)\\(622.12) Moderate dysplasia of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of cervix (622)\\Dysplasia of cervix (uteri) (622.1)\\" + }, + { + "displayName": "Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(620.0) Follicular cyst of ovary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\(620.0) Follicular cyst of ovary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\" + }, + { + "displayName": "(620.1) Corpus luteum cyst or hematoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\(620.1) Corpus luteum cyst or hematoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\" + }, + { + "displayName": "(620.2) Other and unspecified ovarian cyst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\(620.2) Other and unspecified ovarian cyst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\" + }, + { + "displayName": "(620.3) Acquired atrophy of ovary and fallopian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\(620.3) Acquired atrophy of ovary and fallopian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\\\(620.3) Acquired atrophy of ovary and fallopian tube\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\" + }, + { + "displayName": "(620.4) Prolapse or hernia of ovary and fallopian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\(620.4) Prolapse or hernia of ovary and fallopian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\" + }, + { + "displayName": "(620.5) Torsion of ovary, ovarian pedicle, or fallopian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\(620.5) Torsion of ovary, ovarian pedicle, or fallopian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\\\(620.5) Torsion of ovary, ovarian pedicle, or fallopian tube\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\" + }, + { + "displayName": "(620.6) Broad ligament laceration syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\(620.6) Broad ligament laceration syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\\\(620.6) Broad ligament laceration syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\" + }, + { + "displayName": "(620.7) Hematoma of broad ligament", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\(620.7) Hematoma of broad ligament\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\\\(620.7) Hematoma of broad ligament\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\" + }, + { + "displayName": "(620.8) Other noninflammatory disorders of ovary, fallopian tube, and broad ligament", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\(620.8) Other noninflammatory disorders of ovary, fallopian tube, and broad ligament\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\" + }, + { + "displayName": "(620.9) Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\(620.9) Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\\\(620.9) Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\\" + }, + { + "displayName": "Noninflammatory disorders of vagina (623)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of vagina (623)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(623.0) Dysplasia of vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\(623.0) Dysplasia of vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\" + }, + { + "displayName": "(623.1) Leukoplakia of vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\(623.1) Leukoplakia of vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of vagina (623)\\\\(623.1) Leukoplakia of vagina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\" + }, + { + "displayName": "(623.2) Stricture or atresia of vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\(623.2) Stricture or atresia of vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of vagina (623)\\\\(623.2) Stricture or atresia of vagina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\" + }, + { + "displayName": "(623.3) Tight hymenal ring", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\(623.3) Tight hymenal ring\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\" + }, + { + "displayName": "(623.4) Old vaginal laceration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\(623.4) Old vaginal laceration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of vagina (623)\\\\(623.4) Old vaginal laceration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\" + }, + { + "displayName": "(623.5) Leukorrhea, not specified as infective", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\(623.5) Leukorrhea, not specified as infective\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\" + }, + { + "displayName": "(623.6) Vaginal hematoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\(623.6) Vaginal hematoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of vagina (623)\\\\(623.6) Vaginal hematoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\" + }, + { + "displayName": "(623.7) Polyp of vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\(623.7) Polyp of vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of vagina (623)\\\\(623.7) Polyp of vagina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\" + }, + { + "displayName": "(623.8) Other specified noninflammatory disorders of vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\(623.8) Other specified noninflammatory disorders of vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\" + }, + { + "displayName": "(623.9) Unspecified noninflammatory disorder of vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\(623.9) Unspecified noninflammatory disorder of vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Noninflammatory disorders of vagina (623)\\\\(623.9) Unspecified noninflammatory disorder of vagina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vagina (623)\\" + }, + { + "displayName": "Noninflammatory disorders of vulva and perineum (624)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(624.1) Atrophy of vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\(624.1) Atrophy of vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\" + }, + { + "displayName": "(624.2) Hypertrophy of clitoris", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\(624.2) Hypertrophy of clitoris\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\" + }, + { + "displayName": "(624.3) Hypertrophy of labia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\(624.3) Hypertrophy of labia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\" + }, + { + "displayName": "(624.4) Old laceration or scarring of vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\(624.4) Old laceration or scarring of vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\" + }, + { + "displayName": "(624.5) Hematoma of vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\(624.5) Hematoma of vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\" + }, + { + "displayName": "(624.6) Polyp of labia and vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\(624.6) Polyp of labia and vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\" + }, + { + "displayName": "(624.8) Other specified noninflammatory disorders of vulva and perineum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\(624.8) Other specified noninflammatory disorders of vulva and perineum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\" + }, + { + "displayName": "(624.9) Unspecified noninflammatory disorder of vulva and perineum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\(624.9) Unspecified noninflammatory disorder of vulva and perineum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\" + }, + { + "displayName": "Dystrophy of vulva (624.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\Dystrophy of vulva (624.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\" + }, + { + "displayName": "(624.01) Vulvar intraepithelial neoplasia I [VIN I]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\Dystrophy of vulva (624.0)\\(624.01) Vulvar intraepithelial neoplasia I [VIN I]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\Dystrophy of vulva (624.0)\\" + }, + { + "displayName": "(624.02) Vulvar intraepithelial neoplasia II [VIN II]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\Dystrophy of vulva (624.0)\\(624.02) Vulvar intraepithelial neoplasia II [VIN II]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\Dystrophy of vulva (624.0)\\" + }, + { + "displayName": "(624.09) Other dystrophy of vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\Dystrophy of vulva (624.0)\\(624.09) Other dystrophy of vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Noninflammatory disorders of vulva and perineum (624)\\Dystrophy of vulva (624.0)\\" + }, + { + "displayName": "Other disorders of female genital organs (629)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(629.0) Hematocele, female, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\(629.0) Hematocele, female, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\" + }, + { + "displayName": "(629.1) Hydrocele, canal of nuck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\(629.1) Hydrocele, canal of nuck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\" + }, + { + "displayName": "(629.9) Unspecified disorder of female genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\(629.9) Unspecified disorder of female genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Other disorders of female genital organs (629)\\\\(629.9) Unspecified disorder of female genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\" + }, + { + "displayName": "Complication of implanted vaginal mesh and other prosthetic materials (629.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\" + }, + { + "displayName": "(629.31) Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\\(629.31) Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Other disorders of female genital organs (629)\\\\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\\\\(629.31) Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\\" + }, + { + "displayName": "(629.32) Exposure of implanted vaginal mesh and other prosthetic materials into vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\\(629.32) Exposure of implanted vaginal mesh and other prosthetic materials into vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Other disorders of female genital organs (629)\\\\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\\\\(629.32) Exposure of implanted vaginal mesh and other prosthetic materials into vagina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\\" + }, + { + "displayName": "Female genital mutilation status (629.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Female genital mutilation status (629.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\" + }, + { + "displayName": "(629.20) Female genital mutilation status, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Female genital mutilation status (629.2)\\(629.20) Female genital mutilation status, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Other disorders of female genital organs (629)\\\\Female genital mutilation status (629.2)\\\\(629.20) Female genital mutilation status, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Female genital mutilation status (629.2)\\" + }, + { + "displayName": "(629.21) Female genital mutilation Type I status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Female genital mutilation status (629.2)\\(629.21) Female genital mutilation Type I status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Other disorders of female genital organs (629)\\\\Female genital mutilation status (629.2)\\\\(629.21) Female genital mutilation Type I status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Female genital mutilation status (629.2)\\" + }, + { + "displayName": "(629.22) Female genital mutilation Type II status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Female genital mutilation status (629.2)\\(629.22) Female genital mutilation Type II status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Female genital mutilation status (629.2)\\" + }, + { + "displayName": "(629.23) Female genital mutilation Type III status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Female genital mutilation status (629.2)\\(629.23) Female genital mutilation Type III status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Other disorders of female genital organs (629)\\\\Female genital mutilation status (629.2)\\\\(629.23) Female genital mutilation Type III status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Female genital mutilation status (629.2)\\" + }, + { + "displayName": "(629.29) Other female genital mutilation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Female genital mutilation status (629.2)\\(629.29) Other female genital mutilation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Female genital mutilation status (629.2)\\" + }, + { + "displayName": "Other specified disorders of female genital organs (629.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Other specified disorders of female genital organs (629.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\" + }, + { + "displayName": "(629.81) Recurrent pregnancy loss without current pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Other specified disorders of female genital organs (629.8)\\(629.81) Recurrent pregnancy loss without current pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Other specified disorders of female genital organs (629.8)\\" + }, + { + "displayName": "(629.89) Other specified disorders of female genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Other specified disorders of female genital organs (629.8)\\(629.89) Other specified disorders of female genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Other disorders of female genital organs (629)\\Other specified disorders of female genital organs (629.8)\\" + }, + { + "displayName": "Pain and other symptoms associated with female genital organs (625)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\" + }, + { + "displayName": "(625.0) Dyspareunia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\(625.0) Dyspareunia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\" + }, + { + "displayName": "(625.1) Vaginismus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\(625.1) Vaginismus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Pain and other symptoms associated with female genital organs (625)\\\\(625.1) Vaginismus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\" + }, + { + "displayName": "(625.2) Mittelschmerz", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\(625.2) Mittelschmerz\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Pain and other symptoms associated with female genital organs (625)\\\\(625.2) Mittelschmerz\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\" + }, + { + "displayName": "(625.3) Dysmenorrhea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\(625.3) Dysmenorrhea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\" + }, + { + "displayName": "(625.4) Premenstrual tension syndromes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\(625.4) Premenstrual tension syndromes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Pain and other symptoms associated with female genital organs (625)\\\\(625.4) Premenstrual tension syndromes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\" + }, + { + "displayName": "(625.5) Pelvic congestion syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\(625.5) Pelvic congestion syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Pain and other symptoms associated with female genital organs (625)\\\\(625.5) Pelvic congestion syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\" + }, + { + "displayName": "(625.6) Stress incontinence, female", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\(625.6) Stress incontinence, female\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Pain and other symptoms associated with female genital organs (625)\\\\(625.6) Stress incontinence, female\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\" + }, + { + "displayName": "(625.8) Other specified symptoms associated with female genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\(625.8) Other specified symptoms associated with female genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the genitourinary system (580-629.99)\\\\Other disorders of female genital tract (617-629.99)\\\\Pain and other symptoms associated with female genital organs (625)\\\\(625.8) Other specified symptoms associated with female genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\" + }, + { + "displayName": "(625.9) Unspecified symptom associated with female genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\(625.9) Unspecified symptom associated with female genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\" + }, + { + "displayName": "Vulvodynia (625.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\Vulvodynia (625.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\" + }, + { + "displayName": "(625.70) Vulvodynia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\Vulvodynia (625.7)\\(625.70) Vulvodynia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\Vulvodynia (625.7)\\" + }, + { + "displayName": "(625.71) Vulvar vestibulitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\Vulvodynia (625.7)\\(625.71) Vulvar vestibulitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\Vulvodynia (625.7)\\" + }, + { + "displayName": "(625.79) Other vulvodynia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\Vulvodynia (625.7)\\(625.79) Other vulvodynia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the genitourinary system (580-629.99)\\Other disorders of female genital tract (617-629.99)\\Pain and other symptoms associated with female genital organs (625)\\Vulvodynia (625.7)\\" + }, + { + "displayName": "Diseases of the musculoskeletal system and connective tissue (710-739.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Arthropathies and related disorders (710-719.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\" + }, + { + "displayName": "Arthropathy associated with infections (711)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\" + }, + { + "displayName": "Arthropathy associated with helminthiasis (711.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\" + }, + { + "displayName": "(711.70) Arthropathy associated with helminthiasis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\(711.70) Arthropathy associated with helminthiasis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\" + }, + { + "displayName": "(711.71) Arthropathy associated with helminthiasis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\(711.71) Arthropathy associated with helminthiasis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with helminthiasis (711.7)\\\\(711.71) Arthropathy associated with helminthiasis, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\" + }, + { + "displayName": "(711.72) Arthropathy associated with helminthiasis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\(711.72) Arthropathy associated with helminthiasis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with helminthiasis (711.7)\\\\(711.72) Arthropathy associated with helminthiasis, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\" + }, + { + "displayName": "(711.73) Arthropathy associated with helminthiasis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\(711.73) Arthropathy associated with helminthiasis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\" + }, + { + "displayName": "(711.74) Arthropathy associated with helminthiasis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\(711.74) Arthropathy associated with helminthiasis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with helminthiasis (711.7)\\\\(711.74) Arthropathy associated with helminthiasis, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\" + }, + { + "displayName": "(711.75) Arthropathy associated with helminthiasis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\(711.75) Arthropathy associated with helminthiasis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with helminthiasis (711.7)\\\\(711.75) Arthropathy associated with helminthiasis, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\" + }, + { + "displayName": "(711.76) Arthropathy associated with helminthiasis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\(711.76) Arthropathy associated with helminthiasis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\" + }, + { + "displayName": "(711.77) Arthropathy associated with helminthiasis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\(711.77) Arthropathy associated with helminthiasis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with helminthiasis (711.7)\\\\(711.77) Arthropathy associated with helminthiasis, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\" + }, + { + "displayName": "(711.78) Arthropathy associated with helminthiasis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\(711.78) Arthropathy associated with helminthiasis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with helminthiasis (711.7)\\\\(711.78) Arthropathy associated with helminthiasis, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\" + }, + { + "displayName": "(711.79) Arthropathy associated with helminthiasis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\(711.79) Arthropathy associated with helminthiasis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with helminthiasis (711.7)\\\\(711.79) Arthropathy associated with helminthiasis, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with helminthiasis (711.7)\\" + }, + { + "displayName": "Arthropathy associated with mycoses (711.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\" + }, + { + "displayName": "(711.60) Arthropathy associated with mycoses, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\(711.60) Arthropathy associated with mycoses, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with mycoses (711.6)\\\\(711.60) Arthropathy associated with mycoses, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\" + }, + { + "displayName": "(711.61) Arthropathy associated with mycoses, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\(711.61) Arthropathy associated with mycoses, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with mycoses (711.6)\\\\(711.61) Arthropathy associated with mycoses, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\" + }, + { + "displayName": "(711.62) Arthropathy associated with mycoses, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\(711.62) Arthropathy associated with mycoses, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with mycoses (711.6)\\\\(711.62) Arthropathy associated with mycoses, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\" + }, + { + "displayName": "(711.63) Arthropathy associated with mycoses, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\(711.63) Arthropathy associated with mycoses, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\" + }, + { + "displayName": "(711.64) Arthropathy associated with mycoses, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\(711.64) Arthropathy associated with mycoses, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with mycoses (711.6)\\\\(711.64) Arthropathy associated with mycoses, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\" + }, + { + "displayName": "(711.65) Arthropathy associated with mycoses, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\(711.65) Arthropathy associated with mycoses, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with mycoses (711.6)\\\\(711.65) Arthropathy associated with mycoses, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\" + }, + { + "displayName": "(711.66) Arthropathy associated with mycoses, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\(711.66) Arthropathy associated with mycoses, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with mycoses (711.6)\\\\(711.66) Arthropathy associated with mycoses, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\" + }, + { + "displayName": "(711.67) Arthropathy associated with mycoses, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\(711.67) Arthropathy associated with mycoses, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\" + }, + { + "displayName": "(711.68) Arthropathy associated with mycoses, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\(711.68) Arthropathy associated with mycoses, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with mycoses (711.6)\\\\(711.68) Arthropathy associated with mycoses, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\" + }, + { + "displayName": "(711.69) Arthropathy associated with mycoses, involving multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\(711.69) Arthropathy associated with mycoses, involving multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with mycoses (711.6)\\\\(711.69) Arthropathy associated with mycoses, involving multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with mycoses (711.6)\\" + }, + { + "displayName": "Arthropathy associated with other bacterial diseases (711.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other bacterial diseases (711.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\" + }, + { + "displayName": "(711.40) Arthropathy associated with other bacterial diseases, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\(711.40) Arthropathy associated with other bacterial diseases, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other bacterial diseases (711.4)\\\\(711.40) Arthropathy associated with other bacterial diseases, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\" + }, + { + "displayName": "(711.41) Arthropathy associated with other bacterial diseases, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\(711.41) Arthropathy associated with other bacterial diseases, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other bacterial diseases (711.4)\\\\(711.41) Arthropathy associated with other bacterial diseases, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\" + }, + { + "displayName": "(711.42) Arthropathy associated with other bacterial diseases, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\(711.42) Arthropathy associated with other bacterial diseases, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other bacterial diseases (711.4)\\\\(711.42) Arthropathy associated with other bacterial diseases, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\" + }, + { + "displayName": "(711.43) Arthropathy associated with other bacterial diseases, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\(711.43) Arthropathy associated with other bacterial diseases, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other bacterial diseases (711.4)\\\\(711.43) Arthropathy associated with other bacterial diseases, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\" + }, + { + "displayName": "(711.44) Arthropathy associated with other bacterial diseases, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\(711.44) Arthropathy associated with other bacterial diseases, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\" + }, + { + "displayName": "(711.45) Arthropathy associated with other bacterial diseases, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\(711.45) Arthropathy associated with other bacterial diseases, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\" + }, + { + "displayName": "(711.46) Arthropathy associated with other bacterial diseases, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\(711.46) Arthropathy associated with other bacterial diseases, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\" + }, + { + "displayName": "(711.47) Arthropathy associated with other bacterial diseases, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\(711.47) Arthropathy associated with other bacterial diseases, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\" + }, + { + "displayName": "(711.48) Arthropathy associated with other bacterial diseases, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\(711.48) Arthropathy associated with other bacterial diseases, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\" + }, + { + "displayName": "(711.49) Arthropathy associated with other bacterial diseases, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\(711.49) Arthropathy associated with other bacterial diseases, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other bacterial diseases (711.4)\\" + }, + { + "displayName": "Arthropathy associated with other infectious and parasitic diseases (711.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\" + }, + { + "displayName": "(711.80) Arthropathy associated with other infectious and parasitic diseases, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\(711.80) Arthropathy associated with other infectious and parasitic diseases, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\" + }, + { + "displayName": "(711.81) Arthropathy associated with other infectious and parasitic diseases, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\(711.81) Arthropathy associated with other infectious and parasitic diseases, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\" + }, + { + "displayName": "(711.82) Arthropathy associated with other infectious and parasitic diseases, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\(711.82) Arthropathy associated with other infectious and parasitic diseases, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\" + }, + { + "displayName": "(711.83) Arthropathy associated with other infectious and parasitic diseases, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\(711.83) Arthropathy associated with other infectious and parasitic diseases, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\" + }, + { + "displayName": "(711.84) Arthropathy associated with other infectious and parasitic diseases, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\(711.84) Arthropathy associated with other infectious and parasitic diseases, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\" + }, + { + "displayName": "(711.85) Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\(711.85) Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\" + }, + { + "displayName": "(711.86) Arthropathy associated with other infectious and parasitic diseases, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\(711.86) Arthropathy associated with other infectious and parasitic diseases, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\" + }, + { + "displayName": "(711.87) Arthropathy associated with other infectious and parasitic diseases, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\(711.87) Arthropathy associated with other infectious and parasitic diseases, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\" + }, + { + "displayName": "(711.88) Arthropathy associated with other infectious and parasitic diseases, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\(711.88) Arthropathy associated with other infectious and parasitic diseases, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\" + }, + { + "displayName": "(711.89) Arthropathy associated with other infectious and parasitic diseases, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\(711.89) Arthropathy associated with other infectious and parasitic diseases, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other infectious and parasitic diseases (711.8)\\" + }, + { + "displayName": "Arthropathy associated with other viral diseases (711.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\" + }, + { + "displayName": "(711.50) Arthropathy associated with other viral diseases, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\(711.50) Arthropathy associated with other viral diseases, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other viral diseases (711.5)\\\\(711.50) Arthropathy associated with other viral diseases, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\" + }, + { + "displayName": "(711.51) Arthropathy associated with other viral diseases, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\(711.51) Arthropathy associated with other viral diseases, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other viral diseases (711.5)\\\\(711.51) Arthropathy associated with other viral diseases, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\" + }, + { + "displayName": "(711.52) Arthropathy associated with other viral diseases, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\(711.52) Arthropathy associated with other viral diseases, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other viral diseases (711.5)\\\\(711.52) Arthropathy associated with other viral diseases, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\" + }, + { + "displayName": "(711.53) Arthropathy associated with other viral diseases, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\(711.53) Arthropathy associated with other viral diseases, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\" + }, + { + "displayName": "(711.54) Arthropathy associated with other viral diseases, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\(711.54) Arthropathy associated with other viral diseases, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other viral diseases (711.5)\\\\(711.54) Arthropathy associated with other viral diseases, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\" + }, + { + "displayName": "(711.55) Arthropathy associated with other viral diseases, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\(711.55) Arthropathy associated with other viral diseases, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\" + }, + { + "displayName": "(711.56) Arthropathy associated with other viral diseases, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\(711.56) Arthropathy associated with other viral diseases, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other viral diseases (711.5)\\\\(711.56) Arthropathy associated with other viral diseases, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\" + }, + { + "displayName": "(711.57) Arthropathy associated with other viral diseases, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\(711.57) Arthropathy associated with other viral diseases, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other viral diseases (711.5)\\\\(711.57) Arthropathy associated with other viral diseases, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\" + }, + { + "displayName": "(711.58) Arthropathy associated with other viral diseases, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\(711.58) Arthropathy associated with other viral diseases, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy associated with other viral diseases (711.5)\\\\(711.58) Arthropathy associated with other viral diseases, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\" + }, + { + "displayName": "(711.59) Arthropathy associated with other viral diseases, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\(711.59) Arthropathy associated with other viral diseases, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with other viral diseases (711.5)\\" + }, + { + "displayName": "Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\" + }, + { + "displayName": "(711.10) Arthropathy associated with Reiter's disease and nonspecific urethritis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\(711.10) Arthropathy associated with Reiter's disease and nonspecific urethritis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\" + }, + { + "displayName": "(711.11) Arthropathy associated with Reiter's disease and nonspecific urethritis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\(711.11) Arthropathy associated with Reiter's disease and nonspecific urethritis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\" + }, + { + "displayName": "(711.12) Arthropathy associated with Reiter's disease and nonspecific urethritis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\(711.12) Arthropathy associated with Reiter's disease and nonspecific urethritis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\" + }, + { + "displayName": "(711.13) Arthropathy associated with Reiter's disease and nonspecific urethritis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\(711.13) Arthropathy associated with Reiter's disease and nonspecific urethritis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\" + }, + { + "displayName": "(711.14) Arthropathy associated with Reiter's disease and nonspecific urethritis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\(711.14) Arthropathy associated with Reiter's disease and nonspecific urethritis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\" + }, + { + "displayName": "(711.15) Arthropathy associated with Reiter's disease and nonspecific urethritis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\(711.15) Arthropathy associated with Reiter's disease and nonspecific urethritis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\" + }, + { + "displayName": "(711.16) Arthropathy associated with Reiter's disease and nonspecific urethritis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\(711.16) Arthropathy associated with Reiter's disease and nonspecific urethritis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\" + }, + { + "displayName": "(711.17) Arthropathy associated with Reiter's disease and nonspecific urethritis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\(711.17) Arthropathy associated with Reiter's disease and nonspecific urethritis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\" + }, + { + "displayName": "(711.18) Arthropathy associated with Reiter's disease and nonspecific urethritis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\(711.18) Arthropathy associated with Reiter's disease and nonspecific urethritis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\" + }, + { + "displayName": "(711.19) Arthropathy associated with Reiter's disease and nonspecific urethritis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\(711.19) Arthropathy associated with Reiter's disease and nonspecific urethritis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy associated with Reiter's disease and nonspecific urethritis (711.1)\\" + }, + { + "displayName": "Arthropathy in Behcet's syndrome (711.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy in Behcet's syndrome (711.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\" + }, + { + "displayName": "(711.20) Arthropathy in Behcet's syndrome, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\(711.20) Arthropathy in Behcet's syndrome, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Arthropathy in Behcet's syndrome (711.2)\\\\(711.20) Arthropathy in Behcet's syndrome, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\" + }, + { + "displayName": "(711.21) Arthropathy in Behcet's syndrome, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\(711.21) Arthropathy in Behcet's syndrome, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\" + }, + { + "displayName": "(711.22) Arthropathy in Behcet's syndrome, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\(711.22) Arthropathy in Behcet's syndrome, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\" + }, + { + "displayName": "(711.23) Arthropathy in Behcet's syndrome, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\(711.23) Arthropathy in Behcet's syndrome, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\" + }, + { + "displayName": "(711.24) Arthropathy in Behcet's syndrome, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\(711.24) Arthropathy in Behcet's syndrome, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\" + }, + { + "displayName": "(711.25) Arthropathy in Behcet's syndrome, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\(711.25) Arthropathy in Behcet's syndrome, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\" + }, + { + "displayName": "(711.26) Arthropathy in Behcet's syndrome, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\(711.26) Arthropathy in Behcet's syndrome, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\" + }, + { + "displayName": "(711.27) Arthropathy in Behcet's syndrome, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\(711.27) Arthropathy in Behcet's syndrome, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\" + }, + { + "displayName": "(711.28) Arthropathy in Behcet's syndrome, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\(711.28) Arthropathy in Behcet's syndrome, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\" + }, + { + "displayName": "(711.29) Arthropathy in Behcet's syndrome, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\(711.29) Arthropathy in Behcet's syndrome, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Arthropathy in Behcet's syndrome (711.2)\\" + }, + { + "displayName": "Postdysenteric arthropathy (711.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\" + }, + { + "displayName": "(711.30) Postdysenteric arthropathy, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\(711.30) Postdysenteric arthropathy, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\" + }, + { + "displayName": "(711.31) Postdysenteric arthropathy, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\(711.31) Postdysenteric arthropathy, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\" + }, + { + "displayName": "(711.32) Postdysenteric arthropathy, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\(711.32) Postdysenteric arthropathy, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\" + }, + { + "displayName": "(711.33) Postdysenteric arthropathy, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\(711.33) Postdysenteric arthropathy, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\" + }, + { + "displayName": "(711.34) Postdysenteric arthropathy, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\(711.34) Postdysenteric arthropathy, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\" + }, + { + "displayName": "(711.35) Postdysenteric arthropathy, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\(711.35) Postdysenteric arthropathy, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Postdysenteric arthropathy (711.3)\\\\(711.35) Postdysenteric arthropathy, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\" + }, + { + "displayName": "(711.36) Postdysenteric arthropathy, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\(711.36) Postdysenteric arthropathy, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Postdysenteric arthropathy (711.3)\\\\(711.36) Postdysenteric arthropathy, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\" + }, + { + "displayName": "(711.37) Postdysenteric arthropathy, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\(711.37) Postdysenteric arthropathy, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Postdysenteric arthropathy (711.3)\\\\(711.37) Postdysenteric arthropathy, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\" + }, + { + "displayName": "(711.38) Postdysenteric arthropathy, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\(711.38) Postdysenteric arthropathy, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Postdysenteric arthropathy (711.3)\\\\(711.38) Postdysenteric arthropathy, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\" + }, + { + "displayName": "(711.39) Postdysenteric arthropathy, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\(711.39) Postdysenteric arthropathy, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Postdysenteric arthropathy (711.3)\\\\(711.39) Postdysenteric arthropathy, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Postdysenteric arthropathy (711.3)\\" + }, + { + "displayName": "Pyogenic arthritis (711.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Pyogenic arthritis (711.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\" + }, + { + "displayName": "(711.00) Pyogenic arthritis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\(711.00) Pyogenic arthritis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Pyogenic arthritis (711.0)\\\\(711.00) Pyogenic arthritis, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\" + }, + { + "displayName": "(711.01) Pyogenic arthritis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\(711.01) Pyogenic arthritis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Pyogenic arthritis (711.0)\\\\(711.01) Pyogenic arthritis, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\" + }, + { + "displayName": "(711.02) Pyogenic arthritis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\(711.02) Pyogenic arthritis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Pyogenic arthritis (711.0)\\\\(711.02) Pyogenic arthritis, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\" + }, + { + "displayName": "(711.03) Pyogenic arthritis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\(711.03) Pyogenic arthritis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\" + }, + { + "displayName": "(711.04) Pyogenic arthritis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\(711.04) Pyogenic arthritis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Pyogenic arthritis (711.0)\\\\(711.04) Pyogenic arthritis, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\" + }, + { + "displayName": "(711.05) Pyogenic arthritis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\(711.05) Pyogenic arthritis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Pyogenic arthritis (711.0)\\\\(711.05) Pyogenic arthritis, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\" + }, + { + "displayName": "(711.06) Pyogenic arthritis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\(711.06) Pyogenic arthritis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\" + }, + { + "displayName": "(711.07) Pyogenic arthritis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\(711.07) Pyogenic arthritis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Pyogenic arthritis (711.0)\\\\(711.07) Pyogenic arthritis, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\" + }, + { + "displayName": "(711.08) Pyogenic arthritis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\(711.08) Pyogenic arthritis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Pyogenic arthritis (711.0)\\\\(711.08) Pyogenic arthritis, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\" + }, + { + "displayName": "(711.09) Pyogenic arthritis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\(711.09) Pyogenic arthritis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Arthropathy associated with infections (711)\\\\Pyogenic arthritis (711.0)\\\\(711.09) Pyogenic arthritis, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Pyogenic arthritis (711.0)\\" + }, + { + "displayName": "Unspecified infective arthritis (711.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\" + }, + { + "displayName": "(711.90) Unspecified infective arthritis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\(711.90) Unspecified infective arthritis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\" + }, + { + "displayName": "(711.91) Unspecified infective arthritis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\(711.91) Unspecified infective arthritis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\" + }, + { + "displayName": "(711.92) Unspecified infective arthritis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\(711.92) Unspecified infective arthritis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\" + }, + { + "displayName": "(711.93) Unspecified infective arthritis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\(711.93) Unspecified infective arthritis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\" + }, + { + "displayName": "(711.94) Unspecified infective arthritis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\(711.94) Unspecified infective arthritis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\" + }, + { + "displayName": "(711.95) Unspecified infective arthritis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\(711.95) Unspecified infective arthritis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\" + }, + { + "displayName": "(711.96) Unspecified infective arthritis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\(711.96) Unspecified infective arthritis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\" + }, + { + "displayName": "(711.97) Unspecified infective arthritis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\(711.97) Unspecified infective arthritis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\" + }, + { + "displayName": "(711.98) Unspecified infective arthritis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\(711.98) Unspecified infective arthritis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\" + }, + { + "displayName": "(711.99) Unspecified infective arthritis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\(711.99) Unspecified infective arthritis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with infections (711)\\Unspecified infective arthritis (711.9)\\" + }, + { + "displayName": "Arthropathy associated with other disorders classified elsewhere (713)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\" + }, + { + "displayName": "(713.0) Arthropathy associated with other endocrine and metabolic disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\(713.0) Arthropathy associated with other endocrine and metabolic disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\" + }, + { + "displayName": "(713.1) Arthropathy associated with gastrointestinal conditions other than infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\(713.1) Arthropathy associated with gastrointestinal conditions other than infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\" + }, + { + "displayName": "(713.2) Arthropathy associated with hematological disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\(713.2) Arthropathy associated with hematological disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\" + }, + { + "displayName": "(713.3) Arthropathy associated with dermatological disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\(713.3) Arthropathy associated with dermatological disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\" + }, + { + "displayName": "(713.4) Arthropathy associated with respiratory disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\(713.4) Arthropathy associated with respiratory disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\" + }, + { + "displayName": "(713.5) Arthropathy associated with neurological disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\(713.5) Arthropathy associated with neurological disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\" + }, + { + "displayName": "(713.6) Arthropathy associated with hypersensitivity reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\(713.6) Arthropathy associated with hypersensitivity reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\" + }, + { + "displayName": "(713.7) Other general diseases with articular involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\(713.7) Other general diseases with articular involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\" + }, + { + "displayName": "(713.8) Arthropathy associated with other conditions classifiable elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\(713.8) Arthropathy associated with other conditions classifiable elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Arthropathy associated with other disorders classified elsewhere (713)\\" + }, + { + "displayName": "Crystal arthropathies (712)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\" + }, + { + "displayName": "Chondrocalcinosis due to dicalcium phosphate crystals (712.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\" + }, + { + "displayName": "(712.10) Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\(712.10) Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\\\(712.10) Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\" + }, + { + "displayName": "(712.11) Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\(712.11) Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\" + }, + { + "displayName": "(712.12) Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\(712.12) Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\" + }, + { + "displayName": "(712.13) Chondrocalcinosis, due to dicalcium phosphate crystals, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\(712.13) Chondrocalcinosis, due to dicalcium phosphate crystals, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\" + }, + { + "displayName": "(712.14) Chondrocalcinosis, due to dicalcium phosphate crystals, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\(712.14) Chondrocalcinosis, due to dicalcium phosphate crystals, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\" + }, + { + "displayName": "(712.15) Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\(712.15) Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\" + }, + { + "displayName": "(712.16) Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\(712.16) Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\" + }, + { + "displayName": "(712.17) Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\(712.17) Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\" + }, + { + "displayName": "(712.18) Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\(712.18) Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\" + }, + { + "displayName": "(712.19) Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\(712.19) Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\\" + }, + { + "displayName": "Chondrocalcinosis due to pyrophosphate crystals (712.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\" + }, + { + "displayName": "(712.20) Chondrocalcinosis, due to pyrophosphate crystals, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\(712.20) Chondrocalcinosis, due to pyrophosphate crystals, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\\\(712.20) Chondrocalcinosis, due to pyrophosphate crystals, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\" + }, + { + "displayName": "(712.21) Chondrocalcinosis, due to pyrophosphate crystals, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\(712.21) Chondrocalcinosis, due to pyrophosphate crystals, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\" + }, + { + "displayName": "(712.22) Chondrocalcinosis, due to pyrophosphate crystals, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\(712.22) Chondrocalcinosis, due to pyrophosphate crystals, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\\\(712.22) Chondrocalcinosis, due to pyrophosphate crystals, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\" + }, + { + "displayName": "(712.23) Chondrocalcinosis, due to pyrophosphate crystals, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\(712.23) Chondrocalcinosis, due to pyrophosphate crystals, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\\\(712.23) Chondrocalcinosis, due to pyrophosphate crystals, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\" + }, + { + "displayName": "(712.24) Chondrocalcinosis, due to pyrophosphate crystals, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\(712.24) Chondrocalcinosis, due to pyrophosphate crystals, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\" + }, + { + "displayName": "(712.25) Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\(712.25) Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\\\(712.25) Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\" + }, + { + "displayName": "(712.26) Chondrocalcinosis, due to pyrophosphate crystals, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\(712.26) Chondrocalcinosis, due to pyrophosphate crystals, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\\\(712.26) Chondrocalcinosis, due to pyrophosphate crystals, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\" + }, + { + "displayName": "(712.27) Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\(712.27) Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\\\(712.27) Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\" + }, + { + "displayName": "(712.28) Chondrocalcinosis, due to pyrophosphate crystals, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\(712.28) Chondrocalcinosis, due to pyrophosphate crystals, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\" + }, + { + "displayName": "(712.29) Chondrocalcinosis, due to pyrophosphate crystals, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\(712.29) Chondrocalcinosis, due to pyrophosphate crystals, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\\\(712.29) Chondrocalcinosis, due to pyrophosphate crystals, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis due to pyrophosphate crystals (712.2)\\" + }, + { + "displayName": "Chondrocalcinosis, cause unspecified (712.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis, cause unspecified (712.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\" + }, + { + "displayName": "(712.30) Chondrocalcinosis, unspecified, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\(712.30) Chondrocalcinosis, unspecified, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\" + }, + { + "displayName": "(712.31) Chondrocalcinosis, unspecified, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\(712.31) Chondrocalcinosis, unspecified, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis, cause unspecified (712.3)\\\\(712.31) Chondrocalcinosis, unspecified, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\" + }, + { + "displayName": "(712.32) Chondrocalcinosis, unspecified, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\(712.32) Chondrocalcinosis, unspecified, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\" + }, + { + "displayName": "(712.33) Chondrocalcinosis, unspecified, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\(712.33) Chondrocalcinosis, unspecified, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis, cause unspecified (712.3)\\\\(712.33) Chondrocalcinosis, unspecified, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\" + }, + { + "displayName": "(712.34) Chondrocalcinosis, unspecified, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\(712.34) Chondrocalcinosis, unspecified, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\" + }, + { + "displayName": "(712.35) Chondrocalcinosis, unspecified, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\(712.35) Chondrocalcinosis, unspecified, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis, cause unspecified (712.3)\\\\(712.35) Chondrocalcinosis, unspecified, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\" + }, + { + "displayName": "(712.36) Chondrocalcinosis, unspecified, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\(712.36) Chondrocalcinosis, unspecified, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis, cause unspecified (712.3)\\\\(712.36) Chondrocalcinosis, unspecified, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\" + }, + { + "displayName": "(712.37) Chondrocalcinosis, unspecified, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\(712.37) Chondrocalcinosis, unspecified, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis, cause unspecified (712.3)\\\\(712.37) Chondrocalcinosis, unspecified, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\" + }, + { + "displayName": "(712.38) Chondrocalcinosis, unspecified, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\(712.38) Chondrocalcinosis, unspecified, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\" + }, + { + "displayName": "(712.39) Chondrocalcinosis, unspecified, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\(712.39) Chondrocalcinosis, unspecified, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Chondrocalcinosis, cause unspecified (712.3)\\\\(712.39) Chondrocalcinosis, unspecified, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Chondrocalcinosis, cause unspecified (712.3)\\" + }, + { + "displayName": "Other specified crystal arthropathies (712.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Other specified crystal arthropathies (712.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\" + }, + { + "displayName": "(712.80) Other specified crystal arthropathies, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\(712.80) Other specified crystal arthropathies, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Other specified crystal arthropathies (712.8)\\\\(712.80) Other specified crystal arthropathies, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\" + }, + { + "displayName": "(712.81) Other specified crystal arthropathies, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\(712.81) Other specified crystal arthropathies, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Other specified crystal arthropathies (712.8)\\\\(712.81) Other specified crystal arthropathies, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\" + }, + { + "displayName": "(712.82) Other specified crystal arthropathies, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\(712.82) Other specified crystal arthropathies, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Other specified crystal arthropathies (712.8)\\\\(712.82) Other specified crystal arthropathies, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\" + }, + { + "displayName": "(712.83) Other specified crystal arthropathies, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\(712.83) Other specified crystal arthropathies, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Other specified crystal arthropathies (712.8)\\\\(712.83) Other specified crystal arthropathies, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\" + }, + { + "displayName": "(712.84) Other specified crystal arthropathies, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\(712.84) Other specified crystal arthropathies, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\" + }, + { + "displayName": "(712.85) Other specified crystal arthropathies, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\(712.85) Other specified crystal arthropathies, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Other specified crystal arthropathies (712.8)\\\\(712.85) Other specified crystal arthropathies, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\" + }, + { + "displayName": "(712.86) Other specified crystal arthropathies, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\(712.86) Other specified crystal arthropathies, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Other specified crystal arthropathies (712.8)\\\\(712.86) Other specified crystal arthropathies, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\" + }, + { + "displayName": "(712.87) Other specified crystal arthropathies, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\(712.87) Other specified crystal arthropathies, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Other specified crystal arthropathies (712.8)\\\\(712.87) Other specified crystal arthropathies, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\" + }, + { + "displayName": "(712.88) Other specified crystal arthropathies, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\(712.88) Other specified crystal arthropathies, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\" + }, + { + "displayName": "(712.89) Other specified crystal arthropathies, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\(712.89) Other specified crystal arthropathies, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Other specified crystal arthropathies (712.8)\\\\(712.89) Other specified crystal arthropathies, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Other specified crystal arthropathies (712.8)\\" + }, + { + "displayName": "Unspecified crystal arthropathy (712.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Unspecified crystal arthropathy (712.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\" + }, + { + "displayName": "(712.90) Unspecified crystal arthropathy, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\(712.90) Unspecified crystal arthropathy, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Unspecified crystal arthropathy (712.9)\\\\(712.90) Unspecified crystal arthropathy, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\" + }, + { + "displayName": "(712.91) Unspecified crystal arthropathy, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\(712.91) Unspecified crystal arthropathy, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\" + }, + { + "displayName": "(712.92) Unspecified crystal arthropathy, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\(712.92) Unspecified crystal arthropathy, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Unspecified crystal arthropathy (712.9)\\\\(712.92) Unspecified crystal arthropathy, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\" + }, + { + "displayName": "(712.93) Unspecified crystal arthropathy, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\(712.93) Unspecified crystal arthropathy, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Unspecified crystal arthropathy (712.9)\\\\(712.93) Unspecified crystal arthropathy, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\" + }, + { + "displayName": "(712.94) Unspecified crystal arthropathy, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\(712.94) Unspecified crystal arthropathy, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\" + }, + { + "displayName": "(712.95) Unspecified crystal arthropathy, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\(712.95) Unspecified crystal arthropathy, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Unspecified crystal arthropathy (712.9)\\\\(712.95) Unspecified crystal arthropathy, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\" + }, + { + "displayName": "(712.96) Unspecified crystal arthropathy, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\(712.96) Unspecified crystal arthropathy, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Unspecified crystal arthropathy (712.9)\\\\(712.96) Unspecified crystal arthropathy, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\" + }, + { + "displayName": "(712.97) Unspecified crystal arthropathy, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\(712.97) Unspecified crystal arthropathy, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Unspecified crystal arthropathy (712.9)\\\\(712.97) Unspecified crystal arthropathy, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\" + }, + { + "displayName": "(712.98) Unspecified crystal arthropathy, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\(712.98) Unspecified crystal arthropathy, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\" + }, + { + "displayName": "(712.99) Unspecified crystal arthropathy, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\(712.99) Unspecified crystal arthropathy, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Crystal arthropathies (712)\\\\Unspecified crystal arthropathy (712.9)\\\\(712.99) Unspecified crystal arthropathy, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Crystal arthropathies (712)\\Unspecified crystal arthropathy (712.9)\\" + }, + { + "displayName": "Diffuse diseases of connective tissue (710)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Diffuse diseases of connective tissue (710)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\" + }, + { + "displayName": "(710.0) Systemic lupus erythematosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\(710.0) Systemic lupus erythematosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Diffuse diseases of connective tissue (710)\\\\(710.0) Systemic lupus erythematosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\" + }, + { + "displayName": "(710.1) Systemic sclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\(710.1) Systemic sclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\" + }, + { + "displayName": "(710.2) Sicca syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\(710.2) Sicca syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Diffuse diseases of connective tissue (710)\\\\(710.2) Sicca syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\" + }, + { + "displayName": "(710.3) Dermatomyositis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\(710.3) Dermatomyositis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\" + }, + { + "displayName": "(710.4) Polymyositis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\(710.4) Polymyositis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\" + }, + { + "displayName": "(710.5) Eosinophilia myalgia syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\(710.5) Eosinophilia myalgia syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\" + }, + { + "displayName": "(710.8) Other specified diffuse diseases of connective tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\(710.8) Other specified diffuse diseases of connective tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\" + }, + { + "displayName": "(710.9) Unspecified diffuse connective tissue disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\(710.9) Unspecified diffuse connective tissue disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Diffuse diseases of connective tissue (710)\\" + }, + { + "displayName": "Internal derangement of knee (717)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\" + }, + { + "displayName": "(717.0) Old bucket handle tear of medial meniscus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\(717.0) Old bucket handle tear of medial meniscus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\" + }, + { + "displayName": "(717.1) Derangement of anterior horn of medial meniscus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\(717.1) Derangement of anterior horn of medial meniscus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\" + }, + { + "displayName": "(717.2) Derangement of posterior horn of medial meniscus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\(717.2) Derangement of posterior horn of medial meniscus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\" + }, + { + "displayName": "(717.3) Other and unspecified derangement of medial meniscus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\(717.3) Other and unspecified derangement of medial meniscus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\" + }, + { + "displayName": "(717.5) Derangement of meniscus, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\(717.5) Derangement of meniscus, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\" + }, + { + "displayName": "(717.6) Loose body in knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\(717.6) Loose body in knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\" + }, + { + "displayName": "(717.7) Chondromalacia of patella", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\(717.7) Chondromalacia of patella\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\" + }, + { + "displayName": "(717.9) Unspecified internal derangement of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\(717.9) Unspecified internal derangement of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Internal derangement of knee (717)\\\\(717.9) Unspecified internal derangement of knee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\" + }, + { + "displayName": "Derangement of lateral meniscus (717.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Derangement of lateral meniscus (717.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\" + }, + { + "displayName": "(717.40) Derangement of lateral meniscus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Derangement of lateral meniscus (717.4)\\(717.40) Derangement of lateral meniscus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Internal derangement of knee (717)\\\\Derangement of lateral meniscus (717.4)\\\\(717.40) Derangement of lateral meniscus, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Derangement of lateral meniscus (717.4)\\" + }, + { + "displayName": "(717.41) Bucket handle tear of lateral meniscus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Derangement of lateral meniscus (717.4)\\(717.41) Bucket handle tear of lateral meniscus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Internal derangement of knee (717)\\\\Derangement of lateral meniscus (717.4)\\\\(717.41) Bucket handle tear of lateral meniscus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Derangement of lateral meniscus (717.4)\\" + }, + { + "displayName": "(717.42) Derangement of anterior horn of lateral meniscus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Derangement of lateral meniscus (717.4)\\(717.42) Derangement of anterior horn of lateral meniscus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Derangement of lateral meniscus (717.4)\\" + }, + { + "displayName": "(717.43) Derangement of posterior horn of lateral meniscus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Derangement of lateral meniscus (717.4)\\(717.43) Derangement of posterior horn of lateral meniscus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Internal derangement of knee (717)\\\\Derangement of lateral meniscus (717.4)\\\\(717.43) Derangement of posterior horn of lateral meniscus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Derangement of lateral meniscus (717.4)\\" + }, + { + "displayName": "(717.49) Other derangement of lateral meniscus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Derangement of lateral meniscus (717.4)\\(717.49) Other derangement of lateral meniscus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Internal derangement of knee (717)\\\\Derangement of lateral meniscus (717.4)\\\\(717.49) Other derangement of lateral meniscus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Derangement of lateral meniscus (717.4)\\" + }, + { + "displayName": "Other internal derangement of knee (717.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\" + }, + { + "displayName": "(717.81) Old disruption of lateral collateral ligament", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\(717.81) Old disruption of lateral collateral ligament\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Internal derangement of knee (717)\\\\Other internal derangement of knee (717.8)\\\\(717.81) Old disruption of lateral collateral ligament\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\" + }, + { + "displayName": "(717.82) Old disruption of medial collateral ligament", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\(717.82) Old disruption of medial collateral ligament\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Internal derangement of knee (717)\\\\Other internal derangement of knee (717.8)\\\\(717.82) Old disruption of medial collateral ligament\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\" + }, + { + "displayName": "(717.83) Old disruption of anterior cruciate ligament", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\(717.83) Old disruption of anterior cruciate ligament\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Internal derangement of knee (717)\\\\Other internal derangement of knee (717.8)\\\\(717.83) Old disruption of anterior cruciate ligament\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\" + }, + { + "displayName": "(717.84) Old disruption of posterior cruciate ligament", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\(717.84) Old disruption of posterior cruciate ligament\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\" + }, + { + "displayName": "(717.85) Old disruption of other ligaments of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\(717.85) Old disruption of other ligaments of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Internal derangement of knee (717)\\\\Other internal derangement of knee (717.8)\\\\(717.85) Old disruption of other ligaments of knee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\" + }, + { + "displayName": "(717.89) Other internal derangement of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\(717.89) Other internal derangement of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Internal derangement of knee (717)\\Other internal derangement of knee (717.8)\\" + }, + { + "displayName": "Osteoarthrosis and allied disorders (715)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\" + }, + { + "displayName": "Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\" + }, + { + "displayName": "(715.80) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\\(715.80) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\\\\(715.80) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\\" + }, + { + "displayName": "(715.89) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\\(715.89) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\\" + }, + { + "displayName": "Osteoarthrosis, generalized (715.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, generalized (715.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, generalized (715.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\" + }, + { + "displayName": "(715.00) Osteoarthrosis, generalized, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, generalized (715.0)\\(715.00) Osteoarthrosis, generalized, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, generalized (715.0)\\\\(715.00) Osteoarthrosis, generalized, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, generalized (715.0)\\" + }, + { + "displayName": "(715.04) Osteoarthrosis, generalized, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, generalized (715.0)\\(715.04) Osteoarthrosis, generalized, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, generalized (715.0)\\" + }, + { + "displayName": "(715.09) Osteoarthrosis, generalized, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, generalized (715.0)\\(715.09) Osteoarthrosis, generalized, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, generalized (715.0)\\\\(715.09) Osteoarthrosis, generalized, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, generalized (715.0)\\" + }, + { + "displayName": "Osteoarthrosis, localized, not specified whether primary or secondary (715.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\" + }, + { + "displayName": "(715.30) Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\(715.30) Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\\\(715.30) Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\" + }, + { + "displayName": "(715.31) Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\(715.31) Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\" + }, + { + "displayName": "(715.32) Osteoarthrosis, localized, not specified whether primary or secondary, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\(715.32) Osteoarthrosis, localized, not specified whether primary or secondary, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\\\(715.32) Osteoarthrosis, localized, not specified whether primary or secondary, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\" + }, + { + "displayName": "(715.33) Osteoarthrosis, localized, not specified whether primary or secondary, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\(715.33) Osteoarthrosis, localized, not specified whether primary or secondary, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\\\(715.33) Osteoarthrosis, localized, not specified whether primary or secondary, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\" + }, + { + "displayName": "(715.34) Osteoarthrosis, localized, not specified whether primary or secondary, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\(715.34) Osteoarthrosis, localized, not specified whether primary or secondary, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\" + }, + { + "displayName": "(715.35) Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\(715.35) Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\\\(715.35) Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\" + }, + { + "displayName": "(715.36) Osteoarthrosis, localized, not specified whether primary or secondary, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\(715.36) Osteoarthrosis, localized, not specified whether primary or secondary, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\\\(715.36) Osteoarthrosis, localized, not specified whether primary or secondary, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\" + }, + { + "displayName": "(715.37) Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\(715.37) Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\\\(715.37) Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\" + }, + { + "displayName": "(715.38) Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\(715.38) Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\\" + }, + { + "displayName": "Osteoarthrosis, localized, primary (715.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\" + }, + { + "displayName": "(715.10) Osteoarthrosis, localized, primary, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\(715.10) Osteoarthrosis, localized, primary, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\" + }, + { + "displayName": "(715.11) Osteoarthrosis, localized, primary, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\(715.11) Osteoarthrosis, localized, primary, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\" + }, + { + "displayName": "(715.12) Osteoarthrosis, localized, primary, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\(715.12) Osteoarthrosis, localized, primary, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\" + }, + { + "displayName": "(715.13) Osteoarthrosis, localized, primary, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\(715.13) Osteoarthrosis, localized, primary, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\" + }, + { + "displayName": "(715.14) Osteoarthrosis, localized, primary, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\(715.14) Osteoarthrosis, localized, primary, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\" + }, + { + "displayName": "(715.15) Osteoarthrosis, localized, primary, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\(715.15) Osteoarthrosis, localized, primary, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\" + }, + { + "displayName": "(715.16) Osteoarthrosis, localized, primary, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\(715.16) Osteoarthrosis, localized, primary, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, primary (715.1)\\\\(715.16) Osteoarthrosis, localized, primary, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\" + }, + { + "displayName": "(715.17) Osteoarthrosis, localized, primary, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\(715.17) Osteoarthrosis, localized, primary, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, primary (715.1)\\\\(715.17) Osteoarthrosis, localized, primary, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\" + }, + { + "displayName": "(715.18) Osteoarthrosis, localized, primary, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\(715.18) Osteoarthrosis, localized, primary, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, primary (715.1)\\" + }, + { + "displayName": "Osteoarthrosis, localized, secondary (715.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, secondary (715.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\" + }, + { + "displayName": "(715.20) Osteoarthrosis, localized, secondary, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\(715.20) Osteoarthrosis, localized, secondary, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\" + }, + { + "displayName": "(715.21) Osteoarthrosis, localized, secondary, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\(715.21) Osteoarthrosis, localized, secondary, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, secondary (715.2)\\\\(715.21) Osteoarthrosis, localized, secondary, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\" + }, + { + "displayName": "(715.22) Osteoarthrosis, localized, secondary, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\(715.22) Osteoarthrosis, localized, secondary, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\" + }, + { + "displayName": "(715.23) Osteoarthrosis, localized, secondary, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\(715.23) Osteoarthrosis, localized, secondary, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, secondary (715.2)\\\\(715.23) Osteoarthrosis, localized, secondary, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\" + }, + { + "displayName": "(715.24) Osteoarthrosis, localized, secondary, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\(715.24) Osteoarthrosis, localized, secondary, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, secondary (715.2)\\\\(715.24) Osteoarthrosis, localized, secondary, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\" + }, + { + "displayName": "(715.25) Osteoarthrosis, localized, secondary, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\(715.25) Osteoarthrosis, localized, secondary, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, secondary (715.2)\\\\(715.25) Osteoarthrosis, localized, secondary, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\" + }, + { + "displayName": "(715.26) Osteoarthrosis, localized, secondary, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\(715.26) Osteoarthrosis, localized, secondary, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\" + }, + { + "displayName": "(715.27) Osteoarthrosis, localized, secondary, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\(715.27) Osteoarthrosis, localized, secondary, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, secondary (715.2)\\\\(715.27) Osteoarthrosis, localized, secondary, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\" + }, + { + "displayName": "(715.28) Osteoarthrosis, localized, secondary, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\(715.28) Osteoarthrosis, localized, secondary, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, localized, secondary (715.2)\\\\(715.28) Osteoarthrosis, localized, secondary, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, localized, secondary (715.2)\\" + }, + { + "displayName": "Osteoarthrosis, unspecified whether generalized or localized (715.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\" + }, + { + "displayName": "(715.90) Osteoarthrosis, unspecified whether generalized or localized, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\(715.90) Osteoarthrosis, unspecified whether generalized or localized, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\\\(715.90) Osteoarthrosis, unspecified whether generalized or localized, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\" + }, + { + "displayName": "(715.91) Osteoarthrosis, unspecified whether generalized or localized, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\(715.91) Osteoarthrosis, unspecified whether generalized or localized, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\" + }, + { + "displayName": "(715.92) Osteoarthrosis, unspecified whether generalized or localized, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\(715.92) Osteoarthrosis, unspecified whether generalized or localized, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\\\(715.92) Osteoarthrosis, unspecified whether generalized or localized, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\" + }, + { + "displayName": "(715.93) Osteoarthrosis, unspecified whether generalized or localized, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\(715.93) Osteoarthrosis, unspecified whether generalized or localized, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\\\(715.93) Osteoarthrosis, unspecified whether generalized or localized, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\" + }, + { + "displayName": "(715.94) Osteoarthrosis, unspecified whether generalized or localized, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\(715.94) Osteoarthrosis, unspecified whether generalized or localized, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\" + }, + { + "displayName": "(715.95) Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\(715.95) Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\\\(715.95) Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\" + }, + { + "displayName": "(715.96) Osteoarthrosis, unspecified whether generalized or localized, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\(715.96) Osteoarthrosis, unspecified whether generalized or localized, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\" + }, + { + "displayName": "(715.97) Osteoarthrosis, unspecified whether generalized or localized, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\(715.97) Osteoarthrosis, unspecified whether generalized or localized, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\\\(715.97) Osteoarthrosis, unspecified whether generalized or localized, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\" + }, + { + "displayName": "(715.98) Osteoarthrosis, unspecified whether generalized or localized, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\(715.98) Osteoarthrosis, unspecified whether generalized or localized, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Osteoarthrosis and allied disorders (715)\\\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\\\(715.98) Osteoarthrosis, unspecified whether generalized or localized, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Osteoarthrosis and allied disorders (715)\\Osteoarthrosis, unspecified whether generalized or localized (715.9)\\" + }, + { + "displayName": "Other and unspecified arthropathies (716)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\" + }, + { + "displayName": "Allergic arthritis (716.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Allergic arthritis (716.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\" + }, + { + "displayName": "(716.20) Allergic arthritis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\(716.20) Allergic arthritis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\" + }, + { + "displayName": "(716.21) Allergic arthritis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\(716.21) Allergic arthritis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Allergic arthritis (716.2)\\\\(716.21) Allergic arthritis, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\" + }, + { + "displayName": "(716.22) Allergic arthritis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\(716.22) Allergic arthritis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Allergic arthritis (716.2)\\\\(716.22) Allergic arthritis, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\" + }, + { + "displayName": "(716.23) Allergic arthritis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\(716.23) Allergic arthritis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Allergic arthritis (716.2)\\\\(716.23) Allergic arthritis, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\" + }, + { + "displayName": "(716.24) Allergic arthritis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\(716.24) Allergic arthritis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\" + }, + { + "displayName": "(716.25) Allergic arthritis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\(716.25) Allergic arthritis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Allergic arthritis (716.2)\\\\(716.25) Allergic arthritis, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\" + }, + { + "displayName": "(716.26) Allergic arthritis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\(716.26) Allergic arthritis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Allergic arthritis (716.2)\\\\(716.26) Allergic arthritis, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\" + }, + { + "displayName": "(716.27) Allergic arthritis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\(716.27) Allergic arthritis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Allergic arthritis (716.2)\\\\(716.27) Allergic arthritis, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\" + }, + { + "displayName": "(716.28) Allergic arthritis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\(716.28) Allergic arthritis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Allergic arthritis (716.2)\\\\(716.28) Allergic arthritis, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\" + }, + { + "displayName": "(716.29) Allergic arthritis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\(716.29) Allergic arthritis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Allergic arthritis (716.2)\\" + }, + { + "displayName": "Arthropathy, unspecified (716.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Arthropathy, unspecified (716.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\" + }, + { + "displayName": "(716.90) Arthropathy, unspecified, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\(716.90) Arthropathy, unspecified, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Arthropathy, unspecified (716.9)\\\\(716.90) Arthropathy, unspecified, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\" + }, + { + "displayName": "(716.91) Arthropathy, unspecified, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\(716.91) Arthropathy, unspecified, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\" + }, + { + "displayName": "(716.92) Arthropathy, unspecified, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\(716.92) Arthropathy, unspecified, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Arthropathy, unspecified (716.9)\\\\(716.92) Arthropathy, unspecified, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\" + }, + { + "displayName": "(716.93) Arthropathy, unspecified, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\(716.93) Arthropathy, unspecified, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\" + }, + { + "displayName": "(716.94) Arthropathy, unspecified, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\(716.94) Arthropathy, unspecified, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Arthropathy, unspecified (716.9)\\\\(716.94) Arthropathy, unspecified, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\" + }, + { + "displayName": "(716.95) Arthropathy, unspecified, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\(716.95) Arthropathy, unspecified, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Arthropathy, unspecified (716.9)\\\\(716.95) Arthropathy, unspecified, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\" + }, + { + "displayName": "(716.96) Arthropathy, unspecified, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\(716.96) Arthropathy, unspecified, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Arthropathy, unspecified (716.9)\\\\(716.96) Arthropathy, unspecified, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\" + }, + { + "displayName": "(716.97) Arthropathy, unspecified, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\(716.97) Arthropathy, unspecified, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\" + }, + { + "displayName": "(716.98) Arthropathy, unspecified, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\(716.98) Arthropathy, unspecified, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\" + }, + { + "displayName": "(716.99) Arthropathy, unspecified, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\(716.99) Arthropathy, unspecified, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Arthropathy, unspecified (716.9)\\" + }, + { + "displayName": "Climacteric arthritis (716.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\" + }, + { + "displayName": "(716.30) Climacteric arthritis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\(716.30) Climacteric arthritis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\" + }, + { + "displayName": "(716.31) Climacteric arthritis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\(716.31) Climacteric arthritis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\" + }, + { + "displayName": "(716.32) Climacteric arthritis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\(716.32) Climacteric arthritis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\" + }, + { + "displayName": "(716.33) Climacteric arthritis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\(716.33) Climacteric arthritis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\" + }, + { + "displayName": "(716.34) Climacteric arthritis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\(716.34) Climacteric arthritis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\" + }, + { + "displayName": "(716.35) Climacteric arthritis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\(716.35) Climacteric arthritis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\" + }, + { + "displayName": "(716.36) Climacteric arthritis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\(716.36) Climacteric arthritis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Climacteric arthritis (716.3)\\\\(716.36) Climacteric arthritis, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\" + }, + { + "displayName": "(716.37) Climacteric arthritis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\(716.37) Climacteric arthritis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Climacteric arthritis (716.3)\\\\(716.37) Climacteric arthritis, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\" + }, + { + "displayName": "(716.38) Climacteric arthritis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\(716.38) Climacteric arthritis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Climacteric arthritis (716.3)\\\\(716.38) Climacteric arthritis, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\" + }, + { + "displayName": "(716.39) Climacteric arthritis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\(716.39) Climacteric arthritis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Climacteric arthritis (716.3)\\\\(716.39) Climacteric arthritis, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Climacteric arthritis (716.3)\\" + }, + { + "displayName": "Kaschin-Beck disease (716.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Kaschin-Beck disease (716.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\" + }, + { + "displayName": "(716.00) Kaschin-Beck disease, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\(716.00) Kaschin-Beck disease, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Kaschin-Beck disease (716.0)\\\\(716.00) Kaschin-Beck disease, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\" + }, + { + "displayName": "(716.01) Kaschin-Beck disease, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\(716.01) Kaschin-Beck disease, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\" + }, + { + "displayName": "(716.02) Kaschin-Beck disease, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\(716.02) Kaschin-Beck disease, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\" + }, + { + "displayName": "(716.03) Kaschin-Beck disease, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\(716.03) Kaschin-Beck disease, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\" + }, + { + "displayName": "(716.04) Kaschin-Beck disease, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\(716.04) Kaschin-Beck disease, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\" + }, + { + "displayName": "(716.05) Kaschin-Beck disease, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\(716.05) Kaschin-Beck disease, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\" + }, + { + "displayName": "(716.06) Kaschin-Beck disease, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\(716.06) Kaschin-Beck disease, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\" + }, + { + "displayName": "(716.07) Kaschin-Beck disease, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\(716.07) Kaschin-Beck disease, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\" + }, + { + "displayName": "(716.08) Kaschin-Beck disease, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\(716.08) Kaschin-Beck disease, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\" + }, + { + "displayName": "(716.09) Kaschin-Beck disease, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\(716.09) Kaschin-Beck disease, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Kaschin-Beck disease (716.0)\\\\(716.09) Kaschin-Beck disease, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Kaschin-Beck disease (716.0)\\" + }, + { + "displayName": "Other specified arthropathy (716.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Other specified arthropathy (716.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\" + }, + { + "displayName": "(716.80) Other specified arthropathy, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\(716.80) Other specified arthropathy, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\" + }, + { + "displayName": "(716.81) Other specified arthropathy, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\(716.81) Other specified arthropathy, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Other specified arthropathy (716.8)\\\\(716.81) Other specified arthropathy, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\" + }, + { + "displayName": "(716.82) Other specified arthropathy, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\(716.82) Other specified arthropathy, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\" + }, + { + "displayName": "(716.83) Other specified arthropathy, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\(716.83) Other specified arthropathy, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Other specified arthropathy (716.8)\\\\(716.83) Other specified arthropathy, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\" + }, + { + "displayName": "(716.84) Other specified arthropathy, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\(716.84) Other specified arthropathy, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Other specified arthropathy (716.8)\\\\(716.84) Other specified arthropathy, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\" + }, + { + "displayName": "(716.85) Other specified arthropathy, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\(716.85) Other specified arthropathy, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\" + }, + { + "displayName": "(716.86) Other specified arthropathy, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\(716.86) Other specified arthropathy, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Other specified arthropathy (716.8)\\\\(716.86) Other specified arthropathy, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\" + }, + { + "displayName": "(716.87) Other specified arthropathy, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\(716.87) Other specified arthropathy, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Other specified arthropathy (716.8)\\\\(716.87) Other specified arthropathy, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\" + }, + { + "displayName": "(716.88) Other specified arthropathy, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\(716.88) Other specified arthropathy, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Other specified arthropathy (716.8)\\\\(716.88) Other specified arthropathy, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\" + }, + { + "displayName": "(716.89) Other specified arthropathy, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\(716.89) Other specified arthropathy, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Other specified arthropathy (716.8)\\\\(716.89) Other specified arthropathy, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Other specified arthropathy (716.8)\\" + }, + { + "displayName": "Transient arthropathy (716.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Transient arthropathy (716.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\" + }, + { + "displayName": "(716.40) Transient arthropathy, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\(716.40) Transient arthropathy, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\" + }, + { + "displayName": "(716.41) Transient arthropathy, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\(716.41) Transient arthropathy, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Transient arthropathy (716.4)\\\\(716.41) Transient arthropathy, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\" + }, + { + "displayName": "(716.42) Transient arthropathy, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\(716.42) Transient arthropathy, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Transient arthropathy (716.4)\\\\(716.42) Transient arthropathy, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\" + }, + { + "displayName": "(716.43) Transient arthropathy, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\(716.43) Transient arthropathy, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Transient arthropathy (716.4)\\\\(716.43) Transient arthropathy, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\" + }, + { + "displayName": "(716.44) Transient arthropathy, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\(716.44) Transient arthropathy, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\" + }, + { + "displayName": "(716.45) Transient arthropathy, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\(716.45) Transient arthropathy, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Transient arthropathy (716.4)\\\\(716.45) Transient arthropathy, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\" + }, + { + "displayName": "(716.46) Transient arthropathy, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\(716.46) Transient arthropathy, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Transient arthropathy (716.4)\\\\(716.46) Transient arthropathy, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\" + }, + { + "displayName": "(716.47) Transient arthropathy, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\(716.47) Transient arthropathy, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\" + }, + { + "displayName": "(716.48) Transient arthropathy, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\(716.48) Transient arthropathy, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Transient arthropathy (716.4)\\\\(716.48) Transient arthropathy, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\" + }, + { + "displayName": "(716.49) Transient arthropathy, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\(716.49) Transient arthropathy, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Transient arthropathy (716.4)\\\\(716.49) Transient arthropathy, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Transient arthropathy (716.4)\\" + }, + { + "displayName": "Traumatic arthropathy (716.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Traumatic arthropathy (716.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\" + }, + { + "displayName": "(716.10) Traumatic arthropathy, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\(716.10) Traumatic arthropathy, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Traumatic arthropathy (716.1)\\\\(716.10) Traumatic arthropathy, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\" + }, + { + "displayName": "(716.11) Traumatic arthropathy, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\(716.11) Traumatic arthropathy, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\" + }, + { + "displayName": "(716.12) Traumatic arthropathy, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\(716.12) Traumatic arthropathy, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Traumatic arthropathy (716.1)\\\\(716.12) Traumatic arthropathy, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\" + }, + { + "displayName": "(716.13) Traumatic arthropathy, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\(716.13) Traumatic arthropathy, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Traumatic arthropathy (716.1)\\\\(716.13) Traumatic arthropathy, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\" + }, + { + "displayName": "(716.14) Traumatic arthropathy, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\(716.14) Traumatic arthropathy, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Traumatic arthropathy (716.1)\\\\(716.14) Traumatic arthropathy, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\" + }, + { + "displayName": "(716.15) Traumatic arthropathy, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\(716.15) Traumatic arthropathy, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Traumatic arthropathy (716.1)\\\\(716.15) Traumatic arthropathy, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\" + }, + { + "displayName": "(716.16) Traumatic arthropathy, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\(716.16) Traumatic arthropathy, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\" + }, + { + "displayName": "(716.17) Traumatic arthropathy, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\(716.17) Traumatic arthropathy, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\" + }, + { + "displayName": "(716.18) Traumatic arthropathy, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\(716.18) Traumatic arthropathy, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Traumatic arthropathy (716.1)\\\\(716.18) Traumatic arthropathy, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\" + }, + { + "displayName": "(716.19) Traumatic arthropathy, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\(716.19) Traumatic arthropathy, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Traumatic arthropathy (716.1)\\" + }, + { + "displayName": "Unspecified monoarthritis (716.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified monoarthritis (716.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\" + }, + { + "displayName": "(716.60) Unspecified monoarthritis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\(716.60) Unspecified monoarthritis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified monoarthritis (716.6)\\\\(716.60) Unspecified monoarthritis, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\" + }, + { + "displayName": "(716.61) Unspecified monoarthritis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\(716.61) Unspecified monoarthritis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\" + }, + { + "displayName": "(716.62) Unspecified monoarthritis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\(716.62) Unspecified monoarthritis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified monoarthritis (716.6)\\\\(716.62) Unspecified monoarthritis, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\" + }, + { + "displayName": "(716.63) Unspecified monoarthritis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\(716.63) Unspecified monoarthritis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified monoarthritis (716.6)\\\\(716.63) Unspecified monoarthritis, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\" + }, + { + "displayName": "(716.64) Unspecified monoarthritis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\(716.64) Unspecified monoarthritis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified monoarthritis (716.6)\\\\(716.64) Unspecified monoarthritis, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\" + }, + { + "displayName": "(716.65) Unspecified monoarthritis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\(716.65) Unspecified monoarthritis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\" + }, + { + "displayName": "(716.66) Unspecified monoarthritis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\(716.66) Unspecified monoarthritis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified monoarthritis (716.6)\\\\(716.66) Unspecified monoarthritis, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\" + }, + { + "displayName": "(716.67) Unspecified monoarthritis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\(716.67) Unspecified monoarthritis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified monoarthritis (716.6)\\\\(716.67) Unspecified monoarthritis, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\" + }, + { + "displayName": "(716.68) Unspecified monoarthritis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\(716.68) Unspecified monoarthritis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified monoarthritis (716.6)\\\\(716.68) Unspecified monoarthritis, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified monoarthritis (716.6)\\" + }, + { + "displayName": "Unspecified polyarthropathy or polyarthritis (716.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified polyarthropathy or polyarthritis (716.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\" + }, + { + "displayName": "(716.50) Unspecified polyarthropathy or polyarthritis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\(716.50) Unspecified polyarthropathy or polyarthritis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified polyarthropathy or polyarthritis (716.5)\\\\(716.50) Unspecified polyarthropathy or polyarthritis, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\" + }, + { + "displayName": "(716.51) Unspecified polyarthropathy or polyarthritis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\(716.51) Unspecified polyarthropathy or polyarthritis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\" + }, + { + "displayName": "(716.52) Unspecified polyarthropathy or polyarthritis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\(716.52) Unspecified polyarthropathy or polyarthritis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified polyarthropathy or polyarthritis (716.5)\\\\(716.52) Unspecified polyarthropathy or polyarthritis, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\" + }, + { + "displayName": "(716.53) Unspecified polyarthropathy or polyarthritis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\(716.53) Unspecified polyarthropathy or polyarthritis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified arthropathies (716)\\\\Unspecified polyarthropathy or polyarthritis (716.5)\\\\(716.53) Unspecified polyarthropathy or polyarthritis, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\" + }, + { + "displayName": "(716.54) Unspecified polyarthropathy or polyarthritis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\(716.54) Unspecified polyarthropathy or polyarthritis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\" + }, + { + "displayName": "(716.55) Unspecified polyarthropathy or polyarthritis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\(716.55) Unspecified polyarthropathy or polyarthritis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\" + }, + { + "displayName": "(716.56) Unspecified polyarthropathy or polyarthritis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\(716.56) Unspecified polyarthropathy or polyarthritis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\" + }, + { + "displayName": "(716.57) Unspecified polyarthropathy or polyarthritis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\(716.57) Unspecified polyarthropathy or polyarthritis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\" + }, + { + "displayName": "(716.58) Unspecified polyarthropathy or polyarthritis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\(716.58) Unspecified polyarthropathy or polyarthritis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\" + }, + { + "displayName": "(716.59) Unspecified polyarthropathy or polyarthritis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\(716.59) Unspecified polyarthropathy or polyarthritis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified arthropathies (716)\\Unspecified polyarthropathy or polyarthritis (716.5)\\" + }, + { + "displayName": "Other and unspecified disorders of joint (719)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\" + }, + { + "displayName": "(719.7) Difficulty in walking", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\(719.7) Difficulty in walking\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\(719.7) Difficulty in walking\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\" + }, + { + "displayName": "Effusion of joint (719.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Effusion of joint (719.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\" + }, + { + "displayName": "(719.00) Effusion of joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\(719.00) Effusion of joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\" + }, + { + "displayName": "(719.01) Effusion of joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\(719.01) Effusion of joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Effusion of joint (719.0)\\\\(719.01) Effusion of joint, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\" + }, + { + "displayName": "(719.02) Effusion of joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\(719.02) Effusion of joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\" + }, + { + "displayName": "(719.03) Effusion of joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\(719.03) Effusion of joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Effusion of joint (719.0)\\\\(719.03) Effusion of joint, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\" + }, + { + "displayName": "(719.04) Effusion of joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\(719.04) Effusion of joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\" + }, + { + "displayName": "(719.05) Effusion of joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\(719.05) Effusion of joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Effusion of joint (719.0)\\\\(719.05) Effusion of joint, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\" + }, + { + "displayName": "(719.06) Effusion of joint, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\(719.06) Effusion of joint, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Effusion of joint (719.0)\\\\(719.06) Effusion of joint, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\" + }, + { + "displayName": "(719.07) Effusion of joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\(719.07) Effusion of joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Effusion of joint (719.0)\\\\(719.07) Effusion of joint, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\" + }, + { + "displayName": "(719.08) Effusion of joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\(719.08) Effusion of joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\" + }, + { + "displayName": "(719.09) Effusion of joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\(719.09) Effusion of joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Effusion of joint (719.0)\\\\(719.09) Effusion of joint, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Effusion of joint (719.0)\\" + }, + { + "displayName": "Hemarthrosis (719.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\" + }, + { + "displayName": "(719.10) Hemarthrosis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\(719.10) Hemarthrosis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Hemarthrosis (719.1)\\\\(719.10) Hemarthrosis, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\" + }, + { + "displayName": "(719.11) Hemarthrosis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\(719.11) Hemarthrosis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Hemarthrosis (719.1)\\\\(719.11) Hemarthrosis, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\" + }, + { + "displayName": "(719.12) Hemarthrosis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\(719.12) Hemarthrosis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\" + }, + { + "displayName": "(719.13) Hemarthrosis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\(719.13) Hemarthrosis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\" + }, + { + "displayName": "(719.14) Hemarthrosis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\(719.14) Hemarthrosis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\" + }, + { + "displayName": "(719.15) Hemarthrosis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\(719.15) Hemarthrosis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\" + }, + { + "displayName": "(719.16) Hemarthrosis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\(719.16) Hemarthrosis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\" + }, + { + "displayName": "(719.17) Hemarthrosis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\(719.17) Hemarthrosis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Hemarthrosis (719.1)\\\\(719.17) Hemarthrosis, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\" + }, + { + "displayName": "(719.18) Hemarthrosis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\(719.18) Hemarthrosis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Hemarthrosis (719.1)\\\\(719.18) Hemarthrosis, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\" + }, + { + "displayName": "(719.19) Hemarthrosis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\(719.19) Hemarthrosis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Hemarthrosis (719.1)\\\\(719.19) Hemarthrosis, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Hemarthrosis (719.1)\\" + }, + { + "displayName": "Other specified disorders of joint (719.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\" + }, + { + "displayName": "(719.80) Other specified disorders of joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\(719.80) Other specified disorders of joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other specified disorders of joint (719.8)\\\\(719.80) Other specified disorders of joint, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\" + }, + { + "displayName": "(719.81) Other specified disorders of joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\(719.81) Other specified disorders of joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\" + }, + { + "displayName": "(719.82) Other specified disorders of joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\(719.82) Other specified disorders of joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other specified disorders of joint (719.8)\\\\(719.82) Other specified disorders of joint, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\" + }, + { + "displayName": "(719.83) Other specified disorders of joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\(719.83) Other specified disorders of joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\" + }, + { + "displayName": "(719.84) Other specified disorders of joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\(719.84) Other specified disorders of joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other specified disorders of joint (719.8)\\\\(719.84) Other specified disorders of joint, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\" + }, + { + "displayName": "(719.85) Other specified disorders of joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\(719.85) Other specified disorders of joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other specified disorders of joint (719.8)\\\\(719.85) Other specified disorders of joint, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\" + }, + { + "displayName": "(719.86) Other specified disorders of joint, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\(719.86) Other specified disorders of joint, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other specified disorders of joint (719.8)\\\\(719.86) Other specified disorders of joint, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\" + }, + { + "displayName": "(719.87) Other specified disorders of joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\(719.87) Other specified disorders of joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\" + }, + { + "displayName": "(719.88) Other specified disorders of joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\(719.88) Other specified disorders of joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other specified disorders of joint (719.8)\\\\(719.88) Other specified disorders of joint, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\" + }, + { + "displayName": "(719.89) Other specified disorders of joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\(719.89) Other specified disorders of joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other specified disorders of joint (719.8)\\" + }, + { + "displayName": "Other symptoms referable to joint (719.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other symptoms referable to joint (719.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\" + }, + { + "displayName": "(719.60) Other symptoms referable to joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\(719.60) Other symptoms referable to joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other symptoms referable to joint (719.6)\\\\(719.60) Other symptoms referable to joint, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\" + }, + { + "displayName": "(719.61) Other symptoms referable to joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\(719.61) Other symptoms referable to joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\" + }, + { + "displayName": "(719.62) Other symptoms referable to joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\(719.62) Other symptoms referable to joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\" + }, + { + "displayName": "(719.63) Other symptoms referable to joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\(719.63) Other symptoms referable to joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other symptoms referable to joint (719.6)\\\\(719.63) Other symptoms referable to joint, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\" + }, + { + "displayName": "(719.64) Other symptoms referable to joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\(719.64) Other symptoms referable to joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other symptoms referable to joint (719.6)\\\\(719.64) Other symptoms referable to joint, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\" + }, + { + "displayName": "(719.65) Other symptoms referable to joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\(719.65) Other symptoms referable to joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other symptoms referable to joint (719.6)\\\\(719.65) Other symptoms referable to joint, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\" + }, + { + "displayName": "(719.66) Other symptoms referable to joint, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\(719.66) Other symptoms referable to joint, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\" + }, + { + "displayName": "(719.67) Other symptoms referable to joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\(719.67) Other symptoms referable to joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other symptoms referable to joint (719.6)\\\\(719.67) Other symptoms referable to joint, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\" + }, + { + "displayName": "(719.68) Other symptoms referable to joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\(719.68) Other symptoms referable to joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other symptoms referable to joint (719.6)\\\\(719.68) Other symptoms referable to joint, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\" + }, + { + "displayName": "(719.69) Other symptoms referable to joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\(719.69) Other symptoms referable to joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Other symptoms referable to joint (719.6)\\\\(719.69) Other symptoms referable to joint, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Other symptoms referable to joint (719.6)\\" + }, + { + "displayName": "Pain in joint (719.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\" + }, + { + "displayName": "(719.40) Pain in joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\(719.40) Pain in joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Pain in joint (719.4)\\\\(719.40) Pain in joint, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\" + }, + { + "displayName": "(719.41) Pain in joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\(719.41) Pain in joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\" + }, + { + "displayName": "(719.42) Pain in joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\(719.42) Pain in joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\" + }, + { + "displayName": "(719.43) Pain in joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\(719.43) Pain in joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\" + }, + { + "displayName": "(719.44) Pain in joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\(719.44) Pain in joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\" + }, + { + "displayName": "(719.45) Pain in joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\(719.45) Pain in joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\" + }, + { + "displayName": "(719.46) Pain in joint, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\(719.46) Pain in joint, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\" + }, + { + "displayName": "(719.47) Pain in joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\(719.47) Pain in joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\" + }, + { + "displayName": "(719.48) Pain in joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\(719.48) Pain in joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\" + }, + { + "displayName": "(719.49) Pain in joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\(719.49) Pain in joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Pain in joint (719.4)\\" + }, + { + "displayName": "Palindromic rheumatism (719.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\" + }, + { + "displayName": "(719.30) Palindromic rheumatism, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\(719.30) Palindromic rheumatism, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\" + }, + { + "displayName": "(719.31) Palindromic rheumatism, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\(719.31) Palindromic rheumatism, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\" + }, + { + "displayName": "(719.32) Palindromic rheumatism, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\(719.32) Palindromic rheumatism, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\" + }, + { + "displayName": "(719.33) Palindromic rheumatism, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\(719.33) Palindromic rheumatism, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\" + }, + { + "displayName": "(719.34) Palindromic rheumatism, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\(719.34) Palindromic rheumatism, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\" + }, + { + "displayName": "(719.35) Palindromic rheumatism, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\(719.35) Palindromic rheumatism, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\" + }, + { + "displayName": "(719.36) Palindromic rheumatism, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\(719.36) Palindromic rheumatism, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\" + }, + { + "displayName": "(719.37) Palindromic rheumatism, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\(719.37) Palindromic rheumatism, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\" + }, + { + "displayName": "(719.38) Palindromic rheumatism, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\(719.38) Palindromic rheumatism, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\" + }, + { + "displayName": "(719.39) Palindromic rheumatism, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\(719.39) Palindromic rheumatism, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Palindromic rheumatism (719.3)\\\\(719.39) Palindromic rheumatism, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Palindromic rheumatism (719.3)\\" + }, + { + "displayName": "Stiffness of joint, not elsewhere classified (719.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\" + }, + { + "displayName": "(719.50) Stiffness of joint, not elsewhere classified, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\(719.50) Stiffness of joint, not elsewhere classified, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\" + }, + { + "displayName": "(719.51) Stiffness of joint, not elsewhere classified, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\(719.51) Stiffness of joint, not elsewhere classified, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\" + }, + { + "displayName": "(719.52) Stiffness of joint, not elsewhere classified, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\(719.52) Stiffness of joint, not elsewhere classified, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\" + }, + { + "displayName": "(719.53) Stiffness of joint, not elsewhere classified, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\(719.53) Stiffness of joint, not elsewhere classified, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Stiffness of joint, not elsewhere classified (719.5)\\\\(719.53) Stiffness of joint, not elsewhere classified, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\" + }, + { + "displayName": "(719.54) Stiffness of joint, not elsewhere classified, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\(719.54) Stiffness of joint, not elsewhere classified, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Stiffness of joint, not elsewhere classified (719.5)\\\\(719.54) Stiffness of joint, not elsewhere classified, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\" + }, + { + "displayName": "(719.55) Stiffness of joint, not elsewhere classified, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\(719.55) Stiffness of joint, not elsewhere classified, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\" + }, + { + "displayName": "(719.56) Stiffness of joint, not elsewhere classified, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\(719.56) Stiffness of joint, not elsewhere classified, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\" + }, + { + "displayName": "(719.57) Stiffness of joint, not elsewhere classified, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\(719.57) Stiffness of joint, not elsewhere classified, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Stiffness of joint, not elsewhere classified (719.5)\\\\(719.57) Stiffness of joint, not elsewhere classified, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\" + }, + { + "displayName": "(719.58) Stiffness of joint, not elsewhere classified, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\(719.58) Stiffness of joint, not elsewhere classified, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\" + }, + { + "displayName": "(719.59) Stiffness of joint, not elsewhere classified, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\(719.59) Stiffness of joint, not elsewhere classified, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Stiffness of joint, not elsewhere classified (719.5)\\" + }, + { + "displayName": "Unspecified disorder of joint (719.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Unspecified disorder of joint (719.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\" + }, + { + "displayName": "(719.90) Unspecified disorder of joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\(719.90) Unspecified disorder of joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Unspecified disorder of joint (719.9)\\\\(719.90) Unspecified disorder of joint, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\" + }, + { + "displayName": "(719.91) Unspecified disorder of joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\(719.91) Unspecified disorder of joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Unspecified disorder of joint (719.9)\\\\(719.91) Unspecified disorder of joint, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\" + }, + { + "displayName": "(719.92) Unspecified disorder of joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\(719.92) Unspecified disorder of joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Unspecified disorder of joint (719.9)\\\\(719.92) Unspecified disorder of joint, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\" + }, + { + "displayName": "(719.93) Unspecified disorder of joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\(719.93) Unspecified disorder of joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\" + }, + { + "displayName": "(719.94) Unspecified disorder of joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\(719.94) Unspecified disorder of joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Unspecified disorder of joint (719.9)\\\\(719.94) Unspecified disorder of joint, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\" + }, + { + "displayName": "(719.95) Unspecified disorder of joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\(719.95) Unspecified disorder of joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\" + }, + { + "displayName": "(719.96) Unspecified disorder of joint, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\(719.96) Unspecified disorder of joint, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Unspecified disorder of joint (719.9)\\\\(719.96) Unspecified disorder of joint, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\" + }, + { + "displayName": "(719.97) Unspecified disorder of joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\(719.97) Unspecified disorder of joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Unspecified disorder of joint (719.9)\\\\(719.97) Unspecified disorder of joint, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\" + }, + { + "displayName": "(719.98) Unspecified disorder of joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\(719.98) Unspecified disorder of joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\" + }, + { + "displayName": "(719.99) Unspecified disorder of joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\(719.99) Unspecified disorder of joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Unspecified disorder of joint (719.9)\\\\(719.99) Unspecified disorder of joint, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Unspecified disorder of joint (719.9)\\" + }, + { + "displayName": "Villonodular synovitis (719.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Villonodular synovitis (719.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\" + }, + { + "displayName": "(719.20) Villonodular synovitis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\(719.20) Villonodular synovitis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\" + }, + { + "displayName": "(719.21) Villonodular synovitis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\(719.21) Villonodular synovitis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\" + }, + { + "displayName": "(719.22) Villonodular synovitis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\(719.22) Villonodular synovitis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Villonodular synovitis (719.2)\\\\(719.22) Villonodular synovitis, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\" + }, + { + "displayName": "(719.23) Villonodular synovitis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\(719.23) Villonodular synovitis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Villonodular synovitis (719.2)\\\\(719.23) Villonodular synovitis, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\" + }, + { + "displayName": "(719.24) Villonodular synovitis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\(719.24) Villonodular synovitis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Villonodular synovitis (719.2)\\\\(719.24) Villonodular synovitis, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\" + }, + { + "displayName": "(719.25) Villonodular synovitis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\(719.25) Villonodular synovitis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\" + }, + { + "displayName": "(719.26) Villonodular synovitis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\(719.26) Villonodular synovitis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Villonodular synovitis (719.2)\\\\(719.26) Villonodular synovitis, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\" + }, + { + "displayName": "(719.27) Villonodular synovitis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\(719.27) Villonodular synovitis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\" + }, + { + "displayName": "(719.28) Villonodular synovitis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\(719.28) Villonodular synovitis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Villonodular synovitis (719.2)\\\\(719.28) Villonodular synovitis, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\" + }, + { + "displayName": "(719.29) Villonodular synovitis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\(719.29) Villonodular synovitis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other and unspecified disorders of joint (719)\\\\Villonodular synovitis (719.2)\\\\(719.29) Villonodular synovitis, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other and unspecified disorders of joint (719)\\Villonodular synovitis (719.2)\\" + }, + { + "displayName": "Other derangement of joint (718)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\" + }, + { + "displayName": "Ankylosis of joint (718.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Ankylosis of joint (718.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\" + }, + { + "displayName": "(718.50) Ankylosis of joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\(718.50) Ankylosis of joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Ankylosis of joint (718.5)\\\\(718.50) Ankylosis of joint, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\" + }, + { + "displayName": "(718.51) Ankylosis of joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\(718.51) Ankylosis of joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\" + }, + { + "displayName": "(718.52) Ankylosis of joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\(718.52) Ankylosis of joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Ankylosis of joint (718.5)\\\\(718.52) Ankylosis of joint, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\" + }, + { + "displayName": "(718.53) Ankylosis of joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\(718.53) Ankylosis of joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Ankylosis of joint (718.5)\\\\(718.53) Ankylosis of joint, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\" + }, + { + "displayName": "(718.54) Ankylosis of joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\(718.54) Ankylosis of joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Ankylosis of joint (718.5)\\\\(718.54) Ankylosis of joint, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\" + }, + { + "displayName": "(718.55) Ankylosis of joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\(718.55) Ankylosis of joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\" + }, + { + "displayName": "(718.56) Ankylosis of joint, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\(718.56) Ankylosis of joint, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\" + }, + { + "displayName": "(718.57) Ankylosis of joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\(718.57) Ankylosis of joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Ankylosis of joint (718.5)\\\\(718.57) Ankylosis of joint, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\" + }, + { + "displayName": "(718.58) Ankylosis of joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\(718.58) Ankylosis of joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Ankylosis of joint (718.5)\\\\(718.58) Ankylosis of joint, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\" + }, + { + "displayName": "(718.59) Ankylosis of joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\(718.59) Ankylosis of joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Ankylosis of joint (718.5)\\\\(718.59) Ankylosis of joint, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Ankylosis of joint (718.5)\\" + }, + { + "displayName": "Articular cartilage disorder (718.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\" + }, + { + "displayName": "(718.00) Articular cartilage disorder, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\(718.00) Articular cartilage disorder, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Articular cartilage disorder (718.0)\\\\(718.00) Articular cartilage disorder, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\" + }, + { + "displayName": "(718.01) Articular cartilage disorder, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\(718.01) Articular cartilage disorder, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\" + }, + { + "displayName": "(718.02) Articular cartilage disorder, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\(718.02) Articular cartilage disorder, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Articular cartilage disorder (718.0)\\\\(718.02) Articular cartilage disorder, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\" + }, + { + "displayName": "(718.03) Articular cartilage disorder, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\(718.03) Articular cartilage disorder, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Articular cartilage disorder (718.0)\\\\(718.03) Articular cartilage disorder, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\" + }, + { + "displayName": "(718.04) Articular cartilage disorder, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\(718.04) Articular cartilage disorder, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\" + }, + { + "displayName": "(718.05) Articular cartilage disorder, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\(718.05) Articular cartilage disorder, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\" + }, + { + "displayName": "(718.07) Articular cartilage disorder, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\(718.07) Articular cartilage disorder, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Articular cartilage disorder (718.0)\\\\(718.07) Articular cartilage disorder, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\" + }, + { + "displayName": "(718.08) Articular cartilage disorder, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\(718.08) Articular cartilage disorder, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Articular cartilage disorder (718.0)\\\\(718.08) Articular cartilage disorder, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\" + }, + { + "displayName": "(718.09) Articular cartilage disorder, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\(718.09) Articular cartilage disorder, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Articular cartilage disorder (718.0)\\\\(718.09) Articular cartilage disorder, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Articular cartilage disorder (718.0)\\" + }, + { + "displayName": "Contracture of joint (718.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Contracture of joint (718.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\" + }, + { + "displayName": "(718.40) Contracture of joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\(718.40) Contracture of joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\" + }, + { + "displayName": "(718.41) Contracture of joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\(718.41) Contracture of joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Contracture of joint (718.4)\\\\(718.41) Contracture of joint, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\" + }, + { + "displayName": "(718.42) Contracture of joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\(718.42) Contracture of joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\" + }, + { + "displayName": "(718.43) Contracture of joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\(718.43) Contracture of joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Contracture of joint (718.4)\\\\(718.43) Contracture of joint, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\" + }, + { + "displayName": "(718.44) Contracture of joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\(718.44) Contracture of joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Contracture of joint (718.4)\\\\(718.44) Contracture of joint, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\" + }, + { + "displayName": "(718.45) Contracture of joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\(718.45) Contracture of joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\" + }, + { + "displayName": "(718.46) Contracture of joint, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\(718.46) Contracture of joint, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Contracture of joint (718.4)\\\\(718.46) Contracture of joint, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\" + }, + { + "displayName": "(718.47) Contracture of joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\(718.47) Contracture of joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Contracture of joint (718.4)\\\\(718.47) Contracture of joint, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\" + }, + { + "displayName": "(718.48) Contracture of joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\(718.48) Contracture of joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\" + }, + { + "displayName": "(718.49) Contracture of joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\(718.49) Contracture of joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Contracture of joint (718.4)\\\\(718.49) Contracture of joint, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Contracture of joint (718.4)\\" + }, + { + "displayName": "Developmental dislocation of joint (718.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Developmental dislocation of joint (718.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\" + }, + { + "displayName": "(718.70) Developmental dislocation of joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\(718.70) Developmental dislocation of joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Developmental dislocation of joint (718.7)\\\\(718.70) Developmental dislocation of joint, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\" + }, + { + "displayName": "(718.71) Developmental dislocation of joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\(718.71) Developmental dislocation of joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\" + }, + { + "displayName": "(718.72) Developmental dislocation of joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\(718.72) Developmental dislocation of joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\" + }, + { + "displayName": "(718.73) Developmental dislocation of joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\(718.73) Developmental dislocation of joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Developmental dislocation of joint (718.7)\\\\(718.73) Developmental dislocation of joint, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\" + }, + { + "displayName": "(718.74) Developmental dislocation of joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\(718.74) Developmental dislocation of joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Developmental dislocation of joint (718.7)\\\\(718.74) Developmental dislocation of joint, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\" + }, + { + "displayName": "(718.75) Developmental dislocation of joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\(718.75) Developmental dislocation of joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Developmental dislocation of joint (718.7)\\\\(718.75) Developmental dislocation of joint, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\" + }, + { + "displayName": "(718.76) Developmental dislocation of joint, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\(718.76) Developmental dislocation of joint, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\" + }, + { + "displayName": "(718.77) Developmental dislocation of joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\(718.77) Developmental dislocation of joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Developmental dislocation of joint (718.7)\\\\(718.77) Developmental dislocation of joint, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\" + }, + { + "displayName": "(718.78) Developmental dislocation of joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\(718.78) Developmental dislocation of joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Developmental dislocation of joint (718.7)\\\\(718.78) Developmental dislocation of joint, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\" + }, + { + "displayName": "(718.79) Developmental dislocation of joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\(718.79) Developmental dislocation of joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Developmental dislocation of joint (718.7)\\\\(718.79) Developmental dislocation of joint, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Developmental dislocation of joint (718.7)\\" + }, + { + "displayName": "Loose body in joint (718.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\" + }, + { + "displayName": "(718.10) Loose body in joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\(718.10) Loose body in joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\" + }, + { + "displayName": "(718.11) Loose body in joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\(718.11) Loose body in joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Loose body in joint (718.1)\\\\(718.11) Loose body in joint, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\" + }, + { + "displayName": "(718.12) Loose body in joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\(718.12) Loose body in joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\" + }, + { + "displayName": "(718.13) Loose body in joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\(718.13) Loose body in joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Loose body in joint (718.1)\\\\(718.13) Loose body in joint, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\" + }, + { + "displayName": "(718.14) Loose body in joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\(718.14) Loose body in joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Loose body in joint (718.1)\\\\(718.14) Loose body in joint, hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\" + }, + { + "displayName": "(718.15) Loose body in joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\(718.15) Loose body in joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\" + }, + { + "displayName": "(718.17) Loose body in joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\(718.17) Loose body in joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Loose body in joint (718.1)\\\\(718.17) Loose body in joint, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\" + }, + { + "displayName": "(718.18) Loose body in joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\(718.18) Loose body in joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\" + }, + { + "displayName": "(718.19) Loose body in joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\(718.19) Loose body in joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Loose body in joint (718.1)\\\\(718.19) Loose body in joint, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Loose body in joint (718.1)\\" + }, + { + "displayName": "Other joint derangement, not elsewhere classified (718.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Other joint derangement, not elsewhere classified (718.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\" + }, + { + "displayName": "(718.80) Other joint derangement, not elsewhere classified, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\(718.80) Other joint derangement, not elsewhere classified, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\" + }, + { + "displayName": "(718.81) Other joint derangement, not elsewhere classified, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\(718.81) Other joint derangement, not elsewhere classified, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Other joint derangement, not elsewhere classified (718.8)\\\\(718.81) Other joint derangement, not elsewhere classified, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\" + }, + { + "displayName": "(718.82) Other joint derangement, not elsewhere classified, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\(718.82) Other joint derangement, not elsewhere classified, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Other joint derangement, not elsewhere classified (718.8)\\\\(718.82) Other joint derangement, not elsewhere classified, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\" + }, + { + "displayName": "(718.83) Other joint derangement, not elsewhere classified, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\(718.83) Other joint derangement, not elsewhere classified, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Other joint derangement, not elsewhere classified (718.8)\\\\(718.83) Other joint derangement, not elsewhere classified, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\" + }, + { + "displayName": "(718.84) Other joint derangement, not elsewhere classified, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\(718.84) Other joint derangement, not elsewhere classified, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\" + }, + { + "displayName": "(718.85) Other joint derangement, not elsewhere classified, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\(718.85) Other joint derangement, not elsewhere classified, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Other joint derangement, not elsewhere classified (718.8)\\\\(718.85) Other joint derangement, not elsewhere classified, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\" + }, + { + "displayName": "(718.86) Other joint derangement, not elsewhere classified, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\(718.86) Other joint derangement, not elsewhere classified, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Other joint derangement, not elsewhere classified (718.8)\\\\(718.86) Other joint derangement, not elsewhere classified, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\" + }, + { + "displayName": "(718.87) Other joint derangement, not elsewhere classified, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\(718.87) Other joint derangement, not elsewhere classified, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\" + }, + { + "displayName": "(718.88) Other joint derangement, not elsewhere classified, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\(718.88) Other joint derangement, not elsewhere classified, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Other joint derangement, not elsewhere classified (718.8)\\\\(718.88) Other joint derangement, not elsewhere classified, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\" + }, + { + "displayName": "(718.89) Other joint derangement, not elsewhere classified, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\(718.89) Other joint derangement, not elsewhere classified, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Other joint derangement, not elsewhere classified (718.8)\\" + }, + { + "displayName": "Pathological dislocation (718.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Pathological dislocation (718.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\" + }, + { + "displayName": "(718.20) Pathological dislocation of joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\(718.20) Pathological dislocation of joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\" + }, + { + "displayName": "(718.21) Pathological dislocation of joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\(718.21) Pathological dislocation of joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Pathological dislocation (718.2)\\\\(718.21) Pathological dislocation of joint, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\" + }, + { + "displayName": "(718.22) Pathological dislocation of joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\(718.22) Pathological dislocation of joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Pathological dislocation (718.2)\\\\(718.22) Pathological dislocation of joint, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\" + }, + { + "displayName": "(718.23) Pathological dislocation of joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\(718.23) Pathological dislocation of joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Pathological dislocation (718.2)\\\\(718.23) Pathological dislocation of joint, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\" + }, + { + "displayName": "(718.24) Pathological dislocation of joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\(718.24) Pathological dislocation of joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\" + }, + { + "displayName": "(718.25) Pathological dislocation of joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\(718.25) Pathological dislocation of joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Pathological dislocation (718.2)\\\\(718.25) Pathological dislocation of joint, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\" + }, + { + "displayName": "(718.26) Pathological dislocation of joint, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\(718.26) Pathological dislocation of joint, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\" + }, + { + "displayName": "(718.27) Pathological dislocation of joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\(718.27) Pathological dislocation of joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Pathological dislocation (718.2)\\\\(718.27) Pathological dislocation of joint, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\" + }, + { + "displayName": "(718.28) Pathological dislocation of joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\(718.28) Pathological dislocation of joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Pathological dislocation (718.2)\\\\(718.28) Pathological dislocation of joint, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\" + }, + { + "displayName": "(718.29) Pathological dislocation of joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\(718.29) Pathological dislocation of joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Pathological dislocation (718.2)\\\\(718.29) Pathological dislocation of joint, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Pathological dislocation (718.2)\\" + }, + { + "displayName": "Recurrent dislocation of joint (718.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\" + }, + { + "displayName": "(718.30) Recurrent dislocation of joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\(718.30) Recurrent dislocation of joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Recurrent dislocation of joint (718.3)\\\\(718.30) Recurrent dislocation of joint, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\" + }, + { + "displayName": "(718.31) Recurrent dislocation of joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\(718.31) Recurrent dislocation of joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\" + }, + { + "displayName": "(718.32) Recurrent dislocation of joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\(718.32) Recurrent dislocation of joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Recurrent dislocation of joint (718.3)\\\\(718.32) Recurrent dislocation of joint, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\" + }, + { + "displayName": "(718.33) Recurrent dislocation of joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\(718.33) Recurrent dislocation of joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Recurrent dislocation of joint (718.3)\\\\(718.33) Recurrent dislocation of joint, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\" + }, + { + "displayName": "(718.34) Recurrent dislocation of joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\(718.34) Recurrent dislocation of joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\" + }, + { + "displayName": "(718.35) Recurrent dislocation of joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\(718.35) Recurrent dislocation of joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Recurrent dislocation of joint (718.3)\\\\(718.35) Recurrent dislocation of joint, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\" + }, + { + "displayName": "(718.36) Recurrent dislocation of joint, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\(718.36) Recurrent dislocation of joint, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\" + }, + { + "displayName": "(718.37) Recurrent dislocation of joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\(718.37) Recurrent dislocation of joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Recurrent dislocation of joint (718.3)\\\\(718.37) Recurrent dislocation of joint, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\" + }, + { + "displayName": "(718.38) Recurrent dislocation of joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\(718.38) Recurrent dislocation of joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\" + }, + { + "displayName": "(718.39) Recurrent dislocation of joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\(718.39) Recurrent dislocation of joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Recurrent dislocation of joint (718.3)\\\\(718.39) Recurrent dislocation of joint, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Recurrent dislocation of joint (718.3)\\" + }, + { + "displayName": "Unspecified derangement of joint (718.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Unspecified derangement of joint (718.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\" + }, + { + "displayName": "(718.90) Unspecified derangement of joint, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\(718.90) Unspecified derangement of joint, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Unspecified derangement of joint (718.9)\\\\(718.90) Unspecified derangement of joint, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\" + }, + { + "displayName": "(718.91) Unspecified derangement of joint, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\(718.91) Unspecified derangement of joint, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\" + }, + { + "displayName": "(718.92) Unspecified derangement of joint, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\(718.92) Unspecified derangement of joint, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Other derangement of joint (718)\\\\Unspecified derangement of joint (718.9)\\\\(718.92) Unspecified derangement of joint, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\" + }, + { + "displayName": "(718.93) Unspecified derangement of joint, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\(718.93) Unspecified derangement of joint, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\" + }, + { + "displayName": "(718.94) Unspecified derangement of joint, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\(718.94) Unspecified derangement of joint, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\" + }, + { + "displayName": "(718.95) Unspecified derangement of joint, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\(718.95) Unspecified derangement of joint, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\" + }, + { + "displayName": "(718.97) Unspecified derangement of joint, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\(718.97) Unspecified derangement of joint, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\" + }, + { + "displayName": "(718.98) Unspecified derangement of joint, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\(718.98) Unspecified derangement of joint, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\" + }, + { + "displayName": "(718.99) Unspecified derangement of joint, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\(718.99) Unspecified derangement of joint, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified derangement of joint (718.9)\\" + }, + { + "displayName": "Unspecified intrapelvic protrusion of acetabulum (718.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified intrapelvic protrusion of acetabulum (718.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\" + }, + { + "displayName": "(718.65) Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified intrapelvic protrusion of acetabulum (718.6)\\(718.65) Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Other derangement of joint (718)\\Unspecified intrapelvic protrusion of acetabulum (718.6)\\" + }, + { + "displayName": "Rheumatoid arthritis and other inflammatory polyarthropathies (714)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\" + }, + { + "displayName": "(714.0) Rheumatoid arthritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\(714.0) Rheumatoid arthritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\\\(714.0) Rheumatoid arthritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\" + }, + { + "displayName": "(714.1) Felty's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\(714.1) Felty's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\\\(714.1) Felty's syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\" + }, + { + "displayName": "(714.2) Other rheumatoid arthritis with visceral or systemic involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\(714.2) Other rheumatoid arthritis with visceral or systemic involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\\\(714.2) Other rheumatoid arthritis with visceral or systemic involvement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\" + }, + { + "displayName": "(714.4) Chronic postrheumatic arthropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\(714.4) Chronic postrheumatic arthropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\" + }, + { + "displayName": "(714.9) Unspecified inflammatory polyarthropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\(714.9) Unspecified inflammatory polyarthropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\\\(714.9) Unspecified inflammatory polyarthropathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\" + }, + { + "displayName": "Juvenile chronic polyarthritis (714.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Juvenile chronic polyarthritis (714.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\\\Juvenile chronic polyarthritis (714.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\" + }, + { + "displayName": "(714.30) Polyarticular juvenile rheumatoid arthritis, chronic or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Juvenile chronic polyarthritis (714.3)\\(714.30) Polyarticular juvenile rheumatoid arthritis, chronic or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\\\Juvenile chronic polyarthritis (714.3)\\\\(714.30) Polyarticular juvenile rheumatoid arthritis, chronic or unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Juvenile chronic polyarthritis (714.3)\\" + }, + { + "displayName": "(714.31) Polyarticular juvenile rheumatoid arthritis, acute", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Juvenile chronic polyarthritis (714.3)\\(714.31) Polyarticular juvenile rheumatoid arthritis, acute\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Juvenile chronic polyarthritis (714.3)\\" + }, + { + "displayName": "(714.32) Pauciarticular juvenile rheumatoid arthritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Juvenile chronic polyarthritis (714.3)\\(714.32) Pauciarticular juvenile rheumatoid arthritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\\\Juvenile chronic polyarthritis (714.3)\\\\(714.32) Pauciarticular juvenile rheumatoid arthritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Juvenile chronic polyarthritis (714.3)\\" + }, + { + "displayName": "(714.33) Monoarticular juvenile rheumatoid arthritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Juvenile chronic polyarthritis (714.3)\\(714.33) Monoarticular juvenile rheumatoid arthritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Juvenile chronic polyarthritis (714.3)\\" + }, + { + "displayName": "Other specified inflammatory polyarthropathies (714.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Other specified inflammatory polyarthropathies (714.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\\\Other specified inflammatory polyarthropathies (714.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\" + }, + { + "displayName": "(714.81) Rheumatoid lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Other specified inflammatory polyarthropathies (714.8)\\(714.81) Rheumatoid lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Other specified inflammatory polyarthropathies (714.8)\\" + }, + { + "displayName": "(714.89) Other specified inflammatory polyarthropathies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Other specified inflammatory polyarthropathies (714.8)\\(714.89) Other specified inflammatory polyarthropathies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Arthropathies and related disorders (710-719.99)\\\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\\\Other specified inflammatory polyarthropathies (714.8)\\\\(714.89) Other specified inflammatory polyarthropathies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Arthropathies and related disorders (710-719.99)\\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\\Other specified inflammatory polyarthropathies (714.8)\\" + }, + { + "displayName": "Dorsopathies (720-724.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\" + }, + { + "displayName": "Ankylosing spondylitis and other inflammatory spondylopathies (720)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\" + }, + { + "displayName": "(720.0) Ankylosing spondylitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\(720.0) Ankylosing spondylitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\" + }, + { + "displayName": "(720.1) Spinal enthesopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\(720.1) Spinal enthesopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\\\(720.1) Spinal enthesopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\" + }, + { + "displayName": "(720.2) Sacroiliitis, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\(720.2) Sacroiliitis, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\" + }, + { + "displayName": "(720.9) Unspecified inflammatory spondylopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\(720.9) Unspecified inflammatory spondylopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\\\(720.9) Unspecified inflammatory spondylopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\" + }, + { + "displayName": "Other inflammatory spondylopathies (720.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\Other inflammatory spondylopathies (720.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\\\Other inflammatory spondylopathies (720.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\" + }, + { + "displayName": "(720.81) Inflammatory spondylopathies in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\Other inflammatory spondylopathies (720.8)\\(720.81) Inflammatory spondylopathies in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\\\Other inflammatory spondylopathies (720.8)\\\\(720.81) Inflammatory spondylopathies in diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\Other inflammatory spondylopathies (720.8)\\" + }, + { + "displayName": "(720.89) Other inflammatory spondylopathies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\Other inflammatory spondylopathies (720.8)\\(720.89) Other inflammatory spondylopathies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\\\Other inflammatory spondylopathies (720.8)\\\\(720.89) Other inflammatory spondylopathies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Ankylosing spondylitis and other inflammatory spondylopathies (720)\\Other inflammatory spondylopathies (720.8)\\" + }, + { + "displayName": "Intervertebral disc disorders (722)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\" + }, + { + "displayName": "(722.0) Displacement of cervical intervertebral disc without myelopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\(722.0) Displacement of cervical intervertebral disc without myelopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\" + }, + { + "displayName": "(722.2) Displacement of intervertebral disc, site unspecified, without myelopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\(722.2) Displacement of intervertebral disc, site unspecified, without myelopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\" + }, + { + "displayName": "(722.4) Degeneration of cervical intervertebral disc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\(722.4) Degeneration of cervical intervertebral disc\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\" + }, + { + "displayName": "(722.6) Degeneration of intervertebral disc, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\(722.6) Degeneration of intervertebral disc, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\" + }, + { + "displayName": "Degeneration of thoracic or lumbar intervertebral disc (722.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Degeneration of thoracic or lumbar intervertebral disc (722.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\" + }, + { + "displayName": "(722.51) Degeneration of thoracic or thoracolumbar intervertebral disc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Degeneration of thoracic or lumbar intervertebral disc (722.5)\\(722.51) Degeneration of thoracic or thoracolumbar intervertebral disc\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Intervertebral disc disorders (722)\\\\Degeneration of thoracic or lumbar intervertebral disc (722.5)\\\\(722.51) Degeneration of thoracic or thoracolumbar intervertebral disc\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Degeneration of thoracic or lumbar intervertebral disc (722.5)\\" + }, + { + "displayName": "(722.52) Degeneration of lumbar or lumbosacral intervertebral disc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Degeneration of thoracic or lumbar intervertebral disc (722.5)\\(722.52) Degeneration of lumbar or lumbosacral intervertebral disc\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Intervertebral disc disorders (722)\\\\Degeneration of thoracic or lumbar intervertebral disc (722.5)\\\\(722.52) Degeneration of lumbar or lumbosacral intervertebral disc\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Degeneration of thoracic or lumbar intervertebral disc (722.5)\\" + }, + { + "displayName": "Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\" + }, + { + "displayName": "(722.10) Displacement of lumbar intervertebral disc without myelopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\\(722.10) Displacement of lumbar intervertebral disc without myelopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Intervertebral disc disorders (722)\\\\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\\\\(722.10) Displacement of lumbar intervertebral disc without myelopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\\" + }, + { + "displayName": "(722.11) Displacement of thoracic intervertebral disc without myelopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\\(722.11) Displacement of thoracic intervertebral disc without myelopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\\" + }, + { + "displayName": "Intervertebral disc disorder with myelopathy (722.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Intervertebral disc disorder with myelopathy (722.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\" + }, + { + "displayName": "(722.70) Intervertebral disc disorder with myelopathy, unspecified region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Intervertebral disc disorder with myelopathy (722.7)\\(722.70) Intervertebral disc disorder with myelopathy, unspecified region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Intervertebral disc disorder with myelopathy (722.7)\\" + }, + { + "displayName": "(722.71) Intervertebral disc disorder with myelopathy, cervical region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Intervertebral disc disorder with myelopathy (722.7)\\(722.71) Intervertebral disc disorder with myelopathy, cervical region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Intervertebral disc disorder with myelopathy (722.7)\\" + }, + { + "displayName": "(722.72) Intervertebral disc disorder with myelopathy, thoracic region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Intervertebral disc disorder with myelopathy (722.7)\\(722.72) Intervertebral disc disorder with myelopathy, thoracic region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Intervertebral disc disorder with myelopathy (722.7)\\" + }, + { + "displayName": "(722.73) Intervertebral disc disorder with myelopathy, lumbar region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Intervertebral disc disorder with myelopathy (722.7)\\(722.73) Intervertebral disc disorder with myelopathy, lumbar region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Intervertebral disc disorder with myelopathy (722.7)\\" + }, + { + "displayName": "Other and unspecified disc disorder (722.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Other and unspecified disc disorder (722.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\" + }, + { + "displayName": "(722.90) Other and unspecified disc disorder, unspecified region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Other and unspecified disc disorder (722.9)\\(722.90) Other and unspecified disc disorder, unspecified region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Other and unspecified disc disorder (722.9)\\" + }, + { + "displayName": "(722.91) Other and unspecified disc disorder, cervical region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Other and unspecified disc disorder (722.9)\\(722.91) Other and unspecified disc disorder, cervical region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Intervertebral disc disorders (722)\\\\Other and unspecified disc disorder (722.9)\\\\(722.91) Other and unspecified disc disorder, cervical region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Other and unspecified disc disorder (722.9)\\" + }, + { + "displayName": "(722.92) Other and unspecified disc disorder, thoracic region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Other and unspecified disc disorder (722.9)\\(722.92) Other and unspecified disc disorder, thoracic region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Other and unspecified disc disorder (722.9)\\" + }, + { + "displayName": "(722.93) Other and unspecified disc disorder, lumbar region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Other and unspecified disc disorder (722.9)\\(722.93) Other and unspecified disc disorder, lumbar region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Intervertebral disc disorders (722)\\\\Other and unspecified disc disorder (722.9)\\\\(722.93) Other and unspecified disc disorder, lumbar region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Other and unspecified disc disorder (722.9)\\" + }, + { + "displayName": "Postlaminectomy syndrome (722.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Postlaminectomy syndrome (722.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Intervertebral disc disorders (722)\\\\Postlaminectomy syndrome (722.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\" + }, + { + "displayName": "(722.80) Postlaminectomy syndrome, unspecified region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Postlaminectomy syndrome (722.8)\\(722.80) Postlaminectomy syndrome, unspecified region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Intervertebral disc disorders (722)\\\\Postlaminectomy syndrome (722.8)\\\\(722.80) Postlaminectomy syndrome, unspecified region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Postlaminectomy syndrome (722.8)\\" + }, + { + "displayName": "(722.81) Postlaminectomy syndrome, cervical region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Postlaminectomy syndrome (722.8)\\(722.81) Postlaminectomy syndrome, cervical region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Postlaminectomy syndrome (722.8)\\" + }, + { + "displayName": "(722.82) Postlaminectomy syndrome, thoracic region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Postlaminectomy syndrome (722.8)\\(722.82) Postlaminectomy syndrome, thoracic region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Postlaminectomy syndrome (722.8)\\" + }, + { + "displayName": "(722.83) Postlaminectomy syndrome, lumbar region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Postlaminectomy syndrome (722.8)\\(722.83) Postlaminectomy syndrome, lumbar region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Postlaminectomy syndrome (722.8)\\" + }, + { + "displayName": "Schmorl's nodes (722.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Schmorl's nodes (722.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\" + }, + { + "displayName": "(722.30) Schmorl's nodes, unspecified region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Schmorl's nodes (722.3)\\(722.30) Schmorl's nodes, unspecified region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Schmorl's nodes (722.3)\\" + }, + { + "displayName": "(722.31) Schmorl's nodes, thoracic region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Schmorl's nodes (722.3)\\(722.31) Schmorl's nodes, thoracic region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Intervertebral disc disorders (722)\\\\Schmorl's nodes (722.3)\\\\(722.31) Schmorl's nodes, thoracic region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Schmorl's nodes (722.3)\\" + }, + { + "displayName": "(722.32) Schmorl's nodes, lumbar region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Schmorl's nodes (722.3)\\(722.32) Schmorl's nodes, lumbar region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Schmorl's nodes (722.3)\\" + }, + { + "displayName": "(722.39) Schmorl's nodes, other region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Schmorl's nodes (722.3)\\(722.39) Schmorl's nodes, other region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Intervertebral disc disorders (722)\\\\Schmorl's nodes (722.3)\\\\(722.39) Schmorl's nodes, other region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Intervertebral disc disorders (722)\\Schmorl's nodes (722.3)\\" + }, + { + "displayName": "Other and unspecified disorders of back (724)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other and unspecified disorders of back (724)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\" + }, + { + "displayName": "(724.1) Pain in thoracic spine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\(724.1) Pain in thoracic spine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other and unspecified disorders of back (724)\\\\(724.1) Pain in thoracic spine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\" + }, + { + "displayName": "(724.2) Lumbago", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\(724.2) Lumbago\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\" + }, + { + "displayName": "(724.3) Sciatica", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\(724.3) Sciatica\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\" + }, + { + "displayName": "(724.4) Thoracic or lumbosacral neuritis or radiculitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\(724.4) Thoracic or lumbosacral neuritis or radiculitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\" + }, + { + "displayName": "(724.5) Backache, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\(724.5) Backache, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\" + }, + { + "displayName": "(724.6) Disorders of sacrum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\(724.6) Disorders of sacrum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\" + }, + { + "displayName": "(724.8) Other symptoms referable to back", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\(724.8) Other symptoms referable to back\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other and unspecified disorders of back (724)\\\\(724.8) Other symptoms referable to back\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\" + }, + { + "displayName": "(724.9) Other unspecified back disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\(724.9) Other unspecified back disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other and unspecified disorders of back (724)\\\\(724.9) Other unspecified back disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\" + }, + { + "displayName": "Disorders of coccyx (724.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Disorders of coccyx (724.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\" + }, + { + "displayName": "(724.70) Unspecified disorder of coccyx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Disorders of coccyx (724.7)\\(724.70) Unspecified disorder of coccyx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Disorders of coccyx (724.7)\\" + }, + { + "displayName": "(724.71) Hypermobility of coccyx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Disorders of coccyx (724.7)\\(724.71) Hypermobility of coccyx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Disorders of coccyx (724.7)\\" + }, + { + "displayName": "(724.79) Other disorders of coccyx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Disorders of coccyx (724.7)\\(724.79) Other disorders of coccyx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Disorders of coccyx (724.7)\\" + }, + { + "displayName": "Spinal stenosis, other than cervical (724.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Spinal stenosis, other than cervical (724.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\" + }, + { + "displayName": "(724.00) Spinal stenosis, unspecified region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Spinal stenosis, other than cervical (724.0)\\(724.00) Spinal stenosis, unspecified region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Spinal stenosis, other than cervical (724.0)\\" + }, + { + "displayName": "(724.01) Spinal stenosis, thoracic region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Spinal stenosis, other than cervical (724.0)\\(724.01) Spinal stenosis, thoracic region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other and unspecified disorders of back (724)\\\\Spinal stenosis, other than cervical (724.0)\\\\(724.01) Spinal stenosis, thoracic region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Spinal stenosis, other than cervical (724.0)\\" + }, + { + "displayName": "(724.02) Spinal stenosis, lumbar region, without neurogenic claudication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Spinal stenosis, other than cervical (724.0)\\(724.02) Spinal stenosis, lumbar region, without neurogenic claudication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other and unspecified disorders of back (724)\\\\Spinal stenosis, other than cervical (724.0)\\\\(724.02) Spinal stenosis, lumbar region, without neurogenic claudication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Spinal stenosis, other than cervical (724.0)\\" + }, + { + "displayName": "(724.03) Spinal stenosis, lumbar region, with neurogenic claudication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Spinal stenosis, other than cervical (724.0)\\(724.03) Spinal stenosis, lumbar region, with neurogenic claudication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other and unspecified disorders of back (724)\\\\Spinal stenosis, other than cervical (724.0)\\\\(724.03) Spinal stenosis, lumbar region, with neurogenic claudication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Spinal stenosis, other than cervical (724.0)\\" + }, + { + "displayName": "(724.09) Spinal stenosis, other region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Spinal stenosis, other than cervical (724.0)\\(724.09) Spinal stenosis, other region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other and unspecified disorders of back (724)\\\\Spinal stenosis, other than cervical (724.0)\\\\(724.09) Spinal stenosis, other region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other and unspecified disorders of back (724)\\Spinal stenosis, other than cervical (724.0)\\" + }, + { + "displayName": "Other disorders of cervical region (723)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other disorders of cervical region (723)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\" + }, + { + "displayName": "(723.0) Spinal stenosis in cervical region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\(723.0) Spinal stenosis in cervical region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\" + }, + { + "displayName": "(723.1) Cervicalgia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\(723.1) Cervicalgia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\" + }, + { + "displayName": "(723.2) Cervicocranial syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\(723.2) Cervicocranial syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\" + }, + { + "displayName": "(723.3) Cervicobrachial syndrome (diffuse)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\(723.3) Cervicobrachial syndrome (diffuse)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\" + }, + { + "displayName": "(723.4) Brachial neuritis or radiculitis NOS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\(723.4) Brachial neuritis or radiculitis NOS\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\" + }, + { + "displayName": "(723.5) Torticollis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\(723.5) Torticollis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\" + }, + { + "displayName": "(723.6) Panniculitis specified as affecting neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\(723.6) Panniculitis specified as affecting neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\" + }, + { + "displayName": "(723.7) Ossification of posterior longitudinal ligament in cervical region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\(723.7) Ossification of posterior longitudinal ligament in cervical region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other disorders of cervical region (723)\\\\(723.7) Ossification of posterior longitudinal ligament in cervical region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\" + }, + { + "displayName": "(723.8) Other syndromes affecting cervical region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\(723.8) Other syndromes affecting cervical region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other disorders of cervical region (723)\\\\(723.8) Other syndromes affecting cervical region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\" + }, + { + "displayName": "(723.9) Unspecified musculoskeletal disorders and symptoms referable to neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\(723.9) Unspecified musculoskeletal disorders and symptoms referable to neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Other disorders of cervical region (723)\\\\(723.9) Unspecified musculoskeletal disorders and symptoms referable to neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Other disorders of cervical region (723)\\" + }, + { + "displayName": "Spondylosis and allied disorders (721)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\" + }, + { + "displayName": "(721.0) Cervical spondylosis without myelopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\(721.0) Cervical spondylosis without myelopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\" + }, + { + "displayName": "(721.1) Cervical spondylosis with myelopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\(721.1) Cervical spondylosis with myelopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\" + }, + { + "displayName": "(721.2) Thoracic spondylosis without myelopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\(721.2) Thoracic spondylosis without myelopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\" + }, + { + "displayName": "(721.3) Lumbosacral spondylosis without myelopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\(721.3) Lumbosacral spondylosis without myelopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Spondylosis and allied disorders (721)\\\\(721.3) Lumbosacral spondylosis without myelopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\" + }, + { + "displayName": "(721.5) Kissing spine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\(721.5) Kissing spine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Spondylosis and allied disorders (721)\\\\(721.5) Kissing spine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\" + }, + { + "displayName": "(721.6) Ankylosing vertebral hyperostosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\(721.6) Ankylosing vertebral hyperostosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Spondylosis and allied disorders (721)\\\\(721.6) Ankylosing vertebral hyperostosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\" + }, + { + "displayName": "(721.7) Traumatic spondylopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\(721.7) Traumatic spondylopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Dorsopathies (720-724.99)\\\\Spondylosis and allied disorders (721)\\\\(721.7) Traumatic spondylopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\" + }, + { + "displayName": "(721.8) Other allied disorders of spine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\(721.8) Other allied disorders of spine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\" + }, + { + "displayName": "Spondylosis of unspecified site (721.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\Spondylosis of unspecified site (721.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\" + }, + { + "displayName": "(721.90) Spondylosis of unspecified site, without mention of myelopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\Spondylosis of unspecified site (721.9)\\(721.90) Spondylosis of unspecified site, without mention of myelopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\Spondylosis of unspecified site (721.9)\\" + }, + { + "displayName": "(721.91) Spondylosis of unspecified site, with myelopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\Spondylosis of unspecified site (721.9)\\(721.91) Spondylosis of unspecified site, with myelopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\Spondylosis of unspecified site (721.9)\\" + }, + { + "displayName": "Thoracic or lumbar spondylosis with myelopathy (721.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\Thoracic or lumbar spondylosis with myelopathy (721.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\" + }, + { + "displayName": "(721.41) Spondylosis with myelopathy, thoracic region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\Thoracic or lumbar spondylosis with myelopathy (721.4)\\(721.41) Spondylosis with myelopathy, thoracic region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\Thoracic or lumbar spondylosis with myelopathy (721.4)\\" + }, + { + "displayName": "(721.42) Spondylosis with myelopathy, lumbar region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\Thoracic or lumbar spondylosis with myelopathy (721.4)\\(721.42) Spondylosis with myelopathy, lumbar region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Dorsopathies (720-724.99)\\Spondylosis and allied disorders (721)\\Thoracic or lumbar spondylosis with myelopathy (721.4)\\" + }, + { + "displayName": "Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\" + }, + { + "displayName": "(734) Flat foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\(734) Flat foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\(734) Flat foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\" + }, + { + "displayName": "Acquired deformities of toe (735)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Acquired deformities of toe (735)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\" + }, + { + "displayName": "(735.0) Hallux valgus (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\(735.0) Hallux valgus (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\" + }, + { + "displayName": "(735.1) Hallux varus (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\(735.1) Hallux varus (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\" + }, + { + "displayName": "(735.2) Hallux rigidus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\(735.2) Hallux rigidus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\" + }, + { + "displayName": "(735.3) Hallux malleus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\(735.3) Hallux malleus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\" + }, + { + "displayName": "(735.4) Other hammer toe (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\(735.4) Other hammer toe (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\" + }, + { + "displayName": "(735.5) Claw toe (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\(735.5) Claw toe (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\" + }, + { + "displayName": "(735.8) Other acquired deformities of toe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\(735.8) Other acquired deformities of toe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Acquired deformities of toe (735)\\\\(735.8) Other acquired deformities of toe\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\" + }, + { + "displayName": "(735.9) Unspecified acquired deformity of toe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\(735.9) Unspecified acquired deformity of toe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Acquired deformities of toe (735)\\" + }, + { + "displayName": "Curvature of spine (737)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\" + }, + { + "displayName": "(737.0) Adolescent postural kyphosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\(737.0) Adolescent postural kyphosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\" + }, + { + "displayName": "(737.8) Other curvatures of spine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\(737.8) Other curvatures of spine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\(737.8) Other curvatures of spine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\" + }, + { + "displayName": "(737.9) Unspecified curvature of spine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\(737.9) Unspecified curvature of spine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\(737.9) Unspecified curvature of spine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\" + }, + { + "displayName": "Curvature of spine associated with other conditions (737.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Curvature of spine associated with other conditions (737.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Curvature of spine associated with other conditions (737.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\" + }, + { + "displayName": "(737.40) Curvature of spine, unspecified, associated with other conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Curvature of spine associated with other conditions (737.4)\\(737.40) Curvature of spine, unspecified, associated with other conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Curvature of spine associated with other conditions (737.4)\\\\(737.40) Curvature of spine, unspecified, associated with other conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Curvature of spine associated with other conditions (737.4)\\" + }, + { + "displayName": "(737.41) Kyphosis associated with other conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Curvature of spine associated with other conditions (737.4)\\(737.41) Kyphosis associated with other conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Curvature of spine associated with other conditions (737.4)\\" + }, + { + "displayName": "(737.42) Lordosis associated with other conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Curvature of spine associated with other conditions (737.4)\\(737.42) Lordosis associated with other conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Curvature of spine associated with other conditions (737.4)\\\\(737.42) Lordosis associated with other conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Curvature of spine associated with other conditions (737.4)\\" + }, + { + "displayName": "(737.43) Scoliosis associated with other conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Curvature of spine associated with other conditions (737.4)\\(737.43) Scoliosis associated with other conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Curvature of spine associated with other conditions (737.4)\\\\(737.43) Scoliosis associated with other conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Curvature of spine associated with other conditions (737.4)\\" + }, + { + "displayName": "Kyphoscoliosis and scoliosis (737.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Kyphoscoliosis and scoliosis (737.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\" + }, + { + "displayName": "(737.30) Scoliosis [and kyphoscoliosis], idiopathic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\(737.30) Scoliosis [and kyphoscoliosis], idiopathic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Kyphoscoliosis and scoliosis (737.3)\\\\(737.30) Scoliosis [and kyphoscoliosis], idiopathic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\" + }, + { + "displayName": "(737.31) Resolving infantile idiopathic scoliosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\(737.31) Resolving infantile idiopathic scoliosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Kyphoscoliosis and scoliosis (737.3)\\\\(737.31) Resolving infantile idiopathic scoliosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\" + }, + { + "displayName": "(737.32) Progressive infantile idiopathic scoliosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\(737.32) Progressive infantile idiopathic scoliosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Kyphoscoliosis and scoliosis (737.3)\\\\(737.32) Progressive infantile idiopathic scoliosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\" + }, + { + "displayName": "(737.33) Scoliosis due to radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\(737.33) Scoliosis due to radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\" + }, + { + "displayName": "(737.34) Thoracogenic scoliosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\(737.34) Thoracogenic scoliosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Kyphoscoliosis and scoliosis (737.3)\\\\(737.34) Thoracogenic scoliosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\" + }, + { + "displayName": "(737.39) Other kyphoscoliosis and scoliosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\(737.39) Other kyphoscoliosis and scoliosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphoscoliosis and scoliosis (737.3)\\" + }, + { + "displayName": "Kyphosis (acquired) (737.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphosis (acquired) (737.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Kyphosis (acquired) (737.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\" + }, + { + "displayName": "(737.10) Kyphosis (acquired) (postural)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphosis (acquired) (737.1)\\(737.10) Kyphosis (acquired) (postural)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Kyphosis (acquired) (737.1)\\\\(737.10) Kyphosis (acquired) (postural)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphosis (acquired) (737.1)\\" + }, + { + "displayName": "(737.11) Kyphosis due to radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphosis (acquired) (737.1)\\(737.11) Kyphosis due to radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Kyphosis (acquired) (737.1)\\\\(737.11) Kyphosis due to radiation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphosis (acquired) (737.1)\\" + }, + { + "displayName": "(737.12) Kyphosis, postlaminectomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphosis (acquired) (737.1)\\(737.12) Kyphosis, postlaminectomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphosis (acquired) (737.1)\\" + }, + { + "displayName": "(737.19) Other kyphosis (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphosis (acquired) (737.1)\\(737.19) Other kyphosis (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Kyphosis (acquired) (737.1)\\\\(737.19) Other kyphosis (acquired)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Kyphosis (acquired) (737.1)\\" + }, + { + "displayName": "Lordosis (acquired) (737.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Lordosis (acquired) (737.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Lordosis (acquired) (737.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\" + }, + { + "displayName": "(737.20) Lordosis (acquired) (postural)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Lordosis (acquired) (737.2)\\(737.20) Lordosis (acquired) (postural)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Lordosis (acquired) (737.2)\\" + }, + { + "displayName": "(737.21) Lordosis, postlaminectomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Lordosis (acquired) (737.2)\\(737.21) Lordosis, postlaminectomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Lordosis (acquired) (737.2)\\\\(737.21) Lordosis, postlaminectomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Lordosis (acquired) (737.2)\\" + }, + { + "displayName": "(737.22) Other postsurgical lordosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Lordosis (acquired) (737.2)\\(737.22) Other postsurgical lordosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Lordosis (acquired) (737.2)\\\\(737.22) Other postsurgical lordosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Lordosis (acquired) (737.2)\\" + }, + { + "displayName": "(737.29) Other lordosis (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Lordosis (acquired) (737.2)\\(737.29) Other lordosis (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Curvature of spine (737)\\\\Lordosis (acquired) (737.2)\\\\(737.29) Other lordosis (acquired)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Curvature of spine (737)\\Lordosis (acquired) (737.2)\\" + }, + { + "displayName": "Nonallopathic lesions, not elsewhere classified (739)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\" + }, + { + "displayName": "(739.0) Nonallopathic lesions, head region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\(739.0) Nonallopathic lesions, head region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\" + }, + { + "displayName": "(739.1) Nonallopathic lesions, cervical region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\(739.1) Nonallopathic lesions, cervical region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\" + }, + { + "displayName": "(739.2) Nonallopathic lesions, thoracic region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\(739.2) Nonallopathic lesions, thoracic region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\" + }, + { + "displayName": "(739.3) Nonallopathic lesions, lumbar region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\(739.3) Nonallopathic lesions, lumbar region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Nonallopathic lesions, not elsewhere classified (739)\\\\(739.3) Nonallopathic lesions, lumbar region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\" + }, + { + "displayName": "(739.4) Nonallopathic lesions, sacral region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\(739.4) Nonallopathic lesions, sacral region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\" + }, + { + "displayName": "(739.5) Nonallopathic lesions, pelvic region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\(739.5) Nonallopathic lesions, pelvic region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Nonallopathic lesions, not elsewhere classified (739)\\\\(739.5) Nonallopathic lesions, pelvic region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\" + }, + { + "displayName": "(739.6) Nonallopathic lesions, lower extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\(739.6) Nonallopathic lesions, lower extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\" + }, + { + "displayName": "(739.7) Nonallopathic lesions, upper extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\(739.7) Nonallopathic lesions, upper extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Nonallopathic lesions, not elsewhere classified (739)\\\\(739.7) Nonallopathic lesions, upper extremities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\" + }, + { + "displayName": "(739.8) Nonallopathic lesions, rib cage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\(739.8) Nonallopathic lesions, rib cage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\" + }, + { + "displayName": "(739.9) Nonallopathic lesions, abdomen and other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\(739.9) Nonallopathic lesions, abdomen and other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Nonallopathic lesions, not elsewhere classified (739)\\" + }, + { + "displayName": "Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\" + }, + { + "displayName": "(731.0) Osteitis deformans without mention of bone tumor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\\(731.0) Osteitis deformans without mention of bone tumor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\\" + }, + { + "displayName": "(731.1) Osteitis deformans in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\\(731.1) Osteitis deformans in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\\" + }, + { + "displayName": "(731.2) Hypertrophic pulmonary osteoarthropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\\(731.2) Hypertrophic pulmonary osteoarthropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\\" + }, + { + "displayName": "(731.3) Major osseous defects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\\(731.3) Major osseous defects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\\" + }, + { + "displayName": "(731.8) Other bone involvement in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\\(731.8) Other bone involvement in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\\" + }, + { + "displayName": "Osteochondropathies (732)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\" + }, + { + "displayName": "(732.0) Juvenile osteochondrosis of spine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\(732.0) Juvenile osteochondrosis of spine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\" + }, + { + "displayName": "(732.1) Juvenile osteochondrosis of hip and pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\(732.1) Juvenile osteochondrosis of hip and pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\" + }, + { + "displayName": "(732.2) Nontraumatic slipped upper femoral epiphysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\(732.2) Nontraumatic slipped upper femoral epiphysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\" + }, + { + "displayName": "(732.3) Juvenile osteochondrosis of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\(732.3) Juvenile osteochondrosis of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteochondropathies (732)\\\\(732.3) Juvenile osteochondrosis of upper extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\" + }, + { + "displayName": "(732.4) Juvenile osteochondrosis of lower extremity, excluding foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\(732.4) Juvenile osteochondrosis of lower extremity, excluding foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteochondropathies (732)\\\\(732.4) Juvenile osteochondrosis of lower extremity, excluding foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\" + }, + { + "displayName": "(732.5) Juvenile osteochondrosis of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\(732.5) Juvenile osteochondrosis of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\" + }, + { + "displayName": "(732.6) Other juvenile osteochondrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\(732.6) Other juvenile osteochondrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\" + }, + { + "displayName": "(732.7) Osteochondritis dissecans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\(732.7) Osteochondritis dissecans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\" + }, + { + "displayName": "(732.8) Other specified forms of osteochondropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\(732.8) Other specified forms of osteochondropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\" + }, + { + "displayName": "(732.9) Unspecified osteochondropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\(732.9) Unspecified osteochondropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteochondropathies (732)\\\\(732.9) Unspecified osteochondropathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteochondropathies (732)\\" + }, + { + "displayName": "Osteomyelitis, periostitis, and other infections involving bone (730)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\" + }, + { + "displayName": "Acute osteomyelitis (730.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Acute osteomyelitis (730.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\" + }, + { + "displayName": "(730.00) Acute osteomyelitis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\(730.00) Acute osteomyelitis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Acute osteomyelitis (730.0)\\\\(730.00) Acute osteomyelitis, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\" + }, + { + "displayName": "(730.01) Acute osteomyelitis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\(730.01) Acute osteomyelitis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\" + }, + { + "displayName": "(730.02) Acute osteomyelitis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\(730.02) Acute osteomyelitis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Acute osteomyelitis (730.0)\\\\(730.02) Acute osteomyelitis, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\" + }, + { + "displayName": "(730.03) Acute osteomyelitis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\(730.03) Acute osteomyelitis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\" + }, + { + "displayName": "(730.04) Acute osteomyelitis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\(730.04) Acute osteomyelitis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\" + }, + { + "displayName": "(730.05) Acute osteomyelitis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\(730.05) Acute osteomyelitis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\" + }, + { + "displayName": "(730.06) Acute osteomyelitis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\(730.06) Acute osteomyelitis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\" + }, + { + "displayName": "(730.07) Acute osteomyelitis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\(730.07) Acute osteomyelitis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\" + }, + { + "displayName": "(730.08) Acute osteomyelitis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\(730.08) Acute osteomyelitis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\" + }, + { + "displayName": "(730.09) Acute osteomyelitis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\(730.09) Acute osteomyelitis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Acute osteomyelitis (730.0)\\" + }, + { + "displayName": "Chronic osteomyelitis (730.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Chronic osteomyelitis (730.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\" + }, + { + "displayName": "(730.10) Chronic osteomyelitis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\(730.10) Chronic osteomyelitis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\" + }, + { + "displayName": "(730.11) Chronic osteomyelitis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\(730.11) Chronic osteomyelitis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Chronic osteomyelitis (730.1)\\\\(730.11) Chronic osteomyelitis, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\" + }, + { + "displayName": "(730.12) Chronic osteomyelitis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\(730.12) Chronic osteomyelitis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Chronic osteomyelitis (730.1)\\\\(730.12) Chronic osteomyelitis, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\" + }, + { + "displayName": "(730.13) Chronic osteomyelitis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\(730.13) Chronic osteomyelitis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Chronic osteomyelitis (730.1)\\\\(730.13) Chronic osteomyelitis, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\" + }, + { + "displayName": "(730.14) Chronic osteomyelitis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\(730.14) Chronic osteomyelitis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\" + }, + { + "displayName": "(730.15) Chronic osteomyelitis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\(730.15) Chronic osteomyelitis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Chronic osteomyelitis (730.1)\\\\(730.15) Chronic osteomyelitis, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\" + }, + { + "displayName": "(730.16) Chronic osteomyelitis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\(730.16) Chronic osteomyelitis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Chronic osteomyelitis (730.1)\\\\(730.16) Chronic osteomyelitis, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\" + }, + { + "displayName": "(730.17) Chronic osteomyelitis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\(730.17) Chronic osteomyelitis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Chronic osteomyelitis (730.1)\\\\(730.17) Chronic osteomyelitis, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\" + }, + { + "displayName": "(730.18) Chronic osteomyelitis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\(730.18) Chronic osteomyelitis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Chronic osteomyelitis (730.1)\\\\(730.18) Chronic osteomyelitis, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\" + }, + { + "displayName": "(730.19) Chronic osteomyelitis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\(730.19) Chronic osteomyelitis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Chronic osteomyelitis (730.1)\\\\(730.19) Chronic osteomyelitis, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Chronic osteomyelitis (730.1)\\" + }, + { + "displayName": "Osteopathy resulting from poliomyelitis (730.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\" + }, + { + "displayName": "(730.70) Osteopathy resulting from poliomyelitis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\(730.70) Osteopathy resulting from poliomyelitis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\" + }, + { + "displayName": "(730.71) Osteopathy resulting from poliomyelitis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\(730.71) Osteopathy resulting from poliomyelitis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\" + }, + { + "displayName": "(730.72) Osteopathy resulting from poliomyelitis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\(730.72) Osteopathy resulting from poliomyelitis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\" + }, + { + "displayName": "(730.73) Osteopathy resulting from poliomyelitis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\(730.73) Osteopathy resulting from poliomyelitis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\" + }, + { + "displayName": "(730.74) Osteopathy resulting from poliomyelitis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\(730.74) Osteopathy resulting from poliomyelitis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\" + }, + { + "displayName": "(730.75) Osteopathy resulting from poliomyelitis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\(730.75) Osteopathy resulting from poliomyelitis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Osteopathy resulting from poliomyelitis (730.7)\\\\(730.75) Osteopathy resulting from poliomyelitis, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\" + }, + { + "displayName": "(730.76) Osteopathy resulting from poliomyelitis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\(730.76) Osteopathy resulting from poliomyelitis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Osteopathy resulting from poliomyelitis (730.7)\\\\(730.76) Osteopathy resulting from poliomyelitis, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\" + }, + { + "displayName": "(730.77) Osteopathy resulting from poliomyelitis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\(730.77) Osteopathy resulting from poliomyelitis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Osteopathy resulting from poliomyelitis (730.7)\\\\(730.77) Osteopathy resulting from poliomyelitis, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\" + }, + { + "displayName": "(730.78) Osteopathy resulting from poliomyelitis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\(730.78) Osteopathy resulting from poliomyelitis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Osteopathy resulting from poliomyelitis (730.7)\\\\(730.78) Osteopathy resulting from poliomyelitis, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\" + }, + { + "displayName": "(730.79) Osteopathy resulting from poliomyelitis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\(730.79) Osteopathy resulting from poliomyelitis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Osteopathy resulting from poliomyelitis (730.7)\\\\(730.79) Osteopathy resulting from poliomyelitis, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Osteopathy resulting from poliomyelitis (730.7)\\" + }, + { + "displayName": "Other infections involving bone in disease classified elsewhere (730.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Other infections involving bone in disease classified elsewhere (730.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\" + }, + { + "displayName": "(730.80) Other infections involving bone in diseases classified elsewhere, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\(730.80) Other infections involving bone in diseases classified elsewhere, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\" + }, + { + "displayName": "(730.81) Other infections involving bone in diseases classified elsewhere, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\(730.81) Other infections involving bone in diseases classified elsewhere, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\" + }, + { + "displayName": "(730.82) Other infections involving bone in diseases classified elsewhere, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\(730.82) Other infections involving bone in diseases classified elsewhere, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\" + }, + { + "displayName": "(730.83) Other infections involving bone in diseases classified elsewhere, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\(730.83) Other infections involving bone in diseases classified elsewhere, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\" + }, + { + "displayName": "(730.84) Other infections involving bone in diseases classified elsewhere, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\(730.84) Other infections involving bone in diseases classified elsewhere, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\" + }, + { + "displayName": "(730.85) Other infections involving bone in diseases classified elsewhere, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\(730.85) Other infections involving bone in diseases classified elsewhere, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\" + }, + { + "displayName": "(730.86) Other infections involving bone in diseases classified elsewhere, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\(730.86) Other infections involving bone in diseases classified elsewhere, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\" + }, + { + "displayName": "(730.87) Other infections involving bone in diseases classified elsewhere, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\(730.87) Other infections involving bone in diseases classified elsewhere, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\" + }, + { + "displayName": "(730.88) Other infections involving bone in diseases classified elsewhere, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\(730.88) Other infections involving bone in diseases classified elsewhere, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Other infections involving bone in disease classified elsewhere (730.8)\\\\(730.88) Other infections involving bone in diseases classified elsewhere, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\" + }, + { + "displayName": "(730.89) Other infections involving bone in diseases classified elsewhere, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\(730.89) Other infections involving bone in diseases classified elsewhere, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Other infections involving bone in disease classified elsewhere (730.8)\\\\(730.89) Other infections involving bone in diseases classified elsewhere, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Other infections involving bone in disease classified elsewhere (730.8)\\" + }, + { + "displayName": "Periostitis without mention of osteomyelitis (730.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Periostitis without mention of osteomyelitis (730.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\" + }, + { + "displayName": "(730.30) Periostitis, without mention of osteomyelitis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\(730.30) Periostitis, without mention of osteomyelitis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\" + }, + { + "displayName": "(730.31) Periostitis, without mention of osteomyelitis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\(730.31) Periostitis, without mention of osteomyelitis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Periostitis without mention of osteomyelitis (730.3)\\\\(730.31) Periostitis, without mention of osteomyelitis, shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\" + }, + { + "displayName": "(730.32) Periostitis, without mention of osteomyelitis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\(730.32) Periostitis, without mention of osteomyelitis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Periostitis without mention of osteomyelitis (730.3)\\\\(730.32) Periostitis, without mention of osteomyelitis, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\" + }, + { + "displayName": "(730.33) Periostitis, without mention of osteomyelitis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\(730.33) Periostitis, without mention of osteomyelitis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Periostitis without mention of osteomyelitis (730.3)\\\\(730.33) Periostitis, without mention of osteomyelitis, forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\" + }, + { + "displayName": "(730.34) Periostitis, without mention of osteomyelitis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\(730.34) Periostitis, without mention of osteomyelitis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\" + }, + { + "displayName": "(730.35) Periostitis, without mention of osteomyelitis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\(730.35) Periostitis, without mention of osteomyelitis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Periostitis without mention of osteomyelitis (730.3)\\\\(730.35) Periostitis, without mention of osteomyelitis, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\" + }, + { + "displayName": "(730.36) Periostitis, without mention of osteomyelitis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\(730.36) Periostitis, without mention of osteomyelitis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Periostitis without mention of osteomyelitis (730.3)\\\\(730.36) Periostitis, without mention of osteomyelitis, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\" + }, + { + "displayName": "(730.37) Periostitis, without mention of osteomyelitis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\(730.37) Periostitis, without mention of osteomyelitis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\" + }, + { + "displayName": "(730.38) Periostitis, without mention of osteomyelitis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\(730.38) Periostitis, without mention of osteomyelitis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Periostitis without mention of osteomyelitis (730.3)\\\\(730.38) Periostitis, without mention of osteomyelitis, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\" + }, + { + "displayName": "(730.39) Periostitis, without mention of osteomyelitis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\(730.39) Periostitis, without mention of osteomyelitis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Periostitis without mention of osteomyelitis (730.3)\\\\(730.39) Periostitis, without mention of osteomyelitis, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Periostitis without mention of osteomyelitis (730.3)\\" + }, + { + "displayName": "Unspecified infection of bone (730.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Unspecified infection of bone (730.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\" + }, + { + "displayName": "(730.90) Unspecified infection of bone, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\(730.90) Unspecified infection of bone, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Unspecified infection of bone (730.9)\\\\(730.90) Unspecified infection of bone, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\" + }, + { + "displayName": "(730.91) Unspecified infection of bone, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\(730.91) Unspecified infection of bone, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\" + }, + { + "displayName": "(730.92) Unspecified infection of bone, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\(730.92) Unspecified infection of bone, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\" + }, + { + "displayName": "(730.93) Unspecified infection of bone, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\(730.93) Unspecified infection of bone, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\" + }, + { + "displayName": "(730.94) Unspecified infection of bone, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\(730.94) Unspecified infection of bone, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\" + }, + { + "displayName": "(730.95) Unspecified infection of bone, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\(730.95) Unspecified infection of bone, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Unspecified infection of bone (730.9)\\\\(730.95) Unspecified infection of bone, pelvic region and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\" + }, + { + "displayName": "(730.96) Unspecified infection of bone, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\(730.96) Unspecified infection of bone, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Unspecified infection of bone (730.9)\\\\(730.96) Unspecified infection of bone, lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\" + }, + { + "displayName": "(730.97) Unspecified infection of bone, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\(730.97) Unspecified infection of bone, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Unspecified infection of bone (730.9)\\\\(730.97) Unspecified infection of bone, ankle and foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\" + }, + { + "displayName": "(730.98) Unspecified infection of bone, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\(730.98) Unspecified infection of bone, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Unspecified infection of bone (730.9)\\\\(730.98) Unspecified infection of bone, other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\" + }, + { + "displayName": "(730.99) Unspecified infection of bone, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\(730.99) Unspecified infection of bone, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Unspecified infection of bone (730.9)\\\\(730.99) Unspecified infection of bone, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified infection of bone (730.9)\\" + }, + { + "displayName": "Unspecified osteomyelitis (730.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Unspecified osteomyelitis (730.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\" + }, + { + "displayName": "(730.20) Unspecified osteomyelitis, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\(730.20) Unspecified osteomyelitis, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Unspecified osteomyelitis (730.2)\\\\(730.20) Unspecified osteomyelitis, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\" + }, + { + "displayName": "(730.21) Unspecified osteomyelitis, shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\(730.21) Unspecified osteomyelitis, shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\" + }, + { + "displayName": "(730.22) Unspecified osteomyelitis, upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\(730.22) Unspecified osteomyelitis, upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Unspecified osteomyelitis (730.2)\\\\(730.22) Unspecified osteomyelitis, upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\" + }, + { + "displayName": "(730.23) Unspecified osteomyelitis, forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\(730.23) Unspecified osteomyelitis, forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\" + }, + { + "displayName": "(730.24) Unspecified osteomyelitis, hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\(730.24) Unspecified osteomyelitis, hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\" + }, + { + "displayName": "(730.25) Unspecified osteomyelitis, pelvic region and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\(730.25) Unspecified osteomyelitis, pelvic region and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\" + }, + { + "displayName": "(730.26) Unspecified osteomyelitis, lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\(730.26) Unspecified osteomyelitis, lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\" + }, + { + "displayName": "(730.27) Unspecified osteomyelitis, ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\(730.27) Unspecified osteomyelitis, ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\" + }, + { + "displayName": "(730.28) Unspecified osteomyelitis, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\(730.28) Unspecified osteomyelitis, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\" + }, + { + "displayName": "(730.29) Unspecified osteomyelitis, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\(730.29) Unspecified osteomyelitis, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Osteomyelitis, periostitis, and other infections involving bone (730)\\\\Unspecified osteomyelitis (730.2)\\\\(730.29) Unspecified osteomyelitis, multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Osteomyelitis, periostitis, and other infections involving bone (730)\\Unspecified osteomyelitis (730.2)\\" + }, + { + "displayName": "Other acquired deformities of limbs (736)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\" + }, + { + "displayName": "(736.1) Mallet finger", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\(736.1) Mallet finger\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\" + }, + { + "displayName": "(736.5) Genu recurvatum (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\(736.5) Genu recurvatum (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\" + }, + { + "displayName": "(736.6) Other acquired deformities of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\(736.6) Other acquired deformities of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\" + }, + { + "displayName": "(736.9) Acquired deformity of limb, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\(736.9) Acquired deformity of limb, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\" + }, + { + "displayName": "Acquired deformities of forearm, excluding fingers (736.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Acquired deformities of forearm, excluding fingers (736.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\" + }, + { + "displayName": "(736.00) Unspecified deformity of forearm, excluding fingers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\(736.00) Unspecified deformity of forearm, excluding fingers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Acquired deformities of forearm, excluding fingers (736.0)\\\\(736.00) Unspecified deformity of forearm, excluding fingers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\" + }, + { + "displayName": "(736.01) Cubitus valgus (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\(736.01) Cubitus valgus (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\" + }, + { + "displayName": "(736.02) Cubitus varus (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\(736.02) Cubitus varus (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Acquired deformities of forearm, excluding fingers (736.0)\\\\(736.02) Cubitus varus (acquired)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\" + }, + { + "displayName": "(736.03) Valgus deformity of wrist (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\(736.03) Valgus deformity of wrist (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Acquired deformities of forearm, excluding fingers (736.0)\\\\(736.03) Valgus deformity of wrist (acquired)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\" + }, + { + "displayName": "(736.04) Varus deformity of wrist (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\(736.04) Varus deformity of wrist (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Acquired deformities of forearm, excluding fingers (736.0)\\\\(736.04) Varus deformity of wrist (acquired)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\" + }, + { + "displayName": "(736.05) Wrist drop (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\(736.05) Wrist drop (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Acquired deformities of forearm, excluding fingers (736.0)\\\\(736.05) Wrist drop (acquired)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\" + }, + { + "displayName": "(736.06) Claw hand (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\(736.06) Claw hand (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\" + }, + { + "displayName": "(736.07) Club hand, acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\(736.07) Club hand, acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\" + }, + { + "displayName": "(736.09) Other acquired deformities of forearm, excluding fingers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\(736.09) Other acquired deformities of forearm, excluding fingers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of forearm, excluding fingers (736.0)\\" + }, + { + "displayName": "Acquired deformities of hip (736.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of hip (736.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Acquired deformities of hip (736.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\" + }, + { + "displayName": "(736.30) Unspecified acquired deformity of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of hip (736.3)\\(736.30) Unspecified acquired deformity of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Acquired deformities of hip (736.3)\\\\(736.30) Unspecified acquired deformity of hip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of hip (736.3)\\" + }, + { + "displayName": "(736.31) Coxa valga (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of hip (736.3)\\(736.31) Coxa valga (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of hip (736.3)\\" + }, + { + "displayName": "(736.32) Coxa vara (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of hip (736.3)\\(736.32) Coxa vara (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of hip (736.3)\\" + }, + { + "displayName": "(736.39) Other acquired deformities of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of hip (736.3)\\(736.39) Other acquired deformities of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of hip (736.3)\\" + }, + { + "displayName": "Acquired deformities of other parts of limbs (736.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of other parts of limbs (736.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\" + }, + { + "displayName": "(736.81) Unequal leg length (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of other parts of limbs (736.8)\\(736.81) Unequal leg length (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Acquired deformities of other parts of limbs (736.8)\\\\(736.81) Unequal leg length (acquired)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of other parts of limbs (736.8)\\" + }, + { + "displayName": "(736.89) Other acquired deformity of other parts of limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of other parts of limbs (736.8)\\(736.89) Other acquired deformity of other parts of limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Acquired deformities of other parts of limbs (736.8)\\\\(736.89) Other acquired deformity of other parts of limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Acquired deformities of other parts of limbs (736.8)\\" + }, + { + "displayName": "Genu valgum or varum (acquired) (736.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Genu valgum or varum (acquired) (736.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Genu valgum or varum (acquired) (736.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\" + }, + { + "displayName": "(736.41) Genu valgum (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Genu valgum or varum (acquired) (736.4)\\(736.41) Genu valgum (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Genu valgum or varum (acquired) (736.4)\\" + }, + { + "displayName": "(736.42) Genu varum (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Genu valgum or varum (acquired) (736.4)\\(736.42) Genu varum (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Genu valgum or varum (acquired) (736.4)\\" + }, + { + "displayName": "Other acquired deformities of ankle and foot (736.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\" + }, + { + "displayName": "(736.70) Unspecified deformity of ankle and foot, acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\(736.70) Unspecified deformity of ankle and foot, acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\" + }, + { + "displayName": "(736.71) Acquired equinovarus deformity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\(736.71) Acquired equinovarus deformity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Other acquired deformities of ankle and foot (736.7)\\\\(736.71) Acquired equinovarus deformity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\" + }, + { + "displayName": "(736.72) Equinus deformity of foot, acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\(736.72) Equinus deformity of foot, acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Other acquired deformities of ankle and foot (736.7)\\\\(736.72) Equinus deformity of foot, acquired\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\" + }, + { + "displayName": "(736.73) Cavus deformity of foot, acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\(736.73) Cavus deformity of foot, acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Other acquired deformities of ankle and foot (736.7)\\\\(736.73) Cavus deformity of foot, acquired\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\" + }, + { + "displayName": "(736.74) Claw foot, acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\(736.74) Claw foot, acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\" + }, + { + "displayName": "(736.75) Cavovarus deformity of foot, acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\(736.75) Cavovarus deformity of foot, acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\" + }, + { + "displayName": "(736.76) Other acquired calcaneus deformity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\(736.76) Other acquired calcaneus deformity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\" + }, + { + "displayName": "(736.79) Other acquired deformities of ankle and foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\(736.79) Other acquired deformities of ankle and foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of ankle and foot (736.7)\\" + }, + { + "displayName": "Other acquired deformities of finger (736.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of finger (736.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Other acquired deformities of finger (736.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\" + }, + { + "displayName": "(736.20) Unspecified deformity of finger", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of finger (736.2)\\(736.20) Unspecified deformity of finger\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Other acquired deformities of finger (736.2)\\\\(736.20) Unspecified deformity of finger\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of finger (736.2)\\" + }, + { + "displayName": "(736.21) Boutonniere deformity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of finger (736.2)\\(736.21) Boutonniere deformity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of finger (736.2)\\" + }, + { + "displayName": "(736.22) Swan-neck deformity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of finger (736.2)\\(736.22) Swan-neck deformity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired deformities of limbs (736)\\\\Other acquired deformities of finger (736.2)\\\\(736.22) Swan-neck deformity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of finger (736.2)\\" + }, + { + "displayName": "(736.29) Other acquired deformities of finger", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of finger (736.2)\\(736.29) Other acquired deformities of finger\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired deformities of limbs (736)\\Other acquired deformities of finger (736.2)\\" + }, + { + "displayName": "Other acquired musculoskeletal deformity (738)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired musculoskeletal deformity (738)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\" + }, + { + "displayName": "(738.0) Acquired deformity of nose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\(738.0) Acquired deformity of nose\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\" + }, + { + "displayName": "(738.2) Acquired deformity of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\(738.2) Acquired deformity of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired musculoskeletal deformity (738)\\\\(738.2) Acquired deformity of neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\" + }, + { + "displayName": "(738.3) Acquired deformity of chest and rib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\(738.3) Acquired deformity of chest and rib\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired musculoskeletal deformity (738)\\\\(738.3) Acquired deformity of chest and rib\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\" + }, + { + "displayName": "(738.4) Acquired spondylolisthesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\(738.4) Acquired spondylolisthesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\" + }, + { + "displayName": "(738.5) Other acquired deformity of back or spine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\(738.5) Other acquired deformity of back or spine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired musculoskeletal deformity (738)\\\\(738.5) Other acquired deformity of back or spine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\" + }, + { + "displayName": "(738.6) Acquired deformity of pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\(738.6) Acquired deformity of pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\" + }, + { + "displayName": "(738.7) Cauliflower ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\(738.7) Cauliflower ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired musculoskeletal deformity (738)\\\\(738.7) Cauliflower ear\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\" + }, + { + "displayName": "(738.8) Acquired deformity of other specified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\(738.8) Acquired deformity of other specified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired musculoskeletal deformity (738)\\\\(738.8) Acquired deformity of other specified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\" + }, + { + "displayName": "(738.9) Acquired deformity of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\(738.9) Acquired deformity of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired musculoskeletal deformity (738)\\\\(738.9) Acquired deformity of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\" + }, + { + "displayName": "Other acquired deformity of head (738.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\Other acquired deformity of head (738.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\" + }, + { + "displayName": "(738.10) Unspecified acquired deformity of head", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\Other acquired deformity of head (738.1)\\(738.10) Unspecified acquired deformity of head\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired musculoskeletal deformity (738)\\\\Other acquired deformity of head (738.1)\\\\(738.10) Unspecified acquired deformity of head\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\Other acquired deformity of head (738.1)\\" + }, + { + "displayName": "(738.11) Zygomatic hyperplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\Other acquired deformity of head (738.1)\\(738.11) Zygomatic hyperplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired musculoskeletal deformity (738)\\\\Other acquired deformity of head (738.1)\\\\(738.11) Zygomatic hyperplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\Other acquired deformity of head (738.1)\\" + }, + { + "displayName": "(738.12) Zygomatic hypoplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\Other acquired deformity of head (738.1)\\(738.12) Zygomatic hypoplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other acquired musculoskeletal deformity (738)\\\\Other acquired deformity of head (738.1)\\\\(738.12) Zygomatic hypoplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\Other acquired deformity of head (738.1)\\" + }, + { + "displayName": "(738.19) Other specified acquired deformity of head", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\Other acquired deformity of head (738.1)\\(738.19) Other specified acquired deformity of head\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other acquired musculoskeletal deformity (738)\\Other acquired deformity of head (738.1)\\" + }, + { + "displayName": "Other disorders of bone and cartilage (733)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\" + }, + { + "displayName": "(733.3) Hyperostosis of skull", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\(733.3) Hyperostosis of skull\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\(733.3) Hyperostosis of skull\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\" + }, + { + "displayName": "(733.5) Osteitis condensans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\(733.5) Osteitis condensans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\(733.5) Osteitis condensans\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\" + }, + { + "displayName": "(733.6) Tietze's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\(733.6) Tietze's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\(733.6) Tietze's disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\" + }, + { + "displayName": "(733.7) Algoneurodystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\(733.7) Algoneurodystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\" + }, + { + "displayName": "Aseptic necrosis of bone (733.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Aseptic necrosis of bone (733.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\" + }, + { + "displayName": "(733.40) Aseptic necrosis of bone, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\(733.40) Aseptic necrosis of bone, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Aseptic necrosis of bone (733.4)\\\\(733.40) Aseptic necrosis of bone, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\" + }, + { + "displayName": "(733.41) Aseptic necrosis of head of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\(733.41) Aseptic necrosis of head of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Aseptic necrosis of bone (733.4)\\\\(733.41) Aseptic necrosis of head of humerus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\" + }, + { + "displayName": "(733.42) Aseptic necrosis of head and neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\(733.42) Aseptic necrosis of head and neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\" + }, + { + "displayName": "(733.43) Aseptic necrosis of medial femoral condyle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\(733.43) Aseptic necrosis of medial femoral condyle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Aseptic necrosis of bone (733.4)\\\\(733.43) Aseptic necrosis of medial femoral condyle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\" + }, + { + "displayName": "(733.44) Aseptic necrosis of talus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\(733.44) Aseptic necrosis of talus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Aseptic necrosis of bone (733.4)\\\\(733.44) Aseptic necrosis of talus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\" + }, + { + "displayName": "(733.45) Aseptic necrosis of bone, jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\(733.45) Aseptic necrosis of bone, jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Aseptic necrosis of bone (733.4)\\\\(733.45) Aseptic necrosis of bone, jaw\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\" + }, + { + "displayName": "(733.49) Aseptic necrosis of bone, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\(733.49) Aseptic necrosis of bone, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Aseptic necrosis of bone (733.4)\\\\(733.49) Aseptic necrosis of bone, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Aseptic necrosis of bone (733.4)\\" + }, + { + "displayName": "Cyst of bone (733.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Cyst of bone (733.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\" + }, + { + "displayName": "(733.20) Cyst of bone (localized), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Cyst of bone (733.2)\\(733.20) Cyst of bone (localized), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Cyst of bone (733.2)\\\\(733.20) Cyst of bone (localized), unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Cyst of bone (733.2)\\" + }, + { + "displayName": "(733.21) Solitary bone cyst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Cyst of bone (733.2)\\(733.21) Solitary bone cyst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Cyst of bone (733.2)\\" + }, + { + "displayName": "(733.22) Aneurysmal bone cyst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Cyst of bone (733.2)\\(733.22) Aneurysmal bone cyst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Cyst of bone (733.2)\\\\(733.22) Aneurysmal bone cyst\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Cyst of bone (733.2)\\" + }, + { + "displayName": "(733.29) Other bone cyst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Cyst of bone (733.2)\\(733.29) Other bone cyst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Cyst of bone (733.2)\\\\(733.29) Other bone cyst\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Cyst of bone (733.2)\\" + }, + { + "displayName": "Malunion and nonunion of fracture (733.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Malunion and nonunion of fracture (733.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\" + }, + { + "displayName": "(733.81) Malunion of fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Malunion and nonunion of fracture (733.8)\\(733.81) Malunion of fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Malunion and nonunion of fracture (733.8)\\\\(733.81) Malunion of fracture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Malunion and nonunion of fracture (733.8)\\" + }, + { + "displayName": "(733.82) Nonunion of fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Malunion and nonunion of fracture (733.8)\\(733.82) Nonunion of fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Malunion and nonunion of fracture (733.8)\\\\(733.82) Nonunion of fracture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Malunion and nonunion of fracture (733.8)\\" + }, + { + "displayName": "Osteoporosis (733.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Osteoporosis (733.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Osteoporosis (733.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\" + }, + { + "displayName": "(733.00) Osteoporosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Osteoporosis (733.0)\\(733.00) Osteoporosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Osteoporosis (733.0)\\" + }, + { + "displayName": "(733.01) Senile osteoporosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Osteoporosis (733.0)\\(733.01) Senile osteoporosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Osteoporosis (733.0)\\\\(733.01) Senile osteoporosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Osteoporosis (733.0)\\" + }, + { + "displayName": "(733.02) Idiopathic osteoporosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Osteoporosis (733.0)\\(733.02) Idiopathic osteoporosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Osteoporosis (733.0)\\\\(733.02) Idiopathic osteoporosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Osteoporosis (733.0)\\" + }, + { + "displayName": "(733.03) Disuse osteoporosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Osteoporosis (733.0)\\(733.03) Disuse osteoporosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Osteoporosis (733.0)\\\\(733.03) Disuse osteoporosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Osteoporosis (733.0)\\" + }, + { + "displayName": "(733.09) Other osteoporosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Osteoporosis (733.0)\\(733.09) Other osteoporosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Osteoporosis (733.0)\\" + }, + { + "displayName": "Other and unspecified disorders of bone and cartilage (733.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Other and unspecified disorders of bone and cartilage (733.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\" + }, + { + "displayName": "(733.90) Disorder of bone and cartilage, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\(733.90) Disorder of bone and cartilage, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Other and unspecified disorders of bone and cartilage (733.9)\\\\(733.90) Disorder of bone and cartilage, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\" + }, + { + "displayName": "(733.91) Arrest of bone development or growth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\(733.91) Arrest of bone development or growth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\" + }, + { + "displayName": "(733.92) Chondromalacia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\(733.92) Chondromalacia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Other and unspecified disorders of bone and cartilage (733.9)\\\\(733.92) Chondromalacia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\" + }, + { + "displayName": "(733.93) Stress fracture of tibia or fibula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\(733.93) Stress fracture of tibia or fibula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Other and unspecified disorders of bone and cartilage (733.9)\\\\(733.93) Stress fracture of tibia or fibula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\" + }, + { + "displayName": "(733.94) Stress fracture of the metatarsals", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\(733.94) Stress fracture of the metatarsals\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Other and unspecified disorders of bone and cartilage (733.9)\\\\(733.94) Stress fracture of the metatarsals\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\" + }, + { + "displayName": "(733.95) Stress fracture of other bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\(733.95) Stress fracture of other bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Other and unspecified disorders of bone and cartilage (733.9)\\\\(733.95) Stress fracture of other bone\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\" + }, + { + "displayName": "(733.96) Stress fracture of femoral neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\(733.96) Stress fracture of femoral neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\" + }, + { + "displayName": "(733.97) Stress fracture of shaft of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\(733.97) Stress fracture of shaft of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Other and unspecified disorders of bone and cartilage (733.9)\\\\(733.97) Stress fracture of shaft of femur\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\" + }, + { + "displayName": "(733.98) Stress fracture of pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\(733.98) Stress fracture of pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Other and unspecified disorders of bone and cartilage (733.9)\\\\(733.98) Stress fracture of pelvis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\" + }, + { + "displayName": "(733.99) Other disorders of bone and cartilage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\(733.99) Other disorders of bone and cartilage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Other and unspecified disorders of bone and cartilage (733.9)\\\\(733.99) Other disorders of bone and cartilage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Other and unspecified disorders of bone and cartilage (733.9)\\" + }, + { + "displayName": "Pathologic fracture (733.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\" + }, + { + "displayName": "(733.10) Pathologic fracture, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\(733.10) Pathologic fracture, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Pathologic fracture (733.1)\\\\(733.10) Pathologic fracture, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\" + }, + { + "displayName": "(733.11) Pathologic fracture of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\(733.11) Pathologic fracture of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Pathologic fracture (733.1)\\\\(733.11) Pathologic fracture of humerus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\" + }, + { + "displayName": "(733.12) Pathologic fracture of distal radius and ulna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\(733.12) Pathologic fracture of distal radius and ulna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\" + }, + { + "displayName": "(733.13) Pathologic fracture of vertebrae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\(733.13) Pathologic fracture of vertebrae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Pathologic fracture (733.1)\\\\(733.13) Pathologic fracture of vertebrae\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\" + }, + { + "displayName": "(733.14) Pathologic fracture of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\(733.14) Pathologic fracture of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Pathologic fracture (733.1)\\\\(733.14) Pathologic fracture of neck of femur\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\" + }, + { + "displayName": "(733.15) Pathologic fracture of other specified part of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\(733.15) Pathologic fracture of other specified part of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Pathologic fracture (733.1)\\\\(733.15) Pathologic fracture of other specified part of femur\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\" + }, + { + "displayName": "(733.16) Pathologic fracture of tibia or fibula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\(733.16) Pathologic fracture of tibia or fibula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\" + }, + { + "displayName": "(733.19) Pathologic fracture of other specified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\(733.19) Pathologic fracture of other specified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\\\Other disorders of bone and cartilage (733)\\\\Pathologic fracture (733.1)\\\\(733.19) Pathologic fracture of other specified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\\Other disorders of bone and cartilage (733)\\Pathologic fracture (733.1)\\" + }, + { + "displayName": "Rheumatism, excluding the back (725-729.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\" + }, + { + "displayName": "(725) Polymyalgia rheumatica", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\(725) Polymyalgia rheumatica\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\(725) Polymyalgia rheumatica\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\" + }, + { + "displayName": "Disorders of muscle, ligament, and fascia (728)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\" + }, + { + "displayName": "(728.0) Infective myositis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\(728.0) Infective myositis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\(728.0) Infective myositis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\" + }, + { + "displayName": "(728.2) Muscular wasting and disuse atrophy, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\(728.2) Muscular wasting and disuse atrophy, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\(728.2) Muscular wasting and disuse atrophy, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\" + }, + { + "displayName": "(728.3) Other specific muscle disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\(728.3) Other specific muscle disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\" + }, + { + "displayName": "(728.4) Laxity of ligament", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\(728.4) Laxity of ligament\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\(728.4) Laxity of ligament\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\" + }, + { + "displayName": "(728.5) Hypermobility syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\(728.5) Hypermobility syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\(728.5) Hypermobility syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\" + }, + { + "displayName": "(728.6) Contracture of palmar fascia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\(728.6) Contracture of palmar fascia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\(728.6) Contracture of palmar fascia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\" + }, + { + "displayName": "(728.9) Unspecified disorder of muscle, ligament, and fascia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\(728.9) Unspecified disorder of muscle, ligament, and fascia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\" + }, + { + "displayName": "Muscular calcification and ossification (728.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Muscular calcification and ossification (728.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Muscular calcification and ossification (728.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\" + }, + { + "displayName": "(728.10) Calcification and ossification, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Muscular calcification and ossification (728.1)\\(728.10) Calcification and ossification, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Muscular calcification and ossification (728.1)\\\\(728.10) Calcification and ossification, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Muscular calcification and ossification (728.1)\\" + }, + { + "displayName": "(728.11) Progressive myositis ossificans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Muscular calcification and ossification (728.1)\\(728.11) Progressive myositis ossificans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Muscular calcification and ossification (728.1)\\" + }, + { + "displayName": "(728.12) Traumatic myositis ossificans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Muscular calcification and ossification (728.1)\\(728.12) Traumatic myositis ossificans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Muscular calcification and ossification (728.1)\\\\(728.12) Traumatic myositis ossificans\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Muscular calcification and ossification (728.1)\\" + }, + { + "displayName": "(728.13) Postoperative heterotopic calcification", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Muscular calcification and ossification (728.1)\\(728.13) Postoperative heterotopic calcification\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Muscular calcification and ossification (728.1)\\\\(728.13) Postoperative heterotopic calcification\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Muscular calcification and ossification (728.1)\\" + }, + { + "displayName": "(728.19) Other muscular calcification and ossification", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Muscular calcification and ossification (728.1)\\(728.19) Other muscular calcification and ossification\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Muscular calcification and ossification (728.1)\\\\(728.19) Other muscular calcification and ossification\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Muscular calcification and ossification (728.1)\\" + }, + { + "displayName": "Other disorders of muscle, ligament, and fascia (728.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Other disorders of muscle, ligament, and fascia (728.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\" + }, + { + "displayName": "(728.81) Interstitial myositis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\(728.81) Interstitial myositis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\" + }, + { + "displayName": "(728.82) Foreign body granuloma of muscle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\(728.82) Foreign body granuloma of muscle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Other disorders of muscle, ligament, and fascia (728.8)\\\\(728.82) Foreign body granuloma of muscle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\" + }, + { + "displayName": "(728.83) Rupture of muscle, nontraumatic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\(728.83) Rupture of muscle, nontraumatic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Other disorders of muscle, ligament, and fascia (728.8)\\\\(728.83) Rupture of muscle, nontraumatic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\" + }, + { + "displayName": "(728.84) Diastasis of muscle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\(728.84) Diastasis of muscle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\" + }, + { + "displayName": "(728.85) Spasm of muscle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\(728.85) Spasm of muscle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Other disorders of muscle, ligament, and fascia (728.8)\\\\(728.85) Spasm of muscle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\" + }, + { + "displayName": "(728.86) Necrotizing fasciitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\(728.86) Necrotizing fasciitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Other disorders of muscle, ligament, and fascia (728.8)\\\\(728.86) Necrotizing fasciitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\" + }, + { + "displayName": "(728.87) Muscle weakness (generalized)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\(728.87) Muscle weakness (generalized)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\" + }, + { + "displayName": "(728.88) Rhabdomyolysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\(728.88) Rhabdomyolysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Other disorders of muscle, ligament, and fascia (728.8)\\\\(728.88) Rhabdomyolysis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\" + }, + { + "displayName": "(728.89) Other disorders of muscle, ligament, and fascia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\(728.89) Other disorders of muscle, ligament, and fascia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Other disorders of muscle, ligament, and fascia (728.8)\\\\(728.89) Other disorders of muscle, ligament, and fascia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other disorders of muscle, ligament, and fascia (728.8)\\" + }, + { + "displayName": "Other fibromatoses of muscle, ligament, and fascia (728.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other fibromatoses of muscle, ligament, and fascia (728.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\" + }, + { + "displayName": "(728.71) Plantar fascial fibromatosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other fibromatoses of muscle, ligament, and fascia (728.7)\\(728.71) Plantar fascial fibromatosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Disorders of muscle, ligament, and fascia (728)\\\\Other fibromatoses of muscle, ligament, and fascia (728.7)\\\\(728.71) Plantar fascial fibromatosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other fibromatoses of muscle, ligament, and fascia (728.7)\\" + }, + { + "displayName": "(728.79) Other fibromatoses of muscle, ligament, and fascia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other fibromatoses of muscle, ligament, and fascia (728.7)\\(728.79) Other fibromatoses of muscle, ligament, and fascia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Disorders of muscle, ligament, and fascia (728)\\Other fibromatoses of muscle, ligament, and fascia (728.7)\\" + }, + { + "displayName": "Other disorders of soft tissues (729)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\" + }, + { + "displayName": "(729.0) Rheumatism, unspecified and fibrositis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\(729.0) Rheumatism, unspecified and fibrositis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\(729.0) Rheumatism, unspecified and fibrositis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\" + }, + { + "displayName": "(729.1) Myalgia and myositis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\(729.1) Myalgia and myositis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\(729.1) Myalgia and myositis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\" + }, + { + "displayName": "(729.2) Neuralgia, neuritis, and radiculitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\(729.2) Neuralgia, neuritis, and radiculitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\(729.2) Neuralgia, neuritis, and radiculitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\" + }, + { + "displayName": "(729.4) Fasciitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\(729.4) Fasciitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\" + }, + { + "displayName": "(729.5) Pain in limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\(729.5) Pain in limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\(729.5) Pain in limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\" + }, + { + "displayName": "(729.6) Residual foreign body in soft tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\(729.6) Residual foreign body in soft tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\" + }, + { + "displayName": "Nontraumatic compartment syndrome (729.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Nontraumatic compartment syndrome (729.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\" + }, + { + "displayName": "(729.71) Nontraumatic compartment syndrome of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Nontraumatic compartment syndrome (729.7)\\(729.71) Nontraumatic compartment syndrome of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Nontraumatic compartment syndrome (729.7)\\\\(729.71) Nontraumatic compartment syndrome of upper extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Nontraumatic compartment syndrome (729.7)\\" + }, + { + "displayName": "(729.72) Nontraumatic compartment syndrome of lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Nontraumatic compartment syndrome (729.7)\\(729.72) Nontraumatic compartment syndrome of lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Nontraumatic compartment syndrome (729.7)\\\\(729.72) Nontraumatic compartment syndrome of lower extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Nontraumatic compartment syndrome (729.7)\\" + }, + { + "displayName": "(729.73) Nontraumatic compartment syndrome of abdomen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Nontraumatic compartment syndrome (729.7)\\(729.73) Nontraumatic compartment syndrome of abdomen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Nontraumatic compartment syndrome (729.7)\\" + }, + { + "displayName": "(729.79) Nontraumatic compartment syndrome of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Nontraumatic compartment syndrome (729.7)\\(729.79) Nontraumatic compartment syndrome of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Nontraumatic compartment syndrome (729.7)\\\\(729.79) Nontraumatic compartment syndrome of other sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Nontraumatic compartment syndrome (729.7)\\" + }, + { + "displayName": "Other and unspecified disorders of soft tissue (729.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other and unspecified disorders of soft tissue (729.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\" + }, + { + "displayName": "(729.90) Disorders of soft tissue, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other and unspecified disorders of soft tissue (729.9)\\(729.90) Disorders of soft tissue, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Other and unspecified disorders of soft tissue (729.9)\\\\(729.90) Disorders of soft tissue, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other and unspecified disorders of soft tissue (729.9)\\" + }, + { + "displayName": "(729.91) Post-traumatic seroma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other and unspecified disorders of soft tissue (729.9)\\(729.91) Post-traumatic seroma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Other and unspecified disorders of soft tissue (729.9)\\\\(729.91) Post-traumatic seroma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other and unspecified disorders of soft tissue (729.9)\\" + }, + { + "displayName": "(729.92) Nontraumatic hematoma of soft tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other and unspecified disorders of soft tissue (729.9)\\(729.92) Nontraumatic hematoma of soft tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Other and unspecified disorders of soft tissue (729.9)\\\\(729.92) Nontraumatic hematoma of soft tissue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other and unspecified disorders of soft tissue (729.9)\\" + }, + { + "displayName": "(729.99) Other disorders of soft tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other and unspecified disorders of soft tissue (729.9)\\(729.99) Other disorders of soft tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other and unspecified disorders of soft tissue (729.9)\\" + }, + { + "displayName": "Other musculoskeletal symptoms referable to limbs (729.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other musculoskeletal symptoms referable to limbs (729.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Other musculoskeletal symptoms referable to limbs (729.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\" + }, + { + "displayName": "(729.81) Swelling of limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other musculoskeletal symptoms referable to limbs (729.8)\\(729.81) Swelling of limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Other musculoskeletal symptoms referable to limbs (729.8)\\\\(729.81) Swelling of limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other musculoskeletal symptoms referable to limbs (729.8)\\" + }, + { + "displayName": "(729.82) Cramp of limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other musculoskeletal symptoms referable to limbs (729.8)\\(729.82) Cramp of limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other musculoskeletal symptoms referable to limbs (729.8)\\" + }, + { + "displayName": "(729.89) Other musculoskeletal symptoms referable to limbs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other musculoskeletal symptoms referable to limbs (729.8)\\(729.89) Other musculoskeletal symptoms referable to limbs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Other musculoskeletal symptoms referable to limbs (729.8)\\\\(729.89) Other musculoskeletal symptoms referable to limbs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Other musculoskeletal symptoms referable to limbs (729.8)\\" + }, + { + "displayName": "Panniculitis, unspecified (729.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Panniculitis, unspecified (729.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Panniculitis, unspecified (729.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\" + }, + { + "displayName": "(729.30) Panniculitis, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Panniculitis, unspecified (729.3)\\(729.30) Panniculitis, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Panniculitis, unspecified (729.3)\\" + }, + { + "displayName": "(729.31) Hypertrophy of fat pad, knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Panniculitis, unspecified (729.3)\\(729.31) Hypertrophy of fat pad, knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Panniculitis, unspecified (729.3)\\\\(729.31) Hypertrophy of fat pad, knee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Panniculitis, unspecified (729.3)\\" + }, + { + "displayName": "(729.39) Panniculitis, other site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Panniculitis, unspecified (729.3)\\(729.39) Panniculitis, other site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of soft tissues (729)\\\\Panniculitis, unspecified (729.3)\\\\(729.39) Panniculitis, other site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of soft tissues (729)\\Panniculitis, unspecified (729.3)\\" + }, + { + "displayName": "Other disorders of synovium, tendon, and bursa (727)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of synovium, tendon, and bursa (727)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\" + }, + { + "displayName": "(727.1) Bunion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\(727.1) Bunion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\" + }, + { + "displayName": "(727.2) Specific bursitides often of occupational origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\(727.2) Specific bursitides often of occupational origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of synovium, tendon, and bursa (727)\\\\(727.2) Specific bursitides often of occupational origin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\" + }, + { + "displayName": "(727.3) Other bursitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\(727.3) Other bursitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of synovium, tendon, and bursa (727)\\\\(727.3) Other bursitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\" + }, + { + "displayName": "(727.9) Unspecified disorder of synovium, tendon, and bursa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\(727.9) Unspecified disorder of synovium, tendon, and bursa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\" + }, + { + "displayName": "Ganglion and cyst of synovium, tendon, and bursa (727.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Ganglion and cyst of synovium, tendon, and bursa (727.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\" + }, + { + "displayName": "(727.40) Synovial cyst, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Ganglion and cyst of synovium, tendon, and bursa (727.4)\\(727.40) Synovial cyst, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Ganglion and cyst of synovium, tendon, and bursa (727.4)\\" + }, + { + "displayName": "(727.41) Ganglion of joint", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Ganglion and cyst of synovium, tendon, and bursa (727.4)\\(727.41) Ganglion of joint\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Ganglion and cyst of synovium, tendon, and bursa (727.4)\\" + }, + { + "displayName": "(727.42) Ganglion of tendon sheath", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Ganglion and cyst of synovium, tendon, and bursa (727.4)\\(727.42) Ganglion of tendon sheath\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Ganglion and cyst of synovium, tendon, and bursa (727.4)\\" + }, + { + "displayName": "(727.43) Ganglion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Ganglion and cyst of synovium, tendon, and bursa (727.4)\\(727.43) Ganglion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Ganglion and cyst of synovium, tendon, and bursa (727.4)\\" + }, + { + "displayName": "(727.49) Other ganglion and cyst of synovium, tendon, and bursa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Ganglion and cyst of synovium, tendon, and bursa (727.4)\\(727.49) Other ganglion and cyst of synovium, tendon, and bursa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Ganglion and cyst of synovium, tendon, and bursa (727.4)\\" + }, + { + "displayName": "Other disorders of synovium, tendon, and bursa (727.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Other disorders of synovium, tendon, and bursa (727.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\" + }, + { + "displayName": "(727.81) Contracture of tendon (sheath)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Other disorders of synovium, tendon, and bursa (727.8)\\(727.81) Contracture of tendon (sheath)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Other disorders of synovium, tendon, and bursa (727.8)\\" + }, + { + "displayName": "(727.82) Calcium deposits in tendon and bursa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Other disorders of synovium, tendon, and bursa (727.8)\\(727.82) Calcium deposits in tendon and bursa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Other disorders of synovium, tendon, and bursa (727.8)\\" + }, + { + "displayName": "(727.83) Plica syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Other disorders of synovium, tendon, and bursa (727.8)\\(727.83) Plica syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Other disorders of synovium, tendon, and bursa (727.8)\\" + }, + { + "displayName": "(727.89) Other disorders of synovium, tendon, and bursa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Other disorders of synovium, tendon, and bursa (727.8)\\(727.89) Other disorders of synovium, tendon, and bursa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Other disorders of synovium, tendon, and bursa (727.8)\\" + }, + { + "displayName": "Rupture of synovium (727.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of synovium (727.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\" + }, + { + "displayName": "(727.50) Rupture of synovium, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of synovium (727.5)\\(727.50) Rupture of synovium, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of synovium (727.5)\\" + }, + { + "displayName": "(727.51) Synovial cyst of popliteal space", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of synovium (727.5)\\(727.51) Synovial cyst of popliteal space\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of synovium (727.5)\\" + }, + { + "displayName": "(727.59) Other rupture of synovium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of synovium (727.5)\\(727.59) Other rupture of synovium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of synovium (727.5)\\" + }, + { + "displayName": "Rupture of tendon, nontraumatic (727.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\" + }, + { + "displayName": "(727.60) Nontraumatic rupture of unspecified tendon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\(727.60) Nontraumatic rupture of unspecified tendon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\" + }, + { + "displayName": "(727.61) Complete rupture of rotator cuff", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\(727.61) Complete rupture of rotator cuff\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\" + }, + { + "displayName": "(727.62) Nontraumatic rupture of tendons of biceps (long head)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\(727.62) Nontraumatic rupture of tendons of biceps (long head)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\" + }, + { + "displayName": "(727.63) Nontraumatic rupture of extensor tendons of hand and wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\(727.63) Nontraumatic rupture of extensor tendons of hand and wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of synovium, tendon, and bursa (727)\\\\Rupture of tendon, nontraumatic (727.6)\\\\(727.63) Nontraumatic rupture of extensor tendons of hand and wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\" + }, + { + "displayName": "(727.64) Nontraumatic rupture of flexor tendons of hand and wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\(727.64) Nontraumatic rupture of flexor tendons of hand and wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of synovium, tendon, and bursa (727)\\\\Rupture of tendon, nontraumatic (727.6)\\\\(727.64) Nontraumatic rupture of flexor tendons of hand and wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\" + }, + { + "displayName": "(727.65) Nontraumatic rupture of quadriceps tendon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\(727.65) Nontraumatic rupture of quadriceps tendon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of synovium, tendon, and bursa (727)\\\\Rupture of tendon, nontraumatic (727.6)\\\\(727.65) Nontraumatic rupture of quadriceps tendon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\" + }, + { + "displayName": "(727.66) Nontraumatic rupture of patellar tendon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\(727.66) Nontraumatic rupture of patellar tendon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of synovium, tendon, and bursa (727)\\\\Rupture of tendon, nontraumatic (727.6)\\\\(727.66) Nontraumatic rupture of patellar tendon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\" + }, + { + "displayName": "(727.67) Nontraumatic rupture of achilles tendon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\(727.67) Nontraumatic rupture of achilles tendon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of synovium, tendon, and bursa (727)\\\\Rupture of tendon, nontraumatic (727.6)\\\\(727.67) Nontraumatic rupture of achilles tendon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\" + }, + { + "displayName": "(727.68) Nontraumatic rupture of other tendons of foot and ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\(727.68) Nontraumatic rupture of other tendons of foot and ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of synovium, tendon, and bursa (727)\\\\Rupture of tendon, nontraumatic (727.6)\\\\(727.68) Nontraumatic rupture of other tendons of foot and ankle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\" + }, + { + "displayName": "(727.69) Nontraumatic rupture of other tendon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\(727.69) Nontraumatic rupture of other tendon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of synovium, tendon, and bursa (727)\\\\Rupture of tendon, nontraumatic (727.6)\\\\(727.69) Nontraumatic rupture of other tendon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Rupture of tendon, nontraumatic (727.6)\\" + }, + { + "displayName": "Synovitis and tenosynovitis (727.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Other disorders of synovium, tendon, and bursa (727)\\\\Synovitis and tenosynovitis (727.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\" + }, + { + "displayName": "(727.00) Synovitis and tenosynovitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\(727.00) Synovitis and tenosynovitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\" + }, + { + "displayName": "(727.01) Synovitis and tenosynovitis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\(727.01) Synovitis and tenosynovitis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\" + }, + { + "displayName": "(727.02) Giant cell tumor of tendon sheath", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\(727.02) Giant cell tumor of tendon sheath\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\" + }, + { + "displayName": "(727.03) Trigger finger (acquired)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\(727.03) Trigger finger (acquired)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\" + }, + { + "displayName": "(727.04) Radial styloid tenosynovitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\(727.04) Radial styloid tenosynovitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\" + }, + { + "displayName": "(727.05) Other tenosynovitis of hand and wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\(727.05) Other tenosynovitis of hand and wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\" + }, + { + "displayName": "(727.06) Tenosynovitis of foot and ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\(727.06) Tenosynovitis of foot and ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\" + }, + { + "displayName": "(727.09) Other synovitis and tenosynovitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\(727.09) Other synovitis and tenosynovitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Other disorders of synovium, tendon, and bursa (727)\\Synovitis and tenosynovitis (727.0)\\" + }, + { + "displayName": "Peripheral enthesopathies and allied syndromes (726)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\" + }, + { + "displayName": "(726.0) Adhesive capsulitis of shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\(726.0) Adhesive capsulitis of shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\(726.0) Adhesive capsulitis of shoulder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\" + }, + { + "displayName": "(726.2) Other affections of shoulder region, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\(726.2) Other affections of shoulder region, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\(726.2) Other affections of shoulder region, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\" + }, + { + "displayName": "(726.4) Enthesopathy of wrist and carpus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\(726.4) Enthesopathy of wrist and carpus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\(726.4) Enthesopathy of wrist and carpus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\" + }, + { + "displayName": "(726.5) Enthesopathy of hip region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\(726.5) Enthesopathy of hip region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\(726.5) Enthesopathy of hip region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\" + }, + { + "displayName": "(726.8) Other peripheral enthesopathies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\(726.8) Other peripheral enthesopathies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\(726.8) Other peripheral enthesopathies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\" + }, + { + "displayName": "Enthesopathy of ankle and tarsus (726.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of ankle and tarsus (726.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\" + }, + { + "displayName": "(726.70) Enthesopathy of ankle and tarsus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of ankle and tarsus (726.7)\\(726.70) Enthesopathy of ankle and tarsus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of ankle and tarsus (726.7)\\" + }, + { + "displayName": "(726.71) Achilles bursitis or tendinitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of ankle and tarsus (726.7)\\(726.71) Achilles bursitis or tendinitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of ankle and tarsus (726.7)\\" + }, + { + "displayName": "(726.72) Tibialis tendinitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of ankle and tarsus (726.7)\\(726.72) Tibialis tendinitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of ankle and tarsus (726.7)\\" + }, + { + "displayName": "(726.73) Calcaneal spur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of ankle and tarsus (726.7)\\(726.73) Calcaneal spur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of ankle and tarsus (726.7)\\" + }, + { + "displayName": "(726.79) Other enthesopathy of ankle and tarsus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of ankle and tarsus (726.7)\\(726.79) Other enthesopathy of ankle and tarsus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of ankle and tarsus (726.7)\\" + }, + { + "displayName": "Enthesopathy of elbow region (726.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of elbow region (726.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\" + }, + { + "displayName": "(726.30) Enthesopathy of elbow, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of elbow region (726.3)\\(726.30) Enthesopathy of elbow, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of elbow region (726.3)\\" + }, + { + "displayName": "(726.31) Medial epicondylitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of elbow region (726.3)\\(726.31) Medial epicondylitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of elbow region (726.3)\\" + }, + { + "displayName": "(726.32) Lateral epicondylitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of elbow region (726.3)\\(726.32) Lateral epicondylitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of elbow region (726.3)\\" + }, + { + "displayName": "(726.33) Olecranon bursitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of elbow region (726.3)\\(726.33) Olecranon bursitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of elbow region (726.3)\\" + }, + { + "displayName": "(726.39) Other enthesopathy of elbow region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of elbow region (726.3)\\(726.39) Other enthesopathy of elbow region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of elbow region (726.3)\\" + }, + { + "displayName": "Enthesopathy of knee (726.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\" + }, + { + "displayName": "(726.60) Enthesopathy of knee, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\(726.60) Enthesopathy of knee, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\Enthesopathy of knee (726.6)\\\\(726.60) Enthesopathy of knee, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\" + }, + { + "displayName": "(726.61) Pes anserinus tendinitis or bursitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\(726.61) Pes anserinus tendinitis or bursitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\Enthesopathy of knee (726.6)\\\\(726.61) Pes anserinus tendinitis or bursitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\" + }, + { + "displayName": "(726.62) Tibial collateral ligament bursitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\(726.62) Tibial collateral ligament bursitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\" + }, + { + "displayName": "(726.63) Fibular collateral ligament bursitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\(726.63) Fibular collateral ligament bursitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\Enthesopathy of knee (726.6)\\\\(726.63) Fibular collateral ligament bursitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\" + }, + { + "displayName": "(726.64) Patellar tendinitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\(726.64) Patellar tendinitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\Enthesopathy of knee (726.6)\\\\(726.64) Patellar tendinitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\" + }, + { + "displayName": "(726.65) Prepatellar bursitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\(726.65) Prepatellar bursitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\" + }, + { + "displayName": "(726.69) Other enthesopathy of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\(726.69) Other enthesopathy of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\Enthesopathy of knee (726.6)\\\\(726.69) Other enthesopathy of knee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Enthesopathy of knee (726.6)\\" + }, + { + "displayName": "Rotator cuff syndrome of shoulder and allied disorders (726.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\Rheumatism, excluding the back (725-729.99)\\\\Peripheral enthesopathies and allied syndromes (726)\\\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\" + }, + { + "displayName": "(726.10) Disorders of bursae and tendons in shoulder region, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\(726.10) Disorders of bursae and tendons in shoulder region, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\" + }, + { + "displayName": "(726.11) Calcifying tendinitis of shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\(726.11) Calcifying tendinitis of shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\" + }, + { + "displayName": "(726.12) Bicipital tenosynovitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\(726.12) Bicipital tenosynovitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\" + }, + { + "displayName": "(726.13) Partial tear of rotator cuff", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\(726.13) Partial tear of rotator cuff\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\" + }, + { + "displayName": "(726.19) Other specified disorders of bursae and tendons in shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\(726.19) Other specified disorders of bursae and tendons in shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Rotator cuff syndrome of shoulder and allied disorders (726.1)\\" + }, + { + "displayName": "Unspecified enthesopathy (726.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Unspecified enthesopathy (726.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\" + }, + { + "displayName": "(726.90) Enthesopathy of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Unspecified enthesopathy (726.9)\\(726.90) Enthesopathy of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Unspecified enthesopathy (726.9)\\" + }, + { + "displayName": "(726.91) Exostosis of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Unspecified enthesopathy (726.9)\\(726.91) Exostosis of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\Rheumatism, excluding the back (725-729.99)\\Peripheral enthesopathies and allied syndromes (726)\\Unspecified enthesopathy (726.9)\\" + }, + { + "displayName": "Diseases of the nervous system and sense organs (320-389.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Diseases of the ear and mastoid process (380-389.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\" + }, + { + "displayName": "Disorders of external ear (380)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Disorders of external ear (380)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\" + }, + { + "displayName": "(380.4) Impacted cerumen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\(380.4) Impacted cerumen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Disorders of external ear (380)\\\\(380.4) Impacted cerumen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\" + }, + { + "displayName": "(380.9) Unspecified disorder of external ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\(380.9) Unspecified disorder of external ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\" + }, + { + "displayName": "Acquired stenosis of external ear canal (380.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Acquired stenosis of external ear canal (380.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\" + }, + { + "displayName": "(380.50) Acquired stenosis of external ear canal, unspecified as to cause", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Acquired stenosis of external ear canal (380.5)\\(380.50) Acquired stenosis of external ear canal, unspecified as to cause\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Acquired stenosis of external ear canal (380.5)\\" + }, + { + "displayName": "(380.51) Acquired stenosis of external ear canal secondary to trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Acquired stenosis of external ear canal (380.5)\\(380.51) Acquired stenosis of external ear canal secondary to trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Acquired stenosis of external ear canal (380.5)\\" + }, + { + "displayName": "(380.52) Acquired stenosis of external ear canal secondary to surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Acquired stenosis of external ear canal (380.5)\\(380.52) Acquired stenosis of external ear canal secondary to surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Acquired stenosis of external ear canal (380.5)\\" + }, + { + "displayName": "(380.53) Acquired stenosis of external ear canal secondary to inflammation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Acquired stenosis of external ear canal (380.5)\\(380.53) Acquired stenosis of external ear canal secondary to inflammation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Acquired stenosis of external ear canal (380.5)\\" + }, + { + "displayName": "Infective otitis externa (380.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\" + }, + { + "displayName": "(380.10) Infective otitis externa, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\(380.10) Infective otitis externa, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\" + }, + { + "displayName": "(380.11) Acute infection of pinna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\(380.11) Acute infection of pinna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\" + }, + { + "displayName": "(380.12) Acute swimmers' ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\(380.12) Acute swimmers' ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\" + }, + { + "displayName": "(380.13) Other acute infections of external ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\(380.13) Other acute infections of external ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\" + }, + { + "displayName": "(380.14) Malignant otitis externa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\(380.14) Malignant otitis externa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Disorders of external ear (380)\\\\Infective otitis externa (380.1)\\\\(380.14) Malignant otitis externa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\" + }, + { + "displayName": "(380.15) Chronic mycotic otitis externa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\(380.15) Chronic mycotic otitis externa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Disorders of external ear (380)\\\\Infective otitis externa (380.1)\\\\(380.15) Chronic mycotic otitis externa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\" + }, + { + "displayName": "(380.16) Other chronic infective otitis externa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\(380.16) Other chronic infective otitis externa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Disorders of external ear (380)\\\\Infective otitis externa (380.1)\\\\(380.16) Other chronic infective otitis externa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Infective otitis externa (380.1)\\" + }, + { + "displayName": "Noninfectious disorders of pinna (380.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Noninfectious disorders of pinna (380.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\" + }, + { + "displayName": "(380.30) Disorder of pinna, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Noninfectious disorders of pinna (380.3)\\(380.30) Disorder of pinna, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Disorders of external ear (380)\\\\Noninfectious disorders of pinna (380.3)\\\\(380.30) Disorder of pinna, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Noninfectious disorders of pinna (380.3)\\" + }, + { + "displayName": "(380.31) Hematoma of auricle or pinna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Noninfectious disorders of pinna (380.3)\\(380.31) Hematoma of auricle or pinna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Disorders of external ear (380)\\\\Noninfectious disorders of pinna (380.3)\\\\(380.31) Hematoma of auricle or pinna\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Noninfectious disorders of pinna (380.3)\\" + }, + { + "displayName": "(380.32) Acquired deformities of auricle or pinna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Noninfectious disorders of pinna (380.3)\\(380.32) Acquired deformities of auricle or pinna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Disorders of external ear (380)\\\\Noninfectious disorders of pinna (380.3)\\\\(380.32) Acquired deformities of auricle or pinna\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Noninfectious disorders of pinna (380.3)\\" + }, + { + "displayName": "(380.39) Other noninfectious disorders of pinna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Noninfectious disorders of pinna (380.3)\\(380.39) Other noninfectious disorders of pinna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Noninfectious disorders of pinna (380.3)\\" + }, + { + "displayName": "Other disorders of external ear (380.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other disorders of external ear (380.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Disorders of external ear (380)\\\\Other disorders of external ear (380.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\" + }, + { + "displayName": "(380.81) Exostosis of external ear canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other disorders of external ear (380.8)\\(380.81) Exostosis of external ear canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Disorders of external ear (380)\\\\Other disorders of external ear (380.8)\\\\(380.81) Exostosis of external ear canal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other disorders of external ear (380.8)\\" + }, + { + "displayName": "(380.89) Other disorders of external ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other disorders of external ear (380.8)\\(380.89) Other disorders of external ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Disorders of external ear (380)\\\\Other disorders of external ear (380.8)\\\\(380.89) Other disorders of external ear\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other disorders of external ear (380.8)\\" + }, + { + "displayName": "Other otitis externa (380.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other otitis externa (380.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\" + }, + { + "displayName": "(380.21) Cholesteatoma of external ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other otitis externa (380.2)\\(380.21) Cholesteatoma of external ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other otitis externa (380.2)\\" + }, + { + "displayName": "(380.22) Other acute otitis externa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other otitis externa (380.2)\\(380.22) Other acute otitis externa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other otitis externa (380.2)\\" + }, + { + "displayName": "(380.23) Other chronic otitis externa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other otitis externa (380.2)\\(380.23) Other chronic otitis externa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Other otitis externa (380.2)\\" + }, + { + "displayName": "Perichondritis and chondritis of pinna (380.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Perichondritis and chondritis of pinna (380.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\" + }, + { + "displayName": "(380.00) Perichondritis of pinna, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Perichondritis and chondritis of pinna (380.0)\\(380.00) Perichondritis of pinna, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Perichondritis and chondritis of pinna (380.0)\\" + }, + { + "displayName": "(380.01) Acute perichondritis of pinna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Perichondritis and chondritis of pinna (380.0)\\(380.01) Acute perichondritis of pinna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Perichondritis and chondritis of pinna (380.0)\\" + }, + { + "displayName": "(380.02) Chronic perichondritis of pinna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Perichondritis and chondritis of pinna (380.0)\\(380.02) Chronic perichondritis of pinna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Perichondritis and chondritis of pinna (380.0)\\" + }, + { + "displayName": "(380.03) Chondritis of pinna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Perichondritis and chondritis of pinna (380.0)\\(380.03) Chondritis of pinna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Disorders of external ear (380)\\Perichondritis and chondritis of pinna (380.0)\\" + }, + { + "displayName": "Hearing loss (389)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\" + }, + { + "displayName": "(389.7) Deaf, nonspeaking, not elsewhere classifiable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\(389.7) Deaf, nonspeaking, not elsewhere classifiable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\" + }, + { + "displayName": "(389.8) Other specified forms of hearing loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\(389.8) Other specified forms of hearing loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\" + }, + { + "displayName": "(389.9) Unspecified hearing loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\(389.9) Unspecified hearing loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\" + }, + { + "displayName": "Conductive hearing loss (389.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\" + }, + { + "displayName": "(389.00) Conductive hearing loss, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\(389.00) Conductive hearing loss, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\" + }, + { + "displayName": "(389.01) Conductive hearing loss, external ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\(389.01) Conductive hearing loss, external ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\" + }, + { + "displayName": "(389.02) Conductive hearing loss, tympanic membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\(389.02) Conductive hearing loss, tympanic membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\" + }, + { + "displayName": "(389.03) Conductive hearing loss, middle ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\(389.03) Conductive hearing loss, middle ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\" + }, + { + "displayName": "(389.04) Conductive hearing loss, inner ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\(389.04) Conductive hearing loss, inner ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Hearing loss (389)\\\\Conductive hearing loss (389.0)\\\\(389.04) Conductive hearing loss, inner ear\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\" + }, + { + "displayName": "(389.05) Conductive hearing loss, unilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\(389.05) Conductive hearing loss, unilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\" + }, + { + "displayName": "(389.06) Conductive hearing loss, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\(389.06) Conductive hearing loss, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Hearing loss (389)\\\\Conductive hearing loss (389.0)\\\\(389.06) Conductive hearing loss, bilateral\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\" + }, + { + "displayName": "(389.08) Conductive hearing loss of combined types", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\(389.08) Conductive hearing loss of combined types\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Hearing loss (389)\\\\Conductive hearing loss (389.0)\\\\(389.08) Conductive hearing loss of combined types\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Conductive hearing loss (389.0)\\" + }, + { + "displayName": "Mixed conductive and sensorineural hearing loss (389.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Mixed conductive and sensorineural hearing loss (389.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\" + }, + { + "displayName": "(389.20) Mixed hearing loss, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Mixed conductive and sensorineural hearing loss (389.2)\\(389.20) Mixed hearing loss, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Hearing loss (389)\\\\Mixed conductive and sensorineural hearing loss (389.2)\\\\(389.20) Mixed hearing loss, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Mixed conductive and sensorineural hearing loss (389.2)\\" + }, + { + "displayName": "(389.21) Mixed hearing loss, unilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Mixed conductive and sensorineural hearing loss (389.2)\\(389.21) Mixed hearing loss, unilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Hearing loss (389)\\\\Mixed conductive and sensorineural hearing loss (389.2)\\\\(389.21) Mixed hearing loss, unilateral\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Mixed conductive and sensorineural hearing loss (389.2)\\" + }, + { + "displayName": "(389.22) Mixed hearing loss, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Mixed conductive and sensorineural hearing loss (389.2)\\(389.22) Mixed hearing loss, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Mixed conductive and sensorineural hearing loss (389.2)\\" + }, + { + "displayName": "Sensorineural hearing loss (389.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\" + }, + { + "displayName": "(389.10) Sensorineural hearing loss, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\(389.10) Sensorineural hearing loss, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\" + }, + { + "displayName": "(389.11) Sensory hearing loss, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\(389.11) Sensory hearing loss, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\" + }, + { + "displayName": "(389.12) Neural hearing loss, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\(389.12) Neural hearing loss, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\" + }, + { + "displayName": "(389.13) Neural hearing loss, unilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\(389.13) Neural hearing loss, unilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\" + }, + { + "displayName": "(389.14) Central hearing loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\(389.14) Central hearing loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\" + }, + { + "displayName": "(389.15) Sensorineural hearing loss, unilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\(389.15) Sensorineural hearing loss, unilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\" + }, + { + "displayName": "(389.16) Sensorineural hearing loss, asymmetrical", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\(389.16) Sensorineural hearing loss, asymmetrical\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Hearing loss (389)\\\\Sensorineural hearing loss (389.1)\\\\(389.16) Sensorineural hearing loss, asymmetrical\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\" + }, + { + "displayName": "(389.17) Sensory hearing loss, unilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\(389.17) Sensory hearing loss, unilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Hearing loss (389)\\\\Sensorineural hearing loss (389.1)\\\\(389.17) Sensory hearing loss, unilateral\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\" + }, + { + "displayName": "(389.18) Sensorineural hearing loss, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\(389.18) Sensorineural hearing loss, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Hearing loss (389)\\Sensorineural hearing loss (389.1)\\" + }, + { + "displayName": "Mastoiditis and related conditions (383)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Mastoiditis and related conditions (383)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\" + }, + { + "displayName": "(383.1) Chronic mastoiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\(383.1) Chronic mastoiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Mastoiditis and related conditions (383)\\\\(383.1) Chronic mastoiditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\" + }, + { + "displayName": "(383.9) Unspecified mastoiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\(383.9) Unspecified mastoiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\" + }, + { + "displayName": "Acute mastoiditis (383.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Acute mastoiditis (383.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Mastoiditis and related conditions (383)\\\\Acute mastoiditis (383.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\" + }, + { + "displayName": "(383.00) Acute mastoiditis without complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Acute mastoiditis (383.0)\\(383.00) Acute mastoiditis without complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Mastoiditis and related conditions (383)\\\\Acute mastoiditis (383.0)\\\\(383.00) Acute mastoiditis without complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Acute mastoiditis (383.0)\\" + }, + { + "displayName": "(383.01) Subperiosteal abscess of mastoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Acute mastoiditis (383.0)\\(383.01) Subperiosteal abscess of mastoid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Acute mastoiditis (383.0)\\" + }, + { + "displayName": "(383.02) Acute mastoiditis with other complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Acute mastoiditis (383.0)\\(383.02) Acute mastoiditis with other complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Mastoiditis and related conditions (383)\\\\Acute mastoiditis (383.0)\\\\(383.02) Acute mastoiditis with other complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Acute mastoiditis (383.0)\\" + }, + { + "displayName": "Complications following mastoidectomy (383.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Complications following mastoidectomy (383.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Mastoiditis and related conditions (383)\\\\Complications following mastoidectomy (383.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\" + }, + { + "displayName": "(383.30) Postmastoidectomy complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Complications following mastoidectomy (383.3)\\(383.30) Postmastoidectomy complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Complications following mastoidectomy (383.3)\\" + }, + { + "displayName": "(383.31) Mucosal cyst of postmastoidectomy cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Complications following mastoidectomy (383.3)\\(383.31) Mucosal cyst of postmastoidectomy cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Mastoiditis and related conditions (383)\\\\Complications following mastoidectomy (383.3)\\\\(383.31) Mucosal cyst of postmastoidectomy cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Complications following mastoidectomy (383.3)\\" + }, + { + "displayName": "(383.32) Recurrent cholesteatoma of postmastoidectomy cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Complications following mastoidectomy (383.3)\\(383.32) Recurrent cholesteatoma of postmastoidectomy cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Complications following mastoidectomy (383.3)\\" + }, + { + "displayName": "(383.33) Granulations of postmastoidectomy cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Complications following mastoidectomy (383.3)\\(383.33) Granulations of postmastoidectomy cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Mastoiditis and related conditions (383)\\\\Complications following mastoidectomy (383.3)\\\\(383.33) Granulations of postmastoidectomy cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Complications following mastoidectomy (383.3)\\" + }, + { + "displayName": "Other disorders of mastoid (383.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Other disorders of mastoid (383.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Mastoiditis and related conditions (383)\\\\Other disorders of mastoid (383.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\" + }, + { + "displayName": "(383.81) Postauricular fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Other disorders of mastoid (383.8)\\(383.81) Postauricular fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Other disorders of mastoid (383.8)\\" + }, + { + "displayName": "(383.89) Other disorders of mastoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Other disorders of mastoid (383.8)\\(383.89) Other disorders of mastoid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Mastoiditis and related conditions (383)\\\\Other disorders of mastoid (383.8)\\\\(383.89) Other disorders of mastoid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Other disorders of mastoid (383.8)\\" + }, + { + "displayName": "Petrositis (383.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Petrositis (383.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Mastoiditis and related conditions (383)\\\\Petrositis (383.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\" + }, + { + "displayName": "(383.20) Petrositis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Petrositis (383.2)\\(383.20) Petrositis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Petrositis (383.2)\\" + }, + { + "displayName": "(383.21) Acute petrositis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Petrositis (383.2)\\(383.21) Acute petrositis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Petrositis (383.2)\\" + }, + { + "displayName": "(383.22) Chronic petrositis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Petrositis (383.2)\\(383.22) Chronic petrositis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Mastoiditis and related conditions (383)\\Petrositis (383.2)\\" + }, + { + "displayName": "Nonsuppurative otitis media and Eustachian tube disorders (381)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\" + }, + { + "displayName": "(381.3) Other and unspecified chronic nonsuppurative otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\(381.3) Other and unspecified chronic nonsuppurative otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\" + }, + { + "displayName": "(381.4) Nonsuppurative otitis media, not specified as acute or chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\(381.4) Nonsuppurative otitis media, not specified as acute or chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\" + }, + { + "displayName": "(381.7) Patulous Eustachian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\(381.7) Patulous Eustachian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\" + }, + { + "displayName": "(381.9) Unspecified Eustachian tube disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\(381.9) Unspecified Eustachian tube disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\" + }, + { + "displayName": "Acute nonsuppurative otitis media (381.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\" + }, + { + "displayName": "(381.00) Acute nonsuppurative otitis media, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\(381.00) Acute nonsuppurative otitis media, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\\\Acute nonsuppurative otitis media (381.0)\\\\(381.00) Acute nonsuppurative otitis media, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\" + }, + { + "displayName": "(381.01) Acute serous otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\(381.01) Acute serous otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\" + }, + { + "displayName": "(381.02) Acute mucoid otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\(381.02) Acute mucoid otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\\\Acute nonsuppurative otitis media (381.0)\\\\(381.02) Acute mucoid otitis media\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\" + }, + { + "displayName": "(381.03) Acute sanguinous otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\(381.03) Acute sanguinous otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\\\Acute nonsuppurative otitis media (381.0)\\\\(381.03) Acute sanguinous otitis media\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\" + }, + { + "displayName": "(381.04) Acute allergic serous otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\(381.04) Acute allergic serous otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\" + }, + { + "displayName": "(381.05) Acute allergic mucoid otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\(381.05) Acute allergic mucoid otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\" + }, + { + "displayName": "(381.06) Acute allergic sanguinous otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\(381.06) Acute allergic sanguinous otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Acute nonsuppurative otitis media (381.0)\\" + }, + { + "displayName": "Chronic mucoid otitis media (381.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Chronic mucoid otitis media (381.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\" + }, + { + "displayName": "(381.20) Chronic mucoid otitis media, simple or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Chronic mucoid otitis media (381.2)\\(381.20) Chronic mucoid otitis media, simple or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Chronic mucoid otitis media (381.2)\\" + }, + { + "displayName": "(381.29) Other chronic mucoid otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Chronic mucoid otitis media (381.2)\\(381.29) Other chronic mucoid otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Chronic mucoid otitis media (381.2)\\" + }, + { + "displayName": "Chronic serous otitis media (381.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Chronic serous otitis media (381.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\" + }, + { + "displayName": "(381.10) Chronic serous otitis media, simple or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Chronic serous otitis media (381.1)\\(381.10) Chronic serous otitis media, simple or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Chronic serous otitis media (381.1)\\" + }, + { + "displayName": "(381.19) Other chronic serous otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Chronic serous otitis media (381.1)\\(381.19) Other chronic serous otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Chronic serous otitis media (381.1)\\" + }, + { + "displayName": "Eustachian salpingitis (381.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Eustachian salpingitis (381.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\" + }, + { + "displayName": "(381.50) Eustachian salpingitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Eustachian salpingitis (381.5)\\(381.50) Eustachian salpingitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Eustachian salpingitis (381.5)\\" + }, + { + "displayName": "(381.51) Acute Eustachian salpingitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Eustachian salpingitis (381.5)\\(381.51) Acute Eustachian salpingitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Eustachian salpingitis (381.5)\\" + }, + { + "displayName": "(381.52) Chronic Eustachian salpingitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Eustachian salpingitis (381.5)\\(381.52) Chronic Eustachian salpingitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Eustachian salpingitis (381.5)\\" + }, + { + "displayName": "Obstruction of Eustachian tube (381.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Obstruction of Eustachian tube (381.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\\\Obstruction of Eustachian tube (381.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\" + }, + { + "displayName": "(381.60) Obstruction of Eustachian tube, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Obstruction of Eustachian tube (381.6)\\(381.60) Obstruction of Eustachian tube, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Obstruction of Eustachian tube (381.6)\\" + }, + { + "displayName": "(381.61) Osseous obstruction of Eustachian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Obstruction of Eustachian tube (381.6)\\(381.61) Osseous obstruction of Eustachian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\\\Obstruction of Eustachian tube (381.6)\\\\(381.61) Osseous obstruction of Eustachian tube\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Obstruction of Eustachian tube (381.6)\\" + }, + { + "displayName": "(381.62) Intrinsic cartilagenous obstruction of Eustachian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Obstruction of Eustachian tube (381.6)\\(381.62) Intrinsic cartilagenous obstruction of Eustachian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Obstruction of Eustachian tube (381.6)\\" + }, + { + "displayName": "(381.63) Extrinsic cartilagenous obstruction of Eustachian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Obstruction of Eustachian tube (381.6)\\(381.63) Extrinsic cartilagenous obstruction of Eustachian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Obstruction of Eustachian tube (381.6)\\" + }, + { + "displayName": "Other disorders of Eustachian tube (381.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Other disorders of Eustachian tube (381.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\" + }, + { + "displayName": "(381.81) Dysfunction of Eustachian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Other disorders of Eustachian tube (381.8)\\(381.81) Dysfunction of Eustachian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Other disorders of Eustachian tube (381.8)\\" + }, + { + "displayName": "(381.89) Other disorders of Eustachian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Other disorders of Eustachian tube (381.8)\\(381.89) Other disorders of Eustachian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\\\Other disorders of Eustachian tube (381.8)\\\\(381.89) Other disorders of Eustachian tube\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Nonsuppurative otitis media and Eustachian tube disorders (381)\\Other disorders of Eustachian tube (381.8)\\" + }, + { + "displayName": "Other disorders of ear (388)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\" + }, + { + "displayName": "(388.2) Sudden hearing loss, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\(388.2) Sudden hearing loss, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\(388.2) Sudden hearing loss, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\" + }, + { + "displayName": "(388.5) Disorders of acoustic nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\(388.5) Disorders of acoustic nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\(388.5) Disorders of acoustic nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\" + }, + { + "displayName": "(388.8) Other disorders of ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\(388.8) Other disorders of ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\(388.8) Other disorders of ear\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\" + }, + { + "displayName": "(388.9) Unspecified disorder of ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\(388.9) Unspecified disorder of ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\(388.9) Unspecified disorder of ear\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\" + }, + { + "displayName": "Degenerative and vascular disorders of ear (388.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Degenerative and vascular disorders of ear (388.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\" + }, + { + "displayName": "(388.00) Degenerative and vascular disorders, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Degenerative and vascular disorders of ear (388.0)\\(388.00) Degenerative and vascular disorders, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Degenerative and vascular disorders of ear (388.0)\\" + }, + { + "displayName": "(388.01) Presbyacusis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Degenerative and vascular disorders of ear (388.0)\\(388.01) Presbyacusis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Degenerative and vascular disorders of ear (388.0)\\" + }, + { + "displayName": "(388.02) Transient ischemic deafness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Degenerative and vascular disorders of ear (388.0)\\(388.02) Transient ischemic deafness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Degenerative and vascular disorders of ear (388.0)\\" + }, + { + "displayName": "Noise effects on inner ear (388.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Noise effects on inner ear (388.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\" + }, + { + "displayName": "(388.10) Noise effects on inner ear, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Noise effects on inner ear (388.1)\\(388.10) Noise effects on inner ear, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Noise effects on inner ear (388.1)\\" + }, + { + "displayName": "(388.11) Acoustic trauma (explosive) to ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Noise effects on inner ear (388.1)\\(388.11) Acoustic trauma (explosive) to ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Noise effects on inner ear (388.1)\\" + }, + { + "displayName": "(388.12) Noise-induced hearing loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Noise effects on inner ear (388.1)\\(388.12) Noise-induced hearing loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Noise effects on inner ear (388.1)\\" + }, + { + "displayName": "Otalgia (388.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otalgia (388.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\" + }, + { + "displayName": "(388.70) Otalgia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otalgia (388.7)\\(388.70) Otalgia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otalgia (388.7)\\" + }, + { + "displayName": "(388.71) Otogenic pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otalgia (388.7)\\(388.71) Otogenic pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otalgia (388.7)\\" + }, + { + "displayName": "(388.72) Referred otogenic pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otalgia (388.7)\\(388.72) Referred otogenic pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\Otalgia (388.7)\\\\(388.72) Referred otogenic pain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otalgia (388.7)\\" + }, + { + "displayName": "Other abnormal auditory perception (388.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\Other abnormal auditory perception (388.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\" + }, + { + "displayName": "(388.40) Abnormal auditory perception, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\(388.40) Abnormal auditory perception, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\" + }, + { + "displayName": "(388.41) Diplacusis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\(388.41) Diplacusis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\Other abnormal auditory perception (388.4)\\\\(388.41) Diplacusis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\" + }, + { + "displayName": "(388.42) Hyperacusis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\(388.42) Hyperacusis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\Other abnormal auditory perception (388.4)\\\\(388.42) Hyperacusis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\" + }, + { + "displayName": "(388.43) Impairment of auditory discrimination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\(388.43) Impairment of auditory discrimination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\Other abnormal auditory perception (388.4)\\\\(388.43) Impairment of auditory discrimination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\" + }, + { + "displayName": "(388.44) Auditory recruitment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\(388.44) Auditory recruitment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\" + }, + { + "displayName": "(388.45) Acquired auditory processing disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\(388.45) Acquired auditory processing disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\Other abnormal auditory perception (388.4)\\\\(388.45) Acquired auditory processing disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Other abnormal auditory perception (388.4)\\" + }, + { + "displayName": "Otorrhea (388.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otorrhea (388.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\" + }, + { + "displayName": "(388.60) Otorrhea, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otorrhea (388.6)\\(388.60) Otorrhea, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\Otorrhea (388.6)\\\\(388.60) Otorrhea, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otorrhea (388.6)\\" + }, + { + "displayName": "(388.61) Cerebrospinal fluid otorrhea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otorrhea (388.6)\\(388.61) Cerebrospinal fluid otorrhea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otorrhea (388.6)\\" + }, + { + "displayName": "(388.69) Other otorrhea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otorrhea (388.6)\\(388.69) Other otorrhea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\Otorrhea (388.6)\\\\(388.69) Other otorrhea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Otorrhea (388.6)\\" + }, + { + "displayName": "Tinnitus (388.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Tinnitus (388.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\Tinnitus (388.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\" + }, + { + "displayName": "(388.30) Tinnitus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Tinnitus (388.3)\\(388.30) Tinnitus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\Tinnitus (388.3)\\\\(388.30) Tinnitus, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Tinnitus (388.3)\\" + }, + { + "displayName": "(388.31) Subjective tinnitus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Tinnitus (388.3)\\(388.31) Subjective tinnitus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Tinnitus (388.3)\\" + }, + { + "displayName": "(388.32) Objective tinnitus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Tinnitus (388.3)\\(388.32) Objective tinnitus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of ear (388)\\\\Tinnitus (388.3)\\\\(388.32) Objective tinnitus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of ear (388)\\Tinnitus (388.3)\\" + }, + { + "displayName": "Other disorders of middle ear and mastoid (385)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of middle ear and mastoid (385)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\" + }, + { + "displayName": "(385.9) Unspecified disorder of middle ear and mastoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\(385.9) Unspecified disorder of middle ear and mastoid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of middle ear and mastoid (385)\\\\(385.9) Unspecified disorder of middle ear and mastoid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\" + }, + { + "displayName": "Adhesive middle ear disease (385.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Adhesive middle ear disease (385.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of middle ear and mastoid (385)\\\\Adhesive middle ear disease (385.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\" + }, + { + "displayName": "(385.10) Adhesive middle ear disease, unspecified as to involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Adhesive middle ear disease (385.1)\\(385.10) Adhesive middle ear disease, unspecified as to involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of middle ear and mastoid (385)\\\\Adhesive middle ear disease (385.1)\\\\(385.10) Adhesive middle ear disease, unspecified as to involvement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Adhesive middle ear disease (385.1)\\" + }, + { + "displayName": "(385.11) Adhesions of drum head to incus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Adhesive middle ear disease (385.1)\\(385.11) Adhesions of drum head to incus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Adhesive middle ear disease (385.1)\\" + }, + { + "displayName": "(385.12) Adhesions of drum head to stapes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Adhesive middle ear disease (385.1)\\(385.12) Adhesions of drum head to stapes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of middle ear and mastoid (385)\\\\Adhesive middle ear disease (385.1)\\\\(385.12) Adhesions of drum head to stapes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Adhesive middle ear disease (385.1)\\" + }, + { + "displayName": "(385.13) Adhesions of drum head to promontorium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Adhesive middle ear disease (385.1)\\(385.13) Adhesions of drum head to promontorium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of middle ear and mastoid (385)\\\\Adhesive middle ear disease (385.1)\\\\(385.13) Adhesions of drum head to promontorium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Adhesive middle ear disease (385.1)\\" + }, + { + "displayName": "(385.19) Other middle ear adhesions and combinations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Adhesive middle ear disease (385.1)\\(385.19) Other middle ear adhesions and combinations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Adhesive middle ear disease (385.1)\\" + }, + { + "displayName": "Cholesteatoma of middle ear and mastoid (385.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Cholesteatoma of middle ear and mastoid (385.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\" + }, + { + "displayName": "(385.30) Cholesteatoma, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Cholesteatoma of middle ear and mastoid (385.3)\\(385.30) Cholesteatoma, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Cholesteatoma of middle ear and mastoid (385.3)\\" + }, + { + "displayName": "(385.31) Cholesteatoma of attic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Cholesteatoma of middle ear and mastoid (385.3)\\(385.31) Cholesteatoma of attic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Cholesteatoma of middle ear and mastoid (385.3)\\" + }, + { + "displayName": "(385.32) Cholesteatoma of middle ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Cholesteatoma of middle ear and mastoid (385.3)\\(385.32) Cholesteatoma of middle ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Cholesteatoma of middle ear and mastoid (385.3)\\" + }, + { + "displayName": "(385.33) Cholesteatoma of middle ear and mastoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Cholesteatoma of middle ear and mastoid (385.3)\\(385.33) Cholesteatoma of middle ear and mastoid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Cholesteatoma of middle ear and mastoid (385.3)\\" + }, + { + "displayName": "(385.35) Diffuse cholesteatosis of middle ear and mastoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Cholesteatoma of middle ear and mastoid (385.3)\\(385.35) Diffuse cholesteatosis of middle ear and mastoid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Cholesteatoma of middle ear and mastoid (385.3)\\" + }, + { + "displayName": "Other acquired abnormality of ear ossicles (385.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other acquired abnormality of ear ossicles (385.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\" + }, + { + "displayName": "(385.21) Impaired mobility of malleus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other acquired abnormality of ear ossicles (385.2)\\(385.21) Impaired mobility of malleus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other acquired abnormality of ear ossicles (385.2)\\" + }, + { + "displayName": "(385.22) Impaired mobility of other ear ossicles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other acquired abnormality of ear ossicles (385.2)\\(385.22) Impaired mobility of other ear ossicles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other acquired abnormality of ear ossicles (385.2)\\" + }, + { + "displayName": "(385.23) Discontinuity or dislocation of ear ossicles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other acquired abnormality of ear ossicles (385.2)\\(385.23) Discontinuity or dislocation of ear ossicles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other acquired abnormality of ear ossicles (385.2)\\" + }, + { + "displayName": "(385.24) Partial loss or necrosis of ear ossicles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other acquired abnormality of ear ossicles (385.2)\\(385.24) Partial loss or necrosis of ear ossicles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other acquired abnormality of ear ossicles (385.2)\\" + }, + { + "displayName": "Other disorders of middle ear and mastoid (385.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other disorders of middle ear and mastoid (385.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\" + }, + { + "displayName": "(385.82) Cholesterin granuloma of middle ear and mastoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other disorders of middle ear and mastoid (385.8)\\(385.82) Cholesterin granuloma of middle ear and mastoid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other disorders of middle ear and mastoid (385.8)\\" + }, + { + "displayName": "(385.83) Retained foreign body of middle ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other disorders of middle ear and mastoid (385.8)\\(385.83) Retained foreign body of middle ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other disorders of middle ear and mastoid (385.8)\\" + }, + { + "displayName": "(385.89) Other disorders of middle ear and mastoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other disorders of middle ear and mastoid (385.8)\\(385.89) Other disorders of middle ear and mastoid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Other disorders of middle ear and mastoid (385.8)\\" + }, + { + "displayName": "Tympanosclerosis (385.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Tympanosclerosis (385.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\" + }, + { + "displayName": "(385.00) Tympanosclerosis, unspecified as to involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Tympanosclerosis (385.0)\\(385.00) Tympanosclerosis, unspecified as to involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of middle ear and mastoid (385)\\\\Tympanosclerosis (385.0)\\\\(385.00) Tympanosclerosis, unspecified as to involvement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Tympanosclerosis (385.0)\\" + }, + { + "displayName": "(385.01) Tympanosclerosis involving tympanic membrane only", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Tympanosclerosis (385.0)\\(385.01) Tympanosclerosis involving tympanic membrane only\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of middle ear and mastoid (385)\\\\Tympanosclerosis (385.0)\\\\(385.01) Tympanosclerosis involving tympanic membrane only\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Tympanosclerosis (385.0)\\" + }, + { + "displayName": "(385.02) Tympanosclerosis involving tympanic membrane and ear ossicles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Tympanosclerosis (385.0)\\(385.02) Tympanosclerosis involving tympanic membrane and ear ossicles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Tympanosclerosis (385.0)\\" + }, + { + "displayName": "(385.03) Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Tympanosclerosis (385.0)\\(385.03) Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of middle ear and mastoid (385)\\\\Tympanosclerosis (385.0)\\\\(385.03) Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Tympanosclerosis (385.0)\\" + }, + { + "displayName": "(385.09) Tympanosclerosis involving other combination of structures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Tympanosclerosis (385.0)\\(385.09) Tympanosclerosis involving other combination of structures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of middle ear and mastoid (385)\\Tympanosclerosis (385.0)\\" + }, + { + "displayName": "Other disorders of tympanic membrane (384)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of tympanic membrane (384)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\" + }, + { + "displayName": "(384.1) Chronic myringitis without mention of otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\(384.1) Chronic myringitis without mention of otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of tympanic membrane (384)\\\\(384.1) Chronic myringitis without mention of otitis media\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\" + }, + { + "displayName": "(384.9) Unspecified disorder of tympanic membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\(384.9) Unspecified disorder of tympanic membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\" + }, + { + "displayName": "Acute myringitis without mention of otitis media (384.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Acute myringitis without mention of otitis media (384.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\" + }, + { + "displayName": "(384.00) Acute myringitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Acute myringitis without mention of otitis media (384.0)\\(384.00) Acute myringitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of tympanic membrane (384)\\\\Acute myringitis without mention of otitis media (384.0)\\\\(384.00) Acute myringitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Acute myringitis without mention of otitis media (384.0)\\" + }, + { + "displayName": "(384.01) Bullous myringitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Acute myringitis without mention of otitis media (384.0)\\(384.01) Bullous myringitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of tympanic membrane (384)\\\\Acute myringitis without mention of otitis media (384.0)\\\\(384.01) Bullous myringitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Acute myringitis without mention of otitis media (384.0)\\" + }, + { + "displayName": "(384.09) Other acute myringitis without mention of otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Acute myringitis without mention of otitis media (384.0)\\(384.09) Other acute myringitis without mention of otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of tympanic membrane (384)\\\\Acute myringitis without mention of otitis media (384.0)\\\\(384.09) Other acute myringitis without mention of otitis media\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Acute myringitis without mention of otitis media (384.0)\\" + }, + { + "displayName": "Other specified disorders of tympanic membrane (384.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Other specified disorders of tympanic membrane (384.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of tympanic membrane (384)\\\\Other specified disorders of tympanic membrane (384.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\" + }, + { + "displayName": "(384.81) Atrophic flaccid tympanic membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Other specified disorders of tympanic membrane (384.8)\\(384.81) Atrophic flaccid tympanic membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Other specified disorders of tympanic membrane (384.8)\\" + }, + { + "displayName": "(384.82) Atrophic nonflaccid tympanic membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Other specified disorders of tympanic membrane (384.8)\\(384.82) Atrophic nonflaccid tympanic membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of tympanic membrane (384)\\\\Other specified disorders of tympanic membrane (384.8)\\\\(384.82) Atrophic nonflaccid tympanic membrane\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Other specified disorders of tympanic membrane (384.8)\\" + }, + { + "displayName": "Perforation of tympanic membrane (384.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\" + }, + { + "displayName": "(384.20) Perforation of tympanic membrane, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\(384.20) Perforation of tympanic membrane, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\" + }, + { + "displayName": "(384.21) Central perforation of tympanic membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\(384.21) Central perforation of tympanic membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\" + }, + { + "displayName": "(384.22) Attic perforation of tympanic membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\(384.22) Attic perforation of tympanic membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Other disorders of tympanic membrane (384)\\\\Perforation of tympanic membrane (384.2)\\\\(384.22) Attic perforation of tympanic membrane\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\" + }, + { + "displayName": "(384.23) Other marginal perforation of tympanic membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\(384.23) Other marginal perforation of tympanic membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\" + }, + { + "displayName": "(384.24) Multiple perforations of tympanic membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\(384.24) Multiple perforations of tympanic membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\" + }, + { + "displayName": "(384.25) Total perforation of tympanic membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\(384.25) Total perforation of tympanic membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Other disorders of tympanic membrane (384)\\Perforation of tympanic membrane (384.2)\\" + }, + { + "displayName": "Otosclerosis (387)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Otosclerosis (387)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\" + }, + { + "displayName": "(387.0) Otosclerosis involving oval window, nonobliterative", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Otosclerosis (387)\\(387.0) Otosclerosis involving oval window, nonobliterative\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Otosclerosis (387)\\" + }, + { + "displayName": "(387.1) Otosclerosis involving oval window, obliterative", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Otosclerosis (387)\\(387.1) Otosclerosis involving oval window, obliterative\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Otosclerosis (387)\\" + }, + { + "displayName": "(387.2) Cochlear otosclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Otosclerosis (387)\\(387.2) Cochlear otosclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Otosclerosis (387)\\" + }, + { + "displayName": "(387.8) Other otosclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Otosclerosis (387)\\(387.8) Other otosclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Otosclerosis (387)\\" + }, + { + "displayName": "(387.9) Otosclerosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Otosclerosis (387)\\(387.9) Otosclerosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Otosclerosis (387)\\" + }, + { + "displayName": "Suppurative and unspecified otitis media (382)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\" + }, + { + "displayName": "(382.1) Chronic tubotympanic suppurative otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\(382.1) Chronic tubotympanic suppurative otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\" + }, + { + "displayName": "(382.2) Chronic atticoantral suppurative otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\(382.2) Chronic atticoantral suppurative otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\" + }, + { + "displayName": "(382.3) Unspecified chronic suppurative otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\(382.3) Unspecified chronic suppurative otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Suppurative and unspecified otitis media (382)\\\\(382.3) Unspecified chronic suppurative otitis media\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\" + }, + { + "displayName": "(382.4) Unspecified suppurative otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\(382.4) Unspecified suppurative otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\" + }, + { + "displayName": "(382.9) Unspecified otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\(382.9) Unspecified otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\" + }, + { + "displayName": "Acute suppurative otitis media (382.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\Acute suppurative otitis media (382.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Suppurative and unspecified otitis media (382)\\\\Acute suppurative otitis media (382.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\" + }, + { + "displayName": "(382.00) Acute suppurative otitis media without spontaneous rupture of eardrum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\Acute suppurative otitis media (382.0)\\(382.00) Acute suppurative otitis media without spontaneous rupture of eardrum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\Acute suppurative otitis media (382.0)\\" + }, + { + "displayName": "(382.01) Acute suppurative otitis media with spontaneous rupture of eardrum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\Acute suppurative otitis media (382.0)\\(382.01) Acute suppurative otitis media with spontaneous rupture of eardrum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\Acute suppurative otitis media (382.0)\\" + }, + { + "displayName": "(382.02) Acute suppurative otitis media in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\Acute suppurative otitis media (382.0)\\(382.02) Acute suppurative otitis media in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Suppurative and unspecified otitis media (382)\\Acute suppurative otitis media (382.0)\\" + }, + { + "displayName": "Vertiginous syndromes and other disorders of vestibular system (386)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\" + }, + { + "displayName": "(386.2) Vertigo of central origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\(386.2) Vertigo of central origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\" + }, + { + "displayName": "(386.8) Other disorders of labyrinth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\(386.8) Other disorders of labyrinth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\" + }, + { + "displayName": "(386.9) Unspecified vertiginous syndromes and labyrinthine disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\(386.9) Unspecified vertiginous syndromes and labyrinthine disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\" + }, + { + "displayName": "Labyrinthine dysfunction (386.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\" + }, + { + "displayName": "(386.50) Labyrinthine dysfunction, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\(386.50) Labyrinthine dysfunction, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\" + }, + { + "displayName": "(386.51) Hyperactive labyrinth, unilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\(386.51) Hyperactive labyrinth, unilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\" + }, + { + "displayName": "(386.52) Hyperactive labyrinth, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\(386.52) Hyperactive labyrinth, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\" + }, + { + "displayName": "(386.53) Hypoactive labyrinth, unilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\(386.53) Hypoactive labyrinth, unilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\" + }, + { + "displayName": "(386.54) Hypoactive labyrinth, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\(386.54) Hypoactive labyrinth, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\" + }, + { + "displayName": "(386.55) Loss of labyrinthine reactivity, unilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\(386.55) Loss of labyrinthine reactivity, unilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\" + }, + { + "displayName": "(386.56) Loss of labyrinthine reactivity, bilateral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\(386.56) Loss of labyrinthine reactivity, bilateral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\" + }, + { + "displayName": "(386.58) Other forms and combinations of labyrinthine dysfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\(386.58) Other forms and combinations of labyrinthine dysfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine dysfunction (386.5)\\" + }, + { + "displayName": "Labyrinthine fistula (386.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine fistula (386.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\" + }, + { + "displayName": "(386.40) Labyrinthine fistula, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine fistula (386.4)\\(386.40) Labyrinthine fistula, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Vertiginous syndromes and other disorders of vestibular system (386)\\\\Labyrinthine fistula (386.4)\\\\(386.40) Labyrinthine fistula, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine fistula (386.4)\\" + }, + { + "displayName": "(386.41) Round window fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine fistula (386.4)\\(386.41) Round window fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Vertiginous syndromes and other disorders of vestibular system (386)\\\\Labyrinthine fistula (386.4)\\\\(386.41) Round window fistula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine fistula (386.4)\\" + }, + { + "displayName": "(386.42) Oval window fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine fistula (386.4)\\(386.42) Oval window fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine fistula (386.4)\\" + }, + { + "displayName": "(386.43) Semicircular canal fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine fistula (386.4)\\(386.43) Semicircular canal fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine fistula (386.4)\\" + }, + { + "displayName": "(386.48) Labyrinthine fistula of combined sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine fistula (386.4)\\(386.48) Labyrinthine fistula of combined sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthine fistula (386.4)\\" + }, + { + "displayName": "Labyrinthitis (386.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\" + }, + { + "displayName": "(386.30) Labyrinthitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\(386.30) Labyrinthitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\" + }, + { + "displayName": "(386.31) Serous labyrinthitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\(386.31) Serous labyrinthitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\" + }, + { + "displayName": "(386.32) Circumscribed labyrinthitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\(386.32) Circumscribed labyrinthitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\" + }, + { + "displayName": "(386.33) Suppurative labyrinthitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\(386.33) Suppurative labyrinthitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\" + }, + { + "displayName": "(386.34) Toxic labyrinthitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\(386.34) Toxic labyrinthitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\" + }, + { + "displayName": "(386.35) Viral labyrinthitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\(386.35) Viral labyrinthitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Labyrinthitis (386.3)\\" + }, + { + "displayName": "Meniere's disease (386.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Meniere's disease (386.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\" + }, + { + "displayName": "(386.00) Meniere's disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Meniere's disease (386.0)\\(386.00) Meniere's disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Meniere's disease (386.0)\\" + }, + { + "displayName": "(386.01) Active Meniere's disease, cochleovestibular", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Meniere's disease (386.0)\\(386.01) Active Meniere's disease, cochleovestibular\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Meniere's disease (386.0)\\" + }, + { + "displayName": "(386.02) Active Meniere's disease, cochlear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Meniere's disease (386.0)\\(386.02) Active Meniere's disease, cochlear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Meniere's disease (386.0)\\" + }, + { + "displayName": "(386.03) Active Meniere's disease, vestibular", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Meniere's disease (386.0)\\(386.03) Active Meniere's disease, vestibular\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Vertiginous syndromes and other disorders of vestibular system (386)\\\\Meniere's disease (386.0)\\\\(386.03) Active Meniere's disease, vestibular\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Meniere's disease (386.0)\\" + }, + { + "displayName": "(386.04) Inactive Meniere's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Meniere's disease (386.0)\\(386.04) Inactive Meniere's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Vertiginous syndromes and other disorders of vestibular system (386)\\\\Meniere's disease (386.0)\\\\(386.04) Inactive Meniere's disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Meniere's disease (386.0)\\" + }, + { + "displayName": "Other and unspecified peripheral vertigo (386.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Other and unspecified peripheral vertigo (386.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Vertiginous syndromes and other disorders of vestibular system (386)\\\\Other and unspecified peripheral vertigo (386.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\" + }, + { + "displayName": "(386.10) Peripheral vertigo, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Other and unspecified peripheral vertigo (386.1)\\(386.10) Peripheral vertigo, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Other and unspecified peripheral vertigo (386.1)\\" + }, + { + "displayName": "(386.11) Benign paroxysmal positional vertigo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Other and unspecified peripheral vertigo (386.1)\\(386.11) Benign paroxysmal positional vertigo\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Vertiginous syndromes and other disorders of vestibular system (386)\\\\Other and unspecified peripheral vertigo (386.1)\\\\(386.11) Benign paroxysmal positional vertigo\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Other and unspecified peripheral vertigo (386.1)\\" + }, + { + "displayName": "(386.12) Vestibular neuronitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Other and unspecified peripheral vertigo (386.1)\\(386.12) Vestibular neuronitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Diseases of the ear and mastoid process (380-389.99)\\\\Vertiginous syndromes and other disorders of vestibular system (386)\\\\Other and unspecified peripheral vertigo (386.1)\\\\(386.12) Vestibular neuronitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Other and unspecified peripheral vertigo (386.1)\\" + }, + { + "displayName": "(386.19) Other peripheral vertigo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Other and unspecified peripheral vertigo (386.1)\\(386.19) Other peripheral vertigo\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Diseases of the ear and mastoid process (380-389.99)\\Vertiginous syndromes and other disorders of vestibular system (386)\\Other and unspecified peripheral vertigo (386.1)\\" + }, + { + "displayName": "Disorders of the eye and adnexa (360-379.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\" + }, + { + "displayName": "Blindness and low vision (369)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(369.3) Unqualified visual loss, both eyes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\(369.3) Unqualified visual loss, both eyes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\(369.3) Unqualified visual loss, both eyes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\" + }, + { + "displayName": "(369.4) Legal blindness, as defined in U.S.A.", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\(369.4) Legal blindness, as defined in U.S.A.\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\(369.4) Legal blindness, as defined in U.S.A.\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\" + }, + { + "displayName": "(369.8) Unqualified visual loss, one eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\(369.8) Unqualified visual loss, one eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\" + }, + { + "displayName": "(369.9) Unspecified visual loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\(369.9) Unspecified visual loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\(369.9) Unspecified visual loss\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\" + }, + { + "displayName": "Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\" + }, + { + "displayName": "(369.10) Moderate or severe impairment, better eye, impairment level not further specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\(369.10) Moderate or severe impairment, better eye, impairment level not further specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\" + }, + { + "displayName": "(369.11) Better eye: severe vision impairment; lesser eye: blind, not further specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\(369.11) Better eye: severe vision impairment; lesser eye: blind, not further specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\\\(369.11) Better eye: severe vision impairment; lesser eye: blind, not further specified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\" + }, + { + "displayName": "(369.12) Better eye: severe vision impairment; lesser eye: total vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\(369.12) Better eye: severe vision impairment; lesser eye: total vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\\\(369.12) Better eye: severe vision impairment; lesser eye: total vision impairment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\" + }, + { + "displayName": "(369.13) Better eye: severe vision impairment; lesser eye: near-total vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\(369.13) Better eye: severe vision impairment; lesser eye: near-total vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\\\(369.13) Better eye: severe vision impairment; lesser eye: near-total vision impairment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\" + }, + { + "displayName": "(369.14) Better eye: severe vision impairment; lesser eye: profound vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\(369.14) Better eye: severe vision impairment; lesser eye: profound vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\\\(369.14) Better eye: severe vision impairment; lesser eye: profound vision impairment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\" + }, + { + "displayName": "(369.15) Better eye: moderate vision impairment; lesser eye: blind, not further specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\(369.15) Better eye: moderate vision impairment; lesser eye: blind, not further specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\\\(369.15) Better eye: moderate vision impairment; lesser eye: blind, not further specified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\" + }, + { + "displayName": "(369.16) Better eye: moderate vision impairment; lesser eye: total vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\(369.16) Better eye: moderate vision impairment; lesser eye: total vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\\\(369.16) Better eye: moderate vision impairment; lesser eye: total vision impairment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\" + }, + { + "displayName": "(369.17) Better eye: moderate vision impairment; lesser eye: near-total vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\(369.17) Better eye: moderate vision impairment; lesser eye: near-total vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\" + }, + { + "displayName": "(369.18) Better eye: moderate vision impairment; lesser eye: profound vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\(369.18) Better eye: moderate vision impairment; lesser eye: profound vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\\" + }, + { + "displayName": "Moderate or severe vision impairment, both eyes (369.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\" + }, + { + "displayName": "(369.20) Moderate or severe impairment, both eyes, impairment level not further specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\(369.20) Moderate or severe impairment, both eyes, impairment level not further specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\" + }, + { + "displayName": "(369.21) Better eye: severe vision impairment; lesser eye; impairment not further specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\(369.21) Better eye: severe vision impairment; lesser eye; impairment not further specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\" + }, + { + "displayName": "(369.22) Better eye: severe vision impairment; lesser eye: severe vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\(369.22) Better eye: severe vision impairment; lesser eye: severe vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\" + }, + { + "displayName": "(369.23) Better eye: moderate vision impairment; lesser eye: impairment not further specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\(369.23) Better eye: moderate vision impairment; lesser eye: impairment not further specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\" + }, + { + "displayName": "(369.24) Better eye: moderate vision impairment; lesser eye: severe vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\(369.24) Better eye: moderate vision impairment; lesser eye: severe vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\" + }, + { + "displayName": "(369.25) Better eye: moderate vision impairment; lesser eye: moderate vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\(369.25) Better eye: moderate vision impairment; lesser eye: moderate vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, both eyes (369.2)\\" + }, + { + "displayName": "Moderate or severe vision impairment, one eye (369.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\" + }, + { + "displayName": "(369.70) Moderate or severe impairment, one eye, impairment level not further specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\(369.70) Moderate or severe impairment, one eye, impairment level not further specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\" + }, + { + "displayName": "(369.71) One eye: severe vision impairment; other eye: vision not specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\(369.71) One eye: severe vision impairment; other eye: vision not specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, one eye (369.7)\\\\(369.71) One eye: severe vision impairment; other eye: vision not specified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\" + }, + { + "displayName": "(369.72) One eye: severe vision impairment; other eye: near-normal vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\(369.72) One eye: severe vision impairment; other eye: near-normal vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, one eye (369.7)\\\\(369.72) One eye: severe vision impairment; other eye: near-normal vision\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\" + }, + { + "displayName": "(369.73) One eye: severe vision impairment; other eye: normal vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\(369.73) One eye: severe vision impairment; other eye: normal vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, one eye (369.7)\\\\(369.73) One eye: severe vision impairment; other eye: normal vision\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\" + }, + { + "displayName": "(369.74) One eye: moderate vision impairment; other eye: vision not specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\(369.74) One eye: moderate vision impairment; other eye: vision not specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\" + }, + { + "displayName": "(369.75) One eye: moderate vision impairment; other eye: near-normal vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\(369.75) One eye: moderate vision impairment; other eye: near-normal vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, one eye (369.7)\\\\(369.75) One eye: moderate vision impairment; other eye: near-normal vision\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\" + }, + { + "displayName": "(369.76) One eye: moderate vision impairment; other eye: normal vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\(369.76) One eye: moderate vision impairment; other eye: normal vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Moderate or severe vision impairment, one eye (369.7)\\\\(369.76) One eye: moderate vision impairment; other eye: normal vision\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Moderate or severe vision impairment, one eye (369.7)\\" + }, + { + "displayName": "Profound vision impairment, both eyes (369.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\" + }, + { + "displayName": "(369.00) Profound impairment, both eyes, impairment level not further specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\(369.00) Profound impairment, both eyes, impairment level not further specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, both eyes (369.0)\\\\(369.00) Profound impairment, both eyes, impairment level not further specified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\" + }, + { + "displayName": "(369.01) Better eye: total vision impairment; lesser eye: total vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\(369.01) Better eye: total vision impairment; lesser eye: total vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, both eyes (369.0)\\\\(369.01) Better eye: total vision impairment; lesser eye: total vision impairment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\" + }, + { + "displayName": "(369.02) Better eye: near-total vision impairment; lesser eye: not further specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\(369.02) Better eye: near-total vision impairment; lesser eye: not further specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, both eyes (369.0)\\\\(369.02) Better eye: near-total vision impairment; lesser eye: not further specified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\" + }, + { + "displayName": "(369.03) Better eye: near-total vision impairment; lesser eye: total vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\(369.03) Better eye: near-total vision impairment; lesser eye: total vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\" + }, + { + "displayName": "(369.04) Better eye: near-total vision impairment; lesser eye: near-total vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\(369.04) Better eye: near-total vision impairment; lesser eye: near-total vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, both eyes (369.0)\\\\(369.04) Better eye: near-total vision impairment; lesser eye: near-total vision impairment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\" + }, + { + "displayName": "(369.05) Better eye: profound vision impairment; lesser eye: not further specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\(369.05) Better eye: profound vision impairment; lesser eye: not further specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, both eyes (369.0)\\\\(369.05) Better eye: profound vision impairment; lesser eye: not further specified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\" + }, + { + "displayName": "(369.06) Better eye: profound vision impairment; lesser eye: total vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\(369.06) Better eye: profound vision impairment; lesser eye: total vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, both eyes (369.0)\\\\(369.06) Better eye: profound vision impairment; lesser eye: total vision impairment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\" + }, + { + "displayName": "(369.07) Better eye: profound vision impairment; lesser eye: near-total vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\(369.07) Better eye: profound vision impairment; lesser eye: near-total vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, both eyes (369.0)\\\\(369.07) Better eye: profound vision impairment; lesser eye: near-total vision impairment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\" + }, + { + "displayName": "(369.08) Better eye: profound vision impairment; lesser eye: profound vision impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\(369.08) Better eye: profound vision impairment; lesser eye: profound vision impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, both eyes (369.0)\\" + }, + { + "displayName": "Profound vision impairment, one eye (369.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, one eye (369.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\" + }, + { + "displayName": "(369.60) Profound impairment, one eye, impairment level not further specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\(369.60) Profound impairment, one eye, impairment level not further specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, one eye (369.6)\\\\(369.60) Profound impairment, one eye, impairment level not further specified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\" + }, + { + "displayName": "(369.61) One eye: total vision impairment; other eye: not specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\(369.61) One eye: total vision impairment; other eye: not specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, one eye (369.6)\\\\(369.61) One eye: total vision impairment; other eye: not specified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\" + }, + { + "displayName": "(369.62) One eye: total vision impairment; other eye: near-normal vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\(369.62) One eye: total vision impairment; other eye: near-normal vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\" + }, + { + "displayName": "(369.63) One eye: total vision impairment; other eye: normal vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\(369.63) One eye: total vision impairment; other eye: normal vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, one eye (369.6)\\\\(369.63) One eye: total vision impairment; other eye: normal vision\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\" + }, + { + "displayName": "(369.64) One eye: near-total vision impairment; other eye: vision not specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\(369.64) One eye: near-total vision impairment; other eye: vision not specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, one eye (369.6)\\\\(369.64) One eye: near-total vision impairment; other eye: vision not specified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\" + }, + { + "displayName": "(369.65) One eye: near-total vision impairment; other eye: near-normal vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\(369.65) One eye: near-total vision impairment; other eye: near-normal vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, one eye (369.6)\\\\(369.65) One eye: near-total vision impairment; other eye: near-normal vision\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\" + }, + { + "displayName": "(369.66) One eye: near-total vision impairment; other eye: normal vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\(369.66) One eye: near-total vision impairment; other eye: normal vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\" + }, + { + "displayName": "(369.67) One eye: profound vision impairment; other eye: vision not specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\(369.67) One eye: profound vision impairment; other eye: vision not specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Blindness and low vision (369)\\\\Profound vision impairment, one eye (369.6)\\\\(369.67) One eye: profound vision impairment; other eye: vision not specified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\" + }, + { + "displayName": "(369.68) One eye: profound vision impairment; other eye: near-normal vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\(369.68) One eye: profound vision impairment; other eye: near-normal vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\" + }, + { + "displayName": "(369.69) One eye: profound vision impairment; other eye: normal vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\(369.69) One eye: profound vision impairment; other eye: normal vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Blindness and low vision (369)\\Profound vision impairment, one eye (369.6)\\" + }, + { + "displayName": "Cataract (366)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(366.8) Other cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\(366.8) Other cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\" + }, + { + "displayName": "(366.9) Unspecified cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\(366.9) Unspecified cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\" + }, + { + "displayName": "After-cataract (366.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\After-cataract (366.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\" + }, + { + "displayName": "(366.50) After-cataract, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\After-cataract (366.5)\\(366.50) After-cataract, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\After-cataract (366.5)\\" + }, + { + "displayName": "(366.51) Soemmering's ring", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\After-cataract (366.5)\\(366.51) Soemmering's ring\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\After-cataract (366.5)\\\\(366.51) Soemmering's ring\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\After-cataract (366.5)\\" + }, + { + "displayName": "(366.52) Other after-cataract, not obscuring vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\After-cataract (366.5)\\(366.52) Other after-cataract, not obscuring vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\After-cataract (366.5)\\\\(366.52) Other after-cataract, not obscuring vision\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\After-cataract (366.5)\\" + }, + { + "displayName": "(366.53) After-cataract, obscuring vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\After-cataract (366.5)\\(366.53) After-cataract, obscuring vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\After-cataract (366.5)\\\\(366.53) After-cataract, obscuring vision\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\After-cataract (366.5)\\" + }, + { + "displayName": "Cataract associated with other disorders (366.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\" + }, + { + "displayName": "(366.41) Diabetic cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\(366.41) Diabetic cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Cataract associated with other disorders (366.4)\\\\(366.41) Diabetic cataract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\" + }, + { + "displayName": "(366.42) Tetanic cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\(366.42) Tetanic cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Cataract associated with other disorders (366.4)\\\\(366.42) Tetanic cataract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\" + }, + { + "displayName": "(366.43) Myotonic cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\(366.43) Myotonic cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\" + }, + { + "displayName": "(366.44) Cataract associated with other syndromes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\(366.44) Cataract associated with other syndromes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Cataract associated with other disorders (366.4)\\\\(366.44) Cataract associated with other syndromes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\" + }, + { + "displayName": "(366.45) Toxic cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\(366.45) Toxic cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Cataract associated with other disorders (366.4)\\\\(366.45) Toxic cataract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\" + }, + { + "displayName": "(366.46) Cataract associated with radiation and other physical influences", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\(366.46) Cataract associated with radiation and other physical influences\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract associated with other disorders (366.4)\\" + }, + { + "displayName": "Cataract secondary to ocular disorders (366.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract secondary to ocular disorders (366.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Cataract secondary to ocular disorders (366.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\" + }, + { + "displayName": "(366.30) Cataracta complicata, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract secondary to ocular disorders (366.3)\\(366.30) Cataracta complicata, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Cataract secondary to ocular disorders (366.3)\\\\(366.30) Cataracta complicata, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract secondary to ocular disorders (366.3)\\" + }, + { + "displayName": "(366.31) Glaucomatous flecks (subcapsular)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract secondary to ocular disorders (366.3)\\(366.31) Glaucomatous flecks (subcapsular)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Cataract secondary to ocular disorders (366.3)\\\\(366.31) Glaucomatous flecks (subcapsular)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract secondary to ocular disorders (366.3)\\" + }, + { + "displayName": "(366.32) Cataract in inflammatory ocular disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract secondary to ocular disorders (366.3)\\(366.32) Cataract in inflammatory ocular disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract secondary to ocular disorders (366.3)\\" + }, + { + "displayName": "(366.33) Cataract with neovascularization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract secondary to ocular disorders (366.3)\\(366.33) Cataract with neovascularization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract secondary to ocular disorders (366.3)\\" + }, + { + "displayName": "(366.34) Cataract in degenerative ocular disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract secondary to ocular disorders (366.3)\\(366.34) Cataract in degenerative ocular disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Cataract secondary to ocular disorders (366.3)\\\\(366.34) Cataract in degenerative ocular disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Cataract secondary to ocular disorders (366.3)\\" + }, + { + "displayName": "Infantile, juvenile, and presenile cataract (366.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Infantile, juvenile, and presenile cataract (366.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\" + }, + { + "displayName": "(366.00) Nonsenile cataract, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\(366.00) Nonsenile cataract, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Infantile, juvenile, and presenile cataract (366.0)\\\\(366.00) Nonsenile cataract, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\" + }, + { + "displayName": "(366.01) Anterior subcapsular polar cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\(366.01) Anterior subcapsular polar cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\" + }, + { + "displayName": "(366.02) Posterior subcapsular polar cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\(366.02) Posterior subcapsular polar cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Infantile, juvenile, and presenile cataract (366.0)\\\\(366.02) Posterior subcapsular polar cataract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\" + }, + { + "displayName": "(366.03) Cortical, lamellar, or zonular cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\(366.03) Cortical, lamellar, or zonular cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Infantile, juvenile, and presenile cataract (366.0)\\\\(366.03) Cortical, lamellar, or zonular cataract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\" + }, + { + "displayName": "(366.04) Nuclear cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\(366.04) Nuclear cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Infantile, juvenile, and presenile cataract (366.0)\\\\(366.04) Nuclear cataract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\" + }, + { + "displayName": "(366.09) Other and combined forms of nonsenile cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\(366.09) Other and combined forms of nonsenile cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Infantile, juvenile, and presenile cataract (366.0)\\" + }, + { + "displayName": "Senile cataract (366.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Senile cataract (366.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\" + }, + { + "displayName": "(366.10) Senile cataract, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\(366.10) Senile cataract, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Senile cataract (366.1)\\\\(366.10) Senile cataract, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\" + }, + { + "displayName": "(366.11) Pseudoexfoliation of lens capsule", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\(366.11) Pseudoexfoliation of lens capsule\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Senile cataract (366.1)\\\\(366.11) Pseudoexfoliation of lens capsule\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\" + }, + { + "displayName": "(366.12) Incipient senile cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\(366.12) Incipient senile cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Senile cataract (366.1)\\\\(366.12) Incipient senile cataract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\" + }, + { + "displayName": "(366.13) Anterior subcapsular polar senile cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\(366.13) Anterior subcapsular polar senile cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Cataract (366)\\\\Senile cataract (366.1)\\\\(366.13) Anterior subcapsular polar senile cataract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\" + }, + { + "displayName": "(366.14) Posterior subcapsular polar senile cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\(366.14) Posterior subcapsular polar senile cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\" + }, + { + "displayName": "(366.15) Cortical senile cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\(366.15) Cortical senile cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\" + }, + { + "displayName": "(366.16) Senile nuclear sclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\(366.16) Senile nuclear sclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\" + }, + { + "displayName": "(366.17) Total or mature cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\(366.17) Total or mature cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\" + }, + { + "displayName": "(366.18) Hypermature cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\(366.18) Hypermature cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\" + }, + { + "displayName": "(366.19) Other and combined forms of senile cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\(366.19) Other and combined forms of senile cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Senile cataract (366.1)\\" + }, + { + "displayName": "Traumatic cataract (366.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Traumatic cataract (366.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\" + }, + { + "displayName": "(366.20) Traumatic cataract, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Traumatic cataract (366.2)\\(366.20) Traumatic cataract, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Traumatic cataract (366.2)\\" + }, + { + "displayName": "(366.21) Localized traumatic opacities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Traumatic cataract (366.2)\\(366.21) Localized traumatic opacities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Traumatic cataract (366.2)\\" + }, + { + "displayName": "(366.22) Total traumatic cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Traumatic cataract (366.2)\\(366.22) Total traumatic cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Traumatic cataract (366.2)\\" + }, + { + "displayName": "(366.23) Partially resolved traumatic cataract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Traumatic cataract (366.2)\\(366.23) Partially resolved traumatic cataract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Cataract (366)\\Traumatic cataract (366.2)\\" + }, + { + "displayName": "Chorioretinal inflammations, scars, and other disorders of choroid (363)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(363.8) Other disorders of choroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\(363.8) Other disorders of choroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\(363.8) Other disorders of choroid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\" + }, + { + "displayName": "(363.9) Unspecified disorder of choroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\(363.9) Unspecified disorder of choroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\(363.9) Unspecified disorder of choroid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\" + }, + { + "displayName": "Chorioretinal scars (363.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\" + }, + { + "displayName": "(363.30) Chorioretinal scar, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\(363.30) Chorioretinal scar, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Chorioretinal scars (363.3)\\\\(363.30) Chorioretinal scar, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\" + }, + { + "displayName": "(363.31) Solar retinopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\(363.31) Solar retinopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Chorioretinal scars (363.3)\\\\(363.31) Solar retinopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\" + }, + { + "displayName": "(363.32) Other macular scars", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\(363.32) Other macular scars\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Chorioretinal scars (363.3)\\\\(363.32) Other macular scars\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\" + }, + { + "displayName": "(363.33) Other scars of posterior pole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\(363.33) Other scars of posterior pole\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\" + }, + { + "displayName": "(363.34) Peripheral scars", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\(363.34) Peripheral scars\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Chorioretinal scars (363.3)\\\\(363.34) Peripheral scars\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\" + }, + { + "displayName": "(363.35) Disseminated scars", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\(363.35) Disseminated scars\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Chorioretinal scars (363.3)\\" + }, + { + "displayName": "Choroidal degenerations (363.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal degenerations (363.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Choroidal degenerations (363.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\" + }, + { + "displayName": "(363.40) Choroidal degeneration, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal degenerations (363.4)\\(363.40) Choroidal degeneration, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal degenerations (363.4)\\" + }, + { + "displayName": "(363.41) Senile atrophy of choroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal degenerations (363.4)\\(363.41) Senile atrophy of choroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Choroidal degenerations (363.4)\\\\(363.41) Senile atrophy of choroid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal degenerations (363.4)\\" + }, + { + "displayName": "(363.42) Diffuse secondary atrophy of choroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal degenerations (363.4)\\(363.42) Diffuse secondary atrophy of choroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Choroidal degenerations (363.4)\\\\(363.42) Diffuse secondary atrophy of choroid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal degenerations (363.4)\\" + }, + { + "displayName": "(363.43) Angioid streaks of choroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal degenerations (363.4)\\(363.43) Angioid streaks of choroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal degenerations (363.4)\\" + }, + { + "displayName": "Choroidal detachment (363.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal detachment (363.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Choroidal detachment (363.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\" + }, + { + "displayName": "(363.70) Choroidal detachment, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal detachment (363.7)\\(363.70) Choroidal detachment, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal detachment (363.7)\\" + }, + { + "displayName": "(363.71) Serous choroidal detachment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal detachment (363.7)\\(363.71) Serous choroidal detachment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Choroidal detachment (363.7)\\\\(363.71) Serous choroidal detachment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal detachment (363.7)\\" + }, + { + "displayName": "(363.72) Hemorrhagic choroidal detachment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal detachment (363.7)\\(363.72) Hemorrhagic choroidal detachment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Choroidal detachment (363.7)\\\\(363.72) Hemorrhagic choroidal detachment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal detachment (363.7)\\" + }, + { + "displayName": "Choroidal hemorrhage and rupture (363.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal hemorrhage and rupture (363.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\" + }, + { + "displayName": "(363.61) Choroidal hemorrhage, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal hemorrhage and rupture (363.6)\\(363.61) Choroidal hemorrhage, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Choroidal hemorrhage and rupture (363.6)\\\\(363.61) Choroidal hemorrhage, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal hemorrhage and rupture (363.6)\\" + }, + { + "displayName": "(363.62) Expulsive choroidal hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal hemorrhage and rupture (363.6)\\(363.62) Expulsive choroidal hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal hemorrhage and rupture (363.6)\\" + }, + { + "displayName": "(363.63) Choroidal rupture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal hemorrhage and rupture (363.6)\\(363.63) Choroidal rupture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Choroidal hemorrhage and rupture (363.6)\\" + }, + { + "displayName": "Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\" + }, + { + "displayName": "(363.10) Disseminated chorioretinitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\(363.10) Disseminated chorioretinitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\" + }, + { + "displayName": "(363.11) Disseminated choroiditis and chorioretinitis, posterior pole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\(363.11) Disseminated choroiditis and chorioretinitis, posterior pole\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\" + }, + { + "displayName": "(363.12) Disseminated choroiditis and chorioretinitis, peripheral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\(363.12) Disseminated choroiditis and chorioretinitis, peripheral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\" + }, + { + "displayName": "(363.13) Disseminated choroiditis and chorioretinitis, generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\(363.13) Disseminated choroiditis and chorioretinitis, generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\" + }, + { + "displayName": "(363.14) Disseminated retinitis and retinochoroiditis, metastatic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\(363.14) Disseminated retinitis and retinochoroiditis, metastatic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\" + }, + { + "displayName": "(363.15) Disseminated retinitis and retinochoroiditis, pigment epitheliopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\(363.15) Disseminated retinitis and retinochoroiditis, pigment epitheliopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\\\(363.15) Disseminated retinitis and retinochoroiditis, pigment epitheliopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\\" + }, + { + "displayName": "Focal chorioretinitis and focal retinochoroiditis (363.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\" + }, + { + "displayName": "(363.00) Focal chorioretinitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\(363.00) Focal chorioretinitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\\\(363.00) Focal chorioretinitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\" + }, + { + "displayName": "(363.01) Focal choroiditis and chorioretinitis, juxtapapillary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\(363.01) Focal choroiditis and chorioretinitis, juxtapapillary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\" + }, + { + "displayName": "(363.03) Focal choroiditis and chorioretinitis of other posterior pole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\(363.03) Focal choroiditis and chorioretinitis of other posterior pole\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\\\(363.03) Focal choroiditis and chorioretinitis of other posterior pole\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\" + }, + { + "displayName": "(363.04) Focal choroiditis and chorioretinitis, peripheral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\(363.04) Focal choroiditis and chorioretinitis, peripheral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\\\(363.04) Focal choroiditis and chorioretinitis, peripheral\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\" + }, + { + "displayName": "(363.05) Focal retinitis and retinochoroiditis, juxtapapillary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\(363.05) Focal retinitis and retinochoroiditis, juxtapapillary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\" + }, + { + "displayName": "(363.06) Focal retinitis and retinochoroiditis, macular or paramacular", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\(363.06) Focal retinitis and retinochoroiditis, macular or paramacular\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\" + }, + { + "displayName": "(363.07) Focal retinitis and retinochoroiditis of other posterior pole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\(363.07) Focal retinitis and retinochoroiditis of other posterior pole\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\" + }, + { + "displayName": "(363.08) Focal retinitis and retinochoroiditis, peripheral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\(363.08) Focal retinitis and retinochoroiditis, peripheral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Focal chorioretinitis and focal retinochoroiditis (363.0)\\" + }, + { + "displayName": "Hereditary choroidal dystrophies (363.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\" + }, + { + "displayName": "(363.50) Hereditary choroidal dystrophy or atrophy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\(363.50) Hereditary choroidal dystrophy or atrophy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\" + }, + { + "displayName": "(363.51) Circumpapillary dystrophy of choroid, partial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\(363.51) Circumpapillary dystrophy of choroid, partial\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\" + }, + { + "displayName": "(363.52) Circumpapillary dystrophy of choroid, total", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\(363.52) Circumpapillary dystrophy of choroid, total\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Hereditary choroidal dystrophies (363.5)\\\\(363.52) Circumpapillary dystrophy of choroid, total\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\" + }, + { + "displayName": "(363.53) Central dystrophy of choroid, partial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\(363.53) Central dystrophy of choroid, partial\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Hereditary choroidal dystrophies (363.5)\\\\(363.53) Central dystrophy of choroid, partial\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\" + }, + { + "displayName": "(363.54) Central choroidal atrophy, total", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\(363.54) Central choroidal atrophy, total\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Hereditary choroidal dystrophies (363.5)\\\\(363.54) Central choroidal atrophy, total\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\" + }, + { + "displayName": "(363.55) Choroideremia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\(363.55) Choroideremia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\" + }, + { + "displayName": "(363.56) Other diffuse or generalized dystrophy of choroid, partial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\(363.56) Other diffuse or generalized dystrophy of choroid, partial\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\" + }, + { + "displayName": "(363.57) Other diffuse or generalized dystrophy of choroid, total", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\(363.57) Other diffuse or generalized dystrophy of choroid, total\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Hereditary choroidal dystrophies (363.5)\\" + }, + { + "displayName": "Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\" + }, + { + "displayName": "(363.20) Chorioretinitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\\(363.20) Chorioretinitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\\\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\\\\(363.20) Chorioretinitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\\" + }, + { + "displayName": "(363.21) Pars planitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\\(363.21) Pars planitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\\" + }, + { + "displayName": "(363.22) Harada's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\\(363.22) Harada's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Chorioretinal inflammations, scars, and other disorders of choroid (363)\\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\\" + }, + { + "displayName": "Corneal opacity and other disorders of cornea (371)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(371.9) Unspecified corneal disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\(371.9) Unspecified corneal disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\" + }, + { + "displayName": "Changes of corneal membranes (371.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Changes of corneal membranes (371.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\" + }, + { + "displayName": "(371.30) Corneal membrane change, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Changes of corneal membranes (371.3)\\(371.30) Corneal membrane change, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Changes of corneal membranes (371.3)\\\\(371.30) Corneal membrane change, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Changes of corneal membranes (371.3)\\" + }, + { + "displayName": "(371.31) Folds and rupture of bowman's membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Changes of corneal membranes (371.3)\\(371.31) Folds and rupture of bowman's membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Changes of corneal membranes (371.3)\\\\(371.31) Folds and rupture of bowman's membrane\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Changes of corneal membranes (371.3)\\" + }, + { + "displayName": "(371.32) Folds in descemet's membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Changes of corneal membranes (371.3)\\(371.32) Folds in descemet's membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Changes of corneal membranes (371.3)\\" + }, + { + "displayName": "(371.33) Rupture in descemet's membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Changes of corneal membranes (371.3)\\(371.33) Rupture in descemet's membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Changes of corneal membranes (371.3)\\\\(371.33) Rupture in descemet's membrane\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Changes of corneal membranes (371.3)\\" + }, + { + "displayName": "Corneal degenerations (371.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\" + }, + { + "displayName": "(371.40) Corneal degeneration, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\(371.40) Corneal degeneration, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\" + }, + { + "displayName": "(371.41) Senile corneal changes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\(371.41) Senile corneal changes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\" + }, + { + "displayName": "(371.42) Recurrent erosion of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\(371.42) Recurrent erosion of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\" + }, + { + "displayName": "(371.43) Band-shaped keratopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\(371.43) Band-shaped keratopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\" + }, + { + "displayName": "(371.44) Other calcerous degenerations of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\(371.44) Other calcerous degenerations of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\" + }, + { + "displayName": "(371.45) Keratomalacia NOS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\(371.45) Keratomalacia NOS\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\" + }, + { + "displayName": "(371.46) Nodular degeneration of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\(371.46) Nodular degeneration of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\" + }, + { + "displayName": "(371.48) Peripheral degenerations of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\(371.48) Peripheral degenerations of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\" + }, + { + "displayName": "(371.49) Other corneal degenerations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\(371.49) Other corneal degenerations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal degenerations (371.4)\\" + }, + { + "displayName": "Corneal edema (371.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal edema (371.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\" + }, + { + "displayName": "(371.20) Corneal edema, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal edema (371.2)\\(371.20) Corneal edema, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal edema (371.2)\\" + }, + { + "displayName": "(371.21) Idiopathic corneal edema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal edema (371.2)\\(371.21) Idiopathic corneal edema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal edema (371.2)\\" + }, + { + "displayName": "(371.22) Secondary corneal edema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal edema (371.2)\\(371.22) Secondary corneal edema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal edema (371.2)\\" + }, + { + "displayName": "(371.23) Bullous keratopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal edema (371.2)\\(371.23) Bullous keratopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal edema (371.2)\\" + }, + { + "displayName": "(371.24) Corneal edema due to wearing of contact lenses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal edema (371.2)\\(371.24) Corneal edema due to wearing of contact lenses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal edema (371.2)\\" + }, + { + "displayName": "Corneal pigmentations and deposits (371.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\" + }, + { + "displayName": "(371.10) Corneal deposit, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\(371.10) Corneal deposit, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\" + }, + { + "displayName": "(371.11) Anterior corneal pigmentations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\(371.11) Anterior corneal pigmentations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\" + }, + { + "displayName": "(371.12) Stromal corneal pigmentations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\(371.12) Stromal corneal pigmentations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\" + }, + { + "displayName": "(371.13) Posterior corneal pigmentations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\(371.13) Posterior corneal pigmentations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\" + }, + { + "displayName": "(371.14) Kayser-Fleischer ring", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\(371.14) Kayser-Fleischer ring\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Corneal pigmentations and deposits (371.1)\\\\(371.14) Kayser-Fleischer ring\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\" + }, + { + "displayName": "(371.15) Other corneal deposits associated with metabolic disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\(371.15) Other corneal deposits associated with metabolic disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Corneal pigmentations and deposits (371.1)\\\\(371.15) Other corneal deposits associated with metabolic disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\" + }, + { + "displayName": "(371.16) Argentous corneal deposits", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\(371.16) Argentous corneal deposits\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal pigmentations and deposits (371.1)\\" + }, + { + "displayName": "Corneal scars and opacities (371.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\" + }, + { + "displayName": "(371.00) Corneal opacity, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\(371.00) Corneal opacity, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Corneal scars and opacities (371.0)\\\\(371.00) Corneal opacity, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\" + }, + { + "displayName": "(371.01) Minor opacity of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\(371.01) Minor opacity of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\" + }, + { + "displayName": "(371.02) Peripheral opacity of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\(371.02) Peripheral opacity of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Corneal scars and opacities (371.0)\\\\(371.02) Peripheral opacity of cornea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\" + }, + { + "displayName": "(371.03) Central opacity of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\(371.03) Central opacity of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Corneal scars and opacities (371.0)\\\\(371.03) Central opacity of cornea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\" + }, + { + "displayName": "(371.04) Adherent leucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\(371.04) Adherent leucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Corneal scars and opacities (371.0)\\\\(371.04) Adherent leucoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\" + }, + { + "displayName": "(371.05) Phthisical cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\(371.05) Phthisical cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Corneal scars and opacities (371.0)\\" + }, + { + "displayName": "Hereditary corneal dystrophies (371.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Hereditary corneal dystrophies (371.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\" + }, + { + "displayName": "(371.50) Hereditary corneal dystrophy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\(371.50) Hereditary corneal dystrophy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Hereditary corneal dystrophies (371.5)\\\\(371.50) Hereditary corneal dystrophy, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\" + }, + { + "displayName": "(371.51) Juvenile epithelial corneal dystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\(371.51) Juvenile epithelial corneal dystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\" + }, + { + "displayName": "(371.52) Other anterior corneal dystrophies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\(371.52) Other anterior corneal dystrophies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Hereditary corneal dystrophies (371.5)\\\\(371.52) Other anterior corneal dystrophies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\" + }, + { + "displayName": "(371.53) Granular corneal dystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\(371.53) Granular corneal dystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Hereditary corneal dystrophies (371.5)\\\\(371.53) Granular corneal dystrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\" + }, + { + "displayName": "(371.54) Lattice corneal dystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\(371.54) Lattice corneal dystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Hereditary corneal dystrophies (371.5)\\\\(371.54) Lattice corneal dystrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\" + }, + { + "displayName": "(371.55) Macular corneal dystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\(371.55) Macular corneal dystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Hereditary corneal dystrophies (371.5)\\\\(371.55) Macular corneal dystrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\" + }, + { + "displayName": "(371.56) Other stromal corneal dystrophies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\(371.56) Other stromal corneal dystrophies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\" + }, + { + "displayName": "(371.57) Endothelial corneal dystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\(371.57) Endothelial corneal dystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Hereditary corneal dystrophies (371.5)\\\\(371.57) Endothelial corneal dystrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\" + }, + { + "displayName": "(371.58) Other posterior corneal dystrophies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\(371.58) Other posterior corneal dystrophies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Hereditary corneal dystrophies (371.5)\\\\(371.58) Other posterior corneal dystrophies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Hereditary corneal dystrophies (371.5)\\" + }, + { + "displayName": "Keratoconus (371.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Keratoconus (371.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Keratoconus (371.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\" + }, + { + "displayName": "(371.60) Keratoconus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Keratoconus (371.6)\\(371.60) Keratoconus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Keratoconus (371.6)\\" + }, + { + "displayName": "(371.61) Keratoconus, stable condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Keratoconus (371.6)\\(371.61) Keratoconus, stable condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Keratoconus (371.6)\\\\(371.61) Keratoconus, stable condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Keratoconus (371.6)\\" + }, + { + "displayName": "(371.62) Keratoconus, acute hydrops", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Keratoconus (371.6)\\(371.62) Keratoconus, acute hydrops\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Keratoconus (371.6)\\" + }, + { + "displayName": "Other corneal deformities (371.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal deformities (371.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Other corneal deformities (371.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\" + }, + { + "displayName": "(371.70) Corneal deformity, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal deformities (371.7)\\(371.70) Corneal deformity, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal deformities (371.7)\\" + }, + { + "displayName": "(371.71) Corneal ectasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal deformities (371.7)\\(371.71) Corneal ectasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Other corneal deformities (371.7)\\\\(371.71) Corneal ectasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal deformities (371.7)\\" + }, + { + "displayName": "(371.72) Descemetocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal deformities (371.7)\\(371.72) Descemetocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal deformities (371.7)\\" + }, + { + "displayName": "(371.73) Corneal staphyloma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal deformities (371.7)\\(371.73) Corneal staphyloma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal deformities (371.7)\\" + }, + { + "displayName": "Other corneal disorders (371.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal disorders (371.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Other corneal disorders (371.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\" + }, + { + "displayName": "(371.81) Corneal anesthesia and hypoesthesia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal disorders (371.8)\\(371.81) Corneal anesthesia and hypoesthesia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Other corneal disorders (371.8)\\\\(371.81) Corneal anesthesia and hypoesthesia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal disorders (371.8)\\" + }, + { + "displayName": "(371.82) Corneal disorder due to contact lens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal disorders (371.8)\\(371.82) Corneal disorder due to contact lens\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal disorders (371.8)\\" + }, + { + "displayName": "(371.89) Other corneal disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal disorders (371.8)\\(371.89) Other corneal disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Corneal opacity and other disorders of cornea (371)\\\\Other corneal disorders (371.8)\\\\(371.89) Other corneal disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Corneal opacity and other disorders of cornea (371)\\Other corneal disorders (371.8)\\" + }, + { + "displayName": "Disorders of conjunctiva (372)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(372.9) Unspecified disorder of conjunctiva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\(372.9) Unspecified disorder of conjunctiva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\(372.9) Unspecified disorder of conjunctiva\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\" + }, + { + "displayName": "Acute conjunctivitis (372.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Acute conjunctivitis (372.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\" + }, + { + "displayName": "(372.00) Acute conjunctivitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\(372.00) Acute conjunctivitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\" + }, + { + "displayName": "(372.01) Serous conjunctivitis, except viral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\(372.01) Serous conjunctivitis, except viral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Acute conjunctivitis (372.0)\\\\(372.01) Serous conjunctivitis, except viral\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\" + }, + { + "displayName": "(372.02) Acute follicular conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\(372.02) Acute follicular conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\" + }, + { + "displayName": "(372.03) Other mucopurulent conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\(372.03) Other mucopurulent conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Acute conjunctivitis (372.0)\\\\(372.03) Other mucopurulent conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\" + }, + { + "displayName": "(372.04) Pseudomembranous conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\(372.04) Pseudomembranous conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Acute conjunctivitis (372.0)\\\\(372.04) Pseudomembranous conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\" + }, + { + "displayName": "(372.05) Acute atopic conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\(372.05) Acute atopic conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Acute conjunctivitis (372.0)\\\\(372.05) Acute atopic conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\" + }, + { + "displayName": "(372.06) Acute chemical conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\(372.06) Acute chemical conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Acute conjunctivitis (372.0)\\\\(372.06) Acute chemical conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Acute conjunctivitis (372.0)\\" + }, + { + "displayName": "Blepharoconjunctivitis (372.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Blepharoconjunctivitis (372.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\" + }, + { + "displayName": "(372.20) Blepharoconjunctivitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Blepharoconjunctivitis (372.2)\\(372.20) Blepharoconjunctivitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Blepharoconjunctivitis (372.2)\\\\(372.20) Blepharoconjunctivitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Blepharoconjunctivitis (372.2)\\" + }, + { + "displayName": "(372.21) Angular blepharoconjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Blepharoconjunctivitis (372.2)\\(372.21) Angular blepharoconjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Blepharoconjunctivitis (372.2)\\" + }, + { + "displayName": "(372.22) Contact blepharoconjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Blepharoconjunctivitis (372.2)\\(372.22) Contact blepharoconjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Blepharoconjunctivitis (372.2)\\" + }, + { + "displayName": "Chronic conjunctivitis (372.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Chronic conjunctivitis (372.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\" + }, + { + "displayName": "(372.10) Chronic conjunctivitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\(372.10) Chronic conjunctivitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Chronic conjunctivitis (372.1)\\\\(372.10) Chronic conjunctivitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\" + }, + { + "displayName": "(372.11) Simple chronic conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\(372.11) Simple chronic conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Chronic conjunctivitis (372.1)\\\\(372.11) Simple chronic conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\" + }, + { + "displayName": "(372.12) Chronic follicular conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\(372.12) Chronic follicular conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Chronic conjunctivitis (372.1)\\\\(372.12) Chronic follicular conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\" + }, + { + "displayName": "(372.13) Vernal conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\(372.13) Vernal conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Chronic conjunctivitis (372.1)\\\\(372.13) Vernal conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\" + }, + { + "displayName": "(372.14) Other chronic allergic conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\(372.14) Other chronic allergic conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Chronic conjunctivitis (372.1)\\\\(372.14) Other chronic allergic conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\" + }, + { + "displayName": "(372.15) Parasitic conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\(372.15) Parasitic conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Chronic conjunctivitis (372.1)\\\\(372.15) Parasitic conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Chronic conjunctivitis (372.1)\\" + }, + { + "displayName": "Conjunctival degenerations and deposits (372.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Conjunctival degenerations and deposits (372.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\" + }, + { + "displayName": "(372.50) Conjunctival degeneration, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\(372.50) Conjunctival degeneration, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Conjunctival degenerations and deposits (372.5)\\\\(372.50) Conjunctival degeneration, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\" + }, + { + "displayName": "(372.51) Pinguecula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\(372.51) Pinguecula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\" + }, + { + "displayName": "(372.52) Pseudopterygium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\(372.52) Pseudopterygium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\" + }, + { + "displayName": "(372.53) Conjunctival xerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\(372.53) Conjunctival xerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\" + }, + { + "displayName": "(372.54) Conjunctival concretions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\(372.54) Conjunctival concretions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\" + }, + { + "displayName": "(372.55) Conjunctival pigmentations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\(372.55) Conjunctival pigmentations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\" + }, + { + "displayName": "(372.56) Conjunctival deposits", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\(372.56) Conjunctival deposits\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival degenerations and deposits (372.5)\\" + }, + { + "displayName": "Conjunctival scars (372.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival scars (372.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\" + }, + { + "displayName": "(372.61) Granuloma of conjunctiva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival scars (372.6)\\(372.61) Granuloma of conjunctiva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Conjunctival scars (372.6)\\\\(372.61) Granuloma of conjunctiva\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival scars (372.6)\\" + }, + { + "displayName": "(372.62) Localized adhesions and strands of conjunctiva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival scars (372.6)\\(372.62) Localized adhesions and strands of conjunctiva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival scars (372.6)\\" + }, + { + "displayName": "(372.63) Symblepharon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival scars (372.6)\\(372.63) Symblepharon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Conjunctival scars (372.6)\\\\(372.63) Symblepharon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival scars (372.6)\\" + }, + { + "displayName": "(372.64) Scarring of conjunctiva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival scars (372.6)\\(372.64) Scarring of conjunctiva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Conjunctival scars (372.6)\\\\(372.64) Scarring of conjunctiva\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival scars (372.6)\\" + }, + { + "displayName": "Conjunctival vascular disorders and cysts (372.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival vascular disorders and cysts (372.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\" + }, + { + "displayName": "(372.71) Hyperemia of conjunctiva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival vascular disorders and cysts (372.7)\\(372.71) Hyperemia of conjunctiva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Conjunctival vascular disorders and cysts (372.7)\\\\(372.71) Hyperemia of conjunctiva\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival vascular disorders and cysts (372.7)\\" + }, + { + "displayName": "(372.72) Conjunctival hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival vascular disorders and cysts (372.7)\\(372.72) Conjunctival hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Conjunctival vascular disorders and cysts (372.7)\\\\(372.72) Conjunctival hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival vascular disorders and cysts (372.7)\\" + }, + { + "displayName": "(372.73) Conjunctival edema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival vascular disorders and cysts (372.7)\\(372.73) Conjunctival edema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Conjunctival vascular disorders and cysts (372.7)\\\\(372.73) Conjunctival edema\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival vascular disorders and cysts (372.7)\\" + }, + { + "displayName": "(372.74) Vascular abnormalities of conjunctiva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival vascular disorders and cysts (372.7)\\(372.74) Vascular abnormalities of conjunctiva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Conjunctival vascular disorders and cysts (372.7)\\\\(372.74) Vascular abnormalities of conjunctiva\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival vascular disorders and cysts (372.7)\\" + }, + { + "displayName": "(372.75) Conjunctival cysts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival vascular disorders and cysts (372.7)\\(372.75) Conjunctival cysts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Conjunctival vascular disorders and cysts (372.7)\\" + }, + { + "displayName": "Other and unspecified conjunctivitis (372.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other and unspecified conjunctivitis (372.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Other and unspecified conjunctivitis (372.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\" + }, + { + "displayName": "(372.30) Conjunctivitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other and unspecified conjunctivitis (372.3)\\(372.30) Conjunctivitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Other and unspecified conjunctivitis (372.3)\\\\(372.30) Conjunctivitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other and unspecified conjunctivitis (372.3)\\" + }, + { + "displayName": "(372.31) Rosacea conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other and unspecified conjunctivitis (372.3)\\(372.31) Rosacea conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Other and unspecified conjunctivitis (372.3)\\\\(372.31) Rosacea conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other and unspecified conjunctivitis (372.3)\\" + }, + { + "displayName": "(372.33) Conjunctivitis in mucocutaneous disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other and unspecified conjunctivitis (372.3)\\(372.33) Conjunctivitis in mucocutaneous disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other and unspecified conjunctivitis (372.3)\\" + }, + { + "displayName": "(372.39) Other conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other and unspecified conjunctivitis (372.3)\\(372.39) Other conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other and unspecified conjunctivitis (372.3)\\" + }, + { + "displayName": "Other disorders of conjunctiva (372.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other disorders of conjunctiva (372.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of conjunctiva (372)\\\\Other disorders of conjunctiva (372.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\" + }, + { + "displayName": "(372.81) Conjunctivochalasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other disorders of conjunctiva (372.8)\\(372.81) Conjunctivochalasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other disorders of conjunctiva (372.8)\\" + }, + { + "displayName": "(372.89) Other disorders of conjunctiva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other disorders of conjunctiva (372.8)\\(372.89) Other disorders of conjunctiva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Other disorders of conjunctiva (372.8)\\" + }, + { + "displayName": "Pterygium (372.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\" + }, + { + "displayName": "(372.40) Pterygium, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\(372.40) Pterygium, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\" + }, + { + "displayName": "(372.41) Peripheral pterygium, stationary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\(372.41) Peripheral pterygium, stationary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\" + }, + { + "displayName": "(372.42) Peripheral pterygium, progressive", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\(372.42) Peripheral pterygium, progressive\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\" + }, + { + "displayName": "(372.43) Central pterygium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\(372.43) Central pterygium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\" + }, + { + "displayName": "(372.44) Double pterygium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\(372.44) Double pterygium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\" + }, + { + "displayName": "(372.45) Recurrent pterygium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\(372.45) Recurrent pterygium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of conjunctiva (372)\\Pterygium (372.4)\\" + }, + { + "displayName": "Disorders of iris and ciliary body (364)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(364.3) Unspecified iridocyclitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\(364.3) Unspecified iridocyclitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\" + }, + { + "displayName": "(364.9) Unspecified disorder of iris and ciliary body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\(364.9) Unspecified disorder of iris and ciliary body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\" + }, + { + "displayName": "Acute and subacute iridocyclitis (364.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\" + }, + { + "displayName": "(364.00) Acute and subacute iridocyclitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\(364.00) Acute and subacute iridocyclitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\" + }, + { + "displayName": "(364.01) Primary iridocyclitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\(364.01) Primary iridocyclitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\" + }, + { + "displayName": "(364.02) Recurrent iridocyclitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\(364.02) Recurrent iridocyclitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Acute and subacute iridocyclitis (364.0)\\\\(364.02) Recurrent iridocyclitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\" + }, + { + "displayName": "(364.03) Secondary iridocyclitis, infectious", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\(364.03) Secondary iridocyclitis, infectious\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Acute and subacute iridocyclitis (364.0)\\\\(364.03) Secondary iridocyclitis, infectious\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\" + }, + { + "displayName": "(364.04) Secondary iridocyclitis, noninfectious", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\(364.04) Secondary iridocyclitis, noninfectious\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\" + }, + { + "displayName": "(364.05) Hypopyon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\(364.05) Hypopyon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Acute and subacute iridocyclitis (364.0)\\\\(364.05) Hypopyon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Acute and subacute iridocyclitis (364.0)\\" + }, + { + "displayName": "Adhesions and disruptions of iris and ciliary body (364.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\" + }, + { + "displayName": "(364.70) Adhesions of iris, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\(364.70) Adhesions of iris, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Adhesions and disruptions of iris and ciliary body (364.7)\\\\(364.70) Adhesions of iris, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\" + }, + { + "displayName": "(364.71) Posterior synechiae of iris", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\(364.71) Posterior synechiae of iris\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Adhesions and disruptions of iris and ciliary body (364.7)\\\\(364.71) Posterior synechiae of iris\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\" + }, + { + "displayName": "(364.72) Anterior synechiae of iris", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\(364.72) Anterior synechiae of iris\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\" + }, + { + "displayName": "(364.73) Goniosynechiae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\(364.73) Goniosynechiae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Adhesions and disruptions of iris and ciliary body (364.7)\\\\(364.73) Goniosynechiae\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\" + }, + { + "displayName": "(364.74) Adhesions and disruptions of pupillary membranes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\(364.74) Adhesions and disruptions of pupillary membranes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Adhesions and disruptions of iris and ciliary body (364.7)\\\\(364.74) Adhesions and disruptions of pupillary membranes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\" + }, + { + "displayName": "(364.75) Pupillary abnormalities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\(364.75) Pupillary abnormalities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Adhesions and disruptions of iris and ciliary body (364.7)\\\\(364.75) Pupillary abnormalities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\" + }, + { + "displayName": "(364.76) Iridodialysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\(364.76) Iridodialysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\" + }, + { + "displayName": "(364.77) Recession of chamber angle of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\(364.77) Recession of chamber angle of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Adhesions and disruptions of iris and ciliary body (364.7)\\\\(364.77) Recession of chamber angle of eye\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Adhesions and disruptions of iris and ciliary body (364.7)\\" + }, + { + "displayName": "Certain types of iridocyclitis (364.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Certain types of iridocyclitis (364.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\" + }, + { + "displayName": "(364.21) Fuchs' heterochromic cyclitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Certain types of iridocyclitis (364.2)\\(364.21) Fuchs' heterochromic cyclitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Certain types of iridocyclitis (364.2)\\" + }, + { + "displayName": "(364.22) Glaucomatocyclitic crises", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Certain types of iridocyclitis (364.2)\\(364.22) Glaucomatocyclitic crises\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Certain types of iridocyclitis (364.2)\\" + }, + { + "displayName": "(364.23) Lens-induced iridocyclitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Certain types of iridocyclitis (364.2)\\(364.23) Lens-induced iridocyclitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Certain types of iridocyclitis (364.2)\\" + }, + { + "displayName": "(364.24) Vogt-koyanagi syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Certain types of iridocyclitis (364.2)\\(364.24) Vogt-koyanagi syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Certain types of iridocyclitis (364.2)\\" + }, + { + "displayName": "Chronic iridocyclitis (364.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Chronic iridocyclitis (364.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\" + }, + { + "displayName": "(364.10) Chronic iridocyclitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Chronic iridocyclitis (364.1)\\(364.10) Chronic iridocyclitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Chronic iridocyclitis (364.1)\\" + }, + { + "displayName": "(364.11) Chronic iridocyclitis in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Chronic iridocyclitis (364.1)\\(364.11) Chronic iridocyclitis in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Chronic iridocyclitis (364.1)\\" + }, + { + "displayName": "Cysts of iris, ciliary body, and anterior chamber (364.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\" + }, + { + "displayName": "(364.60) Idiopathic cysts of iris, ciliary body, and anterior chamber", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\(364.60) Idiopathic cysts of iris, ciliary body, and anterior chamber\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\" + }, + { + "displayName": "(364.61) Implantation cysts of iris, ciliary body, and anterior chamber", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\(364.61) Implantation cysts of iris, ciliary body, and anterior chamber\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\" + }, + { + "displayName": "(364.62) Exudative cysts of iris or anterior chamber", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\(364.62) Exudative cysts of iris or anterior chamber\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\\\(364.62) Exudative cysts of iris or anterior chamber\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\" + }, + { + "displayName": "(364.63) Primary cyst of pars plana", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\(364.63) Primary cyst of pars plana\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\\\(364.63) Primary cyst of pars plana\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\" + }, + { + "displayName": "(364.64) Exudative cyst of pars plana", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\(364.64) Exudative cyst of pars plana\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Cysts of iris, ciliary body, and anterior chamber (364.6)\\" + }, + { + "displayName": "Degenerations of iris and ciliary body (364.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Degenerations of iris and ciliary body (364.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\" + }, + { + "displayName": "(364.51) Essential or progressive iris atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\(364.51) Essential or progressive iris atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Degenerations of iris and ciliary body (364.5)\\\\(364.51) Essential or progressive iris atrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\" + }, + { + "displayName": "(364.52) Iridoschisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\(364.52) Iridoschisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\" + }, + { + "displayName": "(364.53) Pigmentary iris degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\(364.53) Pigmentary iris degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Degenerations of iris and ciliary body (364.5)\\\\(364.53) Pigmentary iris degeneration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\" + }, + { + "displayName": "(364.54) Degeneration of pupillary margin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\(364.54) Degeneration of pupillary margin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Degenerations of iris and ciliary body (364.5)\\\\(364.54) Degeneration of pupillary margin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\" + }, + { + "displayName": "(364.55) Miotic cysts of pupillary margin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\(364.55) Miotic cysts of pupillary margin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Degenerations of iris and ciliary body (364.5)\\\\(364.55) Miotic cysts of pupillary margin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\" + }, + { + "displayName": "(364.56) Degenerative changes of chamber angle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\(364.56) Degenerative changes of chamber angle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\" + }, + { + "displayName": "(364.57) Degenerative changes of ciliary body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\(364.57) Degenerative changes of ciliary body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Degenerations of iris and ciliary body (364.5)\\\\(364.57) Degenerative changes of ciliary body\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\" + }, + { + "displayName": "(364.59) Other iris atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\(364.59) Other iris atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Degenerations of iris and ciliary body (364.5)\\\\(364.59) Other iris atrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Degenerations of iris and ciliary body (364.5)\\" + }, + { + "displayName": "Other disorders of iris and ciliary body (364.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Other disorders of iris and ciliary body (364.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\" + }, + { + "displayName": "(364.81) Floppy iris syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Other disorders of iris and ciliary body (364.8)\\(364.81) Floppy iris syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Other disorders of iris and ciliary body (364.8)\\\\(364.81) Floppy iris syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Other disorders of iris and ciliary body (364.8)\\" + }, + { + "displayName": "(364.89) Other disorders of iris and ciliary body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Other disorders of iris and ciliary body (364.8)\\(364.89) Other disorders of iris and ciliary body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Other disorders of iris and ciliary body (364.8)\\\\(364.89) Other disorders of iris and ciliary body\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Other disorders of iris and ciliary body (364.8)\\" + }, + { + "displayName": "Vascular disorders of iris and ciliary body (364.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Vascular disorders of iris and ciliary body (364.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of iris and ciliary body (364)\\\\Vascular disorders of iris and ciliary body (364.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\" + }, + { + "displayName": "(364.41) Hyphema of iris and ciliary body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Vascular disorders of iris and ciliary body (364.4)\\(364.41) Hyphema of iris and ciliary body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Vascular disorders of iris and ciliary body (364.4)\\" + }, + { + "displayName": "(364.42) Rubeosis iridis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Vascular disorders of iris and ciliary body (364.4)\\(364.42) Rubeosis iridis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of iris and ciliary body (364)\\Vascular disorders of iris and ciliary body (364.4)\\" + }, + { + "displayName": "Disorders of lacrimal system (375)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(375.9) Unspecified disorder of lacrimal system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\(375.9) Unspecified disorder of lacrimal system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\" + }, + { + "displayName": "Acute and unspecified inflammation of lacrimal passages (375.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Acute and unspecified inflammation of lacrimal passages (375.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\" + }, + { + "displayName": "(375.30) Dacryocystitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Acute and unspecified inflammation of lacrimal passages (375.3)\\(375.30) Dacryocystitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Acute and unspecified inflammation of lacrimal passages (375.3)\\" + }, + { + "displayName": "(375.31) Acute canaliculitis, lacrimal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Acute and unspecified inflammation of lacrimal passages (375.3)\\(375.31) Acute canaliculitis, lacrimal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Acute and unspecified inflammation of lacrimal passages (375.3)\\" + }, + { + "displayName": "(375.32) Acute dacryocystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Acute and unspecified inflammation of lacrimal passages (375.3)\\(375.32) Acute dacryocystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Acute and unspecified inflammation of lacrimal passages (375.3)\\" + }, + { + "displayName": "(375.33) Phlegmonous dacryocystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Acute and unspecified inflammation of lacrimal passages (375.3)\\(375.33) Phlegmonous dacryocystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Acute and unspecified inflammation of lacrimal passages (375.3)\\\\(375.33) Phlegmonous dacryocystitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Acute and unspecified inflammation of lacrimal passages (375.3)\\" + }, + { + "displayName": "Chronic inflammation of lacrimal passages (375.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Chronic inflammation of lacrimal passages (375.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Chronic inflammation of lacrimal passages (375.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\" + }, + { + "displayName": "(375.41) Chronic canaliculitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Chronic inflammation of lacrimal passages (375.4)\\(375.41) Chronic canaliculitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Chronic inflammation of lacrimal passages (375.4)\\\\(375.41) Chronic canaliculitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Chronic inflammation of lacrimal passages (375.4)\\" + }, + { + "displayName": "(375.42) Chronic dacryocystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Chronic inflammation of lacrimal passages (375.4)\\(375.42) Chronic dacryocystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Chronic inflammation of lacrimal passages (375.4)\\" + }, + { + "displayName": "(375.43) Lacrimal mucocele", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Chronic inflammation of lacrimal passages (375.4)\\(375.43) Lacrimal mucocele\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Chronic inflammation of lacrimal passages (375.4)\\\\(375.43) Lacrimal mucocele\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Chronic inflammation of lacrimal passages (375.4)\\" + }, + { + "displayName": "Dacryoadenitis (375.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Dacryoadenitis (375.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Dacryoadenitis (375.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\" + }, + { + "displayName": "(375.00) Dacryoadenitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Dacryoadenitis (375.0)\\(375.00) Dacryoadenitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Dacryoadenitis (375.0)\\" + }, + { + "displayName": "(375.01) Acute dacryoadenitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Dacryoadenitis (375.0)\\(375.01) Acute dacryoadenitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Dacryoadenitis (375.0)\\" + }, + { + "displayName": "(375.02) Chronic dacryoadenitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Dacryoadenitis (375.0)\\(375.02) Chronic dacryoadenitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Dacryoadenitis (375.0)\\" + }, + { + "displayName": "(375.03) Chronic enlargement of lacrimal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Dacryoadenitis (375.0)\\(375.03) Chronic enlargement of lacrimal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Dacryoadenitis (375.0)\\" + }, + { + "displayName": "Epiphora (375.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Epiphora (375.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\" + }, + { + "displayName": "(375.20) Epiphora, unspecified as to cause", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Epiphora (375.2)\\(375.20) Epiphora, unspecified as to cause\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Epiphora (375.2)\\" + }, + { + "displayName": "(375.21) Epiphora due to excess lacrimation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Epiphora (375.2)\\(375.21) Epiphora due to excess lacrimation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Epiphora (375.2)\\\\(375.21) Epiphora due to excess lacrimation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Epiphora (375.2)\\" + }, + { + "displayName": "(375.22) Epiphora due to insufficient drainage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Epiphora (375.2)\\(375.22) Epiphora due to insufficient drainage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Epiphora (375.2)\\\\(375.22) Epiphora due to insufficient drainage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Epiphora (375.2)\\" + }, + { + "displayName": "Other changes of lacrimal passages (375.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other changes of lacrimal passages (375.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Other changes of lacrimal passages (375.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\" + }, + { + "displayName": "(375.61) Lacrimal fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other changes of lacrimal passages (375.6)\\(375.61) Lacrimal fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other changes of lacrimal passages (375.6)\\" + }, + { + "displayName": "(375.69) Other changes of lacrimal passages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other changes of lacrimal passages (375.6)\\(375.69) Other changes of lacrimal passages\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Other changes of lacrimal passages (375.6)\\\\(375.69) Other changes of lacrimal passages\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other changes of lacrimal passages (375.6)\\" + }, + { + "displayName": "Other disorders of lacrimal gland (375.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\" + }, + { + "displayName": "(375.11) Dacryops", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\(375.11) Dacryops\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\" + }, + { + "displayName": "(375.12) Other lacrimal cysts and cystic degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\(375.12) Other lacrimal cysts and cystic degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\" + }, + { + "displayName": "(375.13) Primary lacrimal atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\(375.13) Primary lacrimal atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\" + }, + { + "displayName": "(375.14) Secondary lacrimal atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\(375.14) Secondary lacrimal atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\" + }, + { + "displayName": "(375.15) Tear film insufficiency, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\(375.15) Tear film insufficiency, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Other disorders of lacrimal gland (375.1)\\\\(375.15) Tear film insufficiency, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\" + }, + { + "displayName": "(375.16) Dislocation of lacrimal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\(375.16) Dislocation of lacrimal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Other disorders of lacrimal gland (375.1)\\\\(375.16) Dislocation of lacrimal gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal gland (375.1)\\" + }, + { + "displayName": "Other disorders of lacrimal system (375.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal system (375.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\" + }, + { + "displayName": "(375.81) Granuloma of lacrimal passages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal system (375.8)\\(375.81) Granuloma of lacrimal passages\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Other disorders of lacrimal system (375.8)\\\\(375.81) Granuloma of lacrimal passages\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal system (375.8)\\" + }, + { + "displayName": "(375.89) Other disorders of lacrimal system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal system (375.8)\\(375.89) Other disorders of lacrimal system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Other disorders of lacrimal system (375.8)\\\\(375.89) Other disorders of lacrimal system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Other disorders of lacrimal system (375.8)\\" + }, + { + "displayName": "Stenosis and insufficiency of lacrimal passages (375.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\" + }, + { + "displayName": "(375.51) Eversion of lacrimal punctum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\(375.51) Eversion of lacrimal punctum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\" + }, + { + "displayName": "(375.52) Stenosis of lacrimal punctum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\(375.52) Stenosis of lacrimal punctum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\" + }, + { + "displayName": "(375.53) Stenosis of lacrimal canaliculi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\(375.53) Stenosis of lacrimal canaliculi\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\" + }, + { + "displayName": "(375.54) Stenosis of lacrimal sac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\(375.54) Stenosis of lacrimal sac\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\" + }, + { + "displayName": "(375.55) Obstruction of nasolacrimal duct, neonatal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\(375.55) Obstruction of nasolacrimal duct, neonatal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Stenosis and insufficiency of lacrimal passages (375.5)\\\\(375.55) Obstruction of nasolacrimal duct, neonatal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\" + }, + { + "displayName": "(375.56) Stenosis of nasolacrimal duct, acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\(375.56) Stenosis of nasolacrimal duct, acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\" + }, + { + "displayName": "(375.57) Dacryolith", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\(375.57) Dacryolith\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of lacrimal system (375)\\\\Stenosis and insufficiency of lacrimal passages (375.5)\\\\(375.57) Dacryolith\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of lacrimal system (375)\\Stenosis and insufficiency of lacrimal passages (375.5)\\" + }, + { + "displayName": "Disorders of optic nerve and visual pathways (377)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(377.9) Unspecified disorder of optic nerve and visual pathways", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\(377.9) Unspecified disorder of optic nerve and visual pathways\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\(377.9) Unspecified disorder of optic nerve and visual pathways\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\" + }, + { + "displayName": "Disorders of optic chiasm (377.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of optic chiasm (377.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\" + }, + { + "displayName": "(377.51) Disorders of optic chiasm associated with pituitary neoplasms and disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of optic chiasm (377.5)\\(377.51) Disorders of optic chiasm associated with pituitary neoplasms and disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Disorders of optic chiasm (377.5)\\\\(377.51) Disorders of optic chiasm associated with pituitary neoplasms and disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of optic chiasm (377.5)\\" + }, + { + "displayName": "(377.52) Disorders of optic chiasm associated with other neoplasms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of optic chiasm (377.5)\\(377.52) Disorders of optic chiasm associated with other neoplasms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Disorders of optic chiasm (377.5)\\\\(377.52) Disorders of optic chiasm associated with other neoplasms\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of optic chiasm (377.5)\\" + }, + { + "displayName": "(377.53) Disorders of optic chiasm associated with vascular disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of optic chiasm (377.5)\\(377.53) Disorders of optic chiasm associated with vascular disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of optic chiasm (377.5)\\" + }, + { + "displayName": "(377.54) Disorders of optic chiasm associated with inflammatory disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of optic chiasm (377.5)\\(377.54) Disorders of optic chiasm associated with inflammatory disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of optic chiasm (377.5)\\" + }, + { + "displayName": "Disorders of other visual pathways (377.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of other visual pathways (377.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\" + }, + { + "displayName": "(377.61) Disorders of other visual pathways associated with neoplasms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of other visual pathways (377.6)\\(377.61) Disorders of other visual pathways associated with neoplasms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of other visual pathways (377.6)\\" + }, + { + "displayName": "(377.62) Disorders of other visual pathways associated with vascular disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of other visual pathways (377.6)\\(377.62) Disorders of other visual pathways associated with vascular disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of other visual pathways (377.6)\\" + }, + { + "displayName": "(377.63) Disorders of other visual pathways associated with inflammatory disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of other visual pathways (377.6)\\(377.63) Disorders of other visual pathways associated with inflammatory disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of other visual pathways (377.6)\\" + }, + { + "displayName": "Disorders of visual cortex (377.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of visual cortex (377.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\" + }, + { + "displayName": "(377.71) Disorders of visual cortex associated with neoplasms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of visual cortex (377.7)\\(377.71) Disorders of visual cortex associated with neoplasms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of visual cortex (377.7)\\" + }, + { + "displayName": "(377.72) Disorders of visual cortex associated with vascular disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of visual cortex (377.7)\\(377.72) Disorders of visual cortex associated with vascular disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of visual cortex (377.7)\\" + }, + { + "displayName": "(377.73) Disorders of visual cortex associated with inflammatory disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of visual cortex (377.7)\\(377.73) Disorders of visual cortex associated with inflammatory disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of visual cortex (377.7)\\" + }, + { + "displayName": "(377.75) Cortical blindness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of visual cortex (377.7)\\(377.75) Cortical blindness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Disorders of visual cortex (377.7)\\\\(377.75) Cortical blindness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Disorders of visual cortex (377.7)\\" + }, + { + "displayName": "Optic atrophy (377.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Optic atrophy (377.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\" + }, + { + "displayName": "(377.10) Optic atrophy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\(377.10) Optic atrophy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\" + }, + { + "displayName": "(377.11) Primary optic atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\(377.11) Primary optic atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Optic atrophy (377.1)\\\\(377.11) Primary optic atrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\" + }, + { + "displayName": "(377.12) Postinflammatory optic atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\(377.12) Postinflammatory optic atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\" + }, + { + "displayName": "(377.13) Optic atrophy associated with retinal dystrophies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\(377.13) Optic atrophy associated with retinal dystrophies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\" + }, + { + "displayName": "(377.14) Glaucomatous atrophy [cupping] of optic disc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\(377.14) Glaucomatous atrophy [cupping] of optic disc\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\" + }, + { + "displayName": "(377.15) Partial optic atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\(377.15) Partial optic atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\" + }, + { + "displayName": "(377.16) Hereditary optic atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\(377.16) Hereditary optic atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic atrophy (377.1)\\" + }, + { + "displayName": "Optic neuritis (377.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\" + }, + { + "displayName": "(377.30) Optic neuritis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\(377.30) Optic neuritis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\" + }, + { + "displayName": "(377.31) Optic papillitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\(377.31) Optic papillitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Optic neuritis (377.3)\\\\(377.31) Optic papillitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\" + }, + { + "displayName": "(377.32) Retrobulbar neuritis (acute)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\(377.32) Retrobulbar neuritis (acute)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Optic neuritis (377.3)\\\\(377.32) Retrobulbar neuritis (acute)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\" + }, + { + "displayName": "(377.33) Nutritional optic neuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\(377.33) Nutritional optic neuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\" + }, + { + "displayName": "(377.34) Toxic optic neuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\(377.34) Toxic optic neuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Optic neuritis (377.3)\\\\(377.34) Toxic optic neuropathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\" + }, + { + "displayName": "(377.39) Other optic neuritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\(377.39) Other optic neuritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Optic neuritis (377.3)\\\\(377.39) Other optic neuritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Optic neuritis (377.3)\\" + }, + { + "displayName": "Other disorders of optic disc (377.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic disc (377.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Other disorders of optic disc (377.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\" + }, + { + "displayName": "(377.21) Drusen of optic disc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic disc (377.2)\\(377.21) Drusen of optic disc\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic disc (377.2)\\" + }, + { + "displayName": "(377.22) Crater-like holes of optic disc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic disc (377.2)\\(377.22) Crater-like holes of optic disc\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Other disorders of optic disc (377.2)\\\\(377.22) Crater-like holes of optic disc\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic disc (377.2)\\" + }, + { + "displayName": "(377.23) Coloboma of optic disc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic disc (377.2)\\(377.23) Coloboma of optic disc\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Other disorders of optic disc (377.2)\\\\(377.23) Coloboma of optic disc\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic disc (377.2)\\" + }, + { + "displayName": "(377.24) Pseudopapilledema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic disc (377.2)\\(377.24) Pseudopapilledema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Other disorders of optic disc (377.2)\\\\(377.24) Pseudopapilledema\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic disc (377.2)\\" + }, + { + "displayName": "Other disorders of optic nerve (377.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic nerve (377.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\" + }, + { + "displayName": "(377.41) Ischemic optic neuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic nerve (377.4)\\(377.41) Ischemic optic neuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Other disorders of optic nerve (377.4)\\\\(377.41) Ischemic optic neuropathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic nerve (377.4)\\" + }, + { + "displayName": "(377.42) Hemorrhage in optic nerve sheaths", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic nerve (377.4)\\(377.42) Hemorrhage in optic nerve sheaths\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Other disorders of optic nerve (377.4)\\\\(377.42) Hemorrhage in optic nerve sheaths\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic nerve (377.4)\\" + }, + { + "displayName": "(377.43) Optic nerve hypoplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic nerve (377.4)\\(377.43) Optic nerve hypoplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic nerve (377.4)\\" + }, + { + "displayName": "(377.49) Other disorders of optic nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic nerve (377.4)\\(377.49) Other disorders of optic nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Other disorders of optic nerve (377.4)\\\\(377.49) Other disorders of optic nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Other disorders of optic nerve (377.4)\\" + }, + { + "displayName": "Papilledema (377.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Papilledema (377.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Papilledema (377.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\" + }, + { + "displayName": "(377.00) Papilledema, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Papilledema (377.0)\\(377.00) Papilledema, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Papilledema (377.0)\\" + }, + { + "displayName": "(377.01) Papilledema associated with increased intracranial pressure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Papilledema (377.0)\\(377.01) Papilledema associated with increased intracranial pressure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Papilledema (377.0)\\\\(377.01) Papilledema associated with increased intracranial pressure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Papilledema (377.0)\\" + }, + { + "displayName": "(377.02) Papilledema associated with decreased ocular pressure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Papilledema (377.0)\\(377.02) Papilledema associated with decreased ocular pressure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Papilledema (377.0)\\" + }, + { + "displayName": "(377.03) Papilledema associated with retinal disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Papilledema (377.0)\\(377.03) Papilledema associated with retinal disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Papilledema (377.0)\\\\(377.03) Papilledema associated with retinal disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Papilledema (377.0)\\" + }, + { + "displayName": "(377.04) Foster-Kennedy syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Papilledema (377.0)\\(377.04) Foster-Kennedy syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of optic nerve and visual pathways (377)\\\\Papilledema (377.0)\\\\(377.04) Foster-Kennedy syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of optic nerve and visual pathways (377)\\Papilledema (377.0)\\" + }, + { + "displayName": "Disorders of refraction and accommodation (367)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of refraction and accommodation (367)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(367.0) Hypermetropia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\(367.0) Hypermetropia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\" + }, + { + "displayName": "(367.1) Myopia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\(367.1) Myopia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\" + }, + { + "displayName": "(367.4) Presbyopia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\(367.4) Presbyopia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of refraction and accommodation (367)\\\\(367.4) Presbyopia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\" + }, + { + "displayName": "(367.9) Unspecified disorder of refraction and accommodation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\(367.9) Unspecified disorder of refraction and accommodation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of refraction and accommodation (367)\\\\(367.9) Unspecified disorder of refraction and accommodation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\" + }, + { + "displayName": "Anisometropia and aniseikonia (367.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Anisometropia and aniseikonia (367.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of refraction and accommodation (367)\\\\Anisometropia and aniseikonia (367.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\" + }, + { + "displayName": "(367.31) Anisometropia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Anisometropia and aniseikonia (367.3)\\(367.31) Anisometropia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Anisometropia and aniseikonia (367.3)\\" + }, + { + "displayName": "(367.32) Aniseikonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Anisometropia and aniseikonia (367.3)\\(367.32) Aniseikonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of refraction and accommodation (367)\\\\Anisometropia and aniseikonia (367.3)\\\\(367.32) Aniseikonia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Anisometropia and aniseikonia (367.3)\\" + }, + { + "displayName": "Astigmatism (367.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Astigmatism (367.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of refraction and accommodation (367)\\\\Astigmatism (367.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\" + }, + { + "displayName": "(367.20) Astigmatism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Astigmatism (367.2)\\(367.20) Astigmatism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Astigmatism (367.2)\\" + }, + { + "displayName": "(367.21) Regular astigmatism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Astigmatism (367.2)\\(367.21) Regular astigmatism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of refraction and accommodation (367)\\\\Astigmatism (367.2)\\\\(367.21) Regular astigmatism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Astigmatism (367.2)\\" + }, + { + "displayName": "(367.22) Irregular astigmatism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Astigmatism (367.2)\\(367.22) Irregular astigmatism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Astigmatism (367.2)\\" + }, + { + "displayName": "Disorders of accommodation (367.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Disorders of accommodation (367.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of refraction and accommodation (367)\\\\Disorders of accommodation (367.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\" + }, + { + "displayName": "(367.51) Paresis of accommodation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Disorders of accommodation (367.5)\\(367.51) Paresis of accommodation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of refraction and accommodation (367)\\\\Disorders of accommodation (367.5)\\\\(367.51) Paresis of accommodation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Disorders of accommodation (367.5)\\" + }, + { + "displayName": "(367.52) Total or complete internal ophthalmoplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Disorders of accommodation (367.5)\\(367.52) Total or complete internal ophthalmoplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Disorders of accommodation (367.5)\\" + }, + { + "displayName": "(367.53) Spasm of accommodation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Disorders of accommodation (367.5)\\(367.53) Spasm of accommodation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of refraction and accommodation (367)\\\\Disorders of accommodation (367.5)\\\\(367.53) Spasm of accommodation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Disorders of accommodation (367.5)\\" + }, + { + "displayName": "Other disorders of refraction and accommodation (367.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Other disorders of refraction and accommodation (367.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\" + }, + { + "displayName": "(367.81) Transient refractive change", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Other disorders of refraction and accommodation (367.8)\\(367.81) Transient refractive change\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of refraction and accommodation (367)\\\\Other disorders of refraction and accommodation (367.8)\\\\(367.81) Transient refractive change\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Other disorders of refraction and accommodation (367.8)\\" + }, + { + "displayName": "(367.89) Other disorders of refraction and accommodation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Other disorders of refraction and accommodation (367.8)\\(367.89) Other disorders of refraction and accommodation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of refraction and accommodation (367)\\Other disorders of refraction and accommodation (367.8)\\" + }, + { + "displayName": "Disorders of the globe (360)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(360.9) Unspecified disorder of globe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\(360.9) Unspecified disorder of globe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\(360.9) Unspecified disorder of globe\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\" + }, + { + "displayName": "Degenerated conditions of globe (360.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerated conditions of globe (360.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Degenerated conditions of globe (360.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\" + }, + { + "displayName": "(360.40) Degenerated globe or eye, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerated conditions of globe (360.4)\\(360.40) Degenerated globe or eye, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Degenerated conditions of globe (360.4)\\\\(360.40) Degenerated globe or eye, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerated conditions of globe (360.4)\\" + }, + { + "displayName": "(360.41) Blind hypotensive eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerated conditions of globe (360.4)\\(360.41) Blind hypotensive eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerated conditions of globe (360.4)\\" + }, + { + "displayName": "(360.42) Blind hypertensive eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerated conditions of globe (360.4)\\(360.42) Blind hypertensive eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Degenerated conditions of globe (360.4)\\\\(360.42) Blind hypertensive eye\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerated conditions of globe (360.4)\\" + }, + { + "displayName": "(360.43) Hemophthalmos, except current injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerated conditions of globe (360.4)\\(360.43) Hemophthalmos, except current injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Degenerated conditions of globe (360.4)\\\\(360.43) Hemophthalmos, except current injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerated conditions of globe (360.4)\\" + }, + { + "displayName": "(360.44) Leucocoria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerated conditions of globe (360.4)\\(360.44) Leucocoria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerated conditions of globe (360.4)\\" + }, + { + "displayName": "Degenerative disorders of globe (360.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerative disorders of globe (360.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Degenerative disorders of globe (360.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\" + }, + { + "displayName": "(360.20) Degenerative disorder of globe, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerative disorders of globe (360.2)\\(360.20) Degenerative disorder of globe, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Degenerative disorders of globe (360.2)\\\\(360.20) Degenerative disorder of globe, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerative disorders of globe (360.2)\\" + }, + { + "displayName": "(360.21) Progressive high (degenerative) myopia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerative disorders of globe (360.2)\\(360.21) Progressive high (degenerative) myopia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Degenerative disorders of globe (360.2)\\\\(360.21) Progressive high (degenerative) myopia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerative disorders of globe (360.2)\\" + }, + { + "displayName": "(360.23) Siderosis of globe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerative disorders of globe (360.2)\\(360.23) Siderosis of globe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerative disorders of globe (360.2)\\" + }, + { + "displayName": "(360.24) Other metallosis of globe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerative disorders of globe (360.2)\\(360.24) Other metallosis of globe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Degenerative disorders of globe (360.2)\\\\(360.24) Other metallosis of globe\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerative disorders of globe (360.2)\\" + }, + { + "displayName": "(360.29) Other degenerative disorders of globe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerative disorders of globe (360.2)\\(360.29) Other degenerative disorders of globe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Degenerative disorders of globe (360.2)\\\\(360.29) Other degenerative disorders of globe\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Degenerative disorders of globe (360.2)\\" + }, + { + "displayName": "Hypotony of eye (360.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Hypotony of eye (360.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\" + }, + { + "displayName": "(360.30) Hypotony of eye, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Hypotony of eye (360.3)\\(360.30) Hypotony of eye, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Hypotony of eye (360.3)\\\\(360.30) Hypotony of eye, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Hypotony of eye (360.3)\\" + }, + { + "displayName": "(360.31) Primary hypotony of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Hypotony of eye (360.3)\\(360.31) Primary hypotony of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Hypotony of eye (360.3)\\" + }, + { + "displayName": "(360.32) Ocular fistula causing hypotony", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Hypotony of eye (360.3)\\(360.32) Ocular fistula causing hypotony\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Hypotony of eye (360.3)\\\\(360.32) Ocular fistula causing hypotony\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Hypotony of eye (360.3)\\" + }, + { + "displayName": "(360.33) Hypotony associated with other ocular disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Hypotony of eye (360.3)\\(360.33) Hypotony associated with other ocular disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Hypotony of eye (360.3)\\" + }, + { + "displayName": "(360.34) Flat anterior chamber of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Hypotony of eye (360.3)\\(360.34) Flat anterior chamber of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Hypotony of eye (360.3)\\\\(360.34) Flat anterior chamber of eye\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Hypotony of eye (360.3)\\" + }, + { + "displayName": "Other disorders of globe (360.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other disorders of globe (360.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\" + }, + { + "displayName": "(360.81) Luxation of globe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other disorders of globe (360.8)\\(360.81) Luxation of globe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Other disorders of globe (360.8)\\\\(360.81) Luxation of globe\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other disorders of globe (360.8)\\" + }, + { + "displayName": "(360.89) Other disorders of globe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other disorders of globe (360.8)\\(360.89) Other disorders of globe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other disorders of globe (360.8)\\" + }, + { + "displayName": "Other endophthalmitis (360.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other endophthalmitis (360.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Other endophthalmitis (360.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\" + }, + { + "displayName": "(360.11) Sympathetic uveitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other endophthalmitis (360.1)\\(360.11) Sympathetic uveitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other endophthalmitis (360.1)\\" + }, + { + "displayName": "(360.12) Panuveitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other endophthalmitis (360.1)\\(360.12) Panuveitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Other endophthalmitis (360.1)\\\\(360.12) Panuveitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other endophthalmitis (360.1)\\" + }, + { + "displayName": "(360.13) Parasitic endophthalmitis NOS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other endophthalmitis (360.1)\\(360.13) Parasitic endophthalmitis NOS\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Other endophthalmitis (360.1)\\\\(360.13) Parasitic endophthalmitis NOS\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other endophthalmitis (360.1)\\" + }, + { + "displayName": "(360.14) Ophthalmia nodosa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other endophthalmitis (360.1)\\(360.14) Ophthalmia nodosa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other endophthalmitis (360.1)\\" + }, + { + "displayName": "(360.19) Other endophthalmitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other endophthalmitis (360.1)\\(360.19) Other endophthalmitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Other endophthalmitis (360.1)\\\\(360.19) Other endophthalmitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Other endophthalmitis (360.1)\\" + }, + { + "displayName": "Purulent endophthalmitis (360.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Purulent endophthalmitis (360.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\" + }, + { + "displayName": "(360.00) Purulent endophthalmitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Purulent endophthalmitis (360.0)\\(360.00) Purulent endophthalmitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Purulent endophthalmitis (360.0)\\\\(360.00) Purulent endophthalmitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Purulent endophthalmitis (360.0)\\" + }, + { + "displayName": "(360.01) Acute endophthalmitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Purulent endophthalmitis (360.0)\\(360.01) Acute endophthalmitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Purulent endophthalmitis (360.0)\\\\(360.01) Acute endophthalmitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Purulent endophthalmitis (360.0)\\" + }, + { + "displayName": "(360.02) Panophthalmitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Purulent endophthalmitis (360.0)\\(360.02) Panophthalmitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Purulent endophthalmitis (360.0)\\" + }, + { + "displayName": "(360.03) Chronic endophthalmitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Purulent endophthalmitis (360.0)\\(360.03) Chronic endophthalmitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Purulent endophthalmitis (360.0)\\\\(360.03) Chronic endophthalmitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Purulent endophthalmitis (360.0)\\" + }, + { + "displayName": "(360.04) Vitreous abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Purulent endophthalmitis (360.0)\\(360.04) Vitreous abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Purulent endophthalmitis (360.0)\\\\(360.04) Vitreous abscess\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Purulent endophthalmitis (360.0)\\" + }, + { + "displayName": "Retained (old) intraocular foreign body, magnetic (360.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Retained (old) intraocular foreign body, magnetic (360.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\" + }, + { + "displayName": "(360.50) Foreign body, magnetic, intraocular, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\(360.50) Foreign body, magnetic, intraocular, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Retained (old) intraocular foreign body, magnetic (360.5)\\\\(360.50) Foreign body, magnetic, intraocular, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\" + }, + { + "displayName": "(360.51) Foreign body, magnetic, in anterior chamber of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\(360.51) Foreign body, magnetic, in anterior chamber of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\" + }, + { + "displayName": "(360.52) Foreign body, magnetic, in iris or ciliary body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\(360.52) Foreign body, magnetic, in iris or ciliary body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\" + }, + { + "displayName": "(360.53) Foreign body, magnetic, in lens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\(360.53) Foreign body, magnetic, in lens\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\" + }, + { + "displayName": "(360.54) Foreign body, magnetic, in vitreous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\(360.54) Foreign body, magnetic, in vitreous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\" + }, + { + "displayName": "(360.55) Foreign body, magnetic, in posterior wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\(360.55) Foreign body, magnetic, in posterior wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\" + }, + { + "displayName": "(360.59) Intraocular foreign body, magnetic, in other or multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\(360.59) Intraocular foreign body, magnetic, in other or multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, magnetic (360.5)\\" + }, + { + "displayName": "Retained (old) intraocular foreign body, nonmagnetic (360.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\" + }, + { + "displayName": "(360.60) Foreign body, intraocular, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\(360.60) Foreign body, intraocular, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\\\(360.60) Foreign body, intraocular, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\" + }, + { + "displayName": "(360.61) Foreign body in anterior chamber", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\(360.61) Foreign body in anterior chamber\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\\\(360.61) Foreign body in anterior chamber\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\" + }, + { + "displayName": "(360.62) Foreign body in iris or ciliary body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\(360.62) Foreign body in iris or ciliary body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\" + }, + { + "displayName": "(360.63) Foreign body in lens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\(360.63) Foreign body in lens\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\" + }, + { + "displayName": "(360.64) Foreign body in vitreous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\(360.64) Foreign body in vitreous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\" + }, + { + "displayName": "(360.65) Foreign body in posterior wall of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\(360.65) Foreign body in posterior wall of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\" + }, + { + "displayName": "(360.69) Intraocular foreign body in other or multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\(360.69) Intraocular foreign body in other or multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the globe (360)\\\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\\\(360.69) Intraocular foreign body in other or multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the globe (360)\\Retained (old) intraocular foreign body, nonmagnetic (360.6)\\" + }, + { + "displayName": "Disorders of the orbit (376)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(376.6) Retained (old) foreign body following penetrating wound of orbit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\(376.6) Retained (old) foreign body following penetrating wound of orbit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\(376.6) Retained (old) foreign body following penetrating wound of orbit\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\" + }, + { + "displayName": "(376.9) Unspecified disorder of orbit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\(376.9) Unspecified disorder of orbit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\" + }, + { + "displayName": "Acute inflammation of orbit (376.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Acute inflammation of orbit (376.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\" + }, + { + "displayName": "(376.00) Acute inflammation of orbit, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Acute inflammation of orbit (376.0)\\(376.00) Acute inflammation of orbit, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Acute inflammation of orbit (376.0)\\" + }, + { + "displayName": "(376.01) Orbital cellulitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Acute inflammation of orbit (376.0)\\(376.01) Orbital cellulitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Acute inflammation of orbit (376.0)\\" + }, + { + "displayName": "(376.02) Orbital periostitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Acute inflammation of orbit (376.0)\\(376.02) Orbital periostitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Acute inflammation of orbit (376.0)\\" + }, + { + "displayName": "(376.03) Orbital osteomyelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Acute inflammation of orbit (376.0)\\(376.03) Orbital osteomyelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Acute inflammation of orbit (376.0)\\" + }, + { + "displayName": "(376.04) Orbital tenonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Acute inflammation of orbit (376.0)\\(376.04) Orbital tenonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Acute inflammation of orbit (376.0)\\\\(376.04) Orbital tenonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Acute inflammation of orbit (376.0)\\" + }, + { + "displayName": "Chronic inflammatory disorders of orbit (376.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Chronic inflammatory disorders of orbit (376.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Chronic inflammatory disorders of orbit (376.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\" + }, + { + "displayName": "(376.10) Chronic inflammation of orbit, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Chronic inflammatory disorders of orbit (376.1)\\(376.10) Chronic inflammation of orbit, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Chronic inflammatory disorders of orbit (376.1)\\" + }, + { + "displayName": "(376.11) Orbital granuloma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Chronic inflammatory disorders of orbit (376.1)\\(376.11) Orbital granuloma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Chronic inflammatory disorders of orbit (376.1)\\" + }, + { + "displayName": "(376.12) Orbital myositis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Chronic inflammatory disorders of orbit (376.1)\\(376.12) Orbital myositis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Chronic inflammatory disorders of orbit (376.1)\\\\(376.12) Orbital myositis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Chronic inflammatory disorders of orbit (376.1)\\" + }, + { + "displayName": "(376.13) Parasitic infestation of orbit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Chronic inflammatory disorders of orbit (376.1)\\(376.13) Parasitic infestation of orbit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Chronic inflammatory disorders of orbit (376.1)\\" + }, + { + "displayName": "Deformity of orbit (376.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Deformity of orbit (376.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\" + }, + { + "displayName": "(376.40) Deformity of orbit, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\(376.40) Deformity of orbit, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Deformity of orbit (376.4)\\\\(376.40) Deformity of orbit, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\" + }, + { + "displayName": "(376.41) Hypertelorism of orbit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\(376.41) Hypertelorism of orbit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Deformity of orbit (376.4)\\\\(376.41) Hypertelorism of orbit\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\" + }, + { + "displayName": "(376.42) Exostosis of orbit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\(376.42) Exostosis of orbit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Deformity of orbit (376.4)\\\\(376.42) Exostosis of orbit\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\" + }, + { + "displayName": "(376.43) Local deformities of orbit due to bone disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\(376.43) Local deformities of orbit due to bone disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Deformity of orbit (376.4)\\\\(376.43) Local deformities of orbit due to bone disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\" + }, + { + "displayName": "(376.44) Orbital deformities associated with craniofacial deformities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\(376.44) Orbital deformities associated with craniofacial deformities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Deformity of orbit (376.4)\\\\(376.44) Orbital deformities associated with craniofacial deformities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\" + }, + { + "displayName": "(376.45) Atrophy of orbit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\(376.45) Atrophy of orbit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\" + }, + { + "displayName": "(376.46) Enlargement of orbit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\(376.46) Enlargement of orbit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\" + }, + { + "displayName": "(376.47) Deformity of orbit due to trauma or surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\(376.47) Deformity of orbit due to trauma or surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Deformity of orbit (376.4)\\" + }, + { + "displayName": "Endocrine exophthalmos (376.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Endocrine exophthalmos (376.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\" + }, + { + "displayName": "(376.21) Thyrotoxic exophthalmos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Endocrine exophthalmos (376.2)\\(376.21) Thyrotoxic exophthalmos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Endocrine exophthalmos (376.2)\\" + }, + { + "displayName": "(376.22) Exophthalmic ophthalmoplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Endocrine exophthalmos (376.2)\\(376.22) Exophthalmic ophthalmoplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Endocrine exophthalmos (376.2)\\" + }, + { + "displayName": "Enophthalmos (376.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Enophthalmos (376.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\" + }, + { + "displayName": "(376.50) Enophthalmos, unspecified as to cause", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Enophthalmos (376.5)\\(376.50) Enophthalmos, unspecified as to cause\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Enophthalmos (376.5)\\" + }, + { + "displayName": "(376.51) Enophthalmos due to atrophy of orbital tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Enophthalmos (376.5)\\(376.51) Enophthalmos due to atrophy of orbital tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Enophthalmos (376.5)\\" + }, + { + "displayName": "(376.52) Enophthalmos due to trauma or surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Enophthalmos (376.5)\\(376.52) Enophthalmos due to trauma or surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Enophthalmos (376.5)\\\\(376.52) Enophthalmos due to trauma or surgery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Enophthalmos (376.5)\\" + }, + { + "displayName": "Other exophthalmic conditions (376.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\" + }, + { + "displayName": "(376.30) Exophthalmos, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\(376.30) Exophthalmos, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Other exophthalmic conditions (376.3)\\\\(376.30) Exophthalmos, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\" + }, + { + "displayName": "(376.31) Constant exophthalmos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\(376.31) Constant exophthalmos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Disorders of the orbit (376)\\\\Other exophthalmic conditions (376.3)\\\\(376.31) Constant exophthalmos\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\" + }, + { + "displayName": "(376.32) Orbital hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\(376.32) Orbital hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\" + }, + { + "displayName": "(376.33) Orbital edema or congestion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\(376.33) Orbital edema or congestion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\" + }, + { + "displayName": "(376.34) Intermittent exophthalmos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\(376.34) Intermittent exophthalmos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\" + }, + { + "displayName": "(376.35) Pulsating exophthalmos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\(376.35) Pulsating exophthalmos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\" + }, + { + "displayName": "(376.36) Lateral displacement of globe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\(376.36) Lateral displacement of globe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other exophthalmic conditions (376.3)\\" + }, + { + "displayName": "Other orbital disorders (376.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other orbital disorders (376.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\" + }, + { + "displayName": "(376.81) Orbital cysts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other orbital disorders (376.8)\\(376.81) Orbital cysts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other orbital disorders (376.8)\\" + }, + { + "displayName": "(376.82) Myopathy of extraocular muscles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other orbital disorders (376.8)\\(376.82) Myopathy of extraocular muscles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other orbital disorders (376.8)\\" + }, + { + "displayName": "(376.89) Other orbital disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other orbital disorders (376.8)\\(376.89) Other orbital disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Disorders of the orbit (376)\\Other orbital disorders (376.8)\\" + }, + { + "displayName": "Glaucoma (365)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(365.9) Unspecified glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\(365.9) Unspecified glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\" + }, + { + "displayName": "Borderline glaucoma [glaucoma suspect] (365.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Borderline glaucoma [glaucoma suspect] (365.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Borderline glaucoma [glaucoma suspect] (365.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\" + }, + { + "displayName": "(365.00) Preglaucoma, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Borderline glaucoma [glaucoma suspect] (365.0)\\(365.00) Preglaucoma, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Borderline glaucoma [glaucoma suspect] (365.0)\\" + }, + { + "displayName": "(365.01) Open angle with borderline findings, low risk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Borderline glaucoma [glaucoma suspect] (365.0)\\(365.01) Open angle with borderline findings, low risk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Borderline glaucoma [glaucoma suspect] (365.0)\\\\(365.01) Open angle with borderline findings, low risk\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Borderline glaucoma [glaucoma suspect] (365.0)\\" + }, + { + "displayName": "(365.02) Anatomical narrow angle borderline glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Borderline glaucoma [glaucoma suspect] (365.0)\\(365.02) Anatomical narrow angle borderline glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Borderline glaucoma [glaucoma suspect] (365.0)\\" + }, + { + "displayName": "(365.03) Steroid responders borderline glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Borderline glaucoma [glaucoma suspect] (365.0)\\(365.03) Steroid responders borderline glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Borderline glaucoma [glaucoma suspect] (365.0)\\\\(365.03) Steroid responders borderline glaucoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Borderline glaucoma [glaucoma suspect] (365.0)\\" + }, + { + "displayName": "(365.04) Ocular hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Borderline glaucoma [glaucoma suspect] (365.0)\\(365.04) Ocular hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Borderline glaucoma [glaucoma suspect] (365.0)\\\\(365.04) Ocular hypertension\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Borderline glaucoma [glaucoma suspect] (365.0)\\" + }, + { + "displayName": "Corticosteroid-induced glaucoma (365.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Corticosteroid-induced glaucoma (365.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\" + }, + { + "displayName": "(365.31) Corticosteroid-induced glaucoma, glaucomatous stage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Corticosteroid-induced glaucoma (365.3)\\(365.31) Corticosteroid-induced glaucoma, glaucomatous stage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Corticosteroid-induced glaucoma (365.3)\\" + }, + { + "displayName": "(365.32) Corticosteroid-induced glaucoma, residual stage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Corticosteroid-induced glaucoma (365.3)\\(365.32) Corticosteroid-induced glaucoma, residual stage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Corticosteroid-induced glaucoma (365.3)\\" + }, + { + "displayName": "Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\" + }, + { + "displayName": "(365.41) Glaucoma associated with chamber angle anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\\(365.41) Glaucoma associated with chamber angle anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\\" + }, + { + "displayName": "(365.42) Glaucoma associated with anomalies of iris", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\\(365.42) Glaucoma associated with anomalies of iris\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\\" + }, + { + "displayName": "(365.43) Glaucoma associated with other anterior segment anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\\(365.43) Glaucoma associated with other anterior segment anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\\" + }, + { + "displayName": "(365.44) Glaucoma associated with systemic syndromes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\\(365.44) Glaucoma associated with systemic syndromes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\\\\(365.44) Glaucoma associated with systemic syndromes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\\" + }, + { + "displayName": "Glaucoma associated with disorders of the lens (365.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with disorders of the lens (365.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Glaucoma associated with disorders of the lens (365.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\" + }, + { + "displayName": "(365.51) Phacolytic glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with disorders of the lens (365.5)\\(365.51) Phacolytic glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Glaucoma associated with disorders of the lens (365.5)\\\\(365.51) Phacolytic glaucoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with disorders of the lens (365.5)\\" + }, + { + "displayName": "(365.52) Pseudoexfoliation glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with disorders of the lens (365.5)\\(365.52) Pseudoexfoliation glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Glaucoma associated with disorders of the lens (365.5)\\\\(365.52) Pseudoexfoliation glaucoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with disorders of the lens (365.5)\\" + }, + { + "displayName": "(365.59) Glaucoma associated with other lens disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with disorders of the lens (365.5)\\(365.59) Glaucoma associated with other lens disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Glaucoma associated with disorders of the lens (365.5)\\\\(365.59) Glaucoma associated with other lens disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with disorders of the lens (365.5)\\" + }, + { + "displayName": "Glaucoma associated with other ocular disorders (365.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Glaucoma associated with other ocular disorders (365.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\" + }, + { + "displayName": "(365.60) Glaucoma associated with unspecified ocular disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\(365.60) Glaucoma associated with unspecified ocular disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\" + }, + { + "displayName": "(365.61) Glaucoma associated with pupillary block", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\(365.61) Glaucoma associated with pupillary block\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\" + }, + { + "displayName": "(365.62) Glaucoma associated with ocular inflammations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\(365.62) Glaucoma associated with ocular inflammations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\" + }, + { + "displayName": "(365.63) Glaucoma associated with vascular disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\(365.63) Glaucoma associated with vascular disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\" + }, + { + "displayName": "(365.64) Glaucoma associated with tumors or cysts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\(365.64) Glaucoma associated with tumors or cysts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\" + }, + { + "displayName": "(365.65) Glaucoma associated with ocular trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\(365.65) Glaucoma associated with ocular trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma associated with other ocular disorders (365.6)\\" + }, + { + "displayName": "Glaucoma stage (365.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma stage (365.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\" + }, + { + "displayName": "(365.70) Glaucoma stage, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma stage (365.7)\\(365.70) Glaucoma stage, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Glaucoma stage (365.7)\\" + }, + { + "displayName": "Open-angle glaucoma (365.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Open-angle glaucoma (365.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\" + }, + { + "displayName": "(365.10) Open-angle glaucoma, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\(365.10) Open-angle glaucoma, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Open-angle glaucoma (365.1)\\\\(365.10) Open-angle glaucoma, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\" + }, + { + "displayName": "(365.11) Primary open angle glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\(365.11) Primary open angle glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Open-angle glaucoma (365.1)\\\\(365.11) Primary open angle glaucoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\" + }, + { + "displayName": "(365.12) Low tension open-angle glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\(365.12) Low tension open-angle glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\" + }, + { + "displayName": "(365.13) Pigmentary open-angle glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\(365.13) Pigmentary open-angle glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Open-angle glaucoma (365.1)\\\\(365.13) Pigmentary open-angle glaucoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\" + }, + { + "displayName": "(365.14) Glaucoma of childhood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\(365.14) Glaucoma of childhood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Open-angle glaucoma (365.1)\\\\(365.14) Glaucoma of childhood\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\" + }, + { + "displayName": "(365.15) Residual stage of open angle glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\(365.15) Residual stage of open angle glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Open-angle glaucoma (365.1)\\" + }, + { + "displayName": "Other specified forms of glaucoma (365.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Other specified forms of glaucoma (365.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\" + }, + { + "displayName": "(365.81) Hypersecretion glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Other specified forms of glaucoma (365.8)\\(365.81) Hypersecretion glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Other specified forms of glaucoma (365.8)\\\\(365.81) Hypersecretion glaucoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Other specified forms of glaucoma (365.8)\\" + }, + { + "displayName": "(365.82) Glaucoma with increased episcleral venous pressure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Other specified forms of glaucoma (365.8)\\(365.82) Glaucoma with increased episcleral venous pressure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Other specified forms of glaucoma (365.8)\\" + }, + { + "displayName": "(365.83) Aqueous misdirection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Other specified forms of glaucoma (365.8)\\(365.83) Aqueous misdirection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Other specified forms of glaucoma (365.8)\\" + }, + { + "displayName": "(365.89) Other specified glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Other specified forms of glaucoma (365.8)\\(365.89) Other specified glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Other specified forms of glaucoma (365.8)\\" + }, + { + "displayName": "Primary angle-closure glaucoma (365.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Primary angle-closure glaucoma (365.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\" + }, + { + "displayName": "(365.20) Primary angle-closure glaucoma, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Primary angle-closure glaucoma (365.2)\\(365.20) Primary angle-closure glaucoma, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Primary angle-closure glaucoma (365.2)\\" + }, + { + "displayName": "(365.21) Intermittent angle-closure glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Primary angle-closure glaucoma (365.2)\\(365.21) Intermittent angle-closure glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Primary angle-closure glaucoma (365.2)\\" + }, + { + "displayName": "(365.22) Acute angle-closure glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Primary angle-closure glaucoma (365.2)\\(365.22) Acute angle-closure glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Primary angle-closure glaucoma (365.2)\\\\(365.22) Acute angle-closure glaucoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Primary angle-closure glaucoma (365.2)\\" + }, + { + "displayName": "(365.23) Chronic angle-closure glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Primary angle-closure glaucoma (365.2)\\(365.23) Chronic angle-closure glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Glaucoma (365)\\\\Primary angle-closure glaucoma (365.2)\\\\(365.23) Chronic angle-closure glaucoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Primary angle-closure glaucoma (365.2)\\" + }, + { + "displayName": "(365.24) Residual stage of angle-closure glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Primary angle-closure glaucoma (365.2)\\(365.24) Residual stage of angle-closure glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Glaucoma (365)\\Primary angle-closure glaucoma (365.2)\\" + }, + { + "displayName": "Inflammation of eyelids (373)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(373.2) Chalazion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\(373.2) Chalazion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\" + }, + { + "displayName": "(373.4) Infective dermatitis of eyelid of types resulting in deformity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\(373.4) Infective dermatitis of eyelid of types resulting in deformity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\" + }, + { + "displayName": "(373.5) Other infective dermatitis of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\(373.5) Other infective dermatitis of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\" + }, + { + "displayName": "(373.6) Parasitic infestation of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\(373.6) Parasitic infestation of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\" + }, + { + "displayName": "(373.8) Other inflammations of eyelids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\(373.8) Other inflammations of eyelids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\" + }, + { + "displayName": "(373.9) Unspecified inflammation of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\(373.9) Unspecified inflammation of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\" + }, + { + "displayName": "Blepharitis (373.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Blepharitis (373.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\" + }, + { + "displayName": "(373.00) Blepharitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Blepharitis (373.0)\\(373.00) Blepharitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Blepharitis (373.0)\\" + }, + { + "displayName": "(373.01) Ulcerative blepharitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Blepharitis (373.0)\\(373.01) Ulcerative blepharitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Blepharitis (373.0)\\" + }, + { + "displayName": "(373.02) Squamous blepharitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Blepharitis (373.0)\\(373.02) Squamous blepharitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Blepharitis (373.0)\\" + }, + { + "displayName": "Hordeolum and other deep inflammation of eyelid (373.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Hordeolum and other deep inflammation of eyelid (373.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\" + }, + { + "displayName": "(373.11) Hordeolum externum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Hordeolum and other deep inflammation of eyelid (373.1)\\(373.11) Hordeolum externum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Hordeolum and other deep inflammation of eyelid (373.1)\\" + }, + { + "displayName": "(373.12) Hordeolum internum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Hordeolum and other deep inflammation of eyelid (373.1)\\(373.12) Hordeolum internum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Hordeolum and other deep inflammation of eyelid (373.1)\\" + }, + { + "displayName": "(373.13) Abscess of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Hordeolum and other deep inflammation of eyelid (373.1)\\(373.13) Abscess of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Hordeolum and other deep inflammation of eyelid (373.1)\\" + }, + { + "displayName": "Noninfectious dermatoses of eyelid (373.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Noninfectious dermatoses of eyelid (373.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\" + }, + { + "displayName": "(373.31) Eczematous dermatitis of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Noninfectious dermatoses of eyelid (373.3)\\(373.31) Eczematous dermatitis of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Noninfectious dermatoses of eyelid (373.3)\\" + }, + { + "displayName": "(373.32) Contact and allergic dermatitis of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Noninfectious dermatoses of eyelid (373.3)\\(373.32) Contact and allergic dermatitis of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Inflammation of eyelids (373)\\\\Noninfectious dermatoses of eyelid (373.3)\\\\(373.32) Contact and allergic dermatitis of eyelid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Noninfectious dermatoses of eyelid (373.3)\\" + }, + { + "displayName": "(373.33) Xeroderma of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Noninfectious dermatoses of eyelid (373.3)\\(373.33) Xeroderma of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Inflammation of eyelids (373)\\\\Noninfectious dermatoses of eyelid (373.3)\\\\(373.33) Xeroderma of eyelid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Noninfectious dermatoses of eyelid (373.3)\\" + }, + { + "displayName": "(373.34) Discoid lupus erythematosus of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Noninfectious dermatoses of eyelid (373.3)\\(373.34) Discoid lupus erythematosus of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Inflammation of eyelids (373)\\Noninfectious dermatoses of eyelid (373.3)\\" + }, + { + "displayName": "Keratitis (370)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Keratitis (370)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(370.8) Other forms of keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\(370.8) Other forms of keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Keratitis (370)\\\\(370.8) Other forms of keratitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\" + }, + { + "displayName": "(370.9) Unspecified keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\(370.9) Unspecified keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\" + }, + { + "displayName": "Certain types of keratoconjunctivitis (370.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Certain types of keratoconjunctivitis (370.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\" + }, + { + "displayName": "(370.31) Phlyctenular keratoconjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Certain types of keratoconjunctivitis (370.3)\\(370.31) Phlyctenular keratoconjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Certain types of keratoconjunctivitis (370.3)\\" + }, + { + "displayName": "(370.32) Limbar and corneal involvement in vernal conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Certain types of keratoconjunctivitis (370.3)\\(370.32) Limbar and corneal involvement in vernal conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Certain types of keratoconjunctivitis (370.3)\\" + }, + { + "displayName": "(370.33) Keratoconjunctivitis sicca, not specified as Sjogren's", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Certain types of keratoconjunctivitis (370.3)\\(370.33) Keratoconjunctivitis sicca, not specified as Sjogren's\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Certain types of keratoconjunctivitis (370.3)\\" + }, + { + "displayName": "(370.34) Exposure keratoconjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Certain types of keratoconjunctivitis (370.3)\\(370.34) Exposure keratoconjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Certain types of keratoconjunctivitis (370.3)\\" + }, + { + "displayName": "(370.35) Neurotrophic keratoconjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Certain types of keratoconjunctivitis (370.3)\\(370.35) Neurotrophic keratoconjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Keratitis (370)\\\\Certain types of keratoconjunctivitis (370.3)\\\\(370.35) Neurotrophic keratoconjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Certain types of keratoconjunctivitis (370.3)\\" + }, + { + "displayName": "Corneal neovascularization (370.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal neovascularization (370.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\" + }, + { + "displayName": "(370.60) Corneal neovascularization, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal neovascularization (370.6)\\(370.60) Corneal neovascularization, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Keratitis (370)\\\\Corneal neovascularization (370.6)\\\\(370.60) Corneal neovascularization, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal neovascularization (370.6)\\" + }, + { + "displayName": "(370.61) Localized vascularization of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal neovascularization (370.6)\\(370.61) Localized vascularization of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal neovascularization (370.6)\\" + }, + { + "displayName": "(370.62) Pannus (corneal)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal neovascularization (370.6)\\(370.62) Pannus (corneal)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Keratitis (370)\\\\Corneal neovascularization (370.6)\\\\(370.62) Pannus (corneal)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal neovascularization (370.6)\\" + }, + { + "displayName": "(370.63) Deep vascularization of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal neovascularization (370.6)\\(370.63) Deep vascularization of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal neovascularization (370.6)\\" + }, + { + "displayName": "(370.64) Ghost vessels (corneal)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal neovascularization (370.6)\\(370.64) Ghost vessels (corneal)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal neovascularization (370.6)\\" + }, + { + "displayName": "Corneal ulcer (370.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\" + }, + { + "displayName": "(370.00) Corneal ulcer, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\(370.00) Corneal ulcer, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\" + }, + { + "displayName": "(370.01) Marginal corneal ulcer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\(370.01) Marginal corneal ulcer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\" + }, + { + "displayName": "(370.02) Ring corneal ulcer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\(370.02) Ring corneal ulcer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\" + }, + { + "displayName": "(370.03) Central corneal ulcer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\(370.03) Central corneal ulcer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Keratitis (370)\\\\Corneal ulcer (370.0)\\\\(370.03) Central corneal ulcer\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\" + }, + { + "displayName": "(370.04) Hypopyon ulcer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\(370.04) Hypopyon ulcer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Keratitis (370)\\\\Corneal ulcer (370.0)\\\\(370.04) Hypopyon ulcer\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\" + }, + { + "displayName": "(370.05) Mycotic corneal ulcer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\(370.05) Mycotic corneal ulcer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\" + }, + { + "displayName": "(370.06) Perforated corneal ulcer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\(370.06) Perforated corneal ulcer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Keratitis (370)\\\\Corneal ulcer (370.0)\\\\(370.06) Perforated corneal ulcer\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\" + }, + { + "displayName": "(370.07) Mooren's ulcer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\(370.07) Mooren's ulcer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Corneal ulcer (370.0)\\" + }, + { + "displayName": "Interstitial and deep keratitis (370.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Interstitial and deep keratitis (370.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Keratitis (370)\\\\Interstitial and deep keratitis (370.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\" + }, + { + "displayName": "(370.50) Interstitial keratitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Interstitial and deep keratitis (370.5)\\(370.50) Interstitial keratitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Keratitis (370)\\\\Interstitial and deep keratitis (370.5)\\\\(370.50) Interstitial keratitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Interstitial and deep keratitis (370.5)\\" + }, + { + "displayName": "(370.52) Diffuse interstitial keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Interstitial and deep keratitis (370.5)\\(370.52) Diffuse interstitial keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Interstitial and deep keratitis (370.5)\\" + }, + { + "displayName": "(370.54) Sclerosing keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Interstitial and deep keratitis (370.5)\\(370.54) Sclerosing keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Interstitial and deep keratitis (370.5)\\" + }, + { + "displayName": "(370.55) Corneal abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Interstitial and deep keratitis (370.5)\\(370.55) Corneal abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Interstitial and deep keratitis (370.5)\\" + }, + { + "displayName": "(370.59) Other interstitial and deep keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Interstitial and deep keratitis (370.5)\\(370.59) Other interstitial and deep keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Interstitial and deep keratitis (370.5)\\" + }, + { + "displayName": "Other and unspecified keratoconjunctivitis (370.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Other and unspecified keratoconjunctivitis (370.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\" + }, + { + "displayName": "(370.40) Keratoconjunctivitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Other and unspecified keratoconjunctivitis (370.4)\\(370.40) Keratoconjunctivitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Other and unspecified keratoconjunctivitis (370.4)\\" + }, + { + "displayName": "(370.44) Keratitis or keratoconjunctivitis in exanthema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Other and unspecified keratoconjunctivitis (370.4)\\(370.44) Keratitis or keratoconjunctivitis in exanthema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Other and unspecified keratoconjunctivitis (370.4)\\" + }, + { + "displayName": "(370.49) Other keratoconjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Other and unspecified keratoconjunctivitis (370.4)\\(370.49) Other keratoconjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Other and unspecified keratoconjunctivitis (370.4)\\" + }, + { + "displayName": "Superficial keratitis without conjunctivitis (370.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Superficial keratitis without conjunctivitis (370.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\" + }, + { + "displayName": "(370.20) Superficial keratitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Superficial keratitis without conjunctivitis (370.2)\\(370.20) Superficial keratitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Superficial keratitis without conjunctivitis (370.2)\\" + }, + { + "displayName": "(370.21) Punctate keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Superficial keratitis without conjunctivitis (370.2)\\(370.21) Punctate keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Superficial keratitis without conjunctivitis (370.2)\\" + }, + { + "displayName": "(370.22) Macular keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Superficial keratitis without conjunctivitis (370.2)\\(370.22) Macular keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Superficial keratitis without conjunctivitis (370.2)\\" + }, + { + "displayName": "(370.23) Filamentary keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Superficial keratitis without conjunctivitis (370.2)\\(370.23) Filamentary keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Superficial keratitis without conjunctivitis (370.2)\\" + }, + { + "displayName": "(370.24) Photokeratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Superficial keratitis without conjunctivitis (370.2)\\(370.24) Photokeratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Keratitis (370)\\Superficial keratitis without conjunctivitis (370.2)\\" + }, + { + "displayName": "Other disorders of eye (379)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(379.8) Other specified disorders of eye and adnexa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\(379.8) Other specified disorders of eye and adnexa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\" + }, + { + "displayName": "Anomalies of pupillary function (379.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\" + }, + { + "displayName": "(379.40) Abnormal pupillary function, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\(379.40) Abnormal pupillary function, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Anomalies of pupillary function (379.4)\\\\(379.40) Abnormal pupillary function, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\" + }, + { + "displayName": "(379.41) Anisocoria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\(379.41) Anisocoria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Anomalies of pupillary function (379.4)\\\\(379.41) Anisocoria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\" + }, + { + "displayName": "(379.42) Miosis (persistent), not due to miotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\(379.42) Miosis (persistent), not due to miotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\" + }, + { + "displayName": "(379.43) Mydriasis (persistent), not due to mydriatics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\(379.43) Mydriasis (persistent), not due to mydriatics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\" + }, + { + "displayName": "(379.45) Argyll Robertson pupil, atypical", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\(379.45) Argyll Robertson pupil, atypical\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Anomalies of pupillary function (379.4)\\\\(379.45) Argyll Robertson pupil, atypical\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\" + }, + { + "displayName": "(379.46) Tonic pupillary reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\(379.46) Tonic pupillary reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\" + }, + { + "displayName": "(379.49) Other anomalies of pupillary function", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\(379.49) Other anomalies of pupillary function\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Anomalies of pupillary function (379.4)\\\\(379.49) Other anomalies of pupillary function\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Anomalies of pupillary function (379.4)\\" + }, + { + "displayName": "Aphakia and other disorders of lens (379.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Aphakia and other disorders of lens (379.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Aphakia and other disorders of lens (379.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\" + }, + { + "displayName": "(379.31) Aphakia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Aphakia and other disorders of lens (379.3)\\(379.31) Aphakia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Aphakia and other disorders of lens (379.3)\\" + }, + { + "displayName": "(379.32) Subluxation of lens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Aphakia and other disorders of lens (379.3)\\(379.32) Subluxation of lens\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Aphakia and other disorders of lens (379.3)\\\\(379.32) Subluxation of lens\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Aphakia and other disorders of lens (379.3)\\" + }, + { + "displayName": "(379.33) Anterior dislocation of lens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Aphakia and other disorders of lens (379.3)\\(379.33) Anterior dislocation of lens\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Aphakia and other disorders of lens (379.3)\\\\(379.33) Anterior dislocation of lens\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Aphakia and other disorders of lens (379.3)\\" + }, + { + "displayName": "(379.34) Posterior dislocation of lens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Aphakia and other disorders of lens (379.3)\\(379.34) Posterior dislocation of lens\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Aphakia and other disorders of lens (379.3)\\" + }, + { + "displayName": "(379.39) Other disorders of lens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Aphakia and other disorders of lens (379.3)\\(379.39) Other disorders of lens\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Aphakia and other disorders of lens (379.3)\\\\(379.39) Other disorders of lens\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Aphakia and other disorders of lens (379.3)\\" + }, + { + "displayName": "Disorders of vitreous body (379.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\" + }, + { + "displayName": "(379.21) Vitreous degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\(379.21) Vitreous degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Disorders of vitreous body (379.2)\\\\(379.21) Vitreous degeneration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\" + }, + { + "displayName": "(379.22) Crystalline deposits in vitreous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\(379.22) Crystalline deposits in vitreous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\" + }, + { + "displayName": "(379.23) Vitreous hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\(379.23) Vitreous hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Disorders of vitreous body (379.2)\\\\(379.23) Vitreous hemorrhage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\" + }, + { + "displayName": "(379.24) Other vitreous opacities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\(379.24) Other vitreous opacities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\" + }, + { + "displayName": "(379.25) Vitreous membranes and strands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\(379.25) Vitreous membranes and strands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Disorders of vitreous body (379.2)\\\\(379.25) Vitreous membranes and strands\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\" + }, + { + "displayName": "(379.26) Vitreous prolapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\(379.26) Vitreous prolapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\" + }, + { + "displayName": "(379.29) Other disorders of vitreous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\(379.29) Other disorders of vitreous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Disorders of vitreous body (379.2)\\\\(379.29) Other disorders of vitreous\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Disorders of vitreous body (379.2)\\" + }, + { + "displayName": "Inflammation (infection) of postprocedural bleb (379.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Inflammation (infection) of postprocedural bleb (379.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\" + }, + { + "displayName": "(379.60) Inflammation (infection) of postprocedural bleb, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Inflammation (infection) of postprocedural bleb (379.6)\\(379.60) Inflammation (infection) of postprocedural bleb, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Inflammation (infection) of postprocedural bleb (379.6)\\\\(379.60) Inflammation (infection) of postprocedural bleb, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Inflammation (infection) of postprocedural bleb (379.6)\\" + }, + { + "displayName": "(379.61) Inflammation (infection) of postprocedural bleb, stage 1", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Inflammation (infection) of postprocedural bleb (379.6)\\(379.61) Inflammation (infection) of postprocedural bleb, stage 1\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Inflammation (infection) of postprocedural bleb (379.6)\\\\(379.61) Inflammation (infection) of postprocedural bleb, stage 1\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Inflammation (infection) of postprocedural bleb (379.6)\\" + }, + { + "displayName": "(379.62) Inflammation (infection) of postprocedural bleb, stage 2", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Inflammation (infection) of postprocedural bleb (379.6)\\(379.62) Inflammation (infection) of postprocedural bleb, stage 2\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Inflammation (infection) of postprocedural bleb (379.6)\\\\(379.62) Inflammation (infection) of postprocedural bleb, stage 2\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Inflammation (infection) of postprocedural bleb (379.6)\\" + }, + { + "displayName": "(379.63) Inflammation (infection) of postprocedural bleb, stage 3", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Inflammation (infection) of postprocedural bleb (379.6)\\(379.63) Inflammation (infection) of postprocedural bleb, stage 3\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Inflammation (infection) of postprocedural bleb (379.6)\\" + }, + { + "displayName": "Nystagmus and other irregular eye movements (379.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\" + }, + { + "displayName": "(379.50) Nystagmus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\(379.50) Nystagmus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\" + }, + { + "displayName": "(379.51) Congenital nystagmus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\(379.51) Congenital nystagmus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\" + }, + { + "displayName": "(379.52) Latent nystagmus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\(379.52) Latent nystagmus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\" + }, + { + "displayName": "(379.53) Visual deprivation nystagmus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\(379.53) Visual deprivation nystagmus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\" + }, + { + "displayName": "(379.54) Nystagmus associated with disorders of the vestibular system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\(379.54) Nystagmus associated with disorders of the vestibular system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\" + }, + { + "displayName": "(379.55) Dissociated nystagmus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\(379.55) Dissociated nystagmus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\" + }, + { + "displayName": "(379.56) Other forms of nystagmus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\(379.56) Other forms of nystagmus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Nystagmus and other irregular eye movements (379.5)\\\\(379.56) Other forms of nystagmus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\" + }, + { + "displayName": "(379.57) Deficiencies of saccadic eye movements", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\(379.57) Deficiencies of saccadic eye movements\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Nystagmus and other irregular eye movements (379.5)\\\\(379.57) Deficiencies of saccadic eye movements\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\" + }, + { + "displayName": "(379.58) Deficiencies of smooth pursuit movements", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\(379.58) Deficiencies of smooth pursuit movements\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Nystagmus and other irregular eye movements (379.5)\\\\(379.58) Deficiencies of smooth pursuit movements\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\" + }, + { + "displayName": "(379.59) Other irregularities of eye movements", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\(379.59) Other irregularities of eye movements\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Nystagmus and other irregular eye movements (379.5)\\\\(379.59) Other irregularities of eye movements\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Nystagmus and other irregular eye movements (379.5)\\" + }, + { + "displayName": "Other disorders of sclera (379.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Other disorders of sclera (379.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\" + }, + { + "displayName": "(379.11) Scleral ectasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\(379.11) Scleral ectasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\" + }, + { + "displayName": "(379.12) Staphyloma posticum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\(379.12) Staphyloma posticum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\" + }, + { + "displayName": "(379.13) Equatorial staphyloma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\(379.13) Equatorial staphyloma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\" + }, + { + "displayName": "(379.14) Anterior staphyloma, localized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\(379.14) Anterior staphyloma, localized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\" + }, + { + "displayName": "(379.15) Ring staphyloma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\(379.15) Ring staphyloma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\" + }, + { + "displayName": "(379.16) Other degenerative disorders of sclera", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\(379.16) Other degenerative disorders of sclera\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\" + }, + { + "displayName": "(379.19) Other disorders of sclera", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\(379.19) Other disorders of sclera\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Other disorders of sclera (379.1)\\" + }, + { + "displayName": "Scleritis and episcleritis (379.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\" + }, + { + "displayName": "(379.00) Scleritis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\(379.00) Scleritis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\" + }, + { + "displayName": "(379.01) Episcleritis periodica fugax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\(379.01) Episcleritis periodica fugax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\" + }, + { + "displayName": "(379.02) Nodular episcleritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\(379.02) Nodular episcleritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Scleritis and episcleritis (379.0)\\\\(379.02) Nodular episcleritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\" + }, + { + "displayName": "(379.03) Anterior scleritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\(379.03) Anterior scleritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Scleritis and episcleritis (379.0)\\\\(379.03) Anterior scleritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\" + }, + { + "displayName": "(379.04) Scleromalacia perforans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\(379.04) Scleromalacia perforans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eye (379)\\\\Scleritis and episcleritis (379.0)\\\\(379.04) Scleromalacia perforans\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\" + }, + { + "displayName": "(379.05) Scleritis with corneal involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\(379.05) Scleritis with corneal involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\" + }, + { + "displayName": "(379.06) Brawny scleritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\(379.06) Brawny scleritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\" + }, + { + "displayName": "(379.07) Posterior scleritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\(379.07) Posterior scleritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\" + }, + { + "displayName": "(379.09) Other scleritis and episcleritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\(379.09) Other scleritis and episcleritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Scleritis and episcleritis (379.0)\\" + }, + { + "displayName": "Unspecified disorder of eye and adnexa (379.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Unspecified disorder of eye and adnexa (379.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\" + }, + { + "displayName": "(379.90) Disorder of eye, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Unspecified disorder of eye and adnexa (379.9)\\(379.90) Disorder of eye, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Unspecified disorder of eye and adnexa (379.9)\\" + }, + { + "displayName": "(379.91) Pain in or around eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Unspecified disorder of eye and adnexa (379.9)\\(379.91) Pain in or around eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Unspecified disorder of eye and adnexa (379.9)\\" + }, + { + "displayName": "(379.92) Swelling or mass of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Unspecified disorder of eye and adnexa (379.9)\\(379.92) Swelling or mass of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Unspecified disorder of eye and adnexa (379.9)\\" + }, + { + "displayName": "(379.93) Redness or discharge of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Unspecified disorder of eye and adnexa (379.9)\\(379.93) Redness or discharge of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Unspecified disorder of eye and adnexa (379.9)\\" + }, + { + "displayName": "(379.99) Other ill-defined disorders of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Unspecified disorder of eye and adnexa (379.9)\\(379.99) Other ill-defined disorders of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eye (379)\\Unspecified disorder of eye and adnexa (379.9)\\" + }, + { + "displayName": "Other disorders of eyelids (374)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(374.9) Unspecified disorder of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\(374.9) Unspecified disorder of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\(374.9) Unspecified disorder of eyelid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\" + }, + { + "displayName": "Degenerative disorders of eyelid and periocular area (374.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Degenerative disorders of eyelid and periocular area (374.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\" + }, + { + "displayName": "(374.50) Degenerative disorder of eyelid, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\(374.50) Degenerative disorder of eyelid, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\" + }, + { + "displayName": "(374.51) Xanthelasma of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\(374.51) Xanthelasma of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Degenerative disorders of eyelid and periocular area (374.5)\\\\(374.51) Xanthelasma of eyelid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\" + }, + { + "displayName": "(374.52) Hyperpigmentation of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\(374.52) Hyperpigmentation of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\" + }, + { + "displayName": "(374.53) Hypopigmentation of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\(374.53) Hypopigmentation of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Degenerative disorders of eyelid and periocular area (374.5)\\\\(374.53) Hypopigmentation of eyelid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\" + }, + { + "displayName": "(374.54) Hypertrichosis of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\(374.54) Hypertrichosis of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Degenerative disorders of eyelid and periocular area (374.5)\\\\(374.54) Hypertrichosis of eyelid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\" + }, + { + "displayName": "(374.55) Hypotrichosis of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\(374.55) Hypotrichosis of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Degenerative disorders of eyelid and periocular area (374.5)\\\\(374.55) Hypotrichosis of eyelid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\" + }, + { + "displayName": "(374.56) Other degenerative disorders of skin affecting eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\(374.56) Other degenerative disorders of skin affecting eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Degenerative disorders of eyelid and periocular area (374.5)\\" + }, + { + "displayName": "Ectropion (374.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ectropion (374.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\" + }, + { + "displayName": "(374.10) Ectropion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ectropion (374.1)\\(374.10) Ectropion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ectropion (374.1)\\" + }, + { + "displayName": "(374.11) Senile ectropion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ectropion (374.1)\\(374.11) Senile ectropion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ectropion (374.1)\\" + }, + { + "displayName": "(374.12) Mechanical ectropion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ectropion (374.1)\\(374.12) Mechanical ectropion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ectropion (374.1)\\" + }, + { + "displayName": "(374.13) Spastic ectropion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ectropion (374.1)\\(374.13) Spastic ectropion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ectropion (374.1)\\" + }, + { + "displayName": "(374.14) Cicatricial ectropion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ectropion (374.1)\\(374.14) Cicatricial ectropion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ectropion (374.1)\\" + }, + { + "displayName": "Entropion and trichiasis of eyelid (374.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\" + }, + { + "displayName": "(374.00) Entropion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\(374.00) Entropion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\" + }, + { + "displayName": "(374.01) Senile entropion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\(374.01) Senile entropion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Entropion and trichiasis of eyelid (374.0)\\\\(374.01) Senile entropion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\" + }, + { + "displayName": "(374.02) Mechanical entropion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\(374.02) Mechanical entropion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\" + }, + { + "displayName": "(374.03) Spastic entropion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\(374.03) Spastic entropion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\" + }, + { + "displayName": "(374.04) Cicatricial entropion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\(374.04) Cicatricial entropion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\" + }, + { + "displayName": "(374.05) Trichiasis of eyelid without entropion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\(374.05) Trichiasis of eyelid without entropion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Entropion and trichiasis of eyelid (374.0)\\" + }, + { + "displayName": "Lagophthalmos (374.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Lagophthalmos (374.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\" + }, + { + "displayName": "(374.20) Lagophthalmos, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Lagophthalmos (374.2)\\(374.20) Lagophthalmos, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Lagophthalmos (374.2)\\" + }, + { + "displayName": "(374.21) Paralytic lagophthalmos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Lagophthalmos (374.2)\\(374.21) Paralytic lagophthalmos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Lagophthalmos (374.2)\\" + }, + { + "displayName": "(374.22) Mechanical lagophthalmos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Lagophthalmos (374.2)\\(374.22) Mechanical lagophthalmos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Lagophthalmos (374.2)\\" + }, + { + "displayName": "(374.23) Cicatricial lagophthalmos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Lagophthalmos (374.2)\\(374.23) Cicatricial lagophthalmos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Lagophthalmos (374.2)\\" + }, + { + "displayName": "Other disorders affecting eyelid function (374.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders affecting eyelid function (374.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\" + }, + { + "displayName": "(374.41) Lid retraction or lag", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders affecting eyelid function (374.4)\\(374.41) Lid retraction or lag\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders affecting eyelid function (374.4)\\" + }, + { + "displayName": "(374.43) Abnormal innervation syndrome of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders affecting eyelid function (374.4)\\(374.43) Abnormal innervation syndrome of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders affecting eyelid function (374.4)\\" + }, + { + "displayName": "(374.44) Sensory disorders of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders affecting eyelid function (374.4)\\(374.44) Sensory disorders of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders affecting eyelid function (374.4)\\" + }, + { + "displayName": "(374.45) Other sensorimotor disorders of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders affecting eyelid function (374.4)\\(374.45) Other sensorimotor disorders of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders affecting eyelid function (374.4)\\" + }, + { + "displayName": "(374.46) Blepharophimosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders affecting eyelid function (374.4)\\(374.46) Blepharophimosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders affecting eyelid function (374.4)\\" + }, + { + "displayName": "Other disorders of eyelid (374.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Other disorders of eyelid (374.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\" + }, + { + "displayName": "(374.81) Hemorrhage of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\(374.81) Hemorrhage of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\" + }, + { + "displayName": "(374.82) Edema of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\(374.82) Edema of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\" + }, + { + "displayName": "(374.83) Elephantiasis of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\(374.83) Elephantiasis of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Other disorders of eyelid (374.8)\\\\(374.83) Elephantiasis of eyelid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\" + }, + { + "displayName": "(374.84) Cysts of eyelids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\(374.84) Cysts of eyelids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Other disorders of eyelid (374.8)\\\\(374.84) Cysts of eyelids\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\" + }, + { + "displayName": "(374.85) Vascular anomalies of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\(374.85) Vascular anomalies of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Other disorders of eyelid (374.8)\\\\(374.85) Vascular anomalies of eyelid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\" + }, + { + "displayName": "(374.86) Retained foreign body of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\(374.86) Retained foreign body of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Other disorders of eyelid (374.8)\\\\(374.86) Retained foreign body of eyelid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\" + }, + { + "displayName": "(374.87) Dermatochalasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\(374.87) Dermatochalasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Other disorders of eyelid (374.8)\\\\(374.87) Dermatochalasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\" + }, + { + "displayName": "(374.89) Other disorders of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\(374.89) Other disorders of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Other disorders of eyelid (374.8)\\" + }, + { + "displayName": "Ptosis of eyelid (374.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ptosis of eyelid (374.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\" + }, + { + "displayName": "(374.30) Ptosis of eyelid, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ptosis of eyelid (374.3)\\(374.30) Ptosis of eyelid, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ptosis of eyelid (374.3)\\" + }, + { + "displayName": "(374.31) Paralytic ptosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ptosis of eyelid (374.3)\\(374.31) Paralytic ptosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ptosis of eyelid (374.3)\\" + }, + { + "displayName": "(374.32) Myogenic ptosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ptosis of eyelid (374.3)\\(374.32) Myogenic ptosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ptosis of eyelid (374.3)\\" + }, + { + "displayName": "(374.33) Mechanical ptosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ptosis of eyelid (374.3)\\(374.33) Mechanical ptosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other disorders of eyelids (374)\\\\Ptosis of eyelid (374.3)\\\\(374.33) Mechanical ptosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ptosis of eyelid (374.3)\\" + }, + { + "displayName": "(374.34) Blepharochalasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ptosis of eyelid (374.3)\\(374.34) Blepharochalasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other disorders of eyelids (374)\\Ptosis of eyelid (374.3)\\" + }, + { + "displayName": "Other retinal disorders (362)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(362.9) Unspecified retinal disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\(362.9) Unspecified retinal disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\(362.9) Unspecified retinal disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\" + }, + { + "displayName": "Degeneration of macula and posterior pole of retina (362.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\" + }, + { + "displayName": "(362.50) Macular degeneration (senile), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\(362.50) Macular degeneration (senile), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Degeneration of macula and posterior pole of retina (362.5)\\\\(362.50) Macular degeneration (senile), unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\" + }, + { + "displayName": "(362.51) Nonexudative senile macular degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\(362.51) Nonexudative senile macular degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Degeneration of macula and posterior pole of retina (362.5)\\\\(362.51) Nonexudative senile macular degeneration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\" + }, + { + "displayName": "(362.52) Exudative senile macular degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\(362.52) Exudative senile macular degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\" + }, + { + "displayName": "(362.53) Cystoid macular degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\(362.53) Cystoid macular degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\" + }, + { + "displayName": "(362.54) Macular cyst, hole, or pseudohole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\(362.54) Macular cyst, hole, or pseudohole\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\" + }, + { + "displayName": "(362.55) Toxic maculopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\(362.55) Toxic maculopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\" + }, + { + "displayName": "(362.56) Macular puckering", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\(362.56) Macular puckering\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\" + }, + { + "displayName": "(362.57) Drusen (degenerative)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\(362.57) Drusen (degenerative)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Degeneration of macula and posterior pole of retina (362.5)\\" + }, + { + "displayName": "Diabetic retinopathy (362.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\" + }, + { + "displayName": "(362.01) Background diabetic retinopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\(362.01) Background diabetic retinopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\" + }, + { + "displayName": "(362.02) Proliferative diabetic retinopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\(362.02) Proliferative diabetic retinopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\" + }, + { + "displayName": "(362.03) Nonproliferative diabetic retinopathy NOS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\(362.03) Nonproliferative diabetic retinopathy NOS\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\" + }, + { + "displayName": "(362.04) Mild nonproliferative diabetic retinopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\(362.04) Mild nonproliferative diabetic retinopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\" + }, + { + "displayName": "(362.05) Moderate nonproliferative diabetic retinopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\(362.05) Moderate nonproliferative diabetic retinopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\" + }, + { + "displayName": "(362.06) Severe nonproliferative diabetic retinopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\(362.06) Severe nonproliferative diabetic retinopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\" + }, + { + "displayName": "(362.07) Diabetic macular edema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\(362.07) Diabetic macular edema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Diabetic retinopathy (362.0)\\" + }, + { + "displayName": "Hereditary retinal dystrophies (362.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\" + }, + { + "displayName": "(362.70) Hereditary retinal dystrophy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\(362.70) Hereditary retinal dystrophy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\" + }, + { + "displayName": "(362.71) Retinal dystrophy in systemic or cerebroretinal lipidoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\(362.71) Retinal dystrophy in systemic or cerebroretinal lipidoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\" + }, + { + "displayName": "(362.72) Retinal dystrophy in other systemic disorders and syndromes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\(362.72) Retinal dystrophy in other systemic disorders and syndromes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\" + }, + { + "displayName": "(362.73) Vitreoretinal dystrophies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\(362.73) Vitreoretinal dystrophies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\" + }, + { + "displayName": "(362.74) Pigmentary retinal dystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\(362.74) Pigmentary retinal dystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\" + }, + { + "displayName": "(362.75) Other dystrophies primarily involving the sensory retina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\(362.75) Other dystrophies primarily involving the sensory retina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\" + }, + { + "displayName": "(362.76) Dystrophies primarily involving the retinal pigment epithelium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\(362.76) Dystrophies primarily involving the retinal pigment epithelium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Hereditary retinal dystrophies (362.7)\\\\(362.76) Dystrophies primarily involving the retinal pigment epithelium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\" + }, + { + "displayName": "(362.77) Dystrophies primarily involving Bruch's membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\(362.77) Dystrophies primarily involving Bruch's membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Hereditary retinal dystrophies (362.7)\\" + }, + { + "displayName": "Other background retinopathy and retinal vascular changes (362.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Other background retinopathy and retinal vascular changes (362.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\" + }, + { + "displayName": "(362.10) Background retinopathy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\(362.10) Background retinopathy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\" + }, + { + "displayName": "(362.11) Hypertensive retinopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\(362.11) Hypertensive retinopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\" + }, + { + "displayName": "(362.12) Exudative retinopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\(362.12) Exudative retinopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Other background retinopathy and retinal vascular changes (362.1)\\\\(362.12) Exudative retinopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\" + }, + { + "displayName": "(362.13) Changes in vascular appearance of retina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\(362.13) Changes in vascular appearance of retina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\" + }, + { + "displayName": "(362.14) Retinal microaneurysms NOS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\(362.14) Retinal microaneurysms NOS\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Other background retinopathy and retinal vascular changes (362.1)\\\\(362.14) Retinal microaneurysms NOS\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\" + }, + { + "displayName": "(362.15) Retinal telangiectasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\(362.15) Retinal telangiectasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\" + }, + { + "displayName": "(362.16) Retinal neovascularization NOS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\(362.16) Retinal neovascularization NOS\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Other background retinopathy and retinal vascular changes (362.1)\\\\(362.16) Retinal neovascularization NOS\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\" + }, + { + "displayName": "(362.17) Other intraretinal microvascular abnormalities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\(362.17) Other intraretinal microvascular abnormalities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\" + }, + { + "displayName": "(362.18) Retinal vasculitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\(362.18) Retinal vasculitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Other background retinopathy and retinal vascular changes (362.1)\\\\(362.18) Retinal vasculitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other background retinopathy and retinal vascular changes (362.1)\\" + }, + { + "displayName": "Other proliferative retinopathy (362.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\" + }, + { + "displayName": "(362.21) Retrolental fibroplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\(362.21) Retrolental fibroplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Other proliferative retinopathy (362.2)\\\\(362.21) Retrolental fibroplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\" + }, + { + "displayName": "(362.22) Retinopathy of prematurity, stage 0", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\(362.22) Retinopathy of prematurity, stage 0\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Other proliferative retinopathy (362.2)\\\\(362.22) Retinopathy of prematurity, stage 0\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\" + }, + { + "displayName": "(362.23) Retinopathy of prematurity, stage 1", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\(362.23) Retinopathy of prematurity, stage 1\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\" + }, + { + "displayName": "(362.24) Retinopathy of prematurity, stage 2", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\(362.24) Retinopathy of prematurity, stage 2\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Other proliferative retinopathy (362.2)\\\\(362.24) Retinopathy of prematurity, stage 2\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\" + }, + { + "displayName": "(362.25) Retinopathy of prematurity, stage 3", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\(362.25) Retinopathy of prematurity, stage 3\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Other proliferative retinopathy (362.2)\\\\(362.25) Retinopathy of prematurity, stage 3\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\" + }, + { + "displayName": "(362.26) Retinopathy of prematurity, stage 4", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\(362.26) Retinopathy of prematurity, stage 4\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Other proliferative retinopathy (362.2)\\\\(362.26) Retinopathy of prematurity, stage 4\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\" + }, + { + "displayName": "(362.29) Other nondiabetic proliferative retinopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\(362.29) Other nondiabetic proliferative retinopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Other proliferative retinopathy (362.2)\\\\(362.29) Other nondiabetic proliferative retinopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other proliferative retinopathy (362.2)\\" + }, + { + "displayName": "Other retinal disorders (362.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\" + }, + { + "displayName": "(362.81) Retinal hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\(362.81) Retinal hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\" + }, + { + "displayName": "(362.82) Retinal exudates and deposits", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\(362.82) Retinal exudates and deposits\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\" + }, + { + "displayName": "(362.83) Retinal edema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\(362.83) Retinal edema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\" + }, + { + "displayName": "(362.84) Retinal ischemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\(362.84) Retinal ischemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\" + }, + { + "displayName": "(362.85) Retinal nerve fiber bundle defects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\(362.85) Retinal nerve fiber bundle defects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\" + }, + { + "displayName": "(362.89) Other retinal disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\(362.89) Other retinal disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Other retinal disorders (362.8)\\" + }, + { + "displayName": "Peripheral retinal degenerations (362.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\" + }, + { + "displayName": "(362.60) Peripheral retinal degeneration, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\(362.60) Peripheral retinal degeneration, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\" + }, + { + "displayName": "(362.61) Paving stone degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\(362.61) Paving stone degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Peripheral retinal degenerations (362.6)\\\\(362.61) Paving stone degeneration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\" + }, + { + "displayName": "(362.62) Microcystoid degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\(362.62) Microcystoid degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Peripheral retinal degenerations (362.6)\\\\(362.62) Microcystoid degeneration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\" + }, + { + "displayName": "(362.63) Lattice degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\(362.63) Lattice degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Peripheral retinal degenerations (362.6)\\\\(362.63) Lattice degeneration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\" + }, + { + "displayName": "(362.64) Senile reticular degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\(362.64) Senile reticular degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Peripheral retinal degenerations (362.6)\\\\(362.64) Senile reticular degeneration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\" + }, + { + "displayName": "(362.65) Secondary pigmentary degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\(362.65) Secondary pigmentary degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\" + }, + { + "displayName": "(362.66) Secondary vitreoretinal degenerations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\(362.66) Secondary vitreoretinal degenerations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Peripheral retinal degenerations (362.6)\\" + }, + { + "displayName": "Retinal vascular occlusion (362.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\" + }, + { + "displayName": "(362.30) Retinal vascular occlusion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\(362.30) Retinal vascular occlusion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\" + }, + { + "displayName": "(362.31) Central retinal artery occlusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\(362.31) Central retinal artery occlusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\" + }, + { + "displayName": "(362.32) Retinal arterial branch occlusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\(362.32) Retinal arterial branch occlusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\" + }, + { + "displayName": "(362.33) Partial retinal arterial occlusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\(362.33) Partial retinal arterial occlusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\" + }, + { + "displayName": "(362.34) Transient retinal arterial occlusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\(362.34) Transient retinal arterial occlusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\" + }, + { + "displayName": "(362.35) Central retinal vein occlusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\(362.35) Central retinal vein occlusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\" + }, + { + "displayName": "(362.36) Venous tributary (branch) occlusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\(362.36) Venous tributary (branch) occlusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\" + }, + { + "displayName": "(362.37) Venous engorgement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\(362.37) Venous engorgement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Retinal vascular occlusion (362.3)\\" + }, + { + "displayName": "Separation of retinal layers (362.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Separation of retinal layers (362.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Separation of retinal layers (362.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\" + }, + { + "displayName": "(362.40) Retinal layer separation, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Separation of retinal layers (362.4)\\(362.40) Retinal layer separation, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Separation of retinal layers (362.4)\\" + }, + { + "displayName": "(362.41) Central serous retinopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Separation of retinal layers (362.4)\\(362.41) Central serous retinopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Separation of retinal layers (362.4)\\\\(362.41) Central serous retinopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Separation of retinal layers (362.4)\\" + }, + { + "displayName": "(362.42) Serous detachment of retinal pigment epithelium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Separation of retinal layers (362.4)\\(362.42) Serous detachment of retinal pigment epithelium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Other retinal disorders (362)\\\\Separation of retinal layers (362.4)\\\\(362.42) Serous detachment of retinal pigment epithelium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Separation of retinal layers (362.4)\\" + }, + { + "displayName": "(362.43) Hemorrhagic detachment of retinal pigment epithelium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Separation of retinal layers (362.4)\\(362.43) Hemorrhagic detachment of retinal pigment epithelium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Other retinal disorders (362)\\Separation of retinal layers (362.4)\\" + }, + { + "displayName": "Retinal detachments and defects (361)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(361.2) Serous retinal detachment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\(361.2) Serous retinal detachment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\" + }, + { + "displayName": "(361.9) Unspecified retinal detachment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\(361.9) Unspecified retinal detachment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\(361.9) Unspecified retinal detachment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\" + }, + { + "displayName": "Other forms of retinal detachment (361.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Other forms of retinal detachment (361.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Other forms of retinal detachment (361.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\" + }, + { + "displayName": "(361.81) Traction detachment of retina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Other forms of retinal detachment (361.8)\\(361.81) Traction detachment of retina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Other forms of retinal detachment (361.8)\\" + }, + { + "displayName": "(361.89) Other forms of retinal detachment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Other forms of retinal detachment (361.8)\\(361.89) Other forms of retinal detachment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Other forms of retinal detachment (361.8)\\" + }, + { + "displayName": "Retinal defects without detachment (361.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal defects without detachment (361.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Retinal defects without detachment (361.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\" + }, + { + "displayName": "(361.30) Retinal defect, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal defects without detachment (361.3)\\(361.30) Retinal defect, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal defects without detachment (361.3)\\" + }, + { + "displayName": "(361.31) Round hole of retina without detachment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal defects without detachment (361.3)\\(361.31) Round hole of retina without detachment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal defects without detachment (361.3)\\" + }, + { + "displayName": "(361.32) Horseshoe tear of retina without detachment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal defects without detachment (361.3)\\(361.32) Horseshoe tear of retina without detachment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal defects without detachment (361.3)\\" + }, + { + "displayName": "(361.33) Multiple defects of retina without detachment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal defects without detachment (361.3)\\(361.33) Multiple defects of retina without detachment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Retinal defects without detachment (361.3)\\\\(361.33) Multiple defects of retina without detachment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal defects without detachment (361.3)\\" + }, + { + "displayName": "Retinal detachment with retinal defect (361.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Retinal detachment with retinal defect (361.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\" + }, + { + "displayName": "(361.00) Retinal detachment with retinal defect, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\(361.00) Retinal detachment with retinal defect, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\" + }, + { + "displayName": "(361.01) Recent retinal detachment, partial, with single defect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\(361.01) Recent retinal detachment, partial, with single defect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Retinal detachment with retinal defect (361.0)\\\\(361.01) Recent retinal detachment, partial, with single defect\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\" + }, + { + "displayName": "(361.02) Recent retinal detachment, partial, with multiple defects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\(361.02) Recent retinal detachment, partial, with multiple defects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Retinal detachment with retinal defect (361.0)\\\\(361.02) Recent retinal detachment, partial, with multiple defects\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\" + }, + { + "displayName": "(361.03) Recent retinal detachment, partial, with giant tear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\(361.03) Recent retinal detachment, partial, with giant tear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\" + }, + { + "displayName": "(361.04) Recent retinal detachment, partial, with retinal dialysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\(361.04) Recent retinal detachment, partial, with retinal dialysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\" + }, + { + "displayName": "(361.05) Recent retinal detachment, total or subtotal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\(361.05) Recent retinal detachment, total or subtotal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\" + }, + { + "displayName": "(361.06) Old retinal detachment, partial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\(361.06) Old retinal detachment, partial\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\" + }, + { + "displayName": "(361.07) Old retinal detachment, total or subtotal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\(361.07) Old retinal detachment, total or subtotal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Retinal detachment with retinal defect (361.0)\\\\(361.07) Old retinal detachment, total or subtotal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinal detachment with retinal defect (361.0)\\" + }, + { + "displayName": "Retinoschisis and retinal cysts (361.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Retinoschisis and retinal cysts (361.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\" + }, + { + "displayName": "(361.10) Retinoschisis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\(361.10) Retinoschisis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\" + }, + { + "displayName": "(361.11) Flat retinoschisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\(361.11) Flat retinoschisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Retinoschisis and retinal cysts (361.1)\\\\(361.11) Flat retinoschisis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\" + }, + { + "displayName": "(361.12) Bullous retinoschisis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\(361.12) Bullous retinoschisis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Retinoschisis and retinal cysts (361.1)\\\\(361.12) Bullous retinoschisis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\" + }, + { + "displayName": "(361.13) Primary retinal cysts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\(361.13) Primary retinal cysts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\" + }, + { + "displayName": "(361.14) Secondary retinal cysts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\(361.14) Secondary retinal cysts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Retinoschisis and retinal cysts (361.1)\\\\(361.14) Secondary retinal cysts\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\" + }, + { + "displayName": "(361.19) Other retinoschisis and retinal cysts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\(361.19) Other retinoschisis and retinal cysts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Retinal detachments and defects (361)\\\\Retinoschisis and retinal cysts (361.1)\\\\(361.19) Other retinoschisis and retinal cysts\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Retinal detachments and defects (361)\\Retinoschisis and retinal cysts (361.1)\\" + }, + { + "displayName": "Strabismus and other disorders of binocular eye movements (378)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(378.9) Unspecified disorder of eye movements", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\(378.9) Unspecified disorder of eye movements\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\" + }, + { + "displayName": "Esotropia (378.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Esotropia (378.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\" + }, + { + "displayName": "(378.00) Esotropia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\(378.00) Esotropia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\" + }, + { + "displayName": "(378.01) Monocular esotropia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\(378.01) Monocular esotropia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Esotropia (378.0)\\\\(378.01) Monocular esotropia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\" + }, + { + "displayName": "(378.02) Monocular esotropia with A pattern", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\(378.02) Monocular esotropia with A pattern\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\" + }, + { + "displayName": "(378.03) Monocular esotropia with V pattern", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\(378.03) Monocular esotropia with V pattern\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Esotropia (378.0)\\\\(378.03) Monocular esotropia with V pattern\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\" + }, + { + "displayName": "(378.04) Monocular esotropia with other noncomitancies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\(378.04) Monocular esotropia with other noncomitancies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Esotropia (378.0)\\\\(378.04) Monocular esotropia with other noncomitancies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\" + }, + { + "displayName": "(378.05) Alternating esotropia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\(378.05) Alternating esotropia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Esotropia (378.0)\\\\(378.05) Alternating esotropia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\" + }, + { + "displayName": "(378.06) Alternating esotropia with A pattern", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\(378.06) Alternating esotropia with A pattern\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\" + }, + { + "displayName": "(378.07) Alternating esotropia with V pattern", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\(378.07) Alternating esotropia with V pattern\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Esotropia (378.0)\\\\(378.07) Alternating esotropia with V pattern\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\" + }, + { + "displayName": "(378.08) Alternating esotropia with other noncomitancies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\(378.08) Alternating esotropia with other noncomitancies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Esotropia (378.0)\\\\(378.08) Alternating esotropia with other noncomitancies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Esotropia (378.0)\\" + }, + { + "displayName": "Exotropia (378.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\" + }, + { + "displayName": "(378.10) Exotropia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\(378.10) Exotropia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Exotropia (378.1)\\\\(378.10) Exotropia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\" + }, + { + "displayName": "(378.11) Monocular exotropia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\(378.11) Monocular exotropia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\" + }, + { + "displayName": "(378.12) Monocular exotropia with A pattern", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\(378.12) Monocular exotropia with A pattern\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Exotropia (378.1)\\\\(378.12) Monocular exotropia with A pattern\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\" + }, + { + "displayName": "(378.13) Monocular exotropia with V pattern", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\(378.13) Monocular exotropia with V pattern\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\" + }, + { + "displayName": "(378.14) Monocular exotropia with other noncomitancies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\(378.14) Monocular exotropia with other noncomitancies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Exotropia (378.1)\\\\(378.14) Monocular exotropia with other noncomitancies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\" + }, + { + "displayName": "(378.15) Alternating exotropia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\(378.15) Alternating exotropia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Exotropia (378.1)\\\\(378.15) Alternating exotropia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\" + }, + { + "displayName": "(378.16) Alternating exotropia with A pattern", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\(378.16) Alternating exotropia with A pattern\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Exotropia (378.1)\\\\(378.16) Alternating exotropia with A pattern\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\" + }, + { + "displayName": "(378.17) Alternating exotropia with V pattern", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\(378.17) Alternating exotropia with V pattern\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Exotropia (378.1)\\\\(378.17) Alternating exotropia with V pattern\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\" + }, + { + "displayName": "(378.18) Alternating exotropia with other noncomitancies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\(378.18) Alternating exotropia with other noncomitancies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Exotropia (378.1)\\" + }, + { + "displayName": "Heterophoria (378.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Heterophoria (378.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\" + }, + { + "displayName": "(378.40) Heterophoria, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\(378.40) Heterophoria, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Heterophoria (378.4)\\\\(378.40) Heterophoria, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\" + }, + { + "displayName": "(378.41) Esophoria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\(378.41) Esophoria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\" + }, + { + "displayName": "(378.42) Exophoria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\(378.42) Exophoria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Heterophoria (378.4)\\\\(378.42) Exophoria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\" + }, + { + "displayName": "(378.43) Vertical heterophoria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\(378.43) Vertical heterophoria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\" + }, + { + "displayName": "(378.44) Cyclophoria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\(378.44) Cyclophoria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Heterophoria (378.4)\\\\(378.44) Cyclophoria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\" + }, + { + "displayName": "(378.45) Alternating hyperphoria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\(378.45) Alternating hyperphoria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Heterophoria (378.4)\\" + }, + { + "displayName": "Intermittent heterotropia (378.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Intermittent heterotropia (378.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Intermittent heterotropia (378.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\" + }, + { + "displayName": "(378.20) Intermittent heterotropia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Intermittent heterotropia (378.2)\\(378.20) Intermittent heterotropia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Intermittent heterotropia (378.2)\\" + }, + { + "displayName": "(378.21) Intermittent esotropia, monocular", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Intermittent heterotropia (378.2)\\(378.21) Intermittent esotropia, monocular\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Intermittent heterotropia (378.2)\\\\(378.21) Intermittent esotropia, monocular\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Intermittent heterotropia (378.2)\\" + }, + { + "displayName": "(378.22) Intermittent esotropia, alternating", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Intermittent heterotropia (378.2)\\(378.22) Intermittent esotropia, alternating\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Intermittent heterotropia (378.2)\\\\(378.22) Intermittent esotropia, alternating\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Intermittent heterotropia (378.2)\\" + }, + { + "displayName": "(378.23) Intermittent exotropia, monocular", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Intermittent heterotropia (378.2)\\(378.23) Intermittent exotropia, monocular\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Intermittent heterotropia (378.2)\\" + }, + { + "displayName": "(378.24) Intermittent exotropia, alternating", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Intermittent heterotropia (378.2)\\(378.24) Intermittent exotropia, alternating\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Intermittent heterotropia (378.2)\\\\(378.24) Intermittent exotropia, alternating\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Intermittent heterotropia (378.2)\\" + }, + { + "displayName": "Mechanical strabismus (378.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Mechanical strabismus (378.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\" + }, + { + "displayName": "(378.60) Mechanical strabismus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Mechanical strabismus (378.6)\\(378.60) Mechanical strabismus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Mechanical strabismus (378.6)\\\\(378.60) Mechanical strabismus, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Mechanical strabismus (378.6)\\" + }, + { + "displayName": "(378.61) Brown's (tendon) sheath syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Mechanical strabismus (378.6)\\(378.61) Brown's (tendon) sheath syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Mechanical strabismus (378.6)\\" + }, + { + "displayName": "(378.62) Mechanical strabismus from other musculofascial disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Mechanical strabismus (378.6)\\(378.62) Mechanical strabismus from other musculofascial disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Mechanical strabismus (378.6)\\" + }, + { + "displayName": "(378.63) Limited duction associated with other conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Mechanical strabismus (378.6)\\(378.63) Limited duction associated with other conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Mechanical strabismus (378.6)\\" + }, + { + "displayName": "Other and unspecified heterotropia (378.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\" + }, + { + "displayName": "(378.30) Heterotropia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\(378.30) Heterotropia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\" + }, + { + "displayName": "(378.31) Hypertropia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\(378.31) Hypertropia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\" + }, + { + "displayName": "(378.32) Hypotropia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\(378.32) Hypotropia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Other and unspecified heterotropia (378.3)\\\\(378.32) Hypotropia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\" + }, + { + "displayName": "(378.33) Cyclotropia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\(378.33) Cyclotropia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Other and unspecified heterotropia (378.3)\\\\(378.33) Cyclotropia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\" + }, + { + "displayName": "(378.34) Monofixation syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\(378.34) Monofixation syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\" + }, + { + "displayName": "(378.35) Accommodative component in esotropia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\(378.35) Accommodative component in esotropia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Other and unspecified heterotropia (378.3)\\\\(378.35) Accommodative component in esotropia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other and unspecified heterotropia (378.3)\\" + }, + { + "displayName": "Other disorders of binocular eye movements (378.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Other disorders of binocular eye movements (378.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\" + }, + { + "displayName": "(378.81) Palsy of conjugate gaze", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\(378.81) Palsy of conjugate gaze\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\" + }, + { + "displayName": "(378.82) Spasm of conjugate gaze", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\(378.82) Spasm of conjugate gaze\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Other disorders of binocular eye movements (378.8)\\\\(378.82) Spasm of conjugate gaze\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\" + }, + { + "displayName": "(378.83) Convergence insufficiency or palsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\(378.83) Convergence insufficiency or palsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\" + }, + { + "displayName": "(378.84) Convergence excess or spasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\(378.84) Convergence excess or spasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Other disorders of binocular eye movements (378.8)\\\\(378.84) Convergence excess or spasm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\" + }, + { + "displayName": "(378.85) Anomalies of divergence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\(378.85) Anomalies of divergence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Other disorders of binocular eye movements (378.8)\\\\(378.85) Anomalies of divergence\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\" + }, + { + "displayName": "(378.86) Internuclear ophthalmoplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\(378.86) Internuclear ophthalmoplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Other disorders of binocular eye movements (378.8)\\\\(378.86) Internuclear ophthalmoplegia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\" + }, + { + "displayName": "(378.87) Other dissociated deviation of eye movements", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\(378.87) Other dissociated deviation of eye movements\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other disorders of binocular eye movements (378.8)\\" + }, + { + "displayName": "Other specified strabismus (378.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other specified strabismus (378.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Other specified strabismus (378.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\" + }, + { + "displayName": "(378.71) Duane's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other specified strabismus (378.7)\\(378.71) Duane's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Other specified strabismus (378.7)\\\\(378.71) Duane's syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other specified strabismus (378.7)\\" + }, + { + "displayName": "(378.72) Progressive external ophthalmoplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other specified strabismus (378.7)\\(378.72) Progressive external ophthalmoplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other specified strabismus (378.7)\\" + }, + { + "displayName": "(378.73) Strabismus in other neuromuscular disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other specified strabismus (378.7)\\(378.73) Strabismus in other neuromuscular disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Other specified strabismus (378.7)\\\\(378.73) Strabismus in other neuromuscular disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Other specified strabismus (378.7)\\" + }, + { + "displayName": "Paralytic strabismus (378.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Paralytic strabismus (378.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\" + }, + { + "displayName": "(378.50) Paralytic strabismus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\(378.50) Paralytic strabismus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Paralytic strabismus (378.5)\\\\(378.50) Paralytic strabismus, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\" + }, + { + "displayName": "(378.51) Third or oculomotor nerve palsy, partial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\(378.51) Third or oculomotor nerve palsy, partial\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Paralytic strabismus (378.5)\\\\(378.51) Third or oculomotor nerve palsy, partial\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\" + }, + { + "displayName": "(378.52) Third or oculomotor nerve palsy, total", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\(378.52) Third or oculomotor nerve palsy, total\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\" + }, + { + "displayName": "(378.53) Fourth or trochlear nerve palsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\(378.53) Fourth or trochlear nerve palsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Paralytic strabismus (378.5)\\\\(378.53) Fourth or trochlear nerve palsy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\" + }, + { + "displayName": "(378.54) Sixth or abducens nerve palsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\(378.54) Sixth or abducens nerve palsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Strabismus and other disorders of binocular eye movements (378)\\\\Paralytic strabismus (378.5)\\\\(378.54) Sixth or abducens nerve palsy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\" + }, + { + "displayName": "(378.55) External ophthalmoplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\(378.55) External ophthalmoplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\" + }, + { + "displayName": "(378.56) Total ophthalmoplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\(378.56) Total ophthalmoplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Strabismus and other disorders of binocular eye movements (378)\\Paralytic strabismus (378.5)\\" + }, + { + "displayName": "Visual disturbances (368)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\" + }, + { + "displayName": "(368.2) Diplopia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\(368.2) Diplopia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\" + }, + { + "displayName": "(368.8) Other specified visual disturbances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\(368.8) Other specified visual disturbances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\" + }, + { + "displayName": "(368.9) Unspecified visual disturbance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\(368.9) Unspecified visual disturbance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\(368.9) Unspecified visual disturbance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\" + }, + { + "displayName": "Amblyopia ex anopsia (368.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Amblyopia ex anopsia (368.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Amblyopia ex anopsia (368.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\" + }, + { + "displayName": "(368.00) Amblyopia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Amblyopia ex anopsia (368.0)\\(368.00) Amblyopia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Amblyopia ex anopsia (368.0)\\\\(368.00) Amblyopia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Amblyopia ex anopsia (368.0)\\" + }, + { + "displayName": "(368.01) Strabismic amblyopia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Amblyopia ex anopsia (368.0)\\(368.01) Strabismic amblyopia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Amblyopia ex anopsia (368.0)\\\\(368.01) Strabismic amblyopia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Amblyopia ex anopsia (368.0)\\" + }, + { + "displayName": "(368.02) Deprivation amblyopia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Amblyopia ex anopsia (368.0)\\(368.02) Deprivation amblyopia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Amblyopia ex anopsia (368.0)\\" + }, + { + "displayName": "(368.03) Refractive amblyopia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Amblyopia ex anopsia (368.0)\\(368.03) Refractive amblyopia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Amblyopia ex anopsia (368.0)\\" + }, + { + "displayName": "Color vision deficiencies (368.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\" + }, + { + "displayName": "(368.51) Protan defect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\(368.51) Protan defect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\" + }, + { + "displayName": "(368.52) Deutan defect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\(368.52) Deutan defect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\" + }, + { + "displayName": "(368.53) Tritan defect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\(368.53) Tritan defect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\" + }, + { + "displayName": "(368.54) Achromatopsia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\(368.54) Achromatopsia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Color vision deficiencies (368.5)\\\\(368.54) Achromatopsia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\" + }, + { + "displayName": "(368.55) Acquired color vision deficiencies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\(368.55) Acquired color vision deficiencies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Color vision deficiencies (368.5)\\\\(368.55) Acquired color vision deficiencies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\" + }, + { + "displayName": "(368.59) Other color vision deficiencies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\(368.59) Other color vision deficiencies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Color vision deficiencies (368.5)\\\\(368.59) Other color vision deficiencies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Color vision deficiencies (368.5)\\" + }, + { + "displayName": "Night blindness (368.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Night blindness (368.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\" + }, + { + "displayName": "(368.60) Night blindness, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Night blindness (368.6)\\(368.60) Night blindness, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Night blindness (368.6)\\\\(368.60) Night blindness, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Night blindness (368.6)\\" + }, + { + "displayName": "(368.61) Congenital night blindness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Night blindness (368.6)\\(368.61) Congenital night blindness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Night blindness (368.6)\\\\(368.61) Congenital night blindness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Night blindness (368.6)\\" + }, + { + "displayName": "(368.62) Acquired night blindness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Night blindness (368.6)\\(368.62) Acquired night blindness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Night blindness (368.6)\\" + }, + { + "displayName": "(368.63) Abnormal dark adaptation curve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Night blindness (368.6)\\(368.63) Abnormal dark adaptation curve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Night blindness (368.6)\\" + }, + { + "displayName": "(368.69) Other night blindness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Night blindness (368.6)\\(368.69) Other night blindness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Night blindness (368.6)\\" + }, + { + "displayName": "Other disorders of binocular vision (368.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Other disorders of binocular vision (368.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\" + }, + { + "displayName": "(368.30) Binocular vision disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Other disorders of binocular vision (368.3)\\(368.30) Binocular vision disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Other disorders of binocular vision (368.3)\\" + }, + { + "displayName": "(368.31) Suppression of binocular vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Other disorders of binocular vision (368.3)\\(368.31) Suppression of binocular vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Other disorders of binocular vision (368.3)\\" + }, + { + "displayName": "(368.32) Simultaneous visual perception without fusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Other disorders of binocular vision (368.3)\\(368.32) Simultaneous visual perception without fusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Other disorders of binocular vision (368.3)\\" + }, + { + "displayName": "(368.33) Fusion with defective stereopsis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Other disorders of binocular vision (368.3)\\(368.33) Fusion with defective stereopsis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Other disorders of binocular vision (368.3)\\" + }, + { + "displayName": "(368.34) Abnormal retinal correspondence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Other disorders of binocular vision (368.3)\\(368.34) Abnormal retinal correspondence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Other disorders of binocular vision (368.3)\\" + }, + { + "displayName": "Subjective visual disturbances (368.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\" + }, + { + "displayName": "(368.10) Subjective visual disturbance, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\(368.10) Subjective visual disturbance, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Subjective visual disturbances (368.1)\\\\(368.10) Subjective visual disturbance, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\" + }, + { + "displayName": "(368.11) Sudden visual loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\(368.11) Sudden visual loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Subjective visual disturbances (368.1)\\\\(368.11) Sudden visual loss\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\" + }, + { + "displayName": "(368.12) Transient visual loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\(368.12) Transient visual loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\" + }, + { + "displayName": "(368.13) Visual discomfort", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\(368.13) Visual discomfort\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Subjective visual disturbances (368.1)\\\\(368.13) Visual discomfort\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\" + }, + { + "displayName": "(368.14) Visual distortions of shape and size", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\(368.14) Visual distortions of shape and size\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Subjective visual disturbances (368.1)\\\\(368.14) Visual distortions of shape and size\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\" + }, + { + "displayName": "(368.15) Other visual distortions and entoptic phenomena", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\(368.15) Other visual distortions and entoptic phenomena\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\" + }, + { + "displayName": "(368.16) Psychophysical visual disturbances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\(368.16) Psychophysical visual disturbances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Subjective visual disturbances (368.1)\\\\(368.16) Psychophysical visual disturbances\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Subjective visual disturbances (368.1)\\" + }, + { + "displayName": "Visual field defects (368.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Visual field defects (368.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\" + }, + { + "displayName": "(368.40) Visual field defect, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\(368.40) Visual field defect, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Visual field defects (368.4)\\\\(368.40) Visual field defect, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\" + }, + { + "displayName": "(368.41) Scotoma involving central area", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\(368.41) Scotoma involving central area\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\" + }, + { + "displayName": "(368.42) Scotoma of blind spot area", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\(368.42) Scotoma of blind spot area\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Visual field defects (368.4)\\\\(368.42) Scotoma of blind spot area\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\" + }, + { + "displayName": "(368.43) Sector or arcuate visual field defects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\(368.43) Sector or arcuate visual field defects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\" + }, + { + "displayName": "(368.44) Other localized visual field defect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\(368.44) Other localized visual field defect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Visual field defects (368.4)\\\\(368.44) Other localized visual field defect\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\" + }, + { + "displayName": "(368.45) Generalized visual field contraction or constriction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\(368.45) Generalized visual field contraction or constriction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Visual field defects (368.4)\\\\(368.45) Generalized visual field contraction or constriction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\" + }, + { + "displayName": "(368.46) Homonymous bilateral field defects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\(368.46) Homonymous bilateral field defects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\" + }, + { + "displayName": "(368.47) Heteronymous bilateral field defects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\(368.47) Heteronymous bilateral field defects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the eye and adnexa (360-379.99)\\\\Visual disturbances (368)\\\\Visual field defects (368.4)\\\\(368.47) Heteronymous bilateral field defects\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the eye and adnexa (360-379.99)\\Visual disturbances (368)\\Visual field defects (368.4)\\" + }, + { + "displayName": "Disorders of the peripheral nervous system (350-359.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\" + }, + { + "displayName": "Disorders of other cranial nerves (352)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\" + }, + { + "displayName": "(352.0) Disorders of olfactory (1st) nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\(352.0) Disorders of olfactory (1st) nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Disorders of other cranial nerves (352)\\\\(352.0) Disorders of olfactory (1st) nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\" + }, + { + "displayName": "(352.1) Glossopharyngeal neuralgia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\(352.1) Glossopharyngeal neuralgia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Disorders of other cranial nerves (352)\\\\(352.1) Glossopharyngeal neuralgia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\" + }, + { + "displayName": "(352.2) Other disorders of glossopharyngeal [9th] nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\(352.2) Other disorders of glossopharyngeal [9th] nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Disorders of other cranial nerves (352)\\\\(352.2) Other disorders of glossopharyngeal [9th] nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\" + }, + { + "displayName": "(352.3) Disorders of pneumogastric [10th] nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\(352.3) Disorders of pneumogastric [10th] nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Disorders of other cranial nerves (352)\\\\(352.3) Disorders of pneumogastric [10th] nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\" + }, + { + "displayName": "(352.4) Disorders of accessory [11th] nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\(352.4) Disorders of accessory [11th] nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\" + }, + { + "displayName": "(352.5) Disorders of hypoglossal [12th] nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\(352.5) Disorders of hypoglossal [12th] nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\" + }, + { + "displayName": "(352.6) Multiple cranial nerve palsies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\(352.6) Multiple cranial nerve palsies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\" + }, + { + "displayName": "(352.9) Unspecified disorder of cranial nerves", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\(352.9) Unspecified disorder of cranial nerves\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Disorders of other cranial nerves (352)\\" + }, + { + "displayName": "Facial nerve disorders (351)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Facial nerve disorders (351)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\" + }, + { + "displayName": "(351.0) Bell's palsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Facial nerve disorders (351)\\(351.0) Bell's palsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Facial nerve disorders (351)\\\\(351.0) Bell's palsy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Facial nerve disorders (351)\\" + }, + { + "displayName": "(351.1) Geniculate ganglionitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Facial nerve disorders (351)\\(351.1) Geniculate ganglionitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Facial nerve disorders (351)\\\\(351.1) Geniculate ganglionitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Facial nerve disorders (351)\\" + }, + { + "displayName": "(351.8) Other facial nerve disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Facial nerve disorders (351)\\(351.8) Other facial nerve disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Facial nerve disorders (351)\\" + }, + { + "displayName": "(351.9) Facial nerve disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Facial nerve disorders (351)\\(351.9) Facial nerve disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Facial nerve disorders (351)\\" + }, + { + "displayName": "Hereditary and idiopathic peripheral neuropathy (356)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Hereditary and idiopathic peripheral neuropathy (356)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\" + }, + { + "displayName": "(356.0) Hereditary peripheral neuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\(356.0) Hereditary peripheral neuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\" + }, + { + "displayName": "(356.1) Peroneal muscular atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\(356.1) Peroneal muscular atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Hereditary and idiopathic peripheral neuropathy (356)\\\\(356.1) Peroneal muscular atrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\" + }, + { + "displayName": "(356.2) Hereditary sensory neuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\(356.2) Hereditary sensory neuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\" + }, + { + "displayName": "(356.3) Refsum's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\(356.3) Refsum's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Hereditary and idiopathic peripheral neuropathy (356)\\\\(356.3) Refsum's disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\" + }, + { + "displayName": "(356.4) Idiopathic progressive polyneuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\(356.4) Idiopathic progressive polyneuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\" + }, + { + "displayName": "(356.8) Other specified idiopathic peripheral neuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\(356.8) Other specified idiopathic peripheral neuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Hereditary and idiopathic peripheral neuropathy (356)\\\\(356.8) Other specified idiopathic peripheral neuropathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\" + }, + { + "displayName": "(356.9) Unspecified hereditary and idiopathic peripheral neuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\(356.9) Unspecified hereditary and idiopathic peripheral neuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Hereditary and idiopathic peripheral neuropathy (356)\\\\(356.9) Unspecified hereditary and idiopathic peripheral neuropathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Hereditary and idiopathic peripheral neuropathy (356)\\" + }, + { + "displayName": "Inflammatory and toxic neuropathy (357)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\" + }, + { + "displayName": "(357.0) Acute infective polyneuritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\(357.0) Acute infective polyneuritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Inflammatory and toxic neuropathy (357)\\\\(357.0) Acute infective polyneuritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\" + }, + { + "displayName": "(357.1) Polyneuropathy in collagen vascular disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\(357.1) Polyneuropathy in collagen vascular disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Inflammatory and toxic neuropathy (357)\\\\(357.1) Polyneuropathy in collagen vascular disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\" + }, + { + "displayName": "(357.2) Polyneuropathy in diabetes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\(357.2) Polyneuropathy in diabetes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\" + }, + { + "displayName": "(357.3) Polyneuropathy in malignant disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\(357.3) Polyneuropathy in malignant disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Inflammatory and toxic neuropathy (357)\\\\(357.3) Polyneuropathy in malignant disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\" + }, + { + "displayName": "(357.4) Polyneuropathy in other diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\(357.4) Polyneuropathy in other diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Inflammatory and toxic neuropathy (357)\\\\(357.4) Polyneuropathy in other diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\" + }, + { + "displayName": "(357.5) Alcoholic polyneuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\(357.5) Alcoholic polyneuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\" + }, + { + "displayName": "(357.6) Polyneuropathy due to drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\(357.6) Polyneuropathy due to drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\" + }, + { + "displayName": "(357.7) Polyneuropathy due to other toxic agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\(357.7) Polyneuropathy due to other toxic agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Inflammatory and toxic neuropathy (357)\\\\(357.7) Polyneuropathy due to other toxic agents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\" + }, + { + "displayName": "(357.9) Unspecified inflammatory and toxic neuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\(357.9) Unspecified inflammatory and toxic neuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\" + }, + { + "displayName": "Other inflammatory and toxic neuropathies (357.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\Other inflammatory and toxic neuropathies (357.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Inflammatory and toxic neuropathy (357)\\\\Other inflammatory and toxic neuropathies (357.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\" + }, + { + "displayName": "(357.81) Chronic inflammatory demyelinating polyneuritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\Other inflammatory and toxic neuropathies (357.8)\\(357.81) Chronic inflammatory demyelinating polyneuritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\Other inflammatory and toxic neuropathies (357.8)\\" + }, + { + "displayName": "(357.82) Critical illness polyneuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\Other inflammatory and toxic neuropathies (357.8)\\(357.82) Critical illness polyneuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\Other inflammatory and toxic neuropathies (357.8)\\" + }, + { + "displayName": "(357.89) Other inflammatory and toxic neuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\Other inflammatory and toxic neuropathies (357.8)\\(357.89) Other inflammatory and toxic neuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Inflammatory and toxic neuropathy (357)\\Other inflammatory and toxic neuropathies (357.8)\\" + }, + { + "displayName": "Mononeuritis of lower limb (355)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\" + }, + { + "displayName": "(355.0) Lesion of sciatic nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\(355.0) Lesion of sciatic nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\" + }, + { + "displayName": "(355.1) Meralgia paresthetica", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\(355.1) Meralgia paresthetica\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Mononeuritis of lower limb (355)\\\\(355.1) Meralgia paresthetica\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\" + }, + { + "displayName": "(355.2) Other lesion of femoral nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\(355.2) Other lesion of femoral nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Mononeuritis of lower limb (355)\\\\(355.2) Other lesion of femoral nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\" + }, + { + "displayName": "(355.3) Lesion of lateral popliteal nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\(355.3) Lesion of lateral popliteal nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\" + }, + { + "displayName": "(355.4) Lesion of medial popliteal nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\(355.4) Lesion of medial popliteal nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Mononeuritis of lower limb (355)\\\\(355.4) Lesion of medial popliteal nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\" + }, + { + "displayName": "(355.5) Tarsal tunnel syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\(355.5) Tarsal tunnel syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Mononeuritis of lower limb (355)\\\\(355.5) Tarsal tunnel syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\" + }, + { + "displayName": "(355.6) Lesion of plantar nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\(355.6) Lesion of plantar nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\" + }, + { + "displayName": "(355.8) Mononeuritis of lower limb, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\(355.8) Mononeuritis of lower limb, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\" + }, + { + "displayName": "(355.9) Mononeuritis of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\(355.9) Mononeuritis of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\" + }, + { + "displayName": "Other mononeuritis of lower limb (355.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\Other mononeuritis of lower limb (355.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\" + }, + { + "displayName": "(355.71) Causalgia of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\Other mononeuritis of lower limb (355.7)\\(355.71) Causalgia of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\Other mononeuritis of lower limb (355.7)\\" + }, + { + "displayName": "(355.79) Other mononeuritis of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\Other mononeuritis of lower limb (355.7)\\(355.79) Other mononeuritis of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of lower limb (355)\\Other mononeuritis of lower limb (355.7)\\" + }, + { + "displayName": "Mononeuritis of upper limb and mononeuritis multiplex (354)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\" + }, + { + "displayName": "(354.0) Carpal tunnel syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\(354.0) Carpal tunnel syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\\\(354.0) Carpal tunnel syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\" + }, + { + "displayName": "(354.1) Other lesion of median nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\(354.1) Other lesion of median nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\" + }, + { + "displayName": "(354.2) Lesion of ulnar nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\(354.2) Lesion of ulnar nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\\\(354.2) Lesion of ulnar nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\" + }, + { + "displayName": "(354.3) Lesion of radial nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\(354.3) Lesion of radial nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\\\(354.3) Lesion of radial nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\" + }, + { + "displayName": "(354.4) Causalgia of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\(354.4) Causalgia of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\\\(354.4) Causalgia of upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\" + }, + { + "displayName": "(354.5) Mononeuritis multiplex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\(354.5) Mononeuritis multiplex\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\" + }, + { + "displayName": "(354.8) Other mononeuritis of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\(354.8) Other mononeuritis of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\\\(354.8) Other mononeuritis of upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\" + }, + { + "displayName": "(354.9) Mononeuritis of upper limb, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\(354.9) Mononeuritis of upper limb, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\\\(354.9) Mononeuritis of upper limb, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Mononeuritis of upper limb and mononeuritis multiplex (354)\\" + }, + { + "displayName": "Muscular dystrophies and other myopathies (359)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\" + }, + { + "displayName": "(359.0) Congenital hereditary muscular dystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\(359.0) Congenital hereditary muscular dystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\" + }, + { + "displayName": "(359.1) Hereditary progressive muscular dystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\(359.1) Hereditary progressive muscular dystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\(359.1) Hereditary progressive muscular dystrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\" + }, + { + "displayName": "(359.3) Periodic paralysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\(359.3) Periodic paralysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\(359.3) Periodic paralysis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\" + }, + { + "displayName": "(359.4) Toxic myopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\(359.4) Toxic myopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\" + }, + { + "displayName": "(359.5) Myopathy in endocrine diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\(359.5) Myopathy in endocrine diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\(359.5) Myopathy in endocrine diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\" + }, + { + "displayName": "(359.6) Symptomatic inflammatory myopathy in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\(359.6) Symptomatic inflammatory myopathy in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\(359.6) Symptomatic inflammatory myopathy in diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\" + }, + { + "displayName": "(359.9) Myopathy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\(359.9) Myopathy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\(359.9) Myopathy, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\" + }, + { + "displayName": "Inflammatory and immune myopathies, NEC (359.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Inflammatory and immune myopathies, NEC (359.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\" + }, + { + "displayName": "(359.71) Inclusion body myositis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Inflammatory and immune myopathies, NEC (359.7)\\(359.71) Inclusion body myositis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\Inflammatory and immune myopathies, NEC (359.7)\\\\(359.71) Inclusion body myositis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Inflammatory and immune myopathies, NEC (359.7)\\" + }, + { + "displayName": "(359.79) Other inflammatory and immune myopathies, NEC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Inflammatory and immune myopathies, NEC (359.7)\\(359.79) Other inflammatory and immune myopathies, NEC\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\Inflammatory and immune myopathies, NEC (359.7)\\\\(359.79) Other inflammatory and immune myopathies, NEC\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Inflammatory and immune myopathies, NEC (359.7)\\" + }, + { + "displayName": "Myotonic disorders (359.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Myotonic disorders (359.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\Myotonic disorders (359.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\" + }, + { + "displayName": "(359.21) Myotonic muscular dystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Myotonic disorders (359.2)\\(359.21) Myotonic muscular dystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\Myotonic disorders (359.2)\\\\(359.21) Myotonic muscular dystrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Myotonic disorders (359.2)\\" + }, + { + "displayName": "(359.22) Myotonia congenita", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Myotonic disorders (359.2)\\(359.22) Myotonia congenita\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\Myotonic disorders (359.2)\\\\(359.22) Myotonia congenita\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Myotonic disorders (359.2)\\" + }, + { + "displayName": "(359.23) Myotonic chondrodystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Myotonic disorders (359.2)\\(359.23) Myotonic chondrodystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Myotonic disorders (359.2)\\" + }, + { + "displayName": "(359.24) Drug- induced myotonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Myotonic disorders (359.2)\\(359.24) Drug- induced myotonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Myotonic disorders (359.2)\\" + }, + { + "displayName": "(359.29) Other specified myotonic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Myotonic disorders (359.2)\\(359.29) Other specified myotonic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Myotonic disorders (359.2)\\" + }, + { + "displayName": "Other myopathies (359.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Other myopathies (359.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\" + }, + { + "displayName": "(359.81) Critical illness myopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Other myopathies (359.8)\\(359.81) Critical illness myopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Other myopathies (359.8)\\" + }, + { + "displayName": "(359.89) Other myopathies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Other myopathies (359.8)\\(359.89) Other myopathies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Muscular dystrophies and other myopathies (359)\\\\Other myopathies (359.8)\\\\(359.89) Other myopathies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Muscular dystrophies and other myopathies (359)\\Other myopathies (359.8)\\" + }, + { + "displayName": "Myoneural disorders (358)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Myoneural disorders (358)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\" + }, + { + "displayName": "(358.1) Myasthenic syndromes in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\(358.1) Myasthenic syndromes in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\" + }, + { + "displayName": "(358.2) Toxic myoneural disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\(358.2) Toxic myoneural disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Myoneural disorders (358)\\\\(358.2) Toxic myoneural disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\" + }, + { + "displayName": "(358.8) Other specified myoneural disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\(358.8) Other specified myoneural disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Myoneural disorders (358)\\\\(358.8) Other specified myoneural disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\" + }, + { + "displayName": "(358.9) Myoneural disorders, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\(358.9) Myoneural disorders, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\" + }, + { + "displayName": "Myasthenia gravis (358.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\Myasthenia gravis (358.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Myoneural disorders (358)\\\\Myasthenia gravis (358.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\" + }, + { + "displayName": "(358.00) Myasthenia gravis without (acute) exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\Myasthenia gravis (358.0)\\(358.00) Myasthenia gravis without (acute) exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Myoneural disorders (358)\\\\Myasthenia gravis (358.0)\\\\(358.00) Myasthenia gravis without (acute) exacerbation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\Myasthenia gravis (358.0)\\" + }, + { + "displayName": "(358.01) Myasthenia gravis with (acute) exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\Myasthenia gravis (358.0)\\(358.01) Myasthenia gravis with (acute) exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Myoneural disorders (358)\\\\Myasthenia gravis (358.0)\\\\(358.01) Myasthenia gravis with (acute) exacerbation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Myoneural disorders (358)\\Myasthenia gravis (358.0)\\" + }, + { + "displayName": "Nerve root and plexus disorders (353)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\" + }, + { + "displayName": "(353.0) Brachial plexus lesions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\(353.0) Brachial plexus lesions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Nerve root and plexus disorders (353)\\\\(353.0) Brachial plexus lesions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\" + }, + { + "displayName": "(353.1) Lumbosacral plexus lesions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\(353.1) Lumbosacral plexus lesions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Nerve root and plexus disorders (353)\\\\(353.1) Lumbosacral plexus lesions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\" + }, + { + "displayName": "(353.2) Cervical root lesions, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\(353.2) Cervical root lesions, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\" + }, + { + "displayName": "(353.3) Thoracic root lesions, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\(353.3) Thoracic root lesions, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Nerve root and plexus disorders (353)\\\\(353.3) Thoracic root lesions, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\" + }, + { + "displayName": "(353.4) Lumbosacral root lesions, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\(353.4) Lumbosacral root lesions, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Nerve root and plexus disorders (353)\\\\(353.4) Lumbosacral root lesions, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\" + }, + { + "displayName": "(353.5) Neuralgic amyotrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\(353.5) Neuralgic amyotrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\" + }, + { + "displayName": "(353.6) Phantom limb (syndrome)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\(353.6) Phantom limb (syndrome)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Nerve root and plexus disorders (353)\\\\(353.6) Phantom limb (syndrome)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\" + }, + { + "displayName": "(353.8) Other nerve root and plexus disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\(353.8) Other nerve root and plexus disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Nerve root and plexus disorders (353)\\\\(353.8) Other nerve root and plexus disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\" + }, + { + "displayName": "(353.9) Unspecified nerve root and plexus disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\(353.9) Unspecified nerve root and plexus disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Nerve root and plexus disorders (353)\\" + }, + { + "displayName": "Trigeminal nerve disorders (350)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Trigeminal nerve disorders (350)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Trigeminal nerve disorders (350)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\" + }, + { + "displayName": "(350.1) Trigeminal neuralgia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Trigeminal nerve disorders (350)\\(350.1) Trigeminal neuralgia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Trigeminal nerve disorders (350)\\\\(350.1) Trigeminal neuralgia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Trigeminal nerve disorders (350)\\" + }, + { + "displayName": "(350.2) Atypical face pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Trigeminal nerve disorders (350)\\(350.2) Atypical face pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Trigeminal nerve disorders (350)\\" + }, + { + "displayName": "(350.8) Other specified trigeminal nerve disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Trigeminal nerve disorders (350)\\(350.8) Other specified trigeminal nerve disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Trigeminal nerve disorders (350)\\\\(350.8) Other specified trigeminal nerve disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Trigeminal nerve disorders (350)\\" + }, + { + "displayName": "(350.9) Trigeminal nerve disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Trigeminal nerve disorders (350)\\(350.9) Trigeminal nerve disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Disorders of the peripheral nervous system (350-359.99)\\\\Trigeminal nerve disorders (350)\\\\(350.9) Trigeminal nerve disorder, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Disorders of the peripheral nervous system (350-359.99)\\Trigeminal nerve disorders (350)\\" + }, + { + "displayName": "Hereditary and degenerative diseases of the central nervous system (330-337.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\" + }, + { + "displayName": "Anterior horn cell disease (335)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Anterior horn cell disease (335)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\" + }, + { + "displayName": "(335.0) Werdnig-Hoffmann disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\(335.0) Werdnig-Hoffmann disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\" + }, + { + "displayName": "(335.8) Other anterior horn cell diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\(335.8) Other anterior horn cell diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\" + }, + { + "displayName": "(335.9) Anterior horn cell disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\(335.9) Anterior horn cell disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\" + }, + { + "displayName": "Motor neuron disease (335.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\" + }, + { + "displayName": "(335.20) Amyotrophic lateral sclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\(335.20) Amyotrophic lateral sclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\" + }, + { + "displayName": "(335.21) Progressive muscular atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\(335.21) Progressive muscular atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\" + }, + { + "displayName": "(335.22) Progressive bulbar palsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\(335.22) Progressive bulbar palsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\" + }, + { + "displayName": "(335.23) Pseudobulbar palsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\(335.23) Pseudobulbar palsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\" + }, + { + "displayName": "(335.24) Primary lateral sclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\(335.24) Primary lateral sclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\" + }, + { + "displayName": "(335.29) Other motor neuron disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\(335.29) Other motor neuron disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Motor neuron disease (335.2)\\" + }, + { + "displayName": "Spinal muscular atrophy (335.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Spinal muscular atrophy (335.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\" + }, + { + "displayName": "(335.10) Spinal muscular atrophy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Spinal muscular atrophy (335.1)\\(335.10) Spinal muscular atrophy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Spinal muscular atrophy (335.1)\\" + }, + { + "displayName": "(335.11) Kugelberg-Welander disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Spinal muscular atrophy (335.1)\\(335.11) Kugelberg-Welander disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Spinal muscular atrophy (335.1)\\" + }, + { + "displayName": "(335.19) Other spinal muscular atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Spinal muscular atrophy (335.1)\\(335.19) Other spinal muscular atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Anterior horn cell disease (335)\\Spinal muscular atrophy (335.1)\\" + }, + { + "displayName": "Cerebral degenerations usually manifest in childhood (330)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Cerebral degenerations usually manifest in childhood (330)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\" + }, + { + "displayName": "(330.0) Leukodystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\(330.0) Leukodystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\" + }, + { + "displayName": "(330.1) Cerebral lipidoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\(330.1) Cerebral lipidoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\" + }, + { + "displayName": "(330.2) Cerebral degeneration in generalized lipidoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\(330.2) Cerebral degeneration in generalized lipidoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\" + }, + { + "displayName": "(330.3) Cerebral degeneration of childhood in other diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\(330.3) Cerebral degeneration of childhood in other diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\" + }, + { + "displayName": "(330.8) Other specified cerebral degenerations in childhood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\(330.8) Other specified cerebral degenerations in childhood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\" + }, + { + "displayName": "(330.9) Unspecified cerebral degeneration in childhood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\(330.9) Unspecified cerebral degeneration in childhood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Cerebral degenerations usually manifest in childhood (330)\\" + }, + { + "displayName": "Disorders of the autonomic nervous system (337)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\" + }, + { + "displayName": "(337.1) Peripheral autonomic neuropathy in disorders classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\(337.1) Peripheral autonomic neuropathy in disorders classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\" + }, + { + "displayName": "(337.3) Autonomic dysreflexia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\(337.3) Autonomic dysreflexia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Disorders of the autonomic nervous system (337)\\\\(337.3) Autonomic dysreflexia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\" + }, + { + "displayName": "(337.9) Unspecified disorder of autonomic nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\(337.9) Unspecified disorder of autonomic nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\" + }, + { + "displayName": "Idiopathic peripheral autonomic neuropathy (337.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Idiopathic peripheral autonomic neuropathy (337.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Disorders of the autonomic nervous system (337)\\\\Idiopathic peripheral autonomic neuropathy (337.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\" + }, + { + "displayName": "(337.00) Idiopathic peripheral autonomic neuropathy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Idiopathic peripheral autonomic neuropathy (337.0)\\(337.00) Idiopathic peripheral autonomic neuropathy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Idiopathic peripheral autonomic neuropathy (337.0)\\" + }, + { + "displayName": "(337.01) Carotid sinus syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Idiopathic peripheral autonomic neuropathy (337.0)\\(337.01) Carotid sinus syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Idiopathic peripheral autonomic neuropathy (337.0)\\" + }, + { + "displayName": "(337.09) Other idiopathic peripheral autonomic neuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Idiopathic peripheral autonomic neuropathy (337.0)\\(337.09) Other idiopathic peripheral autonomic neuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Idiopathic peripheral autonomic neuropathy (337.0)\\" + }, + { + "displayName": "Reflex sympathetic dystrophy (337.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Reflex sympathetic dystrophy (337.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\" + }, + { + "displayName": "(337.20) Reflex sympathetic dystrophy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Reflex sympathetic dystrophy (337.2)\\(337.20) Reflex sympathetic dystrophy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Reflex sympathetic dystrophy (337.2)\\" + }, + { + "displayName": "(337.21) Reflex sympathetic dystrophy of the upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Reflex sympathetic dystrophy (337.2)\\(337.21) Reflex sympathetic dystrophy of the upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Reflex sympathetic dystrophy (337.2)\\" + }, + { + "displayName": "(337.22) Reflex sympathetic dystrophy of the lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Reflex sympathetic dystrophy (337.2)\\(337.22) Reflex sympathetic dystrophy of the lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Reflex sympathetic dystrophy (337.2)\\" + }, + { + "displayName": "(337.29) Reflex sympathetic dystrophy of other specified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Reflex sympathetic dystrophy (337.2)\\(337.29) Reflex sympathetic dystrophy of other specified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Disorders of the autonomic nervous system (337)\\Reflex sympathetic dystrophy (337.2)\\" + }, + { + "displayName": "Other cerebral degenerations (331)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\" + }, + { + "displayName": "(331.0) Alzheimer's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\(331.0) Alzheimer's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\" + }, + { + "displayName": "(331.2) Senile degeneration of brain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\(331.2) Senile degeneration of brain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\" + }, + { + "displayName": "(331.3) Communicating hydrocephalus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\(331.3) Communicating hydrocephalus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\" + }, + { + "displayName": "(331.4) Obstructive hydrocephalus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\(331.4) Obstructive hydrocephalus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\" + }, + { + "displayName": "(331.5) Idiopathic normal pressure hydrocephalus (INPH)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\(331.5) Idiopathic normal pressure hydrocephalus (INPH)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\" + }, + { + "displayName": "(331.7) Cerebral degeneration in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\(331.7) Cerebral degeneration in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\" + }, + { + "displayName": "(331.9) Cerebral degeneration, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\(331.9) Cerebral degeneration, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\" + }, + { + "displayName": "Frontotemporal dementia (331.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Frontotemporal dementia (331.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\" + }, + { + "displayName": "(331.11) Pick's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Frontotemporal dementia (331.1)\\(331.11) Pick's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other cerebral degenerations (331)\\\\Frontotemporal dementia (331.1)\\\\(331.11) Pick's disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Frontotemporal dementia (331.1)\\" + }, + { + "displayName": "(331.19) Other frontotemporal dementia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Frontotemporal dementia (331.1)\\(331.19) Other frontotemporal dementia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Frontotemporal dementia (331.1)\\" + }, + { + "displayName": "Other cerebral degeneration (331.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Other cerebral degeneration (331.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other cerebral degenerations (331)\\\\Other cerebral degeneration (331.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\" + }, + { + "displayName": "(331.81) Reye's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Other cerebral degeneration (331.8)\\(331.81) Reye's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other cerebral degenerations (331)\\\\Other cerebral degeneration (331.8)\\\\(331.81) Reye's syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Other cerebral degeneration (331.8)\\" + }, + { + "displayName": "(331.82) Dementia with lewy bodies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Other cerebral degeneration (331.8)\\(331.82) Dementia with lewy bodies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Other cerebral degeneration (331.8)\\" + }, + { + "displayName": "(331.83) Mild cognitive impairment, so stated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Other cerebral degeneration (331.8)\\(331.83) Mild cognitive impairment, so stated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other cerebral degenerations (331)\\\\Other cerebral degeneration (331.8)\\\\(331.83) Mild cognitive impairment, so stated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Other cerebral degeneration (331.8)\\" + }, + { + "displayName": "(331.89) Other cerebral degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Other cerebral degeneration (331.8)\\(331.89) Other cerebral degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other cerebral degenerations (331)\\Other cerebral degeneration (331.8)\\" + }, + { + "displayName": "Other diseases of spinal cord (336)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other diseases of spinal cord (336)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\" + }, + { + "displayName": "(336.0) Syringomyelia and syringobulbia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\(336.0) Syringomyelia and syringobulbia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\" + }, + { + "displayName": "(336.1) Vascular myelopathies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\(336.1) Vascular myelopathies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other diseases of spinal cord (336)\\\\(336.1) Vascular myelopathies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\" + }, + { + "displayName": "(336.2) Subacute combined degeneration of spinal cord in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\(336.2) Subacute combined degeneration of spinal cord in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other diseases of spinal cord (336)\\\\(336.2) Subacute combined degeneration of spinal cord in diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\" + }, + { + "displayName": "(336.3) Myelopathy in other diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\(336.3) Myelopathy in other diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\" + }, + { + "displayName": "(336.8) Other myelopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\(336.8) Other myelopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other diseases of spinal cord (336)\\\\(336.8) Other myelopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\" + }, + { + "displayName": "(336.9) Unspecified disease of spinal cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\(336.9) Unspecified disease of spinal cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other diseases of spinal cord (336)\\" + }, + { + "displayName": "Other extrapyramidal disease and abnormal movement disorders (333)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\" + }, + { + "displayName": "(333.0) Other degenerative diseases of the basal ganglia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\(333.0) Other degenerative diseases of the basal ganglia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\(333.0) Other degenerative diseases of the basal ganglia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\" + }, + { + "displayName": "(333.1) Essential and other specified forms of tremor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\(333.1) Essential and other specified forms of tremor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\(333.1) Essential and other specified forms of tremor\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\" + }, + { + "displayName": "(333.2) Myoclonus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\(333.2) Myoclonus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\" + }, + { + "displayName": "(333.3) Tics of organic origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\(333.3) Tics of organic origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\(333.3) Tics of organic origin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\" + }, + { + "displayName": "(333.4) Huntington's chorea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\(333.4) Huntington's chorea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\(333.4) Huntington's chorea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\" + }, + { + "displayName": "(333.5) Other choreas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\(333.5) Other choreas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\" + }, + { + "displayName": "(333.6) Genetic torsion dystonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\(333.6) Genetic torsion dystonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\(333.6) Genetic torsion dystonia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\" + }, + { + "displayName": "Acquired torsion dystonia (333.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Acquired torsion dystonia (333.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\Acquired torsion dystonia (333.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\" + }, + { + "displayName": "(333.71) Athetoid cerebral palsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Acquired torsion dystonia (333.7)\\(333.71) Athetoid cerebral palsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Acquired torsion dystonia (333.7)\\" + }, + { + "displayName": "(333.72) Acute dystonia due to drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Acquired torsion dystonia (333.7)\\(333.72) Acute dystonia due to drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Acquired torsion dystonia (333.7)\\" + }, + { + "displayName": "(333.79) Other acquired torsion dystonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Acquired torsion dystonia (333.7)\\(333.79) Other acquired torsion dystonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Acquired torsion dystonia (333.7)\\" + }, + { + "displayName": "Fragments of torsion dystonia (333.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\" + }, + { + "displayName": "(333.81) Blepharospasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\(333.81) Blepharospasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\" + }, + { + "displayName": "(333.82) Orofacial dyskinesia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\(333.82) Orofacial dyskinesia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\" + }, + { + "displayName": "(333.83) Spasmodic torticollis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\(333.83) Spasmodic torticollis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\" + }, + { + "displayName": "(333.84) Organic writers' cramp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\(333.84) Organic writers' cramp\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\Fragments of torsion dystonia (333.8)\\\\(333.84) Organic writers' cramp\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\" + }, + { + "displayName": "(333.85) Subacute dyskinesia due to drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\(333.85) Subacute dyskinesia due to drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\" + }, + { + "displayName": "(333.89) Other fragments of torsion dystonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\(333.89) Other fragments of torsion dystonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\Fragments of torsion dystonia (333.8)\\\\(333.89) Other fragments of torsion dystonia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Fragments of torsion dystonia (333.8)\\" + }, + { + "displayName": "Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\" + }, + { + "displayName": "(333.90) Unspecified extrapyramidal disease and abnormal movement disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\(333.90) Unspecified extrapyramidal disease and abnormal movement disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\\\(333.90) Unspecified extrapyramidal disease and abnormal movement disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\" + }, + { + "displayName": "(333.91) Stiff-man syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\(333.91) Stiff-man syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\\\(333.91) Stiff-man syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\" + }, + { + "displayName": "(333.92) Neuroleptic malignant syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\(333.92) Neuroleptic malignant syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\\\(333.92) Neuroleptic malignant syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\" + }, + { + "displayName": "(333.93) Benign shuddering attacks", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\(333.93) Benign shuddering attacks\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\\\(333.93) Benign shuddering attacks\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\" + }, + { + "displayName": "(333.94) Restless legs syndrome (RLS)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\(333.94) Restless legs syndrome (RLS)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\" + }, + { + "displayName": "(333.99) Other extrapyramidal diseases and abnormal movement disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\(333.99) Other extrapyramidal diseases and abnormal movement disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Other extrapyramidal disease and abnormal movement disorders (333)\\\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\\\(333.99) Other extrapyramidal diseases and abnormal movement disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Other extrapyramidal disease and abnormal movement disorders (333)\\Other and unspecified extrapyramidal diseases and abnormal movement disorders (333.9)\\" + }, + { + "displayName": "Parkinson's disease (332)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Parkinson's disease (332)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\" + }, + { + "displayName": "(332.0) Paralysis agitans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Parkinson's disease (332)\\(332.0) Paralysis agitans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Parkinson's disease (332)\\" + }, + { + "displayName": "(332.1) Secondary parkinsonism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Parkinson's disease (332)\\(332.1) Secondary parkinsonism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Parkinson's disease (332)\\" + }, + { + "displayName": "Spinocerebellar disease (334)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\" + }, + { + "displayName": "(334.0) Friedreich's ataxia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\(334.0) Friedreich's ataxia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\" + }, + { + "displayName": "(334.1) Hereditary spastic paraplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\(334.1) Hereditary spastic paraplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\" + }, + { + "displayName": "(334.2) Primary cerebellar degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\(334.2) Primary cerebellar degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\" + }, + { + "displayName": "(334.3) Other cerebellar ataxia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\(334.3) Other cerebellar ataxia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\" + }, + { + "displayName": "(334.4) Cerebellar ataxia in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\(334.4) Cerebellar ataxia in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\" + }, + { + "displayName": "(334.8) Other spinocerebellar diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\(334.8) Other spinocerebellar diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Spinocerebellar disease (334)\\\\(334.8) Other spinocerebellar diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\" + }, + { + "displayName": "(334.9) Spinocerebellar disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\(334.9) Spinocerebellar disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\\\Spinocerebellar disease (334)\\\\(334.9) Spinocerebellar disease, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Hereditary and degenerative diseases of the central nervous system (330-337.99)\\Spinocerebellar disease (334)\\" + }, + { + "displayName": "Inflammatory diseases of the central nervous system (320-326.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\" + }, + { + "displayName": "(325) Phlebitis and thrombophlebitis of intracranial venous sinuses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\(325) Phlebitis and thrombophlebitis of intracranial venous sinuses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\(325) Phlebitis and thrombophlebitis of intracranial venous sinuses\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\" + }, + { + "displayName": "(326) Late effects of intracranial abscess or pyogenic infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\(326) Late effects of intracranial abscess or pyogenic infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\(326) Late effects of intracranial abscess or pyogenic infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\" + }, + { + "displayName": "Bacterial meningitis (320)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Bacterial meningitis (320)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\" + }, + { + "displayName": "(320.0) Hemophilus meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\(320.0) Hemophilus meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Bacterial meningitis (320)\\\\(320.0) Hemophilus meningitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\" + }, + { + "displayName": "(320.1) Pneumococcal meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\(320.1) Pneumococcal meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\" + }, + { + "displayName": "(320.2) Streptococcal meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\(320.2) Streptococcal meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\" + }, + { + "displayName": "(320.3) Staphylococcal meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\(320.3) Staphylococcal meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\" + }, + { + "displayName": "(320.7) Meningitis in other bacterial diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\(320.7) Meningitis in other bacterial diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\" + }, + { + "displayName": "(320.9) Meningitis due to unspecified bacterium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\(320.9) Meningitis due to unspecified bacterium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\" + }, + { + "displayName": "Meningitis due to other specified bacteria (320.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\Meningitis due to other specified bacteria (320.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\" + }, + { + "displayName": "(320.81) Anaerobic meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\Meningitis due to other specified bacteria (320.8)\\(320.81) Anaerobic meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\Meningitis due to other specified bacteria (320.8)\\" + }, + { + "displayName": "(320.82) Meningitis due to gram-negative bacteria, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\Meningitis due to other specified bacteria (320.8)\\(320.82) Meningitis due to gram-negative bacteria, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\Meningitis due to other specified bacteria (320.8)\\" + }, + { + "displayName": "(320.89) Meningitis due to other specified bacteria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\Meningitis due to other specified bacteria (320.8)\\(320.89) Meningitis due to other specified bacteria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Bacterial meningitis (320)\\Meningitis due to other specified bacteria (320.8)\\" + }, + { + "displayName": "Encephalitis, myelitis, and encephalomyelitis (323)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\" + }, + { + "displayName": "(323.1) Encephalitis, myelitis, and encephalomyelitis in rickettsial diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\(323.1) Encephalitis, myelitis, and encephalomyelitis in rickettsial diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\" + }, + { + "displayName": "(323.2) Encephalitis, myelitis, and encephalomyelitis in protozoal diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\(323.2) Encephalitis, myelitis, and encephalomyelitis in protozoal diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\" + }, + { + "displayName": "(323.9) Unspecified causes of encephalitis, myelitis, and encephalomyelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\(323.9) Unspecified causes of encephalitis, myelitis, and encephalomyelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\" + }, + { + "displayName": "Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\" + }, + { + "displayName": "(323.51) Encephalitis and encephalomyelitis following immunization procedures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\\(323.51) Encephalitis and encephalomyelitis following immunization procedures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\\" + }, + { + "displayName": "(323.52) Myelitis following immunization procedures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\\(323.52) Myelitis following immunization procedures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Encephalitis, myelitis, and encephalomyelitis following immunization procedures (323.5)\\" + }, + { + "displayName": "Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\" + }, + { + "displayName": "(323.01) Encephalitis and encephalomyelitis in viral diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\\(323.01) Encephalitis and encephalomyelitis in viral diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\\" + }, + { + "displayName": "(323.02) Myelitis in viral diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\\(323.02) Myelitis in viral diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Encephalitis, myelitis, and encephalomyelitis in viral diseases classified elsewhere (323.0)\\" + }, + { + "displayName": "Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Encephalitis, myelitis, and encephalomyelitis (323)\\\\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\" + }, + { + "displayName": "(323.81) Other causes of encephalitis and encephalomyelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\\(323.81) Other causes of encephalitis and encephalomyelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\\" + }, + { + "displayName": "(323.82) Other causes of myelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\\(323.82) Other causes of myelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Encephalitis, myelitis, and encephalomyelitis (323)\\\\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\\\\(323.82) Other causes of myelitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Other causes of encephalitis, myelitis, and encephalomyelitis (323.8)\\" + }, + { + "displayName": "Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Encephalitis, myelitis, and encephalomyelitis (323)\\\\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\" + }, + { + "displayName": "(323.41) Other encephalitis and encephalomyelitis due to other infections classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\\(323.41) Other encephalitis and encephalomyelitis due to other infections classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Encephalitis, myelitis, and encephalomyelitis (323)\\\\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\\\\(323.41) Other encephalitis and encephalomyelitis due to other infections classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\\" + }, + { + "displayName": "(323.42) Other myelitis due to other infections classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\\(323.42) Other myelitis due to other infections classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Other encephalitis, myelitis, and encephalomyelitis due to other infections classified elsewhere (323.4)\\" + }, + { + "displayName": "Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Encephalitis, myelitis, and encephalomyelitis (323)\\\\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\" + }, + { + "displayName": "(323.61) Infectious acute disseminated encephalomyelitis (ADEM)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\\(323.61) Infectious acute disseminated encephalomyelitis (ADEM)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\\" + }, + { + "displayName": "(323.62) Other postinfectious encephalitis and encephalomyelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\\(323.62) Other postinfectious encephalitis and encephalomyelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Encephalitis, myelitis, and encephalomyelitis (323)\\\\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\\\\(323.62) Other postinfectious encephalitis and encephalomyelitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\\" + }, + { + "displayName": "(323.63) Postinfectious myelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\\(323.63) Postinfectious myelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Postinfectious encephalitis, myelitis, and encephalomyelitis (323.6)\\" + }, + { + "displayName": "Toxic encephalitis, myelitis, and encephalomyelitis (323.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Encephalitis, myelitis, and encephalomyelitis (323)\\\\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\" + }, + { + "displayName": "(323.71) Toxic encephalitis and encephalomyelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\\(323.71) Toxic encephalitis and encephalomyelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Encephalitis, myelitis, and encephalomyelitis (323)\\\\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\\\\(323.71) Toxic encephalitis and encephalomyelitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\\" + }, + { + "displayName": "(323.72) Toxic myelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\\(323.72) Toxic myelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Encephalitis, myelitis, and encephalomyelitis (323)\\Toxic encephalitis, myelitis, and encephalomyelitis (323.7)\\" + }, + { + "displayName": "Intracranial and intraspinal abscess (324)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Intracranial and intraspinal abscess (324)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Intracranial and intraspinal abscess (324)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\" + }, + { + "displayName": "(324.0) Intracranial abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Intracranial and intraspinal abscess (324)\\(324.0) Intracranial abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Intracranial and intraspinal abscess (324)\\" + }, + { + "displayName": "(324.1) Intraspinal abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Intracranial and intraspinal abscess (324)\\(324.1) Intraspinal abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Intracranial and intraspinal abscess (324)\\\\(324.1) Intraspinal abscess\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Intracranial and intraspinal abscess (324)\\" + }, + { + "displayName": "(324.9) Intracranial and intraspinal abscess of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Intracranial and intraspinal abscess (324)\\(324.9) Intracranial and intraspinal abscess of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Intracranial and intraspinal abscess (324)\\" + }, + { + "displayName": "Meningitis due to other organisms (321)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Meningitis due to other organisms (321)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\" + }, + { + "displayName": "(321.0) Cryptococcal meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\(321.0) Cryptococcal meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Meningitis due to other organisms (321)\\\\(321.0) Cryptococcal meningitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\" + }, + { + "displayName": "(321.1) Meningitis in other fungal diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\(321.1) Meningitis in other fungal diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\" + }, + { + "displayName": "(321.2) Meningitis due to viruses not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\(321.2) Meningitis due to viruses not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Meningitis due to other organisms (321)\\\\(321.2) Meningitis due to viruses not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\" + }, + { + "displayName": "(321.3) Meningitis due to trypanosomiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\(321.3) Meningitis due to trypanosomiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\" + }, + { + "displayName": "(321.4) Meningitis in sarcoidosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\(321.4) Meningitis in sarcoidosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Meningitis due to other organisms (321)\\\\(321.4) Meningitis in sarcoidosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\" + }, + { + "displayName": "(321.8) Meningitis due to other nonbacterial organisms classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\(321.8) Meningitis due to other nonbacterial organisms classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis due to other organisms (321)\\" + }, + { + "displayName": "Meningitis of unspecified cause (322)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis of unspecified cause (322)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Meningitis of unspecified cause (322)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\" + }, + { + "displayName": "(322.0) Nonpyogenic meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis of unspecified cause (322)\\(322.0) Nonpyogenic meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Meningitis of unspecified cause (322)\\\\(322.0) Nonpyogenic meningitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis of unspecified cause (322)\\" + }, + { + "displayName": "(322.1) Eosinophilic meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis of unspecified cause (322)\\(322.1) Eosinophilic meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis of unspecified cause (322)\\" + }, + { + "displayName": "(322.2) Chronic meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis of unspecified cause (322)\\(322.2) Chronic meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Meningitis of unspecified cause (322)\\\\(322.2) Chronic meningitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis of unspecified cause (322)\\" + }, + { + "displayName": "(322.9) Meningitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis of unspecified cause (322)\\(322.9) Meningitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Inflammatory diseases of the central nervous system (320-326.99)\\\\Meningitis of unspecified cause (322)\\\\(322.9) Meningitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Inflammatory diseases of the central nervous system (320-326.99)\\Meningitis of unspecified cause (322)\\" + }, + { + "displayName": "Organic sleep disorders (327-327.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\" + }, + { + "displayName": "Organic sleep disorders (327)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\" + }, + { + "displayName": "(327.8) Other organic sleep disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\(327.8) Other organic sleep disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\(327.8) Other organic sleep disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\" + }, + { + "displayName": "Circadian rhythm sleep disorder (327.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Circadian rhythm sleep disorder (327.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\" + }, + { + "displayName": "(327.30) Circadian rhythm sleep disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\(327.30) Circadian rhythm sleep disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\" + }, + { + "displayName": "(327.31) Circadian rhythm sleep disorder, delayed sleep phase type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\(327.31) Circadian rhythm sleep disorder, delayed sleep phase type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Circadian rhythm sleep disorder (327.3)\\\\(327.31) Circadian rhythm sleep disorder, delayed sleep phase type\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\" + }, + { + "displayName": "(327.32) Circadian rhythm sleep disorder, advanced sleep phase type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\(327.32) Circadian rhythm sleep disorder, advanced sleep phase type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\" + }, + { + "displayName": "(327.33) Circadian rhythm sleep disorder, irregular sleep-wake type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\(327.33) Circadian rhythm sleep disorder, irregular sleep-wake type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Circadian rhythm sleep disorder (327.3)\\\\(327.33) Circadian rhythm sleep disorder, irregular sleep-wake type\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\" + }, + { + "displayName": "(327.34) Circadian rhythm sleep disorder, free-running type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\(327.34) Circadian rhythm sleep disorder, free-running type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Circadian rhythm sleep disorder (327.3)\\\\(327.34) Circadian rhythm sleep disorder, free-running type\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\" + }, + { + "displayName": "(327.35) Circadian rhythm sleep disorder, jet lag type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\(327.35) Circadian rhythm sleep disorder, jet lag type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Circadian rhythm sleep disorder (327.3)\\\\(327.35) Circadian rhythm sleep disorder, jet lag type\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\" + }, + { + "displayName": "(327.36) Circadian rhythm sleep disorder, shift work type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\(327.36) Circadian rhythm sleep disorder, shift work type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Circadian rhythm sleep disorder (327.3)\\\\(327.36) Circadian rhythm sleep disorder, shift work type\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\" + }, + { + "displayName": "(327.37) Circadian rhythm sleep disorder in conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\(327.37) Circadian rhythm sleep disorder in conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Circadian rhythm sleep disorder (327.3)\\\\(327.37) Circadian rhythm sleep disorder in conditions classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\" + }, + { + "displayName": "(327.39) Other circadian rhythm sleep disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\(327.39) Other circadian rhythm sleep disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Circadian rhythm sleep disorder (327.3)\\\\(327.39) Other circadian rhythm sleep disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Circadian rhythm sleep disorder (327.3)\\" + }, + { + "displayName": "Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\" + }, + { + "displayName": "(327.10) Organic hypersomnia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\(327.10) Organic hypersomnia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\\\(327.10) Organic hypersomnia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\" + }, + { + "displayName": "(327.11) Idiopathic hypersomnia with long sleep time", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\(327.11) Idiopathic hypersomnia with long sleep time\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\\\(327.11) Idiopathic hypersomnia with long sleep time\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\" + }, + { + "displayName": "(327.12) Idiopathic hypersomnia without long sleep time", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\(327.12) Idiopathic hypersomnia without long sleep time\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\\\(327.12) Idiopathic hypersomnia without long sleep time\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\" + }, + { + "displayName": "(327.13) Recurrent hypersomnia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\(327.13) Recurrent hypersomnia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\\\(327.13) Recurrent hypersomnia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\" + }, + { + "displayName": "(327.14) Hypersomnia due to medical condition classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\(327.14) Hypersomnia due to medical condition classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\\\(327.14) Hypersomnia due to medical condition classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\" + }, + { + "displayName": "(327.15) Hypersomnia due to mental disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\(327.15) Hypersomnia due to mental disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\\\(327.15) Hypersomnia due to mental disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\" + }, + { + "displayName": "(327.19) Other organic hypersomnia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\(327.19) Other organic hypersomnia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\\\(327.19) Other organic hypersomnia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorder of excessive somnolence [Organic hypersomnia] (327.1)\\" + }, + { + "displayName": "Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\" + }, + { + "displayName": "(327.00) Organic insomnia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\(327.00) Organic insomnia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\\\(327.00) Organic insomnia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\" + }, + { + "displayName": "(327.01) Insomnia due to medical condition classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\(327.01) Insomnia due to medical condition classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\\\(327.01) Insomnia due to medical condition classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\" + }, + { + "displayName": "(327.02) Insomnia due to mental disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\(327.02) Insomnia due to mental disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\\\(327.02) Insomnia due to mental disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\" + }, + { + "displayName": "(327.09) Other organic insomnia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\(327.09) Other organic insomnia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\\\(327.09) Other organic insomnia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic disorders of initiating and maintaining sleep [Organic insomnia] (327.0)\\" + }, + { + "displayName": "Organic parasomnia (327.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic parasomnia (327.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\" + }, + { + "displayName": "(327.40) Organic parasomnia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\(327.40) Organic parasomnia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic parasomnia (327.4)\\\\(327.40) Organic parasomnia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\" + }, + { + "displayName": "(327.41) Confusional arousals", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\(327.41) Confusional arousals\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic parasomnia (327.4)\\\\(327.41) Confusional arousals\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\" + }, + { + "displayName": "(327.42) REM sleep behavior disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\(327.42) REM sleep behavior disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic parasomnia (327.4)\\\\(327.42) REM sleep behavior disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\" + }, + { + "displayName": "(327.43) Recurrent isolated sleep paralysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\(327.43) Recurrent isolated sleep paralysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic parasomnia (327.4)\\\\(327.43) Recurrent isolated sleep paralysis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\" + }, + { + "displayName": "(327.44) Parasomnia in conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\(327.44) Parasomnia in conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic parasomnia (327.4)\\\\(327.44) Parasomnia in conditions classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\" + }, + { + "displayName": "(327.49) Other organic parasomnia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\(327.49) Other organic parasomnia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic parasomnia (327.4)\\\\(327.49) Other organic parasomnia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic parasomnia (327.4)\\" + }, + { + "displayName": "Organic sleep apnea (327.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep apnea (327.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\" + }, + { + "displayName": "(327.20) Organic sleep apnea, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\(327.20) Organic sleep apnea, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep apnea (327.2)\\\\(327.20) Organic sleep apnea, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\" + }, + { + "displayName": "(327.21) Primary central sleep apnea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\(327.21) Primary central sleep apnea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep apnea (327.2)\\\\(327.21) Primary central sleep apnea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\" + }, + { + "displayName": "(327.22) High altitude periodic breathing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\(327.22) High altitude periodic breathing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep apnea (327.2)\\\\(327.22) High altitude periodic breathing\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\" + }, + { + "displayName": "(327.23) Obstructive sleep apnea (adult)(pediatric)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\(327.23) Obstructive sleep apnea (adult)(pediatric)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep apnea (327.2)\\\\(327.23) Obstructive sleep apnea (adult)(pediatric)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\" + }, + { + "displayName": "(327.24) Idiopathic sleep related non-obstructive alveolar hypoventilation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\(327.24) Idiopathic sleep related non-obstructive alveolar hypoventilation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep apnea (327.2)\\\\(327.24) Idiopathic sleep related non-obstructive alveolar hypoventilation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\" + }, + { + "displayName": "(327.25) Congenital central alveolar hypoventilation syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\(327.25) Congenital central alveolar hypoventilation syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep apnea (327.2)\\\\(327.25) Congenital central alveolar hypoventilation syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\" + }, + { + "displayName": "(327.26) Sleep related hypoventilation/hypoxemia in conditions classifiable elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\(327.26) Sleep related hypoventilation/hypoxemia in conditions classifiable elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep apnea (327.2)\\\\(327.26) Sleep related hypoventilation/hypoxemia in conditions classifiable elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\" + }, + { + "displayName": "(327.27) Central sleep apnea in conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\(327.27) Central sleep apnea in conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep apnea (327.2)\\\\(327.27) Central sleep apnea in conditions classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\" + }, + { + "displayName": "(327.29) Other organic sleep apnea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\(327.29) Other organic sleep apnea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep apnea (327.2)\\\\(327.29) Other organic sleep apnea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep apnea (327.2)\\" + }, + { + "displayName": "Organic sleep related movement disorders (327.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep related movement disorders (327.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep related movement disorders (327.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\" + }, + { + "displayName": "(327.51) Periodic limb movement disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep related movement disorders (327.5)\\(327.51) Periodic limb movement disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep related movement disorders (327.5)\\\\(327.51) Periodic limb movement disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep related movement disorders (327.5)\\" + }, + { + "displayName": "(327.52) Sleep related leg cramps", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep related movement disorders (327.5)\\(327.52) Sleep related leg cramps\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep related movement disorders (327.5)\\\\(327.52) Sleep related leg cramps\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep related movement disorders (327.5)\\" + }, + { + "displayName": "(327.53) Sleep related bruxism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep related movement disorders (327.5)\\(327.53) Sleep related bruxism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep related movement disorders (327.5)\\\\(327.53) Sleep related bruxism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep related movement disorders (327.5)\\" + }, + { + "displayName": "(327.59) Other organic sleep related movement disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep related movement disorders (327.5)\\(327.59) Other organic sleep related movement disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Organic sleep disorders (327-327.99)\\\\Organic sleep disorders (327)\\\\Organic sleep related movement disorders (327.5)\\\\(327.59) Other organic sleep related movement disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Organic sleep disorders (327-327.99)\\Organic sleep disorders (327)\\Organic sleep related movement disorders (327.5)\\" + }, + { + "displayName": "Other disorders of the central nervous system (340-349.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\" + }, + { + "displayName": "(340) Multiple sclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\(340) Multiple sclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\(340) Multiple sclerosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\" + }, + { + "displayName": "Cataplexy and narcolepsy (347)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Cataplexy and narcolepsy (347)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\" + }, + { + "displayName": "Narcolepsy (347.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\Narcolepsy (347.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Cataplexy and narcolepsy (347)\\\\Narcolepsy (347.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\" + }, + { + "displayName": "(347.00) Narcolepsy, without cataplexy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\Narcolepsy (347.0)\\(347.00) Narcolepsy, without cataplexy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Cataplexy and narcolepsy (347)\\\\Narcolepsy (347.0)\\\\(347.00) Narcolepsy, without cataplexy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\Narcolepsy (347.0)\\" + }, + { + "displayName": "(347.01) Narcolepsy, with cataplexy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\Narcolepsy (347.0)\\(347.01) Narcolepsy, with cataplexy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Cataplexy and narcolepsy (347)\\\\Narcolepsy (347.0)\\\\(347.01) Narcolepsy, with cataplexy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\Narcolepsy (347.0)\\" + }, + { + "displayName": "Narcolepsy in conditions classified elsewhere (347.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\Narcolepsy in conditions classified elsewhere (347.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Cataplexy and narcolepsy (347)\\\\Narcolepsy in conditions classified elsewhere (347.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\" + }, + { + "displayName": "(347.10) Narcolepsy in conditions classified elsewhere, without cataplexy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\Narcolepsy in conditions classified elsewhere (347.1)\\(347.10) Narcolepsy in conditions classified elsewhere, without cataplexy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Cataplexy and narcolepsy (347)\\\\Narcolepsy in conditions classified elsewhere (347.1)\\\\(347.10) Narcolepsy in conditions classified elsewhere, without cataplexy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\Narcolepsy in conditions classified elsewhere (347.1)\\" + }, + { + "displayName": "(347.11) Narcolepsy in conditions classified elsewhere, with cataplexy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\Narcolepsy in conditions classified elsewhere (347.1)\\(347.11) Narcolepsy in conditions classified elsewhere, with cataplexy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Cataplexy and narcolepsy (347)\\\\Narcolepsy in conditions classified elsewhere (347.1)\\\\(347.11) Narcolepsy in conditions classified elsewhere, with cataplexy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Cataplexy and narcolepsy (347)\\Narcolepsy in conditions classified elsewhere (347.1)\\" + }, + { + "displayName": "Epilepsy and recurrent seizures (345)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Epilepsy and recurrent seizures (345)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\" + }, + { + "displayName": "(345.2) Petit mal status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\(345.2) Petit mal status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Epilepsy and recurrent seizures (345)\\\\(345.2) Petit mal status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\" + }, + { + "displayName": "(345.3) Grand mal status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\(345.3) Grand mal status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\" + }, + { + "displayName": "Epilepsia partialis continua (345.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Epilepsia partialis continua (345.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\" + }, + { + "displayName": "(345.70) Epilepsia partialis continua, without mention of intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Epilepsia partialis continua (345.7)\\(345.70) Epilepsia partialis continua, without mention of intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Epilepsia partialis continua (345.7)\\" + }, + { + "displayName": "(345.71) Epilepsia partialis continua, with intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Epilepsia partialis continua (345.7)\\(345.71) Epilepsia partialis continua, with intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Epilepsia partialis continua (345.7)\\" + }, + { + "displayName": "Epilepsy, unspecified (345.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Epilepsy, unspecified (345.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\" + }, + { + "displayName": "(345.90) Epilepsy, unspecified, without mention of intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Epilepsy, unspecified (345.9)\\(345.90) Epilepsy, unspecified, without mention of intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Epilepsy, unspecified (345.9)\\" + }, + { + "displayName": "(345.91) Epilepsy, unspecified, with intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Epilepsy, unspecified (345.9)\\(345.91) Epilepsy, unspecified, with intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Epilepsy, unspecified (345.9)\\" + }, + { + "displayName": "Generalized convulsive epilepsy (345.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Generalized convulsive epilepsy (345.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\" + }, + { + "displayName": "(345.10) Generalized convulsive epilepsy, without mention of intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Generalized convulsive epilepsy (345.1)\\(345.10) Generalized convulsive epilepsy, without mention of intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Generalized convulsive epilepsy (345.1)\\" + }, + { + "displayName": "(345.11) Generalized convulsive epilepsy, with intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Generalized convulsive epilepsy (345.1)\\(345.11) Generalized convulsive epilepsy, with intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Generalized convulsive epilepsy (345.1)\\" + }, + { + "displayName": "Generalized nonconvulsive epilepsy (345.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Generalized nonconvulsive epilepsy (345.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\" + }, + { + "displayName": "(345.00) Generalized nonconvulsive epilepsy, without mention of intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Generalized nonconvulsive epilepsy (345.0)\\(345.00) Generalized nonconvulsive epilepsy, without mention of intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Generalized nonconvulsive epilepsy (345.0)\\" + }, + { + "displayName": "(345.01) Generalized nonconvulsive epilepsy, with intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Generalized nonconvulsive epilepsy (345.0)\\(345.01) Generalized nonconvulsive epilepsy, with intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Generalized nonconvulsive epilepsy (345.0)\\" + }, + { + "displayName": "Infantile spasms (345.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Infantile spasms (345.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\" + }, + { + "displayName": "(345.60) Infantile spasms, without mention of intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Infantile spasms (345.6)\\(345.60) Infantile spasms, without mention of intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Infantile spasms (345.6)\\" + }, + { + "displayName": "(345.61) Infantile spasms, with intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Infantile spasms (345.6)\\(345.61) Infantile spasms, with intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Epilepsy and recurrent seizures (345)\\\\Infantile spasms (345.6)\\\\(345.61) Infantile spasms, with intractable epilepsy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Infantile spasms (345.6)\\" + }, + { + "displayName": "Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Epilepsy and recurrent seizures (345)\\\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\" + }, + { + "displayName": "(345.40) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, without mention of intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\\(345.40) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, without mention of intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Epilepsy and recurrent seizures (345)\\\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\\\\(345.40) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, without mention of intractable epilepsy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\\" + }, + { + "displayName": "(345.41) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, with intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\\(345.41) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, with intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Epilepsy and recurrent seizures (345)\\\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\\\\(345.41) Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures, with intractable epilepsy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with complex partial seizures (345.4)\\" + }, + { + "displayName": "Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Epilepsy and recurrent seizures (345)\\\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\" + }, + { + "displayName": "(345.50) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, without mention of intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\\(345.50) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, without mention of intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Epilepsy and recurrent seizures (345)\\\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\\\\(345.50) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, without mention of intractable epilepsy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\\" + }, + { + "displayName": "(345.51) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, with intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\\(345.51) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, with intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Epilepsy and recurrent seizures (345)\\\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\\\\(345.51) Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures, with intractable epilepsy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Localization-related (focal) (partial) epilepsy and epileptic syndromes with simple partial seizures (345.5)\\" + }, + { + "displayName": "Other forms of epilepsy and recurrent seizures (345.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Other forms of epilepsy and recurrent seizures (345.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\" + }, + { + "displayName": "(345.80) Other forms of epilepsy and recurrent seizures, without mention of intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Other forms of epilepsy and recurrent seizures (345.8)\\(345.80) Other forms of epilepsy and recurrent seizures, without mention of intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Other forms of epilepsy and recurrent seizures (345.8)\\" + }, + { + "displayName": "(345.81) Other forms of epilepsy and recurrent seizures, with intractable epilepsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Other forms of epilepsy and recurrent seizures (345.8)\\(345.81) Other forms of epilepsy and recurrent seizures, with intractable epilepsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Epilepsy and recurrent seizures (345)\\Other forms of epilepsy and recurrent seizures (345.8)\\" + }, + { + "displayName": "Hemiplegia and hemiparesis (342)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\" + }, + { + "displayName": "Flaccid hemiplegia (342.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Flaccid hemiplegia (342.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\" + }, + { + "displayName": "(342.00) Flaccid hemiplegia and hemiparesis affecting unspecified side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Flaccid hemiplegia (342.0)\\(342.00) Flaccid hemiplegia and hemiparesis affecting unspecified side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Flaccid hemiplegia (342.0)\\" + }, + { + "displayName": "(342.01) Flaccid hemiplegia and hemiparesis affecting dominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Flaccid hemiplegia (342.0)\\(342.01) Flaccid hemiplegia and hemiparesis affecting dominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Flaccid hemiplegia (342.0)\\" + }, + { + "displayName": "(342.02) Flaccid hemiplegia and hemiparesis affecting nondominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Flaccid hemiplegia (342.0)\\(342.02) Flaccid hemiplegia and hemiparesis affecting nondominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Flaccid hemiplegia (342.0)\\" + }, + { + "displayName": "Hemiplegia, unspecified (342.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Hemiplegia, unspecified (342.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\" + }, + { + "displayName": "(342.90) Hemiplegia, unspecified, affecting unspecified side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Hemiplegia, unspecified (342.9)\\(342.90) Hemiplegia, unspecified, affecting unspecified side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Hemiplegia, unspecified (342.9)\\" + }, + { + "displayName": "(342.91) Hemiplegia, unspecified, affecting dominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Hemiplegia, unspecified (342.9)\\(342.91) Hemiplegia, unspecified, affecting dominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Hemiplegia, unspecified (342.9)\\" + }, + { + "displayName": "(342.92) Hemiplegia, unspecified, affecting nondominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Hemiplegia, unspecified (342.9)\\(342.92) Hemiplegia, unspecified, affecting nondominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Hemiplegia, unspecified (342.9)\\" + }, + { + "displayName": "Other specified hemiplegia (342.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Other specified hemiplegia (342.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\" + }, + { + "displayName": "(342.80) Other specified hemiplegia and hemiparesis affecting unspecified side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Other specified hemiplegia (342.8)\\(342.80) Other specified hemiplegia and hemiparesis affecting unspecified side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Other specified hemiplegia (342.8)\\" + }, + { + "displayName": "(342.81) Other specified hemiplegia and hemiparesis affecting dominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Other specified hemiplegia (342.8)\\(342.81) Other specified hemiplegia and hemiparesis affecting dominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Other specified hemiplegia (342.8)\\" + }, + { + "displayName": "(342.82) Other specified hemiplegia and hemiparesis affecting nondominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Other specified hemiplegia (342.8)\\(342.82) Other specified hemiplegia and hemiparesis affecting nondominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Hemiplegia and hemiparesis (342)\\\\Other specified hemiplegia (342.8)\\\\(342.82) Other specified hemiplegia and hemiparesis affecting nondominant side\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Other specified hemiplegia (342.8)\\" + }, + { + "displayName": "Spastic hemiplegia (342.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Spastic hemiplegia (342.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Hemiplegia and hemiparesis (342)\\\\Spastic hemiplegia (342.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\" + }, + { + "displayName": "(342.10) Spastic hemiplegia and hemiparesis affecting unspecified side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Spastic hemiplegia (342.1)\\(342.10) Spastic hemiplegia and hemiparesis affecting unspecified side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Hemiplegia and hemiparesis (342)\\\\Spastic hemiplegia (342.1)\\\\(342.10) Spastic hemiplegia and hemiparesis affecting unspecified side\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Spastic hemiplegia (342.1)\\" + }, + { + "displayName": "(342.11) Spastic hemiplegia and hemiparesis affecting dominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Spastic hemiplegia (342.1)\\(342.11) Spastic hemiplegia and hemiparesis affecting dominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Hemiplegia and hemiparesis (342)\\\\Spastic hemiplegia (342.1)\\\\(342.11) Spastic hemiplegia and hemiparesis affecting dominant side\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Spastic hemiplegia (342.1)\\" + }, + { + "displayName": "(342.12) Spastic hemiplegia and hemiparesis affecting nondominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Spastic hemiplegia (342.1)\\(342.12) Spastic hemiplegia and hemiparesis affecting nondominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Hemiplegia and hemiparesis (342)\\\\Spastic hemiplegia (342.1)\\\\(342.12) Spastic hemiplegia and hemiparesis affecting nondominant side\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Hemiplegia and hemiparesis (342)\\Spastic hemiplegia (342.1)\\" + }, + { + "displayName": "Infantile cerebral palsy (343)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Infantile cerebral palsy (343)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\" + }, + { + "displayName": "(343.0) Congenital diplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\(343.0) Congenital diplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\" + }, + { + "displayName": "(343.1) Congenital hemiplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\(343.1) Congenital hemiplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\" + }, + { + "displayName": "(343.2) Congenital quadriplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\(343.2) Congenital quadriplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\" + }, + { + "displayName": "(343.3) Congenital monoplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\(343.3) Congenital monoplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\" + }, + { + "displayName": "(343.4) Infantile hemiplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\(343.4) Infantile hemiplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\" + }, + { + "displayName": "(343.8) Other specified infantile cerebral palsy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\(343.8) Other specified infantile cerebral palsy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\" + }, + { + "displayName": "(343.9) Infantile cerebral palsy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\(343.9) Infantile cerebral palsy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Infantile cerebral palsy (343)\\" + }, + { + "displayName": "Migraine (346)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\" + }, + { + "displayName": "Chronic migraine without aura (346.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Chronic migraine without aura (346.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\" + }, + { + "displayName": "(346.70) Chronic migraine without aura, without mention of intractable migraine without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Chronic migraine without aura (346.7)\\(346.70) Chronic migraine without aura, without mention of intractable migraine without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Chronic migraine without aura (346.7)\\" + }, + { + "displayName": "(346.71) Chronic migraine without aura, with intractable migraine, so stated, without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Chronic migraine without aura (346.7)\\(346.71) Chronic migraine without aura, with intractable migraine, so stated, without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Chronic migraine without aura (346.7)\\" + }, + { + "displayName": "(346.72) Chronic migraine without aura, without mention of intractable migraine with status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Chronic migraine without aura (346.7)\\(346.72) Chronic migraine without aura, without mention of intractable migraine with status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Chronic migraine without aura (346.7)\\" + }, + { + "displayName": "(346.73) Chronic migraine without aura, with intractable migraine, so stated, with status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Chronic migraine without aura (346.7)\\(346.73) Chronic migraine without aura, with intractable migraine, so stated, with status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Chronic migraine without aura (346.7)\\" + }, + { + "displayName": "Hemiplegic migraine (346.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Hemiplegic migraine (346.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\" + }, + { + "displayName": "(346.30) Hemiplegic migraine, without mention of intractable migraine without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Hemiplegic migraine (346.3)\\(346.30) Hemiplegic migraine, without mention of intractable migraine without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Hemiplegic migraine (346.3)\\" + }, + { + "displayName": "Menstrual migraine (346.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Menstrual migraine (346.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\" + }, + { + "displayName": "(346.40) Menstrual migraine, without mention of intractable migraine without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Menstrual migraine (346.4)\\(346.40) Menstrual migraine, without mention of intractable migraine without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Menstrual migraine (346.4)\\" + }, + { + "displayName": "(346.41) Menstrual migraine, with intractable migraine, so stated, without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Menstrual migraine (346.4)\\(346.41) Menstrual migraine, with intractable migraine, so stated, without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Menstrual migraine (346.4)\\" + }, + { + "displayName": "Migraine with aura (346.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine with aura (346.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine with aura (346.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\" + }, + { + "displayName": "(346.00) Migraine with aura, without mention of intractable migraine without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine with aura (346.0)\\(346.00) Migraine with aura, without mention of intractable migraine without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine with aura (346.0)\\\\(346.00) Migraine with aura, without mention of intractable migraine without mention of status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine with aura (346.0)\\" + }, + { + "displayName": "(346.01) Migraine with aura, with intractable migraine, so stated, without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine with aura (346.0)\\(346.01) Migraine with aura, with intractable migraine, so stated, without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine with aura (346.0)\\\\(346.01) Migraine with aura, with intractable migraine, so stated, without mention of status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine with aura (346.0)\\" + }, + { + "displayName": "(346.02) Migraine with aura, without mention of intractable migraine with status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine with aura (346.0)\\(346.02) Migraine with aura, without mention of intractable migraine with status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine with aura (346.0)\\" + }, + { + "displayName": "(346.03) Migraine with aura, with intractable migraine, so stated, with status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine with aura (346.0)\\(346.03) Migraine with aura, with intractable migraine, so stated, with status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine with aura (346.0)\\\\(346.03) Migraine with aura, with intractable migraine, so stated, with status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine with aura (346.0)\\" + }, + { + "displayName": "Migraine without aura (346.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine without aura (346.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine without aura (346.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\" + }, + { + "displayName": "(346.10) Migraine without aura, without mention of intractable migraine without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine without aura (346.1)\\(346.10) Migraine without aura, without mention of intractable migraine without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine without aura (346.1)\\\\(346.10) Migraine without aura, without mention of intractable migraine without mention of status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine without aura (346.1)\\" + }, + { + "displayName": "(346.11) Migraine without aura, with intractable migraine, so stated, without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine without aura (346.1)\\(346.11) Migraine without aura, with intractable migraine, so stated, without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine without aura (346.1)\\\\(346.11) Migraine without aura, with intractable migraine, so stated, without mention of status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine without aura (346.1)\\" + }, + { + "displayName": "(346.12) Migraine without aura, without mention of intractable migraine with status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine without aura (346.1)\\(346.12) Migraine without aura, without mention of intractable migraine with status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine without aura (346.1)\\\\(346.12) Migraine without aura, without mention of intractable migraine with status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine without aura (346.1)\\" + }, + { + "displayName": "(346.13) Migraine without aura, with intractable migraine, so stated, with status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine without aura (346.1)\\(346.13) Migraine without aura, with intractable migraine, so stated, with status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine without aura (346.1)\\\\(346.13) Migraine without aura, with intractable migraine, so stated, with status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine without aura (346.1)\\" + }, + { + "displayName": "Migraine, unspecified (346.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine, unspecified (346.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine, unspecified (346.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\" + }, + { + "displayName": "(346.90) Migraine, unspecified, without mention of intractable migraine without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine, unspecified (346.9)\\(346.90) Migraine, unspecified, without mention of intractable migraine without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine, unspecified (346.9)\\\\(346.90) Migraine, unspecified, without mention of intractable migraine without mention of status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine, unspecified (346.9)\\" + }, + { + "displayName": "(346.91) Migraine, unspecified, with intractable migraine, so stated, without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine, unspecified (346.9)\\(346.91) Migraine, unspecified, with intractable migraine, so stated, without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine, unspecified (346.9)\\\\(346.91) Migraine, unspecified, with intractable migraine, so stated, without mention of status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine, unspecified (346.9)\\" + }, + { + "displayName": "(346.92) Migraine, unspecified, without mention of intractable migraine with status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine, unspecified (346.9)\\(346.92) Migraine, unspecified, without mention of intractable migraine with status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Migraine, unspecified (346.9)\\\\(346.92) Migraine, unspecified, without mention of intractable migraine with status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Migraine, unspecified (346.9)\\" + }, + { + "displayName": "Other forms of migraine (346.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Other forms of migraine (346.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Other forms of migraine (346.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\" + }, + { + "displayName": "(346.80) Other forms of migraine, without mention of intractable migraine without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Other forms of migraine (346.8)\\(346.80) Other forms of migraine, without mention of intractable migraine without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Other forms of migraine (346.8)\\\\(346.80) Other forms of migraine, without mention of intractable migraine without mention of status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Other forms of migraine (346.8)\\" + }, + { + "displayName": "(346.81) Other forms of migraine, with intractable migraine, so stated, without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Other forms of migraine (346.8)\\(346.81) Other forms of migraine, with intractable migraine, so stated, without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Other forms of migraine (346.8)\\\\(346.81) Other forms of migraine, with intractable migraine, so stated, without mention of status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Other forms of migraine (346.8)\\" + }, + { + "displayName": "(346.82) Other forms of migraine, without mention of intractable migraine with status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Other forms of migraine (346.8)\\(346.82) Other forms of migraine, without mention of intractable migraine with status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Other forms of migraine (346.8)\\\\(346.82) Other forms of migraine, without mention of intractable migraine with status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Other forms of migraine (346.8)\\" + }, + { + "displayName": "Persistent migraine aura without cerebral infarction (346.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Persistent migraine aura without cerebral infarction (346.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Persistent migraine aura without cerebral infarction (346.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\" + }, + { + "displayName": "(346.50) Persistent migraine aura without cerebral infarction, without mention of intractable migraine without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Persistent migraine aura without cerebral infarction (346.5)\\(346.50) Persistent migraine aura without cerebral infarction, without mention of intractable migraine without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Persistent migraine aura without cerebral infarction (346.5)\\\\(346.50) Persistent migraine aura without cerebral infarction, without mention of intractable migraine without mention of status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Persistent migraine aura without cerebral infarction (346.5)\\" + }, + { + "displayName": "(346.51) Persistent migraine aura without cerebral infarction, with intractable migraine, so stated, without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Persistent migraine aura without cerebral infarction (346.5)\\(346.51) Persistent migraine aura without cerebral infarction, with intractable migraine, so stated, without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Migraine (346)\\\\Persistent migraine aura without cerebral infarction (346.5)\\\\(346.51) Persistent migraine aura without cerebral infarction, with intractable migraine, so stated, without mention of status migrainosus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Persistent migraine aura without cerebral infarction (346.5)\\" + }, + { + "displayName": "Variants of migraine, not elsewhere classified (346.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Variants of migraine, not elsewhere classified (346.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\" + }, + { + "displayName": "(346.20) Variants of migraine, not elsewhere classified, without mention of intractable migraine without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Variants of migraine, not elsewhere classified (346.2)\\(346.20) Variants of migraine, not elsewhere classified, without mention of intractable migraine without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Variants of migraine, not elsewhere classified (346.2)\\" + }, + { + "displayName": "(346.21) Variants of migraine, not elsewhere classified, with intractable migraine, so stated, without mention of status migrainosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Variants of migraine, not elsewhere classified (346.2)\\(346.21) Variants of migraine, not elsewhere classified, with intractable migraine, so stated, without mention of status migrainosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Migraine (346)\\Variants of migraine, not elsewhere classified (346.2)\\" + }, + { + "displayName": "Other and unspecified disorders of the nervous system (349)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\" + }, + { + "displayName": "(349.0) Reaction to spinal or lumbar puncture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\(349.0) Reaction to spinal or lumbar puncture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\" + }, + { + "displayName": "(349.1) Nervous system complications from surgically implanted device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\(349.1) Nervous system complications from surgically implanted device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\" + }, + { + "displayName": "(349.2) Disorders of meninges, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\(349.2) Disorders of meninges, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other and unspecified disorders of the nervous system (349)\\\\(349.2) Disorders of meninges, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\" + }, + { + "displayName": "(349.9) Unspecified disorders of nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\(349.9) Unspecified disorders of nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other and unspecified disorders of the nervous system (349)\\\\(349.9) Unspecified disorders of nervous system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\" + }, + { + "displayName": "Dural tear (349.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Dural tear (349.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other and unspecified disorders of the nervous system (349)\\\\Dural tear (349.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\" + }, + { + "displayName": "(349.31) Accidental puncture or laceration of dura during a procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Dural tear (349.3)\\(349.31) Accidental puncture or laceration of dura during a procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other and unspecified disorders of the nervous system (349)\\\\Dural tear (349.3)\\\\(349.31) Accidental puncture or laceration of dura during a procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Dural tear (349.3)\\" + }, + { + "displayName": "(349.39) Other dural tear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Dural tear (349.3)\\(349.39) Other dural tear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Dural tear (349.3)\\" + }, + { + "displayName": "Other specified disorders of nervous system (349.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Other specified disorders of nervous system (349.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\" + }, + { + "displayName": "(349.81) Cerebrospinal fluid rhinorrhea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Other specified disorders of nervous system (349.8)\\(349.81) Cerebrospinal fluid rhinorrhea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Other specified disorders of nervous system (349.8)\\" + }, + { + "displayName": "(349.82) Toxic encephalopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Other specified disorders of nervous system (349.8)\\(349.82) Toxic encephalopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Other specified disorders of nervous system (349.8)\\" + }, + { + "displayName": "(349.89) Other specified disorders of nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Other specified disorders of nervous system (349.8)\\(349.89) Other specified disorders of nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other and unspecified disorders of the nervous system (349)\\Other specified disorders of nervous system (349.8)\\" + }, + { + "displayName": "Other conditions of brain (348)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\" + }, + { + "displayName": "(348.0) Cerebral cysts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\(348.0) Cerebral cysts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\" + }, + { + "displayName": "(348.1) Anoxic brain damage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\(348.1) Anoxic brain damage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\" + }, + { + "displayName": "(348.2) Benign intracranial hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\(348.2) Benign intracranial hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other conditions of brain (348)\\\\(348.2) Benign intracranial hypertension\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\" + }, + { + "displayName": "(348.4) Compression of brain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\(348.4) Compression of brain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other conditions of brain (348)\\\\(348.4) Compression of brain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\" + }, + { + "displayName": "(348.5) Cerebral edema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\(348.5) Cerebral edema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other conditions of brain (348)\\\\(348.5) Cerebral edema\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\" + }, + { + "displayName": "(348.9) Unspecified condition of brain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\(348.9) Unspecified condition of brain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\" + }, + { + "displayName": "Encephalopathy, not elsewhere classified (348.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Encephalopathy, not elsewhere classified (348.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other conditions of brain (348)\\\\Encephalopathy, not elsewhere classified (348.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\" + }, + { + "displayName": "(348.30) Encephalopathy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Encephalopathy, not elsewhere classified (348.3)\\(348.30) Encephalopathy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other conditions of brain (348)\\\\Encephalopathy, not elsewhere classified (348.3)\\\\(348.30) Encephalopathy, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Encephalopathy, not elsewhere classified (348.3)\\" + }, + { + "displayName": "(348.31) Metabolic encephalopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Encephalopathy, not elsewhere classified (348.3)\\(348.31) Metabolic encephalopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Encephalopathy, not elsewhere classified (348.3)\\" + }, + { + "displayName": "(348.39) Other encephalopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Encephalopathy, not elsewhere classified (348.3)\\(348.39) Other encephalopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other conditions of brain (348)\\\\Encephalopathy, not elsewhere classified (348.3)\\\\(348.39) Other encephalopathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Encephalopathy, not elsewhere classified (348.3)\\" + }, + { + "displayName": "Other conditions of brain (348.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Other conditions of brain (348.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other conditions of brain (348)\\\\Other conditions of brain (348.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\" + }, + { + "displayName": "(348.81) Temporal sclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Other conditions of brain (348.8)\\(348.81) Temporal sclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Other conditions of brain (348.8)\\" + }, + { + "displayName": "(348.82) Brain death", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Other conditions of brain (348.8)\\(348.82) Brain death\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other conditions of brain (348)\\\\Other conditions of brain (348.8)\\\\(348.82) Brain death\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Other conditions of brain (348.8)\\" + }, + { + "displayName": "(348.89) Other conditions of brain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Other conditions of brain (348.8)\\(348.89) Other conditions of brain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other conditions of brain (348)\\\\Other conditions of brain (348.8)\\\\(348.89) Other conditions of brain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other conditions of brain (348)\\Other conditions of brain (348.8)\\" + }, + { + "displayName": "Other demyelinating diseases of central nervous system (341)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other demyelinating diseases of central nervous system (341)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\" + }, + { + "displayName": "(341.0) Neuromyelitis optica", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\(341.0) Neuromyelitis optica\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other demyelinating diseases of central nervous system (341)\\\\(341.0) Neuromyelitis optica\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\" + }, + { + "displayName": "(341.1) Schilder's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\(341.1) Schilder's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other demyelinating diseases of central nervous system (341)\\\\(341.1) Schilder's disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\" + }, + { + "displayName": "(341.8) Other demyelinating diseases of central nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\(341.8) Other demyelinating diseases of central nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\" + }, + { + "displayName": "(341.9) Demyelinating disease of central nervous system, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\(341.9) Demyelinating disease of central nervous system, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\" + }, + { + "displayName": "Acute (transverse) myelitis (341.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\Acute (transverse) myelitis (341.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\" + }, + { + "displayName": "(341.20) Acute (transverse) myelitis NOS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\Acute (transverse) myelitis (341.2)\\(341.20) Acute (transverse) myelitis NOS\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\Acute (transverse) myelitis (341.2)\\" + }, + { + "displayName": "(341.21) Acute (transverse) myelitis in conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\Acute (transverse) myelitis (341.2)\\(341.21) Acute (transverse) myelitis in conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\Acute (transverse) myelitis (341.2)\\" + }, + { + "displayName": "(341.22) Idiopathic transverse myelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\Acute (transverse) myelitis (341.2)\\(341.22) Idiopathic transverse myelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other demyelinating diseases of central nervous system (341)\\Acute (transverse) myelitis (341.2)\\" + }, + { + "displayName": "Other paralytic syndromes (344)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\" + }, + { + "displayName": "(344.1) Paraplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\(344.1) Paraplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\" + }, + { + "displayName": "(344.2) Diplegia of upper limbs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\(344.2) Diplegia of upper limbs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\" + }, + { + "displayName": "(344.5) Unspecified monoplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\(344.5) Unspecified monoplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\" + }, + { + "displayName": "(344.9) Paralysis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\(344.9) Paralysis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\" + }, + { + "displayName": "Cauda equina syndrome (344.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Cauda equina syndrome (344.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other paralytic syndromes (344)\\\\Cauda equina syndrome (344.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\" + }, + { + "displayName": "(344.60) Cauda equina syndrome without mention of neurogenic bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Cauda equina syndrome (344.6)\\(344.60) Cauda equina syndrome without mention of neurogenic bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other paralytic syndromes (344)\\\\Cauda equina syndrome (344.6)\\\\(344.60) Cauda equina syndrome without mention of neurogenic bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Cauda equina syndrome (344.6)\\" + }, + { + "displayName": "(344.61) Cauda equina syndrome with neurogenic bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Cauda equina syndrome (344.6)\\(344.61) Cauda equina syndrome with neurogenic bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Cauda equina syndrome (344.6)\\" + }, + { + "displayName": "Monoplegia of lower limb (344.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of lower limb (344.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other paralytic syndromes (344)\\\\Monoplegia of lower limb (344.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\" + }, + { + "displayName": "(344.30) Monoplegia of lower limb affecting unspecified side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of lower limb (344.3)\\(344.30) Monoplegia of lower limb affecting unspecified side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other paralytic syndromes (344)\\\\Monoplegia of lower limb (344.3)\\\\(344.30) Monoplegia of lower limb affecting unspecified side\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of lower limb (344.3)\\" + }, + { + "displayName": "(344.31) Monoplegia of lower limb affecting dominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of lower limb (344.3)\\(344.31) Monoplegia of lower limb affecting dominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other paralytic syndromes (344)\\\\Monoplegia of lower limb (344.3)\\\\(344.31) Monoplegia of lower limb affecting dominant side\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of lower limb (344.3)\\" + }, + { + "displayName": "(344.32) Monoplegia of lower limb affecting nondominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of lower limb (344.3)\\(344.32) Monoplegia of lower limb affecting nondominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of lower limb (344.3)\\" + }, + { + "displayName": "Monoplegia of upper limb (344.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of upper limb (344.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\" + }, + { + "displayName": "(344.40) Monoplegia of upper limb affecting unspecified side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of upper limb (344.4)\\(344.40) Monoplegia of upper limb affecting unspecified side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of upper limb (344.4)\\" + }, + { + "displayName": "(344.41) Monoplegia of upper limb affecting dominant side", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of upper limb (344.4)\\(344.41) Monoplegia of upper limb affecting dominant side\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of upper limb (344.4)\\" + }, + { + "displayName": "(344.42) Monoplegia of upper limb affecting nondominant sde", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of upper limb (344.4)\\(344.42) Monoplegia of upper limb affecting nondominant sde\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Monoplegia of upper limb (344.4)\\" + }, + { + "displayName": "Other specified paralytic syndromes (344.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Other specified paralytic syndromes (344.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\" + }, + { + "displayName": "(344.81) Locked-in state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Other specified paralytic syndromes (344.8)\\(344.81) Locked-in state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Other specified paralytic syndromes (344.8)\\" + }, + { + "displayName": "(344.89) Other specified paralytic syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Other specified paralytic syndromes (344.8)\\(344.89) Other specified paralytic syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Other specified paralytic syndromes (344.8)\\" + }, + { + "displayName": "Quadriplegia and quadriparesis (344.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\" + }, + { + "displayName": "(344.00) Quadriplegia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\(344.00) Quadriplegia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\" + }, + { + "displayName": "(344.01) Quadriplegia, C1-C4, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\(344.01) Quadriplegia, C1-C4, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\" + }, + { + "displayName": "(344.02) Quadriplegia, C1-C4, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\(344.02) Quadriplegia, C1-C4, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other paralytic syndromes (344)\\\\Quadriplegia and quadriparesis (344.0)\\\\(344.02) Quadriplegia, C1-C4, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\" + }, + { + "displayName": "(344.03) Quadriplegia, C5-C7, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\(344.03) Quadriplegia, C5-C7, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other paralytic syndromes (344)\\\\Quadriplegia and quadriparesis (344.0)\\\\(344.03) Quadriplegia, C5-C7, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\" + }, + { + "displayName": "(344.04) Quadriplegia, C5-C7, incomplete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\(344.04) Quadriplegia, C5-C7, incomplete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other paralytic syndromes (344)\\\\Quadriplegia and quadriparesis (344.0)\\\\(344.04) Quadriplegia, C5-C7, incomplete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\" + }, + { + "displayName": "(344.09) Other quadriplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\(344.09) Other quadriplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other disorders of the central nervous system (340-349.99)\\\\Other paralytic syndromes (344)\\\\Quadriplegia and quadriparesis (344.0)\\\\(344.09) Other quadriplegia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other disorders of the central nervous system (340-349.99)\\Other paralytic syndromes (344)\\Quadriplegia and quadriparesis (344.0)\\" + }, + { + "displayName": "Other headache syndromes (339-339.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\" + }, + { + "displayName": "Other headache syndromes (339)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other headache syndromes (339-339.99)\\\\Other headache syndromes (339)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\" + }, + { + "displayName": "(339.3) Drug induced headache, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\(339.3) Drug induced headache, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other headache syndromes (339-339.99)\\\\Other headache syndromes (339)\\\\(339.3) Drug induced headache, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\" + }, + { + "displayName": "Cluster headaches and other trigeminal autonomic cephalgias (339.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\" + }, + { + "displayName": "(339.00) Cluster headache syndrome, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\(339.00) Cluster headache syndrome, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\" + }, + { + "displayName": "(339.01) Episodic cluster headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\(339.01) Episodic cluster headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\" + }, + { + "displayName": "(339.02) Chronic cluster headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\(339.02) Chronic cluster headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\" + }, + { + "displayName": "(339.03) Episodic paroxysmal hemicrania", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\(339.03) Episodic paroxysmal hemicrania\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\" + }, + { + "displayName": "(339.04) Chronic paroxysmal hemicrania", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\(339.04) Chronic paroxysmal hemicrania\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\" + }, + { + "displayName": "(339.05) Short lasting unilateral neuralgiform headache with conjunctival injection and tearing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\(339.05) Short lasting unilateral neuralgiform headache with conjunctival injection and tearing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\" + }, + { + "displayName": "(339.09) Other trigeminal autonomic cephalgias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\(339.09) Other trigeminal autonomic cephalgias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Cluster headaches and other trigeminal autonomic cephalgias (339.0)\\" + }, + { + "displayName": "Complicated headache syndromes (339.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Complicated headache syndromes (339.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\" + }, + { + "displayName": "(339.41) Hemicrania continua", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Complicated headache syndromes (339.4)\\(339.41) Hemicrania continua\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Complicated headache syndromes (339.4)\\" + }, + { + "displayName": "(339.42) New daily persistent headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Complicated headache syndromes (339.4)\\(339.42) New daily persistent headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Complicated headache syndromes (339.4)\\" + }, + { + "displayName": "(339.43) Primary thunderclap headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Complicated headache syndromes (339.4)\\(339.43) Primary thunderclap headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Complicated headache syndromes (339.4)\\" + }, + { + "displayName": "(339.44) Other complicated headache syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Complicated headache syndromes (339.4)\\(339.44) Other complicated headache syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Complicated headache syndromes (339.4)\\" + }, + { + "displayName": "Other specified headache syndromes (339.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Other specified headache syndromes (339.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\" + }, + { + "displayName": "(339.81) Hypnic headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Other specified headache syndromes (339.8)\\(339.81) Hypnic headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Other specified headache syndromes (339.8)\\" + }, + { + "displayName": "(339.82) Headache associated with sexual activity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Other specified headache syndromes (339.8)\\(339.82) Headache associated with sexual activity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Other specified headache syndromes (339.8)\\" + }, + { + "displayName": "(339.83) Primary cough headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Other specified headache syndromes (339.8)\\(339.83) Primary cough headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Other specified headache syndromes (339.8)\\" + }, + { + "displayName": "(339.85) Primary stabbing headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Other specified headache syndromes (339.8)\\(339.85) Primary stabbing headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Other specified headache syndromes (339.8)\\" + }, + { + "displayName": "(339.89) Other headache syndromes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Other specified headache syndromes (339.8)\\(339.89) Other headache syndromes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Other specified headache syndromes (339.8)\\" + }, + { + "displayName": "Post-traumatic headache (339.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Post-traumatic headache (339.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\" + }, + { + "displayName": "(339.20) Post-traumatic headache, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Post-traumatic headache (339.2)\\(339.20) Post-traumatic headache, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Post-traumatic headache (339.2)\\" + }, + { + "displayName": "(339.21) Acute post-traumatic headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Post-traumatic headache (339.2)\\(339.21) Acute post-traumatic headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Post-traumatic headache (339.2)\\" + }, + { + "displayName": "(339.22) Chronic post-traumatic headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Post-traumatic headache (339.2)\\(339.22) Chronic post-traumatic headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Post-traumatic headache (339.2)\\" + }, + { + "displayName": "Tension type headache (339.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Tension type headache (339.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\" + }, + { + "displayName": "(339.10) Tension type headache, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Tension type headache (339.1)\\(339.10) Tension type headache, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other headache syndromes (339-339.99)\\\\Other headache syndromes (339)\\\\Tension type headache (339.1)\\\\(339.10) Tension type headache, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Tension type headache (339.1)\\" + }, + { + "displayName": "(339.11) Episodic tension type headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Tension type headache (339.1)\\(339.11) Episodic tension type headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other headache syndromes (339-339.99)\\\\Other headache syndromes (339)\\\\Tension type headache (339.1)\\\\(339.11) Episodic tension type headache\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Tension type headache (339.1)\\" + }, + { + "displayName": "(339.12) Chronic tension type headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Tension type headache (339.1)\\(339.12) Chronic tension type headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Other headache syndromes (339-339.99)\\\\Other headache syndromes (339)\\\\Tension type headache (339.1)\\\\(339.12) Chronic tension type headache\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Other headache syndromes (339-339.99)\\Other headache syndromes (339)\\Tension type headache (339.1)\\" + }, + { + "displayName": "Pain (338-338.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Pain (338-338.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\" + }, + { + "displayName": "Pain, not elsewhere classified (338)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Pain (338-338.99)\\\\Pain, not elsewhere classified (338)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\" + }, + { + "displayName": "(338.0) Central pain syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\(338.0) Central pain syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Pain (338-338.99)\\\\Pain, not elsewhere classified (338)\\\\(338.0) Central pain syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\" + }, + { + "displayName": "(338.3) Neoplasm related pain (acute) (chronic)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\(338.3) Neoplasm related pain (acute) (chronic)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\" + }, + { + "displayName": "(338.4) Chronic pain syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\(338.4) Chronic pain syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\" + }, + { + "displayName": "Acute pain (338.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Acute pain (338.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\" + }, + { + "displayName": "(338.11) Acute pain due to trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Acute pain (338.1)\\(338.11) Acute pain due to trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Acute pain (338.1)\\" + }, + { + "displayName": "(338.12) Acute post-thoracotomy pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Acute pain (338.1)\\(338.12) Acute post-thoracotomy pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Acute pain (338.1)\\" + }, + { + "displayName": "(338.18) Other acute postoperative pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Acute pain (338.1)\\(338.18) Other acute postoperative pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Acute pain (338.1)\\" + }, + { + "displayName": "(338.19) Other acute pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Acute pain (338.1)\\(338.19) Other acute pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Acute pain (338.1)\\" + }, + { + "displayName": "Chronic pain (338.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Chronic pain (338.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\" + }, + { + "displayName": "(338.21) Chronic pain due to trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Chronic pain (338.2)\\(338.21) Chronic pain due to trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Chronic pain (338.2)\\" + }, + { + "displayName": "(338.22) Chronic post-thoracotomy pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Chronic pain (338.2)\\(338.22) Chronic post-thoracotomy pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Chronic pain (338.2)\\" + }, + { + "displayName": "(338.28) Other chronic postoperative pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Chronic pain (338.2)\\(338.28) Other chronic postoperative pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Pain (338-338.99)\\\\Pain, not elsewhere classified (338)\\\\Chronic pain (338.2)\\\\(338.28) Other chronic postoperative pain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Chronic pain (338.2)\\" + }, + { + "displayName": "(338.29) Other chronic pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Chronic pain (338.2)\\(338.29) Other chronic pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the nervous system and sense organs (320-389.99)\\\\Pain (338-338.99)\\\\Pain, not elsewhere classified (338)\\\\Chronic pain (338.2)\\\\(338.29) Other chronic pain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the nervous system and sense organs (320-389.99)\\Pain (338-338.99)\\Pain, not elsewhere classified (338)\\Chronic pain (338.2)\\" + }, + { + "displayName": "Diseases of the respiratory system (460-519.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Acute respiratory infections (460-466.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Acute respiratory infections (460-466.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\" + }, + { + "displayName": "(460) Acute nasopharyngitis [common cold]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\(460) Acute nasopharyngitis [common cold]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Acute respiratory infections (460-466.99)\\\\(460) Acute nasopharyngitis [common cold]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\" + }, + { + "displayName": "(462) Acute pharyngitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\(462) Acute pharyngitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Acute respiratory infections (460-466.99)\\\\(462) Acute pharyngitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\" + }, + { + "displayName": "(463) Acute tonsillitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\(463) Acute tonsillitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\" + }, + { + "displayName": "Acute bronchitis and bronchiolitis (466)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute bronchitis and bronchiolitis (466)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\" + }, + { + "displayName": "(466.0) Acute bronchitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute bronchitis and bronchiolitis (466)\\(466.0) Acute bronchitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute bronchitis and bronchiolitis (466)\\" + }, + { + "displayName": "Acute bronchiolitis (466.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute bronchitis and bronchiolitis (466)\\Acute bronchiolitis (466.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute bronchitis and bronchiolitis (466)\\" + }, + { + "displayName": "(466.11) Acute bronchiolitis due to respiratory syncytial virus (RSV)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute bronchitis and bronchiolitis (466)\\Acute bronchiolitis (466.1)\\(466.11) Acute bronchiolitis due to respiratory syncytial virus (RSV)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute bronchitis and bronchiolitis (466)\\Acute bronchiolitis (466.1)\\" + }, + { + "displayName": "(466.19) Acute bronchiolitis due to other infectious organisms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute bronchitis and bronchiolitis (466)\\Acute bronchiolitis (466.1)\\(466.19) Acute bronchiolitis due to other infectious organisms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute bronchitis and bronchiolitis (466)\\Acute bronchiolitis (466.1)\\" + }, + { + "displayName": "Acute laryngitis and tracheitis (464)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\" + }, + { + "displayName": "(464.4) Croup", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\(464.4) Croup\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\" + }, + { + "displayName": "Acute epiglottitis (464.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute epiglottitis (464.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\" + }, + { + "displayName": "(464.30) Acute epiglottitis without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute epiglottitis (464.3)\\(464.30) Acute epiglottitis without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute epiglottitis (464.3)\\" + }, + { + "displayName": "(464.31) Acute epiglottitis with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute epiglottitis (464.3)\\(464.31) Acute epiglottitis with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute epiglottitis (464.3)\\" + }, + { + "displayName": "Acute laryngitis (464.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute laryngitis (464.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\" + }, + { + "displayName": "(464.00) Acute laryngitis without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute laryngitis (464.0)\\(464.00) Acute laryngitis without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute laryngitis (464.0)\\" + }, + { + "displayName": "(464.01) Acute laryngitis with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute laryngitis (464.0)\\(464.01) Acute laryngitis with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute laryngitis (464.0)\\" + }, + { + "displayName": "Acute laryngotracheitis (464.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute laryngotracheitis (464.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\" + }, + { + "displayName": "(464.20) Acute laryngotracheitis without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute laryngotracheitis (464.2)\\(464.20) Acute laryngotracheitis without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute laryngotracheitis (464.2)\\" + }, + { + "displayName": "(464.21) Acute laryngotracheitis with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute laryngotracheitis (464.2)\\(464.21) Acute laryngotracheitis with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Acute respiratory infections (460-466.99)\\\\Acute laryngitis and tracheitis (464)\\\\Acute laryngotracheitis (464.2)\\\\(464.21) Acute laryngotracheitis with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute laryngotracheitis (464.2)\\" + }, + { + "displayName": "Acute tracheitis (464.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute tracheitis (464.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Acute respiratory infections (460-466.99)\\\\Acute laryngitis and tracheitis (464)\\\\Acute tracheitis (464.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\" + }, + { + "displayName": "(464.10) Acute tracheitis without mention of obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute tracheitis (464.1)\\(464.10) Acute tracheitis without mention of obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Acute respiratory infections (460-466.99)\\\\Acute laryngitis and tracheitis (464)\\\\Acute tracheitis (464.1)\\\\(464.10) Acute tracheitis without mention of obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute tracheitis (464.1)\\" + }, + { + "displayName": "(464.11) Acute tracheitis with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute tracheitis (464.1)\\(464.11) Acute tracheitis with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Acute respiratory infections (460-466.99)\\\\Acute laryngitis and tracheitis (464)\\\\Acute tracheitis (464.1)\\\\(464.11) Acute tracheitis with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Acute tracheitis (464.1)\\" + }, + { + "displayName": "Supraglottitis, unspecified (464.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Supraglottitis, unspecified (464.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Acute respiratory infections (460-466.99)\\\\Acute laryngitis and tracheitis (464)\\\\Supraglottitis, unspecified (464.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\" + }, + { + "displayName": "(464.50) Supraglottitis unspecified, without obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Supraglottitis, unspecified (464.5)\\(464.50) Supraglottitis unspecified, without obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Acute respiratory infections (460-466.99)\\\\Acute laryngitis and tracheitis (464)\\\\Supraglottitis, unspecified (464.5)\\\\(464.50) Supraglottitis unspecified, without obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Supraglottitis, unspecified (464.5)\\" + }, + { + "displayName": "(464.51) Supraglottitis unspecified, with obstruction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Supraglottitis, unspecified (464.5)\\(464.51) Supraglottitis unspecified, with obstruction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Acute respiratory infections (460-466.99)\\\\Acute laryngitis and tracheitis (464)\\\\Supraglottitis, unspecified (464.5)\\\\(464.51) Supraglottitis unspecified, with obstruction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute laryngitis and tracheitis (464)\\Supraglottitis, unspecified (464.5)\\" + }, + { + "displayName": "Acute sinusitis (461)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\" + }, + { + "displayName": "(461.0) Acute maxillary sinusitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\(461.0) Acute maxillary sinusitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\" + }, + { + "displayName": "(461.1) Acute frontal sinusitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\(461.1) Acute frontal sinusitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\" + }, + { + "displayName": "(461.2) Acute ethmoidal sinusitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\(461.2) Acute ethmoidal sinusitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\" + }, + { + "displayName": "(461.3) Acute sphenoidal sinusitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\(461.3) Acute sphenoidal sinusitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\" + }, + { + "displayName": "(461.8) Other acute sinusitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\(461.8) Other acute sinusitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\" + }, + { + "displayName": "(461.9) Acute sinusitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\(461.9) Acute sinusitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute sinusitis (461)\\" + }, + { + "displayName": "Acute upper respiratory infections of multiple or unspecified sites (465)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute upper respiratory infections of multiple or unspecified sites (465)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\" + }, + { + "displayName": "(465.0) Acute laryngopharyngitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute upper respiratory infections of multiple or unspecified sites (465)\\(465.0) Acute laryngopharyngitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute upper respiratory infections of multiple or unspecified sites (465)\\" + }, + { + "displayName": "(465.8) Acute upper respiratory infections of other multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute upper respiratory infections of multiple or unspecified sites (465)\\(465.8) Acute upper respiratory infections of other multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute upper respiratory infections of multiple or unspecified sites (465)\\" + }, + { + "displayName": "(465.9) Acute upper respiratory infections of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute upper respiratory infections of multiple or unspecified sites (465)\\(465.9) Acute upper respiratory infections of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Acute respiratory infections (460-466.99)\\Acute upper respiratory infections of multiple or unspecified sites (465)\\" + }, + { + "displayName": "Chronic obstructive pulmonary disease and allied conditions (490-496.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\" + }, + { + "displayName": "(490) Bronchitis, not specified as acute or chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\(490) Bronchitis, not specified as acute or chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\" + }, + { + "displayName": "(496) Chronic airway obstruction, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\(496) Chronic airway obstruction, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\" + }, + { + "displayName": "Asthma (493)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\" + }, + { + "displayName": "Asthma, unspecified (493.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Asthma, unspecified (493.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\" + }, + { + "displayName": "(493.90) Asthma, unspecified type, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Asthma, unspecified (493.9)\\(493.90) Asthma, unspecified type, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Asthma, unspecified (493.9)\\" + }, + { + "displayName": "(493.91) Asthma, unspecified type, with status asthmaticus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Asthma, unspecified (493.9)\\(493.91) Asthma, unspecified type, with status asthmaticus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Asthma, unspecified (493.9)\\" + }, + { + "displayName": "(493.92) Asthma, unspecified type, with (acute) exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Asthma, unspecified (493.9)\\(493.92) Asthma, unspecified type, with (acute) exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Asthma, unspecified (493.9)\\" + }, + { + "displayName": "Chronic obstructive asthma (493.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Chronic obstructive asthma (493.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\" + }, + { + "displayName": "(493.20) Chronic obstructive asthma, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Chronic obstructive asthma (493.2)\\(493.20) Chronic obstructive asthma, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Chronic obstructive asthma (493.2)\\" + }, + { + "displayName": "(493.21) Chronic obstructive asthma with status asthmaticus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Chronic obstructive asthma (493.2)\\(493.21) Chronic obstructive asthma with status asthmaticus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Chronic obstructive asthma (493.2)\\" + }, + { + "displayName": "(493.22) Chronic obstructive asthma with (acute) exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Chronic obstructive asthma (493.2)\\(493.22) Chronic obstructive asthma with (acute) exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Chronic obstructive asthma (493.2)\\" + }, + { + "displayName": "Extrinsic asthma (493.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Extrinsic asthma (493.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\" + }, + { + "displayName": "(493.00) Extrinsic asthma, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Extrinsic asthma (493.0)\\(493.00) Extrinsic asthma, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Extrinsic asthma (493.0)\\" + }, + { + "displayName": "(493.01) Extrinsic asthma with status asthmaticus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Extrinsic asthma (493.0)\\(493.01) Extrinsic asthma with status asthmaticus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Extrinsic asthma (493.0)\\" + }, + { + "displayName": "(493.02) Extrinsic asthma with (acute) exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Extrinsic asthma (493.0)\\(493.02) Extrinsic asthma with (acute) exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Extrinsic asthma (493.0)\\" + }, + { + "displayName": "Intrinsic asthma (493.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Intrinsic asthma (493.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Asthma (493)\\\\Intrinsic asthma (493.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\" + }, + { + "displayName": "(493.10) Intrinsic asthma, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Intrinsic asthma (493.1)\\(493.10) Intrinsic asthma, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Asthma (493)\\\\Intrinsic asthma (493.1)\\\\(493.10) Intrinsic asthma, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Intrinsic asthma (493.1)\\" + }, + { + "displayName": "(493.11) Intrinsic asthma with status asthmaticus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Intrinsic asthma (493.1)\\(493.11) Intrinsic asthma with status asthmaticus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Asthma (493)\\\\Intrinsic asthma (493.1)\\\\(493.11) Intrinsic asthma with status asthmaticus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Intrinsic asthma (493.1)\\" + }, + { + "displayName": "(493.12) Intrinsic asthma with (acute) exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Intrinsic asthma (493.1)\\(493.12) Intrinsic asthma with (acute) exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Asthma (493)\\\\Intrinsic asthma (493.1)\\\\(493.12) Intrinsic asthma with (acute) exacerbation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Intrinsic asthma (493.1)\\" + }, + { + "displayName": "Other forms of asthma (493.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Other forms of asthma (493.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Asthma (493)\\\\Other forms of asthma (493.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\" + }, + { + "displayName": "(493.81) Exercise induced bronchospasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Other forms of asthma (493.8)\\(493.81) Exercise induced bronchospasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Asthma (493)\\\\Other forms of asthma (493.8)\\\\(493.81) Exercise induced bronchospasm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Other forms of asthma (493.8)\\" + }, + { + "displayName": "(493.82) Cough variant asthma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Other forms of asthma (493.8)\\(493.82) Cough variant asthma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Asthma (493)\\\\Other forms of asthma (493.8)\\\\(493.82) Cough variant asthma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Asthma (493)\\Other forms of asthma (493.8)\\" + }, + { + "displayName": "Bronchiectasis (494)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Bronchiectasis (494)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Bronchiectasis (494)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\" + }, + { + "displayName": "(494.0) Bronchiectasis without acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Bronchiectasis (494)\\(494.0) Bronchiectasis without acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Bronchiectasis (494)\\" + }, + { + "displayName": "(494.1) Bronchiectasis with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Bronchiectasis (494)\\(494.1) Bronchiectasis with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Bronchiectasis (494)\\" + }, + { + "displayName": "Chronic bronchitis (491)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\" + }, + { + "displayName": "(491.0) Simple chronic bronchitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\(491.0) Simple chronic bronchitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\" + }, + { + "displayName": "(491.1) Mucopurulent chronic bronchitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\(491.1) Mucopurulent chronic bronchitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\" + }, + { + "displayName": "(491.8) Other chronic bronchitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\(491.8) Other chronic bronchitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\" + }, + { + "displayName": "(491.9) Unspecified chronic bronchitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\(491.9) Unspecified chronic bronchitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\" + }, + { + "displayName": "Obstructive chronic bronchitis (491.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\Obstructive chronic bronchitis (491.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\" + }, + { + "displayName": "(491.20) Obstructive chronic bronchitis without exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\Obstructive chronic bronchitis (491.2)\\(491.20) Obstructive chronic bronchitis without exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\Obstructive chronic bronchitis (491.2)\\" + }, + { + "displayName": "(491.21) Obstructive chronic bronchitis with (acute) exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\Obstructive chronic bronchitis (491.2)\\(491.21) Obstructive chronic bronchitis with (acute) exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\Obstructive chronic bronchitis (491.2)\\" + }, + { + "displayName": "(491.22) Obstructive chronic bronchitis with acute bronchitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\Obstructive chronic bronchitis (491.2)\\(491.22) Obstructive chronic bronchitis with acute bronchitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Chronic bronchitis (491)\\Obstructive chronic bronchitis (491.2)\\" + }, + { + "displayName": "Emphysema (492)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Emphysema (492)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Emphysema (492)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\" + }, + { + "displayName": "(492.0) Emphysematous bleb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Emphysema (492)\\(492.0) Emphysematous bleb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Emphysema (492)\\" + }, + { + "displayName": "(492.8) Other emphysema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Emphysema (492)\\(492.8) Other emphysema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Emphysema (492)\\\\(492.8) Other emphysema\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Emphysema (492)\\" + }, + { + "displayName": "Extrinsic allergic alveolitis (495)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Extrinsic allergic alveolitis (495)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\" + }, + { + "displayName": "(495.0) Farmers' lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\(495.0) Farmers' lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\" + }, + { + "displayName": "(495.1) Bagassosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\(495.1) Bagassosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\" + }, + { + "displayName": "(495.2) Bird-fanciers' lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\(495.2) Bird-fanciers' lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\" + }, + { + "displayName": "(495.3) Suberosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\(495.3) Suberosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\" + }, + { + "displayName": "(495.4) Malt workers' lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\(495.4) Malt workers' lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\" + }, + { + "displayName": "(495.5) Mushroom workers' lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\(495.5) Mushroom workers' lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\" + }, + { + "displayName": "(495.6) Maple bark-strippers' lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\(495.6) Maple bark-strippers' lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\" + }, + { + "displayName": "(495.7) Ventilation pneumonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\(495.7) Ventilation pneumonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\" + }, + { + "displayName": "(495.8) Other specified allergic alveolitis and pneumonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\(495.8) Other specified allergic alveolitis and pneumonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\\\Extrinsic allergic alveolitis (495)\\\\(495.8) Other specified allergic alveolitis and pneumonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\" + }, + { + "displayName": "(495.9) Unspecified allergic alveolitis and pneumonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\(495.9) Unspecified allergic alveolitis and pneumonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Chronic obstructive pulmonary disease and allied conditions (490-496.99)\\Extrinsic allergic alveolitis (495)\\" + }, + { + "displayName": "Other diseases of respiratory system (510-519.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\" + }, + { + "displayName": "(514) Pulmonary congestion and hypostasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\(514) Pulmonary congestion and hypostasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\" + }, + { + "displayName": "(515) Postinflammatory pulmonary fibrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\(515) Postinflammatory pulmonary fibrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\(515) Postinflammatory pulmonary fibrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\" + }, + { + "displayName": "Abscess of lung and mediastinum (513)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Abscess of lung and mediastinum (513)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Abscess of lung and mediastinum (513)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\" + }, + { + "displayName": "(513.0) Abscess of lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Abscess of lung and mediastinum (513)\\(513.0) Abscess of lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Abscess of lung and mediastinum (513)\\" + }, + { + "displayName": "(513.1) Abscess of mediastinum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Abscess of lung and mediastinum (513)\\(513.1) Abscess of mediastinum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Abscess of lung and mediastinum (513)\\" + }, + { + "displayName": "Empyema (510)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Empyema (510)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Empyema (510)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\" + }, + { + "displayName": "(510.0) Empyema with fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Empyema (510)\\(510.0) Empyema with fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Empyema (510)\\\\(510.0) Empyema with fistula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Empyema (510)\\" + }, + { + "displayName": "(510.9) Empyema without mention of fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Empyema (510)\\(510.9) Empyema without mention of fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Empyema (510)\\" + }, + { + "displayName": "Lung involvement in conditions classified elsewhere (517)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Lung involvement in conditions classified elsewhere (517)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Lung involvement in conditions classified elsewhere (517)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\" + }, + { + "displayName": "(517.1) Rheumatic pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Lung involvement in conditions classified elsewhere (517)\\(517.1) Rheumatic pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Lung involvement in conditions classified elsewhere (517)\\" + }, + { + "displayName": "(517.2) Lung involvement in systemic sclerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Lung involvement in conditions classified elsewhere (517)\\(517.2) Lung involvement in systemic sclerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Lung involvement in conditions classified elsewhere (517)\\\\(517.2) Lung involvement in systemic sclerosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Lung involvement in conditions classified elsewhere (517)\\" + }, + { + "displayName": "(517.3) Acute chest syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Lung involvement in conditions classified elsewhere (517)\\(517.3) Acute chest syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Lung involvement in conditions classified elsewhere (517)\\" + }, + { + "displayName": "(517.8) Lung involvement in other diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Lung involvement in conditions classified elsewhere (517)\\(517.8) Lung involvement in other diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Lung involvement in conditions classified elsewhere (517)\\\\(517.8) Lung involvement in other diseases classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Lung involvement in conditions classified elsewhere (517)\\" + }, + { + "displayName": "Other alveolar and parietoalveolar pneumonopathy (516)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\" + }, + { + "displayName": "(516.0) Pulmonary alveolar proteinosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\(516.0) Pulmonary alveolar proteinosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other alveolar and parietoalveolar pneumonopathy (516)\\\\(516.0) Pulmonary alveolar proteinosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\" + }, + { + "displayName": "(516.1) Idiopathic pulmonary hemosiderosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\(516.1) Idiopathic pulmonary hemosiderosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other alveolar and parietoalveolar pneumonopathy (516)\\\\(516.1) Idiopathic pulmonary hemosiderosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\" + }, + { + "displayName": "(516.2) Pulmonary alveolar microlithiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\(516.2) Pulmonary alveolar microlithiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other alveolar and parietoalveolar pneumonopathy (516)\\\\(516.2) Pulmonary alveolar microlithiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\" + }, + { + "displayName": "(516.8) Other specified alveolar and parietoalveolar pneumonopathies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\(516.8) Other specified alveolar and parietoalveolar pneumonopathies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\" + }, + { + "displayName": "(516.9) Unspecified alveolar and parietoalveolar pneumonopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\(516.9) Unspecified alveolar and parietoalveolar pneumonopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\" + }, + { + "displayName": "Idiopathic interstitial pneumonia (516.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\" + }, + { + "displayName": "(516.30) Idiopathic interstitial pneumonia, not otherwise specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\(516.30) Idiopathic interstitial pneumonia, not otherwise specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\" + }, + { + "displayName": "(516.31) Idiopathic pulmonary fibrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\(516.31) Idiopathic pulmonary fibrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other alveolar and parietoalveolar pneumonopathy (516)\\\\Idiopathic interstitial pneumonia (516.3)\\\\(516.31) Idiopathic pulmonary fibrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\" + }, + { + "displayName": "(516.32) Idiopathic non-specific interstitial pneumonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\(516.32) Idiopathic non-specific interstitial pneumonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other alveolar and parietoalveolar pneumonopathy (516)\\\\Idiopathic interstitial pneumonia (516.3)\\\\(516.32) Idiopathic non-specific interstitial pneumonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\" + }, + { + "displayName": "(516.33) Acute interstitial pneumonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\(516.33) Acute interstitial pneumonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other alveolar and parietoalveolar pneumonopathy (516)\\\\Idiopathic interstitial pneumonia (516.3)\\\\(516.33) Acute interstitial pneumonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\" + }, + { + "displayName": "(516.34) Respiratory bronchiolitis interstitial lung disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\(516.34) Respiratory bronchiolitis interstitial lung disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other alveolar and parietoalveolar pneumonopathy (516)\\\\Idiopathic interstitial pneumonia (516.3)\\\\(516.34) Respiratory bronchiolitis interstitial lung disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\" + }, + { + "displayName": "(516.36) Cryptogenic organizing pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\(516.36) Cryptogenic organizing pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other alveolar and parietoalveolar pneumonopathy (516)\\Idiopathic interstitial pneumonia (516.3)\\" + }, + { + "displayName": "Other diseases of lung (518)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of lung (518)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\" + }, + { + "displayName": "(518.0) Pulmonary collapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\(518.0) Pulmonary collapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of lung (518)\\\\(518.0) Pulmonary collapse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\" + }, + { + "displayName": "(518.1) Interstitial emphysema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\(518.1) Interstitial emphysema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\" + }, + { + "displayName": "(518.2) Compensatory emphysema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\(518.2) Compensatory emphysema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of lung (518)\\\\(518.2) Compensatory emphysema\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\" + }, + { + "displayName": "(518.3) Pulmonary eosinophilia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\(518.3) Pulmonary eosinophilia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\" + }, + { + "displayName": "(518.4) Acute edema of lung, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\(518.4) Acute edema of lung, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of lung (518)\\\\(518.4) Acute edema of lung, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\" + }, + { + "displayName": "(518.6) Allergic bronchopulmonary aspergillosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\(518.6) Allergic bronchopulmonary aspergillosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\" + }, + { + "displayName": "(518.7) Transfusion related acute lung injury (TRALI)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\(518.7) Transfusion related acute lung injury (TRALI)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of lung (518)\\\\(518.7) Transfusion related acute lung injury (TRALI)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\" + }, + { + "displayName": "Other diseases of lung (518.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Other diseases of lung (518.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of lung (518)\\\\Other diseases of lung (518.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\" + }, + { + "displayName": "(518.81) Acute respiratory failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Other diseases of lung (518.8)\\(518.81) Acute respiratory failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Other diseases of lung (518.8)\\" + }, + { + "displayName": "(518.82) Other pulmonary insufficiency, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Other diseases of lung (518.8)\\(518.82) Other pulmonary insufficiency, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Other diseases of lung (518.8)\\" + }, + { + "displayName": "(518.83) Chronic respiratory failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Other diseases of lung (518.8)\\(518.83) Chronic respiratory failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Other diseases of lung (518.8)\\" + }, + { + "displayName": "(518.84) Acute and chronic respiratory failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Other diseases of lung (518.8)\\(518.84) Acute and chronic respiratory failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Other diseases of lung (518.8)\\" + }, + { + "displayName": "(518.89) Other diseases of lung, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Other diseases of lung (518.8)\\(518.89) Other diseases of lung, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Other diseases of lung (518.8)\\" + }, + { + "displayName": "Pulmonary insufficiency following trauma and surgery (518.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Pulmonary insufficiency following trauma and surgery (518.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of lung (518)\\\\Pulmonary insufficiency following trauma and surgery (518.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\" + }, + { + "displayName": "(518.51) Acute respiratory failure following trauma and surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Pulmonary insufficiency following trauma and surgery (518.5)\\(518.51) Acute respiratory failure following trauma and surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of lung (518)\\\\Pulmonary insufficiency following trauma and surgery (518.5)\\\\(518.51) Acute respiratory failure following trauma and surgery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Pulmonary insufficiency following trauma and surgery (518.5)\\" + }, + { + "displayName": "(518.52) Other pulmonary insufficiency, not elsewhere classified, following trauma and surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Pulmonary insufficiency following trauma and surgery (518.5)\\(518.52) Other pulmonary insufficiency, not elsewhere classified, following trauma and surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Pulmonary insufficiency following trauma and surgery (518.5)\\" + }, + { + "displayName": "(518.53) Acute and chronic respiratory failure following trauma and surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Pulmonary insufficiency following trauma and surgery (518.5)\\(518.53) Acute and chronic respiratory failure following trauma and surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of lung (518)\\Pulmonary insufficiency following trauma and surgery (518.5)\\" + }, + { + "displayName": "Other diseases of respiratory system (519)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\" + }, + { + "displayName": "(519.2) Mediastinitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\(519.2) Mediastinitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\" + }, + { + "displayName": "(519.3) Other diseases of mediastinum, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\(519.3) Other diseases of mediastinum, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\" + }, + { + "displayName": "(519.4) Disorders of diaphragm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\(519.4) Disorders of diaphragm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\" + }, + { + "displayName": "(519.8) Other diseases of respiratory system, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\(519.8) Other diseases of respiratory system, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of respiratory system (519)\\\\(519.8) Other diseases of respiratory system, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\" + }, + { + "displayName": "(519.9) Unspecified disease of respiratory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\(519.9) Unspecified disease of respiratory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of respiratory system (519)\\\\(519.9) Unspecified disease of respiratory system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\" + }, + { + "displayName": "Other diseases of trachea and bronchus, not elsewhere classified (519.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\" + }, + { + "displayName": "(519.11) Acute bronchospasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\\(519.11) Acute bronchospasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of respiratory system (519)\\\\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\\\\(519.11) Acute bronchospasm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\\" + }, + { + "displayName": "(519.19) Other diseases of trachea and bronchus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\\(519.19) Other diseases of trachea and bronchus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Other diseases of trachea and bronchus, not elsewhere classified (519.1)\\" + }, + { + "displayName": "Tracheostomy complications (519.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Tracheostomy complications (519.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of respiratory system (519)\\\\Tracheostomy complications (519.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\" + }, + { + "displayName": "(519.00) Tracheostomy complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Tracheostomy complications (519.0)\\(519.00) Tracheostomy complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of respiratory system (519)\\\\Tracheostomy complications (519.0)\\\\(519.00) Tracheostomy complication, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Tracheostomy complications (519.0)\\" + }, + { + "displayName": "(519.01) Infection of tracheostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Tracheostomy complications (519.0)\\(519.01) Infection of tracheostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Tracheostomy complications (519.0)\\" + }, + { + "displayName": "(519.02) Mechanical complication of tracheostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Tracheostomy complications (519.0)\\(519.02) Mechanical complication of tracheostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Other diseases of respiratory system (519)\\\\Tracheostomy complications (519.0)\\\\(519.02) Mechanical complication of tracheostomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Tracheostomy complications (519.0)\\" + }, + { + "displayName": "(519.09) Other tracheostomy complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Tracheostomy complications (519.0)\\(519.09) Other tracheostomy complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Other diseases of respiratory system (519)\\Tracheostomy complications (519.0)\\" + }, + { + "displayName": "Pleurisy (511)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Pleurisy (511)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\" + }, + { + "displayName": "(511.0) Pleurisy without mention of effusion or current tuberculosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\(511.0) Pleurisy without mention of effusion or current tuberculosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\" + }, + { + "displayName": "(511.1) Pleurisy with effusion, with mention of a bacterial cause other than tuberculosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\(511.1) Pleurisy with effusion, with mention of a bacterial cause other than tuberculosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Pleurisy (511)\\\\(511.1) Pleurisy with effusion, with mention of a bacterial cause other than tuberculosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\" + }, + { + "displayName": "(511.9) Unspecified pleural effusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\(511.9) Unspecified pleural effusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Pleurisy (511)\\\\(511.9) Unspecified pleural effusion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\" + }, + { + "displayName": "Other specified forms of pleural effusion, except tuberculous (511.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\Other specified forms of pleural effusion, except tuberculous (511.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Pleurisy (511)\\\\Other specified forms of pleural effusion, except tuberculous (511.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\" + }, + { + "displayName": "(511.81) Malignant pleural effusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\Other specified forms of pleural effusion, except tuberculous (511.8)\\(511.81) Malignant pleural effusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\Other specified forms of pleural effusion, except tuberculous (511.8)\\" + }, + { + "displayName": "(511.89) Other specified forms of effusion, except tuberculous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\Other specified forms of pleural effusion, except tuberculous (511.8)\\(511.89) Other specified forms of effusion, except tuberculous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pleurisy (511)\\Other specified forms of pleural effusion, except tuberculous (511.8)\\" + }, + { + "displayName": "Pneumothorax and air leak (512)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\" + }, + { + "displayName": "(512.0) Spontaneous tension pneumothorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\(512.0) Spontaneous tension pneumothorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\" + }, + { + "displayName": "(512.1) Iatrogenic pneumothorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\(512.1) Iatrogenic pneumothorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\" + }, + { + "displayName": "Other pneumothorax and air leak (512.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\Other pneumothorax and air leak (512.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Pneumothorax and air leak (512)\\\\Other pneumothorax and air leak (512.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\" + }, + { + "displayName": "(512.81) Primary spontaneous pneumothorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\Other pneumothorax and air leak (512.8)\\(512.81) Primary spontaneous pneumothorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Pneumothorax and air leak (512)\\\\Other pneumothorax and air leak (512.8)\\\\(512.81) Primary spontaneous pneumothorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\Other pneumothorax and air leak (512.8)\\" + }, + { + "displayName": "(512.82) Secondary spontaneous pneumothorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\Other pneumothorax and air leak (512.8)\\(512.82) Secondary spontaneous pneumothorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of respiratory system (510-519.99)\\\\Pneumothorax and air leak (512)\\\\Other pneumothorax and air leak (512.8)\\\\(512.82) Secondary spontaneous pneumothorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\Other pneumothorax and air leak (512.8)\\" + }, + { + "displayName": "(512.84) Other air leak", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\Other pneumothorax and air leak (512.8)\\(512.84) Other air leak\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\Other pneumothorax and air leak (512.8)\\" + }, + { + "displayName": "(512.89) Other pneumothorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\Other pneumothorax and air leak (512.8)\\(512.89) Other pneumothorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of respiratory system (510-519.99)\\Pneumothorax and air leak (512)\\Other pneumothorax and air leak (512.8)\\" + }, + { + "displayName": "Other diseases of the upper respiratory tract (470-478.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\" + }, + { + "displayName": "(470) Deviated nasal septum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\(470) Deviated nasal septum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\" + }, + { + "displayName": "(475) Peritonsillar abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\(475) Peritonsillar abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\" + }, + { + "displayName": "Allergic rhinitis (477)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Allergic rhinitis (477)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Allergic rhinitis (477)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\" + }, + { + "displayName": "(477.0) Allergic rhinitis due to pollen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Allergic rhinitis (477)\\(477.0) Allergic rhinitis due to pollen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Allergic rhinitis (477)\\\\(477.0) Allergic rhinitis due to pollen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Allergic rhinitis (477)\\" + }, + { + "displayName": "(477.1) Allergic rhinitis due to food", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Allergic rhinitis (477)\\(477.1) Allergic rhinitis due to food\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Allergic rhinitis (477)\\" + }, + { + "displayName": "(477.2) Allergic rhinitis due to animal (cat) (dog) hair and dander", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Allergic rhinitis (477)\\(477.2) Allergic rhinitis due to animal (cat) (dog) hair and dander\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Allergic rhinitis (477)\\\\(477.2) Allergic rhinitis due to animal (cat) (dog) hair and dander\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Allergic rhinitis (477)\\" + }, + { + "displayName": "(477.8) Allergic rhinitis due to other allergen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Allergic rhinitis (477)\\(477.8) Allergic rhinitis due to other allergen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Allergic rhinitis (477)\\" + }, + { + "displayName": "(477.9) Allergic rhinitis, cause unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Allergic rhinitis (477)\\(477.9) Allergic rhinitis, cause unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Allergic rhinitis (477)\\" + }, + { + "displayName": "Chronic disease of tonsils and adenoids (474)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic disease of tonsils and adenoids (474)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\" + }, + { + "displayName": "(474.2) Adenoid vegetations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\(474.2) Adenoid vegetations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic disease of tonsils and adenoids (474)\\\\(474.2) Adenoid vegetations\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\" + }, + { + "displayName": "(474.8) Other chronic disease of tonsils and adenoids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\(474.8) Other chronic disease of tonsils and adenoids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\" + }, + { + "displayName": "(474.9) Unspecified chronic disease of tonsils and adenoids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\(474.9) Unspecified chronic disease of tonsils and adenoids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic disease of tonsils and adenoids (474)\\\\(474.9) Unspecified chronic disease of tonsils and adenoids\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\" + }, + { + "displayName": "Chronic tonsillitis and adenoiditis (474.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Chronic tonsillitis and adenoiditis (474.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\" + }, + { + "displayName": "(474.00) Chronic tonsillitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Chronic tonsillitis and adenoiditis (474.0)\\(474.00) Chronic tonsillitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic disease of tonsils and adenoids (474)\\\\Chronic tonsillitis and adenoiditis (474.0)\\\\(474.00) Chronic tonsillitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Chronic tonsillitis and adenoiditis (474.0)\\" + }, + { + "displayName": "(474.01) Chronic adenoiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Chronic tonsillitis and adenoiditis (474.0)\\(474.01) Chronic adenoiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic disease of tonsils and adenoids (474)\\\\Chronic tonsillitis and adenoiditis (474.0)\\\\(474.01) Chronic adenoiditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Chronic tonsillitis and adenoiditis (474.0)\\" + }, + { + "displayName": "(474.02) Chronic tonsillitis and adenoiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Chronic tonsillitis and adenoiditis (474.0)\\(474.02) Chronic tonsillitis and adenoiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic disease of tonsils and adenoids (474)\\\\Chronic tonsillitis and adenoiditis (474.0)\\\\(474.02) Chronic tonsillitis and adenoiditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Chronic tonsillitis and adenoiditis (474.0)\\" + }, + { + "displayName": "Hypertrophy of tonsils and adenoids (474.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Hypertrophy of tonsils and adenoids (474.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\" + }, + { + "displayName": "(474.10) Hypertrophy of tonsil with adenoids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Hypertrophy of tonsils and adenoids (474.1)\\(474.10) Hypertrophy of tonsil with adenoids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Hypertrophy of tonsils and adenoids (474.1)\\" + }, + { + "displayName": "(474.11) Hypertrophy of tonsils alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Hypertrophy of tonsils and adenoids (474.1)\\(474.11) Hypertrophy of tonsils alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Hypertrophy of tonsils and adenoids (474.1)\\" + }, + { + "displayName": "(474.12) Hypertrophy of adenoids alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Hypertrophy of tonsils and adenoids (474.1)\\(474.12) Hypertrophy of adenoids alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic disease of tonsils and adenoids (474)\\Hypertrophy of tonsils and adenoids (474.1)\\" + }, + { + "displayName": "Chronic laryngitis and laryngotracheitis (476)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic laryngitis and laryngotracheitis (476)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\" + }, + { + "displayName": "(476.0) Chronic laryngitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic laryngitis and laryngotracheitis (476)\\(476.0) Chronic laryngitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic laryngitis and laryngotracheitis (476)\\" + }, + { + "displayName": "(476.1) Chronic laryngotracheitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic laryngitis and laryngotracheitis (476)\\(476.1) Chronic laryngotracheitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic laryngitis and laryngotracheitis (476)\\\\(476.1) Chronic laryngotracheitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic laryngitis and laryngotracheitis (476)\\" + }, + { + "displayName": "Chronic pharyngitis and nasopharyngitis (472)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic pharyngitis and nasopharyngitis (472)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic pharyngitis and nasopharyngitis (472)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\" + }, + { + "displayName": "(472.0) Chronic rhinitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic pharyngitis and nasopharyngitis (472)\\(472.0) Chronic rhinitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic pharyngitis and nasopharyngitis (472)\\\\(472.0) Chronic rhinitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic pharyngitis and nasopharyngitis (472)\\" + }, + { + "displayName": "(472.1) Chronic pharyngitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic pharyngitis and nasopharyngitis (472)\\(472.1) Chronic pharyngitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic pharyngitis and nasopharyngitis (472)\\" + }, + { + "displayName": "(472.2) Chronic nasopharyngitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic pharyngitis and nasopharyngitis (472)\\(472.2) Chronic nasopharyngitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic pharyngitis and nasopharyngitis (472)\\" + }, + { + "displayName": "Chronic sinusitis (473)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\" + }, + { + "displayName": "(473.0) Chronic maxillary sinusitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\(473.0) Chronic maxillary sinusitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\" + }, + { + "displayName": "(473.1) Chronic frontal sinusitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\(473.1) Chronic frontal sinusitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\" + }, + { + "displayName": "(473.2) Chronic ethmoidal sinusitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\(473.2) Chronic ethmoidal sinusitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\" + }, + { + "displayName": "(473.3) Chronic sphenoidal sinusitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\(473.3) Chronic sphenoidal sinusitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic sinusitis (473)\\\\(473.3) Chronic sphenoidal sinusitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\" + }, + { + "displayName": "(473.8) Other chronic sinusitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\(473.8) Other chronic sinusitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic sinusitis (473)\\\\(473.8) Other chronic sinusitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\" + }, + { + "displayName": "(473.9) Unspecified sinusitis (chronic)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\(473.9) Unspecified sinusitis (chronic)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Chronic sinusitis (473)\\\\(473.9) Unspecified sinusitis (chronic)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Chronic sinusitis (473)\\" + }, + { + "displayName": "Nasal polyps (471)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Nasal polyps (471)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\" + }, + { + "displayName": "(471.0) Polyp of nasal cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Nasal polyps (471)\\(471.0) Polyp of nasal cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Nasal polyps (471)\\" + }, + { + "displayName": "(471.1) Polypoid sinus degeneration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Nasal polyps (471)\\(471.1) Polypoid sinus degeneration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Nasal polyps (471)\\" + }, + { + "displayName": "(471.8) Other polyp of sinus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Nasal polyps (471)\\(471.8) Other polyp of sinus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Nasal polyps (471)\\" + }, + { + "displayName": "(471.9) Unspecified nasal polyp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Nasal polyps (471)\\(471.9) Unspecified nasal polyp\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Nasal polyps (471)\\\\(471.9) Unspecified nasal polyp\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Nasal polyps (471)\\" + }, + { + "displayName": "Other diseases of upper respiratory tract (478)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Other diseases of upper respiratory tract (478)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\" + }, + { + "displayName": "(478.0) Hypertrophy of nasal turbinates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\(478.0) Hypertrophy of nasal turbinates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Other diseases of upper respiratory tract (478)\\\\(478.0) Hypertrophy of nasal turbinates\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\" + }, + { + "displayName": "(478.4) Polyp of vocal cord or larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\(478.4) Polyp of vocal cord or larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\" + }, + { + "displayName": "(478.5) Other diseases of vocal cords", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\(478.5) Other diseases of vocal cords\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Other diseases of upper respiratory tract (478)\\\\(478.5) Other diseases of vocal cords\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\" + }, + { + "displayName": "(478.6) Edema of larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\(478.6) Edema of larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\" + }, + { + "displayName": "(478.8) Upper respiratory tract hypersensitivity reaction, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\(478.8) Upper respiratory tract hypersensitivity reaction, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Other diseases of upper respiratory tract (478)\\\\(478.8) Upper respiratory tract hypersensitivity reaction, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\" + }, + { + "displayName": "(478.9) Other and unspecified diseases of upper respiratory tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\(478.9) Other and unspecified diseases of upper respiratory tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\" + }, + { + "displayName": "Other diseases of larynx, not elsewhere classified (478.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of larynx, not elsewhere classified (478.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\" + }, + { + "displayName": "(478.70) Unspecified disease of larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of larynx, not elsewhere classified (478.7)\\(478.70) Unspecified disease of larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of larynx, not elsewhere classified (478.7)\\" + }, + { + "displayName": "(478.71) Cellulitis and perichondritis of larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of larynx, not elsewhere classified (478.7)\\(478.71) Cellulitis and perichondritis of larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of larynx, not elsewhere classified (478.7)\\" + }, + { + "displayName": "(478.74) Stenosis of larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of larynx, not elsewhere classified (478.7)\\(478.74) Stenosis of larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of larynx, not elsewhere classified (478.7)\\" + }, + { + "displayName": "(478.75) Laryngeal spasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of larynx, not elsewhere classified (478.7)\\(478.75) Laryngeal spasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of larynx, not elsewhere classified (478.7)\\" + }, + { + "displayName": "(478.79) Other diseases of larynx, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of larynx, not elsewhere classified (478.7)\\(478.79) Other diseases of larynx, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of larynx, not elsewhere classified (478.7)\\" + }, + { + "displayName": "Other diseases of nasal cavity and sinuses (478.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of nasal cavity and sinuses (478.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\" + }, + { + "displayName": "(478.11) Nasal mucositis (ulcerative)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of nasal cavity and sinuses (478.1)\\(478.11) Nasal mucositis (ulcerative)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Other diseases of upper respiratory tract (478)\\\\Other diseases of nasal cavity and sinuses (478.1)\\\\(478.11) Nasal mucositis (ulcerative)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of nasal cavity and sinuses (478.1)\\" + }, + { + "displayName": "(478.19) Other disease of nasal cavity and sinuses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of nasal cavity and sinuses (478.1)\\(478.19) Other disease of nasal cavity and sinuses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of nasal cavity and sinuses (478.1)\\" + }, + { + "displayName": "Other diseases of pharynx, not elsewhere classified (478.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Other diseases of upper respiratory tract (478)\\\\Other diseases of pharynx, not elsewhere classified (478.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\" + }, + { + "displayName": "(478.20) Unspecified disease of pharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\(478.20) Unspecified disease of pharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Other diseases of upper respiratory tract (478)\\\\Other diseases of pharynx, not elsewhere classified (478.2)\\\\(478.20) Unspecified disease of pharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\" + }, + { + "displayName": "(478.21) Cellulitis of pharynx or nasopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\(478.21) Cellulitis of pharynx or nasopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\" + }, + { + "displayName": "(478.22) Parapharyngeal abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\(478.22) Parapharyngeal abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\" + }, + { + "displayName": "(478.24) Retropharyngeal abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\(478.24) Retropharyngeal abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\" + }, + { + "displayName": "(478.25) Edema of pharynx or nasopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\(478.25) Edema of pharynx or nasopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\" + }, + { + "displayName": "(478.26) Cyst of pharynx or nasopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\(478.26) Cyst of pharynx or nasopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\" + }, + { + "displayName": "(478.29) Other diseases of pharynx, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\(478.29) Other diseases of pharynx, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Other diseases of pharynx, not elsewhere classified (478.2)\\" + }, + { + "displayName": "Paralysis of vocal cords or larynx (478.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Paralysis of vocal cords or larynx (478.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\" + }, + { + "displayName": "(478.30) Paralysis of vocal cords or larynx, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Paralysis of vocal cords or larynx (478.3)\\(478.30) Paralysis of vocal cords or larynx, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Paralysis of vocal cords or larynx (478.3)\\" + }, + { + "displayName": "(478.31) Unilateral paralysis of vocal cords or larynx, partial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Paralysis of vocal cords or larynx (478.3)\\(478.31) Unilateral paralysis of vocal cords or larynx, partial\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Paralysis of vocal cords or larynx (478.3)\\" + }, + { + "displayName": "(478.32) Unilateral paralysis of vocal cords or larynx, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Paralysis of vocal cords or larynx (478.3)\\(478.32) Unilateral paralysis of vocal cords or larynx, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Paralysis of vocal cords or larynx (478.3)\\" + }, + { + "displayName": "(478.33) Bilateral paralysis of vocal cords or larynx, partial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Paralysis of vocal cords or larynx (478.3)\\(478.33) Bilateral paralysis of vocal cords or larynx, partial\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Other diseases of upper respiratory tract (478)\\\\Paralysis of vocal cords or larynx (478.3)\\\\(478.33) Bilateral paralysis of vocal cords or larynx, partial\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Paralysis of vocal cords or larynx (478.3)\\" + }, + { + "displayName": "(478.34) Bilateral paralysis of vocal cords or larynx, complete", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Paralysis of vocal cords or larynx (478.3)\\(478.34) Bilateral paralysis of vocal cords or larynx, complete\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Other diseases of the upper respiratory tract (470-478.99)\\\\Other diseases of upper respiratory tract (478)\\\\Paralysis of vocal cords or larynx (478.3)\\\\(478.34) Bilateral paralysis of vocal cords or larynx, complete\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Other diseases of the upper respiratory tract (470-478.99)\\Other diseases of upper respiratory tract (478)\\Paralysis of vocal cords or larynx (478.3)\\" + }, + { + "displayName": "Pneumoconioses and other lung diseases due to external agents (500-508.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\" + }, + { + "displayName": "(500) Coal workers' pneumoconiosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\(500) Coal workers' pneumoconiosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\" + }, + { + "displayName": "(501) Asbestosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\(501) Asbestosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\\\(501) Asbestosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\" + }, + { + "displayName": "(502) Pneumoconiosis due to other silica or silicates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\(502) Pneumoconiosis due to other silica or silicates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\" + }, + { + "displayName": "(503) Pneumoconiosis due to other inorganic dust", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\(503) Pneumoconiosis due to other inorganic dust\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\\\(503) Pneumoconiosis due to other inorganic dust\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\" + }, + { + "displayName": "(504) Pneumonopathy due to inhalation of other dust", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\(504) Pneumonopathy due to inhalation of other dust\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\\\(504) Pneumonopathy due to inhalation of other dust\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\" + }, + { + "displayName": "(505) Pneumoconiosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\(505) Pneumoconiosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\\\(505) Pneumoconiosis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\" + }, + { + "displayName": "Pneumonitis due to solids and liquids (507)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Pneumonitis due to solids and liquids (507)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\\\Pneumonitis due to solids and liquids (507)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\" + }, + { + "displayName": "(507.0) Pneumonitis due to inhalation of food or vomitus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Pneumonitis due to solids and liquids (507)\\(507.0) Pneumonitis due to inhalation of food or vomitus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\\\Pneumonitis due to solids and liquids (507)\\\\(507.0) Pneumonitis due to inhalation of food or vomitus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Pneumonitis due to solids and liquids (507)\\" + }, + { + "displayName": "(507.1) Pneumonitis due to inhalation of oils and essences", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Pneumonitis due to solids and liquids (507)\\(507.1) Pneumonitis due to inhalation of oils and essences\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Pneumonitis due to solids and liquids (507)\\" + }, + { + "displayName": "(507.8) Pneumonitis due to other solids and liquids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Pneumonitis due to solids and liquids (507)\\(507.8) Pneumonitis due to other solids and liquids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Pneumonitis due to solids and liquids (507)\\" + }, + { + "displayName": "Respiratory conditions due to chemical fumes and vapors (506)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\" + }, + { + "displayName": "(506.0) Bronchitis and pneumonitis due to fumes and vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\(506.0) Bronchitis and pneumonitis due to fumes and vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\" + }, + { + "displayName": "(506.1) Acute pulmonary edema due to fumes and vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\(506.1) Acute pulmonary edema due to fumes and vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\" + }, + { + "displayName": "(506.2) Upper respiratory inflammation due to fumes and vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\(506.2) Upper respiratory inflammation due to fumes and vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\" + }, + { + "displayName": "(506.3) Other acute and subacute respiratory conditions due to fumes and vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\(506.3) Other acute and subacute respiratory conditions due to fumes and vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\" + }, + { + "displayName": "(506.4) Chronic respiratory conditions due to fumes and vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\(506.4) Chronic respiratory conditions due to fumes and vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\" + }, + { + "displayName": "(506.9) Unspecified respiratory conditions due to fumes and vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\(506.9) Unspecified respiratory conditions due to fumes and vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to chemical fumes and vapors (506)\\" + }, + { + "displayName": "Respiratory conditions due to other and unspecified external agents (508)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to other and unspecified external agents (508)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\" + }, + { + "displayName": "(508.0) Acute pulmonary manifestations due to radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to other and unspecified external agents (508)\\(508.0) Acute pulmonary manifestations due to radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to other and unspecified external agents (508)\\" + }, + { + "displayName": "(508.1) Chronic and other pulmonary manifestations due to radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to other and unspecified external agents (508)\\(508.1) Chronic and other pulmonary manifestations due to radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to other and unspecified external agents (508)\\" + }, + { + "displayName": "(508.8) Respiratory conditions due to other specified external agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to other and unspecified external agents (508)\\(508.8) Respiratory conditions due to other specified external agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to other and unspecified external agents (508)\\" + }, + { + "displayName": "(508.9) Respiratory conditions due to unspecified external agent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to other and unspecified external agents (508)\\(508.9) Respiratory conditions due to unspecified external agent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumoconioses and other lung diseases due to external agents (500-508.99)\\Respiratory conditions due to other and unspecified external agents (508)\\" + }, + { + "displayName": "Pneumonia and influenza (480-488.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\" + }, + { + "displayName": "(481) Pneumococcal pneumonia [Streptococcus pneumoniae pneumonia]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\(481) Pneumococcal pneumonia [Streptococcus pneumoniae pneumonia]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\" + }, + { + "displayName": "(485) Bronchopneumonia, organism unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\(485) Bronchopneumonia, organism unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\" + }, + { + "displayName": "(486) Pneumonia, organism unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\(486) Pneumonia, organism unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\" + }, + { + "displayName": "Influenza (487)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza (487)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\" + }, + { + "displayName": "(487.0) Influenza with pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza (487)\\(487.0) Influenza with pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza (487)\\" + }, + { + "displayName": "(487.1) Influenza with other respiratory manifestations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza (487)\\(487.1) Influenza with other respiratory manifestations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza (487)\\" + }, + { + "displayName": "(487.8) Influenza with other manifestations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza (487)\\(487.8) Influenza with other manifestations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza (487)\\" + }, + { + "displayName": "Influenza due to certain identified influenza viruses (488)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Influenza due to certain identified influenza viruses (488)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\" + }, + { + "displayName": "Influenza due to identified 2009 H1N1 influenza virus (488.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to identified 2009 H1N1 influenza virus (488.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\" + }, + { + "displayName": "(488.11) Influenza due to identified 2009 H1N1 influenza virus with pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to identified 2009 H1N1 influenza virus (488.1)\\(488.11) Influenza due to identified 2009 H1N1 influenza virus with pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Influenza due to certain identified influenza viruses (488)\\\\Influenza due to identified 2009 H1N1 influenza virus (488.1)\\\\(488.11) Influenza due to identified 2009 H1N1 influenza virus with pneumonia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to identified 2009 H1N1 influenza virus (488.1)\\" + }, + { + "displayName": "(488.12) Influenza due to identified 2009 H1N1 influenza virus with other respiratory manifestations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to identified 2009 H1N1 influenza virus (488.1)\\(488.12) Influenza due to identified 2009 H1N1 influenza virus with other respiratory manifestations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to identified 2009 H1N1 influenza virus (488.1)\\" + }, + { + "displayName": "Influenza due to identified avian influenza virus (488.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to identified avian influenza virus (488.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\" + }, + { + "displayName": "(488.02) Influenza due to identified avian influenza virus with other respiratory manifestations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to identified avian influenza virus (488.0)\\(488.02) Influenza due to identified avian influenza virus with other respiratory manifestations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to identified avian influenza virus (488.0)\\" + }, + { + "displayName": "Influenza due to novel influenza A (488.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to novel influenza A (488.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Influenza due to certain identified influenza viruses (488)\\\\Influenza due to novel influenza A (488.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\" + }, + { + "displayName": "(488.82) Influenza due to identified novel influenza A virus with other respiratory manifestations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to novel influenza A (488.8)\\(488.82) Influenza due to identified novel influenza A virus with other respiratory manifestations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to novel influenza A (488.8)\\" + }, + { + "displayName": "(488.89) Influenza due to identified novel influenza A virus with other manifestations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to novel influenza A (488.8)\\(488.89) Influenza due to identified novel influenza A virus with other manifestations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Influenza due to certain identified influenza viruses (488)\\Influenza due to novel influenza A (488.8)\\" + }, + { + "displayName": "Other bacterial pneumonia (482)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\" + }, + { + "displayName": "(482.0) Pneumonia due to Klebsiella pneumoniae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\(482.0) Pneumonia due to Klebsiella pneumoniae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\" + }, + { + "displayName": "(482.1) Pneumonia due to Pseudomonas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\(482.1) Pneumonia due to Pseudomonas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\" + }, + { + "displayName": "(482.2) Pneumonia due to Hemophilus influenzae [H. influenzae]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\(482.2) Pneumonia due to Hemophilus influenzae [H. influenzae]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\" + }, + { + "displayName": "(482.9) Bacterial pneumonia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\(482.9) Bacterial pneumonia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\" + }, + { + "displayName": "Pneumonia due to other specified bacteria (482.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to other specified bacteria (482.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\" + }, + { + "displayName": "(482.81) Pneumonia due to anaerobes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to other specified bacteria (482.8)\\(482.81) Pneumonia due to anaerobes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Other bacterial pneumonia (482)\\\\Pneumonia due to other specified bacteria (482.8)\\\\(482.81) Pneumonia due to anaerobes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to other specified bacteria (482.8)\\" + }, + { + "displayName": "(482.82) Pneumonia due to escherichia coli [E. coli]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to other specified bacteria (482.8)\\(482.82) Pneumonia due to escherichia coli [E. coli]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Other bacterial pneumonia (482)\\\\Pneumonia due to other specified bacteria (482.8)\\\\(482.82) Pneumonia due to escherichia coli [E. coli]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to other specified bacteria (482.8)\\" + }, + { + "displayName": "(482.83) Pneumonia due to other gram-negative bacteria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to other specified bacteria (482.8)\\(482.83) Pneumonia due to other gram-negative bacteria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to other specified bacteria (482.8)\\" + }, + { + "displayName": "(482.84) Pneumonia due to Legionnaires' disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to other specified bacteria (482.8)\\(482.84) Pneumonia due to Legionnaires' disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to other specified bacteria (482.8)\\" + }, + { + "displayName": "(482.89) Pneumonia due to other specified bacteria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to other specified bacteria (482.8)\\(482.89) Pneumonia due to other specified bacteria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to other specified bacteria (482.8)\\" + }, + { + "displayName": "Pneumonia due to Staphylococcus (482.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Staphylococcus (482.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Other bacterial pneumonia (482)\\\\Pneumonia due to Staphylococcus (482.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\" + }, + { + "displayName": "(482.40) Pneumonia due to Staphylococcus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Staphylococcus (482.4)\\(482.40) Pneumonia due to Staphylococcus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Other bacterial pneumonia (482)\\\\Pneumonia due to Staphylococcus (482.4)\\\\(482.40) Pneumonia due to Staphylococcus, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Staphylococcus (482.4)\\" + }, + { + "displayName": "(482.41) Methicillin susceptible pneumonia due to Staphylococcus aureus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Staphylococcus (482.4)\\(482.41) Methicillin susceptible pneumonia due to Staphylococcus aureus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Other bacterial pneumonia (482)\\\\Pneumonia due to Staphylococcus (482.4)\\\\(482.41) Methicillin susceptible pneumonia due to Staphylococcus aureus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Staphylococcus (482.4)\\" + }, + { + "displayName": "(482.42) Methicillin resistant pneumonia due to Staphylococcus aureus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Staphylococcus (482.4)\\(482.42) Methicillin resistant pneumonia due to Staphylococcus aureus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Staphylococcus (482.4)\\" + }, + { + "displayName": "(482.49) Other Staphylococcus pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Staphylococcus (482.4)\\(482.49) Other Staphylococcus pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Staphylococcus (482.4)\\" + }, + { + "displayName": "Pneumonia due to Streptococcus (482.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Streptococcus (482.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\" + }, + { + "displayName": "(482.30) Pneumonia due to Streptococcus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Streptococcus (482.3)\\(482.30) Pneumonia due to Streptococcus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Streptococcus (482.3)\\" + }, + { + "displayName": "(482.31) Pneumonia due to Streptococcus, group A", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Streptococcus (482.3)\\(482.31) Pneumonia due to Streptococcus, group A\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Streptococcus (482.3)\\" + }, + { + "displayName": "(482.32) Pneumonia due to Streptococcus, group B", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Streptococcus (482.3)\\(482.32) Pneumonia due to Streptococcus, group B\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Streptococcus (482.3)\\" + }, + { + "displayName": "(482.39) Pneumonia due to other Streptococcus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Streptococcus (482.3)\\(482.39) Pneumonia due to other Streptococcus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Other bacterial pneumonia (482)\\\\Pneumonia due to Streptococcus (482.3)\\\\(482.39) Pneumonia due to other Streptococcus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Other bacterial pneumonia (482)\\Pneumonia due to Streptococcus (482.3)\\" + }, + { + "displayName": "Pneumonia due to other specified organism (483)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia due to other specified organism (483)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Pneumonia due to other specified organism (483)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\" + }, + { + "displayName": "(483.0) Pneumonia due to mycoplasma pneumoniae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia due to other specified organism (483)\\(483.0) Pneumonia due to mycoplasma pneumoniae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Pneumonia due to other specified organism (483)\\\\(483.0) Pneumonia due to mycoplasma pneumoniae\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia due to other specified organism (483)\\" + }, + { + "displayName": "(483.1) Pneumonia due to chlamydia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia due to other specified organism (483)\\(483.1) Pneumonia due to chlamydia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Pneumonia due to other specified organism (483)\\\\(483.1) Pneumonia due to chlamydia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia due to other specified organism (483)\\" + }, + { + "displayName": "(483.8) Pneumonia due to other specified organism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia due to other specified organism (483)\\(483.8) Pneumonia due to other specified organism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia due to other specified organism (483)\\" + }, + { + "displayName": "Pneumonia in infectious diseases classified elsewhere (484)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\" + }, + { + "displayName": "(484.1) Pneumonia in cytomegalic inclusion disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\(484.1) Pneumonia in cytomegalic inclusion disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\" + }, + { + "displayName": "(484.3) Pneumonia in whooping cough", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\(484.3) Pneumonia in whooping cough\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\" + }, + { + "displayName": "(484.5) Pneumonia in anthrax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\(484.5) Pneumonia in anthrax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\" + }, + { + "displayName": "(484.6) Pneumonia in aspergillosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\(484.6) Pneumonia in aspergillosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\" + }, + { + "displayName": "(484.7) Pneumonia in other systemic mycoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\(484.7) Pneumonia in other systemic mycoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\" + }, + { + "displayName": "(484.8) Pneumonia in other infectious diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\(484.8) Pneumonia in other infectious diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Pneumonia in infectious diseases classified elsewhere (484)\\" + }, + { + "displayName": "Viral pneumonia (480)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\" + }, + { + "displayName": "(480.0) Pneumonia due to adenovirus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\(480.0) Pneumonia due to adenovirus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Viral pneumonia (480)\\\\(480.0) Pneumonia due to adenovirus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\" + }, + { + "displayName": "(480.1) Pneumonia due to respiratory syncytial virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\(480.1) Pneumonia due to respiratory syncytial virus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the respiratory system (460-519.99)\\\\Pneumonia and influenza (480-488.99)\\\\Viral pneumonia (480)\\\\(480.1) Pneumonia due to respiratory syncytial virus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\" + }, + { + "displayName": "(480.2) Pneumonia due to parainfluenza virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\(480.2) Pneumonia due to parainfluenza virus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\" + }, + { + "displayName": "(480.3) Pneumonia due to SARS-associated coronavirus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\(480.3) Pneumonia due to SARS-associated coronavirus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\" + }, + { + "displayName": "(480.8) Pneumonia due to other virus not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\(480.8) Pneumonia due to other virus not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\" + }, + { + "displayName": "(480.9) Viral pneumonia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\(480.9) Viral pneumonia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the respiratory system (460-519.99)\\Pneumonia and influenza (480-488.99)\\Viral pneumonia (480)\\" + }, + { + "displayName": "Diseases of the skin and subcutaneous tissue (680-709.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Infections of skin and subcutaneous tissue (680-686.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\" + }, + { + "displayName": "(683) Acute lymphadenitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\(683) Acute lymphadenitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\(683) Acute lymphadenitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\" + }, + { + "displayName": "(684) Impetigo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\(684) Impetigo\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\" + }, + { + "displayName": "Carbuncle and furuncle (680)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\" + }, + { + "displayName": "(680.0) Carbuncle and furuncle of face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\(680.0) Carbuncle and furuncle of face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\" + }, + { + "displayName": "(680.1) Carbuncle and furuncle of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\(680.1) Carbuncle and furuncle of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\" + }, + { + "displayName": "(680.2) Carbuncle and furuncle of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\(680.2) Carbuncle and furuncle of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\" + }, + { + "displayName": "(680.3) Carbuncle and furuncle of upper arm and forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\(680.3) Carbuncle and furuncle of upper arm and forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\" + }, + { + "displayName": "(680.4) Carbuncle and furuncle of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\(680.4) Carbuncle and furuncle of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\" + }, + { + "displayName": "(680.5) Carbuncle and furuncle of buttock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\(680.5) Carbuncle and furuncle of buttock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\" + }, + { + "displayName": "(680.6) Carbuncle and furuncle of leg, except foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\(680.6) Carbuncle and furuncle of leg, except foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\" + }, + { + "displayName": "(680.7) Carbuncle and furuncle of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\(680.7) Carbuncle and furuncle of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\" + }, + { + "displayName": "(680.8) Carbuncle and furuncle of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\(680.8) Carbuncle and furuncle of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\Carbuncle and furuncle (680)\\\\(680.8) Carbuncle and furuncle of other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\" + }, + { + "displayName": "(680.9) Carbuncle and furuncle of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\(680.9) Carbuncle and furuncle of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\Carbuncle and furuncle (680)\\\\(680.9) Carbuncle and furuncle of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Carbuncle and furuncle (680)\\" + }, + { + "displayName": "Cellulitis and abscess of finger and toe (681)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\Cellulitis and abscess of finger and toe (681)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\" + }, + { + "displayName": "(681.9) Cellulitis and abscess of unspecified digit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\(681.9) Cellulitis and abscess of unspecified digit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\" + }, + { + "displayName": "Cellulitis and abscess of finger (681.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of finger (681.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\" + }, + { + "displayName": "(681.00) Cellulitis and abscess of finger, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of finger (681.0)\\(681.00) Cellulitis and abscess of finger, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of finger (681.0)\\" + }, + { + "displayName": "(681.01) Felon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of finger (681.0)\\(681.01) Felon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of finger (681.0)\\" + }, + { + "displayName": "(681.02) Onychia and paronychia of finger", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of finger (681.0)\\(681.02) Onychia and paronychia of finger\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of finger (681.0)\\" + }, + { + "displayName": "Cellulitis and abscess of toe (681.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of toe (681.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\" + }, + { + "displayName": "(681.10) Cellulitis and abscess of toe, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of toe (681.1)\\(681.10) Cellulitis and abscess of toe, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of toe (681.1)\\" + }, + { + "displayName": "(681.11) Onychia and paronychia of toe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of toe (681.1)\\(681.11) Onychia and paronychia of toe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Cellulitis and abscess of finger and toe (681)\\Cellulitis and abscess of toe (681.1)\\" + }, + { + "displayName": "Other cellulitis and abscess (682)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\" + }, + { + "displayName": "(682.0) Cellulitis and abscess of face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\(682.0) Cellulitis and abscess of face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\Other cellulitis and abscess (682)\\\\(682.0) Cellulitis and abscess of face\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\" + }, + { + "displayName": "(682.1) Cellulitis and abscess of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\(682.1) Cellulitis and abscess of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\Other cellulitis and abscess (682)\\\\(682.1) Cellulitis and abscess of neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\" + }, + { + "displayName": "(682.2) Cellulitis and abscess of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\(682.2) Cellulitis and abscess of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\" + }, + { + "displayName": "(682.3) Cellulitis and abscess of upper arm and forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\(682.3) Cellulitis and abscess of upper arm and forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\" + }, + { + "displayName": "(682.4) Cellulitis and abscess of hand, except fingers and thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\(682.4) Cellulitis and abscess of hand, except fingers and thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\" + }, + { + "displayName": "(682.5) Cellulitis and abscess of buttock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\(682.5) Cellulitis and abscess of buttock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\Other cellulitis and abscess (682)\\\\(682.5) Cellulitis and abscess of buttock\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\" + }, + { + "displayName": "(682.6) Cellulitis and abscess of leg, except foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\(682.6) Cellulitis and abscess of leg, except foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\" + }, + { + "displayName": "(682.7) Cellulitis and abscess of foot, except toes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\(682.7) Cellulitis and abscess of foot, except toes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\" + }, + { + "displayName": "(682.8) Cellulitis and abscess of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\(682.8) Cellulitis and abscess of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\" + }, + { + "displayName": "(682.9) Cellulitis and abscess of unspecified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\(682.9) Cellulitis and abscess of unspecified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other cellulitis and abscess (682)\\" + }, + { + "displayName": "Other local infections of skin and subcutaneous tissue (686)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\" + }, + { + "displayName": "(686.1) Pyogenic granuloma of skin and subcutaneous tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\(686.1) Pyogenic granuloma of skin and subcutaneous tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\" + }, + { + "displayName": "(686.8) Other specified local infections of skin and subcutaneous tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\(686.8) Other specified local infections of skin and subcutaneous tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\" + }, + { + "displayName": "(686.9) Unspecified local infection of skin and subcutaneous tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\(686.9) Unspecified local infection of skin and subcutaneous tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\" + }, + { + "displayName": "Pyoderma (686.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\Pyoderma (686.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\" + }, + { + "displayName": "(686.00) Pyoderma, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\Pyoderma (686.0)\\(686.00) Pyoderma, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\Other local infections of skin and subcutaneous tissue (686)\\\\Pyoderma (686.0)\\\\(686.00) Pyoderma, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\Pyoderma (686.0)\\" + }, + { + "displayName": "(686.01) Pyoderma gangrenosum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\Pyoderma (686.0)\\(686.01) Pyoderma gangrenosum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\Other local infections of skin and subcutaneous tissue (686)\\\\Pyoderma (686.0)\\\\(686.01) Pyoderma gangrenosum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\Pyoderma (686.0)\\" + }, + { + "displayName": "(686.09) Other pyoderma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\Pyoderma (686.0)\\(686.09) Other pyoderma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\Other local infections of skin and subcutaneous tissue (686)\\\\Pyoderma (686.0)\\\\(686.09) Other pyoderma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Other local infections of skin and subcutaneous tissue (686)\\Pyoderma (686.0)\\" + }, + { + "displayName": "Pilonidal cyst (685)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Pilonidal cyst (685)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Infections of skin and subcutaneous tissue (680-686.99)\\\\Pilonidal cyst (685)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\" + }, + { + "displayName": "(685.0) Pilonidal cyst with abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Pilonidal cyst (685)\\(685.0) Pilonidal cyst with abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Pilonidal cyst (685)\\" + }, + { + "displayName": "(685.1) Pilonidal cyst without mention of abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Pilonidal cyst (685)\\(685.1) Pilonidal cyst without mention of abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Infections of skin and subcutaneous tissue (680-686.99)\\Pilonidal cyst (685)\\" + }, + { + "displayName": "Other diseases of skin and subcutaneous tissue (700-709.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\" + }, + { + "displayName": "(700) Corns and callosities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\(700) Corns and callosities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\" + }, + { + "displayName": "Chronic ulcer of skin (707)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\" + }, + { + "displayName": "(707.8) Chronic ulcer of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\(707.8) Chronic ulcer of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\" + }, + { + "displayName": "(707.9) Chronic ulcer of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\(707.9) Chronic ulcer of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\" + }, + { + "displayName": "Pressure ulcer (707.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\" + }, + { + "displayName": "(707.00) Pressure ulcer, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\(707.00) Pressure ulcer, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\" + }, + { + "displayName": "(707.01) Pressure ulcer, elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\(707.01) Pressure ulcer, elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\" + }, + { + "displayName": "(707.02) Pressure ulcer, upper back", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\(707.02) Pressure ulcer, upper back\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\" + }, + { + "displayName": "(707.03) Pressure ulcer, lower back", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\(707.03) Pressure ulcer, lower back\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\" + }, + { + "displayName": "(707.04) Pressure ulcer, hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\(707.04) Pressure ulcer, hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\" + }, + { + "displayName": "(707.05) Pressure ulcer, buttock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\(707.05) Pressure ulcer, buttock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\" + }, + { + "displayName": "(707.06) Pressure ulcer, ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\(707.06) Pressure ulcer, ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\" + }, + { + "displayName": "(707.07) Pressure ulcer, heel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\(707.07) Pressure ulcer, heel\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\" + }, + { + "displayName": "(707.09) Pressure ulcer, other site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\(707.09) Pressure ulcer, other site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer (707.0)\\" + }, + { + "displayName": "Pressure ulcer stages (707.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\" + }, + { + "displayName": "(707.20) Pressure ulcer, unspecified stage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\(707.20) Pressure ulcer, unspecified stage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\" + }, + { + "displayName": "(707.21) Pressure ulcer, stage I", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\(707.21) Pressure ulcer, stage I\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\" + }, + { + "displayName": "(707.22) Pressure ulcer, stage II", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\(707.22) Pressure ulcer, stage II\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\" + }, + { + "displayName": "(707.23) Pressure ulcer, stage III", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\(707.23) Pressure ulcer, stage III\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\" + }, + { + "displayName": "(707.24) Pressure ulcer, stage IV", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\(707.24) Pressure ulcer, stage IV\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\" + }, + { + "displayName": "(707.25) Pressure ulcer, unstageable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\(707.25) Pressure ulcer, unstageable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Pressure ulcer stages (707.2)\\" + }, + { + "displayName": "Ulcer of lower limbs, except pressure ulcer (707.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\" + }, + { + "displayName": "(707.10) Ulcer of lower limb, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\(707.10) Ulcer of lower limb, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\" + }, + { + "displayName": "(707.11) Ulcer of thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\(707.11) Ulcer of thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\" + }, + { + "displayName": "(707.12) Ulcer of calf", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\(707.12) Ulcer of calf\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\" + }, + { + "displayName": "(707.13) Ulcer of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\(707.13) Ulcer of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\" + }, + { + "displayName": "(707.14) Ulcer of heel and midfoot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\(707.14) Ulcer of heel and midfoot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\" + }, + { + "displayName": "(707.15) Ulcer of other part of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\(707.15) Ulcer of other part of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\" + }, + { + "displayName": "(707.19) Ulcer of other part of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\(707.19) Ulcer of other part of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Chronic ulcer of skin (707)\\Ulcer of lower limbs, except pressure ulcer (707.1)\\" + }, + { + "displayName": "Diseases of hair and hair follicles (704)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\" + }, + { + "displayName": "(704.1) Hirsutism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\(704.1) Hirsutism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\" + }, + { + "displayName": "(704.2) Abnormalities of the hair", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\(704.2) Abnormalities of the hair\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Diseases of hair and hair follicles (704)\\\\(704.2) Abnormalities of the hair\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\" + }, + { + "displayName": "(704.3) Variations in hair color", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\(704.3) Variations in hair color\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Diseases of hair and hair follicles (704)\\\\(704.3) Variations in hair color\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\" + }, + { + "displayName": "(704.8) Other specified diseases of hair and hair follicles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\(704.8) Other specified diseases of hair and hair follicles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\" + }, + { + "displayName": "(704.9) Unspecified disease of hair and hair follicles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\(704.9) Unspecified disease of hair and hair follicles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\" + }, + { + "displayName": "Alopecia (704.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Alopecia (704.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\" + }, + { + "displayName": "(704.00) Alopecia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Alopecia (704.0)\\(704.00) Alopecia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Alopecia (704.0)\\" + }, + { + "displayName": "(704.01) Alopecia areata", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Alopecia (704.0)\\(704.01) Alopecia areata\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Diseases of hair and hair follicles (704)\\\\Alopecia (704.0)\\\\(704.01) Alopecia areata\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Alopecia (704.0)\\" + }, + { + "displayName": "(704.02) Telogen effluvium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Alopecia (704.0)\\(704.02) Telogen effluvium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Alopecia (704.0)\\" + }, + { + "displayName": "(704.09) Other alopecia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Alopecia (704.0)\\(704.09) Other alopecia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Alopecia (704.0)\\" + }, + { + "displayName": "Pilar and trichilemmal cysts (704.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Pilar and trichilemmal cysts (704.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\" + }, + { + "displayName": "(704.41) Pilar cyst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Pilar and trichilemmal cysts (704.4)\\(704.41) Pilar cyst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Pilar and trichilemmal cysts (704.4)\\" + }, + { + "displayName": "(704.42) Trichilemmal cyst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Pilar and trichilemmal cysts (704.4)\\(704.42) Trichilemmal cyst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of hair and hair follicles (704)\\Pilar and trichilemmal cysts (704.4)\\" + }, + { + "displayName": "Diseases of nail (703)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of nail (703)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\" + }, + { + "displayName": "(703.0) Ingrowing nail", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of nail (703)\\(703.0) Ingrowing nail\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of nail (703)\\" + }, + { + "displayName": "(703.8) Other specified diseases of nail", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of nail (703)\\(703.8) Other specified diseases of nail\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Diseases of nail (703)\\\\(703.8) Other specified diseases of nail\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of nail (703)\\" + }, + { + "displayName": "(703.9) Unspecified disease of nail", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of nail (703)\\(703.9) Unspecified disease of nail\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Diseases of nail (703)\\\\(703.9) Unspecified disease of nail\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of nail (703)\\" + }, + { + "displayName": "Diseases of sebaceous glands (706)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\" + }, + { + "displayName": "(706.0) Acne varioliformis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\(706.0) Acne varioliformis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Diseases of sebaceous glands (706)\\\\(706.0) Acne varioliformis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\" + }, + { + "displayName": "(706.1) Other acne", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\(706.1) Other acne\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Diseases of sebaceous glands (706)\\\\(706.1) Other acne\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\" + }, + { + "displayName": "(706.2) Sebaceous cyst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\(706.2) Sebaceous cyst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\" + }, + { + "displayName": "(706.3) Seborrhea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\(706.3) Seborrhea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\" + }, + { + "displayName": "(706.8) Other specified diseases of sebaceous glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\(706.8) Other specified diseases of sebaceous glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\" + }, + { + "displayName": "(706.9) Unspecified disease of sebaceous glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\(706.9) Unspecified disease of sebaceous glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Diseases of sebaceous glands (706)\\" + }, + { + "displayName": "Disorders of sweat glands (705)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\" + }, + { + "displayName": "(705.0) Anhidrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\(705.0) Anhidrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\" + }, + { + "displayName": "(705.1) Prickly heat", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\(705.1) Prickly heat\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\" + }, + { + "displayName": "(705.9) Unspecified disorder of sweat glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\(705.9) Unspecified disorder of sweat glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Disorders of sweat glands (705)\\\\(705.9) Unspecified disorder of sweat glands\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\" + }, + { + "displayName": "Focal hyperhidrosis (705.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Focal hyperhidrosis (705.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Disorders of sweat glands (705)\\\\Focal hyperhidrosis (705.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\" + }, + { + "displayName": "(705.21) Primary focal hyperhidrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Focal hyperhidrosis (705.2)\\(705.21) Primary focal hyperhidrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Disorders of sweat glands (705)\\\\Focal hyperhidrosis (705.2)\\\\(705.21) Primary focal hyperhidrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Focal hyperhidrosis (705.2)\\" + }, + { + "displayName": "(705.22) Secondary focal hyperhidrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Focal hyperhidrosis (705.2)\\(705.22) Secondary focal hyperhidrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Focal hyperhidrosis (705.2)\\" + }, + { + "displayName": "Other specified disorders of sweat glands (705.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Other specified disorders of sweat glands (705.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Disorders of sweat glands (705)\\\\Other specified disorders of sweat glands (705.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\" + }, + { + "displayName": "(705.81) Dyshidrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Other specified disorders of sweat glands (705.8)\\(705.81) Dyshidrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Other specified disorders of sweat glands (705.8)\\" + }, + { + "displayName": "(705.82) Fox-Fordyce disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Other specified disorders of sweat glands (705.8)\\(705.82) Fox-Fordyce disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Disorders of sweat glands (705)\\\\Other specified disorders of sweat glands (705.8)\\\\(705.82) Fox-Fordyce disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Other specified disorders of sweat glands (705.8)\\" + }, + { + "displayName": "(705.83) Hidradenitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Other specified disorders of sweat glands (705.8)\\(705.83) Hidradenitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Other specified disorders of sweat glands (705.8)\\" + }, + { + "displayName": "(705.89) Other specified disorders of sweat glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Other specified disorders of sweat glands (705.8)\\(705.89) Other specified disorders of sweat glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Disorders of sweat glands (705)\\Other specified disorders of sweat glands (705.8)\\" + }, + { + "displayName": "Other dermatoses (702)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other dermatoses (702)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\" + }, + { + "displayName": "(702.0) Actinic keratosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other dermatoses (702)\\(702.0) Actinic keratosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other dermatoses (702)\\" + }, + { + "displayName": "(702.8) Other specified dermatoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other dermatoses (702)\\(702.8) Other specified dermatoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other dermatoses (702)\\" + }, + { + "displayName": "Seborrheic keratosis (702.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other dermatoses (702)\\Seborrheic keratosis (702.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other dermatoses (702)\\" + }, + { + "displayName": "(702.11) Inflamed seborrheic keratosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other dermatoses (702)\\Seborrheic keratosis (702.1)\\(702.11) Inflamed seborrheic keratosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other dermatoses (702)\\Seborrheic keratosis (702.1)\\" + }, + { + "displayName": "(702.19) Other seborrheic keratosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other dermatoses (702)\\Seborrheic keratosis (702.1)\\(702.19) Other seborrheic keratosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other dermatoses (702)\\Seborrheic keratosis (702.1)\\" + }, + { + "displayName": "Other disorders of skin and subcutaneous tissue (709)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\" + }, + { + "displayName": "(709.1) Vascular disorders of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\(709.1) Vascular disorders of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\" + }, + { + "displayName": "(709.2) Scar conditions and fibrosis of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\(709.2) Scar conditions and fibrosis of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\" + }, + { + "displayName": "(709.3) Degenerative skin disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\(709.3) Degenerative skin disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\" + }, + { + "displayName": "(709.4) Foreign body granuloma of skin and subcutaneous tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\(709.4) Foreign body granuloma of skin and subcutaneous tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\" + }, + { + "displayName": "(709.8) Other specified disorders of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\(709.8) Other specified disorders of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\" + }, + { + "displayName": "(709.9) Unspecified disorder of skin and subcutaneous tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\(709.9) Unspecified disorder of skin and subcutaneous tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\" + }, + { + "displayName": "Dyschromia (709.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\Dyschromia (709.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\" + }, + { + "displayName": "(709.00) Dyschromia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\Dyschromia (709.0)\\(709.00) Dyschromia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\Dyschromia (709.0)\\" + }, + { + "displayName": "(709.01) Vitiligo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\Dyschromia (709.0)\\(709.01) Vitiligo\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\Dyschromia (709.0)\\" + }, + { + "displayName": "(709.09) Other dyschromia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\Dyschromia (709.0)\\(709.09) Other dyschromia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other disorders of skin and subcutaneous tissue (709)\\Dyschromia (709.0)\\" + }, + { + "displayName": "Other hypertrophic and atrophic conditions of skin (701)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\" + }, + { + "displayName": "(701.0) Circumscribed scleroderma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\(701.0) Circumscribed scleroderma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\" + }, + { + "displayName": "(701.1) Keratoderma, acquired", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\(701.1) Keratoderma, acquired\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\" + }, + { + "displayName": "(701.2) Acquired acanthosis nigricans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\(701.2) Acquired acanthosis nigricans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\" + }, + { + "displayName": "(701.3) Striae atrophicae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\(701.3) Striae atrophicae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\" + }, + { + "displayName": "(701.4) Keloid scar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\(701.4) Keloid scar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\" + }, + { + "displayName": "(701.5) Other abnormal granulation tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\(701.5) Other abnormal granulation tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\" + }, + { + "displayName": "(701.8) Other specified hypertrophic and atrophic conditions of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\(701.8) Other specified hypertrophic and atrophic conditions of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\" + }, + { + "displayName": "(701.9) Unspecified hypertrophic and atrophic conditions of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\(701.9) Unspecified hypertrophic and atrophic conditions of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Other hypertrophic and atrophic conditions of skin (701)\\" + }, + { + "displayName": "Urticaria (708)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\" + }, + { + "displayName": "(708.0) Allergic urticaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\(708.0) Allergic urticaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\" + }, + { + "displayName": "(708.1) Idiopathic urticaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\(708.1) Idiopathic urticaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\" + }, + { + "displayName": "(708.2) Urticaria due to cold and heat", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\(708.2) Urticaria due to cold and heat\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Urticaria (708)\\\\(708.2) Urticaria due to cold and heat\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\" + }, + { + "displayName": "(708.3) Dermatographic urticaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\(708.3) Dermatographic urticaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Urticaria (708)\\\\(708.3) Dermatographic urticaria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\" + }, + { + "displayName": "(708.4) Vibratory urticaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\(708.4) Vibratory urticaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Urticaria (708)\\\\(708.4) Vibratory urticaria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\" + }, + { + "displayName": "(708.5) Cholinergic urticaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\(708.5) Cholinergic urticaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Urticaria (708)\\\\(708.5) Cholinergic urticaria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\" + }, + { + "displayName": "(708.8) Other specified urticaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\(708.8) Other specified urticaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Urticaria (708)\\\\(708.8) Other specified urticaria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\" + }, + { + "displayName": "(708.9) Urticaria, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\(708.9) Urticaria, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other diseases of skin and subcutaneous tissue (700-709.99)\\\\Urticaria (708)\\\\(708.9) Urticaria, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other diseases of skin and subcutaneous tissue (700-709.99)\\Urticaria (708)\\" + }, + { + "displayName": "Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\" + }, + { + "displayName": "Atopic dermatitis and related conditions (691)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Atopic dermatitis and related conditions (691)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\" + }, + { + "displayName": "(691.0) Diaper or napkin rash", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Atopic dermatitis and related conditions (691)\\(691.0) Diaper or napkin rash\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Atopic dermatitis and related conditions (691)\\" + }, + { + "displayName": "(691.8) Other atopic dermatitis and related conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Atopic dermatitis and related conditions (691)\\(691.8) Other atopic dermatitis and related conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Atopic dermatitis and related conditions (691)\\" + }, + { + "displayName": "Bullous dermatoses (694)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\" + }, + { + "displayName": "(694.0) Dermatitis herpetiformis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\(694.0) Dermatitis herpetiformis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\" + }, + { + "displayName": "(694.1) Subcorneal pustular dermatosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\(694.1) Subcorneal pustular dermatosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\" + }, + { + "displayName": "(694.2) Juvenile dermatitis herpetiformis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\(694.2) Juvenile dermatitis herpetiformis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\" + }, + { + "displayName": "(694.3) Impetigo herpetiformis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\(694.3) Impetigo herpetiformis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\" + }, + { + "displayName": "(694.4) Pemphigus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\(694.4) Pemphigus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\" + }, + { + "displayName": "(694.5) Pemphigoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\(694.5) Pemphigoid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\" + }, + { + "displayName": "(694.8) Other specified bullous dermatoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\(694.8) Other specified bullous dermatoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\" + }, + { + "displayName": "(694.9) Unspecified bullous dermatoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\(694.9) Unspecified bullous dermatoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Bullous dermatoses (694)\\\\(694.9) Unspecified bullous dermatoses\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\" + }, + { + "displayName": "Benign mucous membrane pemphigoid (694.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\Benign mucous membrane pemphigoid (694.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Bullous dermatoses (694)\\\\Benign mucous membrane pemphigoid (694.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\" + }, + { + "displayName": "(694.60) Benign mucous membrane pemphigoid without mention of ocular involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\Benign mucous membrane pemphigoid (694.6)\\(694.60) Benign mucous membrane pemphigoid without mention of ocular involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\Benign mucous membrane pemphigoid (694.6)\\" + }, + { + "displayName": "(694.61) Benign mucous membrane pemphigoid with ocular involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\Benign mucous membrane pemphigoid (694.6)\\(694.61) Benign mucous membrane pemphigoid with ocular involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Bullous dermatoses (694)\\Benign mucous membrane pemphigoid (694.6)\\" + }, + { + "displayName": "Contact dermatitis and other eczema (692)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\" + }, + { + "displayName": "(692.0) Contact dermatitis and other eczema due to detergents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\(692.0) Contact dermatitis and other eczema due to detergents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Contact dermatitis and other eczema (692)\\\\(692.0) Contact dermatitis and other eczema due to detergents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\" + }, + { + "displayName": "(692.1) Contact dermatitis and other eczema due to oils and greases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\(692.1) Contact dermatitis and other eczema due to oils and greases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Contact dermatitis and other eczema (692)\\\\(692.1) Contact dermatitis and other eczema due to oils and greases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\" + }, + { + "displayName": "(692.2) Contact dermatitis and other eczema due to solvents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\(692.2) Contact dermatitis and other eczema due to solvents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\" + }, + { + "displayName": "(692.3) Contact dermatitis and other eczema due to drugs and medicines in contact with skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\(692.3) Contact dermatitis and other eczema due to drugs and medicines in contact with skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\" + }, + { + "displayName": "(692.4) Contact dermatitis and other eczema due to other chemical products", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\(692.4) Contact dermatitis and other eczema due to other chemical products\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\" + }, + { + "displayName": "(692.5) Contact dermatitis and other eczema due to food in contact with skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\(692.5) Contact dermatitis and other eczema due to food in contact with skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\" + }, + { + "displayName": "(692.6) Contact dermatitis and other eczema due to plants [except food]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\(692.6) Contact dermatitis and other eczema due to plants [except food]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\" + }, + { + "displayName": "(692.9) Contact dermatitis and other eczema, unspecified cause", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\(692.9) Contact dermatitis and other eczema, unspecified cause\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\" + }, + { + "displayName": "Contact dermatitis and other eczema due to other specified agents (692.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to other specified agents (692.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\" + }, + { + "displayName": "(692.81) Dermatitis due to cosmetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to other specified agents (692.8)\\(692.81) Dermatitis due to cosmetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to other specified agents (692.8)\\" + }, + { + "displayName": "(692.82) Dermatitis due to other radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to other specified agents (692.8)\\(692.82) Dermatitis due to other radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to other specified agents (692.8)\\" + }, + { + "displayName": "(692.83) Dermatitis due to metals", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to other specified agents (692.8)\\(692.83) Dermatitis due to metals\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to other specified agents (692.8)\\" + }, + { + "displayName": "(692.84) Contact dermatitis and other eczema due to animal (cat) (dog) dander", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to other specified agents (692.8)\\(692.84) Contact dermatitis and other eczema due to animal (cat) (dog) dander\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to other specified agents (692.8)\\" + }, + { + "displayName": "(692.89) Contact dermatitis and other eczema due to other specified agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to other specified agents (692.8)\\(692.89) Contact dermatitis and other eczema due to other specified agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to other specified agents (692.8)\\" + }, + { + "displayName": "Contact dermatitis and other eczema due to solar radiation (692.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\" + }, + { + "displayName": "(692.70) Unspecified dermatitis due to sun", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\(692.70) Unspecified dermatitis due to sun\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\" + }, + { + "displayName": "(692.71) Sunburn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\(692.71) Sunburn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\" + }, + { + "displayName": "(692.72) Acute dermatitis due to solar radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\(692.72) Acute dermatitis due to solar radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\" + }, + { + "displayName": "(692.73) Actinic reticuloid and actinic granuloma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\(692.73) Actinic reticuloid and actinic granuloma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\" + }, + { + "displayName": "(692.74) Other chronic dermatitis due to solar radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\(692.74) Other chronic dermatitis due to solar radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\" + }, + { + "displayName": "(692.75) Disseminated superficial actinic porokeratosis (DSAP)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\(692.75) Disseminated superficial actinic porokeratosis (DSAP)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\" + }, + { + "displayName": "(692.76) Sunburn of second degree", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\(692.76) Sunburn of second degree\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\" + }, + { + "displayName": "(692.77) Sunburn of third degree", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\(692.77) Sunburn of third degree\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\" + }, + { + "displayName": "(692.79) Other dermatitis due to solar radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\(692.79) Other dermatitis due to solar radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Contact dermatitis and other eczema (692)\\Contact dermatitis and other eczema due to solar radiation (692.7)\\" + }, + { + "displayName": "Dermatitis due to substances taken internally (693)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Dermatitis due to substances taken internally (693)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Dermatitis due to substances taken internally (693)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\" + }, + { + "displayName": "(693.0) Dermatitis due to drugs and medicines taken internally", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Dermatitis due to substances taken internally (693)\\(693.0) Dermatitis due to drugs and medicines taken internally\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Dermatitis due to substances taken internally (693)\\\\(693.0) Dermatitis due to drugs and medicines taken internally\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Dermatitis due to substances taken internally (693)\\" + }, + { + "displayName": "(693.1) Dermatitis due to food taken internally", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Dermatitis due to substances taken internally (693)\\(693.1) Dermatitis due to food taken internally\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Dermatitis due to substances taken internally (693)\\" + }, + { + "displayName": "(693.8) Dermatitis due to other specified substances taken internally", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Dermatitis due to substances taken internally (693)\\(693.8) Dermatitis due to other specified substances taken internally\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Dermatitis due to substances taken internally (693)\\" + }, + { + "displayName": "(693.9) Dermatitis due to unspecified substance taken internally", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Dermatitis due to substances taken internally (693)\\(693.9) Dermatitis due to unspecified substance taken internally\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Dermatitis due to substances taken internally (693)\\" + }, + { + "displayName": "Erythematosquamous dermatosis (690)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\" + }, + { + "displayName": "(690.8) Other erythematosquamous dermatosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\(690.8) Other erythematosquamous dermatosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\" + }, + { + "displayName": "Seborrheic dermatitis (690.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\Seborrheic dermatitis (690.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Erythematosquamous dermatosis (690)\\\\Seborrheic dermatitis (690.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\" + }, + { + "displayName": "(690.10) Seborrheic dermatitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\Seborrheic dermatitis (690.1)\\(690.10) Seborrheic dermatitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Erythematosquamous dermatosis (690)\\\\Seborrheic dermatitis (690.1)\\\\(690.10) Seborrheic dermatitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\Seborrheic dermatitis (690.1)\\" + }, + { + "displayName": "(690.11) Seborrhea capitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\Seborrheic dermatitis (690.1)\\(690.11) Seborrhea capitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\Seborrheic dermatitis (690.1)\\" + }, + { + "displayName": "(690.12) Seborrheic infantile dermatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\Seborrheic dermatitis (690.1)\\(690.12) Seborrheic infantile dermatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Erythematosquamous dermatosis (690)\\\\Seborrheic dermatitis (690.1)\\\\(690.12) Seborrheic infantile dermatitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\Seborrheic dermatitis (690.1)\\" + }, + { + "displayName": "(690.18) Other seborrheic dermatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\Seborrheic dermatitis (690.1)\\(690.18) Other seborrheic dermatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematosquamous dermatosis (690)\\Seborrheic dermatitis (690.1)\\" + }, + { + "displayName": "Erythematous conditions (695)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Erythematous conditions (695)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\" + }, + { + "displayName": "(695.0) Toxic erythema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\(695.0) Toxic erythema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Erythematous conditions (695)\\\\(695.0) Toxic erythema\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\" + }, + { + "displayName": "(695.2) Erythema nodosum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\(695.2) Erythema nodosum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\" + }, + { + "displayName": "(695.3) Rosacea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\(695.3) Rosacea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Erythematous conditions (695)\\\\(695.3) Rosacea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\" + }, + { + "displayName": "(695.4) Lupus erythematosus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\(695.4) Lupus erythematosus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\" + }, + { + "displayName": "(695.9) Unspecified erythematous condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\(695.9) Unspecified erythematous condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Erythematous conditions (695)\\\\(695.9) Unspecified erythematous condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\" + }, + { + "displayName": "Erythema multiforme (695.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\" + }, + { + "displayName": "(695.10) Erythema multiforme, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\(695.10) Erythema multiforme, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Erythematous conditions (695)\\\\Erythema multiforme (695.1)\\\\(695.10) Erythema multiforme, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\" + }, + { + "displayName": "(695.11) Erythema multiforme minor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\(695.11) Erythema multiforme minor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\" + }, + { + "displayName": "(695.13) Stevens-Johnson syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\(695.13) Stevens-Johnson syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\" + }, + { + "displayName": "(695.14) Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\(695.14) Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\" + }, + { + "displayName": "(695.15) Toxic epidermal necrolysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\(695.15) Toxic epidermal necrolysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\" + }, + { + "displayName": "(695.19) Other erythema multiforme", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\(695.19) Other erythema multiforme\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Erythema multiforme (695.1)\\" + }, + { + "displayName": "Other specified erythematous conditions (695.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Other specified erythematous conditions (695.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\" + }, + { + "displayName": "(695.81) Ritter's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Other specified erythematous conditions (695.8)\\(695.81) Ritter's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Other specified erythematous conditions (695.8)\\" + }, + { + "displayName": "(695.89) Other specified erythematous conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Other specified erythematous conditions (695.8)\\(695.89) Other specified erythematous conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Erythematous conditions (695)\\\\Other specified erythematous conditions (695.8)\\\\(695.89) Other specified erythematous conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Erythematous conditions (695)\\Other specified erythematous conditions (695.8)\\" + }, + { + "displayName": "Lichen (697)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Lichen (697)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Lichen (697)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\" + }, + { + "displayName": "(697.0) Lichen planus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Lichen (697)\\(697.0) Lichen planus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Lichen (697)\\" + }, + { + "displayName": "(697.1) Lichen nitidus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Lichen (697)\\(697.1) Lichen nitidus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Lichen (697)\\" + }, + { + "displayName": "(697.8) Other lichen, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Lichen (697)\\(697.8) Other lichen, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Lichen (697)\\" + }, + { + "displayName": "(697.9) Lichen, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Lichen (697)\\(697.9) Lichen, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Lichen (697)\\" + }, + { + "displayName": "Pruritus and related conditions (698)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\" + }, + { + "displayName": "(698.0) Pruritus ani", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\(698.0) Pruritus ani\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\" + }, + { + "displayName": "(698.1) Pruritus of genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\(698.1) Pruritus of genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Pruritus and related conditions (698)\\\\(698.1) Pruritus of genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\" + }, + { + "displayName": "(698.2) Prurigo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\(698.2) Prurigo\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Pruritus and related conditions (698)\\\\(698.2) Prurigo\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\" + }, + { + "displayName": "(698.3) Lichenification and lichen simplex chronicus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\(698.3) Lichenification and lichen simplex chronicus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\" + }, + { + "displayName": "(698.4) Dermatitis factitia [artefacta]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\(698.4) Dermatitis factitia [artefacta]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Diseases of the skin and subcutaneous tissue (680-709.99)\\\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\\\Pruritus and related conditions (698)\\\\(698.4) Dermatitis factitia [artefacta]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\" + }, + { + "displayName": "(698.8) Other specified pruritic conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\(698.8) Other specified pruritic conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\" + }, + { + "displayName": "(698.9) Unspecified pruritic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\(698.9) Unspecified pruritic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Pruritus and related conditions (698)\\" + }, + { + "displayName": "Psoriasis and similar disorders (696)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\" + }, + { + "displayName": "(696.0) Psoriatic arthropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\(696.0) Psoriatic arthropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\" + }, + { + "displayName": "(696.1) Other psoriasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\(696.1) Other psoriasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\" + }, + { + "displayName": "(696.2) Parapsoriasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\(696.2) Parapsoriasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\" + }, + { + "displayName": "(696.3) Pityriasis rosea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\(696.3) Pityriasis rosea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\" + }, + { + "displayName": "(696.4) Pityriasis rubra pilaris", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\(696.4) Pityriasis rubra pilaris\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\" + }, + { + "displayName": "(696.5) Other and unspecified pityriasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\(696.5) Other and unspecified pityriasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\" + }, + { + "displayName": "(696.8) Other psoriasis and similar disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\(696.8) Other psoriasis and similar disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Diseases of the skin and subcutaneous tissue (680-709.99)\\Other inflammatory conditions of skin and subcutaneous tissue (690-698.99)\\Psoriasis and similar disorders (696)\\" + }, + { + "displayName": "Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Diseases of other endocrine glands (249-259.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\" + }, + { + "displayName": "Diabetes mellitus (250)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\" + }, + { + "displayName": "Diabetes mellitus with hyperosmolarity (250.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus with hyperosmolarity (250.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\" + }, + { + "displayName": "(250.20) Diabetes with hyperosmolarity, type II or unspecified type, not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus with hyperosmolarity (250.2)\\(250.20) Diabetes with hyperosmolarity, type II or unspecified type, not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus with hyperosmolarity (250.2)\\" + }, + { + "displayName": "(250.21) Diabetes with hyperosmolarity, type I [juvenile type], not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus with hyperosmolarity (250.2)\\(250.21) Diabetes with hyperosmolarity, type I [juvenile type], not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus with hyperosmolarity (250.2)\\" + }, + { + "displayName": "(250.22) Diabetes with hyperosmolarity, type II or unspecified type, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus with hyperosmolarity (250.2)\\(250.22) Diabetes with hyperosmolarity, type II or unspecified type, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus with hyperosmolarity (250.2)\\" + }, + { + "displayName": "(250.23) Diabetes with hyperosmolarity, type I [juvenile type], uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus with hyperosmolarity (250.2)\\(250.23) Diabetes with hyperosmolarity, type I [juvenile type], uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus with hyperosmolarity (250.2)\\" + }, + { + "displayName": "Diabetes mellitus without mention of complication (250.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\" + }, + { + "displayName": "(250.00) Diabetes mellitus without mention of complication, type II or unspecified type, not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\(250.00) Diabetes mellitus without mention of complication, type II or unspecified type, not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\" + }, + { + "displayName": "(250.01) Diabetes mellitus without mention of complication, type I [juvenile type], not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\(250.01) Diabetes mellitus without mention of complication, type I [juvenile type], not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\" + }, + { + "displayName": "(250.02) Diabetes mellitus without mention of complication, type II or unspecified type, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\(250.02) Diabetes mellitus without mention of complication, type II or unspecified type, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\" + }, + { + "displayName": "(250.03) Diabetes mellitus without mention of complication, type I [juvenile type], uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\(250.03) Diabetes mellitus without mention of complication, type I [juvenile type], uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes mellitus without mention of complication (250.0)\\" + }, + { + "displayName": "Diabetes with ketoacidosis (250.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\" + }, + { + "displayName": "(250.10) Diabetes with ketoacidosis, type II or unspecified type, not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\(250.10) Diabetes with ketoacidosis, type II or unspecified type, not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\" + }, + { + "displayName": "(250.11) Diabetes with ketoacidosis, type I [juvenile type], not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\(250.11) Diabetes with ketoacidosis, type I [juvenile type], not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\" + }, + { + "displayName": "(250.12) Diabetes with ketoacidosis, type II or unspecified type, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\(250.12) Diabetes with ketoacidosis, type II or unspecified type, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\" + }, + { + "displayName": "(250.13) Diabetes with ketoacidosis, type I [juvenile type], uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\(250.13) Diabetes with ketoacidosis, type I [juvenile type], uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ketoacidosis (250.1)\\" + }, + { + "displayName": "Diabetes with neurological manifestations (250.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with neurological manifestations (250.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\" + }, + { + "displayName": "(250.60) Diabetes with neurological manifestations, type II or unspecified type, not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with neurological manifestations (250.6)\\(250.60) Diabetes with neurological manifestations, type II or unspecified type, not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Diabetes mellitus (250)\\\\Diabetes with neurological manifestations (250.6)\\\\(250.60) Diabetes with neurological manifestations, type II or unspecified type, not stated as uncontrolled\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with neurological manifestations (250.6)\\" + }, + { + "displayName": "(250.61) Diabetes with neurological manifestations, type I [juvenile type], not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with neurological manifestations (250.6)\\(250.61) Diabetes with neurological manifestations, type I [juvenile type], not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Diabetes mellitus (250)\\\\Diabetes with neurological manifestations (250.6)\\\\(250.61) Diabetes with neurological manifestations, type I [juvenile type], not stated as uncontrolled\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with neurological manifestations (250.6)\\" + }, + { + "displayName": "(250.62) Diabetes with neurological manifestations, type II or unspecified type, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with neurological manifestations (250.6)\\(250.62) Diabetes with neurological manifestations, type II or unspecified type, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Diabetes mellitus (250)\\\\Diabetes with neurological manifestations (250.6)\\\\(250.62) Diabetes with neurological manifestations, type II or unspecified type, uncontrolled\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with neurological manifestations (250.6)\\" + }, + { + "displayName": "(250.63) Diabetes with neurological manifestations, type I [juvenile type], uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with neurological manifestations (250.6)\\(250.63) Diabetes with neurological manifestations, type I [juvenile type], uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with neurological manifestations (250.6)\\" + }, + { + "displayName": "Diabetes with ophthalmic manifestations (250.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ophthalmic manifestations (250.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Diabetes mellitus (250)\\\\Diabetes with ophthalmic manifestations (250.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\" + }, + { + "displayName": "(250.50) Diabetes with ophthalmic manifestations, type II or unspecified type, not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ophthalmic manifestations (250.5)\\(250.50) Diabetes with ophthalmic manifestations, type II or unspecified type, not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ophthalmic manifestations (250.5)\\" + }, + { + "displayName": "(250.51) Diabetes with ophthalmic manifestations, type I [juvenile type], not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ophthalmic manifestations (250.5)\\(250.51) Diabetes with ophthalmic manifestations, type I [juvenile type], not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Diabetes mellitus (250)\\\\Diabetes with ophthalmic manifestations (250.5)\\\\(250.51) Diabetes with ophthalmic manifestations, type I [juvenile type], not stated as uncontrolled\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ophthalmic manifestations (250.5)\\" + }, + { + "displayName": "(250.52) Diabetes with ophthalmic manifestations, type II or unspecified type, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ophthalmic manifestations (250.5)\\(250.52) Diabetes with ophthalmic manifestations, type II or unspecified type, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ophthalmic manifestations (250.5)\\" + }, + { + "displayName": "(250.53) Diabetes with ophthalmic manifestations, type I [juvenile type], uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ophthalmic manifestations (250.5)\\(250.53) Diabetes with ophthalmic manifestations, type I [juvenile type], uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with ophthalmic manifestations (250.5)\\" + }, + { + "displayName": "Diabetes with other coma (250.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other coma (250.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\" + }, + { + "displayName": "(250.30) Diabetes with other coma, type II or unspecified type, not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other coma (250.3)\\(250.30) Diabetes with other coma, type II or unspecified type, not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other coma (250.3)\\" + }, + { + "displayName": "(250.31) Diabetes with other coma, type I [juvenile type], not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other coma (250.3)\\(250.31) Diabetes with other coma, type I [juvenile type], not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other coma (250.3)\\" + }, + { + "displayName": "(250.32) Diabetes with other coma, type II or unspecified type, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other coma (250.3)\\(250.32) Diabetes with other coma, type II or unspecified type, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other coma (250.3)\\" + }, + { + "displayName": "(250.33) Diabetes with other coma, type I [juvenile type], uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other coma (250.3)\\(250.33) Diabetes with other coma, type I [juvenile type], uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other coma (250.3)\\" + }, + { + "displayName": "Diabetes with other specified manifestations (250.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other specified manifestations (250.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\" + }, + { + "displayName": "(250.80) Diabetes with other specified manifestations, type II or unspecified type, not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other specified manifestations (250.8)\\(250.80) Diabetes with other specified manifestations, type II or unspecified type, not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other specified manifestations (250.8)\\" + }, + { + "displayName": "(250.81) Diabetes with other specified manifestations, type I [juvenile type], not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other specified manifestations (250.8)\\(250.81) Diabetes with other specified manifestations, type I [juvenile type], not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other specified manifestations (250.8)\\" + }, + { + "displayName": "(250.82) Diabetes with other specified manifestations, type II or unspecified type, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other specified manifestations (250.8)\\(250.82) Diabetes with other specified manifestations, type II or unspecified type, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other specified manifestations (250.8)\\" + }, + { + "displayName": "(250.83) Diabetes with other specified manifestations, type I [juvenile type], uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other specified manifestations (250.8)\\(250.83) Diabetes with other specified manifestations, type I [juvenile type], uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with other specified manifestations (250.8)\\" + }, + { + "displayName": "Diabetes with peripheral circulatory disorders (250.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with peripheral circulatory disorders (250.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\" + }, + { + "displayName": "(250.70) Diabetes with peripheral circulatory disorders, type II or unspecified type, not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with peripheral circulatory disorders (250.7)\\(250.70) Diabetes with peripheral circulatory disorders, type II or unspecified type, not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with peripheral circulatory disorders (250.7)\\" + }, + { + "displayName": "(250.71) Diabetes with peripheral circulatory disorders, type I [juvenile type], not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with peripheral circulatory disorders (250.7)\\(250.71) Diabetes with peripheral circulatory disorders, type I [juvenile type], not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Diabetes mellitus (250)\\\\Diabetes with peripheral circulatory disorders (250.7)\\\\(250.71) Diabetes with peripheral circulatory disorders, type I [juvenile type], not stated as uncontrolled\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with peripheral circulatory disorders (250.7)\\" + }, + { + "displayName": "(250.72) Diabetes with peripheral circulatory disorders, type II or unspecified type, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with peripheral circulatory disorders (250.7)\\(250.72) Diabetes with peripheral circulatory disorders, type II or unspecified type, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Diabetes mellitus (250)\\\\Diabetes with peripheral circulatory disorders (250.7)\\\\(250.72) Diabetes with peripheral circulatory disorders, type II or unspecified type, uncontrolled\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with peripheral circulatory disorders (250.7)\\" + }, + { + "displayName": "(250.73) Diabetes with peripheral circulatory disorders, type I [juvenile type], uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with peripheral circulatory disorders (250.7)\\(250.73) Diabetes with peripheral circulatory disorders, type I [juvenile type], uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Diabetes mellitus (250)\\\\Diabetes with peripheral circulatory disorders (250.7)\\\\(250.73) Diabetes with peripheral circulatory disorders, type I [juvenile type], uncontrolled\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with peripheral circulatory disorders (250.7)\\" + }, + { + "displayName": "Diabetes with renal manifestations (250.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with renal manifestations (250.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\" + }, + { + "displayName": "(250.40) Diabetes with renal manifestations, type II or unspecified type, not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with renal manifestations (250.4)\\(250.40) Diabetes with renal manifestations, type II or unspecified type, not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with renal manifestations (250.4)\\" + }, + { + "displayName": "(250.41) Diabetes with renal manifestations, type I [juvenile type], not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with renal manifestations (250.4)\\(250.41) Diabetes with renal manifestations, type I [juvenile type], not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with renal manifestations (250.4)\\" + }, + { + "displayName": "(250.42) Diabetes with renal manifestations, type II or unspecified type, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with renal manifestations (250.4)\\(250.42) Diabetes with renal manifestations, type II or unspecified type, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with renal manifestations (250.4)\\" + }, + { + "displayName": "(250.43) Diabetes with renal manifestations, type I [juvenile type], uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with renal manifestations (250.4)\\(250.43) Diabetes with renal manifestations, type I [juvenile type], uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with renal manifestations (250.4)\\" + }, + { + "displayName": "Diabetes with unspecified complication (250.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with unspecified complication (250.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\" + }, + { + "displayName": "(250.90) Diabetes with unspecified complication, type II or unspecified type, not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with unspecified complication (250.9)\\(250.90) Diabetes with unspecified complication, type II or unspecified type, not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with unspecified complication (250.9)\\" + }, + { + "displayName": "(250.91) Diabetes with unspecified complication, type I [juvenile type], not stated as uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with unspecified complication (250.9)\\(250.91) Diabetes with unspecified complication, type I [juvenile type], not stated as uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with unspecified complication (250.9)\\" + }, + { + "displayName": "(250.92) Diabetes with unspecified complication, type II or unspecified type, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with unspecified complication (250.9)\\(250.92) Diabetes with unspecified complication, type II or unspecified type, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with unspecified complication (250.9)\\" + }, + { + "displayName": "(250.93) Diabetes with unspecified complication, type I [juvenile type], uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with unspecified complication (250.9)\\(250.93) Diabetes with unspecified complication, type I [juvenile type], uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diabetes mellitus (250)\\Diabetes with unspecified complication (250.9)\\" + }, + { + "displayName": "Diseases of thymus gland (254)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diseases of thymus gland (254)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\" + }, + { + "displayName": "(254.0) Persistent hyperplasia of thymus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diseases of thymus gland (254)\\(254.0) Persistent hyperplasia of thymus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diseases of thymus gland (254)\\" + }, + { + "displayName": "(254.1) Abscess of thymus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diseases of thymus gland (254)\\(254.1) Abscess of thymus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diseases of thymus gland (254)\\" + }, + { + "displayName": "(254.8) Other specified diseases of thymus gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diseases of thymus gland (254)\\(254.8) Other specified diseases of thymus gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diseases of thymus gland (254)\\" + }, + { + "displayName": "(254.9) Unspecified disease of thymus gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diseases of thymus gland (254)\\(254.9) Unspecified disease of thymus gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Diseases of thymus gland (254)\\" + }, + { + "displayName": "Disorders of adrenal glands (255)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\" + }, + { + "displayName": "(255.0) Cushing's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\(255.0) Cushing's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\" + }, + { + "displayName": "(255.2) Adrenogenital disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\(255.2) Adrenogenital disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\" + }, + { + "displayName": "(255.3) Other corticoadrenal overactivity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\(255.3) Other corticoadrenal overactivity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of adrenal glands (255)\\\\(255.3) Other corticoadrenal overactivity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\" + }, + { + "displayName": "(255.5) Other adrenal hypofunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\(255.5) Other adrenal hypofunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\" + }, + { + "displayName": "(255.6) Medulloadrenal hyperfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\(255.6) Medulloadrenal hyperfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of adrenal glands (255)\\\\(255.6) Medulloadrenal hyperfunction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\" + }, + { + "displayName": "(255.8) Other specified disorders of adrenal glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\(255.8) Other specified disorders of adrenal glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\" + }, + { + "displayName": "(255.9) Unspecified disorder of adrenal glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\(255.9) Unspecified disorder of adrenal glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of adrenal glands (255)\\\\(255.9) Unspecified disorder of adrenal glands\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\" + }, + { + "displayName": "Corticoadrenal insufficiency (255.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Corticoadrenal insufficiency (255.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of adrenal glands (255)\\\\Corticoadrenal insufficiency (255.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\" + }, + { + "displayName": "(255.41) Glucocorticoid deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Corticoadrenal insufficiency (255.4)\\(255.41) Glucocorticoid deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of adrenal glands (255)\\\\Corticoadrenal insufficiency (255.4)\\\\(255.41) Glucocorticoid deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Corticoadrenal insufficiency (255.4)\\" + }, + { + "displayName": "(255.42) Mineralocorticoid deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Corticoadrenal insufficiency (255.4)\\(255.42) Mineralocorticoid deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of adrenal glands (255)\\\\Corticoadrenal insufficiency (255.4)\\\\(255.42) Mineralocorticoid deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Corticoadrenal insufficiency (255.4)\\" + }, + { + "displayName": "Hyperaldosteronism (255.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Hyperaldosteronism (255.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\" + }, + { + "displayName": "(255.10) Hyperaldosteronism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Hyperaldosteronism (255.1)\\(255.10) Hyperaldosteronism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Hyperaldosteronism (255.1)\\" + }, + { + "displayName": "(255.11) Glucocorticoid-remediable aldosteronism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Hyperaldosteronism (255.1)\\(255.11) Glucocorticoid-remediable aldosteronism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Hyperaldosteronism (255.1)\\" + }, + { + "displayName": "(255.12) Conn's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Hyperaldosteronism (255.1)\\(255.12) Conn's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Hyperaldosteronism (255.1)\\" + }, + { + "displayName": "(255.13) Bartter's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Hyperaldosteronism (255.1)\\(255.13) Bartter's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Hyperaldosteronism (255.1)\\" + }, + { + "displayName": "(255.14) Other secondary aldosteronism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Hyperaldosteronism (255.1)\\(255.14) Other secondary aldosteronism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of adrenal glands (255)\\Hyperaldosteronism (255.1)\\" + }, + { + "displayName": "Disorders of parathyroid gland (252)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\" + }, + { + "displayName": "(252.1) Hypoparathyroidism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\(252.1) Hypoparathyroidism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\" + }, + { + "displayName": "(252.8) Other specified disorders of parathyroid gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\(252.8) Other specified disorders of parathyroid gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\" + }, + { + "displayName": "(252.9) Unspecified disorder of parathyroid gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\(252.9) Unspecified disorder of parathyroid gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\" + }, + { + "displayName": "Hyperparathyroidism (252.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\Hyperparathyroidism (252.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\" + }, + { + "displayName": "(252.00) Hyperparathyroidism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\Hyperparathyroidism (252.0)\\(252.00) Hyperparathyroidism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\Hyperparathyroidism (252.0)\\" + }, + { + "displayName": "(252.01) Primary hyperparathyroidism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\Hyperparathyroidism (252.0)\\(252.01) Primary hyperparathyroidism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\Hyperparathyroidism (252.0)\\" + }, + { + "displayName": "(252.02) Secondary hyperparathyroidism, non-renal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\Hyperparathyroidism (252.0)\\(252.02) Secondary hyperparathyroidism, non-renal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\Hyperparathyroidism (252.0)\\" + }, + { + "displayName": "(252.08) Other hyperparathyroidism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\Hyperparathyroidism (252.0)\\(252.08) Other hyperparathyroidism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of parathyroid gland (252)\\Hyperparathyroidism (252.0)\\" + }, + { + "displayName": "Disorders of the pituitary gland and its hypothalamic control (253)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of the pituitary gland and its hypothalamic control (253)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\" + }, + { + "displayName": "(253.0) Acromegaly and gigantism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\(253.0) Acromegaly and gigantism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of the pituitary gland and its hypothalamic control (253)\\\\(253.0) Acromegaly and gigantism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\" + }, + { + "displayName": "(253.1) Other and unspecified anterior pituitary hyperfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\(253.1) Other and unspecified anterior pituitary hyperfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of the pituitary gland and its hypothalamic control (253)\\\\(253.1) Other and unspecified anterior pituitary hyperfunction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\" + }, + { + "displayName": "(253.2) Panhypopituitarism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\(253.2) Panhypopituitarism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of the pituitary gland and its hypothalamic control (253)\\\\(253.2) Panhypopituitarism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\" + }, + { + "displayName": "(253.3) Pituitary dwarfism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\(253.3) Pituitary dwarfism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of the pituitary gland and its hypothalamic control (253)\\\\(253.3) Pituitary dwarfism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\" + }, + { + "displayName": "(253.4) Other anterior pituitary disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\(253.4) Other anterior pituitary disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\" + }, + { + "displayName": "(253.5) Diabetes insipidus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\(253.5) Diabetes insipidus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\" + }, + { + "displayName": "(253.6) Other disorders of neurohypophysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\(253.6) Other disorders of neurohypophysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\" + }, + { + "displayName": "(253.7) Iatrogenic pituitary disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\(253.7) Iatrogenic pituitary disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\" + }, + { + "displayName": "(253.8) Other disorders of the pituitary and other syndromes of diencephalohypophyseal origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\(253.8) Other disorders of the pituitary and other syndromes of diencephalohypophyseal origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\" + }, + { + "displayName": "(253.9) Unspecified disorder of the pituitary gland and its hypothalamic control", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\(253.9) Unspecified disorder of the pituitary gland and its hypothalamic control\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Disorders of the pituitary gland and its hypothalamic control (253)\\\\(253.9) Unspecified disorder of the pituitary gland and its hypothalamic control\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Disorders of the pituitary gland and its hypothalamic control (253)\\" + }, + { + "displayName": "Other disorders of pancreatic internal secretion (251)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Other disorders of pancreatic internal secretion (251)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\" + }, + { + "displayName": "(251.0) Hypoglycemic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\(251.0) Hypoglycemic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Other disorders of pancreatic internal secretion (251)\\\\(251.0) Hypoglycemic coma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\" + }, + { + "displayName": "(251.1) Other specified hypoglycemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\(251.1) Other specified hypoglycemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\" + }, + { + "displayName": "(251.2) Hypoglycemia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\(251.2) Hypoglycemia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\" + }, + { + "displayName": "(251.3) Postsurgical hypoinsulinemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\(251.3) Postsurgical hypoinsulinemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\" + }, + { + "displayName": "(251.4) Abnormality of secretion of glucagon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\(251.4) Abnormality of secretion of glucagon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\" + }, + { + "displayName": "(251.5) Abnormality of secretion of gastrin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\(251.5) Abnormality of secretion of gastrin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\" + }, + { + "displayName": "(251.8) Other specified disorders of pancreatic internal secretion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\(251.8) Other specified disorders of pancreatic internal secretion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\" + }, + { + "displayName": "(251.9) Unspecified disorder of pancreatic internal secretion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\(251.9) Unspecified disorder of pancreatic internal secretion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other disorders of pancreatic internal secretion (251)\\" + }, + { + "displayName": "Other endocrine disorders (259)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\" + }, + { + "displayName": "(259.0) Delay in sexual development and puberty, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\(259.0) Delay in sexual development and puberty, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\" + }, + { + "displayName": "(259.1) Precocious sexual development and puberty, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\(259.1) Precocious sexual development and puberty, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\" + }, + { + "displayName": "(259.2) Carcinoid syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\(259.2) Carcinoid syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\" + }, + { + "displayName": "(259.3) Ectopic hormone secretion, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\(259.3) Ectopic hormone secretion, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\" + }, + { + "displayName": "(259.4) Dwarfism, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\(259.4) Dwarfism, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\" + }, + { + "displayName": "(259.8) Other specified endocrine disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\(259.8) Other specified endocrine disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\" + }, + { + "displayName": "(259.9) Unspecified endocrine disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\(259.9) Unspecified endocrine disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\" + }, + { + "displayName": "Androgen insensitivity syndrome (259.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\Androgen insensitivity syndrome (259.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\" + }, + { + "displayName": "(259.51) Androgen insensitivity syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\Androgen insensitivity syndrome (259.5)\\(259.51) Androgen insensitivity syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Other endocrine disorders (259)\\Androgen insensitivity syndrome (259.5)\\" + }, + { + "displayName": "Ovarian dysfunction (256)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Ovarian dysfunction (256)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\" + }, + { + "displayName": "(256.0) Hyperestrogenism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\(256.0) Hyperestrogenism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\" + }, + { + "displayName": "(256.1) Other ovarian hyperfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\(256.1) Other ovarian hyperfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Ovarian dysfunction (256)\\\\(256.1) Other ovarian hyperfunction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\" + }, + { + "displayName": "(256.2) Postablative ovarian failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\(256.2) Postablative ovarian failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Ovarian dysfunction (256)\\\\(256.2) Postablative ovarian failure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\" + }, + { + "displayName": "(256.4) Polycystic ovaries", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\(256.4) Polycystic ovaries\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\" + }, + { + "displayName": "(256.8) Other ovarian dysfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\(256.8) Other ovarian dysfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Ovarian dysfunction (256)\\\\(256.8) Other ovarian dysfunction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\" + }, + { + "displayName": "(256.9) Unspecified ovarian dysfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\(256.9) Unspecified ovarian dysfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\" + }, + { + "displayName": "Other ovarian failure (256.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\Other ovarian failure (256.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Ovarian dysfunction (256)\\\\Other ovarian failure (256.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\" + }, + { + "displayName": "(256.31) Premature menopause", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\Other ovarian failure (256.3)\\(256.31) Premature menopause\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\Other ovarian failure (256.3)\\" + }, + { + "displayName": "(256.39) Other ovarian failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\Other ovarian failure (256.3)\\(256.39) Other ovarian failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Ovarian dysfunction (256)\\\\Other ovarian failure (256.3)\\\\(256.39) Other ovarian failure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Ovarian dysfunction (256)\\Other ovarian failure (256.3)\\" + }, + { + "displayName": "Polyglandular dysfunction and related disorders (258)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Polyglandular dysfunction and related disorders (258)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\" + }, + { + "displayName": "(258.1) Other combinations of endocrine dysfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\(258.1) Other combinations of endocrine dysfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\" + }, + { + "displayName": "(258.8) Other specified polyglandular dysfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\(258.8) Other specified polyglandular dysfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\" + }, + { + "displayName": "(258.9) Polyglandular dysfunction, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\(258.9) Polyglandular dysfunction, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\" + }, + { + "displayName": "Polyglandular activity in multiple endocrine adenomatosis (258.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\Polyglandular activity in multiple endocrine adenomatosis (258.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\" + }, + { + "displayName": "(258.01) Multiple endocrine neoplasia [MEN] type I", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\Polyglandular activity in multiple endocrine adenomatosis (258.0)\\(258.01) Multiple endocrine neoplasia [MEN] type I\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\Polyglandular activity in multiple endocrine adenomatosis (258.0)\\" + }, + { + "displayName": "(258.02) Multiple endocrine neoplasia [MEN] type IIA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\Polyglandular activity in multiple endocrine adenomatosis (258.0)\\(258.02) Multiple endocrine neoplasia [MEN] type IIA\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\Polyglandular activity in multiple endocrine adenomatosis (258.0)\\" + }, + { + "displayName": "(258.03) Multiple endocrine neoplasia [MEN] type IIB", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\Polyglandular activity in multiple endocrine adenomatosis (258.0)\\(258.03) Multiple endocrine neoplasia [MEN] type IIB\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Polyglandular dysfunction and related disorders (258)\\Polyglandular activity in multiple endocrine adenomatosis (258.0)\\" + }, + { + "displayName": "Secondary diabetes mellitus (249)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\" + }, + { + "displayName": "Secondary diabetes mellitus with hyperosmolarity (249.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with hyperosmolarity (249.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\" + }, + { + "displayName": "(249.20) Secondary diabetes mellitus with hyperosmolarity, not stated as uncontrolled, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with hyperosmolarity (249.2)\\(249.20) Secondary diabetes mellitus with hyperosmolarity, not stated as uncontrolled, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with hyperosmolarity (249.2)\\" + }, + { + "displayName": "(249.21) Secondary diabetes mellitus with hyperosmolarity, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with hyperosmolarity (249.2)\\(249.21) Secondary diabetes mellitus with hyperosmolarity, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with hyperosmolarity (249.2)\\" + }, + { + "displayName": "Secondary diabetes mellitus with ketoacidosis (249.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with ketoacidosis (249.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\" + }, + { + "displayName": "(249.10) Secondary diabetes mellitus with ketoacidosis, not stated as uncontrolled, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with ketoacidosis (249.1)\\(249.10) Secondary diabetes mellitus with ketoacidosis, not stated as uncontrolled, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with ketoacidosis (249.1)\\" + }, + { + "displayName": "(249.11) Secondary diabetes mellitus with ketoacidosis, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with ketoacidosis (249.1)\\(249.11) Secondary diabetes mellitus with ketoacidosis, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with ketoacidosis (249.1)\\" + }, + { + "displayName": "Secondary diabetes mellitus with neurological manifestations (249.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with neurological manifestations (249.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\" + }, + { + "displayName": "(249.60) Secondary diabetes mellitus with neurological manifestations, not stated as uncontrolled, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with neurological manifestations (249.6)\\(249.60) Secondary diabetes mellitus with neurological manifestations, not stated as uncontrolled, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with neurological manifestations (249.6)\\" + }, + { + "displayName": "(249.61) Secondary diabetes mellitus with neurological manifestations, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with neurological manifestations (249.6)\\(249.61) Secondary diabetes mellitus with neurological manifestations, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with neurological manifestations (249.6)\\" + }, + { + "displayName": "Secondary diabetes mellitus with ophthalmic manifestations (249.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Secondary diabetes mellitus (249)\\\\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\" + }, + { + "displayName": "(249.50) Secondary diabetes mellitus with ophthalmic manifestations, not stated as uncontrolled, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\\(249.50) Secondary diabetes mellitus with ophthalmic manifestations, not stated as uncontrolled, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Secondary diabetes mellitus (249)\\\\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\\\\(249.50) Secondary diabetes mellitus with ophthalmic manifestations, not stated as uncontrolled, or unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\\" + }, + { + "displayName": "(249.51) Secondary diabetes mellitus with ophthalmic manifestations, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\\(249.51) Secondary diabetes mellitus with ophthalmic manifestations, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Secondary diabetes mellitus (249)\\\\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\\\\(249.51) Secondary diabetes mellitus with ophthalmic manifestations, uncontrolled\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with ophthalmic manifestations (249.5)\\" + }, + { + "displayName": "Secondary diabetes mellitus with other specified manifestations (249.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with other specified manifestations (249.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\" + }, + { + "displayName": "(249.80) Secondary diabetes mellitus with other specified manifestations, not stated as uncontrolled, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with other specified manifestations (249.8)\\(249.80) Secondary diabetes mellitus with other specified manifestations, not stated as uncontrolled, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with other specified manifestations (249.8)\\" + }, + { + "displayName": "(249.81) Secondary diabetes mellitus with other specified manifestations, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with other specified manifestations (249.8)\\(249.81) Secondary diabetes mellitus with other specified manifestations, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with other specified manifestations (249.8)\\" + }, + { + "displayName": "Secondary diabetes mellitus with peripheral circulatory disorders (249.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\" + }, + { + "displayName": "(249.70) Secondary diabetes mellitus with peripheral circulatory disorders, not stated as uncontrolled, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\\(249.70) Secondary diabetes mellitus with peripheral circulatory disorders, not stated as uncontrolled, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\\" + }, + { + "displayName": "(249.71) Secondary diabetes mellitus with peripheral circulatory disorders, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\\(249.71) Secondary diabetes mellitus with peripheral circulatory disorders, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with peripheral circulatory disorders (249.7)\\" + }, + { + "displayName": "Secondary diabetes mellitus with renal manifestations (249.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with renal manifestations (249.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\" + }, + { + "displayName": "(249.40) Secondary diabetes mellitus with renal manifestations, not stated as uncontrolled, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with renal manifestations (249.4)\\(249.40) Secondary diabetes mellitus with renal manifestations, not stated as uncontrolled, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with renal manifestations (249.4)\\" + }, + { + "displayName": "(249.41) Secondary diabetes mellitus with renal manifestations, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with renal manifestations (249.4)\\(249.41) Secondary diabetes mellitus with renal manifestations, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with renal manifestations (249.4)\\" + }, + { + "displayName": "Secondary diabetes mellitus with unspecified complication (249.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with unspecified complication (249.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\" + }, + { + "displayName": "(249.90) Secondary diabetes mellitus with unspecified complication, not stated as uncontrolled, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with unspecified complication (249.9)\\(249.90) Secondary diabetes mellitus with unspecified complication, not stated as uncontrolled, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with unspecified complication (249.9)\\" + }, + { + "displayName": "(249.91) Secondary diabetes mellitus with unspecified complication, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with unspecified complication (249.9)\\(249.91) Secondary diabetes mellitus with unspecified complication, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus with unspecified complication (249.9)\\" + }, + { + "displayName": "Secondary diabetes mellitus, without mention of complication (249.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus, without mention of complication (249.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\" + }, + { + "displayName": "(249.00) Secondary diabetes mellitus without mention of complication, not stated as uncontrolled, or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus, without mention of complication (249.0)\\(249.00) Secondary diabetes mellitus without mention of complication, not stated as uncontrolled, or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus, without mention of complication (249.0)\\" + }, + { + "displayName": "(249.01) Secondary diabetes mellitus without mention of complication, uncontrolled", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus, without mention of complication (249.0)\\(249.01) Secondary diabetes mellitus without mention of complication, uncontrolled\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Secondary diabetes mellitus (249)\\Secondary diabetes mellitus, without mention of complication (249.0)\\" + }, + { + "displayName": "Testicular dysfunction (257)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Testicular dysfunction (257)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\" + }, + { + "displayName": "(257.0) Testicular hyperfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Testicular dysfunction (257)\\(257.0) Testicular hyperfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Testicular dysfunction (257)\\" + }, + { + "displayName": "(257.1) Postablative testicular hypofunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Testicular dysfunction (257)\\(257.1) Postablative testicular hypofunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Testicular dysfunction (257)\\" + }, + { + "displayName": "(257.2) Other testicular hypofunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Testicular dysfunction (257)\\(257.2) Other testicular hypofunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Testicular dysfunction (257)\\\\(257.2) Other testicular hypofunction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Testicular dysfunction (257)\\" + }, + { + "displayName": "(257.8) Other testicular dysfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Testicular dysfunction (257)\\(257.8) Other testicular dysfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Diseases of other endocrine glands (249-259.99)\\\\Testicular dysfunction (257)\\\\(257.8) Other testicular dysfunction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Testicular dysfunction (257)\\" + }, + { + "displayName": "(257.9) Unspecified testicular dysfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Testicular dysfunction (257)\\(257.9) Unspecified testicular dysfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Diseases of other endocrine glands (249-259.99)\\Testicular dysfunction (257)\\" + }, + { + "displayName": "Disorders of thyroid gland (240-246.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\" + }, + { + "displayName": "(243) Congenital hypothyroidism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\(243) Congenital hypothyroidism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\" + }, + { + "displayName": "Acquired hypothyroidism (244)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\" + }, + { + "displayName": "(244.0) Postsurgical hypothyroidism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\(244.0) Postsurgical hypothyroidism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\" + }, + { + "displayName": "(244.1) Other postablative hypothyroidism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\(244.1) Other postablative hypothyroidism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\" + }, + { + "displayName": "(244.2) Iodine hypothyroidism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\(244.2) Iodine hypothyroidism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\" + }, + { + "displayName": "(244.3) Other iatrogenic hypothyroidism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\(244.3) Other iatrogenic hypothyroidism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\" + }, + { + "displayName": "(244.8) Other specified acquired hypothyroidism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\(244.8) Other specified acquired hypothyroidism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\" + }, + { + "displayName": "(244.9) Unspecified acquired hypothyroidism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\(244.9) Unspecified acquired hypothyroidism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Acquired hypothyroidism (244)\\" + }, + { + "displayName": "Nontoxic nodular goiter (241)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Nontoxic nodular goiter (241)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\" + }, + { + "displayName": "(241.0) Nontoxic uninodular goiter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Nontoxic nodular goiter (241)\\(241.0) Nontoxic uninodular goiter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Nontoxic nodular goiter (241)\\" + }, + { + "displayName": "(241.1) Nontoxic multinodular goiter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Nontoxic nodular goiter (241)\\(241.1) Nontoxic multinodular goiter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Disorders of thyroid gland (240-246.99)\\\\Nontoxic nodular goiter (241)\\\\(241.1) Nontoxic multinodular goiter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Nontoxic nodular goiter (241)\\" + }, + { + "displayName": "(241.9) Unspecified nontoxic nodular goiter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Nontoxic nodular goiter (241)\\(241.9) Unspecified nontoxic nodular goiter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Disorders of thyroid gland (240-246.99)\\\\Nontoxic nodular goiter (241)\\\\(241.9) Unspecified nontoxic nodular goiter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Nontoxic nodular goiter (241)\\" + }, + { + "displayName": "Other disorders of thyroid (246)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Disorders of thyroid gland (240-246.99)\\\\Other disorders of thyroid (246)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\" + }, + { + "displayName": "(246.0) Disorders of thyrocalcitonin secretion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\(246.0) Disorders of thyrocalcitonin secretion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\" + }, + { + "displayName": "(246.1) Dyshormonogenic goiter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\(246.1) Dyshormonogenic goiter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\" + }, + { + "displayName": "(246.2) Cyst of thyroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\(246.2) Cyst of thyroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\" + }, + { + "displayName": "(246.3) Hemorrhage and infarction of thyroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\(246.3) Hemorrhage and infarction of thyroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\" + }, + { + "displayName": "(246.8) Other specified disorders of thyroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\(246.8) Other specified disorders of thyroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\" + }, + { + "displayName": "(246.9) Unspecified disorder of thyroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\(246.9) Unspecified disorder of thyroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Other disorders of thyroid (246)\\" + }, + { + "displayName": "Simple and unspecified goiter (240)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Simple and unspecified goiter (240)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\" + }, + { + "displayName": "(240.0) Goiter, specified as simple", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Simple and unspecified goiter (240)\\(240.0) Goiter, specified as simple\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Simple and unspecified goiter (240)\\" + }, + { + "displayName": "(240.9) Goiter, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Simple and unspecified goiter (240)\\(240.9) Goiter, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Simple and unspecified goiter (240)\\" + }, + { + "displayName": "Thyroiditis (245)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\" + }, + { + "displayName": "(245.0) Acute thyroiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\(245.0) Acute thyroiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Disorders of thyroid gland (240-246.99)\\\\Thyroiditis (245)\\\\(245.0) Acute thyroiditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\" + }, + { + "displayName": "(245.1) Subacute thyroiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\(245.1) Subacute thyroiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Disorders of thyroid gland (240-246.99)\\\\Thyroiditis (245)\\\\(245.1) Subacute thyroiditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\" + }, + { + "displayName": "(245.2) Chronic lymphocytic thyroiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\(245.2) Chronic lymphocytic thyroiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\" + }, + { + "displayName": "(245.3) Chronic fibrous thyroiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\(245.3) Chronic fibrous thyroiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\" + }, + { + "displayName": "(245.4) Iatrogenic thyroiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\(245.4) Iatrogenic thyroiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\" + }, + { + "displayName": "(245.8) Other and unspecified chronic thyroiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\(245.8) Other and unspecified chronic thyroiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\" + }, + { + "displayName": "(245.9) Thyroiditis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\(245.9) Thyroiditis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyroiditis (245)\\" + }, + { + "displayName": "Thyrotoxicosis with or without goiter (242)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\" + }, + { + "displayName": "Thyrotoxicosis from ectopic thyroid nodule (242.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis from ectopic thyroid nodule (242.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\" + }, + { + "displayName": "(242.40) Thyrotoxicosis from ectopic thyroid nodule without mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis from ectopic thyroid nodule (242.4)\\(242.40) Thyrotoxicosis from ectopic thyroid nodule without mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis from ectopic thyroid nodule (242.4)\\" + }, + { + "displayName": "(242.41) Thyrotoxicosis from ectopic thyroid nodule with mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis from ectopic thyroid nodule (242.4)\\(242.41) Thyrotoxicosis from ectopic thyroid nodule with mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis from ectopic thyroid nodule (242.4)\\" + }, + { + "displayName": "Thyrotoxicosis of other specified origin (242.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis of other specified origin (242.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\" + }, + { + "displayName": "(242.80) Thyrotoxicosis of other specified origin without mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis of other specified origin (242.8)\\(242.80) Thyrotoxicosis of other specified origin without mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis of other specified origin (242.8)\\" + }, + { + "displayName": "(242.81) Thyrotoxicosis of other specified origin with mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis of other specified origin (242.8)\\(242.81) Thyrotoxicosis of other specified origin with mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis of other specified origin (242.8)\\" + }, + { + "displayName": "Thyrotoxicosis without mention of goiter or other cause (242.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis without mention of goiter or other cause (242.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\" + }, + { + "displayName": "(242.90) Thyrotoxicosis without mention of goiter or other cause, and without mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis without mention of goiter or other cause (242.9)\\(242.90) Thyrotoxicosis without mention of goiter or other cause, and without mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis without mention of goiter or other cause (242.9)\\" + }, + { + "displayName": "(242.91) Thyrotoxicosis without mention of goiter or other cause, with mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis without mention of goiter or other cause (242.9)\\(242.91) Thyrotoxicosis without mention of goiter or other cause, with mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Thyrotoxicosis without mention of goiter or other cause (242.9)\\" + }, + { + "displayName": "Toxic diffuse goiter (242.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic diffuse goiter (242.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\" + }, + { + "displayName": "(242.00) Toxic diffuse goiter without mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic diffuse goiter (242.0)\\(242.00) Toxic diffuse goiter without mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic diffuse goiter (242.0)\\" + }, + { + "displayName": "(242.01) Toxic diffuse goiter with mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic diffuse goiter (242.0)\\(242.01) Toxic diffuse goiter with mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Disorders of thyroid gland (240-246.99)\\\\Thyrotoxicosis with or without goiter (242)\\\\Toxic diffuse goiter (242.0)\\\\(242.01) Toxic diffuse goiter with mention of thyrotoxic crisis or storm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic diffuse goiter (242.0)\\" + }, + { + "displayName": "Toxic multinodular goiter (242.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic multinodular goiter (242.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Disorders of thyroid gland (240-246.99)\\\\Thyrotoxicosis with or without goiter (242)\\\\Toxic multinodular goiter (242.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\" + }, + { + "displayName": "(242.20) Toxic multinodular goiter without mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic multinodular goiter (242.2)\\(242.20) Toxic multinodular goiter without mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic multinodular goiter (242.2)\\" + }, + { + "displayName": "(242.21) Toxic multinodular goiter with mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic multinodular goiter (242.2)\\(242.21) Toxic multinodular goiter with mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Disorders of thyroid gland (240-246.99)\\\\Thyrotoxicosis with or without goiter (242)\\\\Toxic multinodular goiter (242.2)\\\\(242.21) Toxic multinodular goiter with mention of thyrotoxic crisis or storm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic multinodular goiter (242.2)\\" + }, + { + "displayName": "Toxic nodular goiter, unspecified type (242.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic nodular goiter, unspecified type (242.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\" + }, + { + "displayName": "(242.30) Toxic nodular goiter, unspecified type, without mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic nodular goiter, unspecified type (242.3)\\(242.30) Toxic nodular goiter, unspecified type, without mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Disorders of thyroid gland (240-246.99)\\\\Thyrotoxicosis with or without goiter (242)\\\\Toxic nodular goiter, unspecified type (242.3)\\\\(242.30) Toxic nodular goiter, unspecified type, without mention of thyrotoxic crisis or storm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic nodular goiter, unspecified type (242.3)\\" + }, + { + "displayName": "(242.31) Toxic nodular goiter, unspecified type, with mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic nodular goiter, unspecified type (242.3)\\(242.31) Toxic nodular goiter, unspecified type, with mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic nodular goiter, unspecified type (242.3)\\" + }, + { + "displayName": "Toxic uninodular goiter (242.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic uninodular goiter (242.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\" + }, + { + "displayName": "(242.10) Toxic uninodular goiter without mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic uninodular goiter (242.1)\\(242.10) Toxic uninodular goiter without mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic uninodular goiter (242.1)\\" + }, + { + "displayName": "(242.11) Toxic uninodular goiter with mention of thyrotoxic crisis or storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic uninodular goiter (242.1)\\(242.11) Toxic uninodular goiter with mention of thyrotoxic crisis or storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Disorders of thyroid gland (240-246.99)\\Thyrotoxicosis with or without goiter (242)\\Toxic uninodular goiter (242.1)\\" + }, + { + "displayName": "Nutritional deficiencies (260-269.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\" + }, + { + "displayName": "(260) Kwashiorkor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\(260) Kwashiorkor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\" + }, + { + "displayName": "(261) Nutritional marasmus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\(261) Nutritional marasmus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\" + }, + { + "displayName": "(262) Other severe protein-calorie malnutrition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\(262) Other severe protein-calorie malnutrition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\" + }, + { + "displayName": "(267) Ascorbic acid deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\(267) Ascorbic acid deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\" + }, + { + "displayName": "Deficiency of B-complex components (266)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Deficiency of B-complex components (266)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\" + }, + { + "displayName": "(266.0) Ariboflavinosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Deficiency of B-complex components (266)\\(266.0) Ariboflavinosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Deficiency of B-complex components (266)\\" + }, + { + "displayName": "(266.1) Vitamin B6 deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Deficiency of B-complex components (266)\\(266.1) Vitamin B6 deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Deficiency of B-complex components (266)\\" + }, + { + "displayName": "(266.2) Other B-complex deficiencies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Deficiency of B-complex components (266)\\(266.2) Other B-complex deficiencies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Deficiency of B-complex components (266)\\\\(266.2) Other B-complex deficiencies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Deficiency of B-complex components (266)\\" + }, + { + "displayName": "(266.9) Unspecified vitamin B deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Deficiency of B-complex components (266)\\(266.9) Unspecified vitamin B deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Deficiency of B-complex components (266)\\\\(266.9) Unspecified vitamin B deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Deficiency of B-complex components (266)\\" + }, + { + "displayName": "Other and unspecified protein-calorie malnutrition (263)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other and unspecified protein-calorie malnutrition (263)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\" + }, + { + "displayName": "(263.0) Malnutrition of moderate degree", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other and unspecified protein-calorie malnutrition (263)\\(263.0) Malnutrition of moderate degree\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Other and unspecified protein-calorie malnutrition (263)\\\\(263.0) Malnutrition of moderate degree\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other and unspecified protein-calorie malnutrition (263)\\" + }, + { + "displayName": "(263.1) Malnutrition of mild degree", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other and unspecified protein-calorie malnutrition (263)\\(263.1) Malnutrition of mild degree\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Other and unspecified protein-calorie malnutrition (263)\\\\(263.1) Malnutrition of mild degree\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other and unspecified protein-calorie malnutrition (263)\\" + }, + { + "displayName": "(263.2) Arrested development following protein-calorie malnutrition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other and unspecified protein-calorie malnutrition (263)\\(263.2) Arrested development following protein-calorie malnutrition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other and unspecified protein-calorie malnutrition (263)\\" + }, + { + "displayName": "(263.8) Other protein-calorie malnutrition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other and unspecified protein-calorie malnutrition (263)\\(263.8) Other protein-calorie malnutrition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Other and unspecified protein-calorie malnutrition (263)\\\\(263.8) Other protein-calorie malnutrition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other and unspecified protein-calorie malnutrition (263)\\" + }, + { + "displayName": "(263.9) Unspecified protein-calorie malnutrition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other and unspecified protein-calorie malnutrition (263)\\(263.9) Unspecified protein-calorie malnutrition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Other and unspecified protein-calorie malnutrition (263)\\\\(263.9) Unspecified protein-calorie malnutrition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other and unspecified protein-calorie malnutrition (263)\\" + }, + { + "displayName": "Other nutritional deficiencies (269)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\" + }, + { + "displayName": "(269.0) Deficiency of vitamin K", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\(269.0) Deficiency of vitamin K\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Other nutritional deficiencies (269)\\\\(269.0) Deficiency of vitamin K\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\" + }, + { + "displayName": "(269.1) Deficiency of other vitamins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\(269.1) Deficiency of other vitamins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Other nutritional deficiencies (269)\\\\(269.1) Deficiency of other vitamins\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\" + }, + { + "displayName": "(269.2) Unspecified vitamin deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\(269.2) Unspecified vitamin deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\" + }, + { + "displayName": "(269.3) Mineral deficiency, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\(269.3) Mineral deficiency, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Other nutritional deficiencies (269)\\\\(269.3) Mineral deficiency, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\" + }, + { + "displayName": "(269.8) Other nutritional deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\(269.8) Other nutritional deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Other nutritional deficiencies (269)\\\\(269.8) Other nutritional deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\" + }, + { + "displayName": "(269.9) Unspecified nutritional deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\(269.9) Unspecified nutritional deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Other nutritional deficiencies (269)\\\\(269.9) Unspecified nutritional deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Other nutritional deficiencies (269)\\" + }, + { + "displayName": "Thiamine and niacin deficiency states (265)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Thiamine and niacin deficiency states (265)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Thiamine and niacin deficiency states (265)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\" + }, + { + "displayName": "(265.0) Beriberi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Thiamine and niacin deficiency states (265)\\(265.0) Beriberi\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Thiamine and niacin deficiency states (265)\\\\(265.0) Beriberi\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Thiamine and niacin deficiency states (265)\\" + }, + { + "displayName": "(265.1) Other and unspecified manifestations of thiamine deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Thiamine and niacin deficiency states (265)\\(265.1) Other and unspecified manifestations of thiamine deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Thiamine and niacin deficiency states (265)\\\\(265.1) Other and unspecified manifestations of thiamine deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Thiamine and niacin deficiency states (265)\\" + }, + { + "displayName": "(265.2) Pellagra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Thiamine and niacin deficiency states (265)\\(265.2) Pellagra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Thiamine and niacin deficiency states (265)\\" + }, + { + "displayName": "Vitamin A deficiency (264)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\" + }, + { + "displayName": "(264.0) Vitamin A deficiency with conjunctival xerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\(264.0) Vitamin A deficiency with conjunctival xerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\" + }, + { + "displayName": "(264.1) Vitamin A deficiency with conjunctival xerosis and Bitot's spot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\(264.1) Vitamin A deficiency with conjunctival xerosis and Bitot's spot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\" + }, + { + "displayName": "(264.2) Vitamin A deficiency with corneal xerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\(264.2) Vitamin A deficiency with corneal xerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\" + }, + { + "displayName": "(264.3) Vitamin A deficiency with corneal ulceration and xerosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\(264.3) Vitamin A deficiency with corneal ulceration and xerosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\" + }, + { + "displayName": "(264.4) Vitamin A deficiency with keratomalacia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\(264.4) Vitamin A deficiency with keratomalacia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\" + }, + { + "displayName": "(264.5) Vitamin A deficiency with night blindness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\(264.5) Vitamin A deficiency with night blindness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\" + }, + { + "displayName": "(264.6) Vitamin A deficiency with xerophthalmic scars of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\(264.6) Vitamin A deficiency with xerophthalmic scars of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\" + }, + { + "displayName": "(264.7) Other ocular manifestations of vitamin A deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\(264.7) Other ocular manifestations of vitamin A deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\" + }, + { + "displayName": "(264.8) Other manifestations of vitamin A deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\(264.8) Other manifestations of vitamin A deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\" + }, + { + "displayName": "(264.9) Unspecified vitamin A deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\(264.9) Unspecified vitamin A deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Vitamin A deficiency (264)\\\\(264.9) Unspecified vitamin A deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin A deficiency (264)\\" + }, + { + "displayName": "Vitamin D deficiency (268)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin D deficiency (268)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Vitamin D deficiency (268)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\" + }, + { + "displayName": "(268.0) Rickets, active", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin D deficiency (268)\\(268.0) Rickets, active\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin D deficiency (268)\\" + }, + { + "displayName": "(268.1) Rickets, late effect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin D deficiency (268)\\(268.1) Rickets, late effect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Vitamin D deficiency (268)\\\\(268.1) Rickets, late effect\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin D deficiency (268)\\" + }, + { + "displayName": "(268.2) Osteomalacia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin D deficiency (268)\\(268.2) Osteomalacia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Nutritional deficiencies (260-269.99)\\\\Vitamin D deficiency (268)\\\\(268.2) Osteomalacia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin D deficiency (268)\\" + }, + { + "displayName": "(268.9) Unspecified vitamin D deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin D deficiency (268)\\(268.9) Unspecified vitamin D deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Nutritional deficiencies (260-269.99)\\Vitamin D deficiency (268)\\" + }, + { + "displayName": "Other metabolic and immunity disorders (270-279.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\" + }, + { + "displayName": "Disorders involving the immune mechanism (279)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders involving the immune mechanism (279)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\" + }, + { + "displayName": "(279.2) Combined immunity deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\(279.2) Combined immunity deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\" + }, + { + "displayName": "(279.3) Unspecified immunity deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\(279.3) Unspecified immunity deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders involving the immune mechanism (279)\\\\(279.3) Unspecified immunity deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\" + }, + { + "displayName": "(279.8) Other specified disorders involving the immune mechanism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\(279.8) Other specified disorders involving the immune mechanism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders involving the immune mechanism (279)\\\\(279.8) Other specified disorders involving the immune mechanism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\" + }, + { + "displayName": "(279.9) Unspecified disorder of immune mechanism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\(279.9) Unspecified disorder of immune mechanism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\" + }, + { + "displayName": "Autoimmune disease, not elsewhere classified (279.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Autoimmune disease, not elsewhere classified (279.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders involving the immune mechanism (279)\\\\Autoimmune disease, not elsewhere classified (279.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\" + }, + { + "displayName": "(279.41) Autoimmune lymphoproliferative syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Autoimmune disease, not elsewhere classified (279.4)\\(279.41) Autoimmune lymphoproliferative syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders involving the immune mechanism (279)\\\\Autoimmune disease, not elsewhere classified (279.4)\\\\(279.41) Autoimmune lymphoproliferative syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Autoimmune disease, not elsewhere classified (279.4)\\" + }, + { + "displayName": "(279.49) Autoimmune disease, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Autoimmune disease, not elsewhere classified (279.4)\\(279.49) Autoimmune disease, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Autoimmune disease, not elsewhere classified (279.4)\\" + }, + { + "displayName": "Deficiency of cell-mediated immunity (279.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of cell-mediated immunity (279.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders involving the immune mechanism (279)\\\\Deficiency of cell-mediated immunity (279.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\" + }, + { + "displayName": "(279.10) Immunodeficiency with predominant T-cell defect, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of cell-mediated immunity (279.1)\\(279.10) Immunodeficiency with predominant T-cell defect, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders involving the immune mechanism (279)\\\\Deficiency of cell-mediated immunity (279.1)\\\\(279.10) Immunodeficiency with predominant T-cell defect, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of cell-mediated immunity (279.1)\\" + }, + { + "displayName": "(279.11) Digeorge's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of cell-mediated immunity (279.1)\\(279.11) Digeorge's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of cell-mediated immunity (279.1)\\" + }, + { + "displayName": "(279.12) Wiskott-aldrich syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of cell-mediated immunity (279.1)\\(279.12) Wiskott-aldrich syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of cell-mediated immunity (279.1)\\" + }, + { + "displayName": "(279.13) Nezelof's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of cell-mediated immunity (279.1)\\(279.13) Nezelof's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders involving the immune mechanism (279)\\\\Deficiency of cell-mediated immunity (279.1)\\\\(279.13) Nezelof's syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of cell-mediated immunity (279.1)\\" + }, + { + "displayName": "(279.19) Other deficiency of cell-mediated immunity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of cell-mediated immunity (279.1)\\(279.19) Other deficiency of cell-mediated immunity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders involving the immune mechanism (279)\\\\Deficiency of cell-mediated immunity (279.1)\\\\(279.19) Other deficiency of cell-mediated immunity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of cell-mediated immunity (279.1)\\" + }, + { + "displayName": "Deficiency of humoral immunity (279.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders involving the immune mechanism (279)\\\\Deficiency of humoral immunity (279.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\" + }, + { + "displayName": "(279.00) Hypogammaglobulinemia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\(279.00) Hypogammaglobulinemia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\" + }, + { + "displayName": "(279.01) Selective IgA immunodeficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\(279.01) Selective IgA immunodeficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\" + }, + { + "displayName": "(279.02) Selective IgM immunodeficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\(279.02) Selective IgM immunodeficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\" + }, + { + "displayName": "(279.03) Other selective immunoglobulin deficiencies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\(279.03) Other selective immunoglobulin deficiencies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\" + }, + { + "displayName": "(279.04) Congenital hypogammaglobulinemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\(279.04) Congenital hypogammaglobulinemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\" + }, + { + "displayName": "(279.05) Immunodeficiency with increased IgM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\(279.05) Immunodeficiency with increased IgM\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\" + }, + { + "displayName": "(279.06) Common variable immunodeficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\(279.06) Common variable immunodeficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\" + }, + { + "displayName": "(279.09) Other deficiency of humoral immunity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\(279.09) Other deficiency of humoral immunity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Deficiency of humoral immunity (279.0)\\" + }, + { + "displayName": "Graft-versus-host disease (279.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Graft-versus-host disease (279.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\" + }, + { + "displayName": "(279.50) Graft-versus-host disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Graft-versus-host disease (279.5)\\(279.50) Graft-versus-host disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Graft-versus-host disease (279.5)\\" + }, + { + "displayName": "(279.51) Acute graft-versus-host disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Graft-versus-host disease (279.5)\\(279.51) Acute graft-versus-host disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Graft-versus-host disease (279.5)\\" + }, + { + "displayName": "(279.52) Chronic graft-versus-host disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Graft-versus-host disease (279.5)\\(279.52) Chronic graft-versus-host disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Graft-versus-host disease (279.5)\\" + }, + { + "displayName": "(279.53) Acute on chronic graft-versus-host disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Graft-versus-host disease (279.5)\\(279.53) Acute on chronic graft-versus-host disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders involving the immune mechanism (279)\\Graft-versus-host disease (279.5)\\" + }, + { + "displayName": "Disorders of amino-acid transport and metabolism (270)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\" + }, + { + "displayName": "(270.0) Disturbances of amino-acid transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\(270.0) Disturbances of amino-acid transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\" + }, + { + "displayName": "(270.1) Phenylketonuria [PKU]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\(270.1) Phenylketonuria [PKU]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\" + }, + { + "displayName": "(270.2) Other disturbances of aromatic amino-acid metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\(270.2) Other disturbances of aromatic amino-acid metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of amino-acid transport and metabolism (270)\\\\(270.2) Other disturbances of aromatic amino-acid metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\" + }, + { + "displayName": "(270.3) Disturbances of branched-chain amino-acid metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\(270.3) Disturbances of branched-chain amino-acid metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of amino-acid transport and metabolism (270)\\\\(270.3) Disturbances of branched-chain amino-acid metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\" + }, + { + "displayName": "(270.4) Disturbances of sulphur-bearing amino-acid metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\(270.4) Disturbances of sulphur-bearing amino-acid metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of amino-acid transport and metabolism (270)\\\\(270.4) Disturbances of sulphur-bearing amino-acid metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\" + }, + { + "displayName": "(270.5) Disturbances of histidine metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\(270.5) Disturbances of histidine metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\" + }, + { + "displayName": "(270.6) Disorders of urea cycle metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\(270.6) Disorders of urea cycle metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of amino-acid transport and metabolism (270)\\\\(270.6) Disorders of urea cycle metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\" + }, + { + "displayName": "(270.7) Other disturbances of straight-chain amino-acid metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\(270.7) Other disturbances of straight-chain amino-acid metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\" + }, + { + "displayName": "(270.8) Other specified disorders of amino-acid metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\(270.8) Other specified disorders of amino-acid metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of amino-acid transport and metabolism (270)\\\\(270.8) Other specified disorders of amino-acid metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\" + }, + { + "displayName": "(270.9) Unspecified disorder of amino-acid metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\(270.9) Unspecified disorder of amino-acid metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of amino-acid transport and metabolism (270)\\" + }, + { + "displayName": "Disorders of carbohydrate transport and metabolism (271)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\" + }, + { + "displayName": "(271.0) Glycogenosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\(271.0) Glycogenosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\" + }, + { + "displayName": "(271.1) Galactosemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\(271.1) Galactosemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\" + }, + { + "displayName": "(271.2) Hereditary fructose intolerance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\(271.2) Hereditary fructose intolerance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\" + }, + { + "displayName": "(271.3) Intestinal disaccharidase deficiencies and disaccharide malabsorption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\(271.3) Intestinal disaccharidase deficiencies and disaccharide malabsorption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\" + }, + { + "displayName": "(271.4) Renal glycosuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\(271.4) Renal glycosuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\" + }, + { + "displayName": "(271.8) Other specified disorders of carbohydrate transport and metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\(271.8) Other specified disorders of carbohydrate transport and metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of carbohydrate transport and metabolism (271)\\\\(271.8) Other specified disorders of carbohydrate transport and metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\" + }, + { + "displayName": "(271.9) Unspecified disorder of carbohydrate transport and metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\(271.9) Unspecified disorder of carbohydrate transport and metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of carbohydrate transport and metabolism (271)\\\\(271.9) Unspecified disorder of carbohydrate transport and metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of carbohydrate transport and metabolism (271)\\" + }, + { + "displayName": "Disorders of fluid, electrolyte, and acid-base balance (276)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of fluid, electrolyte, and acid-base balance (276)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\" + }, + { + "displayName": "(276.0) Hyperosmolality and/or hypernatremia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\(276.0) Hyperosmolality and/or hypernatremia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\" + }, + { + "displayName": "(276.1) Hyposmolality and/or hyponatremia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\(276.1) Hyposmolality and/or hyponatremia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\" + }, + { + "displayName": "(276.2) Acidosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\(276.2) Acidosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\" + }, + { + "displayName": "(276.3) Alkalosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\(276.3) Alkalosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\" + }, + { + "displayName": "(276.4) Mixed acid-base balance disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\(276.4) Mixed acid-base balance disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\" + }, + { + "displayName": "(276.7) Hyperpotassemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\(276.7) Hyperpotassemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\" + }, + { + "displayName": "(276.8) Hypopotassemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\(276.8) Hypopotassemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\" + }, + { + "displayName": "(276.9) Electrolyte and fluid disorders not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\(276.9) Electrolyte and fluid disorders not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\" + }, + { + "displayName": "Fluid overload (276.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Fluid overload (276.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of fluid, electrolyte, and acid-base balance (276)\\\\Fluid overload (276.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\" + }, + { + "displayName": "(276.61) Transfusion associated circulatory overload", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Fluid overload (276.6)\\(276.61) Transfusion associated circulatory overload\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of fluid, electrolyte, and acid-base balance (276)\\\\Fluid overload (276.6)\\\\(276.61) Transfusion associated circulatory overload\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Fluid overload (276.6)\\" + }, + { + "displayName": "(276.69) Other fluid overload", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Fluid overload (276.6)\\(276.69) Other fluid overload\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Fluid overload (276.6)\\" + }, + { + "displayName": "Volume depletion (276.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Volume depletion (276.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of fluid, electrolyte, and acid-base balance (276)\\\\Volume depletion (276.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\" + }, + { + "displayName": "(276.50) Volume depletion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Volume depletion (276.5)\\(276.50) Volume depletion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Volume depletion (276.5)\\" + }, + { + "displayName": "(276.51) Dehydration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Volume depletion (276.5)\\(276.51) Dehydration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of fluid, electrolyte, and acid-base balance (276)\\\\Volume depletion (276.5)\\\\(276.51) Dehydration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Volume depletion (276.5)\\" + }, + { + "displayName": "(276.52) Hypovolemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Volume depletion (276.5)\\(276.52) Hypovolemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of fluid, electrolyte, and acid-base balance (276)\\Volume depletion (276.5)\\" + }, + { + "displayName": "Disorders of lipoid metabolism (272)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of lipoid metabolism (272)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\" + }, + { + "displayName": "(272.0) Pure hypercholesterolemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\(272.0) Pure hypercholesterolemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of lipoid metabolism (272)\\\\(272.0) Pure hypercholesterolemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\" + }, + { + "displayName": "(272.1) Pure hyperglyceridemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\(272.1) Pure hyperglyceridemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\" + }, + { + "displayName": "(272.2) Mixed hyperlipidemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\(272.2) Mixed hyperlipidemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of lipoid metabolism (272)\\\\(272.2) Mixed hyperlipidemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\" + }, + { + "displayName": "(272.3) Hyperchylomicronemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\(272.3) Hyperchylomicronemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\" + }, + { + "displayName": "(272.4) Other and unspecified hyperlipidemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\(272.4) Other and unspecified hyperlipidemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of lipoid metabolism (272)\\\\(272.4) Other and unspecified hyperlipidemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\" + }, + { + "displayName": "(272.5) Lipoprotein deficiencies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\(272.5) Lipoprotein deficiencies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\" + }, + { + "displayName": "(272.6) Lipodystrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\(272.6) Lipodystrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of lipoid metabolism (272)\\\\(272.6) Lipodystrophy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\" + }, + { + "displayName": "(272.7) Lipidoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\(272.7) Lipidoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of lipoid metabolism (272)\\\\(272.7) Lipidoses\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\" + }, + { + "displayName": "(272.8) Other disorders of lipoid metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\(272.8) Other disorders of lipoid metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\" + }, + { + "displayName": "(272.9) Unspecified disorder of lipoid metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\(272.9) Unspecified disorder of lipoid metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of lipoid metabolism (272)\\\\(272.9) Unspecified disorder of lipoid metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of lipoid metabolism (272)\\" + }, + { + "displayName": "Disorders of mineral metabolism (275)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\" + }, + { + "displayName": "(275.1) Disorders of copper metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\(275.1) Disorders of copper metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of mineral metabolism (275)\\\\(275.1) Disorders of copper metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\" + }, + { + "displayName": "(275.2) Disorders of magnesium metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\(275.2) Disorders of magnesium metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of mineral metabolism (275)\\\\(275.2) Disorders of magnesium metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\" + }, + { + "displayName": "(275.3) Disorders of phosphorus metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\(275.3) Disorders of phosphorus metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of mineral metabolism (275)\\\\(275.3) Disorders of phosphorus metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\" + }, + { + "displayName": "(275.5) Hungry bone syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\(275.5) Hungry bone syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\" + }, + { + "displayName": "(275.8) Other specified disorders of mineral metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\(275.8) Other specified disorders of mineral metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of mineral metabolism (275)\\\\(275.8) Other specified disorders of mineral metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\" + }, + { + "displayName": "(275.9) Unspecified disorder of mineral metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\(275.9) Unspecified disorder of mineral metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of mineral metabolism (275)\\\\(275.9) Unspecified disorder of mineral metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\" + }, + { + "displayName": "Disorders of calcium metabolism (275.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of calcium metabolism (275.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of mineral metabolism (275)\\\\Disorders of calcium metabolism (275.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\" + }, + { + "displayName": "(275.40) Unspecified disorder of calcium metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of calcium metabolism (275.4)\\(275.40) Unspecified disorder of calcium metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of calcium metabolism (275.4)\\" + }, + { + "displayName": "(275.41) Hypocalcemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of calcium metabolism (275.4)\\(275.41) Hypocalcemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of calcium metabolism (275.4)\\" + }, + { + "displayName": "(275.42) Hypercalcemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of calcium metabolism (275.4)\\(275.42) Hypercalcemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of calcium metabolism (275.4)\\" + }, + { + "displayName": "(275.49) Other disorders of calcium metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of calcium metabolism (275.4)\\(275.49) Other disorders of calcium metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of calcium metabolism (275.4)\\" + }, + { + "displayName": "Disorders of iron metabolism (275.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of iron metabolism (275.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\" + }, + { + "displayName": "(275.01) Hereditary hemochromatosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of iron metabolism (275.0)\\(275.01) Hereditary hemochromatosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of iron metabolism (275.0)\\" + }, + { + "displayName": "(275.02) Hemochromatosis due to repeated red blood cell transfusions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of iron metabolism (275.0)\\(275.02) Hemochromatosis due to repeated red blood cell transfusions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of iron metabolism (275.0)\\" + }, + { + "displayName": "(275.03) Other hemochromatosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of iron metabolism (275.0)\\(275.03) Other hemochromatosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of iron metabolism (275.0)\\" + }, + { + "displayName": "(275.09) Other disorders of iron metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of iron metabolism (275.0)\\(275.09) Other disorders of iron metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of mineral metabolism (275)\\Disorders of iron metabolism (275.0)\\" + }, + { + "displayName": "Disorders of plasma protein metabolism (273)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\" + }, + { + "displayName": "(273.0) Polyclonal hypergammaglobulinemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\(273.0) Polyclonal hypergammaglobulinemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of plasma protein metabolism (273)\\\\(273.0) Polyclonal hypergammaglobulinemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\" + }, + { + "displayName": "(273.1) Monoclonal paraproteinemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\(273.1) Monoclonal paraproteinemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of plasma protein metabolism (273)\\\\(273.1) Monoclonal paraproteinemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\" + }, + { + "displayName": "(273.2) Other paraproteinemias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\(273.2) Other paraproteinemias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of plasma protein metabolism (273)\\\\(273.2) Other paraproteinemias\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\" + }, + { + "displayName": "(273.3) Macroglobulinemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\(273.3) Macroglobulinemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\" + }, + { + "displayName": "(273.4) Alpha-1-antitrypsin deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\(273.4) Alpha-1-antitrypsin deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of plasma protein metabolism (273)\\\\(273.4) Alpha-1-antitrypsin deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\" + }, + { + "displayName": "(273.8) Other disorders of plasma protein metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\(273.8) Other disorders of plasma protein metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of plasma protein metabolism (273)\\\\(273.8) Other disorders of plasma protein metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\" + }, + { + "displayName": "(273.9) Unspecified disorder of plasma protein metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\(273.9) Unspecified disorder of plasma protein metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Disorders of plasma protein metabolism (273)\\\\(273.9) Unspecified disorder of plasma protein metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Disorders of plasma protein metabolism (273)\\" + }, + { + "displayName": "Gout (274)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\" + }, + { + "displayName": "(274.9) Gout, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\(274.9) Gout, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Gout (274)\\\\(274.9) Gout, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\" + }, + { + "displayName": "Gout with other specified manifestations (274.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gout with other specified manifestations (274.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Gout (274)\\\\Gout with other specified manifestations (274.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\" + }, + { + "displayName": "(274.81) Gouty tophi of ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gout with other specified manifestations (274.8)\\(274.81) Gouty tophi of ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gout with other specified manifestations (274.8)\\" + }, + { + "displayName": "(274.82) Gouty tophi of other sites, except ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gout with other specified manifestations (274.8)\\(274.82) Gouty tophi of other sites, except ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Gout (274)\\\\Gout with other specified manifestations (274.8)\\\\(274.82) Gouty tophi of other sites, except ear\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gout with other specified manifestations (274.8)\\" + }, + { + "displayName": "(274.89) Gout with other specified manifestations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gout with other specified manifestations (274.8)\\(274.89) Gout with other specified manifestations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gout with other specified manifestations (274.8)\\" + }, + { + "displayName": "Gouty arthropathy (274.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty arthropathy (274.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Gout (274)\\\\Gouty arthropathy (274.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\" + }, + { + "displayName": "(274.00) Gouty arthropathy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty arthropathy (274.0)\\(274.00) Gouty arthropathy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Gout (274)\\\\Gouty arthropathy (274.0)\\\\(274.00) Gouty arthropathy, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty arthropathy (274.0)\\" + }, + { + "displayName": "(274.01) Acute gouty arthropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty arthropathy (274.0)\\(274.01) Acute gouty arthropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Gout (274)\\\\Gouty arthropathy (274.0)\\\\(274.01) Acute gouty arthropathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty arthropathy (274.0)\\" + }, + { + "displayName": "(274.02) Chronic gouty arthropathy without mention of tophus (tophi)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty arthropathy (274.0)\\(274.02) Chronic gouty arthropathy without mention of tophus (tophi)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty arthropathy (274.0)\\" + }, + { + "displayName": "(274.03) Chronic gouty arthropathy with tophus (tophi)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty arthropathy (274.0)\\(274.03) Chronic gouty arthropathy with tophus (tophi)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Gout (274)\\\\Gouty arthropathy (274.0)\\\\(274.03) Chronic gouty arthropathy with tophus (tophi)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty arthropathy (274.0)\\" + }, + { + "displayName": "Gouty nephropathy (274.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty nephropathy (274.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\" + }, + { + "displayName": "(274.10) Gouty nephropathy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty nephropathy (274.1)\\(274.10) Gouty nephropathy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Gout (274)\\\\Gouty nephropathy (274.1)\\\\(274.10) Gouty nephropathy, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty nephropathy (274.1)\\" + }, + { + "displayName": "(274.11) Uric acid nephrolithiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty nephropathy (274.1)\\(274.11) Uric acid nephrolithiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Gout (274)\\\\Gouty nephropathy (274.1)\\\\(274.11) Uric acid nephrolithiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty nephropathy (274.1)\\" + }, + { + "displayName": "(274.19) Other gouty nephropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty nephropathy (274.1)\\(274.19) Other gouty nephropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Gout (274)\\Gouty nephropathy (274.1)\\" + }, + { + "displayName": "Other and unspecified disorders of metabolism (277)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\" + }, + { + "displayName": "(277.1) Disorders of porphyrin metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\(277.1) Disorders of porphyrin metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\" + }, + { + "displayName": "(277.2) Other disorders of purine and pyrimidine metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\(277.2) Other disorders of purine and pyrimidine metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\" + }, + { + "displayName": "(277.4) Disorders of bilirubin excretion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\(277.4) Disorders of bilirubin excretion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\" + }, + { + "displayName": "(277.5) Mucopolysaccharidosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\(277.5) Mucopolysaccharidosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\" + }, + { + "displayName": "(277.6) Other deficiencies of circulating enzymes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\(277.6) Other deficiencies of circulating enzymes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\(277.6) Other deficiencies of circulating enzymes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\" + }, + { + "displayName": "(277.7) Dysmetabolic syndrome X", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\(277.7) Dysmetabolic syndrome X\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\(277.7) Dysmetabolic syndrome X\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\" + }, + { + "displayName": "(277.9) Unspecified disorder of metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\(277.9) Unspecified disorder of metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\(277.9) Unspecified disorder of metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\" + }, + { + "displayName": "Amyloidosis (277.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Amyloidosis (277.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\" + }, + { + "displayName": "(277.30) Amyloidosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Amyloidosis (277.3)\\(277.30) Amyloidosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\Amyloidosis (277.3)\\\\(277.30) Amyloidosis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Amyloidosis (277.3)\\" + }, + { + "displayName": "(277.31) Familial Mediterranean fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Amyloidosis (277.3)\\(277.31) Familial Mediterranean fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\Amyloidosis (277.3)\\\\(277.31) Familial Mediterranean fever\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Amyloidosis (277.3)\\" + }, + { + "displayName": "(277.39) Other amyloidosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Amyloidosis (277.3)\\(277.39) Other amyloidosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Amyloidosis (277.3)\\" + }, + { + "displayName": "Cystic fibrosis (277.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Cystic fibrosis (277.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\Cystic fibrosis (277.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\" + }, + { + "displayName": "(277.00) Cystic fibrosis without mention of meconium ileus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Cystic fibrosis (277.0)\\(277.00) Cystic fibrosis without mention of meconium ileus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Cystic fibrosis (277.0)\\" + }, + { + "displayName": "(277.01) Cystic fibrosis with meconium ileus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Cystic fibrosis (277.0)\\(277.01) Cystic fibrosis with meconium ileus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Cystic fibrosis (277.0)\\" + }, + { + "displayName": "(277.02) Cystic fibrosis with pulmonary manifestations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Cystic fibrosis (277.0)\\(277.02) Cystic fibrosis with pulmonary manifestations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\Cystic fibrosis (277.0)\\\\(277.02) Cystic fibrosis with pulmonary manifestations\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Cystic fibrosis (277.0)\\" + }, + { + "displayName": "(277.03) Cystic fibrosis with gastrointestinal manifestations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Cystic fibrosis (277.0)\\(277.03) Cystic fibrosis with gastrointestinal manifestations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\Cystic fibrosis (277.0)\\\\(277.03) Cystic fibrosis with gastrointestinal manifestations\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Cystic fibrosis (277.0)\\" + }, + { + "displayName": "(277.09) Cystic fibrosis with other manifestations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Cystic fibrosis (277.0)\\(277.09) Cystic fibrosis with other manifestations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Cystic fibrosis (277.0)\\" + }, + { + "displayName": "Other specified disorders of metabolism (277.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\Other specified disorders of metabolism (277.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\" + }, + { + "displayName": "(277.81) Primary carnitine deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\(277.81) Primary carnitine deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\Other specified disorders of metabolism (277.8)\\\\(277.81) Primary carnitine deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\" + }, + { + "displayName": "(277.82) Carnitine deficiency due to inborn errors of metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\(277.82) Carnitine deficiency due to inborn errors of metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\" + }, + { + "displayName": "(277.83) Iatrogenic carnitine deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\(277.83) Iatrogenic carnitine deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\Other specified disorders of metabolism (277.8)\\\\(277.83) Iatrogenic carnitine deficiency\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\" + }, + { + "displayName": "(277.84) Other secondary carnitine deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\(277.84) Other secondary carnitine deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\" + }, + { + "displayName": "(277.85) Disorders of fatty acid oxidation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\(277.85) Disorders of fatty acid oxidation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\Other specified disorders of metabolism (277.8)\\\\(277.85) Disorders of fatty acid oxidation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\" + }, + { + "displayName": "(277.86) Peroxisomal disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\(277.86) Peroxisomal disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\Other specified disorders of metabolism (277.8)\\\\(277.86) Peroxisomal disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\" + }, + { + "displayName": "(277.87) Disorders of mitochondrial metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\(277.87) Disorders of mitochondrial metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\" + }, + { + "displayName": "(277.88) Tumor lysis syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\(277.88) Tumor lysis syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Other and unspecified disorders of metabolism (277)\\\\Other specified disorders of metabolism (277.8)\\\\(277.88) Tumor lysis syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\" + }, + { + "displayName": "(277.89) Other specified disorders of metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\(277.89) Other specified disorders of metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Other and unspecified disorders of metabolism (277)\\Other specified disorders of metabolism (277.8)\\" + }, + { + "displayName": "Overweight, obesity and other hyperalimentation (278)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\" + }, + { + "displayName": "(278.1) Localized adiposity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\(278.1) Localized adiposity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\" + }, + { + "displayName": "(278.2) Hypervitaminosis A", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\(278.2) Hypervitaminosis A\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Overweight, obesity and other hyperalimentation (278)\\\\(278.2) Hypervitaminosis A\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\" + }, + { + "displayName": "(278.3) Hypercarotinemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\(278.3) Hypercarotinemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\" + }, + { + "displayName": "(278.4) Hypervitaminosis D", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\(278.4) Hypervitaminosis D\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Overweight, obesity and other hyperalimentation (278)\\\\(278.4) Hypervitaminosis D\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\" + }, + { + "displayName": "(278.8) Other hyperalimentation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\(278.8) Other hyperalimentation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\" + }, + { + "displayName": "Overweight and obesity (278.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\Overweight and obesity (278.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Overweight, obesity and other hyperalimentation (278)\\\\Overweight and obesity (278.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\" + }, + { + "displayName": "(278.00) Obesity, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\Overweight and obesity (278.0)\\(278.00) Obesity, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Overweight, obesity and other hyperalimentation (278)\\\\Overweight and obesity (278.0)\\\\(278.00) Obesity, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\Overweight and obesity (278.0)\\" + }, + { + "displayName": "(278.01) Morbid obesity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\Overweight and obesity (278.0)\\(278.01) Morbid obesity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Overweight, obesity and other hyperalimentation (278)\\\\Overweight and obesity (278.0)\\\\(278.01) Morbid obesity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\Overweight and obesity (278.0)\\" + }, + { + "displayName": "(278.02) Overweight", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\Overweight and obesity (278.0)\\(278.02) Overweight\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\Overweight and obesity (278.0)\\" + }, + { + "displayName": "(278.03) Obesity hypoventilation syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\Overweight and obesity (278.0)\\(278.03) Obesity hypoventilation syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\\\Other metabolic and immunity disorders (270-279.99)\\\\Overweight, obesity and other hyperalimentation (278)\\\\Overweight and obesity (278.0)\\\\(278.03) Obesity hypoventilation syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Endocrine, nutritional and metabolic diseases, and immunity disorders (240-279.99)\\Other metabolic and immunity disorders (270-279.99)\\Overweight, obesity and other hyperalimentation (278)\\Overweight and obesity (278.0)\\" + }, + { + "displayName": "Infectious and parasitic diseases (001-139.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Arthropod-Borne viral diseases (060-066.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(061) Dengue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\(061) Dengue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\(061) Dengue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\" + }, + { + "displayName": "(064) Viral encephalitis transmitted by other and unspecified arthropods", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\(064) Viral encephalitis transmitted by other and unspecified arthropods\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\(064) Viral encephalitis transmitted by other and unspecified arthropods\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\" + }, + { + "displayName": "Arthropod-borne hemorrhagic fever (065)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\" + }, + { + "displayName": "(065.0) Crimean hemorrhagic fever [CHF Congo virus]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\(065.0) Crimean hemorrhagic fever [CHF Congo virus]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Arthropod-borne hemorrhagic fever (065)\\\\(065.0) Crimean hemorrhagic fever [CHF Congo virus]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\" + }, + { + "displayName": "(065.1) Omsk hemorrhagic fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\(065.1) Omsk hemorrhagic fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\" + }, + { + "displayName": "(065.2) Kyasanur forest disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\(065.2) Kyasanur forest disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\" + }, + { + "displayName": "(065.3) Other tick-borne hemorrhagic fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\(065.3) Other tick-borne hemorrhagic fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\" + }, + { + "displayName": "(065.4) Mosquito-borne hemorrhagic fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\(065.4) Mosquito-borne hemorrhagic fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\" + }, + { + "displayName": "(065.8) Other specified arthropod-borne hemorrhagic fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\(065.8) Other specified arthropod-borne hemorrhagic fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\" + }, + { + "displayName": "(065.9) Arthropod-borne hemorrhagic fever, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\(065.9) Arthropod-borne hemorrhagic fever, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Arthropod-borne hemorrhagic fever (065)\\" + }, + { + "displayName": "Mosquito-borne viral encephalitis (062)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\" + }, + { + "displayName": "(062.0) Japanese encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\(062.0) Japanese encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\" + }, + { + "displayName": "(062.1) Western equine encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\(062.1) Western equine encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\" + }, + { + "displayName": "(062.2) Eastern equine encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\(062.2) Eastern equine encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Mosquito-borne viral encephalitis (062)\\\\(062.2) Eastern equine encephalitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\" + }, + { + "displayName": "(062.3) St. Louis encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\(062.3) St. Louis encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Mosquito-borne viral encephalitis (062)\\\\(062.3) St. Louis encephalitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\" + }, + { + "displayName": "(062.4) Australian encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\(062.4) Australian encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\" + }, + { + "displayName": "(062.5) California virus encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\(062.5) California virus encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Mosquito-borne viral encephalitis (062)\\\\(062.5) California virus encephalitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\" + }, + { + "displayName": "(062.8) Other specified mosquito-borne viral encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\(062.8) Other specified mosquito-borne viral encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\" + }, + { + "displayName": "(062.9) Mosquito-borne viral encephalitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\(062.9) Mosquito-borne viral encephalitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Mosquito-borne viral encephalitis (062)\\\\(062.9) Mosquito-borne viral encephalitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Mosquito-borne viral encephalitis (062)\\" + }, + { + "displayName": "Other arthropod-borne viral diseases (066)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Other arthropod-borne viral diseases (066)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\" + }, + { + "displayName": "(066.0) Phlebotomus fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\(066.0) Phlebotomus fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\" + }, + { + "displayName": "(066.1) Tick-borne fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\(066.1) Tick-borne fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Other arthropod-borne viral diseases (066)\\\\(066.1) Tick-borne fever\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\" + }, + { + "displayName": "(066.2) Venezuelan equine fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\(066.2) Venezuelan equine fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Other arthropod-borne viral diseases (066)\\\\(066.2) Venezuelan equine fever\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\" + }, + { + "displayName": "(066.3) Other mosquito-borne fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\(066.3) Other mosquito-borne fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Other arthropod-borne viral diseases (066)\\\\(066.3) Other mosquito-borne fever\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\" + }, + { + "displayName": "(066.8) Other specified arthropod-borne viral diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\(066.8) Other specified arthropod-borne viral diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\" + }, + { + "displayName": "(066.9) Arthropod-borne viral disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\(066.9) Arthropod-borne viral disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\" + }, + { + "displayName": "West Nile fever (066.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\West Nile fever (066.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\" + }, + { + "displayName": "(066.40) West Nile Fever, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\West Nile fever (066.4)\\(066.40) West Nile Fever, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\West Nile fever (066.4)\\" + }, + { + "displayName": "(066.41) West Nile Fever with encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\West Nile fever (066.4)\\(066.41) West Nile Fever with encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\West Nile fever (066.4)\\" + }, + { + "displayName": "(066.42) West Nile Fever with other neurologic manifestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\West Nile fever (066.4)\\(066.42) West Nile Fever with other neurologic manifestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\West Nile fever (066.4)\\" + }, + { + "displayName": "(066.49) West Nile Fever with other complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\West Nile fever (066.4)\\(066.49) West Nile Fever with other complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Other arthropod-borne viral diseases (066)\\West Nile fever (066.4)\\" + }, + { + "displayName": "Tick-borne viral encephalitis (063)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Tick-borne viral encephalitis (063)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\" + }, + { + "displayName": "(063.0) Russian spring-summer [taiga] encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Tick-borne viral encephalitis (063)\\(063.0) Russian spring-summer [taiga] encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Tick-borne viral encephalitis (063)\\" + }, + { + "displayName": "(063.1) Louping ill", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Tick-borne viral encephalitis (063)\\(063.1) Louping ill\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Tick-borne viral encephalitis (063)\\" + }, + { + "displayName": "(063.2) Central european encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Tick-borne viral encephalitis (063)\\(063.2) Central european encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Tick-borne viral encephalitis (063)\\" + }, + { + "displayName": "(063.8) Other specified tick-borne viral encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Tick-borne viral encephalitis (063)\\(063.8) Other specified tick-borne viral encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Tick-borne viral encephalitis (063)\\" + }, + { + "displayName": "(063.9) Tick-borne viral encephalitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Tick-borne viral encephalitis (063)\\(063.9) Tick-borne viral encephalitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Tick-borne viral encephalitis (063)\\\\(063.9) Tick-borne viral encephalitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Tick-borne viral encephalitis (063)\\" + }, + { + "displayName": "Yellow fever (060)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Yellow fever (060)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Yellow fever (060)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\" + }, + { + "displayName": "(060.0) Sylvatic yellow fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Yellow fever (060)\\(060.0) Sylvatic yellow fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Yellow fever (060)\\" + }, + { + "displayName": "(060.1) Urban yellow fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Yellow fever (060)\\(060.1) Urban yellow fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Arthropod-Borne viral diseases (060-066.99)\\\\Yellow fever (060)\\\\(060.1) Urban yellow fever\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Yellow fever (060)\\" + }, + { + "displayName": "(060.9) Yellow fever, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Yellow fever (060)\\(060.9) Yellow fever, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Arthropod-Borne viral diseases (060-066.99)\\Yellow fever (060)\\" + }, + { + "displayName": "Helminthiases (120-129.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(124) Trichinosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\(124) Trichinosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\(124) Trichinosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\" + }, + { + "displayName": "(129) Intestinal parasitism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\(129) Intestinal parasitism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\(129) Intestinal parasitism, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\" + }, + { + "displayName": "Ancylostomiasis and necatoriasis (126)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\" + }, + { + "displayName": "(126.0) Ancylostomiasis due to ancylostoma duodenale", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\(126.0) Ancylostomiasis due to ancylostoma duodenale\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\" + }, + { + "displayName": "(126.1) Necatoriasis due to necator americanus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\(126.1) Necatoriasis due to necator americanus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\" + }, + { + "displayName": "(126.2) Ancylostomiasis due to ancylostoma braziliense", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\(126.2) Ancylostomiasis due to ancylostoma braziliense\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\" + }, + { + "displayName": "(126.3) Ancylostomiasis due to ancylostoma ceylanicum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\(126.3) Ancylostomiasis due to ancylostoma ceylanicum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\" + }, + { + "displayName": "(126.8) Other specified ancylostoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\(126.8) Other specified ancylostoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Ancylostomiasis and necatoriasis (126)\\\\(126.8) Other specified ancylostoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\" + }, + { + "displayName": "(126.9) Ancylostomiasis and necatoriasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\(126.9) Ancylostomiasis and necatoriasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Ancylostomiasis and necatoriasis (126)\\\\(126.9) Ancylostomiasis and necatoriasis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Ancylostomiasis and necatoriasis (126)\\" + }, + { + "displayName": "Echinococcosis (122)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Echinococcosis (122)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\" + }, + { + "displayName": "(122.0) Echinococcus granulosus infection of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\(122.0) Echinococcus granulosus infection of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Echinococcosis (122)\\\\(122.0) Echinococcus granulosus infection of liver\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\" + }, + { + "displayName": "(122.1) Echinococcus granulosus infection of lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\(122.1) Echinococcus granulosus infection of lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\" + }, + { + "displayName": "(122.2) Echinococcus granulosus infection of thyroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\(122.2) Echinococcus granulosus infection of thyroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Echinococcosis (122)\\\\(122.2) Echinococcus granulosus infection of thyroid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\" + }, + { + "displayName": "(122.3) Echinococcus granulosus infection, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\(122.3) Echinococcus granulosus infection, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Echinococcosis (122)\\\\(122.3) Echinococcus granulosus infection, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\" + }, + { + "displayName": "(122.4) Echinococcus granulosus infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\(122.4) Echinococcus granulosus infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Echinococcosis (122)\\\\(122.4) Echinococcus granulosus infection, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\" + }, + { + "displayName": "(122.5) Echinococcus multilocularis infection of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\(122.5) Echinococcus multilocularis infection of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Echinococcosis (122)\\\\(122.5) Echinococcus multilocularis infection of liver\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\" + }, + { + "displayName": "(122.6) Echinococcus multilocularis infection, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\(122.6) Echinococcus multilocularis infection, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Echinococcosis (122)\\\\(122.6) Echinococcus multilocularis infection, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\" + }, + { + "displayName": "(122.7) Echinococcus multilocularis infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\(122.7) Echinococcus multilocularis infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\" + }, + { + "displayName": "(122.8) Echinococcosis, unspecified, of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\(122.8) Echinococcosis, unspecified, of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\" + }, + { + "displayName": "(122.9) Echinococcosis, other and unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\(122.9) Echinococcosis, other and unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Echinococcosis (122)\\" + }, + { + "displayName": "Filarial infection and dracontiasis (125)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\" + }, + { + "displayName": "(125.0) Bancroftian filariasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\(125.0) Bancroftian filariasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\" + }, + { + "displayName": "(125.1) Malayan filariasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\(125.1) Malayan filariasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\" + }, + { + "displayName": "(125.2) Loiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\(125.2) Loiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\" + }, + { + "displayName": "(125.3) Onchocerciasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\(125.3) Onchocerciasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\" + }, + { + "displayName": "(125.4) Dipetalonemiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\(125.4) Dipetalonemiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\" + }, + { + "displayName": "(125.5) Mansonella ozzardi infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\(125.5) Mansonella ozzardi infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\" + }, + { + "displayName": "(125.6) Other specified filariasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\(125.6) Other specified filariasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\" + }, + { + "displayName": "(125.7) Dracontiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\(125.7) Dracontiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\" + }, + { + "displayName": "(125.9) Unspecified filariasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\(125.9) Unspecified filariasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Filarial infection and dracontiasis (125)\\" + }, + { + "displayName": "Other and unspecified helminthiases (128)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other and unspecified helminthiases (128)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\" + }, + { + "displayName": "(128.0) Toxocariasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other and unspecified helminthiases (128)\\(128.0) Toxocariasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other and unspecified helminthiases (128)\\\\(128.0) Toxocariasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other and unspecified helminthiases (128)\\" + }, + { + "displayName": "(128.1) Gnathostomiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other and unspecified helminthiases (128)\\(128.1) Gnathostomiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other and unspecified helminthiases (128)\\\\(128.1) Gnathostomiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other and unspecified helminthiases (128)\\" + }, + { + "displayName": "(128.8) Other specified helminthiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other and unspecified helminthiases (128)\\(128.8) Other specified helminthiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other and unspecified helminthiases (128)\\\\(128.8) Other specified helminthiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other and unspecified helminthiases (128)\\" + }, + { + "displayName": "(128.9) Helminth infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other and unspecified helminthiases (128)\\(128.9) Helminth infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other and unspecified helminthiases (128)\\" + }, + { + "displayName": "Other cestode infection (123)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other cestode infection (123)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\" + }, + { + "displayName": "(123.0) Taenia solium infection, intestinal form", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\(123.0) Taenia solium infection, intestinal form\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\" + }, + { + "displayName": "(123.1) Cysticercosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\(123.1) Cysticercosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other cestode infection (123)\\\\(123.1) Cysticercosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\" + }, + { + "displayName": "(123.2) Taenia saginata infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\(123.2) Taenia saginata infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\" + }, + { + "displayName": "(123.3) Taeniasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\(123.3) Taeniasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\" + }, + { + "displayName": "(123.4) Diphyllobothriasis, intestinal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\(123.4) Diphyllobothriasis, intestinal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\" + }, + { + "displayName": "(123.5) Sparganosis [larval diphyllobothriasis]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\(123.5) Sparganosis [larval diphyllobothriasis]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\" + }, + { + "displayName": "(123.6) Hymenolepiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\(123.6) Hymenolepiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\" + }, + { + "displayName": "(123.8) Other specified cestode infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\(123.8) Other specified cestode infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\" + }, + { + "displayName": "(123.9) Cestode infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\(123.9) Cestode infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other cestode infection (123)\\" + }, + { + "displayName": "Other intestinal helminthiases (127)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\" + }, + { + "displayName": "(127.0) Ascariasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\(127.0) Ascariasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other intestinal helminthiases (127)\\\\(127.0) Ascariasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\" + }, + { + "displayName": "(127.1) Anisakiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\(127.1) Anisakiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other intestinal helminthiases (127)\\\\(127.1) Anisakiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\" + }, + { + "displayName": "(127.2) Strongyloidiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\(127.2) Strongyloidiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\" + }, + { + "displayName": "(127.3) Trichuriasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\(127.3) Trichuriasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\" + }, + { + "displayName": "(127.4) Enterobiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\(127.4) Enterobiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\" + }, + { + "displayName": "(127.5) Capillariasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\(127.5) Capillariasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\" + }, + { + "displayName": "(127.6) Trichostrongyliasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\(127.6) Trichostrongyliasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other intestinal helminthiases (127)\\\\(127.6) Trichostrongyliasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\" + }, + { + "displayName": "(127.7) Other specified intestinal helminthiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\(127.7) Other specified intestinal helminthiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\" + }, + { + "displayName": "(127.8) Mixed intestinal helminthiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\(127.8) Mixed intestinal helminthiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other intestinal helminthiases (127)\\\\(127.8) Mixed intestinal helminthiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\" + }, + { + "displayName": "(127.9) Intestinal helminthiasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\(127.9) Intestinal helminthiasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other intestinal helminthiases (127)\\" + }, + { + "displayName": "Other trematode infections (121)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other trematode infections (121)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\" + }, + { + "displayName": "(121.0) Opisthorchiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\(121.0) Opisthorchiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other trematode infections (121)\\\\(121.0) Opisthorchiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\" + }, + { + "displayName": "(121.1) Clonorchiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\(121.1) Clonorchiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\" + }, + { + "displayName": "(121.2) Paragonimiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\(121.2) Paragonimiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other trematode infections (121)\\\\(121.2) Paragonimiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\" + }, + { + "displayName": "(121.3) Fascioliasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\(121.3) Fascioliasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Other trematode infections (121)\\\\(121.3) Fascioliasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\" + }, + { + "displayName": "(121.4) Fasciolopsiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\(121.4) Fasciolopsiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\" + }, + { + "displayName": "(121.5) Metagonimiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\(121.5) Metagonimiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\" + }, + { + "displayName": "(121.6) Heterophyiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\(121.6) Heterophyiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\" + }, + { + "displayName": "(121.8) Other specified trematode infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\(121.8) Other specified trematode infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\" + }, + { + "displayName": "(121.9) Trematode infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\(121.9) Trematode infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Other trematode infections (121)\\" + }, + { + "displayName": "Schistosomiasis [bilharziasis] (120)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\" + }, + { + "displayName": "(120.0) Schistosomiasis due to schistosoma haematobium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\(120.0) Schistosomiasis due to schistosoma haematobium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Schistosomiasis [bilharziasis] (120)\\\\(120.0) Schistosomiasis due to schistosoma haematobium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\" + }, + { + "displayName": "(120.1) Schistosomiasis due to schistosoma mansoni", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\(120.1) Schistosomiasis due to schistosoma mansoni\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Schistosomiasis [bilharziasis] (120)\\\\(120.1) Schistosomiasis due to schistosoma mansoni\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\" + }, + { + "displayName": "(120.2) Schistosomiasis due to schistosoma japonicum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\(120.2) Schistosomiasis due to schistosoma japonicum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Schistosomiasis [bilharziasis] (120)\\\\(120.2) Schistosomiasis due to schistosoma japonicum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\" + }, + { + "displayName": "(120.3) Cutaneous schistosomiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\(120.3) Cutaneous schistosomiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\" + }, + { + "displayName": "(120.8) Other specified schistosomiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\(120.8) Other specified schistosomiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Schistosomiasis [bilharziasis] (120)\\\\(120.8) Other specified schistosomiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\" + }, + { + "displayName": "(120.9) Schistosomiasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\(120.9) Schistosomiasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Helminthiases (120-129.99)\\\\Schistosomiasis [bilharziasis] (120)\\\\(120.9) Schistosomiasis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Helminthiases (120-129.99)\\Schistosomiasis [bilharziasis] (120)\\" + }, + { + "displayName": "Human immunodeficiency virus [hiv] infection (042-042.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(042) Human immunodeficiency virus [HIV] disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\(042) Human immunodeficiency virus [HIV] disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Human immunodeficiency virus [hiv] infection (042-042.99)\\\\(042) Human immunodeficiency virus [HIV] disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Human immunodeficiency virus [hiv] infection (042-042.99)\\" + }, + { + "displayName": "Intestinal infectious diseases (001-009.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "Amebiasis (006)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Amebiasis (006)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\" + }, + { + "displayName": "(006.0) Acute amebic dysentery without mention of abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\(006.0) Acute amebic dysentery without mention of abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Amebiasis (006)\\\\(006.0) Acute amebic dysentery without mention of abscess\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\" + }, + { + "displayName": "(006.1) Chronic intestinal amebiasis without mention of abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\(006.1) Chronic intestinal amebiasis without mention of abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\" + }, + { + "displayName": "(006.2) Amebic nondysenteric colitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\(006.2) Amebic nondysenteric colitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Amebiasis (006)\\\\(006.2) Amebic nondysenteric colitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\" + }, + { + "displayName": "(006.3) Amebic liver abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\(006.3) Amebic liver abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\" + }, + { + "displayName": "(006.4) Amebic lung abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\(006.4) Amebic lung abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Amebiasis (006)\\\\(006.4) Amebic lung abscess\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\" + }, + { + "displayName": "(006.5) Amebic brain abscess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\(006.5) Amebic brain abscess\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Amebiasis (006)\\\\(006.5) Amebic brain abscess\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\" + }, + { + "displayName": "(006.6) Amebic skin ulceration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\(006.6) Amebic skin ulceration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Amebiasis (006)\\\\(006.6) Amebic skin ulceration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\" + }, + { + "displayName": "(006.8) Amebic infection of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\(006.8) Amebic infection of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\" + }, + { + "displayName": "(006.9) Amebiasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\(006.9) Amebiasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Amebiasis (006)\\" + }, + { + "displayName": "Cholera (001)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Cholera (001)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\" + }, + { + "displayName": "(001.0) Cholera due to vibrio cholerae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Cholera (001)\\(001.0) Cholera due to vibrio cholerae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Cholera (001)\\" + }, + { + "displayName": "(001.1) Cholera due to vibrio cholerae el tor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Cholera (001)\\(001.1) Cholera due to vibrio cholerae el tor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Cholera (001)\\" + }, + { + "displayName": "(001.9) Cholera, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Cholera (001)\\(001.9) Cholera, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Cholera (001)\\" + }, + { + "displayName": "Ill-defined intestinal infections (009)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Ill-defined intestinal infections (009)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\" + }, + { + "displayName": "(009.0) Infectious colitis, enteritis, and gastroenteritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Ill-defined intestinal infections (009)\\(009.0) Infectious colitis, enteritis, and gastroenteritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Ill-defined intestinal infections (009)\\" + }, + { + "displayName": "(009.1) Colitis, enteritis, and gastroenteritis of presumed infectious origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Ill-defined intestinal infections (009)\\(009.1) Colitis, enteritis, and gastroenteritis of presumed infectious origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Ill-defined intestinal infections (009)\\" + }, + { + "displayName": "(009.2) Infectious diarrhea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Ill-defined intestinal infections (009)\\(009.2) Infectious diarrhea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Ill-defined intestinal infections (009)\\" + }, + { + "displayName": "(009.3) Diarrhea of presumed infectious origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Ill-defined intestinal infections (009)\\(009.3) Diarrhea of presumed infectious origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Ill-defined intestinal infections (009)\\" + }, + { + "displayName": "Intestinal infections due to other organisms (008)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\" + }, + { + "displayName": "(008.1) Intestinal infection due to arizona group of paracolon bacilli", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\(008.1) Intestinal infection due to arizona group of paracolon bacilli\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\(008.1) Intestinal infection due to arizona group of paracolon bacilli\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\" + }, + { + "displayName": "(008.2) Intestinal infection due to aerobacter aerogenes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\(008.2) Intestinal infection due to aerobacter aerogenes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\" + }, + { + "displayName": "(008.3) Intestinal infection due to proteus (mirabilis) (morganii)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\(008.3) Intestinal infection due to proteus (mirabilis) (morganii)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\(008.3) Intestinal infection due to proteus (mirabilis) (morganii)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\" + }, + { + "displayName": "(008.5) Bacterial enteritis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\(008.5) Bacterial enteritis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\(008.5) Bacterial enteritis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\" + }, + { + "displayName": "(008.8) Intestinal infection due to other organism, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\(008.8) Intestinal infection due to other organism, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\(008.8) Intestinal infection due to other organism, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\" + }, + { + "displayName": "Enteritis due to specified virus (008.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\" + }, + { + "displayName": "(008.61) Enteritis due to rotavirus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\(008.61) Enteritis due to rotavirus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\Enteritis due to specified virus (008.6)\\\\(008.61) Enteritis due to rotavirus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\" + }, + { + "displayName": "(008.62) Enteritis due to adenovirus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\(008.62) Enteritis due to adenovirus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\" + }, + { + "displayName": "(008.63) Enteritis due to norwalk virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\(008.63) Enteritis due to norwalk virus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\Enteritis due to specified virus (008.6)\\\\(008.63) Enteritis due to norwalk virus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\" + }, + { + "displayName": "(008.64) Enteritis due to other small round viruses [SRV's]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\(008.64) Enteritis due to other small round viruses [SRV's]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\" + }, + { + "displayName": "(008.65) Enteritis due to calicivirus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\(008.65) Enteritis due to calicivirus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\Enteritis due to specified virus (008.6)\\\\(008.65) Enteritis due to calicivirus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\" + }, + { + "displayName": "(008.66) Enteritis due to astrovirus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\(008.66) Enteritis due to astrovirus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\Enteritis due to specified virus (008.6)\\\\(008.66) Enteritis due to astrovirus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\" + }, + { + "displayName": "(008.67) Enteritis due to enterovirus nec", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\(008.67) Enteritis due to enterovirus nec\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\" + }, + { + "displayName": "(008.69) Enteritis due to other viral enteritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\(008.69) Enteritis due to other viral enteritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\Enteritis due to specified virus (008.6)\\\\(008.69) Enteritis due to other viral enteritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Enteritis due to specified virus (008.6)\\" + }, + { + "displayName": "Intestinal infection due to escherichia coli [E. coli] (008.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\" + }, + { + "displayName": "(008.00) Intestinal infection due to E. coli, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\(008.00) Intestinal infection due to E. coli, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\" + }, + { + "displayName": "(008.01) Intestinal infection due to enteropathogenic E. coli", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\(008.01) Intestinal infection due to enteropathogenic E. coli\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\" + }, + { + "displayName": "(008.02) Intestinal infection due to enterotoxigenic E. coli", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\(008.02) Intestinal infection due to enterotoxigenic E. coli\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\\\(008.02) Intestinal infection due to enterotoxigenic E. coli\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\" + }, + { + "displayName": "(008.03) Intestinal infection due to enteroinvasive E. coli", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\(008.03) Intestinal infection due to enteroinvasive E. coli\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Intestinal infections due to other organisms (008)\\\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\\\(008.03) Intestinal infection due to enteroinvasive E. coli\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\" + }, + { + "displayName": "(008.04) Intestinal infection due to enterohemorrhagic E. coli", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\(008.04) Intestinal infection due to enterohemorrhagic E. coli\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\" + }, + { + "displayName": "(008.09) Intestinal infection due to other intestinal E. coli infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\(008.09) Intestinal infection due to other intestinal E. coli infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to escherichia coli [E. coli] (008.0)\\" + }, + { + "displayName": "Intestinal infection due to other specified bacteria (008.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\" + }, + { + "displayName": "(008.41) Intestinal infection due to staphylococcus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\(008.41) Intestinal infection due to staphylococcus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\" + }, + { + "displayName": "(008.42) Intestinal infection due to pseudomonas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\(008.42) Intestinal infection due to pseudomonas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\" + }, + { + "displayName": "(008.43) Intestinal infection due to campylobacter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\(008.43) Intestinal infection due to campylobacter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\" + }, + { + "displayName": "(008.44) Intestinal infection due to yersinia enterocolitica", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\(008.44) Intestinal infection due to yersinia enterocolitica\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\" + }, + { + "displayName": "(008.45) Intestinal infection due to Clostridium difficile", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\(008.45) Intestinal infection due to Clostridium difficile\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\" + }, + { + "displayName": "(008.46) Intestinal infection due to other anaerobes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\(008.46) Intestinal infection due to other anaerobes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\" + }, + { + "displayName": "(008.47) Intestinal infection due to other gram-negative bacteria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\(008.47) Intestinal infection due to other gram-negative bacteria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\" + }, + { + "displayName": "(008.49) Intestinal infection due to other organisms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\(008.49) Intestinal infection due to other organisms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Intestinal infections due to other organisms (008)\\Intestinal infection due to other specified bacteria (008.4)\\" + }, + { + "displayName": "Other food poisoning (bacterial) (005)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Other food poisoning (bacterial) (005)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\" + }, + { + "displayName": "(005.0) Staphylococcal food poisoning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\(005.0) Staphylococcal food poisoning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Other food poisoning (bacterial) (005)\\\\(005.0) Staphylococcal food poisoning\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\" + }, + { + "displayName": "(005.1) Botulism food poisoning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\(005.1) Botulism food poisoning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Other food poisoning (bacterial) (005)\\\\(005.1) Botulism food poisoning\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\" + }, + { + "displayName": "(005.2) Food poisoning due to Clostridium perfringens (C. welchii)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\(005.2) Food poisoning due to Clostridium perfringens (C. welchii)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Other food poisoning (bacterial) (005)\\\\(005.2) Food poisoning due to Clostridium perfringens (C. welchii)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\" + }, + { + "displayName": "(005.3) Food poisoning due to other Clostridia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\(005.3) Food poisoning due to other Clostridia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\" + }, + { + "displayName": "(005.4) Food poisoning due to Vibrio parahaemolyticus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\(005.4) Food poisoning due to Vibrio parahaemolyticus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\" + }, + { + "displayName": "(005.9) Food poisoning, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\(005.9) Food poisoning, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\" + }, + { + "displayName": "Other bacterial food poisoning (005.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\Other bacterial food poisoning (005.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\" + }, + { + "displayName": "(005.81) Food poisoning due to Vibrio vulnificus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\Other bacterial food poisoning (005.8)\\(005.81) Food poisoning due to Vibrio vulnificus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\Other bacterial food poisoning (005.8)\\" + }, + { + "displayName": "(005.89) Other bacterial food poisoning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\Other bacterial food poisoning (005.8)\\(005.89) Other bacterial food poisoning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other food poisoning (bacterial) (005)\\Other bacterial food poisoning (005.8)\\" + }, + { + "displayName": "Other protozoal intestinal diseases (007)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\" + }, + { + "displayName": "(007.0) Balantidiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\(007.0) Balantidiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Other protozoal intestinal diseases (007)\\\\(007.0) Balantidiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\" + }, + { + "displayName": "(007.1) Giardiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\(007.1) Giardiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Other protozoal intestinal diseases (007)\\\\(007.1) Giardiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\" + }, + { + "displayName": "(007.2) Coccidiosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\(007.2) Coccidiosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Other protozoal intestinal diseases (007)\\\\(007.2) Coccidiosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\" + }, + { + "displayName": "(007.3) Intestinal trichomoniasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\(007.3) Intestinal trichomoniasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\" + }, + { + "displayName": "(007.4) Cryptosporidiosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\(007.4) Cryptosporidiosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\" + }, + { + "displayName": "(007.5) Cyclosporiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\(007.5) Cyclosporiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\" + }, + { + "displayName": "(007.8) Other specified protozoal intestinal diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\(007.8) Other specified protozoal intestinal diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\" + }, + { + "displayName": "(007.9) Unspecified protozoal intestinal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\(007.9) Unspecified protozoal intestinal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other protozoal intestinal diseases (007)\\" + }, + { + "displayName": "Other salmonella infections (003)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\" + }, + { + "displayName": "(003.0) Salmonella gastroenteritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\(003.0) Salmonella gastroenteritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\" + }, + { + "displayName": "(003.1) Salmonella septicemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\(003.1) Salmonella septicemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Other salmonella infections (003)\\\\(003.1) Salmonella septicemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\" + }, + { + "displayName": "(003.8) Other specified salmonella infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\(003.8) Other specified salmonella infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Other salmonella infections (003)\\\\(003.8) Other specified salmonella infections\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\" + }, + { + "displayName": "(003.9) Salmonella infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\(003.9) Salmonella infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Other salmonella infections (003)\\\\(003.9) Salmonella infection, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\" + }, + { + "displayName": "Localized salmonella infections (003.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\" + }, + { + "displayName": "(003.20) Localized salmonella infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\(003.20) Localized salmonella infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\" + }, + { + "displayName": "(003.21) Salmonella meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\(003.21) Salmonella meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\" + }, + { + "displayName": "(003.22) Salmonella pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\(003.22) Salmonella pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\" + }, + { + "displayName": "(003.23) Salmonella arthritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\(003.23) Salmonella arthritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\" + }, + { + "displayName": "(003.24) Salmonella osteomyelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\(003.24) Salmonella osteomyelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\" + }, + { + "displayName": "(003.29) Other localized salmonella infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\(003.29) Other localized salmonella infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Other salmonella infections (003)\\Localized salmonella infections (003.2)\\" + }, + { + "displayName": "Shigellosis (004)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\" + }, + { + "displayName": "(004.0) Shigella dysenteriae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\(004.0) Shigella dysenteriae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\" + }, + { + "displayName": "(004.1) Shigella flexneri", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\(004.1) Shigella flexneri\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\" + }, + { + "displayName": "(004.2) Shigella boydii", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\(004.2) Shigella boydii\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Shigellosis (004)\\\\(004.2) Shigella boydii\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\" + }, + { + "displayName": "(004.3) Shigella sonnei", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\(004.3) Shigella sonnei\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Shigellosis (004)\\\\(004.3) Shigella sonnei\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\" + }, + { + "displayName": "(004.8) Other specified shigella infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\(004.8) Other specified shigella infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\" + }, + { + "displayName": "(004.9) Shigellosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\(004.9) Shigellosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Shigellosis (004)\\" + }, + { + "displayName": "Typhoid and paratyphoid fevers (002)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Typhoid and paratyphoid fevers (002)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Typhoid and paratyphoid fevers (002)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\" + }, + { + "displayName": "(002.0) Typhoid fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Typhoid and paratyphoid fevers (002)\\(002.0) Typhoid fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Typhoid and paratyphoid fevers (002)\\" + }, + { + "displayName": "(002.1) Paratyphoid fever A", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Typhoid and paratyphoid fevers (002)\\(002.1) Paratyphoid fever A\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Typhoid and paratyphoid fevers (002)\\\\(002.1) Paratyphoid fever A\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Typhoid and paratyphoid fevers (002)\\" + }, + { + "displayName": "(002.2) Paratyphoid fever B", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Typhoid and paratyphoid fevers (002)\\(002.2) Paratyphoid fever B\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Typhoid and paratyphoid fevers (002)\\" + }, + { + "displayName": "(002.3) Paratyphoid fever C", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Typhoid and paratyphoid fevers (002)\\(002.3) Paratyphoid fever C\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Typhoid and paratyphoid fevers (002)\\\\(002.3) Paratyphoid fever C\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Typhoid and paratyphoid fevers (002)\\" + }, + { + "displayName": "(002.9) Paratyphoid fever, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Typhoid and paratyphoid fevers (002)\\(002.9) Paratyphoid fever, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Intestinal infectious diseases (001-009.99)\\\\Typhoid and paratyphoid fevers (002)\\\\(002.9) Paratyphoid fever, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Intestinal infectious diseases (001-009.99)\\Typhoid and paratyphoid fevers (002)\\" + }, + { + "displayName": "Late effects of infectious and parasitic diseases (137-139.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(138) Late effects of acute poliomyelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\(138) Late effects of acute poliomyelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Late effects of infectious and parasitic diseases (137-139.99)\\\\(138) Late effects of acute poliomyelitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\" + }, + { + "displayName": "Late effects of other infectious and parasitic diseases (139)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of other infectious and parasitic diseases (139)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\" + }, + { + "displayName": "(139.0) Late effects of viral encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of other infectious and parasitic diseases (139)\\(139.0) Late effects of viral encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Late effects of infectious and parasitic diseases (137-139.99)\\\\Late effects of other infectious and parasitic diseases (139)\\\\(139.0) Late effects of viral encephalitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of other infectious and parasitic diseases (139)\\" + }, + { + "displayName": "(139.1) Late effects of trachoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of other infectious and parasitic diseases (139)\\(139.1) Late effects of trachoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of other infectious and parasitic diseases (139)\\" + }, + { + "displayName": "(139.8) Late effects of other and unspecified infectious and parasitic diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of other infectious and parasitic diseases (139)\\(139.8) Late effects of other and unspecified infectious and parasitic diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Late effects of infectious and parasitic diseases (137-139.99)\\\\Late effects of other infectious and parasitic diseases (139)\\\\(139.8) Late effects of other and unspecified infectious and parasitic diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of other infectious and parasitic diseases (139)\\" + }, + { + "displayName": "Late effects of tuberculosis (137)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of tuberculosis (137)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\" + }, + { + "displayName": "(137.0) Late effects of respiratory or unspecified tuberculosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of tuberculosis (137)\\(137.0) Late effects of respiratory or unspecified tuberculosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Late effects of infectious and parasitic diseases (137-139.99)\\\\Late effects of tuberculosis (137)\\\\(137.0) Late effects of respiratory or unspecified tuberculosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of tuberculosis (137)\\" + }, + { + "displayName": "(137.1) Late effects of central nervous system tuberculosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of tuberculosis (137)\\(137.1) Late effects of central nervous system tuberculosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Late effects of infectious and parasitic diseases (137-139.99)\\\\Late effects of tuberculosis (137)\\\\(137.1) Late effects of central nervous system tuberculosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of tuberculosis (137)\\" + }, + { + "displayName": "(137.2) Late effects of genitourinary tuberculosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of tuberculosis (137)\\(137.2) Late effects of genitourinary tuberculosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of tuberculosis (137)\\" + }, + { + "displayName": "(137.3) Late effects of tuberculosis of bones and joints", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of tuberculosis (137)\\(137.3) Late effects of tuberculosis of bones and joints\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of tuberculosis (137)\\" + }, + { + "displayName": "(137.4) Late effects of tuberculosis of other specified organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of tuberculosis (137)\\(137.4) Late effects of tuberculosis of other specified organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Late effects of infectious and parasitic diseases (137-139.99)\\Late effects of tuberculosis (137)\\" + }, + { + "displayName": "Mycoses (110-118.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(118) Opportunistic mycoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\(118) Opportunistic mycoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\(118) Opportunistic mycoses\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\" + }, + { + "displayName": "Blastomycotic infection (116)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Blastomycotic infection (116)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\" + }, + { + "displayName": "(116.0) Blastomycosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Blastomycotic infection (116)\\(116.0) Blastomycosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Blastomycotic infection (116)\\" + }, + { + "displayName": "(116.1) Paracoccidioidomycosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Blastomycotic infection (116)\\(116.1) Paracoccidioidomycosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Blastomycotic infection (116)\\" + }, + { + "displayName": "(116.2) Lobomycosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Blastomycotic infection (116)\\(116.2) Lobomycosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Blastomycotic infection (116)\\" + }, + { + "displayName": "Candidiasis (112)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\" + }, + { + "displayName": "(112.0) Candidiasis of mouth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\(112.0) Candidiasis of mouth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\" + }, + { + "displayName": "(112.1) Candidiasis of vulva and vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\(112.1) Candidiasis of vulva and vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\" + }, + { + "displayName": "(112.2) Candidiasis of other urogenital sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\(112.2) Candidiasis of other urogenital sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\" + }, + { + "displayName": "(112.3) Candidiasis of skin and nails", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\(112.3) Candidiasis of skin and nails\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\" + }, + { + "displayName": "(112.4) Candidiasis of lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\(112.4) Candidiasis of lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\" + }, + { + "displayName": "(112.5) Disseminated candidiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\(112.5) Disseminated candidiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Candidiasis (112)\\\\(112.5) Disseminated candidiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\" + }, + { + "displayName": "(112.9) Candidiasis of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\(112.9) Candidiasis of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\" + }, + { + "displayName": "Candidiasis of other specified sites (112.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\" + }, + { + "displayName": "(112.81) Candidal endocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\(112.81) Candidal endocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Candidiasis (112)\\\\Candidiasis of other specified sites (112.8)\\\\(112.81) Candidal endocarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\" + }, + { + "displayName": "(112.82) Candidal otitis externa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\(112.82) Candidal otitis externa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Candidiasis (112)\\\\Candidiasis of other specified sites (112.8)\\\\(112.82) Candidal otitis externa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\" + }, + { + "displayName": "(112.83) Candidal meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\(112.83) Candidal meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\" + }, + { + "displayName": "(112.84) Candidal esophagitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\(112.84) Candidal esophagitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\" + }, + { + "displayName": "(112.85) Candidal enteritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\(112.85) Candidal enteritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Candidiasis (112)\\\\Candidiasis of other specified sites (112.8)\\\\(112.85) Candidal enteritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\" + }, + { + "displayName": "(112.89) Other candidiasis of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\(112.89) Other candidiasis of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Candidiasis (112)\\\\Candidiasis of other specified sites (112.8)\\\\(112.89) Other candidiasis of other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Candidiasis (112)\\Candidiasis of other specified sites (112.8)\\" + }, + { + "displayName": "Coccidioidomycosis (114)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\" + }, + { + "displayName": "(114.0) Primary coccidioidomycosis (pulmonary)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\(114.0) Primary coccidioidomycosis (pulmonary)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Coccidioidomycosis (114)\\\\(114.0) Primary coccidioidomycosis (pulmonary)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\" + }, + { + "displayName": "(114.1) Primary extrapulmonary coccidioidomycosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\(114.1) Primary extrapulmonary coccidioidomycosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\" + }, + { + "displayName": "(114.2) Coccidioidal meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\(114.2) Coccidioidal meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Coccidioidomycosis (114)\\\\(114.2) Coccidioidal meningitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\" + }, + { + "displayName": "(114.3) Other forms of progressive coccidioidomycosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\(114.3) Other forms of progressive coccidioidomycosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Coccidioidomycosis (114)\\\\(114.3) Other forms of progressive coccidioidomycosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\" + }, + { + "displayName": "(114.4) Chronic pulmonary coccidioidomycosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\(114.4) Chronic pulmonary coccidioidomycosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\" + }, + { + "displayName": "(114.5) Pulmonary coccidioidomycosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\(114.5) Pulmonary coccidioidomycosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Coccidioidomycosis (114)\\\\(114.5) Pulmonary coccidioidomycosis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\" + }, + { + "displayName": "(114.9) Coccidioidomycosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\(114.9) Coccidioidomycosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Coccidioidomycosis (114)\\\\(114.9) Coccidioidomycosis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Coccidioidomycosis (114)\\" + }, + { + "displayName": "Dermatomycosis, other and unspecified (111)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\" + }, + { + "displayName": "(111.0) Pityriasis versicolor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\(111.0) Pityriasis versicolor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Dermatomycosis, other and unspecified (111)\\\\(111.0) Pityriasis versicolor\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\" + }, + { + "displayName": "(111.1) Tinea nigra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\(111.1) Tinea nigra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Dermatomycosis, other and unspecified (111)\\\\(111.1) Tinea nigra\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\" + }, + { + "displayName": "(111.2) Tinea blanca", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\(111.2) Tinea blanca\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\" + }, + { + "displayName": "(111.3) Black piedra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\(111.3) Black piedra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\" + }, + { + "displayName": "(111.8) Other specified dermatomycoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\(111.8) Other specified dermatomycoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\" + }, + { + "displayName": "(111.9) Dermatomycosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\(111.9) Dermatomycosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatomycosis, other and unspecified (111)\\" + }, + { + "displayName": "Dermatophytosis (110)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\" + }, + { + "displayName": "(110.0) Dermatophytosis of scalp and beard", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\(110.0) Dermatophytosis of scalp and beard\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\" + }, + { + "displayName": "(110.1) Dermatophytosis of nail", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\(110.1) Dermatophytosis of nail\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\" + }, + { + "displayName": "(110.2) Dermatophytosis of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\(110.2) Dermatophytosis of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\" + }, + { + "displayName": "(110.3) Dermatophytosis of groin and perianal area", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\(110.3) Dermatophytosis of groin and perianal area\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\" + }, + { + "displayName": "(110.4) Dermatophytosis of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\(110.4) Dermatophytosis of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\" + }, + { + "displayName": "(110.5) Dermatophytosis of the body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\(110.5) Dermatophytosis of the body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\" + }, + { + "displayName": "(110.6) Deep seated dermatophytosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\(110.6) Deep seated dermatophytosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\" + }, + { + "displayName": "(110.8) Dermatophytosis of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\(110.8) Dermatophytosis of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\" + }, + { + "displayName": "(110.9) Dermatophytosis of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\(110.9) Dermatophytosis of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Dermatophytosis (110)\\\\(110.9) Dermatophytosis of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Dermatophytosis (110)\\" + }, + { + "displayName": "Histoplasmosis (115)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Histoplasmosis (115)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\" + }, + { + "displayName": "Histoplasmosis, unspecified (115.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Histoplasmosis (115)\\\\Histoplasmosis, unspecified (115.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\" + }, + { + "displayName": "(115.90) Histoplasmosis, unspecified, without mention of manifestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\(115.90) Histoplasmosis, unspecified, without mention of manifestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\" + }, + { + "displayName": "(115.91) Histoplasmosis, unspecified, meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\(115.91) Histoplasmosis, unspecified, meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Histoplasmosis (115)\\\\Histoplasmosis, unspecified (115.9)\\\\(115.91) Histoplasmosis, unspecified, meningitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\" + }, + { + "displayName": "(115.92) Histoplasmosis, unspecified, retinitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\(115.92) Histoplasmosis, unspecified, retinitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\" + }, + { + "displayName": "(115.93) Histoplasmosis, unspecified, pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\(115.93) Histoplasmosis, unspecified, pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\" + }, + { + "displayName": "(115.94) Histoplasmosis, unspecified, endocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\(115.94) Histoplasmosis, unspecified, endocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\" + }, + { + "displayName": "(115.95) Histoplasmosis, unspecified, pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\(115.95) Histoplasmosis, unspecified, pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\" + }, + { + "displayName": "(115.99) Histoplasmosis, unspecified, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\(115.99) Histoplasmosis, unspecified, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Histoplasmosis, unspecified (115.9)\\" + }, + { + "displayName": "Infection by Histoplasma capsulatum (115.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\" + }, + { + "displayName": "(115.00) Infection by Histoplasma capsulatum, without mention of manifestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\(115.00) Infection by Histoplasma capsulatum, without mention of manifestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\" + }, + { + "displayName": "(115.01) Infection by Histoplasma capsulatum, meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\(115.01) Infection by Histoplasma capsulatum, meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\" + }, + { + "displayName": "(115.02) Infection by Histoplasma capsulatum, retinitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\(115.02) Infection by Histoplasma capsulatum, retinitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\" + }, + { + "displayName": "(115.03) Infection by Histoplasma capsulatum, pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\(115.03) Infection by Histoplasma capsulatum, pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\" + }, + { + "displayName": "(115.04) Infection by Histoplasma capsulatum, endocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\(115.04) Infection by Histoplasma capsulatum, endocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\" + }, + { + "displayName": "(115.05) Infection by Histoplasma capsulatum, pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\(115.05) Infection by Histoplasma capsulatum, pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Histoplasmosis (115)\\\\Infection by Histoplasma capsulatum (115.0)\\\\(115.05) Infection by Histoplasma capsulatum, pneumonia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\" + }, + { + "displayName": "(115.09) Infection by Histoplasma capsulatum, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\(115.09) Infection by Histoplasma capsulatum, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Histoplasmosis (115)\\\\Infection by Histoplasma capsulatum (115.0)\\\\(115.09) Infection by Histoplasma capsulatum, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma capsulatum (115.0)\\" + }, + { + "displayName": "Infection by Histoplasma duboisii (115.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Histoplasmosis (115)\\\\Infection by Histoplasma duboisii (115.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\" + }, + { + "displayName": "(115.10) Infection by Histoplasma duboisii, without mention of manifestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\(115.10) Infection by Histoplasma duboisii, without mention of manifestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\" + }, + { + "displayName": "(115.11) Infection by Histoplasma duboisii, meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\(115.11) Infection by Histoplasma duboisii, meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\" + }, + { + "displayName": "(115.12) Infection by Histoplasma duboisii, retinitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\(115.12) Infection by Histoplasma duboisii, retinitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\" + }, + { + "displayName": "(115.13) Infection by Histoplasma duboisii, pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\(115.13) Infection by Histoplasma duboisii, pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\" + }, + { + "displayName": "(115.14) Infection by Histoplasma duboisii, endocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\(115.14) Infection by Histoplasma duboisii, endocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\" + }, + { + "displayName": "(115.15) Infection by Histoplasma duboisii, pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\(115.15) Infection by Histoplasma duboisii, pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\" + }, + { + "displayName": "(115.19) Infection by Histoplasma duboisii, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\(115.19) Infection by Histoplasma duboisii, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Histoplasmosis (115)\\Infection by Histoplasma duboisii (115.1)\\" + }, + { + "displayName": "Other mycoses (117)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\" + }, + { + "displayName": "(117.0) Rhinosporidiosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\(117.0) Rhinosporidiosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\" + }, + { + "displayName": "(117.1) Sporotrichosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\(117.1) Sporotrichosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\" + }, + { + "displayName": "(117.2) Chromoblastomycosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\(117.2) Chromoblastomycosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Other mycoses (117)\\\\(117.2) Chromoblastomycosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\" + }, + { + "displayName": "(117.3) Aspergillosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\(117.3) Aspergillosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\" + }, + { + "displayName": "(117.4) Mycotic mycetomas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\(117.4) Mycotic mycetomas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Other mycoses (117)\\\\(117.4) Mycotic mycetomas\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\" + }, + { + "displayName": "(117.5) Cryptococcosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\(117.5) Cryptococcosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Other mycoses (117)\\\\(117.5) Cryptococcosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\" + }, + { + "displayName": "(117.6) Allescheriosis [Petriellidosis]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\(117.6) Allescheriosis [Petriellidosis]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Mycoses (110-118.99)\\\\Other mycoses (117)\\\\(117.6) Allescheriosis [Petriellidosis]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\" + }, + { + "displayName": "(117.7) Zygomycosis [Phycomycosis or Mucormycosis]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\(117.7) Zygomycosis [Phycomycosis or Mucormycosis]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\" + }, + { + "displayName": "(117.8) Infection by dematiacious fungi [Phaehyphomycosis]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\(117.8) Infection by dematiacious fungi [Phaehyphomycosis]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\" + }, + { + "displayName": "(117.9) Other and unspecified mycoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\(117.9) Other and unspecified mycoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Mycoses (110-118.99)\\Other mycoses (117)\\" + }, + { + "displayName": "Other bacterial diseases (030-041.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(035) Erysipelas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\(035) Erysipelas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "(037) Tetanus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\(037) Tetanus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "Actinomycotic infections (039)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "(039.0) Cutaneous actinomycotic infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\(039.0) Cutaneous actinomycotic infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\" + }, + { + "displayName": "(039.1) Pulmonary actinomycotic infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\(039.1) Pulmonary actinomycotic infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\" + }, + { + "displayName": "(039.2) Abdominal actinomycotic infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\(039.2) Abdominal actinomycotic infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\" + }, + { + "displayName": "(039.3) Cervicofacial actinomycotic infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\(039.3) Cervicofacial actinomycotic infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\" + }, + { + "displayName": "(039.4) Madura foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\(039.4) Madura foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\" + }, + { + "displayName": "(039.8) Actinomycotic infection of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\(039.8) Actinomycotic infection of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Actinomycotic infections (039)\\\\(039.8) Actinomycotic infection of other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\" + }, + { + "displayName": "(039.9) Actinomycotic infection of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\(039.9) Actinomycotic infection of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Actinomycotic infections (039)\\" + }, + { + "displayName": "Bacterial infection in conditions classified elsewhere and of unspecified site (041)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "(041.2) Pneumococcus infection in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\(041.2) Pneumococcus infection in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\\\(041.2) Pneumococcus infection in conditions classified elsewhere and of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\" + }, + { + "displayName": "(041.3) Friedlaender's bacillus infection in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\(041.3) Friedlaender's bacillus infection in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\\\(041.3) Friedlaender's bacillus infection in conditions classified elsewhere and of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\" + }, + { + "displayName": "(041.5) Hemophilus influenzae [H. influenzae] infection in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\(041.5) Hemophilus influenzae [H. influenzae] infection in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\" + }, + { + "displayName": "(041.6) Proteus (mirabilis) (morganii) infection in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\(041.6) Proteus (mirabilis) (morganii) infection in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\" + }, + { + "displayName": "(041.7) Pseudomonas infection in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\(041.7) Pseudomonas infection in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\" + }, + { + "displayName": "(041.9) Bacterial infection, unspecified, in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\(041.9) Bacterial infection, unspecified, in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\" + }, + { + "displayName": "Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site (041.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site (041.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\" + }, + { + "displayName": "(041.49) Other and unspecified Escherichia coli [E. coli]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site (041.4)\\(041.49) Other and unspecified Escherichia coli [E. coli]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Escherichia coli [E. coli] infection in conditions classified elsewhere and of unspecified site (041.4)\\" + }, + { + "displayName": "Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\" + }, + { + "displayName": "(041.81) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, mycoplasma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\(041.81) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, mycoplasma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\\\(041.81) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, mycoplasma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\" + }, + { + "displayName": "(041.82) Bacteroides fragilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\(041.82) Bacteroides fragilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\" + }, + { + "displayName": "(041.83) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, Clostridium perfringens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\(041.83) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, Clostridium perfringens\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\\\(041.83) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, Clostridium perfringens\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\" + }, + { + "displayName": "(041.84) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other anaerobes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\(041.84) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other anaerobes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\\\(041.84) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other anaerobes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\" + }, + { + "displayName": "(041.85) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other gram-negative organisms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\(041.85) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other gram-negative organisms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\\\(041.85) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other gram-negative organisms\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\" + }, + { + "displayName": "(041.86) Helicobacter pylori [H. pylori]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\(041.86) Helicobacter pylori [H. pylori]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\" + }, + { + "displayName": "(041.89) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other specified bacteria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\(041.89) Other specified bacterial infections in conditions classified elsewhere and of unspecified site, other specified bacteria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Other specified bacterial infections in conditions classified elsewhere and of unspecified site (041.8)\\" + }, + { + "displayName": "Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\" + }, + { + "displayName": "(041.10) Staphylococcus infection in conditions classified elsewhere and of unspecified site, staphylococcus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\\(041.10) Staphylococcus infection in conditions classified elsewhere and of unspecified site, staphylococcus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\\" + }, + { + "displayName": "(041.11) Methicillin susceptible Staphylococcus aureus in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\\(041.11) Methicillin susceptible Staphylococcus aureus in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\\" + }, + { + "displayName": "(041.12) Methicillin resistant Staphylococcus aureus in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\\(041.12) Methicillin resistant Staphylococcus aureus in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\\" + }, + { + "displayName": "(041.19) Staphylococcus infection in conditions classified elsewhere and of unspecified site, other staphylococcus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\\(041.19) Staphylococcus infection in conditions classified elsewhere and of unspecified site, other staphylococcus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Staphylococcus infection in conditions classified elsewhere and of unspecified site (041.1)\\" + }, + { + "displayName": "Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\" + }, + { + "displayName": "(041.00) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\(041.00) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\" + }, + { + "displayName": "(041.01) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group A", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\(041.01) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group A\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\" + }, + { + "displayName": "(041.02) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group B", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\(041.02) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group B\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\" + }, + { + "displayName": "(041.03) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group C", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\(041.03) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group C\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\" + }, + { + "displayName": "(041.04) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group D [Enterococcus]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\(041.04) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group D [Enterococcus]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\" + }, + { + "displayName": "(041.05) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group G", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\(041.05) Streptococcus infection in conditions classified elsewhere and of unspecified site, streptococcus, group G\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\" + }, + { + "displayName": "(041.09) Streptococcus infection in conditions classified elsewhere and of unspecified site, other streptococcus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\(041.09) Streptococcus infection in conditions classified elsewhere and of unspecified site, other streptococcus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Bacterial infection in conditions classified elsewhere and of unspecified site (041)\\Streptococcus infection in conditions classified elsewhere and of unspecified site (041.0)\\" + }, + { + "displayName": "Diphtheria (032)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Diphtheria (032)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "(032.0) Faucial diphtheria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\(032.0) Faucial diphtheria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Diphtheria (032)\\\\(032.0) Faucial diphtheria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\" + }, + { + "displayName": "(032.1) Nasopharyngeal diphtheria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\(032.1) Nasopharyngeal diphtheria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Diphtheria (032)\\\\(032.1) Nasopharyngeal diphtheria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\" + }, + { + "displayName": "(032.2) Anterior nasal diphtheria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\(032.2) Anterior nasal diphtheria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Diphtheria (032)\\\\(032.2) Anterior nasal diphtheria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\" + }, + { + "displayName": "(032.3) Laryngeal diphtheria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\(032.3) Laryngeal diphtheria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\" + }, + { + "displayName": "(032.9) Diphtheria, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\(032.9) Diphtheria, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\" + }, + { + "displayName": "Other specified diphtheria (032.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\" + }, + { + "displayName": "(032.81) Conjunctival diphtheria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\(032.81) Conjunctival diphtheria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\" + }, + { + "displayName": "(032.82) Diphtheritic myocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\(032.82) Diphtheritic myocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\" + }, + { + "displayName": "(032.83) Diphtheritic peritonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\(032.83) Diphtheritic peritonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\" + }, + { + "displayName": "(032.84) Diphtheritic cystitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\(032.84) Diphtheritic cystitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Diphtheria (032)\\\\Other specified diphtheria (032.8)\\\\(032.84) Diphtheritic cystitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\" + }, + { + "displayName": "(032.85) Cutaneous diphtheria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\(032.85) Cutaneous diphtheria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Diphtheria (032)\\\\Other specified diphtheria (032.8)\\\\(032.85) Cutaneous diphtheria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\" + }, + { + "displayName": "(032.89) Other specified diphtheria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\(032.89) Other specified diphtheria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diphtheria (032)\\Other specified diphtheria (032.8)\\" + }, + { + "displayName": "Diseases due to other mycobacteria (031)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diseases due to other mycobacteria (031)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Diseases due to other mycobacteria (031)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "(031.0) Pulmonary diseases due to other mycobacteria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diseases due to other mycobacteria (031)\\(031.0) Pulmonary diseases due to other mycobacteria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Diseases due to other mycobacteria (031)\\\\(031.0) Pulmonary diseases due to other mycobacteria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diseases due to other mycobacteria (031)\\" + }, + { + "displayName": "(031.1) Cutaneous diseases due to other mycobacteria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diseases due to other mycobacteria (031)\\(031.1) Cutaneous diseases due to other mycobacteria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diseases due to other mycobacteria (031)\\" + }, + { + "displayName": "(031.2) Disseminated due to other mycobacteria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diseases due to other mycobacteria (031)\\(031.2) Disseminated due to other mycobacteria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diseases due to other mycobacteria (031)\\" + }, + { + "displayName": "(031.8) Other specified mycobacterial diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diseases due to other mycobacteria (031)\\(031.8) Other specified mycobacterial diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diseases due to other mycobacteria (031)\\" + }, + { + "displayName": "(031.9) Unspecified diseases due to mycobacteria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diseases due to other mycobacteria (031)\\(031.9) Unspecified diseases due to mycobacteria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Diseases due to other mycobacteria (031)\\" + }, + { + "displayName": "Leprosy (030)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "(030.0) Lepromatous leprosy [type L]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\(030.0) Lepromatous leprosy [type L]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\" + }, + { + "displayName": "(030.1) Tuberculoid leprosy [type T]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\(030.1) Tuberculoid leprosy [type T]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\" + }, + { + "displayName": "(030.2) Indeterminate leprosy [group I]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\(030.2) Indeterminate leprosy [group I]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Leprosy (030)\\\\(030.2) Indeterminate leprosy [group I]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\" + }, + { + "displayName": "(030.3) Borderline leprosy [group B]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\(030.3) Borderline leprosy [group B]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Leprosy (030)\\\\(030.3) Borderline leprosy [group B]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\" + }, + { + "displayName": "(030.8) Other specified leprosy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\(030.8) Other specified leprosy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\" + }, + { + "displayName": "(030.9) Leprosy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\(030.9) Leprosy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Leprosy (030)\\\\(030.9) Leprosy, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Leprosy (030)\\" + }, + { + "displayName": "Meningococcal infection (036)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Meningococcal infection (036)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "(036.0) Meningococcal meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\(036.0) Meningococcal meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\" + }, + { + "displayName": "(036.1) Meningococcal encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\(036.1) Meningococcal encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\" + }, + { + "displayName": "(036.2) Meningococcemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\(036.2) Meningococcemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\" + }, + { + "displayName": "(036.3) Waterhouse-Friderichsen syndrome, meningococcal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\(036.3) Waterhouse-Friderichsen syndrome, meningococcal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\" + }, + { + "displayName": "(036.9) Meningococcal infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\(036.9) Meningococcal infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\" + }, + { + "displayName": "Meningococcal carditis (036.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Meningococcal carditis (036.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Meningococcal infection (036)\\\\Meningococcal carditis (036.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\" + }, + { + "displayName": "(036.40) Meningococcal carditis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Meningococcal carditis (036.4)\\(036.40) Meningococcal carditis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Meningococcal infection (036)\\\\Meningococcal carditis (036.4)\\\\(036.40) Meningococcal carditis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Meningococcal carditis (036.4)\\" + }, + { + "displayName": "(036.41) Meningococcal pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Meningococcal carditis (036.4)\\(036.41) Meningococcal pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Meningococcal infection (036)\\\\Meningococcal carditis (036.4)\\\\(036.41) Meningococcal pericarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Meningococcal carditis (036.4)\\" + }, + { + "displayName": "(036.42) Meningococcal endocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Meningococcal carditis (036.4)\\(036.42) Meningococcal endocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Meningococcal infection (036)\\\\Meningococcal carditis (036.4)\\\\(036.42) Meningococcal endocarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Meningococcal carditis (036.4)\\" + }, + { + "displayName": "(036.43) Meningococcal myocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Meningococcal carditis (036.4)\\(036.43) Meningococcal myocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Meningococcal infection (036)\\\\Meningococcal carditis (036.4)\\\\(036.43) Meningococcal myocarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Meningococcal carditis (036.4)\\" + }, + { + "displayName": "Other specified meningococcal infections (036.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Other specified meningococcal infections (036.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\" + }, + { + "displayName": "(036.81) Meningococcal optic neuritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Other specified meningococcal infections (036.8)\\(036.81) Meningococcal optic neuritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Other specified meningococcal infections (036.8)\\" + }, + { + "displayName": "(036.82) Meningococcal arthropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Other specified meningococcal infections (036.8)\\(036.82) Meningococcal arthropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Other specified meningococcal infections (036.8)\\" + }, + { + "displayName": "(036.89) Other specified meningococcal infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Other specified meningococcal infections (036.8)\\(036.89) Other specified meningococcal infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Meningococcal infection (036)\\Other specified meningococcal infections (036.8)\\" + }, + { + "displayName": "Other bacterial diseases (040)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "(040.0) Gas gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\(040.0) Gas gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\" + }, + { + "displayName": "(040.1) Rhinoscleroma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\(040.1) Rhinoscleroma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Other bacterial diseases (040)\\\\(040.1) Rhinoscleroma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\" + }, + { + "displayName": "(040.2) Whipple's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\(040.2) Whipple's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Other bacterial diseases (040)\\\\(040.2) Whipple's disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\" + }, + { + "displayName": "(040.3) Necrobacillosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\(040.3) Necrobacillosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\" + }, + { + "displayName": "Other specified bacterial disease (040.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified bacterial disease (040.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\" + }, + { + "displayName": "(040.81) Tropical pyomyositis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified bacterial disease (040.8)\\(040.81) Tropical pyomyositis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified bacterial disease (040.8)\\" + }, + { + "displayName": "(040.82) Toxic shock syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified bacterial disease (040.8)\\(040.82) Toxic shock syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified bacterial disease (040.8)\\" + }, + { + "displayName": "(040.89) Other specified bacterial diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified bacterial disease (040.8)\\(040.89) Other specified bacterial diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Other bacterial diseases (040)\\\\Other specified bacterial disease (040.8)\\\\(040.89) Other specified bacterial diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified bacterial disease (040.8)\\" + }, + { + "displayName": "Other specified botulism (040.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified botulism (040.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Other bacterial diseases (040)\\\\Other specified botulism (040.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\" + }, + { + "displayName": "(040.41) Infant botulism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified botulism (040.4)\\(040.41) Infant botulism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified botulism (040.4)\\" + }, + { + "displayName": "(040.42) Wound botulism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified botulism (040.4)\\(040.42) Wound botulism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Other bacterial diseases (040)\\\\Other specified botulism (040.4)\\\\(040.42) Wound botulism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Other bacterial diseases (040)\\Other specified botulism (040.4)\\" + }, + { + "displayName": "Septicemia (038)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Septicemia (038)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "(038.0) Streptococcal septicemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\(038.0) Streptococcal septicemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\" + }, + { + "displayName": "(038.2) Pneumococcal septicemia [Streptococcus pneumoniae septicemia]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\(038.2) Pneumococcal septicemia [Streptococcus pneumoniae septicemia]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Septicemia (038)\\\\(038.2) Pneumococcal septicemia [Streptococcus pneumoniae septicemia]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\" + }, + { + "displayName": "(038.3) Septicemia due to anaerobes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\(038.3) Septicemia due to anaerobes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\" + }, + { + "displayName": "(038.8) Other specified septicemias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\(038.8) Other specified septicemias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\" + }, + { + "displayName": "(038.9) Unspecified septicemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\(038.9) Unspecified septicemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Septicemia (038)\\\\(038.9) Unspecified septicemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\" + }, + { + "displayName": "Septicemia due to other gram-negative organisms (038.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Septicemia (038)\\\\Septicemia due to other gram-negative organisms (038.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\" + }, + { + "displayName": "(038.40) Septicemia due to gram-negative organism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\(038.40) Septicemia due to gram-negative organism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Septicemia (038)\\\\Septicemia due to other gram-negative organisms (038.4)\\\\(038.40) Septicemia due to gram-negative organism, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\" + }, + { + "displayName": "(038.41) Septicemia due to hemophilus influenzae [H. influenzae]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\(038.41) Septicemia due to hemophilus influenzae [H. influenzae]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\" + }, + { + "displayName": "(038.42) Septicemia due to escherichia coli [E. coli]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\(038.42) Septicemia due to escherichia coli [E. coli]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Septicemia (038)\\\\Septicemia due to other gram-negative organisms (038.4)\\\\(038.42) Septicemia due to escherichia coli [E. coli]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\" + }, + { + "displayName": "(038.43) Septicemia due to pseudomonas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\(038.43) Septicemia due to pseudomonas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Septicemia (038)\\\\Septicemia due to other gram-negative organisms (038.4)\\\\(038.43) Septicemia due to pseudomonas\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\" + }, + { + "displayName": "(038.44) Septicemia due to serratia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\(038.44) Septicemia due to serratia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\" + }, + { + "displayName": "(038.49) Other septicemia due to gram-negative organisms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\(038.49) Other septicemia due to gram-negative organisms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Septicemia (038)\\\\Septicemia due to other gram-negative organisms (038.4)\\\\(038.49) Other septicemia due to gram-negative organisms\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Septicemia due to other gram-negative organisms (038.4)\\" + }, + { + "displayName": "Staphylococcal septicemia (038.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Staphylococcal septicemia (038.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Septicemia (038)\\\\Staphylococcal septicemia (038.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\" + }, + { + "displayName": "(038.10) Staphylococcal septicemia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Staphylococcal septicemia (038.1)\\(038.10) Staphylococcal septicemia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Staphylococcal septicemia (038.1)\\" + }, + { + "displayName": "(038.11) Methicillin susceptible Staphylococcus aureus septicemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Staphylococcal septicemia (038.1)\\(038.11) Methicillin susceptible Staphylococcus aureus septicemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Septicemia (038)\\\\Staphylococcal septicemia (038.1)\\\\(038.11) Methicillin susceptible Staphylococcus aureus septicemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Staphylococcal septicemia (038.1)\\" + }, + { + "displayName": "(038.12) Methicillin resistant Staphylococcus aureus septicemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Staphylococcal septicemia (038.1)\\(038.12) Methicillin resistant Staphylococcus aureus septicemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Septicemia (038)\\\\Staphylococcal septicemia (038.1)\\\\(038.12) Methicillin resistant Staphylococcus aureus septicemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Staphylococcal septicemia (038.1)\\" + }, + { + "displayName": "(038.19) Other staphylococcal septicemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Staphylococcal septicemia (038.1)\\(038.19) Other staphylococcal septicemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Septicemia (038)\\Staphylococcal septicemia (038.1)\\" + }, + { + "displayName": "Streptococcal sore throat and scarlet fever (034)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Streptococcal sore throat and scarlet fever (034)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "(034.0) Streptococcal sore throat", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Streptococcal sore throat and scarlet fever (034)\\(034.0) Streptococcal sore throat\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Streptococcal sore throat and scarlet fever (034)\\" + }, + { + "displayName": "(034.1) Scarlet fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Streptococcal sore throat and scarlet fever (034)\\(034.1) Scarlet fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Streptococcal sore throat and scarlet fever (034)\\" + }, + { + "displayName": "Whooping cough (033)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Whooping cough (033)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\" + }, + { + "displayName": "(033.0) Whooping cough due to bordetella pertussis [B. pertussis]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Whooping cough (033)\\(033.0) Whooping cough due to bordetella pertussis [B. pertussis]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Whooping cough (033)\\" + }, + { + "displayName": "(033.1) Whooping cough due to bordetella parapertussis [B. parapertussis]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Whooping cough (033)\\(033.1) Whooping cough due to bordetella parapertussis [B. parapertussis]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Whooping cough (033)\\" + }, + { + "displayName": "(033.8) Whooping cough due to other specified organism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Whooping cough (033)\\(033.8) Whooping cough due to other specified organism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Whooping cough (033)\\" + }, + { + "displayName": "(033.9) Whooping cough, unspecified organism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Whooping cough (033)\\(033.9) Whooping cough, unspecified organism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other bacterial diseases (030-041.99)\\\\Whooping cough (033)\\\\(033.9) Whooping cough, unspecified organism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other bacterial diseases (030-041.99)\\Whooping cough (033)\\" + }, + { + "displayName": "Other diseases due to viruses and chlamydiae (070-079.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(071) Rabies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\(071) Rabies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\" + }, + { + "displayName": "(075) Infectious mononucleosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\(075) Infectious mononucleosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\" + }, + { + "displayName": "Mumps (072)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Mumps (072)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\" + }, + { + "displayName": "(072.0) Mumps orchitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\(072.0) Mumps orchitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Mumps (072)\\\\(072.0) Mumps orchitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\" + }, + { + "displayName": "(072.1) Mumps meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\(072.1) Mumps meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\" + }, + { + "displayName": "(072.2) Mumps encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\(072.2) Mumps encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\" + }, + { + "displayName": "(072.3) Mumps pancreatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\(072.3) Mumps pancreatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\" + }, + { + "displayName": "(072.8) Mumps with unspecified complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\(072.8) Mumps with unspecified complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\" + }, + { + "displayName": "(072.9) Mumps without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\(072.9) Mumps without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\" + }, + { + "displayName": "Mumps with other specified complications (072.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\Mumps with other specified complications (072.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\" + }, + { + "displayName": "(072.71) Mumps hepatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\Mumps with other specified complications (072.7)\\(072.71) Mumps hepatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Mumps (072)\\\\Mumps with other specified complications (072.7)\\\\(072.71) Mumps hepatitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\Mumps with other specified complications (072.7)\\" + }, + { + "displayName": "(072.72) Mumps polyneuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\Mumps with other specified complications (072.7)\\(072.72) Mumps polyneuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Mumps (072)\\\\Mumps with other specified complications (072.7)\\\\(072.72) Mumps polyneuropathy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\Mumps with other specified complications (072.7)\\" + }, + { + "displayName": "(072.79) Other mumps with other specified complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\Mumps with other specified complications (072.7)\\(072.79) Other mumps with other specified complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Mumps (072)\\\\Mumps with other specified complications (072.7)\\\\(072.79) Other mumps with other specified complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Mumps (072)\\Mumps with other specified complications (072.7)\\" + }, + { + "displayName": "Ornithosis (073)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Ornithosis (073)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\" + }, + { + "displayName": "(073.0) Ornithosis with pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Ornithosis (073)\\(073.0) Ornithosis with pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Ornithosis (073)\\" + }, + { + "displayName": "(073.7) Ornithosis with other specified complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Ornithosis (073)\\(073.7) Ornithosis with other specified complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Ornithosis (073)\\" + }, + { + "displayName": "(073.8) Ornithosis with unspecified complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Ornithosis (073)\\(073.8) Ornithosis with unspecified complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Ornithosis (073)\\" + }, + { + "displayName": "(073.9) Ornithosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Ornithosis (073)\\(073.9) Ornithosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Ornithosis (073)\\" + }, + { + "displayName": "Other diseases due to viruses and Chlamydiae (078)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\" + }, + { + "displayName": "(078.0) Molluscum contagiosum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\(078.0) Molluscum contagiosum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\" + }, + { + "displayName": "(078.2) Sweating fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\(078.2) Sweating fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\" + }, + { + "displayName": "(078.3) Cat-scratch disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\(078.3) Cat-scratch disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Other diseases due to viruses and Chlamydiae (078)\\\\(078.3) Cat-scratch disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\" + }, + { + "displayName": "(078.4) Foot and mouth disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\(078.4) Foot and mouth disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\" + }, + { + "displayName": "(078.5) Cytomegaloviral disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\(078.5) Cytomegaloviral disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\" + }, + { + "displayName": "(078.6) Hemorrhagic nephrosonephritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\(078.6) Hemorrhagic nephrosonephritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\" + }, + { + "displayName": "(078.7) Arenaviral hemorrhagic fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\(078.7) Arenaviral hemorrhagic fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\" + }, + { + "displayName": "Other specified diseases due to viruses and Chlamydiae (078.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Other specified diseases due to viruses and Chlamydiae (078.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\" + }, + { + "displayName": "(078.81) Epidemic vertigo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Other specified diseases due to viruses and Chlamydiae (078.8)\\(078.81) Epidemic vertigo\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Other specified diseases due to viruses and Chlamydiae (078.8)\\" + }, + { + "displayName": "(078.82) Epidemic vomiting syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Other specified diseases due to viruses and Chlamydiae (078.8)\\(078.82) Epidemic vomiting syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Other specified diseases due to viruses and Chlamydiae (078.8)\\" + }, + { + "displayName": "(078.88) Other specified diseases due to chlamydiae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Other specified diseases due to viruses and Chlamydiae (078.8)\\(078.88) Other specified diseases due to chlamydiae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Other diseases due to viruses and Chlamydiae (078)\\\\Other specified diseases due to viruses and Chlamydiae (078.8)\\\\(078.88) Other specified diseases due to chlamydiae\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Other specified diseases due to viruses and Chlamydiae (078.8)\\" + }, + { + "displayName": "(078.89) Other specified diseases due to viruses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Other specified diseases due to viruses and Chlamydiae (078.8)\\(078.89) Other specified diseases due to viruses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Other diseases due to viruses and Chlamydiae (078)\\\\Other specified diseases due to viruses and Chlamydiae (078.8)\\\\(078.89) Other specified diseases due to viruses\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Other specified diseases due to viruses and Chlamydiae (078.8)\\" + }, + { + "displayName": "Viral warts (078.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Viral warts (078.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Other diseases due to viruses and Chlamydiae (078)\\\\Viral warts (078.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\" + }, + { + "displayName": "(078.10) Viral warts, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Viral warts (078.1)\\(078.10) Viral warts, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Viral warts (078.1)\\" + }, + { + "displayName": "(078.11) Condyloma acuminatum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Viral warts (078.1)\\(078.11) Condyloma acuminatum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Viral warts (078.1)\\" + }, + { + "displayName": "(078.12) Plantar wart", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Viral warts (078.1)\\(078.12) Plantar wart\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Viral warts (078.1)\\" + }, + { + "displayName": "(078.19) Other specified viral warts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Viral warts (078.1)\\(078.19) Other specified viral warts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases due to viruses and Chlamydiae (078)\\Viral warts (078.1)\\" + }, + { + "displayName": "Other diseases of conjunctiva due to viruses and Chlamydiae (077)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\" + }, + { + "displayName": "(077.0) Inclusion conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\(077.0) Inclusion conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\" + }, + { + "displayName": "(077.1) Epidemic keratoconjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\(077.1) Epidemic keratoconjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\" + }, + { + "displayName": "(077.2) Pharyngoconjunctival fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\(077.2) Pharyngoconjunctival fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\" + }, + { + "displayName": "(077.3) Other adenoviral conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\(077.3) Other adenoviral conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\\\(077.3) Other adenoviral conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\" + }, + { + "displayName": "(077.4) Epidemic hemorrhagic conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\(077.4) Epidemic hemorrhagic conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\\\(077.4) Epidemic hemorrhagic conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\" + }, + { + "displayName": "(077.8) Other viral conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\(077.8) Other viral conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\\\(077.8) Other viral conjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\" + }, + { + "displayName": "Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\" + }, + { + "displayName": "(077.98) Unspecified diseases of conjunctiva due to chlamydiae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\\(077.98) Unspecified diseases of conjunctiva due to chlamydiae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\\" + }, + { + "displayName": "(077.99) Unspecified diseases of conjunctiva due to viruses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\\(077.99) Unspecified diseases of conjunctiva due to viruses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Other diseases of conjunctiva due to viruses and Chlamydiae (077)\\Unspecified diseases of conjunctiva due to viruses and Chlamydiae (077.9)\\" + }, + { + "displayName": "Specific diseases due to Coxsackie virus (074)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\" + }, + { + "displayName": "(074.0) Herpangina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\(074.0) Herpangina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\" + }, + { + "displayName": "(074.1) Epidemic pleurodynia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\(074.1) Epidemic pleurodynia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\" + }, + { + "displayName": "(074.3) Hand, foot, and mouth disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\(074.3) Hand, foot, and mouth disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\" + }, + { + "displayName": "(074.8) Other specified diseases due to Coxsackie virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\(074.8) Other specified diseases due to Coxsackie virus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Specific diseases due to Coxsackie virus (074)\\\\(074.8) Other specified diseases due to Coxsackie virus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\" + }, + { + "displayName": "Coxsackie carditis (074.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\Coxsackie carditis (074.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Specific diseases due to Coxsackie virus (074)\\\\Coxsackie carditis (074.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\" + }, + { + "displayName": "(074.20) Coxsackie carditis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\Coxsackie carditis (074.2)\\(074.20) Coxsackie carditis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Specific diseases due to Coxsackie virus (074)\\\\Coxsackie carditis (074.2)\\\\(074.20) Coxsackie carditis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\Coxsackie carditis (074.2)\\" + }, + { + "displayName": "(074.21) Coxsackie pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\Coxsackie carditis (074.2)\\(074.21) Coxsackie pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Specific diseases due to Coxsackie virus (074)\\\\Coxsackie carditis (074.2)\\\\(074.21) Coxsackie pericarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\Coxsackie carditis (074.2)\\" + }, + { + "displayName": "(074.22) Coxsackie endocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\Coxsackie carditis (074.2)\\(074.22) Coxsackie endocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Specific diseases due to Coxsackie virus (074)\\\\Coxsackie carditis (074.2)\\\\(074.22) Coxsackie endocarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\Coxsackie carditis (074.2)\\" + }, + { + "displayName": "(074.23) Coxsackie myocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\Coxsackie carditis (074.2)\\(074.23) Coxsackie myocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Specific diseases due to Coxsackie virus (074)\\Coxsackie carditis (074.2)\\" + }, + { + "displayName": "Trachoma (076)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Trachoma (076)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\" + }, + { + "displayName": "(076.0) Trachoma, initial stage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Trachoma (076)\\(076.0) Trachoma, initial stage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Trachoma (076)\\" + }, + { + "displayName": "(076.1) Trachoma, active stage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Trachoma (076)\\(076.1) Trachoma, active stage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Trachoma (076)\\" + }, + { + "displayName": "(076.9) Trachoma, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Trachoma (076)\\(076.9) Trachoma, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Trachoma (076)\\" + }, + { + "displayName": "Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\" + }, + { + "displayName": "(079.0) Adenovirus infection in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\(079.0) Adenovirus infection in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\" + }, + { + "displayName": "(079.1) Echo virus infection in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\(079.1) Echo virus infection in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\\\(079.1) Echo virus infection in conditions classified elsewhere and of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\" + }, + { + "displayName": "(079.2) Coxsackie virus infection in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\(079.2) Coxsackie virus infection in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\\\(079.2) Coxsackie virus infection in conditions classified elsewhere and of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\" + }, + { + "displayName": "(079.3) Rhinovirus infection in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\(079.3) Rhinovirus infection in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\\\(079.3) Rhinovirus infection in conditions classified elsewhere and of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\" + }, + { + "displayName": "(079.4) Human papillomavirus in conditions classified elsewhere and of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\(079.4) Human papillomavirus in conditions classified elsewhere and of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\\\(079.4) Human papillomavirus in conditions classified elsewhere and of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\" + }, + { + "displayName": "(079.6) Respiratory syncytial virus (RSV)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\(079.6) Respiratory syncytial virus (RSV)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\\\(079.6) Respiratory syncytial virus (RSV)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\" + }, + { + "displayName": "Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\" + }, + { + "displayName": "(079.81) Hantavirus infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\(079.81) Hantavirus infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\" + }, + { + "displayName": "(079.82) SARS-associated coronavirus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\(079.82) SARS-associated coronavirus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\" + }, + { + "displayName": "(079.83) Parvovirus B19", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\(079.83) Parvovirus B19\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\" + }, + { + "displayName": "(079.88) Other specified chlamydial infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\(079.88) Other specified chlamydial infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\" + }, + { + "displayName": "(079.89) Other specified viral infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\(079.89) Other specified viral infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Other specified viral and chlamydial infections in conditions classified elsewhere and of unspecified site (079.8)\\" + }, + { + "displayName": "Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\" + }, + { + "displayName": "(079.50) Retrovirus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\(079.50) Retrovirus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\" + }, + { + "displayName": "(079.51) Human T-cell lymphotrophic virus, type I [HTLV-I]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\(079.51) Human T-cell lymphotrophic virus, type I [HTLV-I]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\" + }, + { + "displayName": "(079.52) Human T-cell lymphotrophic virus, type II [HTLV-II]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\(079.52) Human T-cell lymphotrophic virus, type II [HTLV-II]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\\\(079.52) Human T-cell lymphotrophic virus, type II [HTLV-II]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\" + }, + { + "displayName": "(079.53) Human immunodeficiency virus, type 2 [HIV-2]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\(079.53) Human immunodeficiency virus, type 2 [HIV-2]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\\\(079.53) Human immunodeficiency virus, type 2 [HIV-2]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\" + }, + { + "displayName": "(079.59) Other specified retrovirus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\(079.59) Other specified retrovirus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Retrovirus infection in conditions classified elsewhere and of unspecified site (079.5)\\" + }, + { + "displayName": "Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\\\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\" + }, + { + "displayName": "(079.98) Unspecified chlamydial infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\\(079.98) Unspecified chlamydial infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\\\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\\\\(079.98) Unspecified chlamydial infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\\" + }, + { + "displayName": "(079.99) Unspecified viral infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\\(079.99) Unspecified viral infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\\\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\\\\(079.99) Unspecified viral infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079)\\Unspecified viral and chlamydial infection in conditions classified elsewhere and of unspecified site (079.9)\\" + }, + { + "displayName": "Viral hepatitis (070)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\" + }, + { + "displayName": "(070.0) Viral hepatitis A with hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\(070.0) Viral hepatitis A with hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral hepatitis (070)\\\\(070.0) Viral hepatitis A with hepatic coma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\" + }, + { + "displayName": "(070.1) Viral hepatitis A without mention of hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\(070.1) Viral hepatitis A without mention of hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral hepatitis (070)\\\\(070.1) Viral hepatitis A without mention of hepatic coma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\" + }, + { + "displayName": "(070.6) Unspecified viral hepatitis with hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\(070.6) Unspecified viral hepatitis with hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\" + }, + { + "displayName": "(070.9) Unspecified viral hepatitis without mention of hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\(070.9) Unspecified viral hepatitis without mention of hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\" + }, + { + "displayName": "Other specified viral hepatitis with hepatic coma (070.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis with hepatic coma (070.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\" + }, + { + "displayName": "(070.41) Acute hepatitis C with hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis with hepatic coma (070.4)\\(070.41) Acute hepatitis C with hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral hepatitis (070)\\\\Other specified viral hepatitis with hepatic coma (070.4)\\\\(070.41) Acute hepatitis C with hepatic coma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis with hepatic coma (070.4)\\" + }, + { + "displayName": "(070.42) Hepatitis delta without mention of active hepatitis B disease with hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis with hepatic coma (070.4)\\(070.42) Hepatitis delta without mention of active hepatitis B disease with hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis with hepatic coma (070.4)\\" + }, + { + "displayName": "(070.43) Hepatitis E with hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis with hepatic coma (070.4)\\(070.43) Hepatitis E with hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis with hepatic coma (070.4)\\" + }, + { + "displayName": "(070.44) Chronic hepatitis C with hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis with hepatic coma (070.4)\\(070.44) Chronic hepatitis C with hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis with hepatic coma (070.4)\\" + }, + { + "displayName": "(070.49) Other specified viral hepatitis with hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis with hepatic coma (070.4)\\(070.49) Other specified viral hepatitis with hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis with hepatic coma (070.4)\\" + }, + { + "displayName": "Other specified viral hepatitis without mention of hepatic coma (070.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\" + }, + { + "displayName": "(070.51) Acute hepatitis C without mention of hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\(070.51) Acute hepatitis C without mention of hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\" + }, + { + "displayName": "(070.52) Hepatitis delta without mention of active hepatitis B disease or hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\(070.52) Hepatitis delta without mention of active hepatitis B disease or hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\" + }, + { + "displayName": "(070.53) Hepatitis E without mention of hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\(070.53) Hepatitis E without mention of hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\" + }, + { + "displayName": "(070.54) Chronic hepatitis C without mention of hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\(070.54) Chronic hepatitis C without mention of hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\" + }, + { + "displayName": "(070.59) Other specified viral hepatitis without mention of hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\(070.59) Other specified viral hepatitis without mention of hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral hepatitis (070)\\\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\\\(070.59) Other specified viral hepatitis without mention of hepatic coma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Other specified viral hepatitis without mention of hepatic coma (070.5)\\" + }, + { + "displayName": "Unspecified viral hepatitis C (070.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Unspecified viral hepatitis C (070.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\" + }, + { + "displayName": "(070.70) Unspecified viral hepatitis C without hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Unspecified viral hepatitis C (070.7)\\(070.70) Unspecified viral hepatitis C without hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral hepatitis (070)\\\\Unspecified viral hepatitis C (070.7)\\\\(070.70) Unspecified viral hepatitis C without hepatic coma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Unspecified viral hepatitis C (070.7)\\" + }, + { + "displayName": "(070.71) Unspecified viral hepatitis C with hepatic coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Unspecified viral hepatitis C (070.7)\\(070.71) Unspecified viral hepatitis C with hepatic coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Unspecified viral hepatitis C (070.7)\\" + }, + { + "displayName": "Viral hepatitis B with hepatic coma (070.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B with hepatic coma (070.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\" + }, + { + "displayName": "(070.20) Viral hepatitis B with hepatic coma, acute or unspecified, without mention of hepatitis delta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B with hepatic coma (070.2)\\(070.20) Viral hepatitis B with hepatic coma, acute or unspecified, without mention of hepatitis delta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B with hepatic coma (070.2)\\" + }, + { + "displayName": "(070.21) Viral hepatitis B with hepatic coma, acute or unspecified, with hepatitis delta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B with hepatic coma (070.2)\\(070.21) Viral hepatitis B with hepatic coma, acute or unspecified, with hepatitis delta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B with hepatic coma (070.2)\\" + }, + { + "displayName": "(070.22) Chronic viral hepatitis B with hepatic coma without hepatitis delta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B with hepatic coma (070.2)\\(070.22) Chronic viral hepatitis B with hepatic coma without hepatitis delta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B with hepatic coma (070.2)\\" + }, + { + "displayName": "(070.23) Chronic viral hepatitis B with hepatic coma with hepatitis delta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B with hepatic coma (070.2)\\(070.23) Chronic viral hepatitis B with hepatic coma with hepatitis delta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral hepatitis (070)\\\\Viral hepatitis B with hepatic coma (070.2)\\\\(070.23) Chronic viral hepatitis B with hepatic coma with hepatitis delta\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B with hepatic coma (070.2)\\" + }, + { + "displayName": "Viral hepatitis B without mention of hepatic coma (070.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B without mention of hepatic coma (070.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral hepatitis (070)\\\\Viral hepatitis B without mention of hepatic coma (070.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\" + }, + { + "displayName": "(070.30) Viral hepatitis B without mention of hepatic coma, acute or unspecified, without mention of hepatitis delta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B without mention of hepatic coma (070.3)\\(070.30) Viral hepatitis B without mention of hepatic coma, acute or unspecified, without mention of hepatitis delta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B without mention of hepatic coma (070.3)\\" + }, + { + "displayName": "(070.31) Viral hepatitis B without mention of hepatic coma, acute or unspecified, with hepatitis delta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B without mention of hepatic coma (070.3)\\(070.31) Viral hepatitis B without mention of hepatic coma, acute or unspecified, with hepatitis delta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral hepatitis (070)\\\\Viral hepatitis B without mention of hepatic coma (070.3)\\\\(070.31) Viral hepatitis B without mention of hepatic coma, acute or unspecified, with hepatitis delta\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B without mention of hepatic coma (070.3)\\" + }, + { + "displayName": "(070.32) Chronic viral hepatitis B without mention of hepatic coma without mention of hepatitis delta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B without mention of hepatic coma (070.3)\\(070.32) Chronic viral hepatitis B without mention of hepatic coma without mention of hepatitis delta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other diseases due to viruses and chlamydiae (070-079.99)\\\\Viral hepatitis (070)\\\\Viral hepatitis B without mention of hepatic coma (070.3)\\\\(070.32) Chronic viral hepatitis B without mention of hepatic coma without mention of hepatitis delta\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B without mention of hepatic coma (070.3)\\" + }, + { + "displayName": "(070.33) Chronic viral hepatitis B without mention of hepatic coma with hepatitis delta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B without mention of hepatic coma (070.3)\\(070.33) Chronic viral hepatitis B without mention of hepatic coma with hepatitis delta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other diseases due to viruses and chlamydiae (070-079.99)\\Viral hepatitis (070)\\Viral hepatitis B without mention of hepatic coma (070.3)\\" + }, + { + "displayName": "Other infectious and parasitic diseases (130-136.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(135) Sarcoidosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\(135) Sarcoidosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\(135) Sarcoidosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\" + }, + { + "displayName": "Acariasis (133)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Acariasis (133)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\" + }, + { + "displayName": "(133.0) Scabies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Acariasis (133)\\(133.0) Scabies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\Acariasis (133)\\\\(133.0) Scabies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Acariasis (133)\\" + }, + { + "displayName": "(133.8) Other acariasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Acariasis (133)\\(133.8) Other acariasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Acariasis (133)\\" + }, + { + "displayName": "(133.9) Acariasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Acariasis (133)\\(133.9) Acariasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Acariasis (133)\\" + }, + { + "displayName": "Other and unspecified infectious and parasitic diseases (136)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\" + }, + { + "displayName": "(136.0) Ainhum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\(136.0) Ainhum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\" + }, + { + "displayName": "(136.1) Behcet's syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\(136.1) Behcet's syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\" + }, + { + "displayName": "(136.3) Pneumocystosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\(136.3) Pneumocystosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\" + }, + { + "displayName": "(136.4) Psorospermiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\(136.4) Psorospermiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\" + }, + { + "displayName": "(136.5) Sarcosporidiosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\(136.5) Sarcosporidiosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\" + }, + { + "displayName": "(136.8) Other specified infectious and parasitic diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\(136.8) Other specified infectious and parasitic diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\" + }, + { + "displayName": "(136.9) Unspecified infectious and parasitic diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\(136.9) Unspecified infectious and parasitic diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\" + }, + { + "displayName": "Specific infections by free-living amebae (136.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\Specific infections by free-living amebae (136.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\" + }, + { + "displayName": "(136.21) Specific infection due to acanthamoeba", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\Specific infections by free-living amebae (136.2)\\(136.21) Specific infection due to acanthamoeba\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other and unspecified infectious and parasitic diseases (136)\\Specific infections by free-living amebae (136.2)\\" + }, + { + "displayName": "Other infestation (134)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other infestation (134)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\" + }, + { + "displayName": "(134.0) Myiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other infestation (134)\\(134.0) Myiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other infestation (134)\\" + }, + { + "displayName": "(134.1) Other arthropod infestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other infestation (134)\\(134.1) Other arthropod infestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other infestation (134)\\" + }, + { + "displayName": "(134.2) Hirudiniasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other infestation (134)\\(134.2) Hirudiniasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other infestation (134)\\" + }, + { + "displayName": "(134.8) Other specified infestations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other infestation (134)\\(134.8) Other specified infestations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other infestation (134)\\" + }, + { + "displayName": "(134.9) Infestation, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other infestation (134)\\(134.9) Infestation, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Other infestation (134)\\" + }, + { + "displayName": "Pediculosis and phthirus infestation (132)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Pediculosis and phthirus infestation (132)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\" + }, + { + "displayName": "(132.0) Pediculus capitis [head louse]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Pediculosis and phthirus infestation (132)\\(132.0) Pediculus capitis [head louse]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\Pediculosis and phthirus infestation (132)\\\\(132.0) Pediculus capitis [head louse]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Pediculosis and phthirus infestation (132)\\" + }, + { + "displayName": "(132.1) Pediculus corporis [body louse]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Pediculosis and phthirus infestation (132)\\(132.1) Pediculus corporis [body louse]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\Pediculosis and phthirus infestation (132)\\\\(132.1) Pediculus corporis [body louse]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Pediculosis and phthirus infestation (132)\\" + }, + { + "displayName": "(132.2) Phthirus pubis [pubic louse]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Pediculosis and phthirus infestation (132)\\(132.2) Phthirus pubis [pubic louse]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\Pediculosis and phthirus infestation (132)\\\\(132.2) Phthirus pubis [pubic louse]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Pediculosis and phthirus infestation (132)\\" + }, + { + "displayName": "(132.3) Mixed pediculosis infestation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Pediculosis and phthirus infestation (132)\\(132.3) Mixed pediculosis infestation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\Pediculosis and phthirus infestation (132)\\\\(132.3) Mixed pediculosis infestation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Pediculosis and phthirus infestation (132)\\" + }, + { + "displayName": "(132.9) Pediculosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Pediculosis and phthirus infestation (132)\\(132.9) Pediculosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Pediculosis and phthirus infestation (132)\\" + }, + { + "displayName": "Toxoplasmosis (130)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\" + }, + { + "displayName": "(130.0) Meningoencephalitis due to toxoplasmosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\(130.0) Meningoencephalitis due to toxoplasmosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\" + }, + { + "displayName": "(130.1) Conjunctivitis due to toxoplasmosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\(130.1) Conjunctivitis due to toxoplasmosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\" + }, + { + "displayName": "(130.2) Chorioretinitis due to toxoplasmosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\(130.2) Chorioretinitis due to toxoplasmosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\" + }, + { + "displayName": "(130.3) Myocarditis due to toxoplasmosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\(130.3) Myocarditis due to toxoplasmosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\" + }, + { + "displayName": "(130.4) Pneumonitis due to toxoplasmosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\(130.4) Pneumonitis due to toxoplasmosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\" + }, + { + "displayName": "(130.5) Hepatitis due to toxoplasmosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\(130.5) Hepatitis due to toxoplasmosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\Toxoplasmosis (130)\\\\(130.5) Hepatitis due to toxoplasmosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\" + }, + { + "displayName": "(130.7) Toxoplasmosis of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\(130.7) Toxoplasmosis of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\Toxoplasmosis (130)\\\\(130.7) Toxoplasmosis of other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\" + }, + { + "displayName": "(130.8) Multisystemic disseminated toxoplasmosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\(130.8) Multisystemic disseminated toxoplasmosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\Toxoplasmosis (130)\\\\(130.8) Multisystemic disseminated toxoplasmosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\" + }, + { + "displayName": "(130.9) Toxoplasmosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\(130.9) Toxoplasmosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Toxoplasmosis (130)\\" + }, + { + "displayName": "Trichomoniasis (131)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\" + }, + { + "displayName": "(131.8) Trichomoniasis of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\(131.8) Trichomoniasis of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\" + }, + { + "displayName": "(131.9) Trichomoniasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\(131.9) Trichomoniasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\" + }, + { + "displayName": "Urogenital trichomoniasis (131.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\Urogenital trichomoniasis (131.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\" + }, + { + "displayName": "(131.00) Urogenital trichomoniasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\Urogenital trichomoniasis (131.0)\\(131.00) Urogenital trichomoniasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\Urogenital trichomoniasis (131.0)\\" + }, + { + "displayName": "(131.01) Trichomonal vulvovaginitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\Urogenital trichomoniasis (131.0)\\(131.01) Trichomonal vulvovaginitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\Urogenital trichomoniasis (131.0)\\" + }, + { + "displayName": "(131.02) Trichomonal urethritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\Urogenital trichomoniasis (131.0)\\(131.02) Trichomonal urethritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\Trichomoniasis (131)\\\\Urogenital trichomoniasis (131.0)\\\\(131.02) Trichomonal urethritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\Urogenital trichomoniasis (131.0)\\" + }, + { + "displayName": "(131.03) Trichomonal prostatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\Urogenital trichomoniasis (131.0)\\(131.03) Trichomonal prostatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\Trichomoniasis (131)\\\\Urogenital trichomoniasis (131.0)\\\\(131.03) Trichomonal prostatitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\Urogenital trichomoniasis (131.0)\\" + }, + { + "displayName": "(131.09) Other urogenital trichomoniasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\Urogenital trichomoniasis (131.0)\\(131.09) Other urogenital trichomoniasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other infectious and parasitic diseases (130-136.99)\\\\Trichomoniasis (131)\\\\Urogenital trichomoniasis (131.0)\\\\(131.09) Other urogenital trichomoniasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other infectious and parasitic diseases (130-136.99)\\Trichomoniasis (131)\\Urogenital trichomoniasis (131.0)\\" + }, + { + "displayName": "Other spirochetal diseases (100-104.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(101) Vincent's angina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\(101) Vincent's angina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\" + }, + { + "displayName": "Leptospirosis (100)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Leptospirosis (100)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\" + }, + { + "displayName": "(100.0) Leptospirosis icterohemorrhagica", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Leptospirosis (100)\\(100.0) Leptospirosis icterohemorrhagica\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Leptospirosis (100)\\" + }, + { + "displayName": "(100.9) Leptospirosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Leptospirosis (100)\\(100.9) Leptospirosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Leptospirosis (100)\\" + }, + { + "displayName": "Other specified leptospiral infections (100.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Leptospirosis (100)\\Other specified leptospiral infections (100.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Leptospirosis (100)\\" + }, + { + "displayName": "(100.81) Leptospiral meningitis (aseptic)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Leptospirosis (100)\\Other specified leptospiral infections (100.8)\\(100.81) Leptospiral meningitis (aseptic)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Leptospirosis (100)\\Other specified leptospiral infections (100.8)\\" + }, + { + "displayName": "(100.89) Other specified leptospiral infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Leptospirosis (100)\\Other specified leptospiral infections (100.8)\\(100.89) Other specified leptospiral infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Leptospirosis (100)\\Other specified leptospiral infections (100.8)\\" + }, + { + "displayName": "Other spirochetal infection (104)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Other spirochetal infection (104)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\" + }, + { + "displayName": "(104.0) Nonvenereal endemic syphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Other spirochetal infection (104)\\(104.0) Nonvenereal endemic syphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Other spirochetal infection (104)\\" + }, + { + "displayName": "(104.8) Other specified spirochetal infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Other spirochetal infection (104)\\(104.8) Other specified spirochetal infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Other spirochetal infection (104)\\" + }, + { + "displayName": "(104.9) Spirochetal infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Other spirochetal infection (104)\\(104.9) Spirochetal infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Other spirochetal infection (104)\\" + }, + { + "displayName": "Pinta (103)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Pinta (103)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\" + }, + { + "displayName": "(103.0) Primary lesions of pinta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Pinta (103)\\(103.0) Primary lesions of pinta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Pinta (103)\\" + }, + { + "displayName": "(103.1) Intermediate lesions of pinta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Pinta (103)\\(103.1) Intermediate lesions of pinta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Pinta (103)\\" + }, + { + "displayName": "(103.2) Late lesions of pinta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Pinta (103)\\(103.2) Late lesions of pinta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Pinta (103)\\" + }, + { + "displayName": "(103.3) Mixed lesions of pinta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Pinta (103)\\(103.3) Mixed lesions of pinta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Pinta (103)\\" + }, + { + "displayName": "(103.9) Pinta, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Pinta (103)\\(103.9) Pinta, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other spirochetal diseases (100-104.99)\\\\Pinta (103)\\\\(103.9) Pinta, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Pinta (103)\\" + }, + { + "displayName": "Yaws (102)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\" + }, + { + "displayName": "(102.0) Initial lesions of yaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\(102.0) Initial lesions of yaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other spirochetal diseases (100-104.99)\\\\Yaws (102)\\\\(102.0) Initial lesions of yaws\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\" + }, + { + "displayName": "(102.1) Multiple papillomata due to yaws and wet crab yaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\(102.1) Multiple papillomata due to yaws and wet crab yaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other spirochetal diseases (100-104.99)\\\\Yaws (102)\\\\(102.1) Multiple papillomata due to yaws and wet crab yaws\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\" + }, + { + "displayName": "(102.2) Other early skin lesions of yaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\(102.2) Other early skin lesions of yaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other spirochetal diseases (100-104.99)\\\\Yaws (102)\\\\(102.2) Other early skin lesions of yaws\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\" + }, + { + "displayName": "(102.3) Hyperkeratosis due to yaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\(102.3) Hyperkeratosis due to yaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\" + }, + { + "displayName": "(102.4) Gummata and ulcers due to yaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\(102.4) Gummata and ulcers due to yaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other spirochetal diseases (100-104.99)\\\\Yaws (102)\\\\(102.4) Gummata and ulcers due to yaws\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\" + }, + { + "displayName": "(102.5) Gangosa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\(102.5) Gangosa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\" + }, + { + "displayName": "(102.6) Bone and joint lesions due to yaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\(102.6) Bone and joint lesions due to yaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\" + }, + { + "displayName": "(102.7) Other manifestations of yaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\(102.7) Other manifestations of yaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\" + }, + { + "displayName": "(102.8) Latent yaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\(102.8) Latent yaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\" + }, + { + "displayName": "(102.9) Yaws, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\(102.9) Yaws, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Other spirochetal diseases (100-104.99)\\\\Yaws (102)\\\\(102.9) Yaws, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Other spirochetal diseases (100-104.99)\\Yaws (102)\\" + }, + { + "displayName": "Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(048) Other enterovirus diseases of central nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\(048) Other enterovirus diseases of central nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\\\(048) Other enterovirus diseases of central nervous system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\" + }, + { + "displayName": "Acute poliomyelitis (045)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\" + }, + { + "displayName": "Acute nonparalytic poliomyelitis (045.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute nonparalytic poliomyelitis (045.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\\\Acute poliomyelitis (045)\\\\Acute nonparalytic poliomyelitis (045.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\" + }, + { + "displayName": "(045.20) Acute nonparalytic poliomyelitis, poliovirus, unspecified type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute nonparalytic poliomyelitis (045.2)\\(045.20) Acute nonparalytic poliomyelitis, poliovirus, unspecified type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute nonparalytic poliomyelitis (045.2)\\" + }, + { + "displayName": "(045.21) Acute nonparalytic poliomyelitis, poliovirus type I", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute nonparalytic poliomyelitis (045.2)\\(045.21) Acute nonparalytic poliomyelitis, poliovirus type I\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute nonparalytic poliomyelitis (045.2)\\" + }, + { + "displayName": "(045.22) Acute nonparalytic poliomyelitis, poliovirus type II", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute nonparalytic poliomyelitis (045.2)\\(045.22) Acute nonparalytic poliomyelitis, poliovirus type II\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute nonparalytic poliomyelitis (045.2)\\" + }, + { + "displayName": "(045.23) Acute nonparalytic poliomyelitis, poliovirus type III", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute nonparalytic poliomyelitis (045.2)\\(045.23) Acute nonparalytic poliomyelitis, poliovirus type III\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute nonparalytic poliomyelitis (045.2)\\" + }, + { + "displayName": "Acute paralytic poliomyelitis specified as bulbar (045.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute paralytic poliomyelitis specified as bulbar (045.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\" + }, + { + "displayName": "(045.00) Acute paralytic poliomyelitis specified as bulbar, poliovirus, unspecified type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute paralytic poliomyelitis specified as bulbar (045.0)\\(045.00) Acute paralytic poliomyelitis specified as bulbar, poliovirus, unspecified type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute paralytic poliomyelitis specified as bulbar (045.0)\\" + }, + { + "displayName": "(045.01) Acute paralytic poliomyelitis specified as bulbar, poliovirus type I", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute paralytic poliomyelitis specified as bulbar (045.0)\\(045.01) Acute paralytic poliomyelitis specified as bulbar, poliovirus type I\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute paralytic poliomyelitis specified as bulbar (045.0)\\" + }, + { + "displayName": "(045.02) Acute paralytic poliomyelitis specified as bulbar, poliovirus type II", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute paralytic poliomyelitis specified as bulbar (045.0)\\(045.02) Acute paralytic poliomyelitis specified as bulbar, poliovirus type II\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute paralytic poliomyelitis specified as bulbar (045.0)\\" + }, + { + "displayName": "(045.03) Acute paralytic poliomyelitis specified as bulbar, poliovirus type III", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute paralytic poliomyelitis specified as bulbar (045.0)\\(045.03) Acute paralytic poliomyelitis specified as bulbar, poliovirus type III\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute paralytic poliomyelitis specified as bulbar (045.0)\\" + }, + { + "displayName": "Acute poliomyelitis with other paralysis (045.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis with other paralysis (045.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\" + }, + { + "displayName": "(045.10) Acute poliomyelitis with other paralysis, poliovirus, unspecified type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis with other paralysis (045.1)\\(045.10) Acute poliomyelitis with other paralysis, poliovirus, unspecified type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis with other paralysis (045.1)\\" + }, + { + "displayName": "(045.11) Acute poliomyelitis with other paralysis, poliovirus type I", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis with other paralysis (045.1)\\(045.11) Acute poliomyelitis with other paralysis, poliovirus type I\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis with other paralysis (045.1)\\" + }, + { + "displayName": "(045.12) Acute poliomyelitis with other paralysis, poliovirus type II", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis with other paralysis (045.1)\\(045.12) Acute poliomyelitis with other paralysis, poliovirus type II\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis with other paralysis (045.1)\\" + }, + { + "displayName": "(045.13) Acute poliomyelitis with other paralysis, poliovirus type III", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis with other paralysis (045.1)\\(045.13) Acute poliomyelitis with other paralysis, poliovirus type III\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis with other paralysis (045.1)\\" + }, + { + "displayName": "Acute poliomyelitis, unspecified (045.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis, unspecified (045.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\" + }, + { + "displayName": "(045.90) Acute poliomyelitis, unspecified, poliovirus, unspecified type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis, unspecified (045.9)\\(045.90) Acute poliomyelitis, unspecified, poliovirus, unspecified type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis, unspecified (045.9)\\" + }, + { + "displayName": "(045.91) Acute poliomyelitis, unspecified, poliovirus type I", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis, unspecified (045.9)\\(045.91) Acute poliomyelitis, unspecified, poliovirus type I\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis, unspecified (045.9)\\" + }, + { + "displayName": "(045.92) Acute poliomyelitis, unspecified, poliovirus type II", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis, unspecified (045.9)\\(045.92) Acute poliomyelitis, unspecified, poliovirus type II\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis, unspecified (045.9)\\" + }, + { + "displayName": "(045.93) Acute poliomyelitis, unspecified, poliovirus type III", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis, unspecified (045.9)\\(045.93) Acute poliomyelitis, unspecified, poliovirus type III\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Acute poliomyelitis (045)\\Acute poliomyelitis, unspecified (045.9)\\" + }, + { + "displayName": "Meningitis due to enterovirus (047)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Meningitis due to enterovirus (047)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\" + }, + { + "displayName": "(047.0) Meningitis due to coxsackie virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Meningitis due to enterovirus (047)\\(047.0) Meningitis due to coxsackie virus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Meningitis due to enterovirus (047)\\" + }, + { + "displayName": "(047.1) Meningitis due to echo virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Meningitis due to enterovirus (047)\\(047.1) Meningitis due to echo virus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\\\Meningitis due to enterovirus (047)\\\\(047.1) Meningitis due to echo virus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Meningitis due to enterovirus (047)\\" + }, + { + "displayName": "(047.8) Other specified viral meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Meningitis due to enterovirus (047)\\(047.8) Other specified viral meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Meningitis due to enterovirus (047)\\" + }, + { + "displayName": "(047.9) Unspecified viral meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Meningitis due to enterovirus (047)\\(047.9) Unspecified viral meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\\\Meningitis due to enterovirus (047)\\\\(047.9) Unspecified viral meningitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Meningitis due to enterovirus (047)\\" + }, + { + "displayName": "Other non-arthropod-borne viral diseases of central nervous system (049)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Other non-arthropod-borne viral diseases of central nervous system (049)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\\\Other non-arthropod-borne viral diseases of central nervous system (049)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\" + }, + { + "displayName": "(049.0) Lymphocytic choriomeningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Other non-arthropod-borne viral diseases of central nervous system (049)\\(049.0) Lymphocytic choriomeningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\\\Other non-arthropod-borne viral diseases of central nervous system (049)\\\\(049.0) Lymphocytic choriomeningitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Other non-arthropod-borne viral diseases of central nervous system (049)\\" + }, + { + "displayName": "(049.1) Meningitis due to adenovirus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Other non-arthropod-borne viral diseases of central nervous system (049)\\(049.1) Meningitis due to adenovirus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Other non-arthropod-borne viral diseases of central nervous system (049)\\" + }, + { + "displayName": "(049.8) Other specified non-arthropod-borne viral diseases of central nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Other non-arthropod-borne viral diseases of central nervous system (049)\\(049.8) Other specified non-arthropod-borne viral diseases of central nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\\\Other non-arthropod-borne viral diseases of central nervous system (049)\\\\(049.8) Other specified non-arthropod-borne viral diseases of central nervous system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Other non-arthropod-borne viral diseases of central nervous system (049)\\" + }, + { + "displayName": "(049.9) Unspecified non-arthropod-borne viral diseases of central nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Other non-arthropod-borne viral diseases of central nervous system (049)\\(049.9) Unspecified non-arthropod-borne viral diseases of central nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\\\Other non-arthropod-borne viral diseases of central nervous system (049)\\\\(049.9) Unspecified non-arthropod-borne viral diseases of central nervous system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Other non-arthropod-borne viral diseases of central nervous system (049)\\" + }, + { + "displayName": "Slow virus infections and prion diseases of central nervous system (046)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\\\Slow virus infections and prion diseases of central nervous system (046)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\" + }, + { + "displayName": "(046.0) Kuru", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\(046.0) Kuru\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\\\Slow virus infections and prion diseases of central nervous system (046)\\\\(046.0) Kuru\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\" + }, + { + "displayName": "(046.2) Subacute sclerosing panencephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\(046.2) Subacute sclerosing panencephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\" + }, + { + "displayName": "(046.3) Progressive multifocal leukoencephalopathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\(046.3) Progressive multifocal leukoencephalopathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\" + }, + { + "displayName": "(046.8) Other specified slow virus infection of central nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\(046.8) Other specified slow virus infection of central nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\" + }, + { + "displayName": "(046.9) Unspecified slow virus infection of central nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\(046.9) Unspecified slow virus infection of central nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\" + }, + { + "displayName": "Jakob-Creutzfeldt disease (046.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\Jakob-Creutzfeldt disease (046.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\" + }, + { + "displayName": "(046.11) Variant Creutzfeldt-Jakob disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\Jakob-Creutzfeldt disease (046.1)\\(046.11) Variant Creutzfeldt-Jakob disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\Jakob-Creutzfeldt disease (046.1)\\" + }, + { + "displayName": "(046.19) Other and unspecified Creutzfeldt-Jakob disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\Jakob-Creutzfeldt disease (046.1)\\(046.19) Other and unspecified Creutzfeldt-Jakob disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Poliomyelitis and other non-arthropod-borne viral diseases and prion diseases of central nervous system (045-049.99)\\Slow virus infections and prion diseases of central nervous system (046)\\Jakob-Creutzfeldt disease (046.1)\\" + }, + { + "displayName": "Rickettsioses and other arthropod-borne diseases (080-088.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(080) Louse-borne (epidemic) typhus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\(080) Louse-borne (epidemic) typhus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\" + }, + { + "displayName": "Leishmaniasis (085)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Leishmaniasis (085)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\" + }, + { + "displayName": "(085.0) Visceral [kala-azar] leishmaniasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\(085.0) Visceral [kala-azar] leishmaniasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Leishmaniasis (085)\\\\(085.0) Visceral [kala-azar] leishmaniasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\" + }, + { + "displayName": "(085.1) Cutaneous leishmaniasis, urban", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\(085.1) Cutaneous leishmaniasis, urban\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Leishmaniasis (085)\\\\(085.1) Cutaneous leishmaniasis, urban\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\" + }, + { + "displayName": "(085.2) Cutaneous leishmaniasis, Asian desert", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\(085.2) Cutaneous leishmaniasis, Asian desert\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Leishmaniasis (085)\\\\(085.2) Cutaneous leishmaniasis, Asian desert\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\" + }, + { + "displayName": "(085.3) Cutaneous leishmaniasis, Ethiopian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\(085.3) Cutaneous leishmaniasis, Ethiopian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Leishmaniasis (085)\\\\(085.3) Cutaneous leishmaniasis, Ethiopian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\" + }, + { + "displayName": "(085.4) Cutaneous leishmaniasis, American", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\(085.4) Cutaneous leishmaniasis, American\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\" + }, + { + "displayName": "(085.5) Mucocutaneous leishmaniasis, (American)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\(085.5) Mucocutaneous leishmaniasis, (American)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\" + }, + { + "displayName": "(085.9) Leishmaniasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\(085.9) Leishmaniasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Leishmaniasis (085)\\" + }, + { + "displayName": "Malaria (084)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\" + }, + { + "displayName": "(084.0) Falciparum malaria [malignant tertian]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\(084.0) Falciparum malaria [malignant tertian]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\" + }, + { + "displayName": "(084.1) Vivax malaria [benign tertian]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\(084.1) Vivax malaria [benign tertian]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\" + }, + { + "displayName": "(084.2) Quartan malaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\(084.2) Quartan malaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\" + }, + { + "displayName": "(084.3) Ovale malaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\(084.3) Ovale malaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Malaria (084)\\\\(084.3) Ovale malaria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\" + }, + { + "displayName": "(084.4) Other malaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\(084.4) Other malaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Malaria (084)\\\\(084.4) Other malaria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\" + }, + { + "displayName": "(084.5) Mixed malaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\(084.5) Mixed malaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Malaria (084)\\\\(084.5) Mixed malaria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\" + }, + { + "displayName": "(084.6) Malaria, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\(084.6) Malaria, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Malaria (084)\\\\(084.6) Malaria, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\" + }, + { + "displayName": "(084.7) Induced malaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\(084.7) Induced malaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Malaria (084)\\\\(084.7) Induced malaria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\" + }, + { + "displayName": "(084.8) Blackwater fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\(084.8) Blackwater fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Malaria (084)\\\\(084.8) Blackwater fever\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\" + }, + { + "displayName": "(084.9) Other pernicious complications of malaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\(084.9) Other pernicious complications of malaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Malaria (084)\\\\(084.9) Other pernicious complications of malaria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Malaria (084)\\" + }, + { + "displayName": "Other arthropod-borne diseases (088)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Other arthropod-borne diseases (088)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\" + }, + { + "displayName": "(088.0) Bartonellosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\(088.0) Bartonellosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Other arthropod-borne diseases (088)\\\\(088.0) Bartonellosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\" + }, + { + "displayName": "(088.9) Arthropod-borne disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\(088.9) Arthropod-borne disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\" + }, + { + "displayName": "Other specified arthropod-borne diseases (088.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\Other specified arthropod-borne diseases (088.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\" + }, + { + "displayName": "(088.81) Lyme Disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\Other specified arthropod-borne diseases (088.8)\\(088.81) Lyme Disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\Other specified arthropod-borne diseases (088.8)\\" + }, + { + "displayName": "(088.82) Babesiosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\Other specified arthropod-borne diseases (088.8)\\(088.82) Babesiosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\Other specified arthropod-borne diseases (088.8)\\" + }, + { + "displayName": "(088.89) Other specified arthropod-borne diseases, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\Other specified arthropod-borne diseases (088.8)\\(088.89) Other specified arthropod-borne diseases, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other arthropod-borne diseases (088)\\Other specified arthropod-borne diseases (088.8)\\" + }, + { + "displayName": "Other rickettsioses (083)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other rickettsioses (083)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\" + }, + { + "displayName": "(083.0) Q fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other rickettsioses (083)\\(083.0) Q fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other rickettsioses (083)\\" + }, + { + "displayName": "(083.1) Trench fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other rickettsioses (083)\\(083.1) Trench fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Other rickettsioses (083)\\\\(083.1) Trench fever\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other rickettsioses (083)\\" + }, + { + "displayName": "(083.2) Rickettsialpox", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other rickettsioses (083)\\(083.2) Rickettsialpox\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Other rickettsioses (083)\\\\(083.2) Rickettsialpox\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other rickettsioses (083)\\" + }, + { + "displayName": "(083.8) Other specified rickettsioses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other rickettsioses (083)\\(083.8) Other specified rickettsioses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Other rickettsioses (083)\\\\(083.8) Other specified rickettsioses\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other rickettsioses (083)\\" + }, + { + "displayName": "(083.9) Rickettsiosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other rickettsioses (083)\\(083.9) Rickettsiosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Other rickettsioses (083)\\\\(083.9) Rickettsiosis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other rickettsioses (083)\\" + }, + { + "displayName": "Other typhus (081)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other typhus (081)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Other typhus (081)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\" + }, + { + "displayName": "(081.0) Murine (endemic) typhus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other typhus (081)\\(081.0) Murine (endemic) typhus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Other typhus (081)\\\\(081.0) Murine (endemic) typhus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other typhus (081)\\" + }, + { + "displayName": "(081.1) Brill's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other typhus (081)\\(081.1) Brill's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Other typhus (081)\\\\(081.1) Brill's disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other typhus (081)\\" + }, + { + "displayName": "(081.2) Scrub typhus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other typhus (081)\\(081.2) Scrub typhus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other typhus (081)\\" + }, + { + "displayName": "(081.9) Typhus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other typhus (081)\\(081.9) Typhus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Other typhus (081)\\\\(081.9) Typhus, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Other typhus (081)\\" + }, + { + "displayName": "Relapsing fever (087)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Relapsing fever (087)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Relapsing fever (087)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\" + }, + { + "displayName": "(087.0) Relapsing fever, louse-borne", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Relapsing fever (087)\\(087.0) Relapsing fever, louse-borne\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Relapsing fever (087)\\" + }, + { + "displayName": "(087.1) Relapsing fever, tick-borne", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Relapsing fever (087)\\(087.1) Relapsing fever, tick-borne\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Relapsing fever (087)\\" + }, + { + "displayName": "(087.9) Relapsing fever, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Relapsing fever (087)\\(087.9) Relapsing fever, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Relapsing fever (087)\\" + }, + { + "displayName": "Tick-borne rickettsioses (082)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\" + }, + { + "displayName": "(082.0) Spotted fevers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\(082.0) Spotted fevers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\" + }, + { + "displayName": "(082.1) Boutonneuse fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\(082.1) Boutonneuse fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\" + }, + { + "displayName": "(082.2) North Asian tick fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\(082.2) North Asian tick fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\" + }, + { + "displayName": "(082.3) Queensland tick typhus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\(082.3) Queensland tick typhus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\" + }, + { + "displayName": "(082.8) Other specified tick-borne rickettsioses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\(082.8) Other specified tick-borne rickettsioses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\" + }, + { + "displayName": "(082.9) Tick-borne rickettsiosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\(082.9) Tick-borne rickettsiosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\" + }, + { + "displayName": "Ehrlichiosis (082.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\Ehrlichiosis (082.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\" + }, + { + "displayName": "(082.40) Ehrlichiosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\Ehrlichiosis (082.4)\\(082.40) Ehrlichiosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\Ehrlichiosis (082.4)\\" + }, + { + "displayName": "(082.41) Ehrlichiosis chafeensis [E. chafeensis]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\Ehrlichiosis (082.4)\\(082.41) Ehrlichiosis chafeensis [E. chafeensis]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\Ehrlichiosis (082.4)\\" + }, + { + "displayName": "(082.49) Other ehrlichiosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\Ehrlichiosis (082.4)\\(082.49) Other ehrlichiosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Tick-borne rickettsioses (082)\\Ehrlichiosis (082.4)\\" + }, + { + "displayName": "Trypanosomiasis (086)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\" + }, + { + "displayName": "(086.0) Chagas' disease with heart involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\(086.0) Chagas' disease with heart involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\" + }, + { + "displayName": "(086.1) Chagas' disease with other organ involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\(086.1) Chagas' disease with other organ involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Trypanosomiasis (086)\\\\(086.1) Chagas' disease with other organ involvement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\" + }, + { + "displayName": "(086.2) Chagas' disease without mention of organ involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\(086.2) Chagas' disease without mention of organ involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Trypanosomiasis (086)\\\\(086.2) Chagas' disease without mention of organ involvement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\" + }, + { + "displayName": "(086.3) Gambian trypanosomiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\(086.3) Gambian trypanosomiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Trypanosomiasis (086)\\\\(086.3) Gambian trypanosomiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\" + }, + { + "displayName": "(086.4) Rhodesian trypanosomiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\(086.4) Rhodesian trypanosomiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\" + }, + { + "displayName": "(086.5) African trypanosomiasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\(086.5) African trypanosomiasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\\\Trypanosomiasis (086)\\\\(086.5) African trypanosomiasis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\" + }, + { + "displayName": "(086.9) Trypanosomiasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\(086.9) Trypanosomiasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Rickettsioses and other arthropod-borne diseases (080-088.99)\\Trypanosomiasis (086)\\" + }, + { + "displayName": "Syphilis and other venereal diseases (090-099.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(096) Late syphilis, latent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\(096) Late syphilis, latent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\" + }, + { + "displayName": "Cardiovascular syphilis (093)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\" + }, + { + "displayName": "(093.0) Aneurysm of aorta, specified as syphilitic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\(093.0) Aneurysm of aorta, specified as syphilitic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Cardiovascular syphilis (093)\\\\(093.0) Aneurysm of aorta, specified as syphilitic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\" + }, + { + "displayName": "(093.1) Syphilitic aortitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\(093.1) Syphilitic aortitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Cardiovascular syphilis (093)\\\\(093.1) Syphilitic aortitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\" + }, + { + "displayName": "(093.9) Cardiovascular syphilis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\(093.9) Cardiovascular syphilis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Cardiovascular syphilis (093)\\\\(093.9) Cardiovascular syphilis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\" + }, + { + "displayName": "Other specified cardiovascular syphilis (093.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Other specified cardiovascular syphilis (093.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\" + }, + { + "displayName": "(093.81) Syphilitic pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Other specified cardiovascular syphilis (093.8)\\(093.81) Syphilitic pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Other specified cardiovascular syphilis (093.8)\\" + }, + { + "displayName": "(093.82) Syphilitic myocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Other specified cardiovascular syphilis (093.8)\\(093.82) Syphilitic myocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Other specified cardiovascular syphilis (093.8)\\" + }, + { + "displayName": "(093.89) Other specified cardiovascular syphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Other specified cardiovascular syphilis (093.8)\\(093.89) Other specified cardiovascular syphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Other specified cardiovascular syphilis (093.8)\\" + }, + { + "displayName": "Syphilitic endocarditis (093.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Syphilitic endocarditis (093.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\" + }, + { + "displayName": "(093.20) Syphilitic endocarditis of valve, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Syphilitic endocarditis (093.2)\\(093.20) Syphilitic endocarditis of valve, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Syphilitic endocarditis (093.2)\\" + }, + { + "displayName": "(093.21) Syphilitic endocarditis of mitral valve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Syphilitic endocarditis (093.2)\\(093.21) Syphilitic endocarditis of mitral valve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Syphilitic endocarditis (093.2)\\" + }, + { + "displayName": "(093.22) Syphilitic endocarditis of aortic valve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Syphilitic endocarditis (093.2)\\(093.22) Syphilitic endocarditis of aortic valve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Syphilitic endocarditis (093.2)\\" + }, + { + "displayName": "(093.23) Syphilitic endocarditis of tricuspid valve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Syphilitic endocarditis (093.2)\\(093.23) Syphilitic endocarditis of tricuspid valve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Syphilitic endocarditis (093.2)\\" + }, + { + "displayName": "(093.24) Syphilitic endocarditis of pulmonary valve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Syphilitic endocarditis (093.2)\\(093.24) Syphilitic endocarditis of pulmonary valve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Cardiovascular syphilis (093)\\Syphilitic endocarditis (093.2)\\" + }, + { + "displayName": "Congenital syphilis (090)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\" + }, + { + "displayName": "(090.0) Early congenital syphilis, symptomatic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\(090.0) Early congenital syphilis, symptomatic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\" + }, + { + "displayName": "(090.1) Early congenital syphilis, latent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\(090.1) Early congenital syphilis, latent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\" + }, + { + "displayName": "(090.2) Early congenital syphilis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\(090.2) Early congenital syphilis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\" + }, + { + "displayName": "(090.3) Syphilitic interstitial keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\(090.3) Syphilitic interstitial keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\" + }, + { + "displayName": "(090.5) Other late congenital syphilis, symptomatic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\(090.5) Other late congenital syphilis, symptomatic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\" + }, + { + "displayName": "(090.6) Late congenital syphilis, latent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\(090.6) Late congenital syphilis, latent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\" + }, + { + "displayName": "(090.7) Late congenital syphilis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\(090.7) Late congenital syphilis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\" + }, + { + "displayName": "(090.9) Congenital syphilis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\(090.9) Congenital syphilis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\" + }, + { + "displayName": "Juvenile neurosyphilis (090.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\Juvenile neurosyphilis (090.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\" + }, + { + "displayName": "(090.40) Juvenile neurosyphilis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\Juvenile neurosyphilis (090.4)\\(090.40) Juvenile neurosyphilis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\Juvenile neurosyphilis (090.4)\\" + }, + { + "displayName": "(090.41) Congenital syphilitic encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\Juvenile neurosyphilis (090.4)\\(090.41) Congenital syphilitic encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Congenital syphilis (090)\\\\Juvenile neurosyphilis (090.4)\\\\(090.41) Congenital syphilitic encephalitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\Juvenile neurosyphilis (090.4)\\" + }, + { + "displayName": "(090.42) Congenital syphilitic meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\Juvenile neurosyphilis (090.4)\\(090.42) Congenital syphilitic meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Congenital syphilis (090)\\\\Juvenile neurosyphilis (090.4)\\\\(090.42) Congenital syphilitic meningitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\Juvenile neurosyphilis (090.4)\\" + }, + { + "displayName": "(090.49) Other juvenile neurosyphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\Juvenile neurosyphilis (090.4)\\(090.49) Other juvenile neurosyphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Congenital syphilis (090)\\\\Juvenile neurosyphilis (090.4)\\\\(090.49) Other juvenile neurosyphilis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Congenital syphilis (090)\\Juvenile neurosyphilis (090.4)\\" + }, + { + "displayName": "Early syphilis, latent (092)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, latent (092)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\" + }, + { + "displayName": "(092.0) Early syphilis, latent, serological relapse after treatment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, latent (092)\\(092.0) Early syphilis, latent, serological relapse after treatment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, latent (092)\\" + }, + { + "displayName": "(092.9) Early syphilis, latent, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, latent (092)\\(092.9) Early syphilis, latent, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, latent (092)\\" + }, + { + "displayName": "Early syphilis, symptomatic (091)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\" + }, + { + "displayName": "(091.0) Genital syphilis (primary)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\(091.0) Genital syphilis (primary)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\" + }, + { + "displayName": "(091.1) Primary anal syphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\(091.1) Primary anal syphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\" + }, + { + "displayName": "(091.2) Other primary syphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\(091.2) Other primary syphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\" + }, + { + "displayName": "(091.3) Secondary syphilis of skin or mucous membranes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\(091.3) Secondary syphilis of skin or mucous membranes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Early syphilis, symptomatic (091)\\\\(091.3) Secondary syphilis of skin or mucous membranes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\" + }, + { + "displayName": "(091.4) Adenopathy due to secondary syphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\(091.4) Adenopathy due to secondary syphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Early syphilis, symptomatic (091)\\\\(091.4) Adenopathy due to secondary syphilis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\" + }, + { + "displayName": "(091.7) Secondary syphilis, relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\(091.7) Secondary syphilis, relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Early syphilis, symptomatic (091)\\\\(091.7) Secondary syphilis, relapse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\" + }, + { + "displayName": "(091.9) Unspecified secondary syphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\(091.9) Unspecified secondary syphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Early syphilis, symptomatic (091)\\\\(091.9) Unspecified secondary syphilis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\" + }, + { + "displayName": "Other forms of secondary syphilis (091.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Other forms of secondary syphilis (091.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\" + }, + { + "displayName": "(091.81) Acute syphilitic meningitis (secondary)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Other forms of secondary syphilis (091.8)\\(091.81) Acute syphilitic meningitis (secondary)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Other forms of secondary syphilis (091.8)\\" + }, + { + "displayName": "(091.82) Syphilitic alopecia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Other forms of secondary syphilis (091.8)\\(091.82) Syphilitic alopecia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Other forms of secondary syphilis (091.8)\\" + }, + { + "displayName": "(091.89) Other forms of secondary syphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Other forms of secondary syphilis (091.8)\\(091.89) Other forms of secondary syphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Other forms of secondary syphilis (091.8)\\" + }, + { + "displayName": "Secondary syphilis of viscera and bone (091.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Secondary syphilis of viscera and bone (091.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\" + }, + { + "displayName": "(091.61) Secondary syphilitic periostitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Secondary syphilis of viscera and bone (091.6)\\(091.61) Secondary syphilitic periostitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Secondary syphilis of viscera and bone (091.6)\\" + }, + { + "displayName": "(091.62) Secondary syphilitic hepatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Secondary syphilis of viscera and bone (091.6)\\(091.62) Secondary syphilitic hepatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Early syphilis, symptomatic (091)\\\\Secondary syphilis of viscera and bone (091.6)\\\\(091.62) Secondary syphilitic hepatitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Secondary syphilis of viscera and bone (091.6)\\" + }, + { + "displayName": "(091.69) Secondary syphilis of other viscera", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Secondary syphilis of viscera and bone (091.6)\\(091.69) Secondary syphilis of other viscera\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Secondary syphilis of viscera and bone (091.6)\\" + }, + { + "displayName": "Uveitis due to secondary syphilis (091.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Uveitis due to secondary syphilis (091.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Early syphilis, symptomatic (091)\\\\Uveitis due to secondary syphilis (091.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\" + }, + { + "displayName": "(091.50) Syphilitic uveitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Uveitis due to secondary syphilis (091.5)\\(091.50) Syphilitic uveitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Early syphilis, symptomatic (091)\\\\Uveitis due to secondary syphilis (091.5)\\\\(091.50) Syphilitic uveitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Uveitis due to secondary syphilis (091.5)\\" + }, + { + "displayName": "(091.51) Syphilitic chorioretinitis (secondary)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Uveitis due to secondary syphilis (091.5)\\(091.51) Syphilitic chorioretinitis (secondary)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Uveitis due to secondary syphilis (091.5)\\" + }, + { + "displayName": "(091.52) Syphilitic iridocyclitis (secondary)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Uveitis due to secondary syphilis (091.5)\\(091.52) Syphilitic iridocyclitis (secondary)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Early syphilis, symptomatic (091)\\Uveitis due to secondary syphilis (091.5)\\" + }, + { + "displayName": "Gonococcal infections (098)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\" + }, + { + "displayName": "(098.0) Gonococcal infection (acute) of lower genitourinary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\(098.0) Gonococcal infection (acute) of lower genitourinary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\" + }, + { + "displayName": "(098.2) Gonococcal infection, chronic, of lower genitourinary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\(098.2) Gonococcal infection, chronic, of lower genitourinary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\" + }, + { + "displayName": "(098.6) Gonococcal infection of pharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\(098.6) Gonococcal infection of pharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\" + }, + { + "displayName": "(098.7) Gonococcal infection of anus and rectum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\(098.7) Gonococcal infection of anus and rectum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\" + }, + { + "displayName": "Gonococcal infection (acute) of upper genitourinary tract (098.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\" + }, + { + "displayName": "(098.10) Gonococcal infection (acute) of upper genitourinary tract, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\(098.10) Gonococcal infection (acute) of upper genitourinary tract, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\" + }, + { + "displayName": "(098.11) Gonococcal cystitis (acute)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\(098.11) Gonococcal cystitis (acute)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\" + }, + { + "displayName": "(098.12) Gonococcal prostatitis (acute)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\(098.12) Gonococcal prostatitis (acute)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\\\(098.12) Gonococcal prostatitis (acute)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\" + }, + { + "displayName": "(098.13) Gonococcal epididymo-orchitis (acute)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\(098.13) Gonococcal epididymo-orchitis (acute)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\\\(098.13) Gonococcal epididymo-orchitis (acute)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\" + }, + { + "displayName": "(098.14) Gonococcal seminal vesiculitis (acute)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\(098.14) Gonococcal seminal vesiculitis (acute)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\\\(098.14) Gonococcal seminal vesiculitis (acute)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\" + }, + { + "displayName": "(098.15) Gonococcal cervicitis (acute)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\(098.15) Gonococcal cervicitis (acute)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\\\(098.15) Gonococcal cervicitis (acute)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\" + }, + { + "displayName": "(098.16) Gonococcal endometritis (acute)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\(098.16) Gonococcal endometritis (acute)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\" + }, + { + "displayName": "(098.17) Gonococcal salpingitis, specified as acute", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\(098.17) Gonococcal salpingitis, specified as acute\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\\\(098.17) Gonococcal salpingitis, specified as acute\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\" + }, + { + "displayName": "(098.19) Other gonococcal infection (acute) of upper genitourinary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\(098.19) Other gonococcal infection (acute) of upper genitourinary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\\\(098.19) Other gonococcal infection (acute) of upper genitourinary tract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection (acute) of upper genitourinary tract (098.1)\\" + }, + { + "displayName": "Gonococcal infection of eye (098.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of eye (098.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\" + }, + { + "displayName": "(098.40) Gonococcal conjunctivitis (neonatorum)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of eye (098.4)\\(098.40) Gonococcal conjunctivitis (neonatorum)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of eye (098.4)\\" + }, + { + "displayName": "(098.41) Gonococcal iridocyclitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of eye (098.4)\\(098.41) Gonococcal iridocyclitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of eye (098.4)\\" + }, + { + "displayName": "(098.42) Gonococcal endophthalmia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of eye (098.4)\\(098.42) Gonococcal endophthalmia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of eye (098.4)\\" + }, + { + "displayName": "(098.43) Gonococcal keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of eye (098.4)\\(098.43) Gonococcal keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of eye (098.4)\\" + }, + { + "displayName": "(098.49) Other gonococcal infection of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of eye (098.4)\\(098.49) Other gonococcal infection of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of eye (098.4)\\" + }, + { + "displayName": "Gonococcal infection of joint (098.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of joint (098.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\" + }, + { + "displayName": "(098.50) Gonococcal arthritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of joint (098.5)\\(098.50) Gonococcal arthritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of joint (098.5)\\" + }, + { + "displayName": "(098.51) Gonococcal synovitis and tenosynovitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of joint (098.5)\\(098.51) Gonococcal synovitis and tenosynovitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of joint (098.5)\\" + }, + { + "displayName": "(098.52) Gonococcal bursitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of joint (098.5)\\(098.52) Gonococcal bursitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of joint (098.5)\\" + }, + { + "displayName": "(098.53) Gonococcal spondylitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of joint (098.5)\\(098.53) Gonococcal spondylitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of joint (098.5)\\" + }, + { + "displayName": "(098.59) Other gonococcal infection of joint", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of joint (098.5)\\(098.59) Other gonococcal infection of joint\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of joint (098.5)\\" + }, + { + "displayName": "Gonococcal infection of other specified sites (098.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection of other specified sites (098.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\" + }, + { + "displayName": "(098.81) Gonococcal keratosis (blennorrhagica)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\(098.81) Gonococcal keratosis (blennorrhagica)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\" + }, + { + "displayName": "(098.82) Gonococcal meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\(098.82) Gonococcal meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection of other specified sites (098.8)\\\\(098.82) Gonococcal meningitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\" + }, + { + "displayName": "(098.83) Gonococcal pericarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\(098.83) Gonococcal pericarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection of other specified sites (098.8)\\\\(098.83) Gonococcal pericarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\" + }, + { + "displayName": "(098.84) Gonococcal endocarditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\(098.84) Gonococcal endocarditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection of other specified sites (098.8)\\\\(098.84) Gonococcal endocarditis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\" + }, + { + "displayName": "(098.85) Other gonococcal heart disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\(098.85) Other gonococcal heart disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\" + }, + { + "displayName": "(098.86) Gonococcal peritonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\(098.86) Gonococcal peritonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection of other specified sites (098.8)\\\\(098.86) Gonococcal peritonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\" + }, + { + "displayName": "(098.89) Gonococcal infection of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\(098.89) Gonococcal infection of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection of other specified sites (098.8)\\\\(098.89) Gonococcal infection of other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection of other specified sites (098.8)\\" + }, + { + "displayName": "Gonococcal infection, chronic, of upper genitourinary tract (098.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Gonococcal infections (098)\\\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\" + }, + { + "displayName": "(098.30) Chronic gonococcal infection of upper genitourinary tract, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\(098.30) Chronic gonococcal infection of upper genitourinary tract, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\" + }, + { + "displayName": "(098.31) Gonococcal cystitis, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\(098.31) Gonococcal cystitis, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\" + }, + { + "displayName": "(098.32) Gonococcal prostatitis, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\(098.32) Gonococcal prostatitis, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\" + }, + { + "displayName": "(098.33) Gonococcal epididymo-orchitis, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\(098.33) Gonococcal epididymo-orchitis, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\" + }, + { + "displayName": "(098.34) Gonococcal seminal vesiculitis, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\(098.34) Gonococcal seminal vesiculitis, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\" + }, + { + "displayName": "(098.35) Gonococcal cervicitis, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\(098.35) Gonococcal cervicitis, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\" + }, + { + "displayName": "(098.36) Gonococcal endometritis, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\(098.36) Gonococcal endometritis, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\" + }, + { + "displayName": "(098.37) Gonococcal salpingitis (chronic)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\(098.37) Gonococcal salpingitis (chronic)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\" + }, + { + "displayName": "(098.39) Other chronic gonococcal infection of upper genitourinary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\(098.39) Other chronic gonococcal infection of upper genitourinary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Gonococcal infections (098)\\Gonococcal infection, chronic, of upper genitourinary tract (098.3)\\" + }, + { + "displayName": "Neurosyphilis (094)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\" + }, + { + "displayName": "(094.0) Tabes dorsalis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\(094.0) Tabes dorsalis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\" + }, + { + "displayName": "(094.1) General paresis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\(094.1) General paresis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\" + }, + { + "displayName": "(094.2) Syphilitic meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\(094.2) Syphilitic meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\" + }, + { + "displayName": "(094.3) Asymptomatic neurosyphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\(094.3) Asymptomatic neurosyphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\" + }, + { + "displayName": "(094.9) Neurosyphilis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\(094.9) Neurosyphilis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\" + }, + { + "displayName": "Other specified neurosyphilis (094.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\" + }, + { + "displayName": "(094.81) Syphilitic encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\(094.81) Syphilitic encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\" + }, + { + "displayName": "(094.82) Syphilitic parkinsonism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\(094.82) Syphilitic parkinsonism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\" + }, + { + "displayName": "(094.83) Syphilitic disseminated retinochoroiditis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\(094.83) Syphilitic disseminated retinochoroiditis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\" + }, + { + "displayName": "(094.84) Syphilitic optic atrophy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\(094.84) Syphilitic optic atrophy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\" + }, + { + "displayName": "(094.85) Syphilitic retrobulbar neuritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\(094.85) Syphilitic retrobulbar neuritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\" + }, + { + "displayName": "(094.86) Syphilitic acoustic neuritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\(094.86) Syphilitic acoustic neuritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\" + }, + { + "displayName": "(094.87) Syphilitic ruptured cerebral aneurysm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\(094.87) Syphilitic ruptured cerebral aneurysm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\" + }, + { + "displayName": "(094.89) Other specified neurosyphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\(094.89) Other specified neurosyphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Neurosyphilis (094)\\Other specified neurosyphilis (094.8)\\" + }, + { + "displayName": "Other and unspecified syphilis (097)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other and unspecified syphilis (097)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\" + }, + { + "displayName": "(097.0) Late syphilis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other and unspecified syphilis (097)\\(097.0) Late syphilis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other and unspecified syphilis (097)\\" + }, + { + "displayName": "(097.1) Latent syphilis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other and unspecified syphilis (097)\\(097.1) Latent syphilis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other and unspecified syphilis (097)\\" + }, + { + "displayName": "(097.9) Syphilis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other and unspecified syphilis (097)\\(097.9) Syphilis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other and unspecified syphilis (097)\\" + }, + { + "displayName": "Other forms of late syphilis, with symptoms (095)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\" + }, + { + "displayName": "(095.0) Syphilitic episcleritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\(095.0) Syphilitic episcleritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\" + }, + { + "displayName": "(095.1) Syphilis of lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\(095.1) Syphilis of lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Other forms of late syphilis, with symptoms (095)\\\\(095.1) Syphilis of lung\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\" + }, + { + "displayName": "(095.2) Syphilitic peritonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\(095.2) Syphilitic peritonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Other forms of late syphilis, with symptoms (095)\\\\(095.2) Syphilitic peritonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\" + }, + { + "displayName": "(095.3) Syphilis of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\(095.3) Syphilis of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\" + }, + { + "displayName": "(095.4) Syphilis of kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\(095.4) Syphilis of kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Other forms of late syphilis, with symptoms (095)\\\\(095.4) Syphilis of kidney\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\" + }, + { + "displayName": "(095.5) Syphilis of bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\(095.5) Syphilis of bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Other forms of late syphilis, with symptoms (095)\\\\(095.5) Syphilis of bone\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\" + }, + { + "displayName": "(095.6) Syphilis of muscle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\(095.6) Syphilis of muscle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\" + }, + { + "displayName": "(095.7) Syphilis of synovium, tendon, and bursa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\(095.7) Syphilis of synovium, tendon, and bursa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Other forms of late syphilis, with symptoms (095)\\\\(095.7) Syphilis of synovium, tendon, and bursa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\" + }, + { + "displayName": "(095.8) Other specified forms of late symptomatic syphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\(095.8) Other specified forms of late symptomatic syphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\" + }, + { + "displayName": "(095.9) Late symptomatic syphilis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\(095.9) Late symptomatic syphilis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other forms of late syphilis, with symptoms (095)\\" + }, + { + "displayName": "Other venereal diseases (099)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\" + }, + { + "displayName": "(099.0) Chancroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\(099.0) Chancroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\" + }, + { + "displayName": "(099.1) Lymphogranuloma venereum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\(099.1) Lymphogranuloma venereum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Syphilis and other venereal diseases (090-099.99)\\\\Other venereal diseases (099)\\\\(099.1) Lymphogranuloma venereum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\" + }, + { + "displayName": "(099.2) Granuloma inguinale", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\(099.2) Granuloma inguinale\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\" + }, + { + "displayName": "(099.3) Reiter's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\(099.3) Reiter's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\" + }, + { + "displayName": "(099.8) Other specified venereal diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\(099.8) Other specified venereal diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\" + }, + { + "displayName": "(099.9) Venereal disease, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\(099.9) Venereal disease, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\" + }, + { + "displayName": "Other nongonococcal urethritis [NGU] (099.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other nongonococcal urethritis [NGU] (099.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\" + }, + { + "displayName": "(099.40) Other nongonococcal urethritis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other nongonococcal urethritis [NGU] (099.4)\\(099.40) Other nongonococcal urethritis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other nongonococcal urethritis [NGU] (099.4)\\" + }, + { + "displayName": "(099.41) Other nongonococcal urethritis, chlamydia trachomatis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other nongonococcal urethritis [NGU] (099.4)\\(099.41) Other nongonococcal urethritis, chlamydia trachomatis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other nongonococcal urethritis [NGU] (099.4)\\" + }, + { + "displayName": "(099.49) Other nongonococcal urethritis, other specified organism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other nongonococcal urethritis [NGU] (099.4)\\(099.49) Other nongonococcal urethritis, other specified organism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other nongonococcal urethritis [NGU] (099.4)\\" + }, + { + "displayName": "Other venereal diseases due to Chlamydia trachomatis (099.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\" + }, + { + "displayName": "(099.50) Other venereal diseases due to chlamydia trachomatis, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\(099.50) Other venereal diseases due to chlamydia trachomatis, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\" + }, + { + "displayName": "(099.51) Other venereal diseases due to chlamydia trachomatis, pharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\(099.51) Other venereal diseases due to chlamydia trachomatis, pharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\" + }, + { + "displayName": "(099.52) Other venereal diseases due to chlamydia trachomatis, anus and rectum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\(099.52) Other venereal diseases due to chlamydia trachomatis, anus and rectum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\" + }, + { + "displayName": "(099.53) Other venereal diseases due to chlamydia trachomatis, lower genitourinary sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\(099.53) Other venereal diseases due to chlamydia trachomatis, lower genitourinary sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\" + }, + { + "displayName": "(099.54) Other venereal diseases due to chlamydia trachomatis, other genitourinary sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\(099.54) Other venereal diseases due to chlamydia trachomatis, other genitourinary sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\" + }, + { + "displayName": "(099.55) Other venereal diseases due to chlamydia trachomatis, unspecified genitourinary site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\(099.55) Other venereal diseases due to chlamydia trachomatis, unspecified genitourinary site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\" + }, + { + "displayName": "(099.56) Other venereal diseases due to chlamydia trachomatis, peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\(099.56) Other venereal diseases due to chlamydia trachomatis, peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\" + }, + { + "displayName": "(099.59) Other venereal diseases due to chlamydia trachomatis, other specified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\(099.59) Other venereal diseases due to chlamydia trachomatis, other specified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Syphilis and other venereal diseases (090-099.99)\\Other venereal diseases (099)\\Other venereal diseases due to Chlamydia trachomatis (099.5)\\" + }, + { + "displayName": "Tuberculosis (010-018.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "Miliary tuberculosis (018)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\" + }, + { + "displayName": "Acute miliary tuberculosis (018.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\" + }, + { + "displayName": "(018.00) Acute miliary tuberculosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\(018.00) Acute miliary tuberculosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\" + }, + { + "displayName": "(018.01) Acute miliary tuberculosis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\(018.01) Acute miliary tuberculosis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\" + }, + { + "displayName": "(018.02) Acute miliary tuberculosis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\(018.02) Acute miliary tuberculosis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\" + }, + { + "displayName": "(018.03) Acute miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\(018.03) Acute miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\" + }, + { + "displayName": "(018.04) Acute miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\(018.04) Acute miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Miliary tuberculosis (018)\\\\Acute miliary tuberculosis (018.0)\\\\(018.04) Acute miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\" + }, + { + "displayName": "(018.05) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\(018.05) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Miliary tuberculosis (018)\\\\Acute miliary tuberculosis (018.0)\\\\(018.05) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\" + }, + { + "displayName": "(018.06) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\(018.06) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Miliary tuberculosis (018)\\\\Acute miliary tuberculosis (018.0)\\\\(018.06) Acute miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Acute miliary tuberculosis (018.0)\\" + }, + { + "displayName": "Other specified miliary tuberculosis (018.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Miliary tuberculosis (018)\\\\Other specified miliary tuberculosis (018.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\" + }, + { + "displayName": "(018.80) Other specified miliary tuberculosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\(018.80) Other specified miliary tuberculosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Miliary tuberculosis (018)\\\\Other specified miliary tuberculosis (018.8)\\\\(018.80) Other specified miliary tuberculosis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\" + }, + { + "displayName": "(018.81) Other specified miliary tuberculosis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\(018.81) Other specified miliary tuberculosis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\" + }, + { + "displayName": "(018.82) Other specified miliary tuberculosis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\(018.82) Other specified miliary tuberculosis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\" + }, + { + "displayName": "(018.83) Other specified miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\(018.83) Other specified miliary tuberculosis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\" + }, + { + "displayName": "(018.84) Other specified miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\(018.84) Other specified miliary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\" + }, + { + "displayName": "(018.85) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\(018.85) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\" + }, + { + "displayName": "(018.86) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\(018.86) Other specified miliary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Other specified miliary tuberculosis (018.8)\\" + }, + { + "displayName": "Unspecified miliary tuberculosis (018.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\" + }, + { + "displayName": "(018.90) Miliary tuberculosis, unspecified, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\(018.90) Miliary tuberculosis, unspecified, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\" + }, + { + "displayName": "(018.91) Miliary tuberculosis, unspecified, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\(018.91) Miliary tuberculosis, unspecified, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\" + }, + { + "displayName": "(018.92) Miliary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\(018.92) Miliary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\" + }, + { + "displayName": "(018.93) Miliary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\(018.93) Miliary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\" + }, + { + "displayName": "(018.94) Miliary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\(018.94) Miliary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\" + }, + { + "displayName": "(018.95) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\(018.95) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\" + }, + { + "displayName": "(018.96) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\(018.96) Miliary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Miliary tuberculosis (018)\\Unspecified miliary tuberculosis (018.9)\\" + }, + { + "displayName": "Other respiratory tuberculosis (012)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\" + }, + { + "displayName": "Isolated tracheal or bronchial tuberculosis (012.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\" + }, + { + "displayName": "(012.20) Isolated tracheal or bronchial tuberculosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\(012.20) Isolated tracheal or bronchial tuberculosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\" + }, + { + "displayName": "(012.21) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\(012.21) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\" + }, + { + "displayName": "(012.22) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\(012.22) Isolated tracheal or bronchial tuberculosis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\" + }, + { + "displayName": "(012.23) Isolated tracheal or bronchial tuberculosis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\(012.23) Isolated tracheal or bronchial tuberculosis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\" + }, + { + "displayName": "(012.24) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\(012.24) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\" + }, + { + "displayName": "(012.25) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\(012.25) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\" + }, + { + "displayName": "(012.26) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\(012.26) Isolated tracheal or bronchial tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Isolated tracheal or bronchial tuberculosis (012.2)\\" + }, + { + "displayName": "Other specified respiratory tuberculosis (012.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\" + }, + { + "displayName": "(012.80) Other specified respiratory tuberculosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\(012.80) Other specified respiratory tuberculosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\" + }, + { + "displayName": "(012.81) Other specified respiratory tuberculosis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\(012.81) Other specified respiratory tuberculosis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\" + }, + { + "displayName": "(012.82) Other specified respiratory tuberculosis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\(012.82) Other specified respiratory tuberculosis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Other respiratory tuberculosis (012)\\\\Other specified respiratory tuberculosis (012.8)\\\\(012.82) Other specified respiratory tuberculosis, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\" + }, + { + "displayName": "(012.83) Other specified respiratory tuberculosis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\(012.83) Other specified respiratory tuberculosis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Other respiratory tuberculosis (012)\\\\Other specified respiratory tuberculosis (012.8)\\\\(012.83) Other specified respiratory tuberculosis, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\" + }, + { + "displayName": "(012.84) Other specified respiratory tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\(012.84) Other specified respiratory tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\" + }, + { + "displayName": "(012.85) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\(012.85) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Other respiratory tuberculosis (012)\\\\Other specified respiratory tuberculosis (012.8)\\\\(012.85) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\" + }, + { + "displayName": "(012.86) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\(012.86) Other specified respiratory tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Other specified respiratory tuberculosis (012.8)\\" + }, + { + "displayName": "Tuberculosis of intrathoracic lymph nodes (012.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Other respiratory tuberculosis (012)\\\\Tuberculosis of intrathoracic lymph nodes (012.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\" + }, + { + "displayName": "(012.10) Tuberculosis of intrathoracic lymph nodes, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\(012.10) Tuberculosis of intrathoracic lymph nodes, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\" + }, + { + "displayName": "(012.11) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\(012.11) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\" + }, + { + "displayName": "(012.12) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\(012.12) Tuberculosis of intrathoracic lymph nodes, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\" + }, + { + "displayName": "(012.13) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\(012.13) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\" + }, + { + "displayName": "(012.14) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\(012.14) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\" + }, + { + "displayName": "(012.15) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\(012.15) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\" + }, + { + "displayName": "(012.16) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\(012.16) Tuberculosis of intrathoracic lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculosis of intrathoracic lymph nodes (012.1)\\" + }, + { + "displayName": "Tuberculous laryngitis (012.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\" + }, + { + "displayName": "(012.30) Tuberculous laryngitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\(012.30) Tuberculous laryngitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\" + }, + { + "displayName": "(012.31) Tuberculous laryngitis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\(012.31) Tuberculous laryngitis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\" + }, + { + "displayName": "(012.32) Tuberculous laryngitis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\(012.32) Tuberculous laryngitis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\" + }, + { + "displayName": "(012.33) Tuberculous laryngitis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\(012.33) Tuberculous laryngitis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\" + }, + { + "displayName": "(012.34) Tuberculous laryngitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\(012.34) Tuberculous laryngitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\" + }, + { + "displayName": "(012.35) Tuberculous laryngitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\(012.35) Tuberculous laryngitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\" + }, + { + "displayName": "(012.36) Tuberculous laryngitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\(012.36) Tuberculous laryngitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous laryngitis (012.3)\\" + }, + { + "displayName": "Tuberculous pleurisy (012.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\" + }, + { + "displayName": "(012.00) Tuberculous pleurisy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\(012.00) Tuberculous pleurisy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Other respiratory tuberculosis (012)\\\\Tuberculous pleurisy (012.0)\\\\(012.00) Tuberculous pleurisy, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\" + }, + { + "displayName": "(012.01) Tuberculous pleurisy, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\(012.01) Tuberculous pleurisy, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Other respiratory tuberculosis (012)\\\\Tuberculous pleurisy (012.0)\\\\(012.01) Tuberculous pleurisy, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\" + }, + { + "displayName": "(012.02) Tuberculous pleurisy, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\(012.02) Tuberculous pleurisy, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Other respiratory tuberculosis (012)\\\\Tuberculous pleurisy (012.0)\\\\(012.02) Tuberculous pleurisy, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\" + }, + { + "displayName": "(012.03) Tuberculous pleurisy, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\(012.03) Tuberculous pleurisy, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Other respiratory tuberculosis (012)\\\\Tuberculous pleurisy (012.0)\\\\(012.03) Tuberculous pleurisy, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\" + }, + { + "displayName": "(012.04) Tuberculous pleurisy, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\(012.04) Tuberculous pleurisy, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Other respiratory tuberculosis (012)\\\\Tuberculous pleurisy (012.0)\\\\(012.04) Tuberculous pleurisy, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\" + }, + { + "displayName": "(012.05) Tuberculous pleurisy, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\(012.05) Tuberculous pleurisy, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Other respiratory tuberculosis (012)\\\\Tuberculous pleurisy (012.0)\\\\(012.05) Tuberculous pleurisy, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\" + }, + { + "displayName": "(012.06) Tuberculous pleurisy, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\(012.06) Tuberculous pleurisy, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Other respiratory tuberculosis (012)\\\\Tuberculous pleurisy (012.0)\\\\(012.06) Tuberculous pleurisy, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Other respiratory tuberculosis (012)\\Tuberculous pleurisy (012.0)\\" + }, + { + "displayName": "Primary tuberculous infection (010)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Primary tuberculous infection (010)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\" + }, + { + "displayName": "Other primary progressive tuberculosis (010.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Primary tuberculous infection (010)\\\\Other primary progressive tuberculosis (010.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\" + }, + { + "displayName": "(010.80) Other primary progressive tuberculosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\(010.80) Other primary progressive tuberculosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\" + }, + { + "displayName": "(010.81) Other primary progressive tuberculosis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\(010.81) Other primary progressive tuberculosis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\" + }, + { + "displayName": "(010.82) Other primary progressive tuberculosis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\(010.82) Other primary progressive tuberculosis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\" + }, + { + "displayName": "(010.83) Other primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\(010.83) Other primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\" + }, + { + "displayName": "(010.84) Other primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\(010.84) Other primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\" + }, + { + "displayName": "(010.85) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\(010.85) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\" + }, + { + "displayName": "(010.86) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\(010.86) Other primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Other primary progressive tuberculosis (010.8)\\" + }, + { + "displayName": "Primary tuberculous infection (010.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\" + }, + { + "displayName": "(010.00) Primary tuberculous infection, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\(010.00) Primary tuberculous infection, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\" + }, + { + "displayName": "(010.01) Primary tuberculous infection, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\(010.01) Primary tuberculous infection, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\" + }, + { + "displayName": "(010.02) Primary tuberculous infection, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\(010.02) Primary tuberculous infection, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\" + }, + { + "displayName": "(010.03) Primary tuberculous infection, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\(010.03) Primary tuberculous infection, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\" + }, + { + "displayName": "(010.04) Primary tuberculous infection, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\(010.04) Primary tuberculous infection, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Primary tuberculous infection (010)\\\\Primary tuberculous infection (010.0)\\\\(010.04) Primary tuberculous infection, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\" + }, + { + "displayName": "(010.05) Primary tuberculous infection, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\(010.05) Primary tuberculous infection, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\" + }, + { + "displayName": "(010.06) Primary tuberculous infection, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\(010.06) Primary tuberculous infection, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Primary tuberculous infection (010)\\\\Primary tuberculous infection (010.0)\\\\(010.06) Primary tuberculous infection, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection (010.0)\\" + }, + { + "displayName": "Primary tuberculous infection, unspecified type (010.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\" + }, + { + "displayName": "(010.90) Primary tuberculous infection, unspecified, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\(010.90) Primary tuberculous infection, unspecified, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\" + }, + { + "displayName": "(010.91) Primary tuberculous infection, unspecified, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\(010.91) Primary tuberculous infection, unspecified, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\" + }, + { + "displayName": "(010.92) Primary tuberculous infection, unspecified, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\(010.92) Primary tuberculous infection, unspecified, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\" + }, + { + "displayName": "(010.93) Primary tuberculous infection, unspecified, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\(010.93) Primary tuberculous infection, unspecified, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\" + }, + { + "displayName": "(010.94) Primary tuberculous infection, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\(010.94) Primary tuberculous infection, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\" + }, + { + "displayName": "(010.95) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\(010.95) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\" + }, + { + "displayName": "(010.96) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\(010.96) Primary tuberculous infection, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Primary tuberculous infection, unspecified type (010.9)\\" + }, + { + "displayName": "Tuberculous pleurisy in primary progressive tuberculosis (010.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\" + }, + { + "displayName": "(010.10) Tuberculous pleurisy in primary progressive tuberculosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\(010.10) Tuberculous pleurisy in primary progressive tuberculosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\" + }, + { + "displayName": "(010.11) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\(010.11) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\" + }, + { + "displayName": "(010.12) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\(010.12) Tuberculous pleurisy in primary progressive tuberculosis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\" + }, + { + "displayName": "(010.13) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\(010.13) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\" + }, + { + "displayName": "(010.14) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\(010.14) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\" + }, + { + "displayName": "(010.15) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\(010.15) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\" + }, + { + "displayName": "(010.16) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\(010.16) Tuberculous pleurisy in primary progressive tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Primary tuberculous infection (010)\\Tuberculous pleurisy in primary progressive tuberculosis (010.1)\\" + }, + { + "displayName": "Pulmonary tuberculosis (011)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\" + }, + { + "displayName": "Other specified pulmonary tuberculosis (011.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\" + }, + { + "displayName": "(011.80) Other specified pulmonary tuberculosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\(011.80) Other specified pulmonary tuberculosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\" + }, + { + "displayName": "(011.81) Other specified pulmonary tuberculosis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\(011.81) Other specified pulmonary tuberculosis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\" + }, + { + "displayName": "(011.82) Other specified pulmonary tuberculosis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\(011.82) Other specified pulmonary tuberculosis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\" + }, + { + "displayName": "(011.83) Other specified pulmonary tuberculosis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\(011.83) Other specified pulmonary tuberculosis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\" + }, + { + "displayName": "(011.84) Other specified pulmonary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\(011.84) Other specified pulmonary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Other specified pulmonary tuberculosis (011.8)\\\\(011.84) Other specified pulmonary tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\" + }, + { + "displayName": "(011.85) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\(011.85) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Other specified pulmonary tuberculosis (011.8)\\\\(011.85) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\" + }, + { + "displayName": "(011.86) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\(011.86) Other specified pulmonary tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Other specified pulmonary tuberculosis (011.8)\\" + }, + { + "displayName": "Tuberculosis of bronchus (011.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculosis of bronchus (011.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\" + }, + { + "displayName": "(011.30) Tuberculosis of bronchus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\(011.30) Tuberculosis of bronchus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculosis of bronchus (011.3)\\\\(011.30) Tuberculosis of bronchus, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\" + }, + { + "displayName": "(011.31) Tuberculosis of bronchus, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\(011.31) Tuberculosis of bronchus, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculosis of bronchus (011.3)\\\\(011.31) Tuberculosis of bronchus, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\" + }, + { + "displayName": "(011.32) Tuberculosis of bronchus, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\(011.32) Tuberculosis of bronchus, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\" + }, + { + "displayName": "(011.33) Tuberculosis of bronchus, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\(011.33) Tuberculosis of bronchus, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculosis of bronchus (011.3)\\\\(011.33) Tuberculosis of bronchus, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\" + }, + { + "displayName": "(011.34) Tuberculosis of bronchus, tubercle bacilli not found (in sputum) by microscopy, but found in bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\(011.34) Tuberculosis of bronchus, tubercle bacilli not found (in sputum) by microscopy, but found in bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculosis of bronchus (011.3)\\\\(011.34) Tuberculosis of bronchus, tubercle bacilli not found (in sputum) by microscopy, but found in bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\" + }, + { + "displayName": "(011.35) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\(011.35) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculosis of bronchus (011.3)\\\\(011.35) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\" + }, + { + "displayName": "(011.36) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\(011.36) Tuberculosis of bronchus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of bronchus (011.3)\\" + }, + { + "displayName": "Tuberculosis of lung with cavitation (011.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\" + }, + { + "displayName": "(011.20) Tuberculosis of lung with cavitation, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\(011.20) Tuberculosis of lung with cavitation, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\" + }, + { + "displayName": "(011.21) Tuberculosis of lung with cavitation, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\(011.21) Tuberculosis of lung with cavitation, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\" + }, + { + "displayName": "(011.22) Tuberculosis of lung with cavitation, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\(011.22) Tuberculosis of lung with cavitation, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\" + }, + { + "displayName": "(011.23) Tuberculosis of lung with cavitation, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\(011.23) Tuberculosis of lung with cavitation, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\" + }, + { + "displayName": "(011.24) Tuberculosis of lung with cavitation, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\(011.24) Tuberculosis of lung with cavitation, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\" + }, + { + "displayName": "(011.25) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\(011.25) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\" + }, + { + "displayName": "(011.26) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\(011.26) Tuberculosis of lung with cavitation, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung with cavitation (011.2)\\" + }, + { + "displayName": "Tuberculosis of lung, infiltrative (011.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculosis of lung, infiltrative (011.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\" + }, + { + "displayName": "(011.00) Tuberculosis of lung, infiltrative, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\(011.00) Tuberculosis of lung, infiltrative, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculosis of lung, infiltrative (011.0)\\\\(011.00) Tuberculosis of lung, infiltrative, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\" + }, + { + "displayName": "(011.01) Tuberculosis of lung, infiltrative, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\(011.01) Tuberculosis of lung, infiltrative, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculosis of lung, infiltrative (011.0)\\\\(011.01) Tuberculosis of lung, infiltrative, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\" + }, + { + "displayName": "(011.02) Tuberculosis of lung, infiltrative, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\(011.02) Tuberculosis of lung, infiltrative, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculosis of lung, infiltrative (011.0)\\\\(011.02) Tuberculosis of lung, infiltrative, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\" + }, + { + "displayName": "(011.03) Tuberculosis of lung, infiltrative, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\(011.03) Tuberculosis of lung, infiltrative, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculosis of lung, infiltrative (011.0)\\\\(011.03) Tuberculosis of lung, infiltrative, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\" + }, + { + "displayName": "(011.04) Tuberculosis of lung, infiltrative, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\(011.04) Tuberculosis of lung, infiltrative, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\" + }, + { + "displayName": "(011.05) Tuberculosis of lung, infiltrative, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\(011.05) Tuberculosis of lung, infiltrative, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\" + }, + { + "displayName": "(011.06) Tuberculosis of lung, infiltrative, tubercle bacilli not found bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\(011.06) Tuberculosis of lung, infiltrative, tubercle bacilli not found bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, infiltrative (011.0)\\" + }, + { + "displayName": "Tuberculosis of lung, nodular (011.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\" + }, + { + "displayName": "(011.10) Tuberculosis of lung, nodular, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\(011.10) Tuberculosis of lung, nodular, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\" + }, + { + "displayName": "(011.11) Tuberculosis of lung, nodular, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\(011.11) Tuberculosis of lung, nodular, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\" + }, + { + "displayName": "(011.12) Tuberculosis of lung, nodular, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\(011.12) Tuberculosis of lung, nodular, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\" + }, + { + "displayName": "(011.13) Tuberculosis of lung, nodular, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\(011.13) Tuberculosis of lung, nodular, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\" + }, + { + "displayName": "(011.14) Tuberculosis of lung, nodular, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\(011.14) Tuberculosis of lung, nodular, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\" + }, + { + "displayName": "(011.15) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\(011.15) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\" + }, + { + "displayName": "(011.16) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\(011.16) Tuberculosis of lung, nodular, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculosis of lung, nodular (011.1)\\" + }, + { + "displayName": "Tuberculous bronchiectasis (011.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\" + }, + { + "displayName": "(011.50) Tuberculous bronchiectasis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\(011.50) Tuberculous bronchiectasis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\" + }, + { + "displayName": "(011.51) Tuberculous bronchiectasis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\(011.51) Tuberculous bronchiectasis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\" + }, + { + "displayName": "(011.52) Tuberculous bronchiectasis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\(011.52) Tuberculous bronchiectasis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\" + }, + { + "displayName": "(011.53) Tuberculous bronchiectasis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\(011.53) Tuberculous bronchiectasis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\" + }, + { + "displayName": "(011.54) Tuberculous bronchiectasis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\(011.54) Tuberculous bronchiectasis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\" + }, + { + "displayName": "(011.55) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\(011.55) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\" + }, + { + "displayName": "(011.56) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\(011.56) Tuberculous bronchiectasis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous bronchiectasis (011.5)\\" + }, + { + "displayName": "Tuberculous fibrosis of lung (011.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\" + }, + { + "displayName": "(011.40) Tuberculous fibrosis of lung, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\(011.40) Tuberculous fibrosis of lung, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\" + }, + { + "displayName": "(011.41) Tuberculous fibrosis of lung, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\(011.41) Tuberculous fibrosis of lung, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\" + }, + { + "displayName": "(011.42) Tuberculous fibrosis of lung, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\(011.42) Tuberculous fibrosis of lung, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\" + }, + { + "displayName": "(011.43) Tuberculous fibrosis of lung, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\(011.43) Tuberculous fibrosis of lung, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\" + }, + { + "displayName": "(011.44) Tuberculous fibrosis of lung, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\(011.44) Tuberculous fibrosis of lung, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculous fibrosis of lung (011.4)\\\\(011.44) Tuberculous fibrosis of lung, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\" + }, + { + "displayName": "(011.45) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\(011.45) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculous fibrosis of lung (011.4)\\\\(011.45) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\" + }, + { + "displayName": "(011.46) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\(011.46) Tuberculous fibrosis of lung, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous fibrosis of lung (011.4)\\" + }, + { + "displayName": "Tuberculous pneumonia [any form] (011.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculous pneumonia [any form] (011.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\" + }, + { + "displayName": "(011.60) Tuberculous pneumonia [any form], unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\(011.60) Tuberculous pneumonia [any form], unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\" + }, + { + "displayName": "(011.61) Tuberculous pneumonia [any form], bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\(011.61) Tuberculous pneumonia [any form], bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\" + }, + { + "displayName": "(011.62) Tuberculous pneumonia [any form], bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\(011.62) Tuberculous pneumonia [any form], bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\" + }, + { + "displayName": "(011.63) Tuberculous pneumonia [any form], tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\(011.63) Tuberculous pneumonia [any form], tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\" + }, + { + "displayName": "(011.64) Tuberculous pneumonia [any form], tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\(011.64) Tuberculous pneumonia [any form], tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\" + }, + { + "displayName": "(011.65) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\(011.65) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\" + }, + { + "displayName": "(011.66) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\(011.66) Tuberculous pneumonia [any form], tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumonia [any form] (011.6)\\" + }, + { + "displayName": "Tuberculous pneumothorax (011.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\" + }, + { + "displayName": "(011.70) Tuberculous pneumothorax, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\(011.70) Tuberculous pneumothorax, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\" + }, + { + "displayName": "(011.71) Tuberculous pneumothorax, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\(011.71) Tuberculous pneumothorax, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\" + }, + { + "displayName": "(011.72) Tuberculous pneumothorax, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\(011.72) Tuberculous pneumothorax, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\" + }, + { + "displayName": "(011.73) Tuberculous pneumothorax, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\(011.73) Tuberculous pneumothorax, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculous pneumothorax (011.7)\\\\(011.73) Tuberculous pneumothorax, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\" + }, + { + "displayName": "(011.74) Tuberculous pneumothorax, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\(011.74) Tuberculous pneumothorax, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Pulmonary tuberculosis (011)\\\\Tuberculous pneumothorax (011.7)\\\\(011.74) Tuberculous pneumothorax, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\" + }, + { + "displayName": "(011.75) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\(011.75) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\" + }, + { + "displayName": "(011.76) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\(011.76) Tuberculous pneumothorax, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Tuberculous pneumothorax (011.7)\\" + }, + { + "displayName": "Unspecified pulmonary tuberculosis (011.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\" + }, + { + "displayName": "(011.90) Pulmonary tuberculosis, unspecified, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\(011.90) Pulmonary tuberculosis, unspecified, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\" + }, + { + "displayName": "(011.91) Pulmonary tuberculosis, unspecified, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\(011.91) Pulmonary tuberculosis, unspecified, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\" + }, + { + "displayName": "(011.92) Pulmonary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\(011.92) Pulmonary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\" + }, + { + "displayName": "(011.93) Pulmonary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\(011.93) Pulmonary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\" + }, + { + "displayName": "(011.94) Pulmonary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\(011.94) Pulmonary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\" + }, + { + "displayName": "(011.95) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\(011.95) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\" + }, + { + "displayName": "(011.96) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\(011.96) Pulmonary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Pulmonary tuberculosis (011)\\Unspecified pulmonary tuberculosis (011.9)\\" + }, + { + "displayName": "Tuberculosis of bones and joints (015)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\" + }, + { + "displayName": "Tuberculosis of hip (015.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of hip (015.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\" + }, + { + "displayName": "(015.10) Tuberculosis of hip, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\(015.10) Tuberculosis of hip, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\" + }, + { + "displayName": "(015.11) Tuberculosis of hip, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\(015.11) Tuberculosis of hip, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\" + }, + { + "displayName": "(015.12) Tuberculosis of hip, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\(015.12) Tuberculosis of hip, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of hip (015.1)\\\\(015.12) Tuberculosis of hip, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\" + }, + { + "displayName": "(015.13) Tuberculosis of hip, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\(015.13) Tuberculosis of hip, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of hip (015.1)\\\\(015.13) Tuberculosis of hip, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\" + }, + { + "displayName": "(015.14) Tuberculosis of hip, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\(015.14) Tuberculosis of hip, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\" + }, + { + "displayName": "(015.15) Tuberculosis of hip, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\(015.15) Tuberculosis of hip, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of hip (015.1)\\\\(015.15) Tuberculosis of hip, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\" + }, + { + "displayName": "(015.16) Tuberculosis of hip, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\(015.16) Tuberculosis of hip, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of hip (015.1)\\\\(015.16) Tuberculosis of hip, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of hip (015.1)\\" + }, + { + "displayName": "Tuberculosis of knee (015.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of knee (015.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\" + }, + { + "displayName": "(015.20) Tuberculosis of knee, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\(015.20) Tuberculosis of knee, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of knee (015.2)\\\\(015.20) Tuberculosis of knee, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\" + }, + { + "displayName": "(015.21) Tuberculosis of knee, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\(015.21) Tuberculosis of knee, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\" + }, + { + "displayName": "(015.22) Tuberculosis of knee, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\(015.22) Tuberculosis of knee, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\" + }, + { + "displayName": "(015.23) Tuberculosis of knee, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\(015.23) Tuberculosis of knee, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\" + }, + { + "displayName": "(015.24) Tuberculosis of knee, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\(015.24) Tuberculosis of knee, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\" + }, + { + "displayName": "(015.25) Tuberculosis of knee, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\(015.25) Tuberculosis of knee, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\" + }, + { + "displayName": "(015.26) Tuberculosis of knee, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\(015.26) Tuberculosis of knee, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of knee (015.2)\\" + }, + { + "displayName": "Tuberculosis of limb bones (015.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\" + }, + { + "displayName": "(015.50) Tuberculosis of limb bones, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\(015.50) Tuberculosis of limb bones, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\" + }, + { + "displayName": "(015.51) Tuberculosis of limb bones, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\(015.51) Tuberculosis of limb bones, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\" + }, + { + "displayName": "(015.52) Tuberculosis of limb bones, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\(015.52) Tuberculosis of limb bones, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\" + }, + { + "displayName": "(015.53) Tuberculosis of limb bones, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\(015.53) Tuberculosis of limb bones, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\" + }, + { + "displayName": "(015.54) Tuberculosis of limb bones, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\(015.54) Tuberculosis of limb bones, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of limb bones (015.5)\\\\(015.54) Tuberculosis of limb bones, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\" + }, + { + "displayName": "(015.55) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\(015.55) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of limb bones (015.5)\\\\(015.55) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\" + }, + { + "displayName": "(015.56) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\(015.56) Tuberculosis of limb bones, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of limb bones (015.5)\\" + }, + { + "displayName": "Tuberculosis of mastoid (015.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\" + }, + { + "displayName": "(015.60) Tuberculosis of mastoid, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\(015.60) Tuberculosis of mastoid, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\" + }, + { + "displayName": "(015.61) Tuberculosis of mastoid, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\(015.61) Tuberculosis of mastoid, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\" + }, + { + "displayName": "(015.62) Tuberculosis of mastoid, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\(015.62) Tuberculosis of mastoid, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\" + }, + { + "displayName": "(015.63) Tuberculosis of mastoid, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\(015.63) Tuberculosis of mastoid, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\" + }, + { + "displayName": "(015.64) Tuberculosis of mastoid, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\(015.64) Tuberculosis of mastoid, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of mastoid (015.6)\\\\(015.64) Tuberculosis of mastoid, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\" + }, + { + "displayName": "(015.65) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\(015.65) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of mastoid (015.6)\\\\(015.65) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\" + }, + { + "displayName": "(015.66) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\(015.66) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of mastoid (015.6)\\\\(015.66) Tuberculosis of mastoid, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of mastoid (015.6)\\" + }, + { + "displayName": "Tuberculosis of other specified bone (015.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\" + }, + { + "displayName": "(015.70) Tuberculosis of other specified bone, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\(015.70) Tuberculosis of other specified bone, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of other specified bone (015.7)\\\\(015.70) Tuberculosis of other specified bone, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\" + }, + { + "displayName": "(015.71) Tuberculosis of other specified bone, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\(015.71) Tuberculosis of other specified bone, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of other specified bone (015.7)\\\\(015.71) Tuberculosis of other specified bone, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\" + }, + { + "displayName": "(015.72) Tuberculosis of other specified bone, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\(015.72) Tuberculosis of other specified bone, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\" + }, + { + "displayName": "(015.73) Tuberculosis of other specified bone, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\(015.73) Tuberculosis of other specified bone, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of other specified bone (015.7)\\\\(015.73) Tuberculosis of other specified bone, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\" + }, + { + "displayName": "(015.74) Tuberculosis of other specified bone, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\(015.74) Tuberculosis of other specified bone, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\" + }, + { + "displayName": "(015.75) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\(015.75) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of other specified bone (015.7)\\\\(015.75) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\" + }, + { + "displayName": "(015.76) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\(015.76) Tuberculosis of other specified bone, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified bone (015.7)\\" + }, + { + "displayName": "Tuberculosis of other specified joint (015.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\" + }, + { + "displayName": "(015.80) Tuberculosis of other specified joint, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\(015.80) Tuberculosis of other specified joint, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\" + }, + { + "displayName": "(015.81) Tuberculosis of other specified joint, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\(015.81) Tuberculosis of other specified joint, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\" + }, + { + "displayName": "(015.82) Tuberculosis of other specified joint, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\(015.82) Tuberculosis of other specified joint, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\" + }, + { + "displayName": "(015.83) Tuberculosis of other specified joint, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\(015.83) Tuberculosis of other specified joint, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of other specified joint (015.8)\\\\(015.83) Tuberculosis of other specified joint, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\" + }, + { + "displayName": "(015.84) Tuberculosis of other specified joint, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\(015.84) Tuberculosis of other specified joint, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of other specified joint (015.8)\\\\(015.84) Tuberculosis of other specified joint, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\" + }, + { + "displayName": "(015.85) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\(015.85) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\" + }, + { + "displayName": "(015.86) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\(015.86) Tuberculosis of other specified joint, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of other specified joint (015.8)\\" + }, + { + "displayName": "Tuberculosis of unspecified bones and joints (015.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\" + }, + { + "displayName": "(015.90) Tuberculosis of unspecified bones and joints, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\(015.90) Tuberculosis of unspecified bones and joints, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\" + }, + { + "displayName": "(015.91) Tuberculosis of unspecified bones and joints, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\(015.91) Tuberculosis of unspecified bones and joints, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\" + }, + { + "displayName": "(015.92) Tuberculosis of unspecified bones and joints, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\(015.92) Tuberculosis of unspecified bones and joints, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\" + }, + { + "displayName": "(015.93) Tuberculosis of unspecified bones and joints, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\(015.93) Tuberculosis of unspecified bones and joints, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\" + }, + { + "displayName": "(015.94) Tuberculosis of unspecified bones and joints, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\(015.94) Tuberculosis of unspecified bones and joints, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of unspecified bones and joints (015.9)\\\\(015.94) Tuberculosis of unspecified bones and joints, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\" + }, + { + "displayName": "(015.95) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\(015.95) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of unspecified bones and joints (015.9)\\\\(015.95) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\" + }, + { + "displayName": "(015.96) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\(015.96) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of unspecified bones and joints (015.9)\\\\(015.96) Tuberculosis of unspecified bones and joints, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of unspecified bones and joints (015.9)\\" + }, + { + "displayName": "Tuberculosis of vertebral column (015.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\" + }, + { + "displayName": "(015.00) Tuberculosis of vertebral column, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\(015.00) Tuberculosis of vertebral column, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of vertebral column (015.0)\\\\(015.00) Tuberculosis of vertebral column, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\" + }, + { + "displayName": "(015.01) Tuberculosis of vertebral column, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\(015.01) Tuberculosis of vertebral column, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of bones and joints (015)\\\\Tuberculosis of vertebral column (015.0)\\\\(015.01) Tuberculosis of vertebral column, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\" + }, + { + "displayName": "(015.02) Tuberculosis of vertebral column, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\(015.02) Tuberculosis of vertebral column, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\" + }, + { + "displayName": "(015.03) Tuberculosis of vertebral column, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\(015.03) Tuberculosis of vertebral column, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\" + }, + { + "displayName": "(015.04) Tuberculosis of vertebral column, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\(015.04) Tuberculosis of vertebral column, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\" + }, + { + "displayName": "(015.05) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\(015.05) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\" + }, + { + "displayName": "(015.06) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\(015.06) Tuberculosis of vertebral column, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of bones and joints (015)\\Tuberculosis of vertebral column (015.0)\\" + }, + { + "displayName": "Tuberculosis of genitourinary system (016)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\" + }, + { + "displayName": "Genitourinary tuberculosis, unspecified (016.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Genitourinary tuberculosis, unspecified (016.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\" + }, + { + "displayName": "(016.90) Genitourinary tuberculosis, unspecified, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\(016.90) Genitourinary tuberculosis, unspecified, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Genitourinary tuberculosis, unspecified (016.9)\\\\(016.90) Genitourinary tuberculosis, unspecified, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\" + }, + { + "displayName": "(016.91) Genitourinary tuberculosis, unspecified, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\(016.91) Genitourinary tuberculosis, unspecified, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Genitourinary tuberculosis, unspecified (016.9)\\\\(016.91) Genitourinary tuberculosis, unspecified, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\" + }, + { + "displayName": "(016.92) Genitourinary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\(016.92) Genitourinary tuberculosis, unspecified, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\" + }, + { + "displayName": "(016.93) Genitourinary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\(016.93) Genitourinary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Genitourinary tuberculosis, unspecified (016.9)\\\\(016.93) Genitourinary tuberculosis, unspecified, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\" + }, + { + "displayName": "(016.94) Genitourinary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\(016.94) Genitourinary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Genitourinary tuberculosis, unspecified (016.9)\\\\(016.94) Genitourinary tuberculosis, unspecified, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\" + }, + { + "displayName": "(016.95) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\(016.95) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Genitourinary tuberculosis, unspecified (016.9)\\\\(016.95) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\" + }, + { + "displayName": "(016.96) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\(016.96) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Genitourinary tuberculosis, unspecified (016.9)\\\\(016.96) Genitourinary tuberculosis, unspecified, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Genitourinary tuberculosis, unspecified (016.9)\\" + }, + { + "displayName": "Tuberculosis of bladder (016.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculosis of bladder (016.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\" + }, + { + "displayName": "(016.10) Tuberculosis of bladder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\(016.10) Tuberculosis of bladder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculosis of bladder (016.1)\\\\(016.10) Tuberculosis of bladder, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\" + }, + { + "displayName": "(016.11) Tuberculosis of bladder, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\(016.11) Tuberculosis of bladder, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\" + }, + { + "displayName": "(016.12) Tuberculosis of bladder, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\(016.12) Tuberculosis of bladder, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\" + }, + { + "displayName": "(016.13) Tuberculosis of bladder, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\(016.13) Tuberculosis of bladder, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\" + }, + { + "displayName": "(016.14) Tuberculosis of bladder, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\(016.14) Tuberculosis of bladder, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\" + }, + { + "displayName": "(016.15) Tuberculosis of bladder, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\(016.15) Tuberculosis of bladder, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\" + }, + { + "displayName": "(016.16) Tuberculosis of bladder, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\(016.16) Tuberculosis of bladder, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of bladder (016.1)\\" + }, + { + "displayName": "Tuberculosis of epididymis (016.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\" + }, + { + "displayName": "(016.40) Tuberculosis of epididymis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\(016.40) Tuberculosis of epididymis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\" + }, + { + "displayName": "(016.41) Tuberculosis of epididymis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\(016.41) Tuberculosis of epididymis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\" + }, + { + "displayName": "(016.42) Tuberculosis of epididymis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\(016.42) Tuberculosis of epididymis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\" + }, + { + "displayName": "(016.43) Tuberculosis of epididymis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\(016.43) Tuberculosis of epididymis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\" + }, + { + "displayName": "(016.44) Tuberculosis of epididymis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\(016.44) Tuberculosis of epididymis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\" + }, + { + "displayName": "(016.45) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\(016.45) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\" + }, + { + "displayName": "(016.46) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\(016.46) Tuberculosis of epididymis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of epididymis (016.4)\\" + }, + { + "displayName": "Tuberculosis of kidney (016.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\" + }, + { + "displayName": "(016.00) Tuberculosis of kidney, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\(016.00) Tuberculosis of kidney, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\" + }, + { + "displayName": "(016.01) Tuberculosis of kidney, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\(016.01) Tuberculosis of kidney, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\" + }, + { + "displayName": "(016.02) Tuberculosis of kidney, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\(016.02) Tuberculosis of kidney, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\" + }, + { + "displayName": "(016.03) Tuberculosis of kidney, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\(016.03) Tuberculosis of kidney, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\" + }, + { + "displayName": "(016.04) Tuberculosis of kidney, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\(016.04) Tuberculosis of kidney, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\" + }, + { + "displayName": "(016.05) Tuberculosis of kidney, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\(016.05) Tuberculosis of kidney, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\" + }, + { + "displayName": "(016.06) Tuberculosis of kidney, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\(016.06) Tuberculosis of kidney, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of kidney (016.0)\\" + }, + { + "displayName": "Tuberculosis of other female genital organs (016.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\" + }, + { + "displayName": "(016.70) Tuberculosis of other female genital organs, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\(016.70) Tuberculosis of other female genital organs, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\" + }, + { + "displayName": "(016.71) Tuberculosis of other female genital organs, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\(016.71) Tuberculosis of other female genital organs, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\" + }, + { + "displayName": "(016.72) Tuberculosis of other female genital organs, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\(016.72) Tuberculosis of other female genital organs, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\" + }, + { + "displayName": "(016.73) Tuberculosis of other female genital organs, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\(016.73) Tuberculosis of other female genital organs, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculosis of other female genital organs (016.7)\\\\(016.73) Tuberculosis of other female genital organs, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\" + }, + { + "displayName": "(016.74) Tuberculosis of other female genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\(016.74) Tuberculosis of other female genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculosis of other female genital organs (016.7)\\\\(016.74) Tuberculosis of other female genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\" + }, + { + "displayName": "(016.75) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\(016.75) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\" + }, + { + "displayName": "(016.76) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\(016.76) Tuberculosis of other female genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other female genital organs (016.7)\\" + }, + { + "displayName": "Tuberculosis of other male genital organs (016.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\" + }, + { + "displayName": "(016.50) Tuberculosis of other male genital organs, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\(016.50) Tuberculosis of other male genital organs, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\" + }, + { + "displayName": "(016.51) Tuberculosis of other male genital organs, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\(016.51) Tuberculosis of other male genital organs, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculosis of other male genital organs (016.5)\\\\(016.51) Tuberculosis of other male genital organs, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\" + }, + { + "displayName": "(016.52) Tuberculosis of other male genital organs, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\(016.52) Tuberculosis of other male genital organs, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\" + }, + { + "displayName": "(016.53) Tuberculosis of other male genital organs, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\(016.53) Tuberculosis of other male genital organs, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculosis of other male genital organs (016.5)\\\\(016.53) Tuberculosis of other male genital organs, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\" + }, + { + "displayName": "(016.54) Tuberculosis of other male genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\(016.54) Tuberculosis of other male genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculosis of other male genital organs (016.5)\\\\(016.54) Tuberculosis of other male genital organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\" + }, + { + "displayName": "(016.55) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\(016.55) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculosis of other male genital organs (016.5)\\\\(016.55) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\" + }, + { + "displayName": "(016.56) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\(016.56) Tuberculosis of other male genital organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other male genital organs (016.5)\\" + }, + { + "displayName": "Tuberculosis of other urinary organs (016.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\" + }, + { + "displayName": "(016.30) Tuberculosis of other urinary organs, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\(016.30) Tuberculosis of other urinary organs, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\" + }, + { + "displayName": "(016.31) Tuberculosis of other urinary organs, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\(016.31) Tuberculosis of other urinary organs, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\" + }, + { + "displayName": "(016.32) Tuberculosis of other urinary organs, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\(016.32) Tuberculosis of other urinary organs, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\" + }, + { + "displayName": "(016.33) Tuberculosis of other urinary organs, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\(016.33) Tuberculosis of other urinary organs, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\" + }, + { + "displayName": "(016.34) Tuberculosis of other urinary organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\(016.34) Tuberculosis of other urinary organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\" + }, + { + "displayName": "(016.35) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\(016.35) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\" + }, + { + "displayName": "(016.36) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\(016.36) Tuberculosis of other urinary organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of other urinary organs (016.3)\\" + }, + { + "displayName": "Tuberculosis of ureter (016.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\" + }, + { + "displayName": "(016.20) Tuberculosis of ureter, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\(016.20) Tuberculosis of ureter, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\" + }, + { + "displayName": "(016.21) Tuberculosis of ureter, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\(016.21) Tuberculosis of ureter, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\" + }, + { + "displayName": "(016.22) Tuberculosis of ureter, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\(016.22) Tuberculosis of ureter, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\" + }, + { + "displayName": "(016.23) Tuberculosis of ureter, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\(016.23) Tuberculosis of ureter, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\" + }, + { + "displayName": "(016.24) Tuberculosis of ureter, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\(016.24) Tuberculosis of ureter, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\" + }, + { + "displayName": "(016.25) Tuberculosis of ureter, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\(016.25) Tuberculosis of ureter, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\" + }, + { + "displayName": "(016.26) Tuberculosis of ureter, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\(016.26) Tuberculosis of ureter, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculosis of ureter (016.2)\\\\(016.26) Tuberculosis of ureter, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculosis of ureter (016.2)\\" + }, + { + "displayName": "Tuberculous oophoritis and salpingitis (016.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\" + }, + { + "displayName": "(016.60) Tuberculous oophoritis and salpingitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\(016.60) Tuberculous oophoritis and salpingitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculous oophoritis and salpingitis (016.6)\\\\(016.60) Tuberculous oophoritis and salpingitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\" + }, + { + "displayName": "(016.61) Tuberculous oophoritis and salpingitis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\(016.61) Tuberculous oophoritis and salpingitis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\" + }, + { + "displayName": "(016.62) Tuberculous oophoritis and salpingitis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\(016.62) Tuberculous oophoritis and salpingitis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculous oophoritis and salpingitis (016.6)\\\\(016.62) Tuberculous oophoritis and salpingitis, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\" + }, + { + "displayName": "(016.63) Tuberculous oophoritis and salpingitis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\(016.63) Tuberculous oophoritis and salpingitis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\" + }, + { + "displayName": "(016.64) Tuberculous oophoritis and salpingitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\(016.64) Tuberculous oophoritis and salpingitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculous oophoritis and salpingitis (016.6)\\\\(016.64) Tuberculous oophoritis and salpingitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\" + }, + { + "displayName": "(016.65) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\(016.65) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of genitourinary system (016)\\\\Tuberculous oophoritis and salpingitis (016.6)\\\\(016.65) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\" + }, + { + "displayName": "(016.66) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\(016.66) Tuberculous oophoritis and salpingitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of genitourinary system (016)\\Tuberculous oophoritis and salpingitis (016.6)\\" + }, + { + "displayName": "Tuberculosis of intestines, peritoneum, and mesenteric glands (014)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\" + }, + { + "displayName": "Tuberculosis of intestines and mesenteric glands (014.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\\\Tuberculosis of intestines and mesenteric glands (014.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\" + }, + { + "displayName": "(014.80) Other tuberculosis of intestines, peritoneum, and mesenteric glands, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\(014.80) Other tuberculosis of intestines, peritoneum, and mesenteric glands, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\\\Tuberculosis of intestines and mesenteric glands (014.8)\\\\(014.80) Other tuberculosis of intestines, peritoneum, and mesenteric glands, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\" + }, + { + "displayName": "(014.81) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\(014.81) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\\\Tuberculosis of intestines and mesenteric glands (014.8)\\\\(014.81) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\" + }, + { + "displayName": "(014.82) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\(014.82) Other tuberculosis of intestines, peritoneum, and mesenteric glands, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\" + }, + { + "displayName": "(014.83) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\(014.83) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\" + }, + { + "displayName": "(014.84) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\(014.84) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\" + }, + { + "displayName": "(014.85) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\(014.85) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\" + }, + { + "displayName": "(014.86) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\(014.86) Other tuberculosis of intestines, peritoneum, and mesenteric glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculosis of intestines and mesenteric glands (014.8)\\" + }, + { + "displayName": "Tuberculous peritonitis (014.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\" + }, + { + "displayName": "(014.00) Tuberculous peritonitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\(014.00) Tuberculous peritonitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\" + }, + { + "displayName": "(014.01) Tuberculous peritonitis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\(014.01) Tuberculous peritonitis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\" + }, + { + "displayName": "(014.02) Tuberculous peritonitis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\(014.02) Tuberculous peritonitis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\" + }, + { + "displayName": "(014.03) Tuberculous peritonitis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\(014.03) Tuberculous peritonitis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\" + }, + { + "displayName": "(014.04) Tuberculous peritonitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\(014.04) Tuberculous peritonitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\\\Tuberculous peritonitis (014.0)\\\\(014.04) Tuberculous peritonitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\" + }, + { + "displayName": "(014.05) Tuberculous peritonitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\(014.05) Tuberculous peritonitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\\\Tuberculous peritonitis (014.0)\\\\(014.05) Tuberculous peritonitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\" + }, + { + "displayName": "(014.06) Tuberculous peritonitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\(014.06) Tuberculous peritonitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\\\Tuberculous peritonitis (014.0)\\\\(014.06) Tuberculous peritonitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of intestines, peritoneum, and mesenteric glands (014)\\Tuberculous peritonitis (014.0)\\" + }, + { + "displayName": "Tuberculosis of meninges and central nervous system (013)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\" + }, + { + "displayName": "Other specified tuberculosis of central nervous system (013.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\" + }, + { + "displayName": "(013.80) Other specified tuberculosis of central nervous system, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\(013.80) Other specified tuberculosis of central nervous system, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Other specified tuberculosis of central nervous system (013.8)\\\\(013.80) Other specified tuberculosis of central nervous system, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\" + }, + { + "displayName": "(013.81) Other specified tuberculosis of central nervous system, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\(013.81) Other specified tuberculosis of central nervous system, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Other specified tuberculosis of central nervous system (013.8)\\\\(013.81) Other specified tuberculosis of central nervous system, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\" + }, + { + "displayName": "(013.82) Other specified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\(013.82) Other specified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\" + }, + { + "displayName": "(013.83) Other specified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\(013.83) Other specified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\" + }, + { + "displayName": "(013.84) Other specified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\(013.84) Other specified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\" + }, + { + "displayName": "(013.85) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\(013.85) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\" + }, + { + "displayName": "(013.86) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\(013.86) Other specified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Other specified tuberculosis of central nervous system (013.8)\\" + }, + { + "displayName": "Tuberculoma of brain (013.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\" + }, + { + "displayName": "(013.20) Tuberculoma of brain, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\(013.20) Tuberculoma of brain, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\" + }, + { + "displayName": "(013.21) Tuberculoma of brain, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\(013.21) Tuberculoma of brain, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\" + }, + { + "displayName": "(013.22) Tuberculoma of brain, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\(013.22) Tuberculoma of brain, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\" + }, + { + "displayName": "(013.23) Tuberculoma of brain, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\(013.23) Tuberculoma of brain, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculoma of brain (013.2)\\\\(013.23) Tuberculoma of brain, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\" + }, + { + "displayName": "(013.24) Tuberculoma of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\(013.24) Tuberculoma of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculoma of brain (013.2)\\\\(013.24) Tuberculoma of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\" + }, + { + "displayName": "(013.25) Tuberculoma of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\(013.25) Tuberculoma of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculoma of brain (013.2)\\\\(013.25) Tuberculoma of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\" + }, + { + "displayName": "(013.26) Tuberculoma of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\(013.26) Tuberculoma of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of brain (013.2)\\" + }, + { + "displayName": "Tuberculoma of meninges (013.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\" + }, + { + "displayName": "(013.10) Tuberculoma of meninges, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\(013.10) Tuberculoma of meninges, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\" + }, + { + "displayName": "(013.11) Tuberculoma of meninges, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\(013.11) Tuberculoma of meninges, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\" + }, + { + "displayName": "(013.12) Tuberculoma of meninges, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\(013.12) Tuberculoma of meninges, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\" + }, + { + "displayName": "(013.13) Tuberculoma of meninges, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\(013.13) Tuberculoma of meninges, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\" + }, + { + "displayName": "(013.14) Tuberculoma of meninges, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\(013.14) Tuberculoma of meninges, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculoma of meninges (013.1)\\\\(013.14) Tuberculoma of meninges, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\" + }, + { + "displayName": "(013.15) Tuberculoma of meninges, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\(013.15) Tuberculoma of meninges, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculoma of meninges (013.1)\\\\(013.15) Tuberculoma of meninges, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\" + }, + { + "displayName": "(013.16) Tuberculoma of meninges, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\(013.16) Tuberculoma of meninges, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculoma of meninges (013.1)\\\\(013.16) Tuberculoma of meninges, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of meninges (013.1)\\" + }, + { + "displayName": "Tuberculoma of spinal cord (013.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\" + }, + { + "displayName": "(013.40) Tuberculoma of spinal cord, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\(013.40) Tuberculoma of spinal cord, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\" + }, + { + "displayName": "(013.41) Tuberculoma of spinal cord, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\(013.41) Tuberculoma of spinal cord, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\" + }, + { + "displayName": "(013.42) Tuberculoma of spinal cord, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\(013.42) Tuberculoma of spinal cord, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\" + }, + { + "displayName": "(013.43) Tuberculoma of spinal cord, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\(013.43) Tuberculoma of spinal cord, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\" + }, + { + "displayName": "(013.44) Tuberculoma of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\(013.44) Tuberculoma of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\" + }, + { + "displayName": "(013.45) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\(013.45) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\" + }, + { + "displayName": "(013.46) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\(013.46) Tuberculoma of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculoma of spinal cord (013.4)\\" + }, + { + "displayName": "Tuberculous abscess of brain (013.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\" + }, + { + "displayName": "(013.30) Tuberculous abscess of brain, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\(013.30) Tuberculous abscess of brain, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous abscess of brain (013.3)\\\\(013.30) Tuberculous abscess of brain, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\" + }, + { + "displayName": "(013.31) Tuberculous abscess of brain, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\(013.31) Tuberculous abscess of brain, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous abscess of brain (013.3)\\\\(013.31) Tuberculous abscess of brain, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\" + }, + { + "displayName": "(013.32) Tuberculous abscess of brain, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\(013.32) Tuberculous abscess of brain, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\" + }, + { + "displayName": "(013.33) Tuberculous abscess of brain, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\(013.33) Tuberculous abscess of brain, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\" + }, + { + "displayName": "(013.34) Tuberculous abscess of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\(013.34) Tuberculous abscess of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous abscess of brain (013.3)\\\\(013.34) Tuberculous abscess of brain, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\" + }, + { + "displayName": "(013.35) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\(013.35) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous abscess of brain (013.3)\\\\(013.35) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\" + }, + { + "displayName": "(013.36) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\(013.36) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous abscess of brain (013.3)\\\\(013.36) Tuberculous abscess of brain, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of brain (013.3)\\" + }, + { + "displayName": "Tuberculous abscess of spinal cord (013.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\" + }, + { + "displayName": "(013.50) Tuberculous abscess of spinal cord, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\(013.50) Tuberculous abscess of spinal cord, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous abscess of spinal cord (013.5)\\\\(013.50) Tuberculous abscess of spinal cord, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\" + }, + { + "displayName": "(013.51) Tuberculous abscess of spinal cord, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\(013.51) Tuberculous abscess of spinal cord, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous abscess of spinal cord (013.5)\\\\(013.51) Tuberculous abscess of spinal cord, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\" + }, + { + "displayName": "(013.52) Tuberculous abscess of spinal cord, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\(013.52) Tuberculous abscess of spinal cord, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous abscess of spinal cord (013.5)\\\\(013.52) Tuberculous abscess of spinal cord, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\" + }, + { + "displayName": "(013.53) Tuberculous abscess of spinal cord, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\(013.53) Tuberculous abscess of spinal cord, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous abscess of spinal cord (013.5)\\\\(013.53) Tuberculous abscess of spinal cord, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\" + }, + { + "displayName": "(013.54) Tuberculous abscess of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\(013.54) Tuberculous abscess of spinal cord, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\" + }, + { + "displayName": "(013.55) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\(013.55) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous abscess of spinal cord (013.5)\\\\(013.55) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\" + }, + { + "displayName": "(013.56) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\(013.56) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous abscess of spinal cord (013.5)\\\\(013.56) Tuberculous abscess of spinal cord, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous abscess of spinal cord (013.5)\\" + }, + { + "displayName": "Tuberculous encephalitis or myelitis (013.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous encephalitis or myelitis (013.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\" + }, + { + "displayName": "(013.60) Tuberculous encephalitis or myelitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\(013.60) Tuberculous encephalitis or myelitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous encephalitis or myelitis (013.6)\\\\(013.60) Tuberculous encephalitis or myelitis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\" + }, + { + "displayName": "(013.61) Tuberculous encephalitis or myelitis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\(013.61) Tuberculous encephalitis or myelitis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous encephalitis or myelitis (013.6)\\\\(013.61) Tuberculous encephalitis or myelitis, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\" + }, + { + "displayName": "(013.62) Tuberculous encephalitis or myelitis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\(013.62) Tuberculous encephalitis or myelitis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous encephalitis or myelitis (013.6)\\\\(013.62) Tuberculous encephalitis or myelitis, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\" + }, + { + "displayName": "(013.63) Tuberculous encephalitis or myelitis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\(013.63) Tuberculous encephalitis or myelitis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\" + }, + { + "displayName": "(013.64) Tuberculous encephalitis or myelitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\(013.64) Tuberculous encephalitis or myelitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\" + }, + { + "displayName": "(013.65) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\(013.65) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\" + }, + { + "displayName": "(013.66) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\(013.66) Tuberculous encephalitis or myelitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous encephalitis or myelitis (013.6)\\" + }, + { + "displayName": "Tuberculous meningitis (013.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\" + }, + { + "displayName": "(013.00) Tuberculous meningitis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\(013.00) Tuberculous meningitis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\" + }, + { + "displayName": "(013.01) Tuberculous meningitis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\(013.01) Tuberculous meningitis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\" + }, + { + "displayName": "(013.02) Tuberculous meningitis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\(013.02) Tuberculous meningitis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous meningitis (013.0)\\\\(013.02) Tuberculous meningitis, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\" + }, + { + "displayName": "(013.03) Tuberculous meningitis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\(013.03) Tuberculous meningitis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous meningitis (013.0)\\\\(013.03) Tuberculous meningitis, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\" + }, + { + "displayName": "(013.04) Tuberculous meningitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\(013.04) Tuberculous meningitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous meningitis (013.0)\\\\(013.04) Tuberculous meningitis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\" + }, + { + "displayName": "(013.05) Tuberculous meningitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\(013.05) Tuberculous meningitis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\" + }, + { + "displayName": "(013.06) Tuberculous meningitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\(013.06) Tuberculous meningitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Tuberculous meningitis (013.0)\\\\(013.06) Tuberculous meningitis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Tuberculous meningitis (013.0)\\" + }, + { + "displayName": "Unspecified tuberculosis of central nervous system (013.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Unspecified tuberculosis of central nervous system (013.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\" + }, + { + "displayName": "(013.90) Unspecified tuberculosis of central nervous system, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\(013.90) Unspecified tuberculosis of central nervous system, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Unspecified tuberculosis of central nervous system (013.9)\\\\(013.90) Unspecified tuberculosis of central nervous system, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\" + }, + { + "displayName": "(013.91) Unspecified tuberculosis of central nervous system, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\(013.91) Unspecified tuberculosis of central nervous system, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\" + }, + { + "displayName": "(013.92) Unspecified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\(013.92) Unspecified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Unspecified tuberculosis of central nervous system (013.9)\\\\(013.92) Unspecified tuberculosis of central nervous system, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\" + }, + { + "displayName": "(013.93) Unspecified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\(013.93) Unspecified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Unspecified tuberculosis of central nervous system (013.9)\\\\(013.93) Unspecified tuberculosis of central nervous system, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\" + }, + { + "displayName": "(013.94) Unspecified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\(013.94) Unspecified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of meninges and central nervous system (013)\\\\Unspecified tuberculosis of central nervous system (013.9)\\\\(013.94) Unspecified tuberculosis of central nervous system, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\" + }, + { + "displayName": "(013.95) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\(013.95) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\" + }, + { + "displayName": "(013.96) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\(013.96) Unspecified tuberculosis of central nervous system, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of meninges and central nervous system (013)\\Unspecified tuberculosis of central nervous system (013.9)\\" + }, + { + "displayName": "Tuberculosis of other organs (017)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\" + }, + { + "displayName": "Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\" + }, + { + "displayName": "(017.10) Erythema nodosum with hypersensitivity reaction in tuberculosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\(017.10) Erythema nodosum with hypersensitivity reaction in tuberculosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\\\(017.10) Erythema nodosum with hypersensitivity reaction in tuberculosis, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\" + }, + { + "displayName": "(017.11) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\(017.11) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\" + }, + { + "displayName": "(017.12) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\(017.12) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\\\(017.12) Erythema nodosum with hypersensitivity reaction in tuberculosis, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\" + }, + { + "displayName": "(017.13) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\(017.13) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\\\(017.13) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\" + }, + { + "displayName": "(017.14) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\(017.14) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\" + }, + { + "displayName": "(017.15) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\(017.15) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\\\(017.15) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\" + }, + { + "displayName": "(017.16) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\(017.16) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\\\(017.16) Erythema nodosum with hypersensitivity reaction in tuberculosis, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Erythema nodosum with hypersensitivity reaction in tuberculosis (017.1)\\" + }, + { + "displayName": "Tuberculosis of adrenal glands (017.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of adrenal glands (017.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\" + }, + { + "displayName": "(017.60) Tuberculosis of adrenal glands, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\(017.60) Tuberculosis of adrenal glands, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of adrenal glands (017.6)\\\\(017.60) Tuberculosis of adrenal glands, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\" + }, + { + "displayName": "(017.61) Tuberculosis of adrenal glands, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\(017.61) Tuberculosis of adrenal glands, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of adrenal glands (017.6)\\\\(017.61) Tuberculosis of adrenal glands, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\" + }, + { + "displayName": "(017.62) Tuberculosis of adrenal glands, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\(017.62) Tuberculosis of adrenal glands, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of adrenal glands (017.6)\\\\(017.62) Tuberculosis of adrenal glands, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\" + }, + { + "displayName": "(017.63) Tuberculosis of adrenal glands, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\(017.63) Tuberculosis of adrenal glands, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\" + }, + { + "displayName": "(017.64) Tuberculosis of adrenal glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\(017.64) Tuberculosis of adrenal glands, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\" + }, + { + "displayName": "(017.65) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\(017.65) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\" + }, + { + "displayName": "(017.66) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\(017.66) Tuberculosis of adrenal glands, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of adrenal glands (017.6)\\" + }, + { + "displayName": "Tuberculosis of ear (017.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\" + }, + { + "displayName": "(017.40) Tuberculosis of ear, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\(017.40) Tuberculosis of ear, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\" + }, + { + "displayName": "(017.41) Tuberculosis of ear, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\(017.41) Tuberculosis of ear, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of ear (017.4)\\\\(017.41) Tuberculosis of ear, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\" + }, + { + "displayName": "(017.42) Tuberculosis of ear, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\(017.42) Tuberculosis of ear, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of ear (017.4)\\\\(017.42) Tuberculosis of ear, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\" + }, + { + "displayName": "(017.43) Tuberculosis of ear, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\(017.43) Tuberculosis of ear, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of ear (017.4)\\\\(017.43) Tuberculosis of ear, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\" + }, + { + "displayName": "(017.44) Tuberculosis of ear, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\(017.44) Tuberculosis of ear, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of ear (017.4)\\\\(017.44) Tuberculosis of ear, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\" + }, + { + "displayName": "(017.45) Tuberculosis of ear, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\(017.45) Tuberculosis of ear, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\" + }, + { + "displayName": "(017.46) Tuberculosis of ear, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\(017.46) Tuberculosis of ear, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of ear (017.4)\\" + }, + { + "displayName": "Tuberculosis of esophagus (017.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\" + }, + { + "displayName": "(017.80) Tuberculosis of esophagus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\(017.80) Tuberculosis of esophagus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\" + }, + { + "displayName": "(017.81) Tuberculosis of esophagus, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\(017.81) Tuberculosis of esophagus, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\" + }, + { + "displayName": "(017.82) Tuberculosis of esophagus, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\(017.82) Tuberculosis of esophagus, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\" + }, + { + "displayName": "(017.83) Tuberculosis of esophagus, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\(017.83) Tuberculosis of esophagus, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of esophagus (017.8)\\\\(017.83) Tuberculosis of esophagus, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\" + }, + { + "displayName": "(017.84) Tuberculosis of esophagus, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\(017.84) Tuberculosis of esophagus, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of esophagus (017.8)\\\\(017.84) Tuberculosis of esophagus, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\" + }, + { + "displayName": "(017.85) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\(017.85) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\" + }, + { + "displayName": "(017.86) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\(017.86) Tuberculosis of esophagus, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of esophagus (017.8)\\" + }, + { + "displayName": "Tuberculosis of eye (017.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\" + }, + { + "displayName": "(017.30) Tuberculosis of eye, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\(017.30) Tuberculosis of eye, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\" + }, + { + "displayName": "(017.31) Tuberculosis of eye, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\(017.31) Tuberculosis of eye, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of eye (017.3)\\\\(017.31) Tuberculosis of eye, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\" + }, + { + "displayName": "(017.32) Tuberculosis of eye, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\(017.32) Tuberculosis of eye, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\" + }, + { + "displayName": "(017.33) Tuberculosis of eye, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\(017.33) Tuberculosis of eye, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\" + }, + { + "displayName": "(017.34) Tuberculosis of eye, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\(017.34) Tuberculosis of eye, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\" + }, + { + "displayName": "(017.35) Tuberculosis of eye, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\(017.35) Tuberculosis of eye, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\" + }, + { + "displayName": "(017.36) Tuberculosis of eye, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\(017.36) Tuberculosis of eye, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of eye (017.3)\\" + }, + { + "displayName": "Tuberculosis of other specified organs (017.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\" + }, + { + "displayName": "(017.90) Tuberculosis of other specified organs, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\(017.90) Tuberculosis of other specified organs, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\" + }, + { + "displayName": "(017.91) Tuberculosis of other specified organs, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\(017.91) Tuberculosis of other specified organs, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of other specified organs (017.9)\\\\(017.91) Tuberculosis of other specified organs, bacteriological or histological examination not done\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\" + }, + { + "displayName": "(017.92) Tuberculosis of other specified organs, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\(017.92) Tuberculosis of other specified organs, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of other specified organs (017.9)\\\\(017.92) Tuberculosis of other specified organs, bacteriological or histological examination unknown (at present)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\" + }, + { + "displayName": "(017.93) Tuberculosis of other specified organs, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\(017.93) Tuberculosis of other specified organs, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of other specified organs (017.9)\\\\(017.93) Tuberculosis of other specified organs, tubercle bacilli found (in sputum) by microscopy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\" + }, + { + "displayName": "(017.94) Tuberculosis of other specified organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\(017.94) Tuberculosis of other specified organs, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\" + }, + { + "displayName": "(017.95) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\(017.95) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of other specified organs (017.9)\\\\(017.95) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\" + }, + { + "displayName": "(017.96) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\(017.96) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of other specified organs (017.9)\\\\(017.96) Tuberculosis of other specified organs, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of other specified organs (017.9)\\" + }, + { + "displayName": "Tuberculosis of peripheral lymph nodes (017.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\" + }, + { + "displayName": "(017.20) Tuberculosis of peripheral lymph nodes, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\(017.20) Tuberculosis of peripheral lymph nodes, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\" + }, + { + "displayName": "(017.21) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\(017.21) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\" + }, + { + "displayName": "(017.22) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\(017.22) Tuberculosis of peripheral lymph nodes, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\" + }, + { + "displayName": "(017.23) Tuberculosis of peripheral lymph nodes, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\(017.23) Tuberculosis of peripheral lymph nodes, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\" + }, + { + "displayName": "(017.24) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\(017.24) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\" + }, + { + "displayName": "(017.25) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\(017.25) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\" + }, + { + "displayName": "(017.26) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\(017.26) Tuberculosis of peripheral lymph nodes, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of peripheral lymph nodes (017.2)\\" + }, + { + "displayName": "Tuberculosis of skin and subcutaneous cellular tissue (017.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\" + }, + { + "displayName": "(017.00) Tuberculosis of skin and subcutaneous cellular tissue, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\(017.00) Tuberculosis of skin and subcutaneous cellular tissue, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\" + }, + { + "displayName": "(017.01) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\(017.01) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\" + }, + { + "displayName": "(017.02) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\(017.02) Tuberculosis of skin and subcutaneous cellular tissue, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\" + }, + { + "displayName": "(017.03) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\(017.03) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\" + }, + { + "displayName": "(017.04) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\(017.04) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\\\(017.04) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\" + }, + { + "displayName": "(017.05) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\(017.05) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\\\(017.05) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\" + }, + { + "displayName": "(017.06) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\(017.06) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Tuberculosis (010-018.99)\\\\Tuberculosis of other organs (017)\\\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\\\(017.06) Tuberculosis of skin and subcutaneous cellular tissue, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of skin and subcutaneous cellular tissue (017.0)\\" + }, + { + "displayName": "Tuberculosis of spleen (017.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\" + }, + { + "displayName": "(017.70) Tuberculosis of spleen, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\(017.70) Tuberculosis of spleen, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\" + }, + { + "displayName": "(017.71) Tuberculosis of spleen, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\(017.71) Tuberculosis of spleen, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\" + }, + { + "displayName": "(017.72) Tuberculosis of spleen, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\(017.72) Tuberculosis of spleen, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\" + }, + { + "displayName": "(017.73) Tuberculosis of spleen, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\(017.73) Tuberculosis of spleen, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\" + }, + { + "displayName": "(017.74) Tuberculosis of spleen, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\(017.74) Tuberculosis of spleen, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\" + }, + { + "displayName": "(017.75) Tuberculosis of spleen, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\(017.75) Tuberculosis of spleen, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\" + }, + { + "displayName": "(017.76) Tuberculosis of spleen, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\(017.76) Tuberculosis of spleen, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of spleen (017.7)\\" + }, + { + "displayName": "Tuberculosis of thyroid gland (017.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\" + }, + { + "displayName": "(017.50) Tuberculosis of thyroid gland, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\(017.50) Tuberculosis of thyroid gland, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\" + }, + { + "displayName": "(017.51) Tuberculosis of thyroid gland, bacteriological or histological examination not done", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\(017.51) Tuberculosis of thyroid gland, bacteriological or histological examination not done\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\" + }, + { + "displayName": "(017.52) Tuberculosis of thyroid gland, bacteriological or histological examination unknown (at present)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\(017.52) Tuberculosis of thyroid gland, bacteriological or histological examination unknown (at present)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\" + }, + { + "displayName": "(017.53) Tuberculosis of thyroid gland, tubercle bacilli found (in sputum) by microscopy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\(017.53) Tuberculosis of thyroid gland, tubercle bacilli found (in sputum) by microscopy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\" + }, + { + "displayName": "(017.54) Tuberculosis of thyroid gland, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\(017.54) Tuberculosis of thyroid gland, tubercle bacilli not found (in sputum) by microscopy, but found by bacterial culture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\" + }, + { + "displayName": "(017.55) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\(017.55) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological examination, but tuberculosis confirmed histologically\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\" + }, + { + "displayName": "(017.56) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\(017.56) Tuberculosis of thyroid gland, tubercle bacilli not found by bacteriological or histological examination, but tuberculosis confirmed by other methods [inoculation of animals]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Tuberculosis (010-018.99)\\Tuberculosis of other organs (017)\\Tuberculosis of thyroid gland (017.5)\\" + }, + { + "displayName": "Viral diseases generally accompanied by exanthem (050-059.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "Chickenpox (052)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\" + }, + { + "displayName": "(052.0) Postvaricella encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\(052.0) Postvaricella encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Chickenpox (052)\\\\(052.0) Postvaricella encephalitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\" + }, + { + "displayName": "(052.1) Varicella (hemorrhagic) pneumonitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\(052.1) Varicella (hemorrhagic) pneumonitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Chickenpox (052)\\\\(052.1) Varicella (hemorrhagic) pneumonitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\" + }, + { + "displayName": "(052.2) Postvaricella myelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\(052.2) Postvaricella myelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Chickenpox (052)\\\\(052.2) Postvaricella myelitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\" + }, + { + "displayName": "(052.7) Chickenpox with other specified complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\(052.7) Chickenpox with other specified complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Chickenpox (052)\\\\(052.7) Chickenpox with other specified complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\" + }, + { + "displayName": "(052.8) Chickenpox with unspecified complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\(052.8) Chickenpox with unspecified complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Chickenpox (052)\\\\(052.8) Chickenpox with unspecified complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\" + }, + { + "displayName": "(052.9) Varicella without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\(052.9) Varicella without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Chickenpox (052)\\" + }, + { + "displayName": "Cowpox and paravaccinia (051)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Cowpox and paravaccinia (051)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\" + }, + { + "displayName": "(051.1) Pseudocowpox", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Cowpox and paravaccinia (051)\\(051.1) Pseudocowpox\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Cowpox and paravaccinia (051)\\" + }, + { + "displayName": "(051.2) Contagious pustular dermatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Cowpox and paravaccinia (051)\\(051.2) Contagious pustular dermatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Cowpox and paravaccinia (051)\\" + }, + { + "displayName": "(051.9) Paravaccinia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Cowpox and paravaccinia (051)\\(051.9) Paravaccinia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Cowpox and paravaccinia (051)\\" + }, + { + "displayName": "Cowpox and vaccinia not from vaccination (051.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Cowpox and paravaccinia (051)\\Cowpox and vaccinia not from vaccination (051.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Cowpox and paravaccinia (051)\\\\Cowpox and vaccinia not from vaccination (051.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Cowpox and paravaccinia (051)\\" + }, + { + "displayName": "Herpes simplex (054)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes simplex (054)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\" + }, + { + "displayName": "(054.0) Eczema herpeticum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\(054.0) Eczema herpeticum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes simplex (054)\\\\(054.0) Eczema herpeticum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\" + }, + { + "displayName": "(054.2) Herpetic gingivostomatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\(054.2) Herpetic gingivostomatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes simplex (054)\\\\(054.2) Herpetic gingivostomatitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\" + }, + { + "displayName": "(054.3) Herpetic meningoencephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\(054.3) Herpetic meningoencephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes simplex (054)\\\\(054.3) Herpetic meningoencephalitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\" + }, + { + "displayName": "(054.5) Herpetic septicemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\(054.5) Herpetic septicemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes simplex (054)\\\\(054.5) Herpetic septicemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\" + }, + { + "displayName": "(054.6) Herpetic whitlow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\(054.6) Herpetic whitlow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\" + }, + { + "displayName": "(054.8) Herpes simplex with unspecified complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\(054.8) Herpes simplex with unspecified complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\" + }, + { + "displayName": "(054.9) Herpes simplex without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\(054.9) Herpes simplex without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\" + }, + { + "displayName": "Genital herpes (054.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Genital herpes (054.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\" + }, + { + "displayName": "(054.10) Genital herpes, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Genital herpes (054.1)\\(054.10) Genital herpes, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Genital herpes (054.1)\\" + }, + { + "displayName": "(054.11) Herpetic vulvovaginitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Genital herpes (054.1)\\(054.11) Herpetic vulvovaginitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Genital herpes (054.1)\\" + }, + { + "displayName": "(054.12) Herpetic ulceration of vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Genital herpes (054.1)\\(054.12) Herpetic ulceration of vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Genital herpes (054.1)\\" + }, + { + "displayName": "(054.13) Herpetic infection of penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Genital herpes (054.1)\\(054.13) Herpetic infection of penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Genital herpes (054.1)\\" + }, + { + "displayName": "(054.19) Other genital herpes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Genital herpes (054.1)\\(054.19) Other genital herpes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Genital herpes (054.1)\\" + }, + { + "displayName": "Herpes simplex with ophthalmic complications (054.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\" + }, + { + "displayName": "(054.40) Herpes simplex with unspecified ophthalmic complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\(054.40) Herpes simplex with unspecified ophthalmic complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\" + }, + { + "displayName": "(054.41) Herpes simplex dermatitis of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\(054.41) Herpes simplex dermatitis of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\" + }, + { + "displayName": "(054.42) Dendritic keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\(054.42) Dendritic keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\" + }, + { + "displayName": "(054.43) Herpes simplex disciform keratitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\(054.43) Herpes simplex disciform keratitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\" + }, + { + "displayName": "(054.44) Herpes simplex iridocyclitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\(054.44) Herpes simplex iridocyclitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes simplex (054)\\\\Herpes simplex with ophthalmic complications (054.4)\\\\(054.44) Herpes simplex iridocyclitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\" + }, + { + "displayName": "(054.49) Herpes simplex with other ophthalmic complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\(054.49) Herpes simplex with other ophthalmic complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes simplex (054)\\\\Herpes simplex with ophthalmic complications (054.4)\\\\(054.49) Herpes simplex with other ophthalmic complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with ophthalmic complications (054.4)\\" + }, + { + "displayName": "Herpes simplex with other specified complications (054.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with other specified complications (054.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes simplex (054)\\\\Herpes simplex with other specified complications (054.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\" + }, + { + "displayName": "(054.71) Visceral herpes simplex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with other specified complications (054.7)\\(054.71) Visceral herpes simplex\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes simplex (054)\\\\Herpes simplex with other specified complications (054.7)\\\\(054.71) Visceral herpes simplex\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with other specified complications (054.7)\\" + }, + { + "displayName": "(054.72) Herpes simplex meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with other specified complications (054.7)\\(054.72) Herpes simplex meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes simplex (054)\\\\Herpes simplex with other specified complications (054.7)\\\\(054.72) Herpes simplex meningitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with other specified complications (054.7)\\" + }, + { + "displayName": "(054.73) Herpes simplex otitis externa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with other specified complications (054.7)\\(054.73) Herpes simplex otitis externa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes simplex (054)\\\\Herpes simplex with other specified complications (054.7)\\\\(054.73) Herpes simplex otitis externa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with other specified complications (054.7)\\" + }, + { + "displayName": "(054.74) Herpes simplex myelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with other specified complications (054.7)\\(054.74) Herpes simplex myelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with other specified complications (054.7)\\" + }, + { + "displayName": "(054.79) Herpes simplex with other specified complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with other specified complications (054.7)\\(054.79) Herpes simplex with other specified complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes simplex (054)\\Herpes simplex with other specified complications (054.7)\\" + }, + { + "displayName": "Herpes zoster (053)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\" + }, + { + "displayName": "(053.0) Herpes zoster with meningitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\(053.0) Herpes zoster with meningitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\" + }, + { + "displayName": "(053.8) Herpes zoster with unspecified complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\(053.8) Herpes zoster with unspecified complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\" + }, + { + "displayName": "(053.9) Herpes zoster without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\(053.9) Herpes zoster without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\" + }, + { + "displayName": "Herpes zoster with ophthalmic complications (053.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with ophthalmic complications (053.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\" + }, + { + "displayName": "(053.20) Herpes zoster dermatitis of eyelid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with ophthalmic complications (053.2)\\(053.20) Herpes zoster dermatitis of eyelid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with ophthalmic complications (053.2)\\" + }, + { + "displayName": "(053.21) Herpes zoster keratoconjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with ophthalmic complications (053.2)\\(053.21) Herpes zoster keratoconjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes zoster (053)\\\\Herpes zoster with ophthalmic complications (053.2)\\\\(053.21) Herpes zoster keratoconjunctivitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with ophthalmic complications (053.2)\\" + }, + { + "displayName": "(053.22) Herpes zoster iridocyclitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with ophthalmic complications (053.2)\\(053.22) Herpes zoster iridocyclitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes zoster (053)\\\\Herpes zoster with ophthalmic complications (053.2)\\\\(053.22) Herpes zoster iridocyclitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with ophthalmic complications (053.2)\\" + }, + { + "displayName": "(053.29) Herpes zoster with other ophthalmic complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with ophthalmic complications (053.2)\\(053.29) Herpes zoster with other ophthalmic complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes zoster (053)\\\\Herpes zoster with ophthalmic complications (053.2)\\\\(053.29) Herpes zoster with other ophthalmic complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with ophthalmic complications (053.2)\\" + }, + { + "displayName": "Herpes zoster with other nervous system complications (053.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes zoster (053)\\\\Herpes zoster with other nervous system complications (053.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\" + }, + { + "displayName": "(053.10) Herpes zoster with unspecified nervous system complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\(053.10) Herpes zoster with unspecified nervous system complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\" + }, + { + "displayName": "(053.11) Geniculate herpes zoster", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\(053.11) Geniculate herpes zoster\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\" + }, + { + "displayName": "(053.12) Postherpetic trigeminal neuralgia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\(053.12) Postherpetic trigeminal neuralgia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\" + }, + { + "displayName": "(053.13) Postherpetic polyneuropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\(053.13) Postherpetic polyneuropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\" + }, + { + "displayName": "(053.14) Herpes zoster myelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\(053.14) Herpes zoster myelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\" + }, + { + "displayName": "(053.19) Herpes zoster with other nervous system complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\(053.19) Herpes zoster with other nervous system complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes zoster (053)\\\\Herpes zoster with other nervous system complications (053.1)\\\\(053.19) Herpes zoster with other nervous system complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other nervous system complications (053.1)\\" + }, + { + "displayName": "Herpes zoster with other specified complications (053.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other specified complications (053.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Herpes zoster (053)\\\\Herpes zoster with other specified complications (053.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\" + }, + { + "displayName": "(053.71) Otitis externa due to herpes zoster", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other specified complications (053.7)\\(053.71) Otitis externa due to herpes zoster\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other specified complications (053.7)\\" + }, + { + "displayName": "(053.79) Herpes zoster with other specified complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other specified complications (053.7)\\(053.79) Herpes zoster with other specified complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Herpes zoster (053)\\Herpes zoster with other specified complications (053.7)\\" + }, + { + "displayName": "Measles (055)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\" + }, + { + "displayName": "(055.0) Postmeasles encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\(055.0) Postmeasles encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\" + }, + { + "displayName": "(055.1) Postmeasles pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\(055.1) Postmeasles pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\" + }, + { + "displayName": "(055.2) Postmeasles otitis media", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\(055.2) Postmeasles otitis media\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\" + }, + { + "displayName": "(055.8) Measles with unspecified complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\(055.8) Measles with unspecified complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\" + }, + { + "displayName": "(055.9) Measles without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\(055.9) Measles without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\" + }, + { + "displayName": "Measles with other specified complications (055.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\Measles with other specified complications (055.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\" + }, + { + "displayName": "(055.71) Measles keratoconjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\Measles with other specified complications (055.7)\\(055.71) Measles keratoconjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\Measles with other specified complications (055.7)\\" + }, + { + "displayName": "(055.79) Measles with other specified complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\Measles with other specified complications (055.7)\\(055.79) Measles with other specified complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Measles (055)\\Measles with other specified complications (055.7)\\" + }, + { + "displayName": "Other human herpesvirus (058)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\" + }, + { + "displayName": "Other human herpesvirus encephalitis (058.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus encephalitis (058.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\" + }, + { + "displayName": "(058.21) Human herpesvirus 6 encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus encephalitis (058.2)\\(058.21) Human herpesvirus 6 encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus encephalitis (058.2)\\" + }, + { + "displayName": "(058.29) Other human herpesvirus encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus encephalitis (058.2)\\(058.29) Other human herpesvirus encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus encephalitis (058.2)\\" + }, + { + "displayName": "Other human herpesvirus infections (058.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus infections (058.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\" + }, + { + "displayName": "(058.81) Human herpesvirus 6 infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus infections (058.8)\\(058.81) Human herpesvirus 6 infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus infections (058.8)\\" + }, + { + "displayName": "(058.82) Human herpesvirus 7 infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus infections (058.8)\\(058.82) Human herpesvirus 7 infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Other human herpesvirus (058)\\\\Other human herpesvirus infections (058.8)\\\\(058.82) Human herpesvirus 7 infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus infections (058.8)\\" + }, + { + "displayName": "(058.89) Other human herpesvirus infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus infections (058.8)\\(058.89) Other human herpesvirus infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Other human herpesvirus (058)\\\\Other human herpesvirus infections (058.8)\\\\(058.89) Other human herpesvirus infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Other human herpesvirus infections (058.8)\\" + }, + { + "displayName": "Roseola infantum (058.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Roseola infantum (058.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Other human herpesvirus (058)\\\\Roseola infantum (058.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\" + }, + { + "displayName": "(058.10) Roseola infantum, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Roseola infantum (058.1)\\(058.10) Roseola infantum, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Other human herpesvirus (058)\\\\Roseola infantum (058.1)\\\\(058.10) Roseola infantum, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Roseola infantum (058.1)\\" + }, + { + "displayName": "(058.11) Roseola infantum due to human herpesvirus 6", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Roseola infantum (058.1)\\(058.11) Roseola infantum due to human herpesvirus 6\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Other human herpesvirus (058)\\\\Roseola infantum (058.1)\\\\(058.11) Roseola infantum due to human herpesvirus 6\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Roseola infantum (058.1)\\" + }, + { + "displayName": "(058.12) Roseola infantum due to human herpesvirus 7", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Roseola infantum (058.1)\\(058.12) Roseola infantum due to human herpesvirus 7\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other human herpesvirus (058)\\Roseola infantum (058.1)\\" + }, + { + "displayName": "Other viral exanthemata (057)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other viral exanthemata (057)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Other viral exanthemata (057)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\" + }, + { + "displayName": "(057.0) Erythema infectiosum (fifth disease)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other viral exanthemata (057)\\(057.0) Erythema infectiosum (fifth disease)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Other viral exanthemata (057)\\\\(057.0) Erythema infectiosum (fifth disease)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other viral exanthemata (057)\\" + }, + { + "displayName": "(057.8) Other specified viral exanthemata", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other viral exanthemata (057)\\(057.8) Other specified viral exanthemata\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Other viral exanthemata (057)\\\\(057.8) Other specified viral exanthemata\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other viral exanthemata (057)\\" + }, + { + "displayName": "(057.9) Viral exanthem, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other viral exanthemata (057)\\(057.9) Viral exanthem, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Other viral exanthemata (057)\\\\(057.9) Viral exanthem, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Other viral exanthemata (057)\\" + }, + { + "displayName": "Rubella (056)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\" + }, + { + "displayName": "(056.8) Rubella with unspecified complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\(056.8) Rubella with unspecified complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\" + }, + { + "displayName": "(056.9) Rubella without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\(056.9) Rubella without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\" + }, + { + "displayName": "Rubella with neurological complications (056.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with neurological complications (056.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\" + }, + { + "displayName": "(056.00) Rubella with unspecified neurological complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with neurological complications (056.0)\\(056.00) Rubella with unspecified neurological complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with neurological complications (056.0)\\" + }, + { + "displayName": "(056.01) Encephalomyelitis due to rubella", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with neurological complications (056.0)\\(056.01) Encephalomyelitis due to rubella\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with neurological complications (056.0)\\" + }, + { + "displayName": "(056.09) Rubella with other neurological complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with neurological complications (056.0)\\(056.09) Rubella with other neurological complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with neurological complications (056.0)\\" + }, + { + "displayName": "Rubella with other specified complications (056.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with other specified complications (056.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\" + }, + { + "displayName": "(056.71) Arthritis due to rubella", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with other specified complications (056.7)\\(056.71) Arthritis due to rubella\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with other specified complications (056.7)\\" + }, + { + "displayName": "(056.79) Rubella with other specified complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with other specified complications (056.7)\\(056.79) Rubella with other specified complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Rubella (056)\\Rubella with other specified complications (056.7)\\" + }, + { + "displayName": "Smallpox (050)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Smallpox (050)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\" + }, + { + "displayName": "(050.0) Variola major", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Smallpox (050)\\(050.0) Variola major\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Smallpox (050)\\" + }, + { + "displayName": "(050.1) Alastrim", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Smallpox (050)\\(050.1) Alastrim\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Smallpox (050)\\\\(050.1) Alastrim\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Smallpox (050)\\" + }, + { + "displayName": "(050.2) Modified smallpox", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Smallpox (050)\\(050.2) Modified smallpox\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Smallpox (050)\\\\(050.2) Modified smallpox\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Smallpox (050)\\" + }, + { + "displayName": "(050.9) Smallpox, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Smallpox (050)\\(050.9) Smallpox, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Viral diseases generally accompanied by exanthem (050-059.99)\\\\Smallpox (050)\\\\(050.9) Smallpox, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Viral diseases generally accompanied by exanthem (050-059.99)\\Smallpox (050)\\" + }, + { + "displayName": "Zoonotic bacterial diseases (020-027.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\" + }, + { + "displayName": "(024) Glanders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\(024) Glanders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\" + }, + { + "displayName": "(025) Melioidosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\(025) Melioidosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\" + }, + { + "displayName": "Anthrax (022)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\" + }, + { + "displayName": "(022.0) Cutaneous anthrax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\(022.0) Cutaneous anthrax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\" + }, + { + "displayName": "(022.1) Pulmonary anthrax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\(022.1) Pulmonary anthrax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\" + }, + { + "displayName": "(022.2) Gastrointestinal anthrax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\(022.2) Gastrointestinal anthrax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\" + }, + { + "displayName": "(022.3) Anthrax septicemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\(022.3) Anthrax septicemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\" + }, + { + "displayName": "(022.8) Other specified manifestations of anthrax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\(022.8) Other specified manifestations of anthrax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\" + }, + { + "displayName": "(022.9) Anthrax, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\(022.9) Anthrax, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Anthrax (022)\\" + }, + { + "displayName": "Brucellosis (023)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Brucellosis (023)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\" + }, + { + "displayName": "(023.0) Brucella melitensis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\(023.0) Brucella melitensis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Brucellosis (023)\\\\(023.0) Brucella melitensis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\" + }, + { + "displayName": "(023.1) Brucella abortus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\(023.1) Brucella abortus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Brucellosis (023)\\\\(023.1) Brucella abortus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\" + }, + { + "displayName": "(023.2) Brucella suis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\(023.2) Brucella suis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Brucellosis (023)\\\\(023.2) Brucella suis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\" + }, + { + "displayName": "(023.3) Brucella canis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\(023.3) Brucella canis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\" + }, + { + "displayName": "(023.8) Other brucellosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\(023.8) Other brucellosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\" + }, + { + "displayName": "(023.9) Brucellosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\(023.9) Brucellosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Brucellosis (023)\\" + }, + { + "displayName": "Other zoonotic bacterial diseases (027)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Other zoonotic bacterial diseases (027)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\" + }, + { + "displayName": "(027.0) Listeriosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Other zoonotic bacterial diseases (027)\\(027.0) Listeriosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Other zoonotic bacterial diseases (027)\\" + }, + { + "displayName": "(027.1) Erysipelothrix infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Other zoonotic bacterial diseases (027)\\(027.1) Erysipelothrix infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Other zoonotic bacterial diseases (027)\\" + }, + { + "displayName": "(027.2) Pasteurellosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Other zoonotic bacterial diseases (027)\\(027.2) Pasteurellosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Other zoonotic bacterial diseases (027)\\" + }, + { + "displayName": "(027.8) Other specified zoonotic bacterial diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Other zoonotic bacterial diseases (027)\\(027.8) Other specified zoonotic bacterial diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Other zoonotic bacterial diseases (027)\\" + }, + { + "displayName": "(027.9) Unspecified zoonotic bacterial disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Other zoonotic bacterial diseases (027)\\(027.9) Unspecified zoonotic bacterial disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Other zoonotic bacterial diseases (027)\\" + }, + { + "displayName": "Plague (020)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\" + }, + { + "displayName": "(020.0) Bubonic plague", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\(020.0) Bubonic plague\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\" + }, + { + "displayName": "(020.1) Cellulocutaneous plague", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\(020.1) Cellulocutaneous plague\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\" + }, + { + "displayName": "(020.2) Septicemic plague", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\(020.2) Septicemic plague\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\" + }, + { + "displayName": "(020.3) Primary pneumonic plague", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\(020.3) Primary pneumonic plague\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Plague (020)\\\\(020.3) Primary pneumonic plague\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\" + }, + { + "displayName": "(020.4) Secondary pneumonic plague", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\(020.4) Secondary pneumonic plague\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Plague (020)\\\\(020.4) Secondary pneumonic plague\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\" + }, + { + "displayName": "(020.5) Pneumonic plague, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\(020.5) Pneumonic plague, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Plague (020)\\\\(020.5) Pneumonic plague, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\" + }, + { + "displayName": "(020.8) Other specified types of plague", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\(020.8) Other specified types of plague\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Plague (020)\\\\(020.8) Other specified types of plague\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\" + }, + { + "displayName": "(020.9) Plague, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\(020.9) Plague, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Plague (020)\\" + }, + { + "displayName": "Rat-bite fever (026)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Rat-bite fever (026)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\" + }, + { + "displayName": "(026.0) Spirillary fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Rat-bite fever (026)\\(026.0) Spirillary fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Rat-bite fever (026)\\" + }, + { + "displayName": "(026.1) Streptobacillary fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Rat-bite fever (026)\\(026.1) Streptobacillary fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Rat-bite fever (026)\\" + }, + { + "displayName": "(026.9) Unspecified rat-bite fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Rat-bite fever (026)\\(026.9) Unspecified rat-bite fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Rat-bite fever (026)\\" + }, + { + "displayName": "Tularemia (021)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\" + }, + { + "displayName": "(021.0) Ulceroglandular tularemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\(021.0) Ulceroglandular tularemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\" + }, + { + "displayName": "(021.1) Enteric tularemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\(021.1) Enteric tularemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\" + }, + { + "displayName": "(021.2) Pulmonary tularemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\(021.2) Pulmonary tularemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Tularemia (021)\\\\(021.2) Pulmonary tularemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\" + }, + { + "displayName": "(021.3) Oculoglandular tularemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\(021.3) Oculoglandular tularemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Tularemia (021)\\\\(021.3) Oculoglandular tularemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\" + }, + { + "displayName": "(021.8) Other specified tularemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\(021.8) Other specified tularemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Tularemia (021)\\\\(021.8) Other specified tularemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\" + }, + { + "displayName": "(021.9) Unspecified tularemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\(021.9) Unspecified tularemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Infectious and parasitic diseases (001-139.99)\\\\Zoonotic bacterial diseases (020-027.99)\\\\Tularemia (021)\\\\(021.9) Unspecified tularemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Infectious and parasitic diseases (001-139.99)\\Zoonotic bacterial diseases (020-027.99)\\Tularemia (021)\\" + }, + { + "displayName": "Injury and poisoning (800-999.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Burns (940-949.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Burn confined to eye and adnexa (940)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn confined to eye and adnexa (940)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\" + }, + { + "displayName": "(940.0) Chemical burn of eyelids and periocular area", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\(940.0) Chemical burn of eyelids and periocular area\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn confined to eye and adnexa (940)\\\\(940.0) Chemical burn of eyelids and periocular area\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\" + }, + { + "displayName": "(940.1) Other burns of eyelids and periocular area", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\(940.1) Other burns of eyelids and periocular area\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn confined to eye and adnexa (940)\\\\(940.1) Other burns of eyelids and periocular area\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\" + }, + { + "displayName": "(940.2) Alkaline chemical burn of cornea and conjunctival sac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\(940.2) Alkaline chemical burn of cornea and conjunctival sac\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn confined to eye and adnexa (940)\\\\(940.2) Alkaline chemical burn of cornea and conjunctival sac\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\" + }, + { + "displayName": "(940.3) Acid chemical burn of cornea and conjunctival sac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\(940.3) Acid chemical burn of cornea and conjunctival sac\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn confined to eye and adnexa (940)\\\\(940.3) Acid chemical burn of cornea and conjunctival sac\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\" + }, + { + "displayName": "(940.4) Other burn of cornea and conjunctival sac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\(940.4) Other burn of cornea and conjunctival sac\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\" + }, + { + "displayName": "(940.5) Burn with resulting rupture and destruction of eyeball", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\(940.5) Burn with resulting rupture and destruction of eyeball\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\" + }, + { + "displayName": "(940.9) Unspecified burn of eye and adnexa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\(940.9) Unspecified burn of eye and adnexa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn confined to eye and adnexa (940)\\" + }, + { + "displayName": "Burn of face, head, and neck (941)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\" + }, + { + "displayName": "Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\" + }, + { + "displayName": "(941.20) Blisters, epidermal loss [second degree] of face and head, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\(941.20) Blisters, epidermal loss [second degree] of face and head, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\" + }, + { + "displayName": "(941.21) Blisters, epidermal loss [second degree] of ear [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\(941.21) Blisters, epidermal loss [second degree] of ear [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\" + }, + { + "displayName": "(941.22) Blisters, epidermal loss [second degree] of eye (with other parts of face, head, and neck)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\(941.22) Blisters, epidermal loss [second degree] of eye (with other parts of face, head, and neck)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\" + }, + { + "displayName": "(941.23) Blisters, epidermal loss [second degree] of lip(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\(941.23) Blisters, epidermal loss [second degree] of lip(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\" + }, + { + "displayName": "(941.24) Blisters, epidermal loss [second degree] of chin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\(941.24) Blisters, epidermal loss [second degree] of chin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\" + }, + { + "displayName": "(941.25) Blisters, epidermal loss [second degree] of nose (septum)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\(941.25) Blisters, epidermal loss [second degree] of nose (septum)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\" + }, + { + "displayName": "(941.26) Blisters, epidermal loss [second degree] of scalp [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\(941.26) Blisters, epidermal loss [second degree] of scalp [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\" + }, + { + "displayName": "(941.27) Blisters, epidermal loss [second degree] of forehead and cheek", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\(941.27) Blisters, epidermal loss [second degree] of forehead and cheek\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\" + }, + { + "displayName": "(941.28) Blisters, epidermal loss [second degree] of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\(941.28) Blisters, epidermal loss [second degree] of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\" + }, + { + "displayName": "(941.29) Blisters, epidermal loss [second degree] of multiple sites [except with eye] of face, head, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\(941.29) Blisters, epidermal loss [second degree] of multiple sites [except with eye] of face, head, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Blisters with epidermal loss due to burn [second degree] of face, head, and neck (941.2)\\" + }, + { + "displayName": "Burn of face, head, and neck, unspecified degree (941.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\" + }, + { + "displayName": "(941.00) Burn of unspecified degree of face and head, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\(941.00) Burn of unspecified degree of face and head, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\" + }, + { + "displayName": "(941.01) Burn of unspecified degree of ear [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\(941.01) Burn of unspecified degree of ear [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\" + }, + { + "displayName": "(941.02) Burn of unspecified degree of eye (with other parts of face, head, and neck)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\(941.02) Burn of unspecified degree of eye (with other parts of face, head, and neck)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Burn of face, head, and neck, unspecified degree (941.0)\\\\(941.02) Burn of unspecified degree of eye (with other parts of face, head, and neck)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\" + }, + { + "displayName": "(941.03) Burn of unspecified degree of lip(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\(941.03) Burn of unspecified degree of lip(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Burn of face, head, and neck, unspecified degree (941.0)\\\\(941.03) Burn of unspecified degree of lip(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\" + }, + { + "displayName": "(941.04) Burn of unspecified degree of chin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\(941.04) Burn of unspecified degree of chin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Burn of face, head, and neck, unspecified degree (941.0)\\\\(941.04) Burn of unspecified degree of chin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\" + }, + { + "displayName": "(941.05) Burn of unspecified degree of nose (septum)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\(941.05) Burn of unspecified degree of nose (septum)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Burn of face, head, and neck, unspecified degree (941.0)\\\\(941.05) Burn of unspecified degree of nose (septum)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\" + }, + { + "displayName": "(941.06) Burn of unspecified degree of scalp [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\(941.06) Burn of unspecified degree of scalp [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\" + }, + { + "displayName": "(941.07) Burn of unspecified degree of forehead and cheek", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\(941.07) Burn of unspecified degree of forehead and cheek\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\" + }, + { + "displayName": "(941.08) Burn of unspecified degree of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\(941.08) Burn of unspecified degree of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\" + }, + { + "displayName": "(941.09) Burn of unspecified degree of multiple sites [except with eye] of face, head, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\(941.09) Burn of unspecified degree of multiple sites [except with eye] of face, head, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Burn of face, head, and neck, unspecified degree (941.0)\\" + }, + { + "displayName": "Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\" + }, + { + "displayName": "(941.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of face and head, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\(941.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of face and head, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\" + }, + { + "displayName": "(941.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ear [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\(941.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ear [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\" + }, + { + "displayName": "(941.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of eye (with other parts of face, head, and neck)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\(941.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of eye (with other parts of face, head, and neck)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\" + }, + { + "displayName": "(941.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lip(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\(941.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lip(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\" + }, + { + "displayName": "(941.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\(941.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\" + }, + { + "displayName": "(941.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of nose (septum)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\(941.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of nose (septum)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\" + }, + { + "displayName": "(941.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scalp [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\(941.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scalp [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\" + }, + { + "displayName": "(941.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of forehead and cheek", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\(941.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of forehead and cheek\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\\\(941.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of forehead and cheek\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\" + }, + { + "displayName": "(941.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\(941.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\\\(941.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\" + }, + { + "displayName": "(941.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites [except with eye] of face, head, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\(941.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites [except with eye] of face, head, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck with loss of a body part (941.5)\\" + }, + { + "displayName": "Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\" + }, + { + "displayName": "(941.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, face and head, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\(941.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, face and head, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\" + }, + { + "displayName": "(941.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, ear [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\(941.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, ear [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\" + }, + { + "displayName": "(941.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of eye (with other parts of face, head, and neck)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\(941.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of eye (with other parts of face, head, and neck)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\" + }, + { + "displayName": "(941.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lip(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\(941.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lip(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\" + }, + { + "displayName": "(941.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\(941.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\" + }, + { + "displayName": "(941.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of nose (septum)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\(941.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of nose (septum)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\" + }, + { + "displayName": "(941.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part of scalp [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\(941.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part of scalp [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\" + }, + { + "displayName": "(941.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forehead and cheek", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\(941.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forehead and cheek\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\" + }, + { + "displayName": "(941.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\(941.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\\\(941.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\" + }, + { + "displayName": "(941.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites [except with eye] of face, head, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\(941.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites [except with eye] of face, head, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Deep necrosis of underlying tissues due to burn [deep third degree] of face, head, and neck without mention of loss of a body part (941.4)\\" + }, + { + "displayName": "Erythema due to burn [first degree] of face, head, and neck (941.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\" + }, + { + "displayName": "(941.10) Erythema [first degree] of face and head, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\(941.10) Erythema [first degree] of face and head, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\\\(941.10) Erythema [first degree] of face and head, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\" + }, + { + "displayName": "(941.11) Erythema [first degree] of ear [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\(941.11) Erythema [first degree] of ear [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\\\(941.11) Erythema [first degree] of ear [any part]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\" + }, + { + "displayName": "(941.12) Erythema [first degree] of eye (with other parts face, head, and neck)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\(941.12) Erythema [first degree] of eye (with other parts face, head, and neck)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\" + }, + { + "displayName": "(941.13) Erythema [first degree] of lip(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\(941.13) Erythema [first degree] of lip(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\" + }, + { + "displayName": "(941.14) Erythema [first degree] of chin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\(941.14) Erythema [first degree] of chin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\" + }, + { + "displayName": "(941.15) Erythema [first degree] of nose (septum)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\(941.15) Erythema [first degree] of nose (septum)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\" + }, + { + "displayName": "(941.16) Erythema [first degree] of scalp [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\(941.16) Erythema [first degree] of scalp [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\" + }, + { + "displayName": "(941.17) Erythema [first degree] of forehead and cheek", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\(941.17) Erythema [first degree] of forehead and cheek\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\" + }, + { + "displayName": "(941.18) Erythema [first degree] of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\(941.18) Erythema [first degree] of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\" + }, + { + "displayName": "(941.19) Erythema [first degree] of multiple sites [except with eye] of face, head, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\(941.19) Erythema [first degree] of multiple sites [except with eye] of face, head, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Erythema due to burn [first degree] of face, head, and neck (941.1)\\" + }, + { + "displayName": "Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\" + }, + { + "displayName": "(941.30) Full-thickness skin loss [third degree, not otherwise specified] of face and head, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\(941.30) Full-thickness skin loss [third degree, not otherwise specified] of face and head, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\\\(941.30) Full-thickness skin loss [third degree, not otherwise specified] of face and head, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\" + }, + { + "displayName": "(941.31) Full-thickness skin loss [third degree, not otherwise specified] of ear [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\(941.31) Full-thickness skin loss [third degree, not otherwise specified] of ear [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\" + }, + { + "displayName": "(941.32) Full-thickness skin loss [third degree, not otherwise specified] of eye (with other parts of face, head, and neck)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\(941.32) Full-thickness skin loss [third degree, not otherwise specified] of eye (with other parts of face, head, and neck)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\" + }, + { + "displayName": "(941.33) Full-thickness skin loss [third degree, not otherwise specified] of lip(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\(941.33) Full-thickness skin loss [third degree, not otherwise specified] of lip(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\" + }, + { + "displayName": "(941.34) Full-thickness skin loss [third degree, not otherwise specified] of chin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\(941.34) Full-thickness skin loss [third degree, not otherwise specified] of chin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\" + }, + { + "displayName": "(941.35) Full-thickness skin loss [third degree, not otherwise specified] of nose (septum)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\(941.35) Full-thickness skin loss [third degree, not otherwise specified] of nose (septum)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\" + }, + { + "displayName": "(941.36) Full-thickness skin loss [third degree, not otherwise specified] of scalp [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\(941.36) Full-thickness skin loss [third degree, not otherwise specified] of scalp [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\" + }, + { + "displayName": "(941.37) Full-thickness skin loss [third degree, not otherwise specified] of forehead and cheek", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\(941.37) Full-thickness skin loss [third degree, not otherwise specified] of forehead and cheek\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\\\(941.37) Full-thickness skin loss [third degree, not otherwise specified] of forehead and cheek\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\" + }, + { + "displayName": "(941.38) Full-thickness skin loss [third degree, not otherwise specified] of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\(941.38) Full-thickness skin loss [third degree, not otherwise specified] of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of face, head, and neck (941)\\\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\\\(941.38) Full-thickness skin loss [third degree, not otherwise specified] of neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\" + }, + { + "displayName": "(941.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites [except with eye] of face, head, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\(941.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites [except with eye] of face, head, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of face, head, and neck (941)\\Full-thickness skin loss due to burn [third degree NOS] of face, head, and neck (941.3)\\" + }, + { + "displayName": "Burn of internal organs (947)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\" + }, + { + "displayName": "(947.0) Burn of mouth and pharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\(947.0) Burn of mouth and pharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\" + }, + { + "displayName": "(947.1) Burn of larynx, trachea, and lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\(947.1) Burn of larynx, trachea, and lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of internal organs (947)\\\\(947.1) Burn of larynx, trachea, and lung\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\" + }, + { + "displayName": "(947.2) Burn of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\(947.2) Burn of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\" + }, + { + "displayName": "(947.3) Burn of gastrointestinal tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\(947.3) Burn of gastrointestinal tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\" + }, + { + "displayName": "(947.4) Burn of vagina and uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\(947.4) Burn of vagina and uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\" + }, + { + "displayName": "(947.8) Burn of other specified sites of internal organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\(947.8) Burn of other specified sites of internal organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\" + }, + { + "displayName": "(947.9) Burn of internal organs, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\(947.9) Burn of internal organs, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of internal organs (947)\\" + }, + { + "displayName": "Burn of lower limb(s) (945)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\" + }, + { + "displayName": "Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\" + }, + { + "displayName": "(945.20) Blisters, epidermal loss [second degree] of lower limb [leg], unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\(945.20) Blisters, epidermal loss [second degree] of lower limb [leg], unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\" + }, + { + "displayName": "(945.21) Blisters, epidermal loss [second degree] of toe(s) (nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\(945.21) Blisters, epidermal loss [second degree] of toe(s) (nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\" + }, + { + "displayName": "(945.22) Blisters, epidermal loss [second degree] of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\(945.22) Blisters, epidermal loss [second degree] of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\" + }, + { + "displayName": "(945.23) Blisters, epidermal loss [second degree] of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\(945.23) Blisters, epidermal loss [second degree] of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\" + }, + { + "displayName": "(945.24) Blisters, epidermal loss [second degree] of lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\(945.24) Blisters, epidermal loss [second degree] of lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\" + }, + { + "displayName": "(945.25) Blisters, epidermal loss [second degree] of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\(945.25) Blisters, epidermal loss [second degree] of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\" + }, + { + "displayName": "(945.26) Blisters, epidermal loss [second degree] of thigh [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\(945.26) Blisters, epidermal loss [second degree] of thigh [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\" + }, + { + "displayName": "(945.29) Blisters, epidermal loss [second degree] of multiple sites of lower limb(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\(945.29) Blisters, epidermal loss [second degree] of multiple sites of lower limb(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Blisters with epidermal loss due to burn [second degree] of lower limb(s) (945.2)\\" + }, + { + "displayName": "Burn of lower limb(s), unspecified degree (945.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\" + }, + { + "displayName": "(945.00) Burn of unspecified degree of lower limb [leg], unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\(945.00) Burn of unspecified degree of lower limb [leg], unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\" + }, + { + "displayName": "(945.01) Burn of unspecified degree of toe(s) (nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\(945.01) Burn of unspecified degree of toe(s) (nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\" + }, + { + "displayName": "(945.02) Burn of unspecified degree of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\(945.02) Burn of unspecified degree of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\" + }, + { + "displayName": "(945.03) Burn of unspecified degree of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\(945.03) Burn of unspecified degree of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Burn of lower limb(s), unspecified degree (945.0)\\\\(945.03) Burn of unspecified degree of ankle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\" + }, + { + "displayName": "(945.04) Burn of unspecified degree of lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\(945.04) Burn of unspecified degree of lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Burn of lower limb(s), unspecified degree (945.0)\\\\(945.04) Burn of unspecified degree of lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\" + }, + { + "displayName": "(945.05) Burn of unspecified degree of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\(945.05) Burn of unspecified degree of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\" + }, + { + "displayName": "(945.06) Burn of unspecified degree of thigh [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\(945.06) Burn of unspecified degree of thigh [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\" + }, + { + "displayName": "(945.09) Burn of unspecified degree of multiple sites of lower limb(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\(945.09) Burn of unspecified degree of multiple sites of lower limb(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Burn of lower limb(s), unspecified degree (945.0)\\" + }, + { + "displayName": "Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\" + }, + { + "displayName": "(945.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower limb [leg], unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\(945.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower limb [leg], unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\" + }, + { + "displayName": "(945.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of toe(s) (nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\(945.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of toe(s) (nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\\\(945.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of toe(s) (nail)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\" + }, + { + "displayName": "(945.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\(945.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\\\(945.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\" + }, + { + "displayName": "(945.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\(945.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\\\(945.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of ankle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\" + }, + { + "displayName": "(945.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\(945.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\\\(945.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\" + }, + { + "displayName": "(945.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\(945.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\" + }, + { + "displayName": "(945.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thigh [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\(945.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thigh [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\" + }, + { + "displayName": "(945.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of lower limb(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\(945.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of lower limb(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) with loss of a body part (945.5)\\" + }, + { + "displayName": "Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\" + }, + { + "displayName": "(945.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, lower limb [leg], unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\(945.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, lower limb [leg], unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\\\(945.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, lower limb [leg], unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\" + }, + { + "displayName": "(945.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of toe(s)(nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\(945.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of toe(s)(nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\\\(945.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of toe(s)(nail)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\" + }, + { + "displayName": "(945.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\(945.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\\\(945.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\" + }, + { + "displayName": "(945.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\(945.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\\\(945.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of ankle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\" + }, + { + "displayName": "(945.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\(945.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\" + }, + { + "displayName": "(945.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\(945.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\" + }, + { + "displayName": "(945.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of thigh [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\(945.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of thigh [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\" + }, + { + "displayName": "(945.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of lower limb(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\(945.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of lower limb(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Deep necrosis of underlying tissues due to burn [deep third degree] of lower limb(s) without mention of loss of a body part (945.4)\\" + }, + { + "displayName": "Erythema due to burn [first degree] of lower limb(s) (945.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\" + }, + { + "displayName": "(945.10) Erythema [first degree] of lower limb [leg], unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\(945.10) Erythema [first degree] of lower limb [leg], unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\" + }, + { + "displayName": "(945.11) Erythema [first degree] of toe(s) (nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\(945.11) Erythema [first degree] of toe(s) (nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\" + }, + { + "displayName": "(945.12) Erythema [first degree] of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\(945.12) Erythema [first degree] of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\" + }, + { + "displayName": "(945.13) Erythema [first degree] of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\(945.13) Erythema [first degree] of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\" + }, + { + "displayName": "(945.14) Erythema [first degree] of lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\(945.14) Erythema [first degree] of lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\" + }, + { + "displayName": "(945.15) Erythema [first degree] of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\(945.15) Erythema [first degree] of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\" + }, + { + "displayName": "(945.16) Erythema [first degree] of thigh [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\(945.16) Erythema [first degree] of thigh [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\" + }, + { + "displayName": "(945.19) Erythema [first degree] of multiple sites of lower limb(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\(945.19) Erythema [first degree] of multiple sites of lower limb(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Erythema due to burn [first degree] of lower limb(s) (945.1)\\" + }, + { + "displayName": "Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\" + }, + { + "displayName": "(945.30) Full-thickness skin loss [third degree NOS] of lower limb [leg] unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\(945.30) Full-thickness skin loss [third degree NOS] of lower limb [leg] unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\" + }, + { + "displayName": "(945.31) Full-thickness skin loss [third degree NOS] of toe(s) (nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\(945.31) Full-thickness skin loss [third degree NOS] of toe(s) (nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\" + }, + { + "displayName": "(945.32) Full-thickness skin loss [third degree NOS] of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\(945.32) Full-thickness skin loss [third degree NOS] of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\\\(945.32) Full-thickness skin loss [third degree NOS] of foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\" + }, + { + "displayName": "(945.33) Full-thickness skin loss [third degree NOS] of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\(945.33) Full-thickness skin loss [third degree NOS] of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\\\(945.33) Full-thickness skin loss [third degree NOS] of ankle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\" + }, + { + "displayName": "(945.34) Full-thickness skin loss [third degree nos] of lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\(945.34) Full-thickness skin loss [third degree nos] of lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\\\(945.34) Full-thickness skin loss [third degree nos] of lower leg\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\" + }, + { + "displayName": "(945.35) Full-thickness skin loss [third degree NOS] of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\(945.35) Full-thickness skin loss [third degree NOS] of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\" + }, + { + "displayName": "(945.36) Full-thickness skin loss [third degree NOS] of thigh [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\(945.36) Full-thickness skin loss [third degree NOS] of thigh [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\\\(945.36) Full-thickness skin loss [third degree NOS] of thigh [any part]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\" + }, + { + "displayName": "(945.39) Full-thickness skin loss [third degree NOS] of multiple sites of lower limb(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\(945.39) Full-thickness skin loss [third degree NOS] of multiple sites of lower limb(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of lower limb(s) (945)\\\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\\\(945.39) Full-thickness skin loss [third degree NOS] of multiple sites of lower limb(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of lower limb(s) (945)\\Full-thickness skin loss due to burn [third degree NOS] of lower limb(s) (945.3)\\" + }, + { + "displayName": "Burn of trunk (942)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of trunk (942)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\" + }, + { + "displayName": "Blisters with epidermal loss due to burn [second degree] of trunk (942.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of trunk (942)\\\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\" + }, + { + "displayName": "(942.20) Blisters, epidermal loss [second degree] of trunk, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\(942.20) Blisters, epidermal loss [second degree] of trunk, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\" + }, + { + "displayName": "(942.21) Blisters, epidermal loss [second degree] of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\(942.21) Blisters, epidermal loss [second degree] of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of trunk (942)\\\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\\\(942.21) Blisters, epidermal loss [second degree] of breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\" + }, + { + "displayName": "(942.22) Blisters, epidermal loss [second degree] of chest wall, excluding breast and nipple", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\(942.22) Blisters, epidermal loss [second degree] of chest wall, excluding breast and nipple\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of trunk (942)\\\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\\\(942.22) Blisters, epidermal loss [second degree] of chest wall, excluding breast and nipple\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\" + }, + { + "displayName": "(942.23) Blisters, epidermal loss [second degree] of abdominal wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\(942.23) Blisters, epidermal loss [second degree] of abdominal wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\" + }, + { + "displayName": "(942.24) Blisters, epidermal loss [second degree] of back [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\(942.24) Blisters, epidermal loss [second degree] of back [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\" + }, + { + "displayName": "(942.25) Blisters, epidermal loss [second degree] of genitalia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\(942.25) Blisters, epidermal loss [second degree] of genitalia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of trunk (942)\\\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\\\(942.25) Blisters, epidermal loss [second degree] of genitalia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\" + }, + { + "displayName": "(942.29) Blisters, epidermal loss [second degree] of other and multiple sites of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\(942.29) Blisters, epidermal loss [second degree] of other and multiple sites of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of trunk (942)\\\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\\\(942.29) Blisters, epidermal loss [second degree] of other and multiple sites of trunk\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Blisters with epidermal loss due to burn [second degree] of trunk (942.2)\\" + }, + { + "displayName": "Burn of trunk, unspecified degree (942.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of trunk (942)\\\\Burn of trunk, unspecified degree (942.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\" + }, + { + "displayName": "(942.00) Burn of unspecified degree of trunk, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\(942.00) Burn of unspecified degree of trunk, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\" + }, + { + "displayName": "(942.01) Burn of unspecified degree of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\(942.01) Burn of unspecified degree of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\" + }, + { + "displayName": "(942.02) Burn of unspecified degree of chest wall, excluding breast and nipple", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\(942.02) Burn of unspecified degree of chest wall, excluding breast and nipple\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of trunk (942)\\\\Burn of trunk, unspecified degree (942.0)\\\\(942.02) Burn of unspecified degree of chest wall, excluding breast and nipple\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\" + }, + { + "displayName": "(942.03) Burn of unspecified degree of abdominal wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\(942.03) Burn of unspecified degree of abdominal wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of trunk (942)\\\\Burn of trunk, unspecified degree (942.0)\\\\(942.03) Burn of unspecified degree of abdominal wall\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\" + }, + { + "displayName": "(942.04) Burn of unspecified degree of back [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\(942.04) Burn of unspecified degree of back [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\" + }, + { + "displayName": "(942.05) Burn of unspecified degree of genitalia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\(942.05) Burn of unspecified degree of genitalia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\" + }, + { + "displayName": "(942.09) Burn of unspecified degree of other and multiple sites of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\(942.09) Burn of unspecified degree of other and multiple sites of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Burn of trunk, unspecified degree (942.0)\\" + }, + { + "displayName": "Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\" + }, + { + "displayName": "(942.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, trunk, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\(942.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, trunk, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\" + }, + { + "displayName": "(942.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\(942.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\" + }, + { + "displayName": "(942.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chest wall, excluding breast and nipple", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\(942.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of chest wall, excluding breast and nipple\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\" + }, + { + "displayName": "(942.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of abdominal wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\(942.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of abdominal wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\" + }, + { + "displayName": "(942.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\(942.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\" + }, + { + "displayName": "(942.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of genitalia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\(942.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of genitalia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\" + }, + { + "displayName": "(942.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of other and multiple sites of trunk,", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\(942.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of other and multiple sites of trunk,\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of trunk (942)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\\\(942.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of other and multiple sites of trunk,\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk with loss of a body part (942.5)\\" + }, + { + "displayName": "Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\" + }, + { + "displayName": "(942.40) Deep necrosis of underlying tissues [deep third degree] ) without mention of loss of a body part, of trunk, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\(942.40) Deep necrosis of underlying tissues [deep third degree] ) without mention of loss of a body part, of trunk, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\" + }, + { + "displayName": "(942.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\(942.41) Deep necrosis of underlying tissues [deep third degree]) without mention of loss of a body part, of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\" + }, + { + "displayName": "(942.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chest wall, excluding breast and nipple", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\(942.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of chest wall, excluding breast and nipple\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\" + }, + { + "displayName": "(942.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of abdominal wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\(942.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of abdominal wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\" + }, + { + "displayName": "(942.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\(942.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\" + }, + { + "displayName": "(942.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of genitalia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\(942.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of genitalia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\" + }, + { + "displayName": "(942.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of other and multiple sites of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\(942.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of other and multiple sites of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Deep necrosis of underlying tissues due to burn [deep third degree] of trunk without mention of loss of body part (942.4)\\" + }, + { + "displayName": "Erythema due to burn [first degree] of trunk (942.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of trunk (942)\\\\Erythema due to burn [first degree] of trunk (942.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\" + }, + { + "displayName": "(942.10) Erythema [first degree] of trunk, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\(942.10) Erythema [first degree] of trunk, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\" + }, + { + "displayName": "(942.11) Erythema [first degree] of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\(942.11) Erythema [first degree] of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\" + }, + { + "displayName": "(942.12) Erythema [first degree] of chest wall, excluding breast and nipple", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\(942.12) Erythema [first degree] of chest wall, excluding breast and nipple\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\" + }, + { + "displayName": "(942.13) Erythema [first degree] of abdominal wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\(942.13) Erythema [first degree] of abdominal wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\" + }, + { + "displayName": "(942.14) Erythema [first degree] of back [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\(942.14) Erythema [first degree] of back [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\" + }, + { + "displayName": "(942.15) Erythema [first degree] of genitalia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\(942.15) Erythema [first degree] of genitalia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\" + }, + { + "displayName": "(942.19) Erythema [first degree] of other and multiple sites of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\(942.19) Erythema [first degree] of other and multiple sites of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Erythema due to burn [first degree] of trunk (942.1)\\" + }, + { + "displayName": "Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\" + }, + { + "displayName": "(942.30) Full-thickness skin loss [third degree, not otherwise specified] of trunk, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\(942.30) Full-thickness skin loss [third degree, not otherwise specified] of trunk, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\" + }, + { + "displayName": "(942.31) Full-thickness skin loss [third degree,not otherwise specified] of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\(942.31) Full-thickness skin loss [third degree,not otherwise specified] of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\" + }, + { + "displayName": "(942.32) Full-thickness skin loss [third degree, not otherwise specified] of chest wall, excluding breast and nipple", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\(942.32) Full-thickness skin loss [third degree, not otherwise specified] of chest wall, excluding breast and nipple\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\" + }, + { + "displayName": "(942.33) Full-thickness skin loss [third degree, not otherwise specified] of abdominal wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\(942.33) Full-thickness skin loss [third degree, not otherwise specified] of abdominal wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\" + }, + { + "displayName": "(942.34) Full-thickness skin loss [third degree,not otherwise specified] of back [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\(942.34) Full-thickness skin loss [third degree,not otherwise specified] of back [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\" + }, + { + "displayName": "(942.35) Full-thickness skin loss [third degree, not otherwise specified] of genitalia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\(942.35) Full-thickness skin loss [third degree, not otherwise specified] of genitalia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\" + }, + { + "displayName": "(942.39) Full-thickness skin loss [third degree, not otherwise specified] of other and multiple sites of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\(942.39) Full-thickness skin loss [third degree, not otherwise specified] of other and multiple sites of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of trunk (942)\\Full-thickness skin loss due to burn [third degree NOS] of trunk (942.3)\\" + }, + { + "displayName": "Burn of upper limb, except wrist and hand (943)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\" + }, + { + "displayName": "Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\" + }, + { + "displayName": "(943.20) Blisters, epidermal loss [second degree] of upper limb, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\(943.20) Blisters, epidermal loss [second degree] of upper limb, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\" + }, + { + "displayName": "(943.21) Blisters, epidermal loss [second degree] of forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\(943.21) Blisters, epidermal loss [second degree] of forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\" + }, + { + "displayName": "(943.22) Blisters, epidermal loss [second degree] of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\(943.22) Blisters, epidermal loss [second degree] of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of upper limb, except wrist and hand (943)\\\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\\\(943.22) Blisters, epidermal loss [second degree] of elbow\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\" + }, + { + "displayName": "(943.23) Blisters, epidermal loss [second degree] of upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\(943.23) Blisters, epidermal loss [second degree] of upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of upper limb, except wrist and hand (943)\\\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\\\(943.23) Blisters, epidermal loss [second degree] of upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\" + }, + { + "displayName": "(943.24) Blisters, epidermal loss [second degree] of axilla", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\(943.24) Blisters, epidermal loss [second degree] of axilla\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of upper limb, except wrist and hand (943)\\\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\\\(943.24) Blisters, epidermal loss [second degree] of axilla\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\" + }, + { + "displayName": "(943.25) Blisters, epidermal loss [second degree] of shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\(943.25) Blisters, epidermal loss [second degree] of shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of upper limb, except wrist and hand (943)\\\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\\\(943.25) Blisters, epidermal loss [second degree] of shoulder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\" + }, + { + "displayName": "(943.26) Blisters, epidermal loss [second degree] of scapular region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\(943.26) Blisters, epidermal loss [second degree] of scapular region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\" + }, + { + "displayName": "(943.29) Blisters, epidermal loss [second degree] of multiple sites of upper limb, except wrist and hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\(943.29) Blisters, epidermal loss [second degree] of multiple sites of upper limb, except wrist and hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Blisters with epidermal loss due to burn [second degree] of upper limb, except wrist and hand (943.2)\\" + }, + { + "displayName": "Burn of upper limb, except wrist and hand, unspecified degree (943.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\" + }, + { + "displayName": "(943.00) Burn of unspecified degree of upper limb, except wrist and hand, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\(943.00) Burn of unspecified degree of upper limb, except wrist and hand, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\" + }, + { + "displayName": "(943.01) Burn of unspecified degree of forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\(943.01) Burn of unspecified degree of forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\" + }, + { + "displayName": "(943.02) Burn of unspecified degree of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\(943.02) Burn of unspecified degree of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\" + }, + { + "displayName": "(943.03) Burn of unspecified degree of upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\(943.03) Burn of unspecified degree of upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of upper limb, except wrist and hand (943)\\\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\\\(943.03) Burn of unspecified degree of upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\" + }, + { + "displayName": "(943.04) Burn of unspecified degree of axilla", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\(943.04) Burn of unspecified degree of axilla\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of upper limb, except wrist and hand (943)\\\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\\\(943.04) Burn of unspecified degree of axilla\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\" + }, + { + "displayName": "(943.05) Burn of unspecified degree of shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\(943.05) Burn of unspecified degree of shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of upper limb, except wrist and hand (943)\\\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\\\(943.05) Burn of unspecified degree of shoulder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\" + }, + { + "displayName": "(943.06) Burn of unspecified degree of scapular region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\(943.06) Burn of unspecified degree of scapular region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\" + }, + { + "displayName": "(943.09) Burn of unspecified degree of multiple sites of upper limb, except wrist and hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\(943.09) Burn of unspecified degree of multiple sites of upper limb, except wrist and hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Burn of upper limb, except wrist and hand, unspecified degree (943.0)\\" + }, + { + "displayName": "Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\" + }, + { + "displayName": "(943.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper limb, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\(943.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper limb, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\" + }, + { + "displayName": "(943.51) Deep necrosis of underlying tissues [deep third degree) with loss of a body part, of forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\(943.51) Deep necrosis of underlying tissues [deep third degree) with loss of a body part, of forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\" + }, + { + "displayName": "(943.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\(943.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\" + }, + { + "displayName": "(943.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\(943.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\" + }, + { + "displayName": "(943.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of axilla", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\(943.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of axilla\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\" + }, + { + "displayName": "(943.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\(943.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\" + }, + { + "displayName": "(943.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scapular region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\(943.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of scapular region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\" + }, + { + "displayName": "(943.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of upper limb, except wrist and hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\(943.59) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of upper limb, except wrist and hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, with loss of a body part (943.5)\\" + }, + { + "displayName": "Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\" + }, + { + "displayName": "(943.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper limb,unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\(943.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper limb,unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\" + }, + { + "displayName": "(943.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\(943.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\" + }, + { + "displayName": "(943.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\(943.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\" + }, + { + "displayName": "(943.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\(943.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\" + }, + { + "displayName": "(943.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of axilla", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\(943.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of axilla\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\" + }, + { + "displayName": "(943.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\(943.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\" + }, + { + "displayName": "(943.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of scapular region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\(943.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of scapular region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\" + }, + { + "displayName": "(943.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of upper limb, except wrist and hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\(943.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of upper limb, except wrist and hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of upper limb, except wrist and hand (943)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\\\(943.49) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of upper limb, except wrist and hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Deep necrosis of underlying tissues due to burn [deep third degree] of upper limb, except wrist and hand, without mention of loss of a body part (943.4)\\" + }, + { + "displayName": "Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of upper limb, except wrist and hand (943)\\\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\" + }, + { + "displayName": "(943.10) Erythema [first degree] of upper limb, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\(943.10) Erythema [first degree] of upper limb, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of upper limb, except wrist and hand (943)\\\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\\\(943.10) Erythema [first degree] of upper limb, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\" + }, + { + "displayName": "(943.11) Erythema [first degree] of forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\(943.11) Erythema [first degree] of forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\" + }, + { + "displayName": "(943.12) Erythema [first degree] of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\(943.12) Erythema [first degree] of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\" + }, + { + "displayName": "(943.13) Erythema [first degree] of upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\(943.13) Erythema [first degree] of upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\" + }, + { + "displayName": "(943.14) Erythema [first degree] of axilla", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\(943.14) Erythema [first degree] of axilla\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\" + }, + { + "displayName": "(943.15) Erythema [first degree] of shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\(943.15) Erythema [first degree] of shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\" + }, + { + "displayName": "(943.16) Erythema [first degree] of scapular region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\(943.16) Erythema [first degree] of scapular region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\" + }, + { + "displayName": "(943.19) Erythema [first degree] of multiple sites of upper limb, except wrist and hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\(943.19) Erythema [first degree] of multiple sites of upper limb, except wrist and hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Erythema due to burn [first degree] of upper limb, except wrist and hand (943.1)\\" + }, + { + "displayName": "Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\" + }, + { + "displayName": "(943.30) Full-thickness skin [third degree, not otherwise specified] of upper limb, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\(943.30) Full-thickness skin [third degree, not otherwise specified] of upper limb, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\" + }, + { + "displayName": "(943.31) Full-thickness skin loss [third degree, not otherwise specified] of forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\(943.31) Full-thickness skin loss [third degree, not otherwise specified] of forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\" + }, + { + "displayName": "(943.32) Full-thickness skin loss [third degree, not otherwise specified] of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\(943.32) Full-thickness skin loss [third degree, not otherwise specified] of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\" + }, + { + "displayName": "(943.33) Full-thickness skin loss [third degree, not otherwise specified] of upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\(943.33) Full-thickness skin loss [third degree, not otherwise specified] of upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\" + }, + { + "displayName": "(943.34) Full-thickness skin loss [third degree, not otherwise specified] of axilla", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\(943.34) Full-thickness skin loss [third degree, not otherwise specified] of axilla\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\" + }, + { + "displayName": "(943.35) Full-thickness skin loss [third degree, not otherwise specified] of shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\(943.35) Full-thickness skin loss [third degree, not otherwise specified] of shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\" + }, + { + "displayName": "(943.36) Full-thickness skin loss [third degree, not otherwise specified] of scapular region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\(943.36) Full-thickness skin loss [third degree, not otherwise specified] of scapular region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\" + }, + { + "displayName": "(943.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of upper limb, except wrist and hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\(943.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of upper limb, except wrist and hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of upper limb, except wrist and hand (943)\\\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\\\(943.39) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of upper limb, except wrist and hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of upper limb, except wrist and hand (943)\\Full-thickness skin loss due to burn [third degree NOS] of upper limb, except wrist and hand (943.3)\\" + }, + { + "displayName": "Burn of wrist(s) and hand(s) (944)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\" + }, + { + "displayName": "Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\" + }, + { + "displayName": "(944.20) Blisters, epidermal loss [second degree] of hand, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\(944.20) Blisters, epidermal loss [second degree] of hand, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\" + }, + { + "displayName": "(944.21) Blisters, epidermal loss [second degree] of single digit [finger (nail)] other than thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\(944.21) Blisters, epidermal loss [second degree] of single digit [finger (nail)] other than thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\\\(944.21) Blisters, epidermal loss [second degree] of single digit [finger (nail)] other than thumb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\" + }, + { + "displayName": "(944.22) Blisters, epidermal loss [second degree] of thumb (nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\(944.22) Blisters, epidermal loss [second degree] of thumb (nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\" + }, + { + "displayName": "(944.23) Blisters, epidermal loss [second degree] of two or more digits of hand, not including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\(944.23) Blisters, epidermal loss [second degree] of two or more digits of hand, not including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\" + }, + { + "displayName": "(944.24) Blisters, epidermal loss [second degree] of two or more digits of hand including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\(944.24) Blisters, epidermal loss [second degree] of two or more digits of hand including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\" + }, + { + "displayName": "(944.25) Blisters, epidermal loss [second degree] of palm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\(944.25) Blisters, epidermal loss [second degree] of palm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\" + }, + { + "displayName": "(944.26) Blisters , epidermal loss [second degree] of back of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\(944.26) Blisters , epidermal loss [second degree] of back of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\" + }, + { + "displayName": "(944.27) Blisters, epidermal loss [second degree] of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\(944.27) Blisters, epidermal loss [second degree] of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\" + }, + { + "displayName": "(944.28) Blisters, epidermal loss [second degree] of multiple sites of wrist(s) and hand(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\(944.28) Blisters, epidermal loss [second degree] of multiple sites of wrist(s) and hand(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Blisters with epidermal loss due to burn [second degree] of wrist(s) and hand(s) (944.2)\\" + }, + { + "displayName": "Burn of wrist(s) and hand(s), unspecified degree (944.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\" + }, + { + "displayName": "(944.00) Burn of unspecified degree of hand, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\(944.00) Burn of unspecified degree of hand, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\\\(944.00) Burn of unspecified degree of hand, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\" + }, + { + "displayName": "(944.01) Burn of unspecified degree of single digit (finger (nail) other than thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\(944.01) Burn of unspecified degree of single digit (finger (nail) other than thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\" + }, + { + "displayName": "(944.02) Burn of unspecified degree of thumb (nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\(944.02) Burn of unspecified degree of thumb (nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\\\(944.02) Burn of unspecified degree of thumb (nail)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\" + }, + { + "displayName": "(944.03) Burn of unspecified degree of two or more digits of hand, not including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\(944.03) Burn of unspecified degree of two or more digits of hand, not including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\\\(944.03) Burn of unspecified degree of two or more digits of hand, not including thumb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\" + }, + { + "displayName": "(944.04) Burn of unspecified degree of two or more digits of hand, including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\(944.04) Burn of unspecified degree of two or more digits of hand, including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\" + }, + { + "displayName": "(944.05) Burn of unspecified degree of palm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\(944.05) Burn of unspecified degree of palm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\" + }, + { + "displayName": "(944.06) Burn of unspecified degree of back of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\(944.06) Burn of unspecified degree of back of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\" + }, + { + "displayName": "(944.07) Burn of unspecified degree of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\(944.07) Burn of unspecified degree of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\" + }, + { + "displayName": "(944.08) Burn of unspecified degree of multiple sites of wrist(s) and hand(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\(944.08) Burn of unspecified degree of multiple sites of wrist(s) and hand(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Burn of wrist(s) and hand(s), unspecified degree (944.0)\\" + }, + { + "displayName": "Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\" + }, + { + "displayName": "(944.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of hand, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\(944.50) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of hand, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\" + }, + { + "displayName": "(944.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of single digit [finger (nail)] other than thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\(944.51) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of single digit [finger (nail)] other than thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\" + }, + { + "displayName": "(944.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thumb (nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\(944.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thumb (nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\\\(944.52) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of thumb (nail)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\" + }, + { + "displayName": "(944.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand, not including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\(944.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand, not including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\\\(944.53) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand, not including thumb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\" + }, + { + "displayName": "(944.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\(944.54) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of two or more digits of hand including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\" + }, + { + "displayName": "(944.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of palm of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\(944.55) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of palm of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\" + }, + { + "displayName": "(944.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\(944.56) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of back of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\" + }, + { + "displayName": "(944.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\(944.57) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\" + }, + { + "displayName": "(944.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of wrist(s) and hand(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\(944.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of wrist(s) and hand(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\\\(944.58) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple sites of wrist(s) and hand(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), with loss of a body part (944.5)\\" + }, + { + "displayName": "Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\" + }, + { + "displayName": "(944.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, hand, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\(944.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, hand, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\\\(944.40) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, hand, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\" + }, + { + "displayName": "(944.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, single digit [finger (nail)] other than thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\(944.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, single digit [finger (nail)] other than thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\\\(944.41) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, single digit [finger (nail)] other than thumb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\" + }, + { + "displayName": "(944.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, thumb (nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\(944.42) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, thumb (nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\" + }, + { + "displayName": "(944.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand, not including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\(944.43) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand, not including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\" + }, + { + "displayName": "(944.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\(944.44) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, two or more digits of hand including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\" + }, + { + "displayName": "(944.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of palm of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\(944.45) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of palm of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\" + }, + { + "displayName": "(944.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\(944.46) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of back of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\" + }, + { + "displayName": "(944.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\(944.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\\\(944.47) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\" + }, + { + "displayName": "(944.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of wrist(s) and hand(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\(944.48) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple sites of wrist(s) and hand(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Deep necrosis of underlying tissues due to burn [deep third degree] of wrist(s) and hand(s), without mention of loss of a body part (944.4)\\" + }, + { + "displayName": "Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\" + }, + { + "displayName": "(944.10) Erythema [first degree] of hand, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\(944.10) Erythema [first degree] of hand, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\\\(944.10) Erythema [first degree] of hand, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\" + }, + { + "displayName": "(944.11) Erythema [first degree] of single digit (finger (nail)) other than thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\(944.11) Erythema [first degree] of single digit (finger (nail)) other than thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\\\(944.11) Erythema [first degree] of single digit (finger (nail)) other than thumb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\" + }, + { + "displayName": "(944.12) Erythema [first degree] of thumb (nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\(944.12) Erythema [first degree] of thumb (nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\" + }, + { + "displayName": "(944.13) Erythema [first degree] of two or more digits of hand, not including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\(944.13) Erythema [first degree] of two or more digits of hand, not including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\\\(944.13) Erythema [first degree] of two or more digits of hand, not including thumb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\" + }, + { + "displayName": "(944.14) Erythema [first degree] of two or more digits of hand including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\(944.14) Erythema [first degree] of two or more digits of hand including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\" + }, + { + "displayName": "(944.15) Erythema [first degree] of palm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\(944.15) Erythema [first degree] of palm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\\\(944.15) Erythema [first degree] of palm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\" + }, + { + "displayName": "(944.16) Erythema [first degree] of back of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\(944.16) Erythema [first degree] of back of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\\\(944.16) Erythema [first degree] of back of hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\" + }, + { + "displayName": "(944.17) Erythema [first degree] of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\(944.17) Erythema [first degree] of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\" + }, + { + "displayName": "(944.18) Erythema [first degree] of multiple sites of wrist(s) and hand(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\(944.18) Erythema [first degree] of multiple sites of wrist(s) and hand(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\\\(944.18) Erythema [first degree] of multiple sites of wrist(s) and hand(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Erythema due to burn [first degree] of wrist(s) and hand(s) (944.1)\\" + }, + { + "displayName": "Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\" + }, + { + "displayName": "(944.30) Full-thickness skin loss [third degree, not otherwise specified] of hand, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\(944.30) Full-thickness skin loss [third degree, not otherwise specified] of hand, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\\\(944.30) Full-thickness skin loss [third degree, not otherwise specified] of hand, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\" + }, + { + "displayName": "(944.31) Full-thickness skin loss [third degree, not otherwise specified] of single digit [finger (nail)] other than thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\(944.31) Full-thickness skin loss [third degree, not otherwise specified] of single digit [finger (nail)] other than thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\" + }, + { + "displayName": "(944.32) Full-thickness skin loss [third degree, not otherwise specified] of thumb (nail)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\(944.32) Full-thickness skin loss [third degree, not otherwise specified] of thumb (nail)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\" + }, + { + "displayName": "(944.33) Full-thickness skin loss [third degree, not otherwise specified]of two or more digits of hand, not including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\(944.33) Full-thickness skin loss [third degree, not otherwise specified]of two or more digits of hand, not including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\\\(944.33) Full-thickness skin loss [third degree, not otherwise specified]of two or more digits of hand, not including thumb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\" + }, + { + "displayName": "(944.34) Full-thickness skin loss [third degree, not otherwise specified] of two or more digits of hand including thumb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\(944.34) Full-thickness skin loss [third degree, not otherwise specified] of two or more digits of hand including thumb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\\\(944.34) Full-thickness skin loss [third degree, not otherwise specified] of two or more digits of hand including thumb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\" + }, + { + "displayName": "(944.35) Full-thickness skin loss [third degree, not otherwise specified] of palm of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\(944.35) Full-thickness skin loss [third degree, not otherwise specified] of palm of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\" + }, + { + "displayName": "(944.36) Full-thickness skin loss [third degree, not otherwise specified] of back of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\(944.36) Full-thickness skin loss [third degree, not otherwise specified] of back of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\\\(944.36) Full-thickness skin loss [third degree, not otherwise specified] of back of hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\" + }, + { + "displayName": "(944.37) Full-thickness skin loss [third degree, not otherwise specified] of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\(944.37) Full-thickness skin loss [third degree, not otherwise specified] of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn of wrist(s) and hand(s) (944)\\\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\\\(944.37) Full-thickness skin loss [third degree, not otherwise specified] of wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\" + }, + { + "displayName": "(944.38) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of wrist(s) and hand(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\(944.38) Full-thickness skin loss [third degree, not otherwise specified] of multiple sites of wrist(s) and hand(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn of wrist(s) and hand(s) (944)\\Full-thickness skin loss due to burn [third degree NOS] of wrist(s) and hand(s) (944.3)\\" + }, + { + "displayName": "Burn, unspecified site (949)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burn, unspecified site (949)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\" + }, + { + "displayName": "(949.0) Burn of unspecified site, unspecified degree", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\(949.0) Burn of unspecified site, unspecified degree\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\" + }, + { + "displayName": "(949.1) Erythema [first degree], unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\(949.1) Erythema [first degree], unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\" + }, + { + "displayName": "(949.2) Blisters, epidermal loss [second degree], unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\(949.2) Blisters, epidermal loss [second degree], unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\" + }, + { + "displayName": "(949.3) Full-thickness skin loss [third degree nos]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\(949.3) Full-thickness skin loss [third degree nos]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\" + }, + { + "displayName": "(949.4) Deep necrosis of underlying tissue [deep third degree] without mention of loss of a body part, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\(949.4) Deep necrosis of underlying tissue [deep third degree] without mention of loss of a body part, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\" + }, + { + "displayName": "(949.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\(949.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burn, unspecified site (949)\\" + }, + { + "displayName": "Burns classified according to extent of body surface involved (948)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\" + }, + { + "displayName": "Burn [any degree] involving 10-19 percent of body surface (948.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 10-19 percent of body surface (948.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\" + }, + { + "displayName": "(948.10) Burn [any degree] involving 10-19 percent of body surface with third degree burn, less than 10 percent or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 10-19 percent of body surface (948.1)\\(948.10) Burn [any degree] involving 10-19 percent of body surface with third degree burn, less than 10 percent or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 10-19 percent of body surface (948.1)\\" + }, + { + "displayName": "(948.11) Burn [any degree] involving 10-19 percent of body surface with third degree burn, 10-19%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 10-19 percent of body surface (948.1)\\(948.11) Burn [any degree] involving 10-19 percent of body surface with third degree burn, 10-19%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 10-19 percent of body surface (948.1)\\\\(948.11) Burn [any degree] involving 10-19 percent of body surface with third degree burn, 10-19%\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 10-19 percent of body surface (948.1)\\" + }, + { + "displayName": "Burn [any degree] involving 20-29 percent of body surface (948.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 20-29 percent of body surface (948.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 20-29 percent of body surface (948.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\" + }, + { + "displayName": "(948.20) Burn [any degree] involving 20-29 percent of body surface with third degree burn, less than 10 percent or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 20-29 percent of body surface (948.2)\\(948.20) Burn [any degree] involving 20-29 percent of body surface with third degree burn, less than 10 percent or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 20-29 percent of body surface (948.2)\\\\(948.20) Burn [any degree] involving 20-29 percent of body surface with third degree burn, less than 10 percent or unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 20-29 percent of body surface (948.2)\\" + }, + { + "displayName": "(948.21) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 10-19%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 20-29 percent of body surface (948.2)\\(948.21) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 10-19%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 20-29 percent of body surface (948.2)\\\\(948.21) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 10-19%\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 20-29 percent of body surface (948.2)\\" + }, + { + "displayName": "(948.22) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 20-29%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 20-29 percent of body surface (948.2)\\(948.22) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 20-29%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 20-29 percent of body surface (948.2)\\\\(948.22) Burn [any degree] involving 20-29 percent of body surface with third degree burn, 20-29%\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 20-29 percent of body surface (948.2)\\" + }, + { + "displayName": "Burn [any degree] involving 30-39 percent of body surface (948.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\" + }, + { + "displayName": "(948.30) Burn [any degree] involving 30-39 percent of body surface with third degree burn, less than 10 percent or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\(948.30) Burn [any degree] involving 30-39 percent of body surface with third degree burn, less than 10 percent or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\\\(948.30) Burn [any degree] involving 30-39 percent of body surface with third degree burn, less than 10 percent or unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\" + }, + { + "displayName": "(948.31) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 10-19%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\(948.31) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 10-19%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\\\(948.31) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 10-19%\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\" + }, + { + "displayName": "(948.32) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 20-29%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\(948.32) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 20-29%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\\\(948.32) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 20-29%\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\" + }, + { + "displayName": "(948.33) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 30-39%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\(948.33) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 30-39%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\\\(948.33) Burn [any degree] involving 30-39 percent of body surface with third degree burn, 30-39%\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 30-39 percent of body surface (948.3)\\" + }, + { + "displayName": "Burn [any degree] involving 40-49 percent of body surface (948.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\" + }, + { + "displayName": "(948.40) Burn [any degree] involving 40-49 percent of body surface with third degree burn, less than 10 percent or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\(948.40) Burn [any degree] involving 40-49 percent of body surface with third degree burn, less than 10 percent or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\" + }, + { + "displayName": "(948.41) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 10-19%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\(948.41) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 10-19%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\" + }, + { + "displayName": "(948.42) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 20-29%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\(948.42) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 20-29%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\" + }, + { + "displayName": "(948.43) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 30-39%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\(948.43) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 30-39%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\\\(948.43) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 30-39%\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\" + }, + { + "displayName": "(948.44) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 40-49%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\(948.44) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 40-49%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\\\(948.44) Burn [any degree] involving 40-49 percent of body surface with third degree burn, 40-49%\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 40-49 percent of body surface (948.4)\\" + }, + { + "displayName": "Burn [any degree] involving 50-59 percent of body surface (948.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\" + }, + { + "displayName": "(948.50) Burn [any degree] involving 50-59 percent of body surface with third degree burn, less than 10 percent or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\(948.50) Burn [any degree] involving 50-59 percent of body surface with third degree burn, less than 10 percent or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\" + }, + { + "displayName": "(948.51) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 10-19%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\(948.51) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 10-19%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\" + }, + { + "displayName": "(948.52) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 20-29%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\(948.52) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 20-29%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\" + }, + { + "displayName": "(948.53) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 30-39%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\(948.53) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 30-39%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\" + }, + { + "displayName": "(948.54) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 40-49%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\(948.54) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 40-49%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\" + }, + { + "displayName": "(948.55) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 50-59%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\(948.55) Burn [any degree] involving 50-59 percent of body surface with third degree burn, 50-59%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 50-59 percent of body surface (948.5)\\" + }, + { + "displayName": "Burn [any degree] involving 60-69 percent of body surface (948.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\" + }, + { + "displayName": "(948.60) Burn [any degree] involving 60-69 percent of body surface with third degree burn, less than 10 percent or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\(948.60) Burn [any degree] involving 60-69 percent of body surface with third degree burn, less than 10 percent or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\" + }, + { + "displayName": "(948.61) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 10-19%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\(948.61) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 10-19%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\" + }, + { + "displayName": "(948.62) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 20-29%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\(948.62) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 20-29%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\" + }, + { + "displayName": "(948.63) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 30-39%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\(948.63) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 30-39%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\" + }, + { + "displayName": "(948.64) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 40-49%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\(948.64) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 40-49%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\" + }, + { + "displayName": "(948.65) Burn (any degree) involving 60-69 percent of body surface with third degree burn, 50-59%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\(948.65) Burn (any degree) involving 60-69 percent of body surface with third degree burn, 50-59%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\" + }, + { + "displayName": "(948.66) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 60-69%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\(948.66) Burn [any degree] involving 60-69 percent of body surface with third degree burn, 60-69%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 60-69 percent of body surface (948.6)\\" + }, + { + "displayName": "Burn [any degree] involving 70-79 percent of body surface (948.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\" + }, + { + "displayName": "(948.70) Burn [any degree] involving 70-79 percent of body surface with third degree burn, less than 10 percent or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\(948.70) Burn [any degree] involving 70-79 percent of body surface with third degree burn, less than 10 percent or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\" + }, + { + "displayName": "(948.71) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 10-19%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\(948.71) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 10-19%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\" + }, + { + "displayName": "(948.72) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 20-29%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\(948.72) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 20-29%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\" + }, + { + "displayName": "(948.73) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 30-39%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\(948.73) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 30-39%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\" + }, + { + "displayName": "(948.74) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 40-49%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\(948.74) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 40-49%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\" + }, + { + "displayName": "(948.75) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 50-59%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\(948.75) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 50-59%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\" + }, + { + "displayName": "(948.76) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 60-69%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\(948.76) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 60-69%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\" + }, + { + "displayName": "(948.77) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 70-79%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\(948.77) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 70-79%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\\\(948.77) Burn [any degree] involving 70-79 percent of body surface with third degree burn, 70-79%\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 70-79 percent of body surface (948.7)\\" + }, + { + "displayName": "Burn [any degree] involving 80-89 percent of body surface (948.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Burns (940-949.99)\\\\Burns classified according to extent of body surface involved (948)\\\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\" + }, + { + "displayName": "(948.80) Burn [any degree] involving 80-89 percent of body surface with third degree burn, less than 10 percent or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\(948.80) Burn [any degree] involving 80-89 percent of body surface with third degree burn, less than 10 percent or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\" + }, + { + "displayName": "(948.81) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 10-19%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\(948.81) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 10-19%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\" + }, + { + "displayName": "(948.82) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 20-29%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\(948.82) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 20-29%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\" + }, + { + "displayName": "(948.83) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 30-39%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\(948.83) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 30-39%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\" + }, + { + "displayName": "(948.84) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 40-49%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\(948.84) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 40-49%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\" + }, + { + "displayName": "(948.85) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 50-59%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\(948.85) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 50-59%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\" + }, + { + "displayName": "(948.86) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 60-69%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\(948.86) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 60-69%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\" + }, + { + "displayName": "(948.87) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 70-79%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\(948.87) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 70-79%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\" + }, + { + "displayName": "(948.88) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 80-89%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\(948.88) Burn [any degree] involving 80-89 percent of body surface with third degree burn, 80-89%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 80-89 percent of body surface (948.8)\\" + }, + { + "displayName": "Burn [any degree] involving 90 percent or more of body surface (948.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\" + }, + { + "displayName": "(948.90) Burn [any degree] involving 90 percent or more of body surface with third degree burn, less than 10 percent or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\(948.90) Burn [any degree] involving 90 percent or more of body surface with third degree burn, less than 10 percent or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\" + }, + { + "displayName": "(948.91) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 10-19%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\(948.91) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 10-19%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\" + }, + { + "displayName": "(948.92) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 20-29%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\(948.92) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 20-29%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\" + }, + { + "displayName": "(948.93) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 30-39%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\(948.93) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 30-39%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\" + }, + { + "displayName": "(948.94) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 40-49%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\(948.94) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 40-49%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\" + }, + { + "displayName": "(948.95) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 50-59%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\(948.95) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 50-59%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\" + }, + { + "displayName": "(948.96) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 60-69%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\(948.96) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 60-69%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\" + }, + { + "displayName": "(948.97) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 70-79%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\(948.97) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 70-79%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\" + }, + { + "displayName": "(948.98) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 80-89%", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\(948.98) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 80-89%\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\" + }, + { + "displayName": "(948.99) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 90% or more of body surface", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\(948.99) Burn [any degree] involving 90 percent or more of body surface with third degree burn, 90% or more of body surface\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving 90 percent or more of body surface (948.9)\\" + }, + { + "displayName": "Burn [any degree] involving less than 10 percent of body surface (948.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving less than 10 percent of body surface (948.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\" + }, + { + "displayName": "(948.00) Burn [any degree] involving less than 10 percent of body surface with third degree burn, less than 10 percent or unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving less than 10 percent of body surface (948.0)\\(948.00) Burn [any degree] involving less than 10 percent of body surface with third degree burn, less than 10 percent or unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns classified according to extent of body surface involved (948)\\Burn [any degree] involving less than 10 percent of body surface (948.0)\\" + }, + { + "displayName": "Burns of multiple specified sites (946)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\" + }, + { + "displayName": "(946.0) Burns of multiple specified sites, unspecified degree", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\(946.0) Burns of multiple specified sites, unspecified degree\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\" + }, + { + "displayName": "(946.1) Erythema [first degree] of multiple specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\(946.1) Erythema [first degree] of multiple specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\" + }, + { + "displayName": "(946.2) Blisters, epidermal loss [second degree] of multiple specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\(946.2) Blisters, epidermal loss [second degree] of multiple specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\" + }, + { + "displayName": "(946.3) Full-thickness skin loss [third degree NOS] of multiple specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\(946.3) Full-thickness skin loss [third degree NOS] of multiple specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\" + }, + { + "displayName": "(946.4) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\(946.4) Deep necrosis of underlying tissues [deep third degree] without mention of loss of a body part, of multiple specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\" + }, + { + "displayName": "(946.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\(946.5) Deep necrosis of underlying tissues [deep third degree] with loss of a body part, of multiple specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Burns (940-949.99)\\Burns of multiple specified sites (946)\\" + }, + { + "displayName": "Certain traumatic complications and unspecified injuries (958-959.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Certain early complications of trauma (958)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\" + }, + { + "displayName": "(958.0) Air embolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\(958.0) Air embolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\" + }, + { + "displayName": "(958.1) Fat embolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\(958.1) Fat embolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\" + }, + { + "displayName": "(958.2) Secondary and recurrent hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\(958.2) Secondary and recurrent hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\" + }, + { + "displayName": "(958.3) Posttraumatic wound infection not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\(958.3) Posttraumatic wound infection not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\" + }, + { + "displayName": "(958.4) Traumatic shock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\(958.4) Traumatic shock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\" + }, + { + "displayName": "(958.5) Traumatic anuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\(958.5) Traumatic anuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Certain traumatic complications and unspecified injuries (958-959.99)\\\\Certain early complications of trauma (958)\\\\(958.5) Traumatic anuria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\" + }, + { + "displayName": "(958.6) Volkmann's ischemic contracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\(958.6) Volkmann's ischemic contracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\" + }, + { + "displayName": "(958.7) Traumatic subcutaneous emphysema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\(958.7) Traumatic subcutaneous emphysema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\" + }, + { + "displayName": "(958.8) Other early complications of trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\(958.8) Other early complications of trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\" + }, + { + "displayName": "Traumatic compartment syndrome (958.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\Traumatic compartment syndrome (958.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Certain traumatic complications and unspecified injuries (958-959.99)\\\\Certain early complications of trauma (958)\\\\Traumatic compartment syndrome (958.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\" + }, + { + "displayName": "(958.90) Compartment syndrome, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\Traumatic compartment syndrome (958.9)\\(958.90) Compartment syndrome, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Certain traumatic complications and unspecified injuries (958-959.99)\\\\Certain early complications of trauma (958)\\\\Traumatic compartment syndrome (958.9)\\\\(958.90) Compartment syndrome, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\Traumatic compartment syndrome (958.9)\\" + }, + { + "displayName": "(958.91) Traumatic compartment syndrome of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\Traumatic compartment syndrome (958.9)\\(958.91) Traumatic compartment syndrome of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\Traumatic compartment syndrome (958.9)\\" + }, + { + "displayName": "(958.92) Traumatic compartment syndrome of lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\Traumatic compartment syndrome (958.9)\\(958.92) Traumatic compartment syndrome of lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\Traumatic compartment syndrome (958.9)\\" + }, + { + "displayName": "(958.93) Traumatic compartment syndrome of abdomen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\Traumatic compartment syndrome (958.9)\\(958.93) Traumatic compartment syndrome of abdomen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\Traumatic compartment syndrome (958.9)\\" + }, + { + "displayName": "(958.99) Traumatic compartment syndrome of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\Traumatic compartment syndrome (958.9)\\(958.99) Traumatic compartment syndrome of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Certain early complications of trauma (958)\\Traumatic compartment syndrome (958.9)\\" + }, + { + "displayName": "Injury, other and unspecified (959)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\" + }, + { + "displayName": "(959.2) Shoulder and upper arm injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\(959.2) Shoulder and upper arm injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\" + }, + { + "displayName": "(959.3) Elbow, forearm, and wrist injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\(959.3) Elbow, forearm, and wrist injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\" + }, + { + "displayName": "(959.4) Hand, except finger injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\(959.4) Hand, except finger injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\" + }, + { + "displayName": "(959.5) Finger injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\(959.5) Finger injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\" + }, + { + "displayName": "(959.6) Hip and thigh injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\(959.6) Hip and thigh injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Certain traumatic complications and unspecified injuries (958-959.99)\\\\Injury, other and unspecified (959)\\\\(959.6) Hip and thigh injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\" + }, + { + "displayName": "(959.7) Knee, leg, ankle, and foot injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\(959.7) Knee, leg, ankle, and foot injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Certain traumatic complications and unspecified injuries (958-959.99)\\\\Injury, other and unspecified (959)\\\\(959.7) Knee, leg, ankle, and foot injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\" + }, + { + "displayName": "(959.8) Other specified sites, including multiple injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\(959.8) Other specified sites, including multiple injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Certain traumatic complications and unspecified injuries (958-959.99)\\\\Injury, other and unspecified (959)\\\\(959.8) Other specified sites, including multiple injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\" + }, + { + "displayName": "(959.9) Unspecified site injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\(959.9) Unspecified site injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Certain traumatic complications and unspecified injuries (958-959.99)\\\\Injury, other and unspecified (959)\\\\(959.9) Unspecified site injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\" + }, + { + "displayName": "Other and unspecified injury to head, face, and neck (959.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to head, face, and neck (959.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Certain traumatic complications and unspecified injuries (958-959.99)\\\\Injury, other and unspecified (959)\\\\Other and unspecified injury to head, face, and neck (959.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\" + }, + { + "displayName": "(959.01) Head injury, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to head, face, and neck (959.0)\\(959.01) Head injury, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Certain traumatic complications and unspecified injuries (958-959.99)\\\\Injury, other and unspecified (959)\\\\Other and unspecified injury to head, face, and neck (959.0)\\\\(959.01) Head injury, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to head, face, and neck (959.0)\\" + }, + { + "displayName": "(959.09) Injury of face and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to head, face, and neck (959.0)\\(959.09) Injury of face and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Certain traumatic complications and unspecified injuries (958-959.99)\\\\Injury, other and unspecified (959)\\\\Other and unspecified injury to head, face, and neck (959.0)\\\\(959.09) Injury of face and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to head, face, and neck (959.0)\\" + }, + { + "displayName": "Other and unspecified injury to trunk (959.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to trunk (959.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Certain traumatic complications and unspecified injuries (958-959.99)\\\\Injury, other and unspecified (959)\\\\Other and unspecified injury to trunk (959.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\" + }, + { + "displayName": "(959.11) Other injury of chest wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to trunk (959.1)\\(959.11) Other injury of chest wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to trunk (959.1)\\" + }, + { + "displayName": "(959.12) Other injury of abdomen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to trunk (959.1)\\(959.12) Other injury of abdomen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to trunk (959.1)\\" + }, + { + "displayName": "(959.13) Fracture of corpus cavernosum penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to trunk (959.1)\\(959.13) Fracture of corpus cavernosum penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to trunk (959.1)\\" + }, + { + "displayName": "(959.14) Other injury of external genitals", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to trunk (959.1)\\(959.14) Other injury of external genitals\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to trunk (959.1)\\" + }, + { + "displayName": "(959.19) Other injury of other sites of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to trunk (959.1)\\(959.19) Other injury of other sites of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Certain traumatic complications and unspecified injuries (958-959.99)\\Injury, other and unspecified (959)\\Other and unspecified injury to trunk (959.1)\\" + }, + { + "displayName": "Complications of surgical and medical care, not elsewhere classified (996-999.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Complications affecting specified body systems, not elsewhere classified (997)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\" + }, + { + "displayName": "(997.1) Cardiac complications, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\(997.1) Cardiac complications, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\" + }, + { + "displayName": "(997.2) Peripheral vascular complications, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\(997.2) Peripheral vascular complications, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\" + }, + { + "displayName": "(997.5) Urinary complications, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\(997.5) Urinary complications, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\" + }, + { + "displayName": "Amputation stump complication (997.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Amputation stump complication (997.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\" + }, + { + "displayName": "(997.60) Unspecified complication of amputation stump", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Amputation stump complication (997.6)\\(997.60) Unspecified complication of amputation stump\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Amputation stump complication (997.6)\\" + }, + { + "displayName": "(997.61) Neuroma of amputation stump", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Amputation stump complication (997.6)\\(997.61) Neuroma of amputation stump\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Amputation stump complication (997.6)\\" + }, + { + "displayName": "(997.62) Infection (chronic) of amputation stump", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Amputation stump complication (997.6)\\(997.62) Infection (chronic) of amputation stump\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Amputation stump complication (997.6)\\" + }, + { + "displayName": "(997.69) Other amputation stump complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Amputation stump complication (997.6)\\(997.69) Other amputation stump complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Amputation stump complication (997.6)\\" + }, + { + "displayName": "Central nervous system complications, not elsewhere classified (997.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Central nervous system complications, not elsewhere classified (997.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\" + }, + { + "displayName": "(997.00) Nervous system complication, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Central nervous system complications, not elsewhere classified (997.0)\\(997.00) Nervous system complication, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Central nervous system complications, not elsewhere classified (997.0)\\" + }, + { + "displayName": "(997.01) Central nervous system complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Central nervous system complications, not elsewhere classified (997.0)\\(997.01) Central nervous system complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Central nervous system complications, not elsewhere classified (997.0)\\" + }, + { + "displayName": "(997.02) Iatrogenic cerebrovascular infarction or hemorrhage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Central nervous system complications, not elsewhere classified (997.0)\\(997.02) Iatrogenic cerebrovascular infarction or hemorrhage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Central nervous system complications, not elsewhere classified (997.0)\\" + }, + { + "displayName": "(997.09) Other nervous system complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Central nervous system complications, not elsewhere classified (997.0)\\(997.09) Other nervous system complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications affecting specified body systems, not elsewhere classified (997)\\\\Central nervous system complications, not elsewhere classified (997.0)\\\\(997.09) Other nervous system complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Central nervous system complications, not elsewhere classified (997.0)\\" + }, + { + "displayName": "Complications affecting other specified body systems, not elsewhere classified (997.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Complications affecting other specified body systems, not elsewhere classified (997.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\" + }, + { + "displayName": "(997.91) Complications affecting other specified body systems, not elsewhere classified, hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Complications affecting other specified body systems, not elsewhere classified (997.9)\\(997.91) Complications affecting other specified body systems, not elsewhere classified, hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications affecting specified body systems, not elsewhere classified (997)\\\\Complications affecting other specified body systems, not elsewhere classified (997.9)\\\\(997.91) Complications affecting other specified body systems, not elsewhere classified, hypertension\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Complications affecting other specified body systems, not elsewhere classified (997.9)\\" + }, + { + "displayName": "(997.99) Complications affecting other specified body systems, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Complications affecting other specified body systems, not elsewhere classified (997.9)\\(997.99) Complications affecting other specified body systems, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications affecting specified body systems, not elsewhere classified (997)\\\\Complications affecting other specified body systems, not elsewhere classified (997.9)\\\\(997.99) Complications affecting other specified body systems, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Complications affecting other specified body systems, not elsewhere classified (997.9)\\" + }, + { + "displayName": "Digestive system complications (997.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Digestive system complications (997.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\" + }, + { + "displayName": "(997.41) Retained cholelithiasis following cholecystectomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Digestive system complications (997.4)\\(997.41) Retained cholelithiasis following cholecystectomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications affecting specified body systems, not elsewhere classified (997)\\\\Digestive system complications (997.4)\\\\(997.41) Retained cholelithiasis following cholecystectomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Digestive system complications (997.4)\\" + }, + { + "displayName": "(997.49) Other digestive system complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Digestive system complications (997.4)\\(997.49) Other digestive system complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications affecting specified body systems, not elsewhere classified (997)\\\\Digestive system complications (997.4)\\\\(997.49) Other digestive system complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Digestive system complications (997.4)\\" + }, + { + "displayName": "Respiratory complications, not elsewhere classified (997.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Respiratory complications, not elsewhere classified (997.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\" + }, + { + "displayName": "(997.31) Ventilator associated pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Respiratory complications, not elsewhere classified (997.3)\\(997.31) Ventilator associated pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications affecting specified body systems, not elsewhere classified (997)\\\\Respiratory complications, not elsewhere classified (997.3)\\\\(997.31) Ventilator associated pneumonia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Respiratory complications, not elsewhere classified (997.3)\\" + }, + { + "displayName": "(997.32) Postprocedural aspiration pneumonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Respiratory complications, not elsewhere classified (997.3)\\(997.32) Postprocedural aspiration pneumonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Respiratory complications, not elsewhere classified (997.3)\\" + }, + { + "displayName": "(997.39) Other respiratory complications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Respiratory complications, not elsewhere classified (997.3)\\(997.39) Other respiratory complications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications affecting specified body systems, not elsewhere classified (997)\\\\Respiratory complications, not elsewhere classified (997.3)\\\\(997.39) Other respiratory complications\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Respiratory complications, not elsewhere classified (997.3)\\" + }, + { + "displayName": "Vascular complications of other vessels (997.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Vascular complications of other vessels (997.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications affecting specified body systems, not elsewhere classified (997)\\\\Vascular complications of other vessels (997.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\" + }, + { + "displayName": "(997.71) Vascular complications of mesenteric artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Vascular complications of other vessels (997.7)\\(997.71) Vascular complications of mesenteric artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications affecting specified body systems, not elsewhere classified (997)\\\\Vascular complications of other vessels (997.7)\\\\(997.71) Vascular complications of mesenteric artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Vascular complications of other vessels (997.7)\\" + }, + { + "displayName": "(997.72) Vascular complications of renal artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Vascular complications of other vessels (997.7)\\(997.72) Vascular complications of renal artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications affecting specified body systems, not elsewhere classified (997)\\\\Vascular complications of other vessels (997.7)\\\\(997.72) Vascular complications of renal artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Vascular complications of other vessels (997.7)\\" + }, + { + "displayName": "(997.79) Vascular complications of other vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Vascular complications of other vessels (997.7)\\(997.79) Vascular complications of other vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications affecting specified body systems, not elsewhere classified (997)\\Vascular complications of other vessels (997.7)\\" + }, + { + "displayName": "Complications of medical care, not elsewhere classified (999)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\" + }, + { + "displayName": "(999.0) Generalized vaccinia as a complication of medical care, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\(999.0) Generalized vaccinia as a complication of medical care, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\" + }, + { + "displayName": "(999.1) Air embolism as a complication of medical care, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\(999.1) Air embolism as a complication of medical care, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\" + }, + { + "displayName": "(999.2) Other vascular complications of medical care, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\(999.2) Other vascular complications of medical care, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\" + }, + { + "displayName": "(999.9) Other and unspecified complications of medical care, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\(999.9) Other and unspecified complications of medical care, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\" + }, + { + "displayName": "ABO incompatibility reaction due to transfusion of blood or blood products (999.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications of medical care, not elsewhere classified (999)\\\\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\" + }, + { + "displayName": "(999.60) ABO incompatibility reaction, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\\(999.60) ABO incompatibility reaction, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications of medical care, not elsewhere classified (999)\\\\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\\\\(999.60) ABO incompatibility reaction, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\\" + }, + { + "displayName": "(999.69) Other ABO incompatibility reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\\(999.69) Other ABO incompatibility reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications of medical care, not elsewhere classified (999)\\\\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\\\\(999.69) Other ABO incompatibility reaction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\ABO incompatibility reaction due to transfusion of blood or blood products (999.6)\\" + }, + { + "displayName": "Anaphylactic reaction due to serum, not elsewhere classified (999.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Anaphylactic reaction due to serum, not elsewhere classified (999.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\" + }, + { + "displayName": "Other infection due to medical care, not elsewhere classified (999.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infection due to medical care, not elsewhere classified (999.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications of medical care, not elsewhere classified (999)\\\\Other infection due to medical care, not elsewhere classified (999.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\" + }, + { + "displayName": "(999.31) Other and unspecified infection due to central venous catheter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infection due to medical care, not elsewhere classified (999.3)\\(999.31) Other and unspecified infection due to central venous catheter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications of medical care, not elsewhere classified (999)\\\\Other infection due to medical care, not elsewhere classified (999.3)\\\\(999.31) Other and unspecified infection due to central venous catheter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infection due to medical care, not elsewhere classified (999.3)\\" + }, + { + "displayName": "(999.32) Bloodstream infection due to central venous catheter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infection due to medical care, not elsewhere classified (999.3)\\(999.32) Bloodstream infection due to central venous catheter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infection due to medical care, not elsewhere classified (999.3)\\" + }, + { + "displayName": "(999.33) Local infection due to central venous catheter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infection due to medical care, not elsewhere classified (999.3)\\(999.33) Local infection due to central venous catheter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications of medical care, not elsewhere classified (999)\\\\Other infection due to medical care, not elsewhere classified (999.3)\\\\(999.33) Local infection due to central venous catheter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infection due to medical care, not elsewhere classified (999.3)\\" + }, + { + "displayName": "(999.39) Infection following other infusion, injection, transfusion, or vaccination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infection due to medical care, not elsewhere classified (999.3)\\(999.39) Infection following other infusion, injection, transfusion, or vaccination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infection due to medical care, not elsewhere classified (999.3)\\" + }, + { + "displayName": "Other infusion and transfusion reaction, not elsewhere classified (999.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\" + }, + { + "displayName": "(999.80) Transfusion reaction, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\(999.80) Transfusion reaction, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\" + }, + { + "displayName": "(999.81) Extravasation of vesicant chemotherapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\(999.81) Extravasation of vesicant chemotherapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\" + }, + { + "displayName": "(999.82) Extravasation of other vesicant agent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\(999.82) Extravasation of other vesicant agent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\" + }, + { + "displayName": "(999.83) Hemolytic transfusion reaction, incompatibility unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\(999.83) Hemolytic transfusion reaction, incompatibility unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\" + }, + { + "displayName": "(999.85) Delayed hemolytic transfusion reaction, incompatibility unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\(999.85) Delayed hemolytic transfusion reaction, incompatibility unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\" + }, + { + "displayName": "(999.88) Other infusion reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\(999.88) Other infusion reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\" + }, + { + "displayName": "(999.89) Other transfusion reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\(999.89) Other transfusion reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other infusion and transfusion reaction, not elsewhere classified (999.8)\\" + }, + { + "displayName": "Other serum reaction, not elsewhere classified (999.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other serum reaction, not elsewhere classified (999.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications of medical care, not elsewhere classified (999)\\\\Other serum reaction, not elsewhere classified (999.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\" + }, + { + "displayName": "(999.52) Other serum reaction due to vaccination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other serum reaction, not elsewhere classified (999.5)\\(999.52) Other serum reaction due to vaccination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications of medical care, not elsewhere classified (999)\\\\Other serum reaction, not elsewhere classified (999.5)\\\\(999.52) Other serum reaction due to vaccination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other serum reaction, not elsewhere classified (999.5)\\" + }, + { + "displayName": "(999.59) Other serum reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other serum reaction, not elsewhere classified (999.5)\\(999.59) Other serum reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Other serum reaction, not elsewhere classified (999.5)\\" + }, + { + "displayName": "Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products (999.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products (999.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\" + }, + { + "displayName": "(999.70) Rh incompatibility reaction, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products (999.7)\\(999.70) Rh incompatibility reaction, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications of medical care, not elsewhere classified (999)\\Rh and other non-ABO incompatibility reaction due to transfusion of blood or blood products (999.7)\\" + }, + { + "displayName": "Complications peculiar to certain specified procedures (996)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\" + }, + { + "displayName": "(996.1) Mechanical complication of other vascular device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\(996.1) Mechanical complication of other vascular device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\" + }, + { + "displayName": "(996.2) Mechanical complication of nervous system device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\(996.2) Mechanical complication of nervous system device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\" + }, + { + "displayName": "Complications of reattached extremity or body part (996.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\" + }, + { + "displayName": "(996.90) Complications of unspecified reattached extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\(996.90) Complications of unspecified reattached extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\" + }, + { + "displayName": "(996.91) Complications of reattached forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\(996.91) Complications of reattached forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Complications of reattached extremity or body part (996.9)\\\\(996.91) Complications of reattached forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\" + }, + { + "displayName": "(996.92) Complications of reattached hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\(996.92) Complications of reattached hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Complications of reattached extremity or body part (996.9)\\\\(996.92) Complications of reattached hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\" + }, + { + "displayName": "(996.93) Complications of reattached finger(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\(996.93) Complications of reattached finger(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Complications of reattached extremity or body part (996.9)\\\\(996.93) Complications of reattached finger(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\" + }, + { + "displayName": "(996.94) Complications of reattached upper extremity, other and unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\(996.94) Complications of reattached upper extremity, other and unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Complications of reattached extremity or body part (996.9)\\\\(996.94) Complications of reattached upper extremity, other and unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\" + }, + { + "displayName": "(996.95) Complication of reattached foot and toe(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\(996.95) Complication of reattached foot and toe(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Complications of reattached extremity or body part (996.9)\\\\(996.95) Complication of reattached foot and toe(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\" + }, + { + "displayName": "(996.96) Complication of reattached lower extremity, other and unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\(996.96) Complication of reattached lower extremity, other and unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Complications of reattached extremity or body part (996.9)\\\\(996.96) Complication of reattached lower extremity, other and unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\" + }, + { + "displayName": "(996.99) Complication of other specified reattached body part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\(996.99) Complication of other specified reattached body part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of reattached extremity or body part (996.9)\\" + }, + { + "displayName": "Complications of transplanted organ (996.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\" + }, + { + "displayName": "(996.80) Complications of transplanted organ, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\(996.80) Complications of transplanted organ, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\" + }, + { + "displayName": "(996.81) Complications of transplanted kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\(996.81) Complications of transplanted kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\" + }, + { + "displayName": "(996.82) Complications of transplanted liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\(996.82) Complications of transplanted liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\" + }, + { + "displayName": "(996.83) Complications of transplanted heart", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\(996.83) Complications of transplanted heart\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\" + }, + { + "displayName": "(996.84) Complications of transplanted lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\(996.84) Complications of transplanted lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\" + }, + { + "displayName": "(996.85) Complications of transplanted bone marrow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\(996.85) Complications of transplanted bone marrow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Complications of transplanted organ (996.8)\\\\(996.85) Complications of transplanted bone marrow\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\" + }, + { + "displayName": "(996.86) Complications of transplanted pancreas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\(996.86) Complications of transplanted pancreas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Complications of transplanted organ (996.8)\\\\(996.86) Complications of transplanted pancreas\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\" + }, + { + "displayName": "(996.87) Complications of transplanted intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\(996.87) Complications of transplanted intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Complications of transplanted organ (996.8)\\\\(996.87) Complications of transplanted intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\" + }, + { + "displayName": "(996.88) Complications of transplanted organ, stem cell", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\(996.88) Complications of transplanted organ, stem cell\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Complications of transplanted organ (996.8)\\\\(996.88) Complications of transplanted organ, stem cell\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\" + }, + { + "displayName": "(996.89) Complications of other specified transplanted organ", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\(996.89) Complications of other specified transplanted organ\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Complications of transplanted organ (996.8)\\\\(996.89) Complications of other specified transplanted organ\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Complications of transplanted organ (996.8)\\" + }, + { + "displayName": "Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\" + }, + { + "displayName": "(996.60) Infection and inflammatory reaction due to unspecified device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\(996.60) Infection and inflammatory reaction due to unspecified device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\" + }, + { + "displayName": "(996.61) Infection and inflammatory reaction due to cardiac device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\(996.61) Infection and inflammatory reaction due to cardiac device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\" + }, + { + "displayName": "(996.62) Infection and inflammatory reaction due to other vascular device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\(996.62) Infection and inflammatory reaction due to other vascular device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\" + }, + { + "displayName": "(996.63) Infection and inflammatory reaction due to nervous system device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\(996.63) Infection and inflammatory reaction due to nervous system device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\" + }, + { + "displayName": "(996.64) Infection and inflammatory reaction due to indwelling urinary catheter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\(996.64) Infection and inflammatory reaction due to indwelling urinary catheter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\" + }, + { + "displayName": "(996.65) Infection and inflammatory reaction due to other genitourinary device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\(996.65) Infection and inflammatory reaction due to other genitourinary device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\" + }, + { + "displayName": "(996.66) Infection and inflammatory reaction due to internal joint prosthesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\(996.66) Infection and inflammatory reaction due to internal joint prosthesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\" + }, + { + "displayName": "(996.67) Infection and inflammatory reaction due to other internal orthopedic device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\(996.67) Infection and inflammatory reaction due to other internal orthopedic device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\\\(996.67) Infection and inflammatory reaction due to other internal orthopedic device, implant, and graft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\" + }, + { + "displayName": "(996.68) Infection and inflammatory reaction due to peritoneal dialysis catheter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\(996.68) Infection and inflammatory reaction due to peritoneal dialysis catheter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\\\(996.68) Infection and inflammatory reaction due to peritoneal dialysis catheter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\" + }, + { + "displayName": "(996.69) Infection and inflammatory reaction due to other internal prosthetic device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\(996.69) Infection and inflammatory reaction due to other internal prosthetic device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\\\(996.69) Infection and inflammatory reaction due to other internal prosthetic device, implant, and graft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Infection and inflammatory reaction due to internal prosthetic device, implant, and graft (996.6)\\" + }, + { + "displayName": "Mechanical complication of cardiac device, implant, and graft (996.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of cardiac device, implant, and graft (996.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\" + }, + { + "displayName": "(996.00) Mechanical complication of unspecified cardiac device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\(996.00) Mechanical complication of unspecified cardiac device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\" + }, + { + "displayName": "(996.01) Mechanical complication due to cardiac pacemaker (electrode)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\(996.01) Mechanical complication due to cardiac pacemaker (electrode)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\" + }, + { + "displayName": "(996.02) Mechanical complication due to heart valve prosthesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\(996.02) Mechanical complication due to heart valve prosthesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\" + }, + { + "displayName": "(996.03) Mechanical complication due to coronary bypass graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\(996.03) Mechanical complication due to coronary bypass graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\" + }, + { + "displayName": "(996.04) Mechanical complication of automatic implantable cardiac defibrillator", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\(996.04) Mechanical complication of automatic implantable cardiac defibrillator\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\" + }, + { + "displayName": "(996.09) Other mechanical complication of cardiac device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\(996.09) Other mechanical complication of cardiac device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of cardiac device, implant, and graft (996.0)\\" + }, + { + "displayName": "Mechanical complication of genitourinary device, implant, and graft (996.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\" + }, + { + "displayName": "(996.30) Mechanical complication of unspecified genitourinary device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\(996.30) Mechanical complication of unspecified genitourinary device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\\\(996.30) Mechanical complication of unspecified genitourinary device, implant, and graft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\" + }, + { + "displayName": "(996.31) Mechanical complication due to urethral (indwelling) catheter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\(996.31) Mechanical complication due to urethral (indwelling) catheter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\\\(996.31) Mechanical complication due to urethral (indwelling) catheter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\" + }, + { + "displayName": "(996.32) Mechanical complication due to intrauterine contraceptive device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\(996.32) Mechanical complication due to intrauterine contraceptive device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\\\(996.32) Mechanical complication due to intrauterine contraceptive device\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\" + }, + { + "displayName": "(996.39) Other mechanical complication of genitourinary device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\(996.39) Other mechanical complication of genitourinary device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\\\(996.39) Other mechanical complication of genitourinary device, implant, and graft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of genitourinary device, implant, and graft (996.3)\\" + }, + { + "displayName": "Mechanical complication of internal orthopedic device, implant, and graft (996.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\" + }, + { + "displayName": "(996.40) Unspecified mechanical complication of internal orthopedic device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\(996.40) Unspecified mechanical complication of internal orthopedic device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\\\(996.40) Unspecified mechanical complication of internal orthopedic device, implant, and graft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\" + }, + { + "displayName": "(996.41) Mechanical loosening of prosthetic joint", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\(996.41) Mechanical loosening of prosthetic joint\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\\\(996.41) Mechanical loosening of prosthetic joint\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\" + }, + { + "displayName": "(996.42) Dislocation of prosthetic joint", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\(996.42) Dislocation of prosthetic joint\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\" + }, + { + "displayName": "(996.43) Broken prosthetic joint implant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\(996.43) Broken prosthetic joint implant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\" + }, + { + "displayName": "(996.44) Peri-prosthetic fracture around prosthetic joint", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\(996.44) Peri-prosthetic fracture around prosthetic joint\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\" + }, + { + "displayName": "(996.45) Peri-prosthetic osteolysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\(996.45) Peri-prosthetic osteolysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\" + }, + { + "displayName": "(996.46) Articular bearing surface wear of prosthetic joint", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\(996.46) Articular bearing surface wear of prosthetic joint\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\" + }, + { + "displayName": "(996.47) Other mechanical complication of prosthetic joint implant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\(996.47) Other mechanical complication of prosthetic joint implant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\" + }, + { + "displayName": "(996.49) Other mechanical complication of other internal orthopedic device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\(996.49) Other mechanical complication of other internal orthopedic device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of internal orthopedic device, implant, and graft (996.4)\\" + }, + { + "displayName": "Mechanical complication of other specified prosthetic device, implant, and graft (996.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\" + }, + { + "displayName": "(996.51) Mechanical complication due to corneal graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\(996.51) Mechanical complication due to corneal graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\" + }, + { + "displayName": "(996.52) Mechanical complication due to graft of other tissue, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\(996.52) Mechanical complication due to graft of other tissue, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\" + }, + { + "displayName": "(996.53) Mechanical complication due to ocular lens prosthesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\(996.53) Mechanical complication due to ocular lens prosthesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\\\(996.53) Mechanical complication due to ocular lens prosthesis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\" + }, + { + "displayName": "(996.54) Mechanical complication due to breast prosthesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\(996.54) Mechanical complication due to breast prosthesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\\\(996.54) Mechanical complication due to breast prosthesis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\" + }, + { + "displayName": "(996.55) Mechanical complication due to artificial skin graft and decellularized allodermis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\(996.55) Mechanical complication due to artificial skin graft and decellularized allodermis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\\\(996.55) Mechanical complication due to artificial skin graft and decellularized allodermis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\" + }, + { + "displayName": "(996.56) Mechanical complication due to peritoneal dialysis catheter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\(996.56) Mechanical complication due to peritoneal dialysis catheter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\\\(996.56) Mechanical complication due to peritoneal dialysis catheter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\" + }, + { + "displayName": "(996.57) Mechanical complication due to insulin pump", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\(996.57) Mechanical complication due to insulin pump\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\\\(996.57) Mechanical complication due to insulin pump\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\" + }, + { + "displayName": "(996.59) Mechanical complication due to other implant and internal device, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\(996.59) Mechanical complication due to other implant and internal device, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\\\(996.59) Mechanical complication due to other implant and internal device, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Mechanical complication of other specified prosthetic device, implant, and graft (996.5)\\" + }, + { + "displayName": "Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\" + }, + { + "displayName": "(996.70) Other complications due to unspecified device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\(996.70) Other complications due to unspecified device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\\\(996.70) Other complications due to unspecified device, implant, and graft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\" + }, + { + "displayName": "(996.71) Other complications due to heart valve prosthesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\(996.71) Other complications due to heart valve prosthesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Complications peculiar to certain specified procedures (996)\\\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\\\(996.71) Other complications due to heart valve prosthesis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\" + }, + { + "displayName": "(996.72) Other complications due to other cardiac device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\(996.72) Other complications due to other cardiac device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\" + }, + { + "displayName": "(996.73) Other complications due to renal dialysis device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\(996.73) Other complications due to renal dialysis device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\" + }, + { + "displayName": "(996.74) Other complications due to other vascular device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\(996.74) Other complications due to other vascular device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\" + }, + { + "displayName": "(996.75) Other complications due to nervous system device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\(996.75) Other complications due to nervous system device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\" + }, + { + "displayName": "(996.76) Other complications due to genitourinary device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\(996.76) Other complications due to genitourinary device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\" + }, + { + "displayName": "(996.77) Other complications due to internal joint prosthesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\(996.77) Other complications due to internal joint prosthesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\" + }, + { + "displayName": "(996.78) Other complications due to other internal orthopedic device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\(996.78) Other complications due to other internal orthopedic device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\" + }, + { + "displayName": "(996.79) Other complications due to other internal prosthetic device, implant, and graft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\(996.79) Other complications due to other internal prosthetic device, implant, and graft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Complications peculiar to certain specified procedures (996)\\Other complications of internal (biological) (synthetic) prosthetic device, implant, and graft (996.7)\\" + }, + { + "displayName": "Other complications of procedures, NEC (998)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Other complications of procedures, NEC (998)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\" + }, + { + "displayName": "(998.2) Accidental puncture or laceration during a procedure, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\(998.2) Accidental puncture or laceration during a procedure, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\" + }, + { + "displayName": "(998.4) Foreign body accidentally left during a procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\(998.4) Foreign body accidentally left during a procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\" + }, + { + "displayName": "(998.6) Persistent postoperative fistula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\(998.6) Persistent postoperative fistula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\" + }, + { + "displayName": "(998.7) Acute reaction to foreign substance accidentally left during a procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\(998.7) Acute reaction to foreign substance accidentally left during a procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Other complications of procedures, NEC (998)\\\\(998.7) Acute reaction to foreign substance accidentally left during a procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\" + }, + { + "displayName": "(998.9) Unspecified complication of procedure, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\(998.9) Unspecified complication of procedure, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Other complications of procedures, NEC (998)\\\\(998.9) Unspecified complication of procedure, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\" + }, + { + "displayName": "Disruption of wound (998.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Disruption of wound (998.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\" + }, + { + "displayName": "(998.30) Disruption of wound, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Disruption of wound (998.3)\\(998.30) Disruption of wound, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Disruption of wound (998.3)\\" + }, + { + "displayName": "(998.31) Disruption of internal operation (surgical) wound", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Disruption of wound (998.3)\\(998.31) Disruption of internal operation (surgical) wound\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Disruption of wound (998.3)\\" + }, + { + "displayName": "(998.32) Disruption of external operation (surgical) wound", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Disruption of wound (998.3)\\(998.32) Disruption of external operation (surgical) wound\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Disruption of wound (998.3)\\" + }, + { + "displayName": "(998.33) Disruption of traumatic injury wound repair", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Disruption of wound (998.3)\\(998.33) Disruption of traumatic injury wound repair\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Disruption of wound (998.3)\\" + }, + { + "displayName": "Hemorrhage or hematoma complicating a procedure (998.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Hemorrhage or hematoma complicating a procedure (998.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\" + }, + { + "displayName": "(998.11) Hemorrhage complicating a procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Hemorrhage or hematoma complicating a procedure (998.1)\\(998.11) Hemorrhage complicating a procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Hemorrhage or hematoma complicating a procedure (998.1)\\" + }, + { + "displayName": "(998.12) Hematoma complicating a procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Hemorrhage or hematoma complicating a procedure (998.1)\\(998.12) Hematoma complicating a procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Hemorrhage or hematoma complicating a procedure (998.1)\\" + }, + { + "displayName": "(998.13) Seroma complicating a procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Hemorrhage or hematoma complicating a procedure (998.1)\\(998.13) Seroma complicating a procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Other complications of procedures, NEC (998)\\\\Hemorrhage or hematoma complicating a procedure (998.1)\\\\(998.13) Seroma complicating a procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Hemorrhage or hematoma complicating a procedure (998.1)\\" + }, + { + "displayName": "Other specified complications of procedures, not elsewhere classified (998.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Other specified complications of procedures, not elsewhere classified (998.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Other complications of procedures, NEC (998)\\\\Other specified complications of procedures, not elsewhere classified (998.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\" + }, + { + "displayName": "(998.81) Emphysema (subcutaneous) (surgical) resulting from procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Other specified complications of procedures, not elsewhere classified (998.8)\\(998.81) Emphysema (subcutaneous) (surgical) resulting from procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Other complications of procedures, NEC (998)\\\\Other specified complications of procedures, not elsewhere classified (998.8)\\\\(998.81) Emphysema (subcutaneous) (surgical) resulting from procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Other specified complications of procedures, not elsewhere classified (998.8)\\" + }, + { + "displayName": "(998.82) Cataract fragments in eye following cataract surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Other specified complications of procedures, not elsewhere classified (998.8)\\(998.82) Cataract fragments in eye following cataract surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Other complications of procedures, NEC (998)\\\\Other specified complications of procedures, not elsewhere classified (998.8)\\\\(998.82) Cataract fragments in eye following cataract surgery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Other specified complications of procedures, not elsewhere classified (998.8)\\" + }, + { + "displayName": "(998.83) Non-healing surgical wound", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Other specified complications of procedures, not elsewhere classified (998.8)\\(998.83) Non-healing surgical wound\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Other complications of procedures, NEC (998)\\\\Other specified complications of procedures, not elsewhere classified (998.8)\\\\(998.83) Non-healing surgical wound\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Other specified complications of procedures, not elsewhere classified (998.8)\\" + }, + { + "displayName": "(998.89) Other specified complications of procedures not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Other specified complications of procedures, not elsewhere classified (998.8)\\(998.89) Other specified complications of procedures not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Other specified complications of procedures, not elsewhere classified (998.8)\\" + }, + { + "displayName": "Postoperative infection (998.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative infection (998.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\" + }, + { + "displayName": "(998.51) Infected postoperative seroma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative infection (998.5)\\(998.51) Infected postoperative seroma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative infection (998.5)\\" + }, + { + "displayName": "(998.59) Other postoperative infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative infection (998.5)\\(998.59) Other postoperative infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative infection (998.5)\\" + }, + { + "displayName": "Postoperative shock (998.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative shock (998.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\" + }, + { + "displayName": "(998.00) Postoperative shock, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative shock (998.0)\\(998.00) Postoperative shock, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative shock (998.0)\\" + }, + { + "displayName": "(998.01) Postoperative shock, cardiogenic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative shock (998.0)\\(998.01) Postoperative shock, cardiogenic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative shock (998.0)\\" + }, + { + "displayName": "(998.02) Postoperative shock, septic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative shock (998.0)\\(998.02) Postoperative shock, septic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative shock (998.0)\\" + }, + { + "displayName": "(998.09) Postoperative shock, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative shock (998.0)\\(998.09) Postoperative shock, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\\\Other complications of procedures, NEC (998)\\\\Postoperative shock (998.0)\\\\(998.09) Postoperative shock, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Complications of surgical and medical care, not elsewhere classified (996-999.99)\\Other complications of procedures, NEC (998)\\Postoperative shock (998.0)\\" + }, + { + "displayName": "Contusion with intact skin surface (920-924.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "(920) Contusion of face, scalp, and neck except eye(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\(920) Contusion of face, scalp, and neck except eye(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\(920) Contusion of face, scalp, and neck except eye(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\" + }, + { + "displayName": "Contusion of eye and adnexa (921)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of eye and adnexa (921)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\" + }, + { + "displayName": "(921.0) Black eye, not otherwise specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of eye and adnexa (921)\\(921.0) Black eye, not otherwise specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of eye and adnexa (921)\\" + }, + { + "displayName": "(921.1) Contusion of eyelids and periocular area", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of eye and adnexa (921)\\(921.1) Contusion of eyelids and periocular area\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of eye and adnexa (921)\\" + }, + { + "displayName": "(921.2) Contusion of orbital tissues", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of eye and adnexa (921)\\(921.2) Contusion of orbital tissues\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of eye and adnexa (921)\\" + }, + { + "displayName": "(921.3) Contusion of eyeball", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of eye and adnexa (921)\\(921.3) Contusion of eyeball\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of eye and adnexa (921)\\" + }, + { + "displayName": "(921.9) Unspecified contusion of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of eye and adnexa (921)\\(921.9) Unspecified contusion of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of eye and adnexa (921)\\" + }, + { + "displayName": "Contusion of lower limb and of other and unspecified sites (924)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\" + }, + { + "displayName": "(924.3) Contusion of toe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\(924.3) Contusion of toe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of lower limb and of other and unspecified sites (924)\\\\(924.3) Contusion of toe\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\" + }, + { + "displayName": "(924.4) Contusion of multiple sites of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\(924.4) Contusion of multiple sites of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of lower limb and of other and unspecified sites (924)\\\\(924.4) Contusion of multiple sites of lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\" + }, + { + "displayName": "(924.5) Contusion of unspecified part of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\(924.5) Contusion of unspecified part of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of lower limb and of other and unspecified sites (924)\\\\(924.5) Contusion of unspecified part of lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\" + }, + { + "displayName": "(924.8) Contusion of multiple sites, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\(924.8) Contusion of multiple sites, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of lower limb and of other and unspecified sites (924)\\\\(924.8) Contusion of multiple sites, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\" + }, + { + "displayName": "(924.9) Contusion of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\(924.9) Contusion of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of lower limb and of other and unspecified sites (924)\\\\(924.9) Contusion of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\" + }, + { + "displayName": "Contusion of ankle and foot, excluding toe(s) (924.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of ankle and foot, excluding toe(s) (924.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of lower limb and of other and unspecified sites (924)\\\\Contusion of ankle and foot, excluding toe(s) (924.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\" + }, + { + "displayName": "(924.20) Contusion of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of ankle and foot, excluding toe(s) (924.2)\\(924.20) Contusion of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of lower limb and of other and unspecified sites (924)\\\\Contusion of ankle and foot, excluding toe(s) (924.2)\\\\(924.20) Contusion of foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of ankle and foot, excluding toe(s) (924.2)\\" + }, + { + "displayName": "(924.21) Contusion of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of ankle and foot, excluding toe(s) (924.2)\\(924.21) Contusion of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of ankle and foot, excluding toe(s) (924.2)\\" + }, + { + "displayName": "Contusion of hip and thigh (924.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of hip and thigh (924.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\" + }, + { + "displayName": "(924.00) Contusion of thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of hip and thigh (924.0)\\(924.00) Contusion of thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of hip and thigh (924.0)\\" + }, + { + "displayName": "(924.01) Contusion of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of hip and thigh (924.0)\\(924.01) Contusion of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of hip and thigh (924.0)\\" + }, + { + "displayName": "Contusion of knee and lower leg (924.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of knee and lower leg (924.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\" + }, + { + "displayName": "(924.10) Contusion of lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of knee and lower leg (924.1)\\(924.10) Contusion of lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of knee and lower leg (924.1)\\" + }, + { + "displayName": "(924.11) Contusion of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of knee and lower leg (924.1)\\(924.11) Contusion of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of lower limb and of other and unspecified sites (924)\\Contusion of knee and lower leg (924.1)\\" + }, + { + "displayName": "Contusion of trunk (922)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\" + }, + { + "displayName": "(922.0) Contusion of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\(922.0) Contusion of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of trunk (922)\\\\(922.0) Contusion of breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\" + }, + { + "displayName": "(922.1) Contusion of chest wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\(922.1) Contusion of chest wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\" + }, + { + "displayName": "(922.2) Contusion of abdominal wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\(922.2) Contusion of abdominal wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of trunk (922)\\\\(922.2) Contusion of abdominal wall\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\" + }, + { + "displayName": "(922.4) Contusion of genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\(922.4) Contusion of genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of trunk (922)\\\\(922.4) Contusion of genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\" + }, + { + "displayName": "(922.8) Contusion of multiple sites of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\(922.8) Contusion of multiple sites of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\" + }, + { + "displayName": "(922.9) Contusion of unspecified part of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\(922.9) Contusion of unspecified part of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\" + }, + { + "displayName": "Contusion of back (922.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\Contusion of back (922.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\" + }, + { + "displayName": "(922.31) Contusion of back", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\Contusion of back (922.3)\\(922.31) Contusion of back\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\Contusion of back (922.3)\\" + }, + { + "displayName": "(922.32) Contusion of buttock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\Contusion of back (922.3)\\(922.32) Contusion of buttock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\Contusion of back (922.3)\\" + }, + { + "displayName": "(922.33) Contusion of interscapular region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\Contusion of back (922.3)\\(922.33) Contusion of interscapular region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of trunk (922)\\Contusion of back (922.3)\\" + }, + { + "displayName": "Contusion of upper limb (923)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\" + }, + { + "displayName": "(923.3) Contusion of finger", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\(923.3) Contusion of finger\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\" + }, + { + "displayName": "(923.8) Contusion of multiple sites of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\(923.8) Contusion of multiple sites of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\" + }, + { + "displayName": "(923.9) Contusion of unspecified part of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\(923.9) Contusion of unspecified part of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\" + }, + { + "displayName": "Contusion of elbow and forearm (923.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of elbow and forearm (923.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\" + }, + { + "displayName": "(923.10) Contusion of forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of elbow and forearm (923.1)\\(923.10) Contusion of forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of elbow and forearm (923.1)\\" + }, + { + "displayName": "(923.11) Contusion of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of elbow and forearm (923.1)\\(923.11) Contusion of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of upper limb (923)\\\\Contusion of elbow and forearm (923.1)\\\\(923.11) Contusion of elbow\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of elbow and forearm (923.1)\\" + }, + { + "displayName": "Contusion of shoulder and upper arm (923.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of shoulder and upper arm (923.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of upper limb (923)\\\\Contusion of shoulder and upper arm (923.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\" + }, + { + "displayName": "(923.00) Contusion of shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of shoulder and upper arm (923.0)\\(923.00) Contusion of shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of upper limb (923)\\\\Contusion of shoulder and upper arm (923.0)\\\\(923.00) Contusion of shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of shoulder and upper arm (923.0)\\" + }, + { + "displayName": "(923.01) Contusion of scapular region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of shoulder and upper arm (923.0)\\(923.01) Contusion of scapular region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of shoulder and upper arm (923.0)\\" + }, + { + "displayName": "(923.02) Contusion of axillary region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of shoulder and upper arm (923.0)\\(923.02) Contusion of axillary region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of shoulder and upper arm (923.0)\\" + }, + { + "displayName": "(923.03) Contusion of upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of shoulder and upper arm (923.0)\\(923.03) Contusion of upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of shoulder and upper arm (923.0)\\" + }, + { + "displayName": "(923.09) Contusion of multiple sites of shoulder and upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of shoulder and upper arm (923.0)\\(923.09) Contusion of multiple sites of shoulder and upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of shoulder and upper arm (923.0)\\" + }, + { + "displayName": "Contusion of wrist and hand(s), except finger(s) alone (923.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of wrist and hand(s), except finger(s) alone (923.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\" + }, + { + "displayName": "(923.20) Contusion of hand(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of wrist and hand(s), except finger(s) alone (923.2)\\(923.20) Contusion of hand(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of upper limb (923)\\\\Contusion of wrist and hand(s), except finger(s) alone (923.2)\\\\(923.20) Contusion of hand(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of wrist and hand(s), except finger(s) alone (923.2)\\" + }, + { + "displayName": "(923.21) Contusion of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of wrist and hand(s), except finger(s) alone (923.2)\\(923.21) Contusion of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Contusion with intact skin surface (920-924.99)\\\\Contusion of upper limb (923)\\\\Contusion of wrist and hand(s), except finger(s) alone (923.2)\\\\(923.21) Contusion of wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Contusion with intact skin surface (920-924.99)\\Contusion of upper limb (923)\\Contusion of wrist and hand(s), except finger(s) alone (923.2)\\" + }, + { + "displayName": "Crushing injury (925-929.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Crushing injury of face, scalp, and neck (925)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of face, scalp, and neck (925)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of face, scalp, and neck (925)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\" + }, + { + "displayName": "(925.1) Crushing injury of face and scalp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of face, scalp, and neck (925)\\(925.1) Crushing injury of face and scalp\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of face, scalp, and neck (925)\\\\(925.1) Crushing injury of face and scalp\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of face, scalp, and neck (925)\\" + }, + { + "displayName": "(925.2) Crushing injury of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of face, scalp, and neck (925)\\(925.2) Crushing injury of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of face, scalp, and neck (925)\\\\(925.2) Crushing injury of neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of face, scalp, and neck (925)\\" + }, + { + "displayName": "Crushing injury of lower limb (928)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\" + }, + { + "displayName": "(928.3) Crushing injury of toe(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\(928.3) Crushing injury of toe(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\" + }, + { + "displayName": "(928.8) Crushing injury of multiple sites of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\(928.8) Crushing injury of multiple sites of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\" + }, + { + "displayName": "(928.9) Crushing injury of unspecified site of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\(928.9) Crushing injury of unspecified site of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\" + }, + { + "displayName": "Crushing injury of ankle and foot, excluding toe(s) alone (928.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\" + }, + { + "displayName": "(928.20) Crushing injury of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\\(928.20) Crushing injury of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\\" + }, + { + "displayName": "(928.21) Crushing injury of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\\(928.21) Crushing injury of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of lower limb (928)\\\\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\\\\(928.21) Crushing injury of ankle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of ankle and foot, excluding toe(s) alone (928.2)\\" + }, + { + "displayName": "Crushing injury of hip and thigh (928.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of hip and thigh (928.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of lower limb (928)\\\\Crushing injury of hip and thigh (928.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\" + }, + { + "displayName": "(928.00) Crushing injury of thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of hip and thigh (928.0)\\(928.00) Crushing injury of thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of hip and thigh (928.0)\\" + }, + { + "displayName": "(928.01) Crushing injury of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of hip and thigh (928.0)\\(928.01) Crushing injury of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of hip and thigh (928.0)\\" + }, + { + "displayName": "Crushing injury of knee and lower leg (928.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of knee and lower leg (928.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\" + }, + { + "displayName": "(928.10) Crushing injury of lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of knee and lower leg (928.1)\\(928.10) Crushing injury of lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of knee and lower leg (928.1)\\" + }, + { + "displayName": "(928.11) Crushing injury of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of knee and lower leg (928.1)\\(928.11) Crushing injury of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of lower limb (928)\\\\Crushing injury of knee and lower leg (928.1)\\\\(928.11) Crushing injury of knee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of lower limb (928)\\Crushing injury of knee and lower leg (928.1)\\" + }, + { + "displayName": "Crushing injury of multiple and unspecified sites (929)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of multiple and unspecified sites (929)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of multiple and unspecified sites (929)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\" + }, + { + "displayName": "(929.0) Crushing injury of multiple sites, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of multiple and unspecified sites (929)\\(929.0) Crushing injury of multiple sites, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of multiple and unspecified sites (929)\\" + }, + { + "displayName": "(929.9) Crushing injury of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of multiple and unspecified sites (929)\\(929.9) Crushing injury of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of multiple and unspecified sites (929)\\" + }, + { + "displayName": "Crushing injury of trunk (926)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\" + }, + { + "displayName": "(926.0) Crushing injury of external genitalia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\(926.0) Crushing injury of external genitalia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\" + }, + { + "displayName": "(926.8) Crushing injury of multiple sites of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\(926.8) Crushing injury of multiple sites of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\" + }, + { + "displayName": "(926.9) Crushing injury of unspecified site of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\(926.9) Crushing injury of unspecified site of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\" + }, + { + "displayName": "Crushing injury of other specified sites of trunk (926.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\Crushing injury of other specified sites of trunk (926.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\" + }, + { + "displayName": "(926.11) Crushing injury of back", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\Crushing injury of other specified sites of trunk (926.1)\\(926.11) Crushing injury of back\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of trunk (926)\\\\Crushing injury of other specified sites of trunk (926.1)\\\\(926.11) Crushing injury of back\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\Crushing injury of other specified sites of trunk (926.1)\\" + }, + { + "displayName": "(926.12) Crushing injury of buttock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\Crushing injury of other specified sites of trunk (926.1)\\(926.12) Crushing injury of buttock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of trunk (926)\\\\Crushing injury of other specified sites of trunk (926.1)\\\\(926.12) Crushing injury of buttock\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\Crushing injury of other specified sites of trunk (926.1)\\" + }, + { + "displayName": "(926.19) Crushing injury of other specified sites of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\Crushing injury of other specified sites of trunk (926.1)\\(926.19) Crushing injury of other specified sites of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of trunk (926)\\\\Crushing injury of other specified sites of trunk (926.1)\\\\(926.19) Crushing injury of other specified sites of trunk\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of trunk (926)\\Crushing injury of other specified sites of trunk (926.1)\\" + }, + { + "displayName": "Crushing injury of upper limb (927)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of upper limb (927)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\" + }, + { + "displayName": "(927.3) Crushing injury of finger(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\(927.3) Crushing injury of finger(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\" + }, + { + "displayName": "(927.8) Crushing injury of multiple sites of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\(927.8) Crushing injury of multiple sites of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\" + }, + { + "displayName": "(927.9) Crushing injury of unspecified site of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\(927.9) Crushing injury of unspecified site of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\" + }, + { + "displayName": "Crushing injury of elbow and forearm (927.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of elbow and forearm (927.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\" + }, + { + "displayName": "(927.10) Crushing injury of forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of elbow and forearm (927.1)\\(927.10) Crushing injury of forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of elbow and forearm (927.1)\\" + }, + { + "displayName": "(927.11) Crushing injury of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of elbow and forearm (927.1)\\(927.11) Crushing injury of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of elbow and forearm (927.1)\\" + }, + { + "displayName": "Crushing injury of shoulder and upper arm (927.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of shoulder and upper arm (927.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of upper limb (927)\\\\Crushing injury of shoulder and upper arm (927.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\" + }, + { + "displayName": "(927.00) Crushing injury of shoulder region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of shoulder and upper arm (927.0)\\(927.00) Crushing injury of shoulder region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of upper limb (927)\\\\Crushing injury of shoulder and upper arm (927.0)\\\\(927.00) Crushing injury of shoulder region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of shoulder and upper arm (927.0)\\" + }, + { + "displayName": "(927.01) Crushing injury of scapular region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of shoulder and upper arm (927.0)\\(927.01) Crushing injury of scapular region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of upper limb (927)\\\\Crushing injury of shoulder and upper arm (927.0)\\\\(927.01) Crushing injury of scapular region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of shoulder and upper arm (927.0)\\" + }, + { + "displayName": "(927.02) Crushing injury of axillary region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of shoulder and upper arm (927.0)\\(927.02) Crushing injury of axillary region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Crushing injury (925-929.99)\\\\Crushing injury of upper limb (927)\\\\Crushing injury of shoulder and upper arm (927.0)\\\\(927.02) Crushing injury of axillary region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of shoulder and upper arm (927.0)\\" + }, + { + "displayName": "(927.03) Crushing injury of upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of shoulder and upper arm (927.0)\\(927.03) Crushing injury of upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of shoulder and upper arm (927.0)\\" + }, + { + "displayName": "(927.09) Crushing injury of multiple sites of upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of shoulder and upper arm (927.0)\\(927.09) Crushing injury of multiple sites of upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of shoulder and upper arm (927.0)\\" + }, + { + "displayName": "Crushing injury of wrist and hand(s), except finger(s) alone (927.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\" + }, + { + "displayName": "(927.20) Crushing injury of hand(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\\(927.20) Crushing injury of hand(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\\" + }, + { + "displayName": "(927.21) Crushing injury of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\\(927.21) Crushing injury of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Crushing injury (925-929.99)\\Crushing injury of upper limb (927)\\Crushing injury of wrist and hand(s), except finger(s) alone (927.2)\\" + }, + { + "displayName": "Dislocation (830-839.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Dislocation of ankle (837)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of ankle (837)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of ankle (837)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\" + }, + { + "displayName": "(837.0) Closed dislocation of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of ankle (837)\\(837.0) Closed dislocation of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of ankle (837)\\\\(837.0) Closed dislocation of ankle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of ankle (837)\\" + }, + { + "displayName": "(837.1) Open dislocation of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of ankle (837)\\(837.1) Open dislocation of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of ankle (837)\\\\(837.1) Open dislocation of ankle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of ankle (837)\\" + }, + { + "displayName": "Dislocation of elbow (832)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of elbow (832)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\" + }, + { + "displayName": "(832.2) Nursemaid's elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\(832.2) Nursemaid's elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\" + }, + { + "displayName": "Closed dislocation of elbow (832.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\" + }, + { + "displayName": "(832.00) Closed dislocation of elbow, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\(832.00) Closed dislocation of elbow, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\" + }, + { + "displayName": "(832.01) Closed anterior dislocation of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\(832.01) Closed anterior dislocation of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of elbow (832)\\\\Closed dislocation of elbow (832.0)\\\\(832.01) Closed anterior dislocation of elbow\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\" + }, + { + "displayName": "(832.02) Closed posterior dislocation of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\(832.02) Closed posterior dislocation of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of elbow (832)\\\\Closed dislocation of elbow (832.0)\\\\(832.02) Closed posterior dislocation of elbow\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\" + }, + { + "displayName": "(832.03) Closed medial dislocation of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\(832.03) Closed medial dislocation of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\" + }, + { + "displayName": "(832.04) Closed lateral dislocation of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\(832.04) Closed lateral dislocation of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\" + }, + { + "displayName": "(832.09) Closed dislocation of elbow, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\(832.09) Closed dislocation of elbow, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Closed dislocation of elbow (832.0)\\" + }, + { + "displayName": "Open dislocation of elbow (832.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\" + }, + { + "displayName": "(832.10) Open dislocation of elbow, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\(832.10) Open dislocation of elbow, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\" + }, + { + "displayName": "(832.11) Open anterior dislocation of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\(832.11) Open anterior dislocation of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\" + }, + { + "displayName": "(832.12) Open posterior dislocation of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\(832.12) Open posterior dislocation of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\" + }, + { + "displayName": "(832.13) Open medial dislocation of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\(832.13) Open medial dislocation of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\" + }, + { + "displayName": "(832.14) Open lateral dislocation of elbow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\(832.14) Open lateral dislocation of elbow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\" + }, + { + "displayName": "(832.19) Open dislocation of elbow, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\(832.19) Open dislocation of elbow, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of elbow (832)\\Open dislocation of elbow (832.1)\\" + }, + { + "displayName": "Dislocation of finger (834)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of finger (834)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\" + }, + { + "displayName": "Closed dislocation of finger (834.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Closed dislocation of finger (834.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of finger (834)\\\\Closed dislocation of finger (834.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\" + }, + { + "displayName": "(834.00) Closed dislocation of finger, unspecified part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Closed dislocation of finger (834.0)\\(834.00) Closed dislocation of finger, unspecified part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Closed dislocation of finger (834.0)\\" + }, + { + "displayName": "(834.01) Closed dislocation of metacarpophalangeal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Closed dislocation of finger (834.0)\\(834.01) Closed dislocation of metacarpophalangeal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of finger (834)\\\\Closed dislocation of finger (834.0)\\\\(834.01) Closed dislocation of metacarpophalangeal (joint)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Closed dislocation of finger (834.0)\\" + }, + { + "displayName": "(834.02) Closed dislocation of interphalangeal (joint), hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Closed dislocation of finger (834.0)\\(834.02) Closed dislocation of interphalangeal (joint), hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of finger (834)\\\\Closed dislocation of finger (834.0)\\\\(834.02) Closed dislocation of interphalangeal (joint), hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Closed dislocation of finger (834.0)\\" + }, + { + "displayName": "Open dislocation of finger (834.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Open dislocation of finger (834.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\" + }, + { + "displayName": "(834.10) Open dislocation of finger, unspecified part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Open dislocation of finger (834.1)\\(834.10) Open dislocation of finger, unspecified part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of finger (834)\\\\Open dislocation of finger (834.1)\\\\(834.10) Open dislocation of finger, unspecified part\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Open dislocation of finger (834.1)\\" + }, + { + "displayName": "(834.11) Open dislocation of metacarpophalangeal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Open dislocation of finger (834.1)\\(834.11) Open dislocation of metacarpophalangeal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Open dislocation of finger (834.1)\\" + }, + { + "displayName": "(834.12) Open dislocation interphalangeal (joint), hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Open dislocation of finger (834.1)\\(834.12) Open dislocation interphalangeal (joint), hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of finger (834)\\Open dislocation of finger (834.1)\\" + }, + { + "displayName": "Dislocation of foot (838)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\" + }, + { + "displayName": "Closed dislocation of foot (838.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\" + }, + { + "displayName": "(838.00) Closed dislocation of foot, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\(838.00) Closed dislocation of foot, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\" + }, + { + "displayName": "(838.01) Closed dislocation of tarsal (bone), joint unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\(838.01) Closed dislocation of tarsal (bone), joint unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\" + }, + { + "displayName": "(838.02) Closed dislocation of midtarsal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\(838.02) Closed dislocation of midtarsal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\" + }, + { + "displayName": "(838.03) Closed dislocation of tarsometatarsal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\(838.03) Closed dislocation of tarsometatarsal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\" + }, + { + "displayName": "(838.04) Closed dislocation of metatarsal (bone), joint unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\(838.04) Closed dislocation of metatarsal (bone), joint unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\" + }, + { + "displayName": "(838.05) Closed dislocation of metatarsophalangeal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\(838.05) Closed dislocation of metatarsophalangeal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of foot (838)\\\\Closed dislocation of foot (838.0)\\\\(838.05) Closed dislocation of metatarsophalangeal (joint)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\" + }, + { + "displayName": "(838.06) Closed dislocation of interphalangeal (joint), foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\(838.06) Closed dislocation of interphalangeal (joint), foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\" + }, + { + "displayName": "(838.09) Closed dislocation of foot, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\(838.09) Closed dislocation of foot, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of foot (838)\\\\Closed dislocation of foot (838.0)\\\\(838.09) Closed dislocation of foot, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Closed dislocation of foot (838.0)\\" + }, + { + "displayName": "Open dislocation of foot (838.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\" + }, + { + "displayName": "(838.10) Open dislocation of foot, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\(838.10) Open dislocation of foot, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of foot (838)\\\\Open dislocation of foot (838.1)\\\\(838.10) Open dislocation of foot, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\" + }, + { + "displayName": "(838.11) Open dislocation of tarsal (bone), joint unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\(838.11) Open dislocation of tarsal (bone), joint unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of foot (838)\\\\Open dislocation of foot (838.1)\\\\(838.11) Open dislocation of tarsal (bone), joint unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\" + }, + { + "displayName": "(838.12) Open dislocation of midtarsal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\(838.12) Open dislocation of midtarsal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of foot (838)\\\\Open dislocation of foot (838.1)\\\\(838.12) Open dislocation of midtarsal (joint)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\" + }, + { + "displayName": "(838.13) Open dislocation of tarsometatarsal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\(838.13) Open dislocation of tarsometatarsal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\" + }, + { + "displayName": "(838.14) Open dislocation of metatarsal (bone), joint unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\(838.14) Open dislocation of metatarsal (bone), joint unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of foot (838)\\\\Open dislocation of foot (838.1)\\\\(838.14) Open dislocation of metatarsal (bone), joint unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\" + }, + { + "displayName": "(838.15) Open dislocation of metatarsophalangeal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\(838.15) Open dislocation of metatarsophalangeal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\" + }, + { + "displayName": "(838.16) Open dislocation of interphalangeal (joint), foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\(838.16) Open dislocation of interphalangeal (joint), foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\" + }, + { + "displayName": "(838.19) Open dislocation of foot, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\(838.19) Open dislocation of foot, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of foot (838)\\Open dislocation of foot (838.1)\\" + }, + { + "displayName": "Dislocation of hip (835)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\" + }, + { + "displayName": "Closed dislocation of hip (835.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Closed dislocation of hip (835.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\" + }, + { + "displayName": "(835.00) Closed dislocation of hip, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Closed dislocation of hip (835.0)\\(835.00) Closed dislocation of hip, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Closed dislocation of hip (835.0)\\" + }, + { + "displayName": "(835.01) Closed posterior dislocation of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Closed dislocation of hip (835.0)\\(835.01) Closed posterior dislocation of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Closed dislocation of hip (835.0)\\" + }, + { + "displayName": "(835.02) Closed obturator dislocation of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Closed dislocation of hip (835.0)\\(835.02) Closed obturator dislocation of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Closed dislocation of hip (835.0)\\" + }, + { + "displayName": "(835.03) Other closed anterior dislocation of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Closed dislocation of hip (835.0)\\(835.03) Other closed anterior dislocation of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Closed dislocation of hip (835.0)\\" + }, + { + "displayName": "Open dislocation of hip (835.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Open dislocation of hip (835.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\" + }, + { + "displayName": "(835.10) Open dislocation of hip, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Open dislocation of hip (835.1)\\(835.10) Open dislocation of hip, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Open dislocation of hip (835.1)\\" + }, + { + "displayName": "(835.11) Open posterior dislocation of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Open dislocation of hip (835.1)\\(835.11) Open posterior dislocation of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Open dislocation of hip (835.1)\\" + }, + { + "displayName": "(835.12) Open obturator dislocation of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Open dislocation of hip (835.1)\\(835.12) Open obturator dislocation of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Open dislocation of hip (835.1)\\" + }, + { + "displayName": "(835.13) Other open anterior dislocation of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Open dislocation of hip (835.1)\\(835.13) Other open anterior dislocation of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of hip (835)\\Open dislocation of hip (835.1)\\" + }, + { + "displayName": "Dislocation of jaw (830)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of jaw (830)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\" + }, + { + "displayName": "(830.0) Closed dislocation of jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of jaw (830)\\(830.0) Closed dislocation of jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of jaw (830)\\" + }, + { + "displayName": "(830.1) Open dislocation of jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of jaw (830)\\(830.1) Open dislocation of jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of jaw (830)\\" + }, + { + "displayName": "Dislocation of knee (836)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\" + }, + { + "displayName": "(836.0) Tear of medial cartilage or meniscus of knee, current", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\(836.0) Tear of medial cartilage or meniscus of knee, current\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\" + }, + { + "displayName": "(836.1) Tear of lateral cartilage or meniscus of knee, current", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\(836.1) Tear of lateral cartilage or meniscus of knee, current\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\" + }, + { + "displayName": "(836.2) Other tear of cartilage or meniscus of knee, current", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\(836.2) Other tear of cartilage or meniscus of knee, current\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of knee (836)\\\\(836.2) Other tear of cartilage or meniscus of knee, current\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\" + }, + { + "displayName": "(836.3) Dislocation of patella, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\(836.3) Dislocation of patella, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of knee (836)\\\\(836.3) Dislocation of patella, closed\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\" + }, + { + "displayName": "(836.4) Dislocation of patella, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\(836.4) Dislocation of patella, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\" + }, + { + "displayName": "Other dislocation of knee, closed (836.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of knee (836)\\\\Other dislocation of knee, closed (836.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\" + }, + { + "displayName": "(836.50) Dislocation of knee, unspecified, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\(836.50) Dislocation of knee, unspecified, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of knee (836)\\\\Other dislocation of knee, closed (836.5)\\\\(836.50) Dislocation of knee, unspecified, closed\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\" + }, + { + "displayName": "(836.51) Anterior dislocation of tibia, proximal end, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\(836.51) Anterior dislocation of tibia, proximal end, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of knee (836)\\\\Other dislocation of knee, closed (836.5)\\\\(836.51) Anterior dislocation of tibia, proximal end, closed\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\" + }, + { + "displayName": "(836.52) Posterior dislocation of tibia, proximal end, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\(836.52) Posterior dislocation of tibia, proximal end, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\" + }, + { + "displayName": "(836.53) Medial dislocation of tibia, proximal end, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\(836.53) Medial dislocation of tibia, proximal end, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of knee (836)\\\\Other dislocation of knee, closed (836.5)\\\\(836.53) Medial dislocation of tibia, proximal end, closed\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\" + }, + { + "displayName": "(836.54) Lateral dislocation of tibia, proximal end, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\(836.54) Lateral dislocation of tibia, proximal end, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of knee (836)\\\\Other dislocation of knee, closed (836.5)\\\\(836.54) Lateral dislocation of tibia, proximal end, closed\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\" + }, + { + "displayName": "(836.59) Other dislocation of knee, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\(836.59) Other dislocation of knee, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of knee (836)\\\\Other dislocation of knee, closed (836.5)\\\\(836.59) Other dislocation of knee, closed\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, closed (836.5)\\" + }, + { + "displayName": "Other dislocation of knee, open (836.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of knee (836)\\\\Other dislocation of knee, open (836.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\" + }, + { + "displayName": "(836.60) Dislocation of knee, unspecified, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\(836.60) Dislocation of knee, unspecified, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of knee (836)\\\\Other dislocation of knee, open (836.6)\\\\(836.60) Dislocation of knee, unspecified, open\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\" + }, + { + "displayName": "(836.61) Anterior dislocation of tibia, proximal end, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\(836.61) Anterior dislocation of tibia, proximal end, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\" + }, + { + "displayName": "(836.62) Posterior dislocation of tibia, proximal end, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\(836.62) Posterior dislocation of tibia, proximal end, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\" + }, + { + "displayName": "(836.63) Medial dislocation of tibia, proximal end, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\(836.63) Medial dislocation of tibia, proximal end, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\" + }, + { + "displayName": "(836.64) Lateral dislocation of tibia, proximal end, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\(836.64) Lateral dislocation of tibia, proximal end, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\" + }, + { + "displayName": "(836.69) Other dislocation of knee, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\(836.69) Other dislocation of knee, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of knee (836)\\Other dislocation of knee, open (836.6)\\" + }, + { + "displayName": "Dislocation of shoulder (831)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\" + }, + { + "displayName": "Closed dislocation of shoulder (831.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\" + }, + { + "displayName": "(831.00) Closed dislocation of shoulder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\(831.00) Closed dislocation of shoulder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\" + }, + { + "displayName": "(831.01) Closed anterior dislocation of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\(831.01) Closed anterior dislocation of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\" + }, + { + "displayName": "(831.02) Closed posterior dislocation of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\(831.02) Closed posterior dislocation of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\" + }, + { + "displayName": "(831.03) Closed inferior dislocation of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\(831.03) Closed inferior dislocation of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\" + }, + { + "displayName": "(831.04) Closed dislocation of acromioclavicular (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\(831.04) Closed dislocation of acromioclavicular (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\" + }, + { + "displayName": "(831.09) Closed dislocation of shoulder, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\(831.09) Closed dislocation of shoulder, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Closed dislocation of shoulder (831.0)\\" + }, + { + "displayName": "Open dislocation of shoulder (831.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Open dislocation of shoulder (831.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\" + }, + { + "displayName": "(831.11) Open anterior dislocation of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Open dislocation of shoulder (831.1)\\(831.11) Open anterior dislocation of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Open dislocation of shoulder (831.1)\\" + }, + { + "displayName": "(831.12) Open posterior dislocation of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Open dislocation of shoulder (831.1)\\(831.12) Open posterior dislocation of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Open dislocation of shoulder (831.1)\\" + }, + { + "displayName": "(831.13) Open inferior dislocation of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Open dislocation of shoulder (831.1)\\(831.13) Open inferior dislocation of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Open dislocation of shoulder (831.1)\\" + }, + { + "displayName": "(831.14) Open dislocation of acromioclavicular (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Open dislocation of shoulder (831.1)\\(831.14) Open dislocation of acromioclavicular (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Open dislocation of shoulder (831.1)\\" + }, + { + "displayName": "(831.19) Open dislocation of shoulder, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Open dislocation of shoulder (831.1)\\(831.19) Open dislocation of shoulder, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of shoulder (831)\\\\Open dislocation of shoulder (831.1)\\\\(831.19) Open dislocation of shoulder, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of shoulder (831)\\Open dislocation of shoulder (831.1)\\" + }, + { + "displayName": "Dislocation of wrist (833)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Dislocation of wrist (833)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\" + }, + { + "displayName": "Closed dislocation of wrist (833.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\" + }, + { + "displayName": "(833.00) Closed dislocation of wrist, unspecified part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\(833.00) Closed dislocation of wrist, unspecified part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\" + }, + { + "displayName": "(833.01) Closed dislocation of radioulnar (joint), distal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\(833.01) Closed dislocation of radioulnar (joint), distal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\" + }, + { + "displayName": "(833.02) Closed dislocation of radiocarpal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\(833.02) Closed dislocation of radiocarpal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\" + }, + { + "displayName": "(833.03) Closed dislocation of midcarpal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\(833.03) Closed dislocation of midcarpal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\" + }, + { + "displayName": "(833.04) Closed dislocation of carpometacarpal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\(833.04) Closed dislocation of carpometacarpal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\" + }, + { + "displayName": "(833.05) Closed dislocation of metacarpal (bone), proximal end", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\(833.05) Closed dislocation of metacarpal (bone), proximal end\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\" + }, + { + "displayName": "(833.09) Closed dislocation of wrist, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\(833.09) Closed dislocation of wrist, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Closed dislocation of wrist (833.0)\\" + }, + { + "displayName": "Open dislocation of wrist (833.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\" + }, + { + "displayName": "(833.10) Open dislocation of wrist, unspecified part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\(833.10) Open dislocation of wrist, unspecified part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\" + }, + { + "displayName": "(833.11) Open dislocation of radioulnar (joint), distal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\(833.11) Open dislocation of radioulnar (joint), distal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\" + }, + { + "displayName": "(833.12) Open dislocation of radiocarpal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\(833.12) Open dislocation of radiocarpal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\" + }, + { + "displayName": "(833.13) Open dislocation of midcarpal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\(833.13) Open dislocation of midcarpal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\" + }, + { + "displayName": "(833.14) Open dislocation of carpometacarpal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\(833.14) Open dislocation of carpometacarpal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\" + }, + { + "displayName": "(833.15) Open dislocation of metacarpal (bone), proximal end", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\(833.15) Open dislocation of metacarpal (bone), proximal end\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\" + }, + { + "displayName": "(833.19) Open dislocation of wrist, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\(833.19) Open dislocation of wrist, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Dislocation of wrist (833)\\Open dislocation of wrist (833.1)\\" + }, + { + "displayName": "Other, multiple, and ill-defined dislocations (839)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\" + }, + { + "displayName": "(839.8) Closed dislocation, multiple and ill-defined sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\(839.8) Closed dislocation, multiple and ill-defined sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\" + }, + { + "displayName": "(839.9) Open dislocation, multiple and ill-defined sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\(839.9) Open dislocation, multiple and ill-defined sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\" + }, + { + "displayName": "Closed dislocation, cervical vertebra (839.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\" + }, + { + "displayName": "(839.00) Closed dislocation, cervical vertebra, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\(839.00) Closed dislocation, cervical vertebra, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\" + }, + { + "displayName": "(839.01) Closed dislocation, first cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\(839.01) Closed dislocation, first cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\" + }, + { + "displayName": "(839.02) Closed dislocation, second cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\(839.02) Closed dislocation, second cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\" + }, + { + "displayName": "(839.03) Closed dislocation, third cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\(839.03) Closed dislocation, third cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\" + }, + { + "displayName": "(839.04) Closed dislocation, fourth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\(839.04) Closed dislocation, fourth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\" + }, + { + "displayName": "(839.05) Closed dislocation, fifth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\(839.05) Closed dislocation, fifth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\" + }, + { + "displayName": "(839.06) Closed dislocation, sixth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\(839.06) Closed dislocation, sixth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Closed dislocation, cervical vertebra (839.0)\\\\(839.06) Closed dislocation, sixth cervical vertebra\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\" + }, + { + "displayName": "(839.07) Closed dislocation, seventh cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\(839.07) Closed dislocation, seventh cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Closed dislocation, cervical vertebra (839.0)\\\\(839.07) Closed dislocation, seventh cervical vertebra\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\" + }, + { + "displayName": "(839.08) Closed dislocation, multiple cervical vertebrae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\(839.08) Closed dislocation, multiple cervical vertebrae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Closed dislocation, cervical vertebra (839.0)\\\\(839.08) Closed dislocation, multiple cervical vertebrae\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, cervical vertebra (839.0)\\" + }, + { + "displayName": "Closed dislocation, other location (839.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other location (839.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Closed dislocation, other location (839.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\" + }, + { + "displayName": "(839.61) Closed dislocation, sternum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other location (839.6)\\(839.61) Closed dislocation, sternum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other location (839.6)\\" + }, + { + "displayName": "(839.69) Closed dislocation, other location", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other location (839.6)\\(839.69) Closed dislocation, other location\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other location (839.6)\\" + }, + { + "displayName": "Closed dislocation, other vertebra (839.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other vertebra (839.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\" + }, + { + "displayName": "(839.40) Closed dislocation, vertebra, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other vertebra (839.4)\\(839.40) Closed dislocation, vertebra, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other vertebra (839.4)\\" + }, + { + "displayName": "(839.41) Closed dislocation, coccyx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other vertebra (839.4)\\(839.41) Closed dislocation, coccyx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Closed dislocation, other vertebra (839.4)\\\\(839.41) Closed dislocation, coccyx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other vertebra (839.4)\\" + }, + { + "displayName": "(839.42) Closed dislocation, sacrum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other vertebra (839.4)\\(839.42) Closed dislocation, sacrum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Closed dislocation, other vertebra (839.4)\\\\(839.42) Closed dislocation, sacrum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other vertebra (839.4)\\" + }, + { + "displayName": "(839.49) Closed dislocation, vertebra, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other vertebra (839.4)\\(839.49) Closed dislocation, vertebra, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Closed dislocation, other vertebra (839.4)\\\\(839.49) Closed dislocation, vertebra, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, other vertebra (839.4)\\" + }, + { + "displayName": "Closed dislocation, thoracic and lumbar vertebra (839.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, thoracic and lumbar vertebra (839.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Closed dislocation, thoracic and lumbar vertebra (839.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\" + }, + { + "displayName": "(839.20) Closed dislocation, lumbar vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, thoracic and lumbar vertebra (839.2)\\(839.20) Closed dislocation, lumbar vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, thoracic and lumbar vertebra (839.2)\\" + }, + { + "displayName": "(839.21) Closed dislocation, thoracic vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, thoracic and lumbar vertebra (839.2)\\(839.21) Closed dislocation, thoracic vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Closed dislocation, thoracic and lumbar vertebra (839.2)\\" + }, + { + "displayName": "Open dislocation, cervical vertebra (839.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\" + }, + { + "displayName": "(839.10) Open dislocation, cervical vertebra, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\(839.10) Open dislocation, cervical vertebra, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Open dislocation, cervical vertebra (839.1)\\\\(839.10) Open dislocation, cervical vertebra, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\" + }, + { + "displayName": "(839.11) Open dislocation, first cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\(839.11) Open dislocation, first cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Open dislocation, cervical vertebra (839.1)\\\\(839.11) Open dislocation, first cervical vertebra\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\" + }, + { + "displayName": "(839.12) Open dislocation, second cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\(839.12) Open dislocation, second cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\" + }, + { + "displayName": "(839.13) Open dislocation, third cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\(839.13) Open dislocation, third cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\" + }, + { + "displayName": "(839.14) Open dislocation, fourth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\(839.14) Open dislocation, fourth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\" + }, + { + "displayName": "(839.15) Open dislocation, fifth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\(839.15) Open dislocation, fifth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\" + }, + { + "displayName": "(839.16) Open dislocation, sixth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\(839.16) Open dislocation, sixth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\" + }, + { + "displayName": "(839.17) Open dislocation, seventh cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\(839.17) Open dislocation, seventh cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\" + }, + { + "displayName": "(839.18) Open dislocation, multiple cervical vertebrae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\(839.18) Open dislocation, multiple cervical vertebrae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, cervical vertebra (839.1)\\" + }, + { + "displayName": "Open dislocation, other location (839.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other location (839.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\" + }, + { + "displayName": "(839.71) Open dislocation, sternum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other location (839.7)\\(839.71) Open dislocation, sternum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other location (839.7)\\" + }, + { + "displayName": "(839.79) Open dislocation, other location", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other location (839.7)\\(839.79) Open dislocation, other location\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other location (839.7)\\" + }, + { + "displayName": "Open dislocation, other vertebra (839.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other vertebra (839.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Open dislocation, other vertebra (839.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\" + }, + { + "displayName": "(839.50) Open dislocation, vertebra, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other vertebra (839.5)\\(839.50) Open dislocation, vertebra, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Open dislocation, other vertebra (839.5)\\\\(839.50) Open dislocation, vertebra, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other vertebra (839.5)\\" + }, + { + "displayName": "(839.51) Open dislocation, coccyx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other vertebra (839.5)\\(839.51) Open dislocation, coccyx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Open dislocation, other vertebra (839.5)\\\\(839.51) Open dislocation, coccyx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other vertebra (839.5)\\" + }, + { + "displayName": "(839.52) Open dislocation, sacrum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other vertebra (839.5)\\(839.52) Open dislocation, sacrum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Open dislocation, other vertebra (839.5)\\\\(839.52) Open dislocation, sacrum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other vertebra (839.5)\\" + }, + { + "displayName": "(839.59) Open dislocation, vertebra,other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other vertebra (839.5)\\(839.59) Open dislocation, vertebra,other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Dislocation (830-839.99)\\\\Other, multiple, and ill-defined dislocations (839)\\\\Open dislocation, other vertebra (839.5)\\\\(839.59) Open dislocation, vertebra,other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, other vertebra (839.5)\\" + }, + { + "displayName": "Open dislocation, thoracic and lumbar vertebra (839.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, thoracic and lumbar vertebra (839.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\" + }, + { + "displayName": "(839.30) Open dislocation, lumbar vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, thoracic and lumbar vertebra (839.3)\\(839.30) Open dislocation, lumbar vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, thoracic and lumbar vertebra (839.3)\\" + }, + { + "displayName": "(839.31) Open dislocation, thoracic vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, thoracic and lumbar vertebra (839.3)\\(839.31) Open dislocation, thoracic vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Dislocation (830-839.99)\\Other, multiple, and ill-defined dislocations (839)\\Open dislocation, thoracic and lumbar vertebra (839.3)\\" + }, + { + "displayName": "Effects of foreign body entering through orifice (930-939.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "(931) Foreign body in ear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\(931) Foreign body in ear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\" + }, + { + "displayName": "(932) Foreign body in nose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\(932) Foreign body in nose\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\" + }, + { + "displayName": "(936) Foreign body in intestine and colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\(936) Foreign body in intestine and colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\" + }, + { + "displayName": "(937) Foreign body in anus and rectum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\(937) Foreign body in anus and rectum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\" + }, + { + "displayName": "(938) Foreign body in digestive system, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\(938) Foreign body in digestive system, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\" + }, + { + "displayName": "Foreign body in genitourinary tract (939)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in genitourinary tract (939)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\" + }, + { + "displayName": "(939.0) Foreign body in bladder and urethra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in genitourinary tract (939)\\(939.0) Foreign body in bladder and urethra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in genitourinary tract (939)\\" + }, + { + "displayName": "(939.1) Foreign body in uterus, any part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in genitourinary tract (939)\\(939.1) Foreign body in uterus, any part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Effects of foreign body entering through orifice (930-939.99)\\\\Foreign body in genitourinary tract (939)\\\\(939.1) Foreign body in uterus, any part\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in genitourinary tract (939)\\" + }, + { + "displayName": "(939.2) Foreign body in vulva and vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in genitourinary tract (939)\\(939.2) Foreign body in vulva and vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Effects of foreign body entering through orifice (930-939.99)\\\\Foreign body in genitourinary tract (939)\\\\(939.2) Foreign body in vulva and vagina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in genitourinary tract (939)\\" + }, + { + "displayName": "(939.3) Foreign body in penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in genitourinary tract (939)\\(939.3) Foreign body in penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in genitourinary tract (939)\\" + }, + { + "displayName": "(939.9) Foreign body in unspecified site in genitourinary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in genitourinary tract (939)\\(939.9) Foreign body in unspecified site in genitourinary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in genitourinary tract (939)\\" + }, + { + "displayName": "Foreign body in mouth, esophagus, and stomach (935)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in mouth, esophagus, and stomach (935)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\" + }, + { + "displayName": "(935.0) Foreign body in mouth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in mouth, esophagus, and stomach (935)\\(935.0) Foreign body in mouth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in mouth, esophagus, and stomach (935)\\" + }, + { + "displayName": "(935.1) Foreign body in esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in mouth, esophagus, and stomach (935)\\(935.1) Foreign body in esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in mouth, esophagus, and stomach (935)\\" + }, + { + "displayName": "(935.2) Foreign body in stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in mouth, esophagus, and stomach (935)\\(935.2) Foreign body in stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Effects of foreign body entering through orifice (930-939.99)\\\\Foreign body in mouth, esophagus, and stomach (935)\\\\(935.2) Foreign body in stomach\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in mouth, esophagus, and stomach (935)\\" + }, + { + "displayName": "Foreign body in pharynx and larynx (933)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in pharynx and larynx (933)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Effects of foreign body entering through orifice (930-939.99)\\\\Foreign body in pharynx and larynx (933)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\" + }, + { + "displayName": "(933.0) Foreign body in pharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in pharynx and larynx (933)\\(933.0) Foreign body in pharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Effects of foreign body entering through orifice (930-939.99)\\\\Foreign body in pharynx and larynx (933)\\\\(933.0) Foreign body in pharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in pharynx and larynx (933)\\" + }, + { + "displayName": "(933.1) Foreign body in larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in pharynx and larynx (933)\\(933.1) Foreign body in larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in pharynx and larynx (933)\\" + }, + { + "displayName": "Foreign body in trachea, bronchus, and lung (934)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in trachea, bronchus, and lung (934)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\" + }, + { + "displayName": "(934.0) Foreign body in trachea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in trachea, bronchus, and lung (934)\\(934.0) Foreign body in trachea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in trachea, bronchus, and lung (934)\\" + }, + { + "displayName": "(934.1) Foreign body in main bronchus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in trachea, bronchus, and lung (934)\\(934.1) Foreign body in main bronchus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in trachea, bronchus, and lung (934)\\" + }, + { + "displayName": "(934.8) Foreign body in other specified parts bronchus and lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in trachea, bronchus, and lung (934)\\(934.8) Foreign body in other specified parts bronchus and lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in trachea, bronchus, and lung (934)\\" + }, + { + "displayName": "(934.9) Foreign body in respiratory tree, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in trachea, bronchus, and lung (934)\\(934.9) Foreign body in respiratory tree, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body in trachea, bronchus, and lung (934)\\" + }, + { + "displayName": "Foreign body on external eye (930)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body on external eye (930)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\" + }, + { + "displayName": "(930.0) Corneal foreign body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body on external eye (930)\\(930.0) Corneal foreign body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body on external eye (930)\\" + }, + { + "displayName": "(930.1) Foreign body in conjunctival sac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body on external eye (930)\\(930.1) Foreign body in conjunctival sac\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body on external eye (930)\\" + }, + { + "displayName": "(930.2) Foreign body in lacrimal punctum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body on external eye (930)\\(930.2) Foreign body in lacrimal punctum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Effects of foreign body entering through orifice (930-939.99)\\\\Foreign body on external eye (930)\\\\(930.2) Foreign body in lacrimal punctum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body on external eye (930)\\" + }, + { + "displayName": "(930.8) Foreign body in other and combined sites on external eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body on external eye (930)\\(930.8) Foreign body in other and combined sites on external eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Effects of foreign body entering through orifice (930-939.99)\\\\Foreign body on external eye (930)\\\\(930.8) Foreign body in other and combined sites on external eye\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body on external eye (930)\\" + }, + { + "displayName": "(930.9) Foreign body in unspecified site on external eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body on external eye (930)\\(930.9) Foreign body in unspecified site on external eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Effects of foreign body entering through orifice (930-939.99)\\\\Foreign body on external eye (930)\\\\(930.9) Foreign body in unspecified site on external eye\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Effects of foreign body entering through orifice (930-939.99)\\Foreign body on external eye (930)\\" + }, + { + "displayName": "Fractures (800-829.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "FRACTURE OF LOWER LIMB (820-829.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\" + }, + { + "displayName": "Fracture of ankle (824)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\" + }, + { + "displayName": "(824.0) Fracture of medial malleolus, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\(824.0) Fracture of medial malleolus, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\" + }, + { + "displayName": "(824.1) Fracture of medial malleolus, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\(824.1) Fracture of medial malleolus, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of ankle (824)\\\\(824.1) Fracture of medial malleolus, open\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\" + }, + { + "displayName": "(824.2) Fracture of lateral malleolus, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\(824.2) Fracture of lateral malleolus, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\" + }, + { + "displayName": "(824.3) Fracture of lateral malleolus, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\(824.3) Fracture of lateral malleolus, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\" + }, + { + "displayName": "(824.4) Bimalleolar fracture, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\(824.4) Bimalleolar fracture, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\" + }, + { + "displayName": "(824.5) Bimalleolar fracture, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\(824.5) Bimalleolar fracture, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\" + }, + { + "displayName": "(824.6) Trimalleolar fracture, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\(824.6) Trimalleolar fracture, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\" + }, + { + "displayName": "(824.7) Trimalleolar fracture, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\(824.7) Trimalleolar fracture, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\" + }, + { + "displayName": "(824.8) Unspecified fracture of ankle, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\(824.8) Unspecified fracture of ankle, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\" + }, + { + "displayName": "(824.9) Unspecified fracture of ankle, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\(824.9) Unspecified fracture of ankle, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of ankle (824)\\" + }, + { + "displayName": "Fracture of neck of femur (820)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of neck of femur (820)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\" + }, + { + "displayName": "(820.8) Closed fracture of unspecified part of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\(820.8) Closed fracture of unspecified part of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of neck of femur (820)\\\\(820.8) Closed fracture of unspecified part of neck of femur\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\" + }, + { + "displayName": "(820.9) Open fracture of unspecified part of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\(820.9) Open fracture of unspecified part of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\" + }, + { + "displayName": "Pertrochanteric fracture of femur, closed (820.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, closed (820.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of neck of femur (820)\\\\Pertrochanteric fracture of femur, closed (820.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\" + }, + { + "displayName": "(820.20) Closed fracture of trochanteric section of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, closed (820.2)\\(820.20) Closed fracture of trochanteric section of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, closed (820.2)\\" + }, + { + "displayName": "(820.21) Closed fracture of intertrochanteric section of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, closed (820.2)\\(820.21) Closed fracture of intertrochanteric section of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, closed (820.2)\\" + }, + { + "displayName": "(820.22) Closed fracture of subtrochanteric section of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, closed (820.2)\\(820.22) Closed fracture of subtrochanteric section of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, closed (820.2)\\" + }, + { + "displayName": "Pertrochanteric fracture of femur, open (820.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, open (820.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\" + }, + { + "displayName": "(820.30) Open fracture of trochanteric section of neck of femur, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, open (820.3)\\(820.30) Open fracture of trochanteric section of neck of femur, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of neck of femur (820)\\\\Pertrochanteric fracture of femur, open (820.3)\\\\(820.30) Open fracture of trochanteric section of neck of femur, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, open (820.3)\\" + }, + { + "displayName": "(820.31) Open fracture of intertrochanteric section of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, open (820.3)\\(820.31) Open fracture of intertrochanteric section of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of neck of femur (820)\\\\Pertrochanteric fracture of femur, open (820.3)\\\\(820.31) Open fracture of intertrochanteric section of neck of femur\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, open (820.3)\\" + }, + { + "displayName": "(820.32) Open fracture of subtrochanteric section of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, open (820.3)\\(820.32) Open fracture of subtrochanteric section of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Pertrochanteric fracture of femur, open (820.3)\\" + }, + { + "displayName": "Transcervical fracture, closed (820.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, closed (820.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of neck of femur (820)\\\\Transcervical fracture, closed (820.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\" + }, + { + "displayName": "(820.00) Closed fracture of intracapsular section of neck of femur, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, closed (820.0)\\(820.00) Closed fracture of intracapsular section of neck of femur, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, closed (820.0)\\" + }, + { + "displayName": "(820.01) Closed fracture of epiphysis (separation) (upper) of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, closed (820.0)\\(820.01) Closed fracture of epiphysis (separation) (upper) of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, closed (820.0)\\" + }, + { + "displayName": "(820.02) Closed fracture of midcervical section of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, closed (820.0)\\(820.02) Closed fracture of midcervical section of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, closed (820.0)\\" + }, + { + "displayName": "(820.03) Closed fracture of base of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, closed (820.0)\\(820.03) Closed fracture of base of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, closed (820.0)\\" + }, + { + "displayName": "(820.09) Other closed transcervical fracture of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, closed (820.0)\\(820.09) Other closed transcervical fracture of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, closed (820.0)\\" + }, + { + "displayName": "Transcervical fracture, open (820.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, open (820.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\" + }, + { + "displayName": "(820.10) Open fracture of intracapsular section of neck of femur, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, open (820.1)\\(820.10) Open fracture of intracapsular section of neck of femur, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, open (820.1)\\" + }, + { + "displayName": "(820.11) Open fracture of epiphysis (separation) (upper) of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, open (820.1)\\(820.11) Open fracture of epiphysis (separation) (upper) of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, open (820.1)\\" + }, + { + "displayName": "(820.12) Open fracture of midcervical section of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, open (820.1)\\(820.12) Open fracture of midcervical section of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, open (820.1)\\" + }, + { + "displayName": "(820.13) Open fracture of base of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, open (820.1)\\(820.13) Open fracture of base of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, open (820.1)\\" + }, + { + "displayName": "(820.19) Other open transcervical fracture of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, open (820.1)\\(820.19) Other open transcervical fracture of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of neck of femur (820)\\Transcervical fracture, open (820.1)\\" + }, + { + "displayName": "Fracture of one or more phalanges of foot (826)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more phalanges of foot (826)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\" + }, + { + "displayName": "(826.0) Closed fracture of one or more phalanges of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more phalanges of foot (826)\\(826.0) Closed fracture of one or more phalanges of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more phalanges of foot (826)\\\\(826.0) Closed fracture of one or more phalanges of foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more phalanges of foot (826)\\" + }, + { + "displayName": "(826.1) Open fracture of one or more phalanges of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more phalanges of foot (826)\\(826.1) Open fracture of one or more phalanges of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more phalanges of foot (826)\\\\(826.1) Open fracture of one or more phalanges of foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more phalanges of foot (826)\\" + }, + { + "displayName": "Fracture of one or more tarsal and metatarsal bones (825)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more tarsal and metatarsal bones (825)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\" + }, + { + "displayName": "(825.0) Fracture of calcaneus, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\(825.0) Fracture of calcaneus, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more tarsal and metatarsal bones (825)\\\\(825.0) Fracture of calcaneus, closed\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\" + }, + { + "displayName": "(825.1) Fracture of calcaneus, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\(825.1) Fracture of calcaneus, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\" + }, + { + "displayName": "Fracture of other tarsal and metatarsal bones, closed (825.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\" + }, + { + "displayName": "(825.20) Closed fracture of unspecified bone(s) of foot [except toes]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\(825.20) Closed fracture of unspecified bone(s) of foot [except toes]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\" + }, + { + "displayName": "(825.21) Closed fracture of astragalus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\(825.21) Closed fracture of astragalus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\" + }, + { + "displayName": "(825.22) Closed fracture of navicular [scaphoid], foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\(825.22) Closed fracture of navicular [scaphoid], foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\" + }, + { + "displayName": "(825.23) Closed fracture of cuboid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\(825.23) Closed fracture of cuboid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\" + }, + { + "displayName": "(825.24) Closed fracture of cuneiform, foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\(825.24) Closed fracture of cuneiform, foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\" + }, + { + "displayName": "(825.25) Closed fracture of metatarsal bone(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\(825.25) Closed fracture of metatarsal bone(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\" + }, + { + "displayName": "(825.29) Other closed fracture of tarsal and metatarsal bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\(825.29) Other closed fracture of tarsal and metatarsal bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more tarsal and metatarsal bones (825)\\\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\\\(825.29) Other closed fracture of tarsal and metatarsal bones\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, closed (825.2)\\" + }, + { + "displayName": "Fracture of other tarsal and metatarsal bones, open (825.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more tarsal and metatarsal bones (825)\\\\Fracture of other tarsal and metatarsal bones, open (825.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\" + }, + { + "displayName": "(825.30) Open fracture of unspecified bone(s) of foot [except toes]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\(825.30) Open fracture of unspecified bone(s) of foot [except toes]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more tarsal and metatarsal bones (825)\\\\Fracture of other tarsal and metatarsal bones, open (825.3)\\\\(825.30) Open fracture of unspecified bone(s) of foot [except toes]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\" + }, + { + "displayName": "(825.31) Open fracture of astragalus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\(825.31) Open fracture of astragalus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more tarsal and metatarsal bones (825)\\\\Fracture of other tarsal and metatarsal bones, open (825.3)\\\\(825.31) Open fracture of astragalus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\" + }, + { + "displayName": "(825.32) Open fracture of navicular [scaphoid], foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\(825.32) Open fracture of navicular [scaphoid], foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more tarsal and metatarsal bones (825)\\\\Fracture of other tarsal and metatarsal bones, open (825.3)\\\\(825.32) Open fracture of navicular [scaphoid], foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\" + }, + { + "displayName": "(825.33) Open fracture of cuboid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\(825.33) Open fracture of cuboid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\" + }, + { + "displayName": "(825.34) Open fracture of cuneiform, foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\(825.34) Open fracture of cuneiform, foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more tarsal and metatarsal bones (825)\\\\Fracture of other tarsal and metatarsal bones, open (825.3)\\\\(825.34) Open fracture of cuneiform, foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\" + }, + { + "displayName": "(825.35) Open fracture of metatarsal bone(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\(825.35) Open fracture of metatarsal bone(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more tarsal and metatarsal bones (825)\\\\Fracture of other tarsal and metatarsal bones, open (825.3)\\\\(825.35) Open fracture of metatarsal bone(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\" + }, + { + "displayName": "(825.39) Other open fracture of tarsal and metatarsal bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\(825.39) Other open fracture of tarsal and metatarsal bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of one or more tarsal and metatarsal bones (825)\\\\Fracture of other tarsal and metatarsal bones, open (825.3)\\\\(825.39) Other open fracture of tarsal and metatarsal bones\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of one or more tarsal and metatarsal bones (825)\\Fracture of other tarsal and metatarsal bones, open (825.3)\\" + }, + { + "displayName": "Fracture of other and unspecified parts of femur (821)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\" + }, + { + "displayName": "Fracture of lower end of femur, closed (821.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, closed (821.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\" + }, + { + "displayName": "(821.20) Closed fracture of lower end of femur, unspecified part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, closed (821.2)\\(821.20) Closed fracture of lower end of femur, unspecified part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, closed (821.2)\\" + }, + { + "displayName": "(821.21) Closed fracture of condyle, femoral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, closed (821.2)\\(821.21) Closed fracture of condyle, femoral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, closed (821.2)\\" + }, + { + "displayName": "(821.22) Closed fracture of epiphysis, lower (separation) of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, closed (821.2)\\(821.22) Closed fracture of epiphysis, lower (separation) of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, closed (821.2)\\" + }, + { + "displayName": "(821.23) Closed supracondylar fracture of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, closed (821.2)\\(821.23) Closed supracondylar fracture of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, closed (821.2)\\" + }, + { + "displayName": "(821.29) Other closed fracture of lower end of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, closed (821.2)\\(821.29) Other closed fracture of lower end of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of other and unspecified parts of femur (821)\\\\Fracture of lower end of femur, closed (821.2)\\\\(821.29) Other closed fracture of lower end of femur\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, closed (821.2)\\" + }, + { + "displayName": "Fracture of lower end of femur, open (821.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, open (821.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of other and unspecified parts of femur (821)\\\\Fracture of lower end of femur, open (821.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\" + }, + { + "displayName": "(821.30) Open fracture of lower end of femur, unspecified part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, open (821.3)\\(821.30) Open fracture of lower end of femur, unspecified part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, open (821.3)\\" + }, + { + "displayName": "(821.31) Open fracture of condyle, femoral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, open (821.3)\\(821.31) Open fracture of condyle, femoral\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of other and unspecified parts of femur (821)\\\\Fracture of lower end of femur, open (821.3)\\\\(821.31) Open fracture of condyle, femoral\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, open (821.3)\\" + }, + { + "displayName": "(821.32) Open fracture of epiphysis. Lower (separation) of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, open (821.3)\\(821.32) Open fracture of epiphysis. Lower (separation) of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, open (821.3)\\" + }, + { + "displayName": "(821.33) Open supracondylar fracture of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, open (821.3)\\(821.33) Open supracondylar fracture of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of other and unspecified parts of femur (821)\\\\Fracture of lower end of femur, open (821.3)\\\\(821.33) Open supracondylar fracture of femur\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, open (821.3)\\" + }, + { + "displayName": "(821.39) Other open fracture of lower end of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, open (821.3)\\(821.39) Other open fracture of lower end of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of other and unspecified parts of femur (821)\\\\Fracture of lower end of femur, open (821.3)\\\\(821.39) Other open fracture of lower end of femur\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of lower end of femur, open (821.3)\\" + }, + { + "displayName": "Fracture of shaft or unspecified part of femur, closed (821.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of shaft or unspecified part of femur, closed (821.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\" + }, + { + "displayName": "(821.00) Closed fracture of unspecified part of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of shaft or unspecified part of femur, closed (821.0)\\(821.00) Closed fracture of unspecified part of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of shaft or unspecified part of femur, closed (821.0)\\" + }, + { + "displayName": "(821.01) Closed fracture of shaft of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of shaft or unspecified part of femur, closed (821.0)\\(821.01) Closed fracture of shaft of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of shaft or unspecified part of femur, closed (821.0)\\" + }, + { + "displayName": "Fracture of shaft or unspecified part of femur, open (821.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of shaft or unspecified part of femur, open (821.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\" + }, + { + "displayName": "(821.10) Open fracture of unspecified part of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of shaft or unspecified part of femur, open (821.1)\\(821.10) Open fracture of unspecified part of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of shaft or unspecified part of femur, open (821.1)\\" + }, + { + "displayName": "(821.11) Open fracture of shaft of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of shaft or unspecified part of femur, open (821.1)\\(821.11) Open fracture of shaft of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of other and unspecified parts of femur (821)\\Fracture of shaft or unspecified part of femur, open (821.1)\\" + }, + { + "displayName": "Fracture of patella (822)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of patella (822)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\" + }, + { + "displayName": "(822.0) Closed fracture of patella", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of patella (822)\\(822.0) Closed fracture of patella\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of patella (822)\\" + }, + { + "displayName": "(822.1) Open fracture of patella", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of patella (822)\\(822.1) Open fracture of patella\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of patella (822)\\\\(822.1) Open fracture of patella\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of patella (822)\\" + }, + { + "displayName": "Fracture of tibia and fibula (823)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of tibia and fibula (823)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\" + }, + { + "displayName": "Fracture of shaft of tibia and fibula, closed (823.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, closed (823.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\" + }, + { + "displayName": "(823.20) Closed fracture of shaft of tibia alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, closed (823.2)\\(823.20) Closed fracture of shaft of tibia alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of tibia and fibula (823)\\\\Fracture of shaft of tibia and fibula, closed (823.2)\\\\(823.20) Closed fracture of shaft of tibia alone\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, closed (823.2)\\" + }, + { + "displayName": "(823.21) Closed fracture of shaft of fibula alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, closed (823.2)\\(823.21) Closed fracture of shaft of fibula alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, closed (823.2)\\" + }, + { + "displayName": "(823.22) Closed fracture of shaft of fibula with tibia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, closed (823.2)\\(823.22) Closed fracture of shaft of fibula with tibia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of tibia and fibula (823)\\\\Fracture of shaft of tibia and fibula, closed (823.2)\\\\(823.22) Closed fracture of shaft of fibula with tibia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, closed (823.2)\\" + }, + { + "displayName": "Fracture of shaft of tibia and fibula, open (823.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, open (823.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\" + }, + { + "displayName": "(823.30) Open fracture of shaft of tibia alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, open (823.3)\\(823.30) Open fracture of shaft of tibia alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of tibia and fibula (823)\\\\Fracture of shaft of tibia and fibula, open (823.3)\\\\(823.30) Open fracture of shaft of tibia alone\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, open (823.3)\\" + }, + { + "displayName": "(823.31) Open fracture of shaft of fibula alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, open (823.3)\\(823.31) Open fracture of shaft of fibula alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Fracture of tibia and fibula (823)\\\\Fracture of shaft of tibia and fibula, open (823.3)\\\\(823.31) Open fracture of shaft of fibula alone\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, open (823.3)\\" + }, + { + "displayName": "(823.32) Open fracture of shaft of fibula with tibia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, open (823.3)\\(823.32) Open fracture of shaft of fibula with tibia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of shaft of tibia and fibula, open (823.3)\\" + }, + { + "displayName": "Fracture of unspecified part of tibia and fibula, closed (823.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, closed (823.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\" + }, + { + "displayName": "(823.80) Closed fracture of unspecified part of tibia alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, closed (823.8)\\(823.80) Closed fracture of unspecified part of tibia alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, closed (823.8)\\" + }, + { + "displayName": "(823.81) Closed fracture of unspecified part of fibula alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, closed (823.8)\\(823.81) Closed fracture of unspecified part of fibula alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, closed (823.8)\\" + }, + { + "displayName": "(823.82) Closed fracture of unspecified part of fibula with tibia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, closed (823.8)\\(823.82) Closed fracture of unspecified part of fibula with tibia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, closed (823.8)\\" + }, + { + "displayName": "Fracture of unspecified part of tibia and fibula, open (823.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, open (823.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\" + }, + { + "displayName": "(823.90) Open fracture of unspecified part of tibia alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, open (823.9)\\(823.90) Open fracture of unspecified part of tibia alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, open (823.9)\\" + }, + { + "displayName": "(823.91) Open fracture of unspecified part of fibula alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, open (823.9)\\(823.91) Open fracture of unspecified part of fibula alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, open (823.9)\\" + }, + { + "displayName": "(823.92) Open fracture of unspecified part of fibula with tibia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, open (823.9)\\(823.92) Open fracture of unspecified part of fibula with tibia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of unspecified part of tibia and fibula, open (823.9)\\" + }, + { + "displayName": "Fracture of upper end of tibia and fibula, closed (823.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, closed (823.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\" + }, + { + "displayName": "(823.00) Closed fracture of upper end of tibia alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, closed (823.0)\\(823.00) Closed fracture of upper end of tibia alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, closed (823.0)\\" + }, + { + "displayName": "(823.01) Closed fracture of upper end of fibula alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, closed (823.0)\\(823.01) Closed fracture of upper end of fibula alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, closed (823.0)\\" + }, + { + "displayName": "(823.02) Closed fracture of upper end of fibula with tibia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, closed (823.0)\\(823.02) Closed fracture of upper end of fibula with tibia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, closed (823.0)\\" + }, + { + "displayName": "Fracture of upper end of tibia and fibula, open (823.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, open (823.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\" + }, + { + "displayName": "(823.10) Open fracture of upper end of tibia alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, open (823.1)\\(823.10) Open fracture of upper end of tibia alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, open (823.1)\\" + }, + { + "displayName": "(823.11) Open fracture of upper end of fibula alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, open (823.1)\\(823.11) Open fracture of upper end of fibula alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, open (823.1)\\" + }, + { + "displayName": "(823.12) Open fracture of upper end of fibula with tibia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, open (823.1)\\(823.12) Open fracture of upper end of fibula with tibia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Fracture of upper end of tibia and fibula, open (823.1)\\" + }, + { + "displayName": "Torus fracture (823.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Torus fracture (823.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\" + }, + { + "displayName": "(823.40) Torus fracture, tibia alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Torus fracture (823.4)\\(823.40) Torus fracture, tibia alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Torus fracture (823.4)\\" + }, + { + "displayName": "(823.41) Torus fracture, fibula alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Torus fracture (823.4)\\(823.41) Torus fracture, fibula alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Torus fracture (823.4)\\" + }, + { + "displayName": "(823.42) Torus fracture, fibula with tibia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Torus fracture (823.4)\\(823.42) Torus fracture, fibula with tibia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of tibia and fibula (823)\\Torus fracture (823.4)\\" + }, + { + "displayName": "Fracture of unspecified bones (829)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of unspecified bones (829)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\" + }, + { + "displayName": "(829.0) Fracture of unspecified bone, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of unspecified bones (829)\\(829.0) Fracture of unspecified bone, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of unspecified bones (829)\\" + }, + { + "displayName": "(829.1) Fracture of unspecified bone, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of unspecified bones (829)\\(829.1) Fracture of unspecified bone, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Fracture of unspecified bones (829)\\" + }, + { + "displayName": "Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\" + }, + { + "displayName": "(828.0) Closed multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\\(828.0) Closed multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\\\\(828.0) Closed multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\\" + }, + { + "displayName": "(828.1) Open multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\\(828.1) Open multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\\\\(828.1) Open multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Multiple fractures involving both lower limbs, lower with upper limb, and lower limb(s) with rib(s) and sternum (828)\\" + }, + { + "displayName": "Other, multiple, and ill-defined fractures of lower limb (827)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Other, multiple, and ill-defined fractures of lower limb (827)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Other, multiple, and ill-defined fractures of lower limb (827)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\" + }, + { + "displayName": "(827.0) Other, multiple and ill-defined fractures of lower limb, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Other, multiple, and ill-defined fractures of lower limb (827)\\(827.0) Other, multiple and ill-defined fractures of lower limb, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF LOWER LIMB (820-829.99)\\\\Other, multiple, and ill-defined fractures of lower limb (827)\\\\(827.0) Other, multiple and ill-defined fractures of lower limb, closed\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Other, multiple, and ill-defined fractures of lower limb (827)\\" + }, + { + "displayName": "(827.1) Other, multiple and ill-defined fractures of lower limb, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Other, multiple, and ill-defined fractures of lower limb (827)\\(827.1) Other, multiple and ill-defined fractures of lower limb, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF LOWER LIMB (820-829.99)\\Other, multiple, and ill-defined fractures of lower limb (827)\\" + }, + { + "displayName": "FRACTURE OF NECK AND TRUNK (805-809.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\" + }, + { + "displayName": "Fracture of pelvis (808)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\" + }, + { + "displayName": "(808.0) Closed fracture of acetabulum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\(808.0) Closed fracture of acetabulum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\" + }, + { + "displayName": "(808.1) Open fracture of acetabulum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\(808.1) Open fracture of acetabulum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\" + }, + { + "displayName": "(808.2) Closed fracture of pubis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\(808.2) Closed fracture of pubis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\" + }, + { + "displayName": "(808.3) Open fracture of pubis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\(808.3) Open fracture of pubis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\" + }, + { + "displayName": "(808.8) Closed unspecified fracture of pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\(808.8) Closed unspecified fracture of pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of pelvis (808)\\\\(808.8) Closed unspecified fracture of pelvis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\" + }, + { + "displayName": "(808.9) Open unspecified fracture of pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\(808.9) Open unspecified fracture of pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of pelvis (808)\\\\(808.9) Open unspecified fracture of pelvis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\" + }, + { + "displayName": "Closed fracture of other specified part of pelvis (808.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Closed fracture of other specified part of pelvis (808.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of pelvis (808)\\\\Closed fracture of other specified part of pelvis (808.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\" + }, + { + "displayName": "(808.41) Closed fracture of ilium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Closed fracture of other specified part of pelvis (808.4)\\(808.41) Closed fracture of ilium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of pelvis (808)\\\\Closed fracture of other specified part of pelvis (808.4)\\\\(808.41) Closed fracture of ilium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Closed fracture of other specified part of pelvis (808.4)\\" + }, + { + "displayName": "(808.42) Closed fracture of ischium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Closed fracture of other specified part of pelvis (808.4)\\(808.42) Closed fracture of ischium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of pelvis (808)\\\\Closed fracture of other specified part of pelvis (808.4)\\\\(808.42) Closed fracture of ischium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Closed fracture of other specified part of pelvis (808.4)\\" + }, + { + "displayName": "(808.43) Multiple closed pelvic fractures with disruption of pelvic circle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Closed fracture of other specified part of pelvis (808.4)\\(808.43) Multiple closed pelvic fractures with disruption of pelvic circle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Closed fracture of other specified part of pelvis (808.4)\\" + }, + { + "displayName": "(808.44) Multiple closed pelvic fractures without disruption of pelvic circle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Closed fracture of other specified part of pelvis (808.4)\\(808.44) Multiple closed pelvic fractures without disruption of pelvic circle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Closed fracture of other specified part of pelvis (808.4)\\" + }, + { + "displayName": "(808.49) Closed fracture of other specified part of pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Closed fracture of other specified part of pelvis (808.4)\\(808.49) Closed fracture of other specified part of pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Closed fracture of other specified part of pelvis (808.4)\\" + }, + { + "displayName": "Open fracture of other specified part of pelvis (808.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Open fracture of other specified part of pelvis (808.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\" + }, + { + "displayName": "(808.51) Open fracture of ilium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Open fracture of other specified part of pelvis (808.5)\\(808.51) Open fracture of ilium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Open fracture of other specified part of pelvis (808.5)\\" + }, + { + "displayName": "(808.52) Open fracture of ischium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Open fracture of other specified part of pelvis (808.5)\\(808.52) Open fracture of ischium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Open fracture of other specified part of pelvis (808.5)\\" + }, + { + "displayName": "(808.53) Multiple open pelvic fractures with disruption of pelvic circle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Open fracture of other specified part of pelvis (808.5)\\(808.53) Multiple open pelvic fractures with disruption of pelvic circle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Open fracture of other specified part of pelvis (808.5)\\" + }, + { + "displayName": "(808.59) Open fracture of other specified part of pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Open fracture of other specified part of pelvis (808.5)\\(808.59) Open fracture of other specified part of pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of pelvis (808)\\\\Open fracture of other specified part of pelvis (808.5)\\\\(808.59) Open fracture of other specified part of pelvis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of pelvis (808)\\Open fracture of other specified part of pelvis (808.5)\\" + }, + { + "displayName": "Fracture of rib(s), sternum, larynx, and trachea (807)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of rib(s), sternum, larynx, and trachea (807)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\" + }, + { + "displayName": "(807.2) Closed fracture of sternum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\(807.2) Closed fracture of sternum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of rib(s), sternum, larynx, and trachea (807)\\\\(807.2) Closed fracture of sternum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\" + }, + { + "displayName": "(807.3) Open fracture of sternum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\(807.3) Open fracture of sternum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\" + }, + { + "displayName": "(807.4) Flail chest", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\(807.4) Flail chest\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\" + }, + { + "displayName": "(807.5) Closed fracture of larynx and trachea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\(807.5) Closed fracture of larynx and trachea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\" + }, + { + "displayName": "(807.6) Open fracture of larynx and trachea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\(807.6) Open fracture of larynx and trachea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\" + }, + { + "displayName": "Closed fracture of rib(s) (807.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\" + }, + { + "displayName": "(807.00) Closed fracture of rib(s), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\(807.00) Closed fracture of rib(s), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\" + }, + { + "displayName": "(807.01) Closed fracture of one rib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\(807.01) Closed fracture of one rib\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\" + }, + { + "displayName": "(807.02) Closed fracture of two ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\(807.02) Closed fracture of two ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of rib(s), sternum, larynx, and trachea (807)\\\\Closed fracture of rib(s) (807.0)\\\\(807.02) Closed fracture of two ribs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\" + }, + { + "displayName": "(807.03) Closed fracture of three ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\(807.03) Closed fracture of three ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\" + }, + { + "displayName": "(807.04) Closed fracture of four ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\(807.04) Closed fracture of four ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\" + }, + { + "displayName": "(807.05) Closed fracture of five ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\(807.05) Closed fracture of five ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of rib(s), sternum, larynx, and trachea (807)\\\\Closed fracture of rib(s) (807.0)\\\\(807.05) Closed fracture of five ribs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\" + }, + { + "displayName": "(807.06) Closed fracture of six ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\(807.06) Closed fracture of six ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of rib(s), sternum, larynx, and trachea (807)\\\\Closed fracture of rib(s) (807.0)\\\\(807.06) Closed fracture of six ribs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\" + }, + { + "displayName": "(807.07) Closed fracture of seven ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\(807.07) Closed fracture of seven ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\" + }, + { + "displayName": "(807.08) Closed fracture of eight or more ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\(807.08) Closed fracture of eight or more ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\" + }, + { + "displayName": "(807.09) Closed fracture of multiple ribs, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\(807.09) Closed fracture of multiple ribs, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Closed fracture of rib(s) (807.0)\\" + }, + { + "displayName": "Open fracture of rib(s) (807.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\" + }, + { + "displayName": "(807.10) Open fracture of rib(s), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\(807.10) Open fracture of rib(s), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\" + }, + { + "displayName": "(807.11) Open fracture of one rib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\(807.11) Open fracture of one rib\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\" + }, + { + "displayName": "(807.12) Open fracture of two ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\(807.12) Open fracture of two ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\" + }, + { + "displayName": "(807.13) Open fracture of three ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\(807.13) Open fracture of three ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of rib(s), sternum, larynx, and trachea (807)\\\\Open fracture of rib(s) (807.1)\\\\(807.13) Open fracture of three ribs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\" + }, + { + "displayName": "(807.14) Open fracture of four ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\(807.14) Open fracture of four ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of rib(s), sternum, larynx, and trachea (807)\\\\Open fracture of rib(s) (807.1)\\\\(807.14) Open fracture of four ribs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\" + }, + { + "displayName": "(807.15) Open fracture of five ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\(807.15) Open fracture of five ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\" + }, + { + "displayName": "(807.16) Open fracture of six ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\(807.16) Open fracture of six ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\" + }, + { + "displayName": "(807.17) Open fracture of seven ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\(807.17) Open fracture of seven ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\" + }, + { + "displayName": "(807.18) Open fracture of eight or more ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\(807.18) Open fracture of eight or more ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of rib(s), sternum, larynx, and trachea (807)\\\\Open fracture of rib(s) (807.1)\\\\(807.18) Open fracture of eight or more ribs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\" + }, + { + "displayName": "(807.19) Open fracture of multiple ribs, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\(807.19) Open fracture of multiple ribs, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of rib(s), sternum, larynx, and trachea (807)\\Open fracture of rib(s) (807.1)\\" + }, + { + "displayName": "Fracture of vertebral column with spinal cord injury (806)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\" + }, + { + "displayName": "(806.4) Closed fracture of lumbar spine with spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\(806.4) Closed fracture of lumbar spine with spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\" + }, + { + "displayName": "(806.5) Open fracture of lumbar spine with spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\(806.5) Open fracture of lumbar spine with spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\" + }, + { + "displayName": "(806.8) Closed fracture of unspecified vertebral column with spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\(806.8) Closed fracture of unspecified vertebral column with spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\" + }, + { + "displayName": "(806.9) Open fracture of unspecified vertebral column with spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\(806.9) Open fracture of unspecified vertebral column with spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\" + }, + { + "displayName": "Closed fracture of cervical vertebra with spinal cord injury (806.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\" + }, + { + "displayName": "(806.00) Closed fracture of C1-C4 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\(806.00) Closed fracture of C1-C4 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\" + }, + { + "displayName": "(806.01) Closed fracture of C1-C4 level with complete lesion of cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\(806.01) Closed fracture of C1-C4 level with complete lesion of cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\" + }, + { + "displayName": "(806.02) Closed fracture of C1-C4 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\(806.02) Closed fracture of C1-C4 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\\\(806.02) Closed fracture of C1-C4 level with anterior cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\" + }, + { + "displayName": "(806.03) Closed fracture of C1-C4 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\(806.03) Closed fracture of C1-C4 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\" + }, + { + "displayName": "(806.04) Closed fracture of C1-C4 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\(806.04) Closed fracture of C1-C4 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\" + }, + { + "displayName": "(806.05) Closed fracture of C5-C7 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\(806.05) Closed fracture of C5-C7 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\" + }, + { + "displayName": "(806.06) Closed fracture of C5-C7 level with complete lesion of cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\(806.06) Closed fracture of C5-C7 level with complete lesion of cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\" + }, + { + "displayName": "(806.07) Closed fracture of C5-C7 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\(806.07) Closed fracture of C5-C7 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\" + }, + { + "displayName": "(806.08) Closed fracture of C5-C7 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\(806.08) Closed fracture of C5-C7 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\\\(806.08) Closed fracture of C5-C7 level with central cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\" + }, + { + "displayName": "(806.09) Closed fracture of C5-C7 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\(806.09) Closed fracture of C5-C7 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\\\(806.09) Closed fracture of C5-C7 level with other specified spinal cord injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of cervical vertebra with spinal cord injury (806.0)\\" + }, + { + "displayName": "Closed fracture of dorsal vertebra with spinal cord injury (806.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\" + }, + { + "displayName": "(806.20) Closed fracture of T1-T6 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\(806.20) Closed fracture of T1-T6 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\\\(806.20) Closed fracture of T1-T6 level with unspecified spinal cord injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\" + }, + { + "displayName": "(806.21) Closed fracture of T1-T6 level with complete lesion of cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\(806.21) Closed fracture of T1-T6 level with complete lesion of cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\" + }, + { + "displayName": "(806.22) Closed fracture of T1-T6 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\(806.22) Closed fracture of T1-T6 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\" + }, + { + "displayName": "(806.23) Closed fracture of T1-T6 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\(806.23) Closed fracture of T1-T6 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\" + }, + { + "displayName": "(806.24) Closed fracture of T1-T6 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\(806.24) Closed fracture of T1-T6 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\" + }, + { + "displayName": "(806.25) Closed fracture of T7-T12 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\(806.25) Closed fracture of T7-T12 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\" + }, + { + "displayName": "(806.26) Closed fracture of T7-T12 level with complete lesion of cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\(806.26) Closed fracture of T7-T12 level with complete lesion of cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\\\(806.26) Closed fracture of T7-T12 level with complete lesion of cord\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\" + }, + { + "displayName": "(806.27) Closed fracture of T7-T12 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\(806.27) Closed fracture of T7-T12 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\\\(806.27) Closed fracture of T7-T12 level with anterior cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\" + }, + { + "displayName": "(806.28) Closed fracture of T7-T12 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\(806.28) Closed fracture of T7-T12 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\\\(806.28) Closed fracture of T7-T12 level with central cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\" + }, + { + "displayName": "(806.29) Closed fracture of T7-T12 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\(806.29) Closed fracture of T7-T12 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of dorsal vertebra with spinal cord injury (806.2)\\" + }, + { + "displayName": "Closed fracture of sacrum and coccyx with spinal cord injury (806.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\" + }, + { + "displayName": "(806.60) Closed fracture of sacrum and coccyx with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\\(806.60) Closed fracture of sacrum and coccyx with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\\" + }, + { + "displayName": "(806.61) Closed fracture of sacrum and coccyx with complete cauda equina lesion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\\(806.61) Closed fracture of sacrum and coccyx with complete cauda equina lesion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\\" + }, + { + "displayName": "(806.62) Closed fracture of sacrum and coccyx with other cauda equina injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\\(806.62) Closed fracture of sacrum and coccyx with other cauda equina injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\\" + }, + { + "displayName": "(806.69) Closed fracture of sacrum and coccyx with other spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\\(806.69) Closed fracture of sacrum and coccyx with other spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\\\\(806.69) Closed fracture of sacrum and coccyx with other spinal cord injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Closed fracture of sacrum and coccyx with spinal cord injury (806.6)\\" + }, + { + "displayName": "Open fracture of cervical vertebra with spinal cord injury (806.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\" + }, + { + "displayName": "(806.10) Open fracture of C1-C4 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\(806.10) Open fracture of C1-C4 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\\\(806.10) Open fracture of C1-C4 level with unspecified spinal cord injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\" + }, + { + "displayName": "(806.11) Open fracture of C1-C4 level with complete lesion of cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\(806.11) Open fracture of C1-C4 level with complete lesion of cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\" + }, + { + "displayName": "(806.12) Open fracture of C1-C4 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\(806.12) Open fracture of C1-C4 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\\\(806.12) Open fracture of C1-C4 level with anterior cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\" + }, + { + "displayName": "(806.13) Open fracture of C1-C4 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\(806.13) Open fracture of C1-C4 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\\\(806.13) Open fracture of C1-C4 level with central cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\" + }, + { + "displayName": "(806.14) Open fracture of C1-C4 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\(806.14) Open fracture of C1-C4 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\\\(806.14) Open fracture of C1-C4 level with other specified spinal cord injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\" + }, + { + "displayName": "(806.15) Open fracture of C5-C7 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\(806.15) Open fracture of C5-C7 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\" + }, + { + "displayName": "(806.16) Open fracture of C5-C7 level with complete lesion of cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\(806.16) Open fracture of C5-C7 level with complete lesion of cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\\\(806.16) Open fracture of C5-C7 level with complete lesion of cord\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\" + }, + { + "displayName": "(806.17) Open fracture of C5-C7 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\(806.17) Open fracture of C5-C7 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\\\(806.17) Open fracture of C5-C7 level with anterior cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\" + }, + { + "displayName": "(806.18) Open fracture of C5-C7 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\(806.18) Open fracture of C5-C7 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\" + }, + { + "displayName": "(806.19) Open fracture of C5-C7 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\(806.19) Open fracture of C5-C7 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\\\(806.19) Open fracture of C5-C7 level with other specified spinal cord injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of cervical vertebra with spinal cord injury (806.1)\\" + }, + { + "displayName": "Open fracture of dorsal vertebra with spinal cord injury (806.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\" + }, + { + "displayName": "(806.30) Open fracture of T1-T6 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\(806.30) Open fracture of T1-T6 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\" + }, + { + "displayName": "(806.31) Open fracture of T1-T6 level with complete lesion of cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\(806.31) Open fracture of T1-T6 level with complete lesion of cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\\\(806.31) Open fracture of T1-T6 level with complete lesion of cord\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\" + }, + { + "displayName": "(806.32) Open fracture of T1-T6 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\(806.32) Open fracture of T1-T6 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\" + }, + { + "displayName": "(806.33) Open fracture of T1-T6 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\(806.33) Open fracture of T1-T6 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\\\(806.33) Open fracture of T1-T6 level with central cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\" + }, + { + "displayName": "(806.34) Open fracture of T1-T6 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\(806.34) Open fracture of T1-T6 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\\\(806.34) Open fracture of T1-T6 level with other specified spinal cord injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\" + }, + { + "displayName": "(806.35) Open fracture of T7-T12 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\(806.35) Open fracture of T7-T12 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\" + }, + { + "displayName": "(806.36) Open fracture of T7-T12 level with complete lesion of cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\(806.36) Open fracture of T7-T12 level with complete lesion of cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\\\(806.36) Open fracture of T7-T12 level with complete lesion of cord\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\" + }, + { + "displayName": "(806.37) Open fracture of T7-T12 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\(806.37) Open fracture of T7-T12 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\\\(806.37) Open fracture of T7-T12 level with anterior cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\" + }, + { + "displayName": "(806.38) Open fracture of T7-T12 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\(806.38) Open fracture of T7-T12 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\\\(806.38) Open fracture of T7-T12 level with central cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\" + }, + { + "displayName": "(806.39) Open fracture of T7-T12 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\(806.39) Open fracture of T7-T12 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of dorsal vertebra with spinal cord injury (806.3)\\" + }, + { + "displayName": "Open fracture of sacrum and coccyx with spinal cord injury (806.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\" + }, + { + "displayName": "(806.70) Open fracture of sacrum and coccyx with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\(806.70) Open fracture of sacrum and coccyx with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\\\(806.70) Open fracture of sacrum and coccyx with unspecified spinal cord injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\" + }, + { + "displayName": "(806.71) Open fracture of sacrum and coccyx with complete cauda equina lesion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\(806.71) Open fracture of sacrum and coccyx with complete cauda equina lesion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\" + }, + { + "displayName": "(806.72) Open fracture of sacrum and coccyx with other cauda equina injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\(806.72) Open fracture of sacrum and coccyx with other cauda equina injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\\\(806.72) Open fracture of sacrum and coccyx with other cauda equina injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\" + }, + { + "displayName": "(806.79) Open fracture of sacrum and coccyx with other spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\(806.79) Open fracture of sacrum and coccyx with other spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column with spinal cord injury (806)\\\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\\\(806.79) Open fracture of sacrum and coccyx with other spinal cord injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column with spinal cord injury (806)\\Open fracture of sacrum and coccyx with spinal cord injury (806.7)\\" + }, + { + "displayName": "Fracture of vertebral column without mention of spinal cord injury (805)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column without mention of spinal cord injury (805)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\" + }, + { + "displayName": "(805.2) Closed fracture of dorsal [thoracic] vertebra without mention of spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\(805.2) Closed fracture of dorsal [thoracic] vertebra without mention of spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\" + }, + { + "displayName": "(805.3) Open fracture of dorsal [thoracic] vertebra without mention of spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\(805.3) Open fracture of dorsal [thoracic] vertebra without mention of spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\" + }, + { + "displayName": "(805.4) Closed fracture of lumbar vertebra without mention of spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\(805.4) Closed fracture of lumbar vertebra without mention of spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\" + }, + { + "displayName": "(805.5) Open fracture of lumbar vertebra without mention of spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\(805.5) Open fracture of lumbar vertebra without mention of spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\" + }, + { + "displayName": "(805.6) Closed fracture of sacrum and coccyx without mention of spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\(805.6) Closed fracture of sacrum and coccyx without mention of spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\" + }, + { + "displayName": "(805.7) Open fracture of sacrum and coccyx without mention of spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\(805.7) Open fracture of sacrum and coccyx without mention of spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\" + }, + { + "displayName": "(805.8) Closed fracture of unspecified vertebral column without mention of spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\(805.8) Closed fracture of unspecified vertebral column without mention of spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\" + }, + { + "displayName": "(805.9) Open fracture of unspecified vertebral column without mention of spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\(805.9) Open fracture of unspecified vertebral column without mention of spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\" + }, + { + "displayName": "Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\" + }, + { + "displayName": "(805.00) Closed fracture of cervical vertebra, unspecified level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\(805.00) Closed fracture of cervical vertebra, unspecified level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\" + }, + { + "displayName": "(805.01) Closed fracture of first cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\(805.01) Closed fracture of first cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\" + }, + { + "displayName": "(805.02) Closed fracture of second cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\(805.02) Closed fracture of second cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\" + }, + { + "displayName": "(805.03) Closed fracture of third cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\(805.03) Closed fracture of third cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\" + }, + { + "displayName": "(805.04) Closed fracture of fourth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\(805.04) Closed fracture of fourth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\" + }, + { + "displayName": "(805.05) Closed fracture of fifth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\(805.05) Closed fracture of fifth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\" + }, + { + "displayName": "(805.06) Closed fracture of sixth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\(805.06) Closed fracture of sixth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\" + }, + { + "displayName": "(805.07) Closed fracture of seventh cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\(805.07) Closed fracture of seventh cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column without mention of spinal cord injury (805)\\\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\\\(805.07) Closed fracture of seventh cervical vertebra\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\" + }, + { + "displayName": "(805.08) Closed fracture of multiple cervical vertebrae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\(805.08) Closed fracture of multiple cervical vertebrae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column without mention of spinal cord injury (805)\\\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\\\(805.08) Closed fracture of multiple cervical vertebrae\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Closed fracture of cervical vertebra without mention of spinal cord injury (805.0)\\" + }, + { + "displayName": "Open fracture of cervical vertebra without mention of spinal cord injury (805.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\" + }, + { + "displayName": "(805.10) Open fracture of cervical vertebra, unspecified level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\(805.10) Open fracture of cervical vertebra, unspecified level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\" + }, + { + "displayName": "(805.11) Open fracture of first cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\(805.11) Open fracture of first cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\" + }, + { + "displayName": "(805.12) Open fracture of second cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\(805.12) Open fracture of second cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\" + }, + { + "displayName": "(805.13) Open fracture of third cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\(805.13) Open fracture of third cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\" + }, + { + "displayName": "(805.14) Open fracture of fourth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\(805.14) Open fracture of fourth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\" + }, + { + "displayName": "(805.15) Open fracture of fifth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\(805.15) Open fracture of fifth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\" + }, + { + "displayName": "(805.16) Open fracture of sixth cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\(805.16) Open fracture of sixth cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column without mention of spinal cord injury (805)\\\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\\\(805.16) Open fracture of sixth cervical vertebra\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\" + }, + { + "displayName": "(805.17) Open fracture of seventh cervical vertebra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\(805.17) Open fracture of seventh cervical vertebra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column without mention of spinal cord injury (805)\\\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\\\(805.17) Open fracture of seventh cervical vertebra\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\" + }, + { + "displayName": "(805.18) Open fracture of multiple cervical vertebrae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\(805.18) Open fracture of multiple cervical vertebrae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Fracture of vertebral column without mention of spinal cord injury (805)\\\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\\\(805.18) Open fracture of multiple cervical vertebrae\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Fracture of vertebral column without mention of spinal cord injury (805)\\Open fracture of cervical vertebra without mention of spinal cord injury (805.1)\\" + }, + { + "displayName": "Ill-defined fractures of bones of trunk (809)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Ill-defined fractures of bones of trunk (809)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF NECK AND TRUNK (805-809.99)\\\\Ill-defined fractures of bones of trunk (809)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\" + }, + { + "displayName": "(809.0) Fracture of bones of trunk, closed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Ill-defined fractures of bones of trunk (809)\\(809.0) Fracture of bones of trunk, closed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Ill-defined fractures of bones of trunk (809)\\" + }, + { + "displayName": "(809.1) Fracture of bones of trunk, open", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Ill-defined fractures of bones of trunk (809)\\(809.1) Fracture of bones of trunk, open\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF NECK AND TRUNK (805-809.99)\\Ill-defined fractures of bones of trunk (809)\\" + }, + { + "displayName": "FRACTURE OF SKULL (800-804.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\" + }, + { + "displayName": "Fracture of base of skull (801)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\" + }, + { + "displayName": "Closed fracture of base of skull with cerebral laceration and contusion (801.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\" + }, + { + "displayName": "(801.10) Closed fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\(801.10) Closed fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\" + }, + { + "displayName": "(801.11) Closed fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\(801.11) Closed fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\\\(801.11) Closed fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\" + }, + { + "displayName": "(801.12) Closed fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\(801.12) Closed fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\\\(801.12) Closed fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\" + }, + { + "displayName": "(801.13) Closed fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\(801.13) Closed fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\" + }, + { + "displayName": "(801.14) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\(801.14) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\" + }, + { + "displayName": "(801.15) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\(801.15) Closed fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\" + }, + { + "displayName": "(801.16) Closed fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\(801.16) Closed fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\" + }, + { + "displayName": "(801.19) Closed fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\(801.19) Closed fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\\\(801.19) Closed fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with cerebral laceration and contusion (801.1)\\" + }, + { + "displayName": "Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\" + }, + { + "displayName": "(801.40) Closed fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\(801.40) Closed fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\\\(801.40) Closed fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\" + }, + { + "displayName": "(801.41) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\(801.41) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\" + }, + { + "displayName": "(801.42) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\(801.42) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\\\(801.42) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\" + }, + { + "displayName": "(801.43) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\(801.43) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\" + }, + { + "displayName": "(801.44) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\(801.44) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\" + }, + { + "displayName": "(801.45) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\(801.45) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\" + }, + { + "displayName": "(801.46) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\(801.46) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\" + }, + { + "displayName": "(801.49) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\(801.49) Closed fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with intracranial injury of other and unspecified nature (801.4)\\" + }, + { + "displayName": "Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\" + }, + { + "displayName": "(801.30) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\(801.30) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\\\(801.30) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\" + }, + { + "displayName": "(801.31) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\(801.31) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\\\(801.31) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\" + }, + { + "displayName": "(801.32) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\(801.32) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\" + }, + { + "displayName": "(801.33) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\(801.33) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\" + }, + { + "displayName": "(801.34) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\(801.34) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\" + }, + { + "displayName": "(801.35) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\(801.35) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\" + }, + { + "displayName": "(801.36) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\(801.36) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\" + }, + { + "displayName": "(801.39) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\(801.39) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\\\(801.39) Closed fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with other and unspecified intracranial hemorrhage (801.3)\\" + }, + { + "displayName": "Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\" + }, + { + "displayName": "(801.20) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\(801.20) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\\\(801.20) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\" + }, + { + "displayName": "(801.21) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\(801.21) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\\\(801.21) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\" + }, + { + "displayName": "(801.22) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\(801.22) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\\\(801.22) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\" + }, + { + "displayName": "(801.23) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\(801.23) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\" + }, + { + "displayName": "(801.24) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\(801.24) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\" + }, + { + "displayName": "(801.25) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\(801.25) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\" + }, + { + "displayName": "(801.26) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\(801.26) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\" + }, + { + "displayName": "(801.29) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\(801.29) Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.2)\\" + }, + { + "displayName": "Closed fracture of base of skull without mention of intracranial injury (801.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\" + }, + { + "displayName": "(801.00) Closed fracture of base of skull without mention of intra cranial injury, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\(801.00) Closed fracture of base of skull without mention of intra cranial injury, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\" + }, + { + "displayName": "(801.01) Closed fracture of base of skull without mention of intra cranial injury, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\(801.01) Closed fracture of base of skull without mention of intra cranial injury, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\" + }, + { + "displayName": "(801.02) Closed fracture of base of skull without mention of intra cranial injury, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\(801.02) Closed fracture of base of skull without mention of intra cranial injury, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\" + }, + { + "displayName": "(801.03) Closed fracture of base of skull without mention of intra cranial injury, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\(801.03) Closed fracture of base of skull without mention of intra cranial injury, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\" + }, + { + "displayName": "(801.04) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\(801.04) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\" + }, + { + "displayName": "(801.05) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\(801.05) Closed fracture of base of skull without mention of intra cranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\" + }, + { + "displayName": "(801.06) Closed fracture of base of skull without mention of intra cranial injury, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\(801.06) Closed fracture of base of skull without mention of intra cranial injury, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\" + }, + { + "displayName": "(801.09) Closed fracture of base of skull without mention of intra cranial injury, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\(801.09) Closed fracture of base of skull without mention of intra cranial injury, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Closed fracture of base of skull without mention of intracranial injury (801.0)\\" + }, + { + "displayName": "Open fracture of base of skull with cerebral laceration and contusion (801.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\" + }, + { + "displayName": "(801.60) Open fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\(801.60) Open fracture of base of skull with cerebral laceration and contusion, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\" + }, + { + "displayName": "(801.61) Open fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\(801.61) Open fracture of base of skull with cerebral laceration and contusion, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\" + }, + { + "displayName": "(801.62) Open fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\(801.62) Open fracture of base of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\" + }, + { + "displayName": "(801.63) Open fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\(801.63) Open fracture of base of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\" + }, + { + "displayName": "(801.64) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\(801.64) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\" + }, + { + "displayName": "(801.65) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\(801.65) Open fracture of base of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\" + }, + { + "displayName": "(801.66) Open fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\(801.66) Open fracture of base of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\" + }, + { + "displayName": "(801.69) Open fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\(801.69) Open fracture of base of skull with cerebral laceration and contusion, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with cerebral laceration and contusion (801.6)\\" + }, + { + "displayName": "Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\" + }, + { + "displayName": "(801.90) Open fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\(801.90) Open fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\\\(801.90) Open fracture of base of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\" + }, + { + "displayName": "(801.91) Open fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\(801.91) Open fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\\\(801.91) Open fracture of base of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\" + }, + { + "displayName": "(801.92) Open fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\(801.92) Open fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\\\(801.92) Open fracture of base of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\" + }, + { + "displayName": "(801.93) Open fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\(801.93) Open fracture of base of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\" + }, + { + "displayName": "(801.94) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\(801.94) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\" + }, + { + "displayName": "(801.95) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\(801.95) Open fracture of base of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\" + }, + { + "displayName": "(801.96) Open fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\(801.96) Open fracture of base of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\" + }, + { + "displayName": "(801.99) Open fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\(801.99) Open fracture of base of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with intracranial injury of other and unspecified nature (801.9)\\" + }, + { + "displayName": "Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\" + }, + { + "displayName": "(801.80) Open fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\(801.80) Open fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\\\(801.80) Open fracture of base of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\" + }, + { + "displayName": "(801.81) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\(801.81) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\" + }, + { + "displayName": "(801.82) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\(801.82) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\" + }, + { + "displayName": "(801.83) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\(801.83) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\" + }, + { + "displayName": "(801.84) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\(801.84) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\\\(801.84) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\" + }, + { + "displayName": "(801.85) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\(801.85) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\\\(801.85) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\" + }, + { + "displayName": "(801.86) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\(801.86) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\" + }, + { + "displayName": "(801.89) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\(801.89) Open fracture of base of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with other and unspecified intracranial hemorrhage (801.8)\\" + }, + { + "displayName": "Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\" + }, + { + "displayName": "(801.70) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\(801.70) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\" + }, + { + "displayName": "(801.71) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\(801.71) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\" + }, + { + "displayName": "(801.72) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\(801.72) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\" + }, + { + "displayName": "(801.73) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\(801.73) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\\\(801.73) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\" + }, + { + "displayName": "(801.74) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\(801.74) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\\\(801.74) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\" + }, + { + "displayName": "(801.75) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\(801.75) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\" + }, + { + "displayName": "(801.76) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\(801.76) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\" + }, + { + "displayName": "(801.79) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\(801.79) Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull with subarachnoid, subdural, and extradural hemorrhage (801.7)\\" + }, + { + "displayName": "Open fracture of base of skull without mention of intracranial injury (801.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\" + }, + { + "displayName": "(801.50) Open fracture of base of skull without mention of intracranial injury, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\(801.50) Open fracture of base of skull without mention of intracranial injury, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\" + }, + { + "displayName": "(801.51) Open fracture of base of skull without mention of intracranial injury, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\(801.51) Open fracture of base of skull without mention of intracranial injury, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull without mention of intracranial injury (801.5)\\\\(801.51) Open fracture of base of skull without mention of intracranial injury, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\" + }, + { + "displayName": "(801.52) Open fracture of base of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\(801.52) Open fracture of base of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull without mention of intracranial injury (801.5)\\\\(801.52) Open fracture of base of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\" + }, + { + "displayName": "(801.53) Open fracture of base of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\(801.53) Open fracture of base of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull without mention of intracranial injury (801.5)\\\\(801.53) Open fracture of base of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\" + }, + { + "displayName": "(801.54) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\(801.54) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of base of skull (801)\\\\Open fracture of base of skull without mention of intracranial injury (801.5)\\\\(801.54) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\" + }, + { + "displayName": "(801.55) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\(801.55) Open fracture of base of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\" + }, + { + "displayName": "(801.56) Open fracture of base of skull without mention of intracranial injury, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\(801.56) Open fracture of base of skull without mention of intracranial injury, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\" + }, + { + "displayName": "(801.59) Open fracture of base of skull without mention of intracranial injury, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\(801.59) Open fracture of base of skull without mention of intracranial injury, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of base of skull (801)\\Open fracture of base of skull without mention of intracranial injury (801.5)\\" + }, + { + "displayName": "Fracture of face bones (802)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of face bones (802)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\" + }, + { + "displayName": "(802.0) Closed fracture of nasal bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\(802.0) Closed fracture of nasal bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of face bones (802)\\\\(802.0) Closed fracture of nasal bones\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\" + }, + { + "displayName": "(802.1) Open fracture of nasal bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\(802.1) Open fracture of nasal bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of face bones (802)\\\\(802.1) Open fracture of nasal bones\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\" + }, + { + "displayName": "(802.4) Closed fracture of malar and maxillary bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\(802.4) Closed fracture of malar and maxillary bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\" + }, + { + "displayName": "(802.5) Open fracture of malar and maxillary bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\(802.5) Open fracture of malar and maxillary bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\" + }, + { + "displayName": "(802.6) Closed fracture of orbital floor (blow-out)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\(802.6) Closed fracture of orbital floor (blow-out)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\" + }, + { + "displayName": "(802.7) Open fracture of orbital floor (blow-out)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\(802.7) Open fracture of orbital floor (blow-out)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\" + }, + { + "displayName": "(802.8) Closed fracture of other facial bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\(802.8) Closed fracture of other facial bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\" + }, + { + "displayName": "(802.9) Open fracture of other facial bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\(802.9) Open fracture of other facial bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\" + }, + { + "displayName": "Mandible closed fracture (802.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\" + }, + { + "displayName": "(802.20) Closed fracture of mandible, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\(802.20) Closed fracture of mandible, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\" + }, + { + "displayName": "(802.21) Closed fracture of mandible, condylar process", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\(802.21) Closed fracture of mandible, condylar process\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\" + }, + { + "displayName": "(802.22) Closed fracture of mandible, subcondylar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\(802.22) Closed fracture of mandible, subcondylar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\" + }, + { + "displayName": "(802.23) Closed fracture of mandible, coronoid process", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\(802.23) Closed fracture of mandible, coronoid process\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\" + }, + { + "displayName": "(802.24) Closed fracture of mandible, ramus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\(802.24) Closed fracture of mandible, ramus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\" + }, + { + "displayName": "(802.25) Closed fracture of mandible, angle of jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\(802.25) Closed fracture of mandible, angle of jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\" + }, + { + "displayName": "(802.26) Closed fracture of mandible, symphysis of body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\(802.26) Closed fracture of mandible, symphysis of body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\" + }, + { + "displayName": "(802.27) Closed fracture of mandible, alveolar border of body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\(802.27) Closed fracture of mandible, alveolar border of body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\" + }, + { + "displayName": "(802.28) Closed fracture of mandible, body, other and unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\(802.28) Closed fracture of mandible, body, other and unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\" + }, + { + "displayName": "(802.29) Closed fracture of mandible, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\(802.29) Closed fracture of mandible, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible closed fracture (802.2)\\" + }, + { + "displayName": "Mandible open fracture (802.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of face bones (802)\\\\Mandible open fracture (802.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\" + }, + { + "displayName": "(802.30) Open fracture of mandible, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\(802.30) Open fracture of mandible, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\" + }, + { + "displayName": "(802.31) Open fracture of mandible, condylar process", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\(802.31) Open fracture of mandible, condylar process\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of face bones (802)\\\\Mandible open fracture (802.3)\\\\(802.31) Open fracture of mandible, condylar process\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\" + }, + { + "displayName": "(802.32) Open fracture of mandible, subcondylar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\(802.32) Open fracture of mandible, subcondylar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of face bones (802)\\\\Mandible open fracture (802.3)\\\\(802.32) Open fracture of mandible, subcondylar\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\" + }, + { + "displayName": "(802.33) Open fracture of mandible, coronoid process", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\(802.33) Open fracture of mandible, coronoid process\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of face bones (802)\\\\Mandible open fracture (802.3)\\\\(802.33) Open fracture of mandible, coronoid process\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\" + }, + { + "displayName": "(802.34) Open fracture of mandible, ramus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\(802.34) Open fracture of mandible, ramus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of face bones (802)\\\\Mandible open fracture (802.3)\\\\(802.34) Open fracture of mandible, ramus, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\" + }, + { + "displayName": "(802.35) Open fracture of mandible, angle of jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\(802.35) Open fracture of mandible, angle of jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\" + }, + { + "displayName": "(802.36) Open fracture of mandible, symphysis of body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\(802.36) Open fracture of mandible, symphysis of body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of face bones (802)\\\\Mandible open fracture (802.3)\\\\(802.36) Open fracture of mandible, symphysis of body\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\" + }, + { + "displayName": "(802.37) Open fracture of mandible, alveolar border of body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\(802.37) Open fracture of mandible, alveolar border of body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\" + }, + { + "displayName": "(802.38) Open fracture of mandible, body, other and unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\(802.38) Open fracture of mandible, body, other and unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\" + }, + { + "displayName": "(802.39) Open fracture of mandible, multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\(802.39) Open fracture of mandible, multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of face bones (802)\\Mandible open fracture (802.3)\\" + }, + { + "displayName": "Fracture of vault of skull (800)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\" + }, + { + "displayName": "Closed fracture of vault of skull with cerebral laceration and contusion (800.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\" + }, + { + "displayName": "(800.10) Closed fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\(800.10) Closed fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\" + }, + { + "displayName": "(800.11) Closed fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\(800.11) Closed fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\" + }, + { + "displayName": "(800.12) Closed fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\(800.12) Closed fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\" + }, + { + "displayName": "(800.13) Closed fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\(800.13) Closed fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\" + }, + { + "displayName": "(800.14) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\(800.14) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\" + }, + { + "displayName": "(800.15) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\(800.15) Closed fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\" + }, + { + "displayName": "(800.16) Closed fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\(800.16) Closed fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\" + }, + { + "displayName": "(800.19) Closed fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\(800.19) Closed fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with cerebral laceration and contusion (800.1)\\" + }, + { + "displayName": "Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\" + }, + { + "displayName": "(800.40) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\(800.40) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\" + }, + { + "displayName": "(800.41) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\(800.41) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\" + }, + { + "displayName": "(800.42) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\(800.42) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\" + }, + { + "displayName": "(800.43) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\(800.43) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\\\(800.43) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\" + }, + { + "displayName": "(800.44) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\(800.44) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\\\(800.44) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\" + }, + { + "displayName": "(800.45) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\(800.45) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\" + }, + { + "displayName": "(800.46) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\(800.46) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\" + }, + { + "displayName": "(800.49) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\(800.49) Closed fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with intracranial injury of other and unspecified nature (800.4)\\" + }, + { + "displayName": "Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\" + }, + { + "displayName": "(800.30) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\(800.30) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\" + }, + { + "displayName": "(800.31) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\(800.31) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\\\(800.31) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\" + }, + { + "displayName": "(800.32) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\(800.32) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\" + }, + { + "displayName": "(800.33) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\(800.33) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\" + }, + { + "displayName": "(800.34) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\(800.34) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\" + }, + { + "displayName": "(800.35) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\(800.35) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\" + }, + { + "displayName": "(800.36) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\(800.36) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\" + }, + { + "displayName": "(800.39) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\(800.39) Closed fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with other and unspecified intracranial hemorrhage (800.3)\\" + }, + { + "displayName": "Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\" + }, + { + "displayName": "(800.20) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\(800.20) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\" + }, + { + "displayName": "(800.21) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\(800.21) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\" + }, + { + "displayName": "(800.22) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\(800.22) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\" + }, + { + "displayName": "(800.23) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\(800.23) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\" + }, + { + "displayName": "(800.24) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\(800.24) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\" + }, + { + "displayName": "(800.25) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\(800.25) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\" + }, + { + "displayName": "(800.26) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\(800.26) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\" + }, + { + "displayName": "(800.29) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\(800.29) Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.2)\\" + }, + { + "displayName": "Closed fracture of vault of skull without mention of intracranial injury (800.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\" + }, + { + "displayName": "(800.00) Closed fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\(800.00) Closed fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\" + }, + { + "displayName": "(800.01) Closed fracture of vault of skull without mention of intracranial injury, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\(800.01) Closed fracture of vault of skull without mention of intracranial injury, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\\\(800.01) Closed fracture of vault of skull without mention of intracranial injury, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\" + }, + { + "displayName": "(800.02) Closed fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\(800.02) Closed fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\\\(800.02) Closed fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\" + }, + { + "displayName": "(800.03) Closed fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\(800.03) Closed fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\\\(800.03) Closed fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\" + }, + { + "displayName": "(800.04) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\(800.04) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\" + }, + { + "displayName": "(800.05) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\(800.05) Closed fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\" + }, + { + "displayName": "(800.06) Closed fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\(800.06) Closed fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\" + }, + { + "displayName": "(800.09) Closed fracture of vault of skull without mention of intracranial injury, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\(800.09) Closed fracture of vault of skull without mention of intracranial injury, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Closed fracture of vault of skull without mention of intracranial injury (800.0)\\" + }, + { + "displayName": "Open fracture of vault of skull with cerebral laceration and contusion (800.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\" + }, + { + "displayName": "(800.60) Open fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\(800.60) Open fracture of vault of skull with cerebral laceration and contusion, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\" + }, + { + "displayName": "(800.61) Open fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\(800.61) Open fracture of vault of skull with cerebral laceration and contusion, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\" + }, + { + "displayName": "(800.62) Open fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\(800.62) Open fracture of vault of skull with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\" + }, + { + "displayName": "(800.63) Open fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\(800.63) Open fracture of vault of skull with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\" + }, + { + "displayName": "(800.64) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\(800.64) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\\\(800.64) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\" + }, + { + "displayName": "(800.65) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\(800.65) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\\\(800.65) Open fracture of vault of skull with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\" + }, + { + "displayName": "(800.66) Open fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\(800.66) Open fracture of vault of skull with cerebral laceration and contusion, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\" + }, + { + "displayName": "(800.69) Open fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\(800.69) Open fracture of vault of skull with cerebral laceration and contusion, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with cerebral laceration and contusion (800.6)\\" + }, + { + "displayName": "Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\" + }, + { + "displayName": "(800.90) Open fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\(800.90) Open fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\\\(800.90) Open fracture of vault of skull with intracranial injury of other and unspecified nature, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\" + }, + { + "displayName": "(800.91) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\(800.91) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\\\(800.91) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\" + }, + { + "displayName": "(800.92) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\(800.92) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\\\(800.92) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\" + }, + { + "displayName": "(800.93) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\(800.93) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\" + }, + { + "displayName": "(800.94) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\(800.94) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\" + }, + { + "displayName": "(800.95) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\(800.95) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\" + }, + { + "displayName": "(800.96) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\(800.96) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\" + }, + { + "displayName": "(800.99) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\(800.99) Open fracture of vault of skull with intracranial injury of other and unspecified nature, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with intracranial injury of other and unspecified nature (800.9)\\" + }, + { + "displayName": "Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\" + }, + { + "displayName": "(800.80) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\(800.80) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\" + }, + { + "displayName": "(800.81) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\(800.81) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\" + }, + { + "displayName": "(800.82) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\(800.82) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\" + }, + { + "displayName": "(800.83) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\(800.83) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\" + }, + { + "displayName": "(800.84) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\(800.84) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\" + }, + { + "displayName": "(800.85) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\(800.85) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\" + }, + { + "displayName": "(800.86) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\(800.86) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\\\(800.86) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\" + }, + { + "displayName": "(800.89) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\(800.89) Open fracture of vault of skull with other and unspecified intracranial hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with other and unspecified intracranial hemorrhage (800.8)\\" + }, + { + "displayName": "Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\" + }, + { + "displayName": "(800.70) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\(800.70) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\\\(800.70) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\" + }, + { + "displayName": "(800.71) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\(800.71) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\\\(800.71) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\" + }, + { + "displayName": "(800.72) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\(800.72) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\" + }, + { + "displayName": "(800.73) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\(800.73) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\\\(800.73) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\" + }, + { + "displayName": "(800.74) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\(800.74) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\\\(800.74) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\" + }, + { + "displayName": "(800.75) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\(800.75) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\" + }, + { + "displayName": "(800.76) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\(800.76) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\\\(800.76) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\" + }, + { + "displayName": "(800.79) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\(800.79) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\\\(800.79) Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull with subarachnoid, subdural, and extradural hemorrhage (800.7)\\" + }, + { + "displayName": "Open fracture of vault of skull without mention of intracranial injury (800.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\" + }, + { + "displayName": "(800.50) Open fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\(800.50) Open fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\\\(800.50) Open fracture of vault of skull without mention of intracranial injury, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\" + }, + { + "displayName": "(800.51) Open fracture of vault of skull without mention of intracranial injury, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\(800.51) Open fracture of vault of skull without mention of intracranial injury, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\\\(800.51) Open fracture of vault of skull without mention of intracranial injury, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\" + }, + { + "displayName": "(800.52) Open fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\(800.52) Open fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\\\(800.52) Open fracture of vault of skull without mention of intracranial injury, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\" + }, + { + "displayName": "(800.53) Open fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\(800.53) Open fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Fracture of vault of skull (800)\\\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\\\(800.53) Open fracture of vault of skull without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\" + }, + { + "displayName": "(800.54) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\(800.54) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\" + }, + { + "displayName": "(800.55) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\(800.55) Open fracture of vault of skull without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\" + }, + { + "displayName": "(800.56) Open fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\(800.56) Open fracture of vault of skull without mention of intracranial injury, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\" + }, + { + "displayName": "(800.59) Open fracture of vault of skull without mention of intracranial injury, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\(800.59) Open fracture of vault of skull without mention of intracranial injury, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Fracture of vault of skull (800)\\Open fracture of vault of skull without mention of intracranial injury (800.5)\\" + }, + { + "displayName": "Multiple fractures involving skull or face with other bones (804)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\" + }, + { + "displayName": "Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\" + }, + { + "displayName": "(804.20) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\(804.20) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\" + }, + { + "displayName": "(804.21) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\(804.21) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\\\(804.21) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\" + }, + { + "displayName": "(804.22) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\(804.22) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\\\(804.22) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\" + }, + { + "displayName": "(804.23) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\(804.23) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\\\(804.23) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\" + }, + { + "displayName": "(804.24) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\(804.24) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\\\(804.24) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\" + }, + { + "displayName": "(804.25) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\(804.25) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\" + }, + { + "displayName": "(804.26) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\(804.26) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\\\(804.26) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\" + }, + { + "displayName": "(804.29) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\(804.29) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\\\(804.29) Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.2)\\" + }, + { + "displayName": "Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\" + }, + { + "displayName": "(804.10) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\(804.10) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\\\(804.10) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\" + }, + { + "displayName": "(804.11) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\(804.11) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\\\(804.11) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\" + }, + { + "displayName": "(804.12) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\(804.12) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\\\(804.12) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\" + }, + { + "displayName": "(804.13) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\(804.13) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\\\(804.13) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\" + }, + { + "displayName": "(804.14) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\(804.14) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\\\(804.14) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\" + }, + { + "displayName": "(804.15) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\(804.15) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\\\(804.15) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\" + }, + { + "displayName": "(804.16) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\(804.16) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\\\(804.16) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\" + }, + { + "displayName": "(804.19) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\(804.19) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\\\(804.19) Closed fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with cerebral laceration and contusion (804.1)\\" + }, + { + "displayName": "Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\" + }, + { + "displayName": "(804.40) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\(804.40) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\\\(804.40) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\" + }, + { + "displayName": "(804.41) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\(804.41) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\\\(804.41) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\" + }, + { + "displayName": "(804.42) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\(804.42) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\\\(804.42) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\" + }, + { + "displayName": "(804.43) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\(804.43) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\\\(804.43) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\" + }, + { + "displayName": "(804.44) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\(804.44) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\\\(804.44) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\" + }, + { + "displayName": "(804.45) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\(804.45) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\\\(804.45) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\" + }, + { + "displayName": "(804.46) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\(804.46) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\\\(804.46) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\" + }, + { + "displayName": "(804.49) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\(804.49) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\\\(804.49) Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.4)\\" + }, + { + "displayName": "Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\" + }, + { + "displayName": "(804.30) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\(804.30) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\\\(804.30) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\" + }, + { + "displayName": "(804.31) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\(804.31) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\\\(804.31) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\" + }, + { + "displayName": "(804.32) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\(804.32) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\\\(804.32) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\" + }, + { + "displayName": "(804.33) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\(804.33) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\\\(804.33) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\" + }, + { + "displayName": "(804.34) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\(804.34) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\\\(804.34) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\" + }, + { + "displayName": "(804.35) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\(804.35) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\\\(804.35) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\" + }, + { + "displayName": "(804.36) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\(804.36) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\\\(804.36) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\" + }, + { + "displayName": "(804.39) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\(804.39) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\\\(804.39) Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.3)\\" + }, + { + "displayName": "Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\" + }, + { + "displayName": "(804.00) Closed fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\(804.00) Closed fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\\\(804.00) Closed fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\" + }, + { + "displayName": "(804.01) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\(804.01) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\\\(804.01) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\" + }, + { + "displayName": "(804.02) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\(804.02) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\\\(804.02) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\" + }, + { + "displayName": "(804.03) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\(804.03) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\\\(804.03) Closed fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\" + }, + { + "displayName": "(804.04) Closed fractures involving skull or face with other bones, without mention or intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\(804.04) Closed fractures involving skull or face with other bones, without mention or intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\\\(804.04) Closed fractures involving skull or face with other bones, without mention or intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\" + }, + { + "displayName": "(804.05) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\(804.05) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\\\(804.05) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\" + }, + { + "displayName": "(804.06) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\(804.06) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\\\(804.06) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\" + }, + { + "displayName": "(804.09) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\(804.09) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\\\(804.09) Closed fractures involving skull of face with other bones, without mention of intracranial injury, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Closed fractures involving skull or face with other bones, without mention of intracranial injury (804.0)\\" + }, + { + "displayName": "Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\" + }, + { + "displayName": "(804.70) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\(804.70) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\" + }, + { + "displayName": "(804.71) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\(804.71) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\" + }, + { + "displayName": "(804.72) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\(804.72) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\" + }, + { + "displayName": "(804.73) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\(804.73) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\" + }, + { + "displayName": "(804.74) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\(804.74) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\" + }, + { + "displayName": "(804.75) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\(804.75) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\" + }, + { + "displayName": "(804.76) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\(804.76) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\" + }, + { + "displayName": "(804.79) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\(804.79) Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones with subarachnoid, subdural, and extradural hemorrhage (804.7)\\" + }, + { + "displayName": "Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\" + }, + { + "displayName": "(804.60) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\(804.60) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\" + }, + { + "displayName": "(804.61) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\(804.61) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\" + }, + { + "displayName": "(804.62) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\(804.62) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\" + }, + { + "displayName": "(804.63) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\(804.63) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\" + }, + { + "displayName": "(804.64) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\(804.64) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\" + }, + { + "displayName": "(804.65) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\(804.65) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\" + }, + { + "displayName": "(804.66) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\(804.66) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\" + }, + { + "displayName": "(804.69) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\(804.69) Open fractures involving skull or face with other bones, with cerebral laceration and contusion, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with cerebral laceration and contusion (804.6)\\" + }, + { + "displayName": "Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\" + }, + { + "displayName": "(804.90) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\(804.90) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\" + }, + { + "displayName": "(804.91) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\(804.91) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\" + }, + { + "displayName": "(804.92) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\(804.92) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\" + }, + { + "displayName": "(804.93) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\(804.93) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\" + }, + { + "displayName": "(804.94) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\(804.94) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\" + }, + { + "displayName": "(804.95) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\(804.95) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\" + }, + { + "displayName": "(804.96) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\(804.96) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\\\(804.96) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\" + }, + { + "displayName": "(804.99) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\(804.99) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\\\(804.99) Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with intracranial injury of other and unspecified nature (804.9)\\" + }, + { + "displayName": "Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\" + }, + { + "displayName": "(804.80) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\(804.80) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\\\(804.80) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\" + }, + { + "displayName": "(804.81) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\(804.81) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\\\(804.81) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\" + }, + { + "displayName": "(804.82) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\(804.82) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\\\(804.82) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\" + }, + { + "displayName": "(804.83) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\(804.83) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\\\(804.83) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\" + }, + { + "displayName": "(804.84) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\(804.84) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\\\(804.84) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\" + }, + { + "displayName": "(804.85) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\(804.85) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Multiple fractures involving skull or face with other bones (804)\\\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\\\(804.85) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss consciousness, without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\" + }, + { + "displayName": "(804.86) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\(804.86) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\" + }, + { + "displayName": "(804.89) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\(804.89) Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, with other and unspecified intracranial hemorrhage (804.8)\\" + }, + { + "displayName": "Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\" + }, + { + "displayName": "(804.50) Open fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\(804.50) Open fractures involving skull or face with other bones, without mention of intracranial injury, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\" + }, + { + "displayName": "(804.51) Open fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\(804.51) Open fractures involving skull or face with other bones, without mention of intracranial injury, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\" + }, + { + "displayName": "(804.52) Open fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\(804.52) Open fractures involving skull or face with other bones, without mention of intracranial injury, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\" + }, + { + "displayName": "(804.53) Open fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\(804.53) Open fractures involving skull or face with other bones, without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\" + }, + { + "displayName": "(804.54) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\(804.54) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\" + }, + { + "displayName": "(804.55) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\(804.55) Open fractures involving skull or face with other bones, without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\" + }, + { + "displayName": "(804.56) Open fractures involving skull or face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\(804.56) Open fractures involving skull or face with other bones, without mention of intracranial injury, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\" + }, + { + "displayName": "(804.59) Open fractures involving skull or face with other bones, without mention of intracranial injury, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\(804.59) Open fractures involving skull or face with other bones, without mention of intracranial injury, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Multiple fractures involving skull or face with other bones (804)\\Open fractures involving skull or face with other bones, without mention of intracranial injury (804.5)\\" + }, + { + "displayName": "Other and unqualified skull fractures (803)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\" + }, + { + "displayName": "Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\" + }, + { + "displayName": "(803.30) Other closed skull fracture with other and unspecified intracranial hemorrhage, unspecified state of unconsciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\(803.30) Other closed skull fracture with other and unspecified intracranial hemorrhage, unspecified state of unconsciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\" + }, + { + "displayName": "(803.31) Other closed skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\(803.31) Other closed skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\" + }, + { + "displayName": "(803.32) Other closed skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\(803.32) Other closed skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\" + }, + { + "displayName": "(803.33) Other closed skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\(803.33) Other closed skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\\\(803.33) Other closed skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\" + }, + { + "displayName": "(803.34) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\(803.34) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\\\(803.34) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\" + }, + { + "displayName": "(803.35) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\(803.35) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\\\(803.35) Other closed skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\" + }, + { + "displayName": "(803.36) Other closed skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\(803.36) Other closed skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\\\(803.36) Other closed skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\" + }, + { + "displayName": "(803.39) Other closed skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\(803.39) Other closed skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\\\(803.39) Other closed skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Closed skull fracture with other and unspecified intracranial hemorrhage (803.3)\\" + }, + { + "displayName": "Other closed skull fracture with cerebral laceration and contusion (803.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\" + }, + { + "displayName": "(803.10) Other closed skull fracture with cerebral laceration and contusion, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\(803.10) Other closed skull fracture with cerebral laceration and contusion, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\\\(803.10) Other closed skull fracture with cerebral laceration and contusion, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\" + }, + { + "displayName": "(803.11) Other closed skull fracture with cerebral laceration and contusion, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\(803.11) Other closed skull fracture with cerebral laceration and contusion, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\\\(803.11) Other closed skull fracture with cerebral laceration and contusion, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\" + }, + { + "displayName": "(803.12) Other closed skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\(803.12) Other closed skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\\\(803.12) Other closed skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\" + }, + { + "displayName": "(803.13) Other closed skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\(803.13) Other closed skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\\\(803.13) Other closed skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\" + }, + { + "displayName": "(803.14) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\(803.14) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\" + }, + { + "displayName": "(803.15) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\(803.15) Other closed skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\" + }, + { + "displayName": "(803.16) Other closed skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\(803.16) Other closed skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\" + }, + { + "displayName": "(803.19) Other closed skull fracture with cerebral laceration and contusion, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\(803.19) Other closed skull fracture with cerebral laceration and contusion, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with cerebral laceration and contusion (803.1)\\" + }, + { + "displayName": "Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\" + }, + { + "displayName": "(803.40) Other closed skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\(803.40) Other closed skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\" + }, + { + "displayName": "(803.41) Other closed skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\(803.41) Other closed skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\" + }, + { + "displayName": "(803.42) Other closed skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\(803.42) Other closed skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\" + }, + { + "displayName": "(803.43) Other closed skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\(803.43) Other closed skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\" + }, + { + "displayName": "(803.44) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\(803.44) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\" + }, + { + "displayName": "(803.45) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\(803.45) Other closed skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\" + }, + { + "displayName": "(803.46) Other closed skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\(803.46) Other closed skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\" + }, + { + "displayName": "(803.49) Other closed skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\(803.49) Other closed skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with intracranial injury of other and unspecified nature (803.4)\\" + }, + { + "displayName": "Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\" + }, + { + "displayName": "(803.20) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\(803.20) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\" + }, + { + "displayName": "(803.21) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\(803.21) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\" + }, + { + "displayName": "(803.22) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\(803.22) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\" + }, + { + "displayName": "(803.23) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\(803.23) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\" + }, + { + "displayName": "(803.24) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\(803.24) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\" + }, + { + "displayName": "(803.25) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\(803.25) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\" + }, + { + "displayName": "(803.26) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\(803.26) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\" + }, + { + "displayName": "(803.29) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\(803.29) Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.2)\\" + }, + { + "displayName": "Other closed skull fracture without mention of intracranial injury (803.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\" + }, + { + "displayName": "(803.00) Other closed skull fracture without mention of intracranial injury, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\(803.00) Other closed skull fracture without mention of intracranial injury, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\" + }, + { + "displayName": "(803.01) Other closed skull fracture without mention of intracranial injury, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\(803.01) Other closed skull fracture without mention of intracranial injury, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\" + }, + { + "displayName": "(803.02) Other closed skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\(803.02) Other closed skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\" + }, + { + "displayName": "(803.03) Other closed skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\(803.03) Other closed skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\" + }, + { + "displayName": "(803.04) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\(803.04) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other closed skull fracture without mention of intracranial injury (803.0)\\\\(803.04) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\" + }, + { + "displayName": "(803.05) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\(803.05) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other closed skull fracture without mention of intracranial injury (803.0)\\\\(803.05) Other closed skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\" + }, + { + "displayName": "(803.06) Other closed skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\(803.06) Other closed skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other closed skull fracture without mention of intracranial injury (803.0)\\\\(803.06) Other closed skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\" + }, + { + "displayName": "(803.09) Other closed skull fracture without mention of intracranial injury, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\(803.09) Other closed skull fracture without mention of intracranial injury, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other closed skull fracture without mention of intracranial injury (803.0)\\\\(803.09) Other closed skull fracture without mention of intracranial injury, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other closed skull fracture without mention of intracranial injury (803.0)\\" + }, + { + "displayName": "Other open skull fracture with cerebral laceration and contusion (803.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\" + }, + { + "displayName": "(803.60) Other open skull fracture with cerebral laceration and contusion, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\(803.60) Other open skull fracture with cerebral laceration and contusion, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\" + }, + { + "displayName": "(803.61) Other open skull fracture with cerebral laceration and contusion, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\(803.61) Other open skull fracture with cerebral laceration and contusion, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\" + }, + { + "displayName": "(803.62) Other open skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\(803.62) Other open skull fracture with cerebral laceration and contusion, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\" + }, + { + "displayName": "(803.63) Other open skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\(803.63) Other open skull fracture with cerebral laceration and contusion, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\" + }, + { + "displayName": "(803.64) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\(803.64) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\" + }, + { + "displayName": "(803.65) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\(803.65) Other open skull fracture with cerebral laceration and contusion, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\" + }, + { + "displayName": "(803.66) Other open skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\(803.66) Other open skull fracture with cerebral laceration and contusion, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\" + }, + { + "displayName": "(803.69) Other open skull fracture with cerebral laceration and contusion, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\(803.69) Other open skull fracture with cerebral laceration and contusion, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with cerebral laceration and contusion (803.6)\\" + }, + { + "displayName": "Other open skull fracture with intracranial injury of other and unspecified nature (803.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\" + }, + { + "displayName": "(803.90) Other open skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\(803.90) Other open skull fracture with intracranial injury of other and unspecified nature, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\" + }, + { + "displayName": "(803.91) Other open skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\(803.91) Other open skull fracture with intracranial injury of other and unspecified nature, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\" + }, + { + "displayName": "(803.92) Other open skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\(803.92) Other open skull fracture with intracranial injury of other and unspecified nature, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\" + }, + { + "displayName": "(803.93) Other open skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\(803.93) Other open skull fracture with intracranial injury of other and unspecified nature, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\" + }, + { + "displayName": "(803.94) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\(803.94) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\" + }, + { + "displayName": "(803.95) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\(803.95) Other open skull fracture with intracranial injury of other and unspecified nature, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\" + }, + { + "displayName": "(803.96) Other open skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\(803.96) Other open skull fracture with intracranial injury of other and unspecified nature, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\" + }, + { + "displayName": "(803.99) Other open skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\(803.99) Other open skull fracture with intracranial injury of other and unspecified nature, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with intracranial injury of other and unspecified nature (803.9)\\" + }, + { + "displayName": "Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\" + }, + { + "displayName": "(803.80) Other open skull fracture with other and unspecified intracranial hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\(803.80) Other open skull fracture with other and unspecified intracranial hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\" + }, + { + "displayName": "(803.81) Other open skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\(803.81) Other open skull fracture with other and unspecified intracranial hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\" + }, + { + "displayName": "(803.82) Other open skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\(803.82) Other open skull fracture with other and unspecified intracranial hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\" + }, + { + "displayName": "(803.83) Other open skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\(803.83) Other open skull fracture with other and unspecified intracranial hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\" + }, + { + "displayName": "(803.84) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\(803.84) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\" + }, + { + "displayName": "(803.85) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\(803.85) Other open skull fracture with other and unspecified intracranial hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\" + }, + { + "displayName": "(803.86) Other open skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\(803.86) Other open skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\\\(803.86) Other open skull fracture with other and unspecified intracranial hemorrhage, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\" + }, + { + "displayName": "(803.89) Other open skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\(803.89) Other open skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\\\(803.89) Other open skull fracture with other and unspecified intracranial hemorrhage, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with other and unspecified intracranial hemorrhage (803.8)\\" + }, + { + "displayName": "Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\" + }, + { + "displayName": "(803.70) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\(803.70) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\\\(803.70) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\" + }, + { + "displayName": "(803.71) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\(803.71) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\\\(803.71) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\" + }, + { + "displayName": "(803.72) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\(803.72) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\\\(803.72) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\" + }, + { + "displayName": "(803.73) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\(803.73) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF SKULL (800-804.99)\\\\Other and unqualified skull fractures (803)\\\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\\\(803.73) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\" + }, + { + "displayName": "(803.74) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\(803.74) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\" + }, + { + "displayName": "(803.75) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\(803.75) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\" + }, + { + "displayName": "(803.76) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\(803.76) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\" + }, + { + "displayName": "(803.79) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\(803.79) Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture with subarachnoid, subdural, and extradural hemorrhage (803.7)\\" + }, + { + "displayName": "Other open skull fracture without mention of intracranial injury (803.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\" + }, + { + "displayName": "(803.50) Other open skull fracture without mention of injury, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\(803.50) Other open skull fracture without mention of injury, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\" + }, + { + "displayName": "(803.51) Other open skull fracture without mention of intracranial injury, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\(803.51) Other open skull fracture without mention of intracranial injury, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\" + }, + { + "displayName": "(803.52) Other open skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\(803.52) Other open skull fracture without mention of intracranial injury, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\" + }, + { + "displayName": "(803.53) Other open skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\(803.53) Other open skull fracture without mention of intracranial injury, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\" + }, + { + "displayName": "(803.54) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\(803.54) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\" + }, + { + "displayName": "(803.55) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\(803.55) Other open skull fracture without mention of intracranial injury, with prolonged [more than 24 hours] loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\" + }, + { + "displayName": "(803.56) Other open skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\(803.56) Other open skull fracture without mention of intracranial injury, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\" + }, + { + "displayName": "(803.59) Other open skull fracture without mention of intracranial injury, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\(803.59) Other open skull fracture without mention of intracranial injury, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF SKULL (800-804.99)\\Other and unqualified skull fractures (803)\\Other open skull fracture without mention of intracranial injury (803.5)\\" + }, + { + "displayName": "FRACTURE OF UPPER LIMB (810-819.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\" + }, + { + "displayName": "Fracture of carpal bone(s) (814)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\" + }, + { + "displayName": "Closed fractures of carpal bones (814.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\" + }, + { + "displayName": "(814.00) Closed fracture of carpal bone, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\(814.00) Closed fracture of carpal bone, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\" + }, + { + "displayName": "(814.01) Closed fracture of navicular [scaphoid] bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\(814.01) Closed fracture of navicular [scaphoid] bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\" + }, + { + "displayName": "(814.02) Closed fracture of lunate [semilunar] bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\(814.02) Closed fracture of lunate [semilunar] bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\" + }, + { + "displayName": "(814.03) Closed fracture of triquetral [cuneiform] bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\(814.03) Closed fracture of triquetral [cuneiform] bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\" + }, + { + "displayName": "(814.04) Closed fracture of pisiform bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\(814.04) Closed fracture of pisiform bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of carpal bone(s) (814)\\\\Closed fractures of carpal bones (814.0)\\\\(814.04) Closed fracture of pisiform bone of wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\" + }, + { + "displayName": "(814.05) Closed fracture of trapezium bone [larger multangular] of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\(814.05) Closed fracture of trapezium bone [larger multangular] of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of carpal bone(s) (814)\\\\Closed fractures of carpal bones (814.0)\\\\(814.05) Closed fracture of trapezium bone [larger multangular] of wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\" + }, + { + "displayName": "(814.06) Closed fracture of trapezoid bone [smaller multangular] of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\(814.06) Closed fracture of trapezoid bone [smaller multangular] of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of carpal bone(s) (814)\\\\Closed fractures of carpal bones (814.0)\\\\(814.06) Closed fracture of trapezoid bone [smaller multangular] of wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\" + }, + { + "displayName": "(814.07) Closed fracture of capitate bone [os magnum] of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\(814.07) Closed fracture of capitate bone [os magnum] of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of carpal bone(s) (814)\\\\Closed fractures of carpal bones (814.0)\\\\(814.07) Closed fracture of capitate bone [os magnum] of wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\" + }, + { + "displayName": "(814.08) Closed fracture of hamate [unciform] bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\(814.08) Closed fracture of hamate [unciform] bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of carpal bone(s) (814)\\\\Closed fractures of carpal bones (814.0)\\\\(814.08) Closed fracture of hamate [unciform] bone of wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\" + }, + { + "displayName": "(814.09) Closed fracture of other bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\(814.09) Closed fracture of other bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of carpal bone(s) (814)\\\\Closed fractures of carpal bones (814.0)\\\\(814.09) Closed fracture of other bone of wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Closed fractures of carpal bones (814.0)\\" + }, + { + "displayName": "Open fractures of carpal bones (814.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of carpal bone(s) (814)\\\\Open fractures of carpal bones (814.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\" + }, + { + "displayName": "(814.10) Open fracture of carpal bone, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\(814.10) Open fracture of carpal bone, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\" + }, + { + "displayName": "(814.11) Open fracture of navicular [scaphoid] bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\(814.11) Open fracture of navicular [scaphoid] bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\" + }, + { + "displayName": "(814.12) Open fracture of lunate [semilunar] bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\(814.12) Open fracture of lunate [semilunar] bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\" + }, + { + "displayName": "(814.13) Open fracture of triquetral [cuneiform] bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\(814.13) Open fracture of triquetral [cuneiform] bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\" + }, + { + "displayName": "(814.14) Open fracture of pisiform bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\(814.14) Open fracture of pisiform bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\" + }, + { + "displayName": "(814.15) Open fracture of trapezium bone [larger multangular] of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\(814.15) Open fracture of trapezium bone [larger multangular] of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\" + }, + { + "displayName": "(814.16) Open fracture of trapezoid bone [smaller multangular] of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\(814.16) Open fracture of trapezoid bone [smaller multangular] of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\" + }, + { + "displayName": "(814.17) Open fracture of capitate bone [os magnum] of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\(814.17) Open fracture of capitate bone [os magnum] of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\" + }, + { + "displayName": "(814.18) Open fracture of hamate [unciform] bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\(814.18) Open fracture of hamate [unciform] bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\" + }, + { + "displayName": "(814.19) Open fracture of other bone of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\(814.19) Open fracture of other bone of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of carpal bone(s) (814)\\Open fractures of carpal bones (814.1)\\" + }, + { + "displayName": "Fracture of clavicle (810)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\" + }, + { + "displayName": "Closed fracture of clavicle (810.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Closed fracture of clavicle (810.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\" + }, + { + "displayName": "(810.00) Closed fracture of clavicle, unspecified part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Closed fracture of clavicle (810.0)\\(810.00) Closed fracture of clavicle, unspecified part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Closed fracture of clavicle (810.0)\\" + }, + { + "displayName": "(810.01) Closed fracture of sternal end of clavicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Closed fracture of clavicle (810.0)\\(810.01) Closed fracture of sternal end of clavicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Closed fracture of clavicle (810.0)\\" + }, + { + "displayName": "(810.02) Closed fracture of shaft of clavicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Closed fracture of clavicle (810.0)\\(810.02) Closed fracture of shaft of clavicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Closed fracture of clavicle (810.0)\\" + }, + { + "displayName": "(810.03) Closed fracture of acromial end of clavicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Closed fracture of clavicle (810.0)\\(810.03) Closed fracture of acromial end of clavicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Closed fracture of clavicle (810.0)\\" + }, + { + "displayName": "Open fracture of clavicle (810.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Open fracture of clavicle (810.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\" + }, + { + "displayName": "(810.10) Open fracture of clavicle, unspecified part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Open fracture of clavicle (810.1)\\(810.10) Open fracture of clavicle, unspecified part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Open fracture of clavicle (810.1)\\" + }, + { + "displayName": "(810.11) Open fracture of sternal end of clavicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Open fracture of clavicle (810.1)\\(810.11) Open fracture of sternal end of clavicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Open fracture of clavicle (810.1)\\" + }, + { + "displayName": "(810.12) Open fracture of shaft of clavicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Open fracture of clavicle (810.1)\\(810.12) Open fracture of shaft of clavicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Open fracture of clavicle (810.1)\\" + }, + { + "displayName": "(810.13) Open fracture of acromial end of clavicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Open fracture of clavicle (810.1)\\(810.13) Open fracture of acromial end of clavicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of clavicle (810)\\Open fracture of clavicle (810.1)\\" + }, + { + "displayName": "Fracture of humerus (812)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\" + }, + { + "displayName": "Closed fracture of shaft or unspecified part of humerus (812.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Closed fracture of shaft or unspecified part of humerus (812.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\" + }, + { + "displayName": "(812.20) Closed fracture of unspecified part of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Closed fracture of shaft or unspecified part of humerus (812.2)\\(812.20) Closed fracture of unspecified part of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Closed fracture of shaft or unspecified part of humerus (812.2)\\" + }, + { + "displayName": "(812.21) Closed fracture of shaft of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Closed fracture of shaft or unspecified part of humerus (812.2)\\(812.21) Closed fracture of shaft of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Closed fracture of shaft or unspecified part of humerus (812.2)\\" + }, + { + "displayName": "Fracture of lower end of humerus, closed (812.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of humerus (812)\\\\Fracture of lower end of humerus, closed (812.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\" + }, + { + "displayName": "(812.40) Closed fracture of unspecified part of lower end of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\(812.40) Closed fracture of unspecified part of lower end of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of humerus (812)\\\\Fracture of lower end of humerus, closed (812.4)\\\\(812.40) Closed fracture of unspecified part of lower end of humerus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\" + }, + { + "displayName": "(812.41) Closed supracondylar fracture of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\(812.41) Closed supracondylar fracture of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of humerus (812)\\\\Fracture of lower end of humerus, closed (812.4)\\\\(812.41) Closed supracondylar fracture of humerus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\" + }, + { + "displayName": "(812.42) Closed fracture of lateral condyle of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\(812.42) Closed fracture of lateral condyle of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of humerus (812)\\\\Fracture of lower end of humerus, closed (812.4)\\\\(812.42) Closed fracture of lateral condyle of humerus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\" + }, + { + "displayName": "(812.43) Closed fracture of medial condyle of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\(812.43) Closed fracture of medial condyle of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of humerus (812)\\\\Fracture of lower end of humerus, closed (812.4)\\\\(812.43) Closed fracture of medial condyle of humerus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\" + }, + { + "displayName": "(812.44) Closed fracture of unspecified condyle(s) of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\(812.44) Closed fracture of unspecified condyle(s) of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of humerus (812)\\\\Fracture of lower end of humerus, closed (812.4)\\\\(812.44) Closed fracture of unspecified condyle(s) of humerus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\" + }, + { + "displayName": "(812.49) Other closed fracture of lower end of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\(812.49) Other closed fracture of lower end of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, closed (812.4)\\" + }, + { + "displayName": "Fracture of lower end of humerus, open (812.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\" + }, + { + "displayName": "(812.50) Open fracture of unspecified part of lower end of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\(812.50) Open fracture of unspecified part of lower end of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\" + }, + { + "displayName": "(812.51) Open supracondylar fracture of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\(812.51) Open supracondylar fracture of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\" + }, + { + "displayName": "(812.52) Open fracture of lateral condyle of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\(812.52) Open fracture of lateral condyle of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\" + }, + { + "displayName": "(812.53) Open fracture of medial condyle of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\(812.53) Open fracture of medial condyle of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\" + }, + { + "displayName": "(812.54) Open fracture of unspecified condyle(s) of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\(812.54) Open fracture of unspecified condyle(s) of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\" + }, + { + "displayName": "(812.59) Other open fracture of lower end of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\(812.59) Other open fracture of lower end of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of lower end of humerus, open (812.5)\\" + }, + { + "displayName": "Fracture of shaft or unspecified part of humerus, open (812.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of shaft or unspecified part of humerus, open (812.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\" + }, + { + "displayName": "(812.30) Open fracture of unspecified part of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of shaft or unspecified part of humerus, open (812.3)\\(812.30) Open fracture of unspecified part of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of shaft or unspecified part of humerus, open (812.3)\\" + }, + { + "displayName": "(812.31) Open fracture of shaft of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of shaft or unspecified part of humerus, open (812.3)\\(812.31) Open fracture of shaft of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of shaft or unspecified part of humerus, open (812.3)\\" + }, + { + "displayName": "Fracture of upper end of humerus, closed (812.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, closed (812.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\" + }, + { + "displayName": "(812.00) Closed fracture of unspecified part of upper end of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, closed (812.0)\\(812.00) Closed fracture of unspecified part of upper end of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, closed (812.0)\\" + }, + { + "displayName": "(812.01) Closed fracture of surgical neck of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, closed (812.0)\\(812.01) Closed fracture of surgical neck of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, closed (812.0)\\" + }, + { + "displayName": "(812.02) Closed fracture of anatomical neck of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, closed (812.0)\\(812.02) Closed fracture of anatomical neck of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, closed (812.0)\\" + }, + { + "displayName": "(812.03) Closed fracture of greater tuberosity of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, closed (812.0)\\(812.03) Closed fracture of greater tuberosity of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, closed (812.0)\\" + }, + { + "displayName": "(812.09) Other closed fracture of upper end of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, closed (812.0)\\(812.09) Other closed fracture of upper end of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, closed (812.0)\\" + }, + { + "displayName": "Fracture of upper end of humerus, open (812.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, open (812.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\" + }, + { + "displayName": "(812.10) Open fracture of unspecified part of upper end of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, open (812.1)\\(812.10) Open fracture of unspecified part of upper end of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, open (812.1)\\" + }, + { + "displayName": "(812.11) Open fracture of surgical neck of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, open (812.1)\\(812.11) Open fracture of surgical neck of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, open (812.1)\\" + }, + { + "displayName": "(812.12) Open fracture of anatomical neck of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, open (812.1)\\(812.12) Open fracture of anatomical neck of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, open (812.1)\\" + }, + { + "displayName": "(812.13) Open fracture of greater tuberosity of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, open (812.1)\\(812.13) Open fracture of greater tuberosity of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, open (812.1)\\" + }, + { + "displayName": "(812.19) Other open fracture of upper end of humerus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, open (812.1)\\(812.19) Other open fracture of upper end of humerus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of humerus (812)\\\\Fracture of upper end of humerus, open (812.1)\\\\(812.19) Other open fracture of upper end of humerus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of humerus (812)\\Fracture of upper end of humerus, open (812.1)\\" + }, + { + "displayName": "Fracture of metacarpal bone(s) (815)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of metacarpal bone(s) (815)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\" + }, + { + "displayName": "Closed fracture of metacarpal bones (815.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of metacarpal bone(s) (815)\\\\Closed fracture of metacarpal bones (815.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\" + }, + { + "displayName": "(815.00) Closed fracture of metacarpal bone(s), site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\(815.00) Closed fracture of metacarpal bone(s), site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of metacarpal bone(s) (815)\\\\Closed fracture of metacarpal bones (815.0)\\\\(815.00) Closed fracture of metacarpal bone(s), site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\" + }, + { + "displayName": "(815.01) Closed fracture of base of thumb [first] metacarpal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\(815.01) Closed fracture of base of thumb [first] metacarpal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of metacarpal bone(s) (815)\\\\Closed fracture of metacarpal bones (815.0)\\\\(815.01) Closed fracture of base of thumb [first] metacarpal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\" + }, + { + "displayName": "(815.02) Closed fracture of base of other metacarpal bone(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\(815.02) Closed fracture of base of other metacarpal bone(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of metacarpal bone(s) (815)\\\\Closed fracture of metacarpal bones (815.0)\\\\(815.02) Closed fracture of base of other metacarpal bone(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\" + }, + { + "displayName": "(815.03) Closed fracture of shaft of metacarpal bone(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\(815.03) Closed fracture of shaft of metacarpal bone(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of metacarpal bone(s) (815)\\\\Closed fracture of metacarpal bones (815.0)\\\\(815.03) Closed fracture of shaft of metacarpal bone(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\" + }, + { + "displayName": "(815.04) Closed fracture of neck of metacarpal bone(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\(815.04) Closed fracture of neck of metacarpal bone(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of metacarpal bone(s) (815)\\\\Closed fracture of metacarpal bones (815.0)\\\\(815.04) Closed fracture of neck of metacarpal bone(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\" + }, + { + "displayName": "(815.09) Closed fracture of multiple sites of metacarpus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\(815.09) Closed fracture of multiple sites of metacarpus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Closed fracture of metacarpal bones (815.0)\\" + }, + { + "displayName": "Open fracture of metacarpal bones (815.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\" + }, + { + "displayName": "(815.10) Open fracture of metacarpal bone(s), site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\(815.10) Open fracture of metacarpal bone(s), site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\" + }, + { + "displayName": "(815.11) Open fracture of base of thumb [first] metacarpal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\(815.11) Open fracture of base of thumb [first] metacarpal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\" + }, + { + "displayName": "(815.12) Open fracture of base of other metacarpal bone(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\(815.12) Open fracture of base of other metacarpal bone(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\" + }, + { + "displayName": "(815.13) Open fracture of shaft of metacarpal bone(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\(815.13) Open fracture of shaft of metacarpal bone(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\" + }, + { + "displayName": "(815.14) Open fracture of neck of metacarpal bone(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\(815.14) Open fracture of neck of metacarpal bone(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\" + }, + { + "displayName": "(815.19) Open fracture of multiple sites of metacarpus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\(815.19) Open fracture of multiple sites of metacarpus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of metacarpal bone(s) (815)\\Open fracture of metacarpal bones (815.1)\\" + }, + { + "displayName": "Fracture of one or more phalanges of hand (816)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of one or more phalanges of hand (816)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\" + }, + { + "displayName": "Closed fracture of one or more phalanges of hand (816.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Closed fracture of one or more phalanges of hand (816.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of one or more phalanges of hand (816)\\\\Closed fracture of one or more phalanges of hand (816.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\" + }, + { + "displayName": "(816.00) Closed fracture of phalanx or phalanges of hand, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Closed fracture of one or more phalanges of hand (816.0)\\(816.00) Closed fracture of phalanx or phalanges of hand, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of one or more phalanges of hand (816)\\\\Closed fracture of one or more phalanges of hand (816.0)\\\\(816.00) Closed fracture of phalanx or phalanges of hand, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Closed fracture of one or more phalanges of hand (816.0)\\" + }, + { + "displayName": "(816.01) Closed fracture of middle or proximal phalanx or phalanges of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Closed fracture of one or more phalanges of hand (816.0)\\(816.01) Closed fracture of middle or proximal phalanx or phalanges of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Closed fracture of one or more phalanges of hand (816.0)\\" + }, + { + "displayName": "(816.02) Closed fracture of distal phalanx or phalanges of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Closed fracture of one or more phalanges of hand (816.0)\\(816.02) Closed fracture of distal phalanx or phalanges of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Closed fracture of one or more phalanges of hand (816.0)\\" + }, + { + "displayName": "(816.03) Closed fracture of multiple sites of phalanx or phalanges of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Closed fracture of one or more phalanges of hand (816.0)\\(816.03) Closed fracture of multiple sites of phalanx or phalanges of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Closed fracture of one or more phalanges of hand (816.0)\\" + }, + { + "displayName": "Open fracture of one or more phalanges of hand (816.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Open fracture of one or more phalanges of hand (816.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\" + }, + { + "displayName": "(816.10) Open fracture of phalanx or phalanges of hand, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Open fracture of one or more phalanges of hand (816.1)\\(816.10) Open fracture of phalanx or phalanges of hand, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Open fracture of one or more phalanges of hand (816.1)\\" + }, + { + "displayName": "(816.11) Open fracture of middle or proximal phalanx or phalanges of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Open fracture of one or more phalanges of hand (816.1)\\(816.11) Open fracture of middle or proximal phalanx or phalanges of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Open fracture of one or more phalanges of hand (816.1)\\" + }, + { + "displayName": "(816.12) Open fracture of distal phalanx or phalanges of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Open fracture of one or more phalanges of hand (816.1)\\(816.12) Open fracture of distal phalanx or phalanges of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Open fracture of one or more phalanges of hand (816.1)\\" + }, + { + "displayName": "(816.13) Open fracture of multiple sites of phalanx or phalanges of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Open fracture of one or more phalanges of hand (816.1)\\(816.13) Open fracture of multiple sites of phalanx or phalanges of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of one or more phalanges of hand (816)\\Open fracture of one or more phalanges of hand (816.1)\\" + }, + { + "displayName": "Fracture of radius and ulna (813)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\" + }, + { + "displayName": "Fracture of lower end of radius and ulna, closed (813.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\" + }, + { + "displayName": "(813.40) Closed fracture of lower end of forearm, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\(813.40) Closed fracture of lower end of forearm, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\" + }, + { + "displayName": "(813.41) Closed Colles' fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\(813.41) Closed Colles' fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\" + }, + { + "displayName": "(813.42) Other closed fractures of distal end of radius (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\(813.42) Other closed fractures of distal end of radius (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\" + }, + { + "displayName": "(813.43) Closed fracture of distal end of ulna (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\(813.43) Closed fracture of distal end of ulna (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\" + }, + { + "displayName": "(813.44) Closed fracture of lower end of radius with ulna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\(813.44) Closed fracture of lower end of radius with ulna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\" + }, + { + "displayName": "(813.45) Torus fracture of radius (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\(813.45) Torus fracture of radius (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, closed (813.4)\\" + }, + { + "displayName": "Fracture of lower end of radius and ulna, open (813.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, open (813.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\" + }, + { + "displayName": "(813.50) Open fracture of lower end of forearm, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, open (813.5)\\(813.50) Open fracture of lower end of forearm, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, open (813.5)\\" + }, + { + "displayName": "(813.51) Open Colles' fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, open (813.5)\\(813.51) Open Colles' fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, open (813.5)\\" + }, + { + "displayName": "(813.52) Other open fractures of distal end of radius (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, open (813.5)\\(813.52) Other open fractures of distal end of radius (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, open (813.5)\\" + }, + { + "displayName": "(813.53) Open fracture of distal end of ulna (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, open (813.5)\\(813.53) Open fracture of distal end of ulna (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, open (813.5)\\" + }, + { + "displayName": "(813.54) Open fracture of lower end of radius with ulna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, open (813.5)\\(813.54) Open fracture of lower end of radius with ulna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of lower end of radius and ulna, open (813.5)\\" + }, + { + "displayName": "Fracture of shaft of radius and ulna, closed (813.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, closed (813.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\" + }, + { + "displayName": "(813.20) Closed fracture of shaft of radius or ulna, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, closed (813.2)\\(813.20) Closed fracture of shaft of radius or ulna, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of radius and ulna (813)\\\\Fracture of shaft of radius and ulna, closed (813.2)\\\\(813.20) Closed fracture of shaft of radius or ulna, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, closed (813.2)\\" + }, + { + "displayName": "(813.21) Closed fracture of shaft of radius (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, closed (813.2)\\(813.21) Closed fracture of shaft of radius (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of radius and ulna (813)\\\\Fracture of shaft of radius and ulna, closed (813.2)\\\\(813.21) Closed fracture of shaft of radius (alone)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, closed (813.2)\\" + }, + { + "displayName": "(813.22) Closed fracture of shaft of ulna (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, closed (813.2)\\(813.22) Closed fracture of shaft of ulna (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of radius and ulna (813)\\\\Fracture of shaft of radius and ulna, closed (813.2)\\\\(813.22) Closed fracture of shaft of ulna (alone)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, closed (813.2)\\" + }, + { + "displayName": "(813.23) Closed fracture of shaft of radius with ulna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, closed (813.2)\\(813.23) Closed fracture of shaft of radius with ulna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, closed (813.2)\\" + }, + { + "displayName": "Fracture of shaft of radius and ulna, open (813.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, open (813.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\" + }, + { + "displayName": "(813.30) Open fracture of shaft of radius or ulna, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, open (813.3)\\(813.30) Open fracture of shaft of radius or ulna, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, open (813.3)\\" + }, + { + "displayName": "(813.31) Open fracture of shaft of radius (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, open (813.3)\\(813.31) Open fracture of shaft of radius (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, open (813.3)\\" + }, + { + "displayName": "(813.32) Open fracture of shaft of ulna (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, open (813.3)\\(813.32) Open fracture of shaft of ulna (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, open (813.3)\\" + }, + { + "displayName": "(813.33) Open fracture of shaft of radius with ulna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, open (813.3)\\(813.33) Open fracture of shaft of radius with ulna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of shaft of radius and ulna, open (813.3)\\" + }, + { + "displayName": "Fracture of unspecified part of radius with ulna, closed (813.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, closed (813.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\" + }, + { + "displayName": "(813.80) Closed fracture of unspecified part of forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, closed (813.8)\\(813.80) Closed fracture of unspecified part of forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, closed (813.8)\\" + }, + { + "displayName": "(813.81) Closed fracture of unspecified part of radius (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, closed (813.8)\\(813.81) Closed fracture of unspecified part of radius (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, closed (813.8)\\" + }, + { + "displayName": "(813.82) Closed fracture of unspecified part of ulna (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, closed (813.8)\\(813.82) Closed fracture of unspecified part of ulna (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, closed (813.8)\\" + }, + { + "displayName": "(813.83) Closed fracture of unspecified part of radius with ulna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, closed (813.8)\\(813.83) Closed fracture of unspecified part of radius with ulna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, closed (813.8)\\" + }, + { + "displayName": "Fracture of unspecified part of radius with ulna, open (813.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, open (813.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\" + }, + { + "displayName": "(813.90) Open fracture of unspecified part of forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, open (813.9)\\(813.90) Open fracture of unspecified part of forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, open (813.9)\\" + }, + { + "displayName": "(813.91) Open fracture of unspecified part of radius (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, open (813.9)\\(813.91) Open fracture of unspecified part of radius (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, open (813.9)\\" + }, + { + "displayName": "(813.92) Open fracture of unspecified part of ulna (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, open (813.9)\\(813.92) Open fracture of unspecified part of ulna (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, open (813.9)\\" + }, + { + "displayName": "(813.93) Open fracture of unspecified part of radius with ulna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, open (813.9)\\(813.93) Open fracture of unspecified part of radius with ulna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of unspecified part of radius with ulna, open (813.9)\\" + }, + { + "displayName": "Fracture of upper end of radius and ulna, closed (813.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of radius and ulna (813)\\\\Fracture of upper end of radius and ulna, closed (813.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\" + }, + { + "displayName": "(813.00) Closed fracture of upper end of forearm, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\(813.00) Closed fracture of upper end of forearm, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of radius and ulna (813)\\\\Fracture of upper end of radius and ulna, closed (813.0)\\\\(813.00) Closed fracture of upper end of forearm, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\" + }, + { + "displayName": "(813.01) Closed fracture of olecranon process of ulna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\(813.01) Closed fracture of olecranon process of ulna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of radius and ulna (813)\\\\Fracture of upper end of radius and ulna, closed (813.0)\\\\(813.01) Closed fracture of olecranon process of ulna\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\" + }, + { + "displayName": "(813.02) Closed fracture of coronoid process of ulna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\(813.02) Closed fracture of coronoid process of ulna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of radius and ulna (813)\\\\Fracture of upper end of radius and ulna, closed (813.0)\\\\(813.02) Closed fracture of coronoid process of ulna\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\" + }, + { + "displayName": "(813.03) Closed Monteggia's fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\(813.03) Closed Monteggia's fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of radius and ulna (813)\\\\Fracture of upper end of radius and ulna, closed (813.0)\\\\(813.03) Closed Monteggia's fracture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\" + }, + { + "displayName": "(813.04) Other and unspecified closed fractures of proximal end of ulna (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\(813.04) Other and unspecified closed fractures of proximal end of ulna (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\" + }, + { + "displayName": "(813.05) Closed fracture of head of radius", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\(813.05) Closed fracture of head of radius\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\" + }, + { + "displayName": "(813.06) Closed fracture of neck of radius", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\(813.06) Closed fracture of neck of radius\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\" + }, + { + "displayName": "(813.07) Other and unspecified closed fractures of proximal end of radius (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\(813.07) Other and unspecified closed fractures of proximal end of radius (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\" + }, + { + "displayName": "(813.08) Closed fracture of radius with ulna, upper end [any part]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\(813.08) Closed fracture of radius with ulna, upper end [any part]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, closed (813.0)\\" + }, + { + "displayName": "Fracture of upper end of radius and ulna, open (813.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\" + }, + { + "displayName": "(813.10) Open fracture of upper end of forearm, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\(813.10) Open fracture of upper end of forearm, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\" + }, + { + "displayName": "(813.11) Open fracture of olecranon process of ulna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\(813.11) Open fracture of olecranon process of ulna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\" + }, + { + "displayName": "(813.12) Open fracture of coronoid process of ulna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\(813.12) Open fracture of coronoid process of ulna\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\" + }, + { + "displayName": "(813.13) Open Monteggia's fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\(813.13) Open Monteggia's fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\" + }, + { + "displayName": "(813.14) Other and unspecified open fractures of proximal end of ulna (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\(813.14) Other and unspecified open fractures of proximal end of ulna (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\" + }, + { + "displayName": "(813.15) Open fracture of head of radius", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\(813.15) Open fracture of head of radius\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\" + }, + { + "displayName": "(813.16) Open fracture of neck of radius", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\(813.16) Open fracture of neck of radius\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\" + }, + { + "displayName": "(813.17) Other and unspecified open fractures of proximal end of radius (alone)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\(813.17) Other and unspecified open fractures of proximal end of radius (alone)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\" + }, + { + "displayName": "(813.18) Open fracture of radius with ulna, upper end (any part)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\(813.18) Open fracture of radius with ulna, upper end (any part)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of radius and ulna (813)\\Fracture of upper end of radius and ulna, open (813.1)\\" + }, + { + "displayName": "Fracture of scapula (811)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of scapula (811)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\" + }, + { + "displayName": "Closed fracture of scapula (811.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Closed fracture of scapula (811.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of scapula (811)\\\\Closed fracture of scapula (811.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\" + }, + { + "displayName": "(811.00) Closed fracture of scapula, unspecified part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Closed fracture of scapula (811.0)\\(811.00) Closed fracture of scapula, unspecified part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Closed fracture of scapula (811.0)\\" + }, + { + "displayName": "(811.01) Closed fracture of acromial process of scapula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Closed fracture of scapula (811.0)\\(811.01) Closed fracture of acromial process of scapula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of scapula (811)\\\\Closed fracture of scapula (811.0)\\\\(811.01) Closed fracture of acromial process of scapula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Closed fracture of scapula (811.0)\\" + }, + { + "displayName": "(811.02) Closed fracture of coracoid process of scapula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Closed fracture of scapula (811.0)\\(811.02) Closed fracture of coracoid process of scapula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Closed fracture of scapula (811.0)\\" + }, + { + "displayName": "(811.03) Closed fracture of glenoid cavity and neck of scapula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Closed fracture of scapula (811.0)\\(811.03) Closed fracture of glenoid cavity and neck of scapula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of scapula (811)\\\\Closed fracture of scapula (811.0)\\\\(811.03) Closed fracture of glenoid cavity and neck of scapula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Closed fracture of scapula (811.0)\\" + }, + { + "displayName": "(811.09) Closed fracture of scapula, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Closed fracture of scapula (811.0)\\(811.09) Closed fracture of scapula, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of scapula (811)\\\\Closed fracture of scapula (811.0)\\\\(811.09) Closed fracture of scapula, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Closed fracture of scapula (811.0)\\" + }, + { + "displayName": "Open fracture of scapula (811.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Open fracture of scapula (811.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\" + }, + { + "displayName": "(811.10) Open fracture of scapula, unspecified part", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Open fracture of scapula (811.1)\\(811.10) Open fracture of scapula, unspecified part\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of scapula (811)\\\\Open fracture of scapula (811.1)\\\\(811.10) Open fracture of scapula, unspecified part\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Open fracture of scapula (811.1)\\" + }, + { + "displayName": "(811.11) Open fracture of acromial process of scapula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Open fracture of scapula (811.1)\\(811.11) Open fracture of acromial process of scapula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of scapula (811)\\\\Open fracture of scapula (811.1)\\\\(811.11) Open fracture of acromial process of scapula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Open fracture of scapula (811.1)\\" + }, + { + "displayName": "(811.12) Open fracture of coracoid process", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Open fracture of scapula (811.1)\\(811.12) Open fracture of coracoid process\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Open fracture of scapula (811.1)\\" + }, + { + "displayName": "(811.13) Open fracture of glenoid cavity and neck of scapula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Open fracture of scapula (811.1)\\(811.13) Open fracture of glenoid cavity and neck of scapula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of scapula (811)\\\\Open fracture of scapula (811.1)\\\\(811.13) Open fracture of glenoid cavity and neck of scapula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Open fracture of scapula (811.1)\\" + }, + { + "displayName": "(811.19) Open fracture of scapula, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Open fracture of scapula (811.1)\\(811.19) Open fracture of scapula, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Fracture of scapula (811)\\\\Open fracture of scapula (811.1)\\\\(811.19) Open fracture of scapula, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Fracture of scapula (811)\\Open fracture of scapula (811.1)\\" + }, + { + "displayName": "Ill-defined fractures of upper limb (818)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Ill-defined fractures of upper limb (818)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\" + }, + { + "displayName": "(818.0) Ill-defined closed fractures of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Ill-defined fractures of upper limb (818)\\(818.0) Ill-defined closed fractures of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Ill-defined fractures of upper limb (818)\\\\(818.0) Ill-defined closed fractures of upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Ill-defined fractures of upper limb (818)\\" + }, + { + "displayName": "(818.1) Ill-defined open fractures of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Ill-defined fractures of upper limb (818)\\(818.1) Ill-defined open fractures of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Ill-defined fractures of upper limb (818)\\\\(818.1) Ill-defined open fractures of upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Ill-defined fractures of upper limb (818)\\" + }, + { + "displayName": "Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\" + }, + { + "displayName": "(819.0) Multiple closed fractures involving both upper limbs, and upper limb with rib(s) and sternum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\\(819.0) Multiple closed fractures involving both upper limbs, and upper limb with rib(s) and sternum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\\" + }, + { + "displayName": "(819.1) Multiple open fractures involving both upper limbs, and upper limb with rib(s) and sternum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\\(819.1) Multiple open fractures involving both upper limbs, and upper limb with rib(s) and sternum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\\\\(819.1) Multiple open fractures involving both upper limbs, and upper limb with rib(s) and sternum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Multiple fractures involving both upper limbs, and upper limb with rib(s) and sternum (819)\\" + }, + { + "displayName": "Multiple fractures of hand bones (817)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Multiple fractures of hand bones (817)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Fractures (800-829.99)\\\\FRACTURE OF UPPER LIMB (810-819.99)\\\\Multiple fractures of hand bones (817)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\" + }, + { + "displayName": "(817.0) Multiple closed fractures of hand bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Multiple fractures of hand bones (817)\\(817.0) Multiple closed fractures of hand bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Multiple fractures of hand bones (817)\\" + }, + { + "displayName": "(817.1) Multiple open fractures of hand bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Multiple fractures of hand bones (817)\\(817.1) Multiple open fractures of hand bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Fractures (800-829.99)\\FRACTURE OF UPPER LIMB (810-819.99)\\Multiple fractures of hand bones (817)\\" + }, + { + "displayName": "Injury to blood vessels (900-904.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Injury to blood vessels of abdomen and pelvis (902)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\" + }, + { + "displayName": "(902.0) Injury to abdominal aorta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\(902.0) Injury to abdominal aorta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\" + }, + { + "displayName": "(902.9) Injury to unspecified blood vessel of abdomen and pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\(902.9) Injury to unspecified blood vessel of abdomen and pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\" + }, + { + "displayName": "Injury to celiac and mesenteric arteries (902.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\" + }, + { + "displayName": "(902.20) Injury to celiac and mesenteric arteries, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\(902.20) Injury to celiac and mesenteric arteries, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\" + }, + { + "displayName": "(902.21) Injury to gastric artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\(902.21) Injury to gastric artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\" + }, + { + "displayName": "(902.22) Injury to hepatic artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\(902.22) Injury to hepatic artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of abdomen and pelvis (902)\\\\Injury to celiac and mesenteric arteries (902.2)\\\\(902.22) Injury to hepatic artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\" + }, + { + "displayName": "(902.23) Injury to splenic artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\(902.23) Injury to splenic artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of abdomen and pelvis (902)\\\\Injury to celiac and mesenteric arteries (902.2)\\\\(902.23) Injury to splenic artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\" + }, + { + "displayName": "(902.24) Injury to other specified branches of celiac axis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\(902.24) Injury to other specified branches of celiac axis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of abdomen and pelvis (902)\\\\Injury to celiac and mesenteric arteries (902.2)\\\\(902.24) Injury to other specified branches of celiac axis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\" + }, + { + "displayName": "(902.25) Injury to superior mesenteric artery (trunk)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\(902.25) Injury to superior mesenteric artery (trunk)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\" + }, + { + "displayName": "(902.26) Injury to primary branches of superior mesenteric artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\(902.26) Injury to primary branches of superior mesenteric artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\" + }, + { + "displayName": "(902.27) Injury to inferior mesenteric artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\(902.27) Injury to inferior mesenteric artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\" + }, + { + "displayName": "(902.29) Injury to celiac and mesenteric arteries, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\(902.29) Injury to celiac and mesenteric arteries, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to celiac and mesenteric arteries (902.2)\\" + }, + { + "displayName": "Injury to iliac blood vessels (902.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of abdomen and pelvis (902)\\\\Injury to iliac blood vessels (902.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\" + }, + { + "displayName": "(902.50) Injury to iliac vessel(s), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\(902.50) Injury to iliac vessel(s), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of abdomen and pelvis (902)\\\\Injury to iliac blood vessels (902.5)\\\\(902.50) Injury to iliac vessel(s), unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\" + }, + { + "displayName": "(902.51) Injury to hypogastric artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\(902.51) Injury to hypogastric artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\" + }, + { + "displayName": "(902.52) Injury to hypogastric vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\(902.52) Injury to hypogastric vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\" + }, + { + "displayName": "(902.53) Injury to iliac artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\(902.53) Injury to iliac artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\" + }, + { + "displayName": "(902.54) Injury to iliac vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\(902.54) Injury to iliac vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\" + }, + { + "displayName": "(902.55) Injury to uterine artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\(902.55) Injury to uterine artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\" + }, + { + "displayName": "(902.56) Injury to uterine vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\(902.56) Injury to uterine vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\" + }, + { + "displayName": "(902.59) Injury to iliac blood vessels, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\(902.59) Injury to iliac blood vessels, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to iliac blood vessels (902.5)\\" + }, + { + "displayName": "Injury to inferior vena cava (902.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to inferior vena cava (902.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\" + }, + { + "displayName": "(902.10) Injury to inferior vena cava, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to inferior vena cava (902.1)\\(902.10) Injury to inferior vena cava, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to inferior vena cava (902.1)\\" + }, + { + "displayName": "(902.11) Injury to hepatic veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to inferior vena cava (902.1)\\(902.11) Injury to hepatic veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to inferior vena cava (902.1)\\" + }, + { + "displayName": "(902.19) Injury to inferior vena cava, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to inferior vena cava (902.1)\\(902.19) Injury to inferior vena cava, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to inferior vena cava (902.1)\\" + }, + { + "displayName": "Injury to other specified blood vessels of abdomen and pelvis (902.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to other specified blood vessels of abdomen and pelvis (902.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\" + }, + { + "displayName": "(902.81) Injury to ovarian artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to other specified blood vessels of abdomen and pelvis (902.8)\\(902.81) Injury to ovarian artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to other specified blood vessels of abdomen and pelvis (902.8)\\" + }, + { + "displayName": "(902.82) Injury to ovarian vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to other specified blood vessels of abdomen and pelvis (902.8)\\(902.82) Injury to ovarian vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to other specified blood vessels of abdomen and pelvis (902.8)\\" + }, + { + "displayName": "(902.87) Injury to multiple blood vessels of abdomen and pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to other specified blood vessels of abdomen and pelvis (902.8)\\(902.87) Injury to multiple blood vessels of abdomen and pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to other specified blood vessels of abdomen and pelvis (902.8)\\" + }, + { + "displayName": "(902.89) Injury to other specified blood vessels of abdomen and pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to other specified blood vessels of abdomen and pelvis (902.8)\\(902.89) Injury to other specified blood vessels of abdomen and pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to other specified blood vessels of abdomen and pelvis (902.8)\\" + }, + { + "displayName": "Injury to portal and splenic veins (902.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to portal and splenic veins (902.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\" + }, + { + "displayName": "(902.31) Injury to superior mesenteric vein and primary subdivisions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to portal and splenic veins (902.3)\\(902.31) Injury to superior mesenteric vein and primary subdivisions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to portal and splenic veins (902.3)\\" + }, + { + "displayName": "(902.32) Injury to inferior mesenteric vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to portal and splenic veins (902.3)\\(902.32) Injury to inferior mesenteric vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to portal and splenic veins (902.3)\\" + }, + { + "displayName": "(902.33) Injury to portal vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to portal and splenic veins (902.3)\\(902.33) Injury to portal vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to portal and splenic veins (902.3)\\" + }, + { + "displayName": "(902.34) Injury to splenic vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to portal and splenic veins (902.3)\\(902.34) Injury to splenic vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to portal and splenic veins (902.3)\\" + }, + { + "displayName": "(902.39) Injury to portal and splenic veins, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to portal and splenic veins (902.3)\\(902.39) Injury to portal and splenic veins, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of abdomen and pelvis (902)\\\\Injury to portal and splenic veins (902.3)\\\\(902.39) Injury to portal and splenic veins, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to portal and splenic veins (902.3)\\" + }, + { + "displayName": "Injury to renal blood vessels (902.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to renal blood vessels (902.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of abdomen and pelvis (902)\\\\Injury to renal blood vessels (902.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\" + }, + { + "displayName": "(902.40) Injury to renal vessel(s), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to renal blood vessels (902.4)\\(902.40) Injury to renal vessel(s), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to renal blood vessels (902.4)\\" + }, + { + "displayName": "(902.41) Injury to renal artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to renal blood vessels (902.4)\\(902.41) Injury to renal artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of abdomen and pelvis (902)\\\\Injury to renal blood vessels (902.4)\\\\(902.41) Injury to renal artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to renal blood vessels (902.4)\\" + }, + { + "displayName": "(902.42) Injury to renal vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to renal blood vessels (902.4)\\(902.42) Injury to renal vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to renal blood vessels (902.4)\\" + }, + { + "displayName": "(902.49) Injury to renal blood vessels, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to renal blood vessels (902.4)\\(902.49) Injury to renal blood vessels, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of abdomen and pelvis (902)\\\\Injury to renal blood vessels (902.4)\\\\(902.49) Injury to renal blood vessels, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of abdomen and pelvis (902)\\Injury to renal blood vessels (902.4)\\" + }, + { + "displayName": "Injury to blood vessels of head and neck (900)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of head and neck (900)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\" + }, + { + "displayName": "(900.1) Injury to internal jugular vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\(900.1) Injury to internal jugular vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\" + }, + { + "displayName": "(900.9) Injury to unspecified blood vessel of head and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\(900.9) Injury to unspecified blood vessel of head and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of head and neck (900)\\\\(900.9) Injury to unspecified blood vessel of head and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\" + }, + { + "displayName": "Injury to carotid artery (900.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to carotid artery (900.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\" + }, + { + "displayName": "(900.00) Injury to carotid artery, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to carotid artery (900.0)\\(900.00) Injury to carotid artery, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to carotid artery (900.0)\\" + }, + { + "displayName": "(900.01) Injury to common carotid artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to carotid artery (900.0)\\(900.01) Injury to common carotid artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to carotid artery (900.0)\\" + }, + { + "displayName": "(900.02) Injury to external carotid artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to carotid artery (900.0)\\(900.02) Injury to external carotid artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to carotid artery (900.0)\\" + }, + { + "displayName": "(900.03) Injury to internal carotid artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to carotid artery (900.0)\\(900.03) Injury to internal carotid artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to carotid artery (900.0)\\" + }, + { + "displayName": "Injury to other specified blood vessels of head and neck (900.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to other specified blood vessels of head and neck (900.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\" + }, + { + "displayName": "(900.81) Injury to external jugular vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to other specified blood vessels of head and neck (900.8)\\(900.81) Injury to external jugular vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to other specified blood vessels of head and neck (900.8)\\" + }, + { + "displayName": "(900.82) Injury to multiple blood vessels of head and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to other specified blood vessels of head and neck (900.8)\\(900.82) Injury to multiple blood vessels of head and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to other specified blood vessels of head and neck (900.8)\\" + }, + { + "displayName": "(900.89) Injury to other specified blood vessels of head and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to other specified blood vessels of head and neck (900.8)\\(900.89) Injury to other specified blood vessels of head and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of head and neck (900)\\Injury to other specified blood vessels of head and neck (900.8)\\" + }, + { + "displayName": "Injury to blood vessels of lower extremity and unspecified sites (904)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\" + }, + { + "displayName": "(904.0) Injury to common femoral artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\(904.0) Injury to common femoral artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\" + }, + { + "displayName": "(904.1) Injury to superficial femoral artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\(904.1) Injury to superficial femoral artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\" + }, + { + "displayName": "(904.2) Injury to femoral veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\(904.2) Injury to femoral veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\" + }, + { + "displayName": "(904.3) Injury to saphenous veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\(904.3) Injury to saphenous veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\" + }, + { + "displayName": "(904.6) Injury to deep plantar blood vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\(904.6) Injury to deep plantar blood vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\" + }, + { + "displayName": "(904.7) Injury to other specified blood vessels of lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\(904.7) Injury to other specified blood vessels of lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of lower extremity and unspecified sites (904)\\\\(904.7) Injury to other specified blood vessels of lower extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\" + }, + { + "displayName": "(904.8) Injury to unspecified blood vessel of lower extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\(904.8) Injury to unspecified blood vessel of lower extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of lower extremity and unspecified sites (904)\\\\(904.8) Injury to unspecified blood vessel of lower extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\" + }, + { + "displayName": "(904.9) Injury to blood vessels of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\(904.9) Injury to blood vessels of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of lower extremity and unspecified sites (904)\\\\(904.9) Injury to blood vessels of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\" + }, + { + "displayName": "Injury to popliteal blood vessels (904.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to popliteal blood vessels (904.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\" + }, + { + "displayName": "(904.40) Injury to popliteal vessel(s), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to popliteal blood vessels (904.4)\\(904.40) Injury to popliteal vessel(s), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of lower extremity and unspecified sites (904)\\\\Injury to popliteal blood vessels (904.4)\\\\(904.40) Injury to popliteal vessel(s), unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to popliteal blood vessels (904.4)\\" + }, + { + "displayName": "(904.41) Injury to popliteal artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to popliteal blood vessels (904.4)\\(904.41) Injury to popliteal artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of lower extremity and unspecified sites (904)\\\\Injury to popliteal blood vessels (904.4)\\\\(904.41) Injury to popliteal artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to popliteal blood vessels (904.4)\\" + }, + { + "displayName": "(904.42) Injury to popliteal vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to popliteal blood vessels (904.4)\\(904.42) Injury to popliteal vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to popliteal blood vessels (904.4)\\" + }, + { + "displayName": "Injury to tibial blood vessels (904.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to tibial blood vessels (904.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of lower extremity and unspecified sites (904)\\\\Injury to tibial blood vessels (904.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\" + }, + { + "displayName": "(904.50) Injury to tibial vessel(s), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to tibial blood vessels (904.5)\\(904.50) Injury to tibial vessel(s), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to tibial blood vessels (904.5)\\" + }, + { + "displayName": "(904.51) Injury to anterior tibial artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to tibial blood vessels (904.5)\\(904.51) Injury to anterior tibial artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of lower extremity and unspecified sites (904)\\\\Injury to tibial blood vessels (904.5)\\\\(904.51) Injury to anterior tibial artery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to tibial blood vessels (904.5)\\" + }, + { + "displayName": "(904.52) Injury to anterior tibial vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to tibial blood vessels (904.5)\\(904.52) Injury to anterior tibial vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of lower extremity and unspecified sites (904)\\\\Injury to tibial blood vessels (904.5)\\\\(904.52) Injury to anterior tibial vein\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to tibial blood vessels (904.5)\\" + }, + { + "displayName": "(904.53) Injury to posterior tibial artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to tibial blood vessels (904.5)\\(904.53) Injury to posterior tibial artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to tibial blood vessels (904.5)\\" + }, + { + "displayName": "(904.54) Injury to posterior tibial vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to tibial blood vessels (904.5)\\(904.54) Injury to posterior tibial vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of lower extremity and unspecified sites (904)\\\\Injury to tibial blood vessels (904.5)\\\\(904.54) Injury to posterior tibial vein\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of lower extremity and unspecified sites (904)\\Injury to tibial blood vessels (904.5)\\" + }, + { + "displayName": "Injury to blood vessels of thorax (901)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of thorax (901)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\" + }, + { + "displayName": "(901.0) Injury to thoracic aorta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\(901.0) Injury to thoracic aorta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\" + }, + { + "displayName": "(901.1) Injury to innominate and subclavian arteries", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\(901.1) Injury to innominate and subclavian arteries\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of thorax (901)\\\\(901.1) Injury to innominate and subclavian arteries\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\" + }, + { + "displayName": "(901.2) Injury to superior vena cava", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\(901.2) Injury to superior vena cava\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\" + }, + { + "displayName": "(901.3) Injury to innominate and subclavian veins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\(901.3) Injury to innominate and subclavian veins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of thorax (901)\\\\(901.3) Injury to innominate and subclavian veins\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\" + }, + { + "displayName": "(901.9) Injury to unspecified blood vessel of thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\(901.9) Injury to unspecified blood vessel of thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of thorax (901)\\\\(901.9) Injury to unspecified blood vessel of thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\" + }, + { + "displayName": "Injury to other specified blood vessels of thorax (901.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to other specified blood vessels of thorax (901.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of thorax (901)\\\\Injury to other specified blood vessels of thorax (901.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\" + }, + { + "displayName": "(901.81) Injury to intercostal artery or vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to other specified blood vessels of thorax (901.8)\\(901.81) Injury to intercostal artery or vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of thorax (901)\\\\Injury to other specified blood vessels of thorax (901.8)\\\\(901.81) Injury to intercostal artery or vein\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to other specified blood vessels of thorax (901.8)\\" + }, + { + "displayName": "(901.82) Injury to internal mammary artery or vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to other specified blood vessels of thorax (901.8)\\(901.82) Injury to internal mammary artery or vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to other specified blood vessels of thorax (901.8)\\" + }, + { + "displayName": "(901.83) Injury to multiple blood vessels of thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to other specified blood vessels of thorax (901.8)\\(901.83) Injury to multiple blood vessels of thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to other specified blood vessels of thorax (901.8)\\" + }, + { + "displayName": "(901.89) Injury to other specified blood vessels of thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to other specified blood vessels of thorax (901.8)\\(901.89) Injury to other specified blood vessels of thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to other specified blood vessels of thorax (901.8)\\" + }, + { + "displayName": "Injury to pulmonary blood vessels (901.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to pulmonary blood vessels (901.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\" + }, + { + "displayName": "(901.40) Injury to pulmonary vessel(s), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to pulmonary blood vessels (901.4)\\(901.40) Injury to pulmonary vessel(s), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to pulmonary blood vessels (901.4)\\" + }, + { + "displayName": "(901.41) Injury to pulmonary artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to pulmonary blood vessels (901.4)\\(901.41) Injury to pulmonary artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to pulmonary blood vessels (901.4)\\" + }, + { + "displayName": "(901.42) Injury to pulmonary vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to pulmonary blood vessels (901.4)\\(901.42) Injury to pulmonary vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of thorax (901)\\Injury to pulmonary blood vessels (901.4)\\" + }, + { + "displayName": "Injury to blood vessels of upper extremity (903)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\" + }, + { + "displayName": "(903.1) Injury to brachial blood vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\(903.1) Injury to brachial blood vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\" + }, + { + "displayName": "(903.2) Injury to radial blood vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\(903.2) Injury to radial blood vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\" + }, + { + "displayName": "(903.3) Injury to ulnar blood vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\(903.3) Injury to ulnar blood vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\" + }, + { + "displayName": "(903.4) Injury to palmar artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\(903.4) Injury to palmar artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\" + }, + { + "displayName": "(903.5) Injury to digital blood vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\(903.5) Injury to digital blood vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of upper extremity (903)\\\\(903.5) Injury to digital blood vessels\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\" + }, + { + "displayName": "(903.8) Injury to other specified blood vessels of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\(903.8) Injury to other specified blood vessels of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of upper extremity (903)\\\\(903.8) Injury to other specified blood vessels of upper extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\" + }, + { + "displayName": "(903.9) Injury to unspecified blood vessel of upper extremity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\(903.9) Injury to unspecified blood vessel of upper extremity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to blood vessels (900-904.99)\\\\Injury to blood vessels of upper extremity (903)\\\\(903.9) Injury to unspecified blood vessel of upper extremity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\" + }, + { + "displayName": "Injury to axillary blood vessels (903.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\Injury to axillary blood vessels (903.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\" + }, + { + "displayName": "(903.00) Injury to axillary vessel(s), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\Injury to axillary blood vessels (903.0)\\(903.00) Injury to axillary vessel(s), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\Injury to axillary blood vessels (903.0)\\" + }, + { + "displayName": "(903.01) Injury to axillary artery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\Injury to axillary blood vessels (903.0)\\(903.01) Injury to axillary artery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\Injury to axillary blood vessels (903.0)\\" + }, + { + "displayName": "(903.02) Injury to axillary vein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\Injury to axillary blood vessels (903.0)\\(903.02) Injury to axillary vein\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to blood vessels (900-904.99)\\Injury to blood vessels of upper extremity (903)\\Injury to axillary blood vessels (903.0)\\" + }, + { + "displayName": "Injury to nerves and spinal cord (950-957.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Injury to nerve roots and spinal plexus (953)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\" + }, + { + "displayName": "(953.0) Injury to cervical nerve root", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\(953.0) Injury to cervical nerve root\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\" + }, + { + "displayName": "(953.1) Injury to dorsal nerve root", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\(953.1) Injury to dorsal nerve root\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\" + }, + { + "displayName": "(953.2) Injury to lumbar nerve root", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\(953.2) Injury to lumbar nerve root\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to nerve roots and spinal plexus (953)\\\\(953.2) Injury to lumbar nerve root\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\" + }, + { + "displayName": "(953.3) Injury to sacral nerve root", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\(953.3) Injury to sacral nerve root\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\" + }, + { + "displayName": "(953.4) Injury to brachial plexus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\(953.4) Injury to brachial plexus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to nerve roots and spinal plexus (953)\\\\(953.4) Injury to brachial plexus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\" + }, + { + "displayName": "(953.5) Injury to lumbosacral plexus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\(953.5) Injury to lumbosacral plexus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to nerve roots and spinal plexus (953)\\\\(953.5) Injury to lumbosacral plexus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\" + }, + { + "displayName": "(953.8) Injury to multiple sites of nerve roots and spinal plexus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\(953.8) Injury to multiple sites of nerve roots and spinal plexus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to nerve roots and spinal plexus (953)\\\\(953.8) Injury to multiple sites of nerve roots and spinal plexus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\" + }, + { + "displayName": "(953.9) Injury to unspecified site of nerve roots and spinal plexus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\(953.9) Injury to unspecified site of nerve roots and spinal plexus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to nerve roots and spinal plexus (953)\\\\(953.9) Injury to unspecified site of nerve roots and spinal plexus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to nerve roots and spinal plexus (953)\\" + }, + { + "displayName": "Injury to optic nerve and pathways (950)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to optic nerve and pathways (950)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\" + }, + { + "displayName": "(950.0) Optic nerve injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to optic nerve and pathways (950)\\(950.0) Optic nerve injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to optic nerve and pathways (950)\\\\(950.0) Optic nerve injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to optic nerve and pathways (950)\\" + }, + { + "displayName": "(950.1) Injury to optic chiasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to optic nerve and pathways (950)\\(950.1) Injury to optic chiasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to optic nerve and pathways (950)\\" + }, + { + "displayName": "(950.2) Injury to optic pathways", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to optic nerve and pathways (950)\\(950.2) Injury to optic pathways\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to optic nerve and pathways (950)\\\\(950.2) Injury to optic pathways\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to optic nerve and pathways (950)\\" + }, + { + "displayName": "(950.3) Injury to visual cortex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to optic nerve and pathways (950)\\(950.3) Injury to visual cortex\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to optic nerve and pathways (950)\\\\(950.3) Injury to visual cortex\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to optic nerve and pathways (950)\\" + }, + { + "displayName": "(950.9) Injury to unspecified optic nerve and pathways", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to optic nerve and pathways (950)\\(950.9) Injury to unspecified optic nerve and pathways\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to optic nerve and pathways (950)\\" + }, + { + "displayName": "Injury to other and unspecified nerves (957)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other and unspecified nerves (957)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\" + }, + { + "displayName": "(957.0) Injury to superficial nerves of head and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other and unspecified nerves (957)\\(957.0) Injury to superficial nerves of head and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other and unspecified nerves (957)\\" + }, + { + "displayName": "(957.1) Injury to other specified nerve(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other and unspecified nerves (957)\\(957.1) Injury to other specified nerve(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other and unspecified nerves (957)\\" + }, + { + "displayName": "(957.8) Injury to multiple nerves in several parts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other and unspecified nerves (957)\\(957.8) Injury to multiple nerves in several parts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other and unspecified nerves (957)\\" + }, + { + "displayName": "(957.9) Injury to nerves, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other and unspecified nerves (957)\\(957.9) Injury to nerves, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other and unspecified nerves (957)\\" + }, + { + "displayName": "Injury to other cranial nerve(s) (951)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\" + }, + { + "displayName": "(951.0) Injury to oculomotor nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\(951.0) Injury to oculomotor nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\" + }, + { + "displayName": "(951.1) Injury to trochlear nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\(951.1) Injury to trochlear nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\" + }, + { + "displayName": "(951.2) Injury to trigeminal nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\(951.2) Injury to trigeminal nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\" + }, + { + "displayName": "(951.3) Injury to abducens nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\(951.3) Injury to abducens nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\" + }, + { + "displayName": "(951.4) Injury to facial nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\(951.4) Injury to facial nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\" + }, + { + "displayName": "(951.5) Injury to acoustic nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\(951.5) Injury to acoustic nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\" + }, + { + "displayName": "(951.6) Injury to accessory nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\(951.6) Injury to accessory nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\" + }, + { + "displayName": "(951.7) Injury to hypoglossal nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\(951.7) Injury to hypoglossal nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\" + }, + { + "displayName": "(951.8) Injury to other specified cranial nerves", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\(951.8) Injury to other specified cranial nerves\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to other cranial nerve(s) (951)\\\\(951.8) Injury to other specified cranial nerves\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\" + }, + { + "displayName": "(951.9) Injury to unspecified cranial nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\(951.9) Injury to unspecified cranial nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to other cranial nerve(s) (951)\\\\(951.9) Injury to unspecified cranial nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other cranial nerve(s) (951)\\" + }, + { + "displayName": "Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\" + }, + { + "displayName": "(954.0) Injury to cervical sympathetic nerve, excluding shoulder and pelvic girdles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\(954.0) Injury to cervical sympathetic nerve, excluding shoulder and pelvic girdles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\\\(954.0) Injury to cervical sympathetic nerve, excluding shoulder and pelvic girdles\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\" + }, + { + "displayName": "(954.1) Injury to other sympathetic nerve, excluding shoulder and pelvic girdles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\(954.1) Injury to other sympathetic nerve, excluding shoulder and pelvic girdles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\\\(954.1) Injury to other sympathetic nerve, excluding shoulder and pelvic girdles\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\" + }, + { + "displayName": "(954.8) Injury to other specified nerve(s) of trunk, excluding shoulder and pelvic girdles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\(954.8) Injury to other specified nerve(s) of trunk, excluding shoulder and pelvic girdles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\" + }, + { + "displayName": "(954.9) Injury to unspecified nerve of trunk, excluding shoulder and pelvic girdles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\(954.9) Injury to unspecified nerve of trunk, excluding shoulder and pelvic girdles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\\\(954.9) Injury to unspecified nerve of trunk, excluding shoulder and pelvic girdles\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to other nerve(s) of trunk, excluding shoulder and pelvic girdles (954)\\" + }, + { + "displayName": "Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\" + }, + { + "displayName": "(956.0) Injury to sciatic nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\(956.0) Injury to sciatic nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\" + }, + { + "displayName": "(956.1) Injury to femoral nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\(956.1) Injury to femoral nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\\\(956.1) Injury to femoral nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\" + }, + { + "displayName": "(956.2) Injury to posterior tibial nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\(956.2) Injury to posterior tibial nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\\\(956.2) Injury to posterior tibial nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\" + }, + { + "displayName": "(956.3) Injury to peroneal nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\(956.3) Injury to peroneal nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\\\(956.3) Injury to peroneal nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\" + }, + { + "displayName": "(956.4) Injury to cutaneous sensory nerve, lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\(956.4) Injury to cutaneous sensory nerve, lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\" + }, + { + "displayName": "(956.5) Injury to other specified nerve(s) of pelvic girdle and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\(956.5) Injury to other specified nerve(s) of pelvic girdle and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\\\(956.5) Injury to other specified nerve(s) of pelvic girdle and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\" + }, + { + "displayName": "(956.8) Injury to multiple nerves of pelvic girdle and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\(956.8) Injury to multiple nerves of pelvic girdle and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\\\(956.8) Injury to multiple nerves of pelvic girdle and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\" + }, + { + "displayName": "(956.9) Injury to unspecified nerve of pelvic girdle and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\(956.9) Injury to unspecified nerve of pelvic girdle and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\\\(956.9) Injury to unspecified nerve of pelvic girdle and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of pelvic girdle and lower limb (956)\\" + }, + { + "displayName": "Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\" + }, + { + "displayName": "(955.0) Injury to axillary nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\(955.0) Injury to axillary nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\\\(955.0) Injury to axillary nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\" + }, + { + "displayName": "(955.1) Injury to median nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\(955.1) Injury to median nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\\\(955.1) Injury to median nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\" + }, + { + "displayName": "(955.2) Injury to ulnar nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\(955.2) Injury to ulnar nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\" + }, + { + "displayName": "(955.3) Injury to radial nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\(955.3) Injury to radial nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\\\(955.3) Injury to radial nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\" + }, + { + "displayName": "(955.4) Injury to musculocutaneous nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\(955.4) Injury to musculocutaneous nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\" + }, + { + "displayName": "(955.5) Injury to cutaneous sensory nerve, upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\(955.5) Injury to cutaneous sensory nerve, upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\" + }, + { + "displayName": "(955.6) Injury to digital nerve, upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\(955.6) Injury to digital nerve, upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\" + }, + { + "displayName": "(955.7) Injury to other specified nerve(s) of shoulder girdle and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\(955.7) Injury to other specified nerve(s) of shoulder girdle and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\" + }, + { + "displayName": "(955.8) Injury to multiple nerves of shoulder girdle and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\(955.8) Injury to multiple nerves of shoulder girdle and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\" + }, + { + "displayName": "(955.9) Injury to unspecified nerve of shoulder girdle and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\(955.9) Injury to unspecified nerve of shoulder girdle and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Injury to peripheral nerve(s) of shoulder girdle and upper limb (955)\\" + }, + { + "displayName": "Spinal cord injury without evidence of spinal bone injury (952)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\" + }, + { + "displayName": "(952.2) Lumbar spinal cord injury without evidence of spinal bone injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\(952.2) Lumbar spinal cord injury without evidence of spinal bone injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\" + }, + { + "displayName": "(952.3) Sacral spinal cord injury without evidence of spinal bone injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\(952.3) Sacral spinal cord injury without evidence of spinal bone injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\" + }, + { + "displayName": "(952.4) Cauda equina spinal cord injury without evidence of spinal bone injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\(952.4) Cauda equina spinal cord injury without evidence of spinal bone injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\" + }, + { + "displayName": "(952.8) Multiple sites of spinal cord injury without evidence of spinal bone injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\(952.8) Multiple sites of spinal cord injury without evidence of spinal bone injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\" + }, + { + "displayName": "(952.9) Unspecified site of spinal cord injury without evidence of spinal bone injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\(952.9) Unspecified site of spinal cord injury without evidence of spinal bone injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\" + }, + { + "displayName": "Cervical spinal cord injury without evidence of spinal bone injury (952.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\" + }, + { + "displayName": "(952.00) C1-C4 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\(952.00) C1-C4 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\" + }, + { + "displayName": "(952.01) C1-C4 level with complete lesion of spinal cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\(952.01) C1-C4 level with complete lesion of spinal cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\" + }, + { + "displayName": "(952.02) C1-C4 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\(952.02) C1-C4 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\" + }, + { + "displayName": "(952.03) C1-C4 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\(952.03) C1-C4 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\" + }, + { + "displayName": "(952.04) C1-C4 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\(952.04) C1-C4 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\" + }, + { + "displayName": "(952.05) C5-C7 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\(952.05) C5-C7 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\" + }, + { + "displayName": "(952.06) C5-C7 level with complete lesion of spinal cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\(952.06) C5-C7 level with complete lesion of spinal cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\" + }, + { + "displayName": "(952.07) C5-C7 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\(952.07) C5-C7 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Spinal cord injury without evidence of spinal bone injury (952)\\\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\\\(952.07) C5-C7 level with anterior cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\" + }, + { + "displayName": "(952.08) C5-C7 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\(952.08) C5-C7 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Spinal cord injury without evidence of spinal bone injury (952)\\\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\\\(952.08) C5-C7 level with central cord syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\" + }, + { + "displayName": "(952.09) C5-C7 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\(952.09) C5-C7 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Cervical spinal cord injury without evidence of spinal bone injury (952.0)\\" + }, + { + "displayName": "Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Injury to nerves and spinal cord (950-957.99)\\\\Spinal cord injury without evidence of spinal bone injury (952)\\\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\" + }, + { + "displayName": "(952.10) T1-T6 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\(952.10) T1-T6 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\" + }, + { + "displayName": "(952.11) T1-T6 level with complete lesion of spinal cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\(952.11) T1-T6 level with complete lesion of spinal cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\" + }, + { + "displayName": "(952.12) T1-T6 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\(952.12) T1-T6 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\" + }, + { + "displayName": "(952.13) T1-T6 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\(952.13) T1-T6 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\" + }, + { + "displayName": "(952.14) T1-T6 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\(952.14) T1-T6 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\" + }, + { + "displayName": "(952.15) T7-T12 level with unspecified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\(952.15) T7-T12 level with unspecified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\" + }, + { + "displayName": "(952.16) T7-T12 level with complete lesion of spinal cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\(952.16) T7-T12 level with complete lesion of spinal cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\" + }, + { + "displayName": "(952.17) T7-T12 level with anterior cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\(952.17) T7-T12 level with anterior cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\" + }, + { + "displayName": "(952.18) T7-T12 level with central cord syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\(952.18) T7-T12 level with central cord syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\" + }, + { + "displayName": "(952.19) T7-T12 level with other specified spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\(952.19) T7-T12 level with other specified spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Injury to nerves and spinal cord (950-957.99)\\Spinal cord injury without evidence of spinal bone injury (952)\\Dorsal [thoracic] spinal cord injury without evidence of spinal bone injury (952.1)\\" + }, + { + "displayName": "Internal injury of thorax, abdomen, and pelvis (860-869.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Injury to gastrointestinal tract (863)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\" + }, + { + "displayName": "(863.0) Injury to stomach, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\(863.0) Injury to stomach, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\(863.0) Injury to stomach, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\" + }, + { + "displayName": "(863.1) Injury to stomach, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\(863.1) Injury to stomach, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\" + }, + { + "displayName": "Injury to colon or rectum with open wound into cavity (863.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\" + }, + { + "displayName": "(863.50) Injury to colon, unspecified site, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\(863.50) Injury to colon, unspecified site, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\" + }, + { + "displayName": "(863.51) Injury to ascending [right] colon, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\(863.51) Injury to ascending [right] colon, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\" + }, + { + "displayName": "(863.52) Injury to transverse colon, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\(863.52) Injury to transverse colon, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to colon or rectum with open wound into cavity (863.5)\\\\(863.52) Injury to transverse colon, with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\" + }, + { + "displayName": "(863.53) Injury to descending [left] colon, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\(863.53) Injury to descending [left] colon, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to colon or rectum with open wound into cavity (863.5)\\\\(863.53) Injury to descending [left] colon, with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\" + }, + { + "displayName": "(863.54) Injury to sigmoid colon, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\(863.54) Injury to sigmoid colon, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to colon or rectum with open wound into cavity (863.5)\\\\(863.54) Injury to sigmoid colon, with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\" + }, + { + "displayName": "(863.55) Injury to rectum, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\(863.55) Injury to rectum, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\" + }, + { + "displayName": "(863.56) Injury to multiple sites in colon and rectum, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\(863.56) Injury to multiple sites in colon and rectum, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to colon or rectum with open wound into cavity (863.5)\\\\(863.56) Injury to multiple sites in colon and rectum, with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\" + }, + { + "displayName": "(863.59) Other injury to colon or rectum, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\(863.59) Other injury to colon or rectum, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to colon or rectum with open wound into cavity (863.5)\\\\(863.59) Other injury to colon or rectum, with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum with open wound into cavity (863.5)\\" + }, + { + "displayName": "Injury to colon or rectum without mention of open wound into cavity (863.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\" + }, + { + "displayName": "(863.40) Injury to colon, unspecified site, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\(863.40) Injury to colon, unspecified site, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\\\(863.40) Injury to colon, unspecified site, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\" + }, + { + "displayName": "(863.41) Injury to ascending [right] colon, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\(863.41) Injury to ascending [right] colon, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\\\(863.41) Injury to ascending [right] colon, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\" + }, + { + "displayName": "(863.42) Injury to transverse colon, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\(863.42) Injury to transverse colon, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\\\(863.42) Injury to transverse colon, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\" + }, + { + "displayName": "(863.43) Injury to descending [left] colon, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\(863.43) Injury to descending [left] colon, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\" + }, + { + "displayName": "(863.44) Injury to sigmoid colon, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\(863.44) Injury to sigmoid colon, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\\\(863.44) Injury to sigmoid colon, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\" + }, + { + "displayName": "(863.45) Injury to rectum, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\(863.45) Injury to rectum, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\" + }, + { + "displayName": "(863.46) Injury to multiple sites in colon and rectum, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\(863.46) Injury to multiple sites in colon and rectum, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\\\(863.46) Injury to multiple sites in colon and rectum, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\" + }, + { + "displayName": "(863.49) Other injury to colon or rectum, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\(863.49) Other injury to colon or rectum, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\\\(863.49) Other injury to colon or rectum, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to colon or rectum without mention of open wound into cavity (863.4)\\" + }, + { + "displayName": "Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\" + }, + { + "displayName": "(863.80) Injury to gastrointestinal tract, unspecified site, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\(863.80) Injury to gastrointestinal tract, unspecified site, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\" + }, + { + "displayName": "(863.81) Injury to pancreas, head, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\(863.81) Injury to pancreas, head, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\" + }, + { + "displayName": "(863.82) Injury to pancreas, body, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\(863.82) Injury to pancreas, body, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\\\(863.82) Injury to pancreas, body, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\" + }, + { + "displayName": "(863.83) Injury to pancreas, tail, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\(863.83) Injury to pancreas, tail, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\" + }, + { + "displayName": "(863.84) Injury to pancreas, multiple and unspecified sites, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\(863.84) Injury to pancreas, multiple and unspecified sites, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to gastrointestinal tract (863)\\\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\\\(863.84) Injury to pancreas, multiple and unspecified sites, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\" + }, + { + "displayName": "(863.85) Injury to appendix, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\(863.85) Injury to appendix, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\" + }, + { + "displayName": "(863.89) Injury to other gastrointestinal sites, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\(863.89) Injury to other gastrointestinal sites, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites without mention of open wound into cavity (863.8)\\" + }, + { + "displayName": "Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\" + }, + { + "displayName": "(863.90) Injury to gastrointestinal tract, unspecified site, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\(863.90) Injury to gastrointestinal tract, unspecified site, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\" + }, + { + "displayName": "(863.91) Injury to pancreas, head, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\(863.91) Injury to pancreas, head, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\" + }, + { + "displayName": "(863.92) Injury to pancreas, body, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\(863.92) Injury to pancreas, body, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\" + }, + { + "displayName": "(863.93) Injury to pancreas, tail, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\(863.93) Injury to pancreas, tail, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\" + }, + { + "displayName": "(863.94) Injury to pancreas, multiple and unspecified sites, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\(863.94) Injury to pancreas, multiple and unspecified sites, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\" + }, + { + "displayName": "(863.95) Injury to appendix, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\(863.95) Injury to appendix, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\" + }, + { + "displayName": "(863.99) Injury to other gastrointestinal sites, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\(863.99) Injury to other gastrointestinal sites, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to other and unspecified gastrointestinal sites, with open wound into cavity (863.9)\\" + }, + { + "displayName": "Injury to small intestine with open wound into cavity (863.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine with open wound into cavity (863.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\" + }, + { + "displayName": "(863.30) Injury to small intestine, unspecified site, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine with open wound into cavity (863.3)\\(863.30) Injury to small intestine, unspecified site, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine with open wound into cavity (863.3)\\" + }, + { + "displayName": "(863.31) Injury to duodenum, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine with open wound into cavity (863.3)\\(863.31) Injury to duodenum, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine with open wound into cavity (863.3)\\" + }, + { + "displayName": "(863.39) Other injury to small intestine, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine with open wound into cavity (863.3)\\(863.39) Other injury to small intestine, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine with open wound into cavity (863.3)\\" + }, + { + "displayName": "Injury to small intestine without mention of open wound into cavity (863.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine without mention of open wound into cavity (863.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\" + }, + { + "displayName": "(863.20) Injury to small intestine, unspecified site, without open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine without mention of open wound into cavity (863.2)\\(863.20) Injury to small intestine, unspecified site, without open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine without mention of open wound into cavity (863.2)\\" + }, + { + "displayName": "(863.21) Injury to duodenum, without open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine without mention of open wound into cavity (863.2)\\(863.21) Injury to duodenum, without open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine without mention of open wound into cavity (863.2)\\" + }, + { + "displayName": "(863.29) Other injury to small intestine, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine without mention of open wound into cavity (863.2)\\(863.29) Other injury to small intestine, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to gastrointestinal tract (863)\\Injury to small intestine without mention of open wound into cavity (863.2)\\" + }, + { + "displayName": "Injury to heart and lung (861)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\" + }, + { + "displayName": "Heart injury, with open wound into thorax (861.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, with open wound into thorax (861.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\" + }, + { + "displayName": "(861.10) Unspecified injury of heart with open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, with open wound into thorax (861.1)\\(861.10) Unspecified injury of heart with open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to heart and lung (861)\\\\Heart injury, with open wound into thorax (861.1)\\\\(861.10) Unspecified injury of heart with open wound into thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, with open wound into thorax (861.1)\\" + }, + { + "displayName": "(861.11) Contusion of heart with open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, with open wound into thorax (861.1)\\(861.11) Contusion of heart with open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to heart and lung (861)\\\\Heart injury, with open wound into thorax (861.1)\\\\(861.11) Contusion of heart with open wound into thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, with open wound into thorax (861.1)\\" + }, + { + "displayName": "(861.12) Laceration of heart without penetration of heart chambers, with open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, with open wound into thorax (861.1)\\(861.12) Laceration of heart without penetration of heart chambers, with open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, with open wound into thorax (861.1)\\" + }, + { + "displayName": "(861.13) Laceration of heart with penetration of heart chambers with open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, with open wound into thorax (861.1)\\(861.13) Laceration of heart with penetration of heart chambers with open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to heart and lung (861)\\\\Heart injury, with open wound into thorax (861.1)\\\\(861.13) Laceration of heart with penetration of heart chambers with open wound into thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, with open wound into thorax (861.1)\\" + }, + { + "displayName": "Heart injury, without mention of open wound into thorax (861.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, without mention of open wound into thorax (861.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to heart and lung (861)\\\\Heart injury, without mention of open wound into thorax (861.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\" + }, + { + "displayName": "(861.00) Unspecified injury of heart without mention of open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, without mention of open wound into thorax (861.0)\\(861.00) Unspecified injury of heart without mention of open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, without mention of open wound into thorax (861.0)\\" + }, + { + "displayName": "(861.01) Contusion of heart without mention of open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, without mention of open wound into thorax (861.0)\\(861.01) Contusion of heart without mention of open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to heart and lung (861)\\\\Heart injury, without mention of open wound into thorax (861.0)\\\\(861.01) Contusion of heart without mention of open wound into thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, without mention of open wound into thorax (861.0)\\" + }, + { + "displayName": "(861.02) Laceration of heart without penetration of heart chambers or without mention of open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, without mention of open wound into thorax (861.0)\\(861.02) Laceration of heart without penetration of heart chambers or without mention of open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, without mention of open wound into thorax (861.0)\\" + }, + { + "displayName": "(861.03) Laceration of heart with penetration of heart chambers without mention of open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, without mention of open wound into thorax (861.0)\\(861.03) Laceration of heart with penetration of heart chambers without mention of open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to heart and lung (861)\\\\Heart injury, without mention of open wound into thorax (861.0)\\\\(861.03) Laceration of heart with penetration of heart chambers without mention of open wound into thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Heart injury, without mention of open wound into thorax (861.0)\\" + }, + { + "displayName": "Lung injury, with open wound into thorax (861.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, with open wound into thorax (861.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to heart and lung (861)\\\\Lung injury, with open wound into thorax (861.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\" + }, + { + "displayName": "(861.30) Unspecified injury of lung with open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, with open wound into thorax (861.3)\\(861.30) Unspecified injury of lung with open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, with open wound into thorax (861.3)\\" + }, + { + "displayName": "(861.31) Contusion of lung with open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, with open wound into thorax (861.3)\\(861.31) Contusion of lung with open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to heart and lung (861)\\\\Lung injury, with open wound into thorax (861.3)\\\\(861.31) Contusion of lung with open wound into thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, with open wound into thorax (861.3)\\" + }, + { + "displayName": "(861.32) Laceration of lung with open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, with open wound into thorax (861.3)\\(861.32) Laceration of lung with open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to heart and lung (861)\\\\Lung injury, with open wound into thorax (861.3)\\\\(861.32) Laceration of lung with open wound into thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, with open wound into thorax (861.3)\\" + }, + { + "displayName": "Lung injury, without mention of open wound into thorax (861.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, without mention of open wound into thorax (861.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to heart and lung (861)\\\\Lung injury, without mention of open wound into thorax (861.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\" + }, + { + "displayName": "(861.20) Unspecified injury of lung without mention of open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, without mention of open wound into thorax (861.2)\\(861.20) Unspecified injury of lung without mention of open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, without mention of open wound into thorax (861.2)\\" + }, + { + "displayName": "(861.21) Contusion of lung without mention of open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, without mention of open wound into thorax (861.2)\\(861.21) Contusion of lung without mention of open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, without mention of open wound into thorax (861.2)\\" + }, + { + "displayName": "(861.22) Laceration of lung without mention of open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, without mention of open wound into thorax (861.2)\\(861.22) Laceration of lung without mention of open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to heart and lung (861)\\Lung injury, without mention of open wound into thorax (861.2)\\" + }, + { + "displayName": "Injury to kidney (866)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\" + }, + { + "displayName": "Injury to kidney with open wound into cavity (866.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney with open wound into cavity (866.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\" + }, + { + "displayName": "(866.10) Injury to kidney with open wound into cavity, unspecified injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney with open wound into cavity (866.1)\\(866.10) Injury to kidney with open wound into cavity, unspecified injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney with open wound into cavity (866.1)\\" + }, + { + "displayName": "(866.11) Injury to kidney with open wound into cavity, hematoma without rupture of capsule", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney with open wound into cavity (866.1)\\(866.11) Injury to kidney with open wound into cavity, hematoma without rupture of capsule\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney with open wound into cavity (866.1)\\" + }, + { + "displayName": "(866.12) Injury to kidney with open wound into cavity, laceration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney with open wound into cavity (866.1)\\(866.12) Injury to kidney with open wound into cavity, laceration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney with open wound into cavity (866.1)\\" + }, + { + "displayName": "(866.13) Injury to kidney with open wound into cavity, complete disruption of kidney parenchyma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney with open wound into cavity (866.1)\\(866.13) Injury to kidney with open wound into cavity, complete disruption of kidney parenchyma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney with open wound into cavity (866.1)\\" + }, + { + "displayName": "Injury to kidney without mention of open wound into cavity (866.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney without mention of open wound into cavity (866.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\" + }, + { + "displayName": "(866.00) Injury to kidney without mention of open wound into cavity, unspecified injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney without mention of open wound into cavity (866.0)\\(866.00) Injury to kidney without mention of open wound into cavity, unspecified injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney without mention of open wound into cavity (866.0)\\" + }, + { + "displayName": "(866.01) Injury to kidney without mention of open wound into cavity, hematoma without rupture of capsule", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney without mention of open wound into cavity (866.0)\\(866.01) Injury to kidney without mention of open wound into cavity, hematoma without rupture of capsule\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney without mention of open wound into cavity (866.0)\\" + }, + { + "displayName": "(866.02) Injury to kidney without mention of open wound into cavity, laceration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney without mention of open wound into cavity (866.0)\\(866.02) Injury to kidney without mention of open wound into cavity, laceration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney without mention of open wound into cavity (866.0)\\" + }, + { + "displayName": "(866.03) Injury to kidney without mention of open wound into cavity, complete disruption of kidney parenchyma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney without mention of open wound into cavity (866.0)\\(866.03) Injury to kidney without mention of open wound into cavity, complete disruption of kidney parenchyma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to kidney (866)\\Injury to kidney without mention of open wound into cavity (866.0)\\" + }, + { + "displayName": "Injury to liver (864)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\" + }, + { + "displayName": "Injury to liver with open wound into cavity (864.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\" + }, + { + "displayName": "(864.10) Injury to liver with open wound into cavity, unspecified injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\(864.10) Injury to liver with open wound into cavity, unspecified injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\" + }, + { + "displayName": "(864.11) Injury to liver with open wound into cavity, hematoma and contusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\(864.11) Injury to liver with open wound into cavity, hematoma and contusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\" + }, + { + "displayName": "(864.12) Injury to liver with open wound into cavity, laceration, minor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\(864.12) Injury to liver with open wound into cavity, laceration, minor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\" + }, + { + "displayName": "(864.13) Injury to liver with open wound into cavity, laceration, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\(864.13) Injury to liver with open wound into cavity, laceration, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\" + }, + { + "displayName": "(864.14) Injury to liver with open wound into cavity, laceration, major", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\(864.14) Injury to liver with open wound into cavity, laceration, major\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\" + }, + { + "displayName": "(864.15) Injury to liver with open wound into cavity, laceration, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\(864.15) Injury to liver with open wound into cavity, laceration, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\" + }, + { + "displayName": "(864.19) Other injury to liver with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\(864.19) Other injury to liver with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver with open wound into cavity (864.1)\\" + }, + { + "displayName": "Injury to liver without mention of open wound into cavity (864.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\" + }, + { + "displayName": "(864.00) Injury to liver without mention of open wound into cavity, unspecified injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\(864.00) Injury to liver without mention of open wound into cavity, unspecified injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to liver (864)\\\\Injury to liver without mention of open wound into cavity (864.0)\\\\(864.00) Injury to liver without mention of open wound into cavity, unspecified injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\" + }, + { + "displayName": "(864.01) Injury to liver without mention of open wound into cavity, hematoma and contusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\(864.01) Injury to liver without mention of open wound into cavity, hematoma and contusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to liver (864)\\\\Injury to liver without mention of open wound into cavity (864.0)\\\\(864.01) Injury to liver without mention of open wound into cavity, hematoma and contusion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\" + }, + { + "displayName": "(864.02) Injury to liver without mention of open wound into cavity, laceration, minor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\(864.02) Injury to liver without mention of open wound into cavity, laceration, minor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to liver (864)\\\\Injury to liver without mention of open wound into cavity (864.0)\\\\(864.02) Injury to liver without mention of open wound into cavity, laceration, minor\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\" + }, + { + "displayName": "(864.03) Injury to liver without mention of open wound into cavity, laceration, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\(864.03) Injury to liver without mention of open wound into cavity, laceration, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to liver (864)\\\\Injury to liver without mention of open wound into cavity (864.0)\\\\(864.03) Injury to liver without mention of open wound into cavity, laceration, moderate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\" + }, + { + "displayName": "(864.04) Injury to liver without mention of open wound into cavity, laceration, major", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\(864.04) Injury to liver without mention of open wound into cavity, laceration, major\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to liver (864)\\\\Injury to liver without mention of open wound into cavity (864.0)\\\\(864.04) Injury to liver without mention of open wound into cavity, laceration, major\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\" + }, + { + "displayName": "(864.05) Injury to liver without mention of open wound into cavity laceration, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\(864.05) Injury to liver without mention of open wound into cavity laceration, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to liver (864)\\\\Injury to liver without mention of open wound into cavity (864.0)\\\\(864.05) Injury to liver without mention of open wound into cavity laceration, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\" + }, + { + "displayName": "(864.09) Other injury to liver without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\(864.09) Other injury to liver without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to liver (864)\\\\Injury to liver without mention of open wound into cavity (864.0)\\\\(864.09) Other injury to liver without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to liver (864)\\Injury to liver without mention of open wound into cavity (864.0)\\" + }, + { + "displayName": "Injury to other and unspecified intrathoracic organs (862)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\" + }, + { + "displayName": "(862.0) Injury to diaphragm, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\(862.0) Injury to diaphragm, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\(862.0) Injury to diaphragm, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\" + }, + { + "displayName": "(862.1) Injury to diaphragm, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\(862.1) Injury to diaphragm, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\(862.1) Injury to diaphragm, with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\" + }, + { + "displayName": "(862.8) Injury to multiple and unspecified intrathoracic organs, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\(862.8) Injury to multiple and unspecified intrathoracic organs, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\(862.8) Injury to multiple and unspecified intrathoracic organs, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\" + }, + { + "displayName": "(862.9) Injury to multiple and unspecified intrathoracic organs, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\(862.9) Injury to multiple and unspecified intrathoracic organs, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\(862.9) Injury to multiple and unspecified intrathoracic organs, with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\" + }, + { + "displayName": "Injury to other specified intrathoracic organs with open wound into cavity (862.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\" + }, + { + "displayName": "(862.31) Injury to bronchus with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\\(862.31) Injury to bronchus with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\\\\(862.31) Injury to bronchus with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\\" + }, + { + "displayName": "(862.32) Injury to esophagus with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\\(862.32) Injury to esophagus with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\\\\(862.32) Injury to esophagus with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\\" + }, + { + "displayName": "(862.39) Injury to other specified intrathoracic organs with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\\(862.39) Injury to other specified intrathoracic organs with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\\\\(862.39) Injury to other specified intrathoracic organs with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs with open wound into cavity (862.3)\\" + }, + { + "displayName": "Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\" + }, + { + "displayName": "(862.21) Injury to bronchus without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\\(862.21) Injury to bronchus without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\\\\(862.21) Injury to bronchus without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\\" + }, + { + "displayName": "(862.22) Injury to esophagus without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\\(862.22) Injury to esophagus without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\\\\(862.22) Injury to esophagus without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\\" + }, + { + "displayName": "(862.29) Injury to other specified intrathoracic organs without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\\(862.29) Injury to other specified intrathoracic organs without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other and unspecified intrathoracic organs (862)\\\\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\\\\(862.29) Injury to other specified intrathoracic organs without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other and unspecified intrathoracic organs (862)\\Injury to other specified intrathoracic organs without mention of open wound into cavity (862.2)\\" + }, + { + "displayName": "Injury to other intra-abdominal organs (868)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other intra-abdominal organs (868)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\" + }, + { + "displayName": "Injury to other intra-abdominal organs with open wound into cavity (868.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other intra-abdominal organs (868)\\\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\" + }, + { + "displayName": "(868.10) Injury to other intra-abdominal organs with open wound into cavity, unspecified intra-abdominal organ", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\(868.10) Injury to other intra-abdominal organs with open wound into cavity, unspecified intra-abdominal organ\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other intra-abdominal organs (868)\\\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\\\(868.10) Injury to other intra-abdominal organs with open wound into cavity, unspecified intra-abdominal organ\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\" + }, + { + "displayName": "(868.11) Injury to other intra-abdominal organs with open wound into cavity, adrenal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\(868.11) Injury to other intra-abdominal organs with open wound into cavity, adrenal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to other intra-abdominal organs (868)\\\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\\\(868.11) Injury to other intra-abdominal organs with open wound into cavity, adrenal gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\" + }, + { + "displayName": "(868.12) Injury to other intra-abdominal organs with open wound into cavity, bile duct and gallbladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\(868.12) Injury to other intra-abdominal organs with open wound into cavity, bile duct and gallbladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\" + }, + { + "displayName": "(868.13) Injury to other intra-abdominal organs with open wound into cavity, peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\(868.13) Injury to other intra-abdominal organs with open wound into cavity, peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\" + }, + { + "displayName": "(868.14) Injury to other intra-abdominal organs with open wound into cavity, retroperitoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\(868.14) Injury to other intra-abdominal organs with open wound into cavity, retroperitoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\" + }, + { + "displayName": "(868.19) Injury to other and multiple intra-abdominal organs, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\(868.19) Injury to other and multiple intra-abdominal organs, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs with open wound into cavity (868.1)\\" + }, + { + "displayName": "Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\" + }, + { + "displayName": "(868.00) Injury to other intra-abdominal organs without mention of open wound into cavity, unspecified intra-abdominal organ", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\(868.00) Injury to other intra-abdominal organs without mention of open wound into cavity, unspecified intra-abdominal organ\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\" + }, + { + "displayName": "(868.01) Injury to other intra-abdominal organs without mention of open wound into cavity, adrenal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\(868.01) Injury to other intra-abdominal organs without mention of open wound into cavity, adrenal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\" + }, + { + "displayName": "(868.02) Injury to other intra-abdominal organs without mention of open wound into cavity, bile duct and gallbladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\(868.02) Injury to other intra-abdominal organs without mention of open wound into cavity, bile duct and gallbladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\" + }, + { + "displayName": "(868.03) Injury to other intra-abdominal organs without mention of open wound into cavity, peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\(868.03) Injury to other intra-abdominal organs without mention of open wound into cavity, peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\" + }, + { + "displayName": "(868.04) Injury to other intra-abdominal organs without mention of open wound into cavity, retroperitoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\(868.04) Injury to other intra-abdominal organs without mention of open wound into cavity, retroperitoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\" + }, + { + "displayName": "(868.09) Injury to other and multiple intra-abdominal organs without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\(868.09) Injury to other and multiple intra-abdominal organs without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to other intra-abdominal organs (868)\\Injury to other intra-abdominal organs without mention of open wound into cavity (868.0)\\" + }, + { + "displayName": "Injury to pelvic organs (867)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\" + }, + { + "displayName": "(867.0) Injury to bladder and urethra, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\(867.0) Injury to bladder and urethra, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to pelvic organs (867)\\\\(867.0) Injury to bladder and urethra, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\" + }, + { + "displayName": "(867.1) Injury to bladder and urethra, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\(867.1) Injury to bladder and urethra, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to pelvic organs (867)\\\\(867.1) Injury to bladder and urethra, with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\" + }, + { + "displayName": "(867.2) Injury to ureter, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\(867.2) Injury to ureter, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to pelvic organs (867)\\\\(867.2) Injury to ureter, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\" + }, + { + "displayName": "(867.3) Injury to ureter, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\(867.3) Injury to ureter, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to pelvic organs (867)\\\\(867.3) Injury to ureter, with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\" + }, + { + "displayName": "(867.4) Injury to uterus, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\(867.4) Injury to uterus, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Injury to pelvic organs (867)\\\\(867.4) Injury to uterus, without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\" + }, + { + "displayName": "(867.5) Injury to uterus, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\(867.5) Injury to uterus, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\" + }, + { + "displayName": "(867.6) Injury to other specified pelvic organs, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\(867.6) Injury to other specified pelvic organs, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\" + }, + { + "displayName": "(867.7) Injury to other specified pelvic organs, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\(867.7) Injury to other specified pelvic organs, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\" + }, + { + "displayName": "(867.8) Injury to unspecified pelvic organ, without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\(867.8) Injury to unspecified pelvic organ, without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\" + }, + { + "displayName": "(867.9) Injury to unspecified pelvic organ, with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\(867.9) Injury to unspecified pelvic organ, with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to pelvic organs (867)\\" + }, + { + "displayName": "Injury to spleen (865)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\" + }, + { + "displayName": "Injury to spleen with open wound into cavity (865.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\" + }, + { + "displayName": "(865.10) Injury to spleen with open wound into cavity, unspecified injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\(865.10) Injury to spleen with open wound into cavity, unspecified injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\" + }, + { + "displayName": "(865.11) Injury to spleen with open wound into cavity, hematoma without rupture of capsule", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\(865.11) Injury to spleen with open wound into cavity, hematoma without rupture of capsule\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\" + }, + { + "displayName": "(865.12) Injury to spleen with open wound into cavity, capsular tears, without major disruption of parenchyma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\(865.12) Injury to spleen with open wound into cavity, capsular tears, without major disruption of parenchyma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\" + }, + { + "displayName": "(865.13) Injury to spleen with open wound into cavity, laceration extending into parenchyma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\(865.13) Injury to spleen with open wound into cavity, laceration extending into parenchyma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\" + }, + { + "displayName": "(865.14) Injury to spleen with open wound into cavity, massive parenchyma disruption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\(865.14) Injury to spleen with open wound into cavity, massive parenchyma disruption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\" + }, + { + "displayName": "(865.19) Other injury to spleen with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\(865.19) Other injury to spleen with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen with open wound into cavity (865.1)\\" + }, + { + "displayName": "Injury to spleen without mention of open wound into cavity (865.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\" + }, + { + "displayName": "(865.00) Injury to spleen without mention of open wound into cavity, unspecified injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\(865.00) Injury to spleen without mention of open wound into cavity, unspecified injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\" + }, + { + "displayName": "(865.01) Injury to spleen without mention of open wound into cavity, hematoma without rupture of capsule", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\(865.01) Injury to spleen without mention of open wound into cavity, hematoma without rupture of capsule\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\" + }, + { + "displayName": "(865.02) Injury to spleen without mention of open wound into cavity, capsular tears, without major disruption of parenchyma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\(865.02) Injury to spleen without mention of open wound into cavity, capsular tears, without major disruption of parenchyma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\" + }, + { + "displayName": "(865.03) Injury to spleen without mention of open wound into cavity, laceration extending into parenchyma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\(865.03) Injury to spleen without mention of open wound into cavity, laceration extending into parenchyma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\" + }, + { + "displayName": "(865.04) Injury to spleen without mention of open wound into cavity, massive parenchymal disruption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\(865.04) Injury to spleen without mention of open wound into cavity, massive parenchymal disruption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\" + }, + { + "displayName": "(865.09) Other injury into spleen without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\(865.09) Other injury into spleen without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Injury to spleen (865)\\Injury to spleen without mention of open wound into cavity (865.0)\\" + }, + { + "displayName": "Internal injury to unspecified or ill-defined organs (869)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Internal injury to unspecified or ill-defined organs (869)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\" + }, + { + "displayName": "(869.0) Internal injury to unspecified or ill-defined organs without mention of open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Internal injury to unspecified or ill-defined organs (869)\\(869.0) Internal injury to unspecified or ill-defined organs without mention of open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Internal injury to unspecified or ill-defined organs (869)\\\\(869.0) Internal injury to unspecified or ill-defined organs without mention of open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Internal injury to unspecified or ill-defined organs (869)\\" + }, + { + "displayName": "(869.1) Internal injury to unspecified or ill-defined organs with open wound into cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Internal injury to unspecified or ill-defined organs (869)\\(869.1) Internal injury to unspecified or ill-defined organs with open wound into cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Internal injury to unspecified or ill-defined organs (869)\\\\(869.1) Internal injury to unspecified or ill-defined organs with open wound into cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Internal injury to unspecified or ill-defined organs (869)\\" + }, + { + "displayName": "Traumatic pneumothorax and hemothorax (860)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\" + }, + { + "displayName": "(860.0) Traumatic pneumothorax without mention of open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\(860.0) Traumatic pneumothorax without mention of open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Traumatic pneumothorax and hemothorax (860)\\\\(860.0) Traumatic pneumothorax without mention of open wound into thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\" + }, + { + "displayName": "(860.1) Traumatic pneumothorax with open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\(860.1) Traumatic pneumothorax with open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Traumatic pneumothorax and hemothorax (860)\\\\(860.1) Traumatic pneumothorax with open wound into thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\" + }, + { + "displayName": "(860.2) Traumatic hemothorax without mention of open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\(860.2) Traumatic hemothorax without mention of open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\" + }, + { + "displayName": "(860.3) Traumatic hemothorax with open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\(860.3) Traumatic hemothorax with open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Traumatic pneumothorax and hemothorax (860)\\\\(860.3) Traumatic hemothorax with open wound into thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\" + }, + { + "displayName": "(860.4) Traumatic pneumohemothorax without mention of open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\(860.4) Traumatic pneumohemothorax without mention of open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\\\Traumatic pneumothorax and hemothorax (860)\\\\(860.4) Traumatic pneumohemothorax without mention of open wound into thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\" + }, + { + "displayName": "(860.5) Traumatic pneumohemothorax with open wound into thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\(860.5) Traumatic pneumohemothorax with open wound into thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Internal injury of thorax, abdomen, and pelvis (860-869.99)\\Traumatic pneumothorax and hemothorax (860)\\" + }, + { + "displayName": "Intracranial injury, excluding those with skull fracture (850-854.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Cerebral laceration and contusion (851)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\" + }, + { + "displayName": "Cerebellar or brain stem contusion with open intracranial wound (851.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\" + }, + { + "displayName": "(851.50) Cerebellar or brain stem contusion with open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\(851.50) Cerebellar or brain stem contusion with open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\\\(851.50) Cerebellar or brain stem contusion with open intracranial wound, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\" + }, + { + "displayName": "(851.51) Cerebellar or brain stem contusion with open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\(851.51) Cerebellar or brain stem contusion with open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\" + }, + { + "displayName": "(851.52) Cerebellar or brain stem contusion with open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\(851.52) Cerebellar or brain stem contusion with open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\\\(851.52) Cerebellar or brain stem contusion with open intracranial wound, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\" + }, + { + "displayName": "(851.53) Cerebellar or brain stem contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\(851.53) Cerebellar or brain stem contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\\\(851.53) Cerebellar or brain stem contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\" + }, + { + "displayName": "(851.54) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\(851.54) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\" + }, + { + "displayName": "(851.55) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\(851.55) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\\\(851.55) Cerebellar or brain stem contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\" + }, + { + "displayName": "(851.56) Cerebellar or brain stem contusion with open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\(851.56) Cerebellar or brain stem contusion with open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\\\(851.56) Cerebellar or brain stem contusion with open intracranial wound, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\" + }, + { + "displayName": "(851.59) Cerebellar or brain stem contusion with open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\(851.59) Cerebellar or brain stem contusion with open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion with open intracranial wound (851.5)\\" + }, + { + "displayName": "Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\" + }, + { + "displayName": "(851.40) Cerebellar or brain stem contusion without mention of open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\(851.40) Cerebellar or brain stem contusion without mention of open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\" + }, + { + "displayName": "(851.41) Cerebellar or brain stem contusion without mention of open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\(851.41) Cerebellar or brain stem contusion without mention of open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\\\(851.41) Cerebellar or brain stem contusion without mention of open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\" + }, + { + "displayName": "(851.42) Cerebellar or brain stem contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\(851.42) Cerebellar or brain stem contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\\\(851.42) Cerebellar or brain stem contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\" + }, + { + "displayName": "(851.43) Cerebellar or brain stem contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\(851.43) Cerebellar or brain stem contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\\\(851.43) Cerebellar or brain stem contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\" + }, + { + "displayName": "(851.44) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\(851.44) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\\\(851.44) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\" + }, + { + "displayName": "(851.45) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\(851.45) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\\\(851.45) Cerebellar or brain stem contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\" + }, + { + "displayName": "(851.46) Cerebellar or brain stem contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\(851.46) Cerebellar or brain stem contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\\\(851.46) Cerebellar or brain stem contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\" + }, + { + "displayName": "(851.49) Cerebellar or brain stem contusion without mention of open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\(851.49) Cerebellar or brain stem contusion without mention of open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\\\(851.49) Cerebellar or brain stem contusion without mention of open intracranial wound, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem contusion without mention of open intracranial wound (851.4)\\" + }, + { + "displayName": "Cerebellar or brain stem laceration with open intracranial wound (851.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\" + }, + { + "displayName": "(851.70) Cerebellar or brain stem laceration with open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\(851.70) Cerebellar or brain stem laceration with open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\\\(851.70) Cerebellar or brain stem laceration with open intracranial wound, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\" + }, + { + "displayName": "(851.71) Cerebellar or brain stem laceration with open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\(851.71) Cerebellar or brain stem laceration with open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\\\(851.71) Cerebellar or brain stem laceration with open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\" + }, + { + "displayName": "(851.72) Cerebellar or brain stem laceration with open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\(851.72) Cerebellar or brain stem laceration with open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\\\(851.72) Cerebellar or brain stem laceration with open intracranial wound, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\" + }, + { + "displayName": "(851.73) Cerebellar or brain stem laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\(851.73) Cerebellar or brain stem laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\" + }, + { + "displayName": "(851.74) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\(851.74) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\" + }, + { + "displayName": "(851.75) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\(851.75) Cerebellar or brain stem laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\" + }, + { + "displayName": "(851.76) Cerebellar or brain stem laceration with open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\(851.76) Cerebellar or brain stem laceration with open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\" + }, + { + "displayName": "(851.79) Cerebellar or brain stem laceration with open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\(851.79) Cerebellar or brain stem laceration with open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration with open intracranial wound (851.7)\\" + }, + { + "displayName": "Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\" + }, + { + "displayName": "(851.60) Cerebellar or brain stem laceration without mention of open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\(851.60) Cerebellar or brain stem laceration without mention of open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\" + }, + { + "displayName": "(851.61) Cerebellar or brain stem laceration without mention of open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\(851.61) Cerebellar or brain stem laceration without mention of open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\" + }, + { + "displayName": "(851.62) Cerebellar or brain stem laceration without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\(851.62) Cerebellar or brain stem laceration without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\" + }, + { + "displayName": "(851.63) Cerebellar or brain stem laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\(851.63) Cerebellar or brain stem laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\" + }, + { + "displayName": "(851.64) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\(851.64) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\\\(851.64) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\" + }, + { + "displayName": "(851.65) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\(851.65) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\\\(851.65) Cerebellar or brain stem laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\" + }, + { + "displayName": "(851.66) Cerebellar or brain stem laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\(851.66) Cerebellar or brain stem laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\\\(851.66) Cerebellar or brain stem laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\" + }, + { + "displayName": "(851.69) Cerebellar or brain stem laceration without mention of open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\(851.69) Cerebellar or brain stem laceration without mention of open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\\\(851.69) Cerebellar or brain stem laceration without mention of open intracranial wound, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cerebellar or brain stem laceration without mention of open intracranial wound (851.6)\\" + }, + { + "displayName": "Cortex (cerebral) contusion with open intracranial wound (851.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\" + }, + { + "displayName": "(851.10) Cortex (cerebral) contusion with open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\(851.10) Cortex (cerebral) contusion with open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\\\(851.10) Cortex (cerebral) contusion with open intracranial wound, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\" + }, + { + "displayName": "(851.11) Cortex (cerebral) contusion with open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\(851.11) Cortex (cerebral) contusion with open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\\\(851.11) Cortex (cerebral) contusion with open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\" + }, + { + "displayName": "(851.12) Cortex (cerebral) contusion with open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\(851.12) Cortex (cerebral) contusion with open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\" + }, + { + "displayName": "(851.13) Cortex (cerebral) contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\(851.13) Cortex (cerebral) contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\\\(851.13) Cortex (cerebral) contusion with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\" + }, + { + "displayName": "(851.14) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\(851.14) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\\\(851.14) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\" + }, + { + "displayName": "(851.15) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\(851.15) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\\\(851.15) Cortex (cerebral) contusion with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\" + }, + { + "displayName": "(851.16) Cortex (cerebral) contusion with open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\(851.16) Cortex (cerebral) contusion with open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\\\(851.16) Cortex (cerebral) contusion with open intracranial wound, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\" + }, + { + "displayName": "(851.19) Cortex (cerebral) contusion with open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\(851.19) Cortex (cerebral) contusion with open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion with open intracranial wound (851.1)\\" + }, + { + "displayName": "Cortex (cerebral) contusion without mention of open intracranial wound (851.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\" + }, + { + "displayName": "(851.00) Cortex (cerebral) contusion without mention of open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\(851.00) Cortex (cerebral) contusion without mention of open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\" + }, + { + "displayName": "(851.01) Cortex (cerebral) contusion without mention of open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\(851.01) Cortex (cerebral) contusion without mention of open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\" + }, + { + "displayName": "(851.02) Cortex (cerebral) contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\(851.02) Cortex (cerebral) contusion without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\" + }, + { + "displayName": "(851.03) Cortex (cerebral) contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\(851.03) Cortex (cerebral) contusion without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\" + }, + { + "displayName": "(851.04) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\(851.04) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\" + }, + { + "displayName": "(851.05) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\(851.05) Cortex (cerebral) contusion without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\" + }, + { + "displayName": "(851.06) Cortex (cerebral) contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\(851.06) Cortex (cerebral) contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\\\(851.06) Cortex (cerebral) contusion without mention of open intracranial wound, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\" + }, + { + "displayName": "(851.09) Cortex (cerebral) contusion without mention of open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\(851.09) Cortex (cerebral) contusion without mention of open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\\\(851.09) Cortex (cerebral) contusion without mention of open intracranial wound, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) contusion without mention of open intracranial wound (851.0)\\" + }, + { + "displayName": "Cortex (cerebral) laceration with open intracranial wound (851.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\" + }, + { + "displayName": "(851.30) Cortex (cerebral) laceration with open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\(851.30) Cortex (cerebral) laceration with open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\\\(851.30) Cortex (cerebral) laceration with open intracranial wound, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\" + }, + { + "displayName": "(851.31) Cortex (cerebral) laceration with open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\(851.31) Cortex (cerebral) laceration with open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\\\(851.31) Cortex (cerebral) laceration with open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\" + }, + { + "displayName": "(851.32) Cortex (cerebral) laceration with open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\(851.32) Cortex (cerebral) laceration with open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\" + }, + { + "displayName": "(851.33) Cortex (cerebral) laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\(851.33) Cortex (cerebral) laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\\\(851.33) Cortex (cerebral) laceration with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\" + }, + { + "displayName": "(851.34) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\(851.34) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\\\(851.34) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\" + }, + { + "displayName": "(851.35) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\(851.35) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\\\(851.35) Cortex (cerebral) laceration with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\" + }, + { + "displayName": "(851.36) Cortex (cerebral) laceration with open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\(851.36) Cortex (cerebral) laceration with open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\\\(851.36) Cortex (cerebral) laceration with open intracranial wound, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\" + }, + { + "displayName": "(851.39) Cortex (cerebral) laceration with open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\(851.39) Cortex (cerebral) laceration with open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration with open intracranial wound (851.3)\\" + }, + { + "displayName": "Cortex (cerebral) laceration without mention of open intracranial wound (851.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\" + }, + { + "displayName": "(851.20) Cortex (cerebral) laceration without mention of open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\(851.20) Cortex (cerebral) laceration without mention of open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\" + }, + { + "displayName": "(851.21) Cortex (cerebral) laceration without mention of open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\(851.21) Cortex (cerebral) laceration without mention of open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\\\(851.21) Cortex (cerebral) laceration without mention of open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\" + }, + { + "displayName": "(851.22) Cortex (cerebral) laceration without mention of open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\(851.22) Cortex (cerebral) laceration without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\\\(851.22) Cortex (cerebral) laceration without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\" + }, + { + "displayName": "(851.23) Cortex (cerebral) laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\(851.23) Cortex (cerebral) laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\\\(851.23) Cortex (cerebral) laceration without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\" + }, + { + "displayName": "(851.24) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\(851.24) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\" + }, + { + "displayName": "(851.25) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\(851.25) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\\\(851.25) Cortex (cerebral) laceration without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\" + }, + { + "displayName": "(851.26) Cortex (cerebral) laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\(851.26) Cortex (cerebral) laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\\\(851.26) Cortex (cerebral) laceration without mention of open intracranial wound, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\" + }, + { + "displayName": "(851.29) Cortex (cerebral) laceration without mention of open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\(851.29) Cortex (cerebral) laceration without mention of open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Cortex (cerebral) laceration without mention of open intracranial wound (851.2)\\" + }, + { + "displayName": "Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\" + }, + { + "displayName": "(851.90) Other and unspecified cerebral laceration and contusion, with open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\(851.90) Other and unspecified cerebral laceration and contusion, with open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\" + }, + { + "displayName": "(851.91) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\(851.91) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\" + }, + { + "displayName": "(851.92) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\(851.92) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\" + }, + { + "displayName": "(851.93) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\(851.93) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\" + }, + { + "displayName": "(851.94) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\(851.94) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\\\(851.94) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\" + }, + { + "displayName": "(851.95) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\(851.95) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\\\(851.95) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\" + }, + { + "displayName": "(851.96) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\(851.96) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\" + }, + { + "displayName": "(851.99) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\(851.99) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\\\(851.99) Other and unspecified cerebral laceration and contusion, with open intracranial wound, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, with open intracranial wound (851.9)\\" + }, + { + "displayName": "Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\" + }, + { + "displayName": "(851.80) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\(851.80) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\\\(851.80) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\" + }, + { + "displayName": "(851.81) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\(851.81) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\\\(851.81) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\" + }, + { + "displayName": "(851.82) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\(851.82) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\\\(851.82) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\" + }, + { + "displayName": "(851.83) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\(851.83) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\" + }, + { + "displayName": "(851.84) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\(851.84) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\" + }, + { + "displayName": "(851.85) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\(851.85) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\\\(851.85) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\" + }, + { + "displayName": "(851.86) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\(851.86) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Cerebral laceration and contusion (851)\\\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\\\(851.86) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\" + }, + { + "displayName": "(851.89) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\(851.89) Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Cerebral laceration and contusion (851)\\Other and unspecified cerebral laceration and contusion, without mention of open intracranial wound (851.8)\\" + }, + { + "displayName": "Concussion (850)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Concussion (850)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\" + }, + { + "displayName": "(850.0) Concussion with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\(850.0) Concussion with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\" + }, + { + "displayName": "(850.2) Concussion with moderate loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\(850.2) Concussion with moderate loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Concussion (850)\\\\(850.2) Concussion with moderate loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\" + }, + { + "displayName": "(850.3) Concussion with prolonged loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\(850.3) Concussion with prolonged loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Concussion (850)\\\\(850.3) Concussion with prolonged loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\" + }, + { + "displayName": "(850.4) Concussion with prolonged loss of consciousness, without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\(850.4) Concussion with prolonged loss of consciousness, without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Concussion (850)\\\\(850.4) Concussion with prolonged loss of consciousness, without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\" + }, + { + "displayName": "(850.5) Concussion with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\(850.5) Concussion with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Concussion (850)\\\\(850.5) Concussion with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\" + }, + { + "displayName": "(850.9) Concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\(850.9) Concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\" + }, + { + "displayName": "Concussion with brief loss of consciousness (850.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\Concussion with brief loss of consciousness (850.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Concussion (850)\\\\Concussion with brief loss of consciousness (850.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\" + }, + { + "displayName": "(850.11) Concussion, with loss of consciousness of 30 minutes or less", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\Concussion with brief loss of consciousness (850.1)\\(850.11) Concussion, with loss of consciousness of 30 minutes or less\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Concussion (850)\\\\Concussion with brief loss of consciousness (850.1)\\\\(850.11) Concussion, with loss of consciousness of 30 minutes or less\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\Concussion with brief loss of consciousness (850.1)\\" + }, + { + "displayName": "(850.12) Concussion, with loss of consciousness from 31 to 59 minutes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\Concussion with brief loss of consciousness (850.1)\\(850.12) Concussion, with loss of consciousness from 31 to 59 minutes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Concussion (850)\\\\Concussion with brief loss of consciousness (850.1)\\\\(850.12) Concussion, with loss of consciousness from 31 to 59 minutes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Concussion (850)\\Concussion with brief loss of consciousness (850.1)\\" + }, + { + "displayName": "Intracranial injury of other and unspecified nature (854)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\" + }, + { + "displayName": "Intracranial injury of other and unspecified nature with open intracranial wound (854.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\" + }, + { + "displayName": "(854.10) Intracranial injury of other and unspecified nature with open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\(854.10) Intracranial injury of other and unspecified nature with open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\\\(854.10) Intracranial injury of other and unspecified nature with open intracranial wound, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\" + }, + { + "displayName": "(854.11) Intracranial injury of other and unspecified nature with open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\(854.11) Intracranial injury of other and unspecified nature with open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\" + }, + { + "displayName": "(854.12) Intracranial injury of other and unspecified nature with open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\(854.12) Intracranial injury of other and unspecified nature with open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\\\(854.12) Intracranial injury of other and unspecified nature with open intracranial wound, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\" + }, + { + "displayName": "(854.13) Intracranial injury of other and unspecified nature with open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\(854.13) Intracranial injury of other and unspecified nature with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\\\(854.13) Intracranial injury of other and unspecified nature with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\" + }, + { + "displayName": "(854.14) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\(854.14) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\\\(854.14) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\" + }, + { + "displayName": "(854.15) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\(854.15) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\\\(854.15) Intracranial injury of other and unspecified nature with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\" + }, + { + "displayName": "(854.16) Intracranial injury of other and unspecified nature with open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\(854.16) Intracranial injury of other and unspecified nature with open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\" + }, + { + "displayName": "(854.19) Intracranial injury of other and unspecified nature with open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\(854.19) Intracranial injury of other and unspecified nature with open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\\\(854.19) Intracranial injury of other and unspecified nature with open intracranial wound, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature with open intracranial wound (854.1)\\" + }, + { + "displayName": "Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\" + }, + { + "displayName": "(854.00) Intracranial injury of other and unspecified nature without mention of open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\(854.00) Intracranial injury of other and unspecified nature without mention of open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\\\(854.00) Intracranial injury of other and unspecified nature without mention of open intracranial wound, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\" + }, + { + "displayName": "(854.01) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\(854.01) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\" + }, + { + "displayName": "(854.02) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\(854.02) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\\\(854.02) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\" + }, + { + "displayName": "(854.03) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\(854.03) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\\\(854.03) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\" + }, + { + "displayName": "(854.04) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\(854.04) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\" + }, + { + "displayName": "(854.05) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\(854.05) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\\\(854.05) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\" + }, + { + "displayName": "(854.06) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\(854.06) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\" + }, + { + "displayName": "(854.09) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\(854.09) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Intracranial injury of other and unspecified nature (854)\\\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\\\(854.09) Intracranial injury of other and unspecified nature without mention of open intracranial wound, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Intracranial injury of other and unspecified nature (854)\\Intracranial injury of other and unspecified nature without mention of open intracranial wound (854.0)\\" + }, + { + "displayName": "Other and unspecified intracranial hemorrhage following injury (853)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\" + }, + { + "displayName": "Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Other and unspecified intracranial hemorrhage following injury (853)\\\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\" + }, + { + "displayName": "(853.10) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\(853.10) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\" + }, + { + "displayName": "(853.11) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\(853.11) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Other and unspecified intracranial hemorrhage following injury (853)\\\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\\\(853.11) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\" + }, + { + "displayName": "(853.12) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\(853.12) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Other and unspecified intracranial hemorrhage following injury (853)\\\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\\\(853.12) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\" + }, + { + "displayName": "(853.13) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\(853.13) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\" + }, + { + "displayName": "(853.14) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\(853.14) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Other and unspecified intracranial hemorrhage following injury (853)\\\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\\\(853.14) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\" + }, + { + "displayName": "(853.15) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\(853.15) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Other and unspecified intracranial hemorrhage following injury (853)\\\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\\\(853.15) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\" + }, + { + "displayName": "(853.16) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\(853.16) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\" + }, + { + "displayName": "(853.19) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\(853.19) Other and unspecified intracranial hemorrhage following injury with open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury with open intracranial wound (853.1)\\" + }, + { + "displayName": "Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\" + }, + { + "displayName": "(853.00) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\(853.00) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\" + }, + { + "displayName": "(853.01) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\(853.01) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\" + }, + { + "displayName": "(853.02) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\(853.02) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\" + }, + { + "displayName": "(853.03) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\(853.03) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\" + }, + { + "displayName": "(853.04) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\(853.04) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre- existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\" + }, + { + "displayName": "(853.05) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\(853.05) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\" + }, + { + "displayName": "(853.06) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\(853.06) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\" + }, + { + "displayName": "(853.09) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\(853.09) Other and unspecified intracranial hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Other and unspecified intracranial hemorrhage following injury (853)\\Other and unspecified intracranial hemorrhage following injury, without mention of open intracranial wound (853.0)\\" + }, + { + "displayName": "Subarachnoid, subdural, and extradural hemorrhage, following injury (852)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\" + }, + { + "displayName": "Extradural hemorrhage following injury with open intracranial wound (852.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\" + }, + { + "displayName": "(852.50) Extradural hemorrhage following injury with open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\(852.50) Extradural hemorrhage following injury with open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\\\(852.50) Extradural hemorrhage following injury with open intracranial wound, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\" + }, + { + "displayName": "(852.51) Extradural hemorrhage following injury with open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\(852.51) Extradural hemorrhage following injury with open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\\\(852.51) Extradural hemorrhage following injury with open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\" + }, + { + "displayName": "(852.52) Extradural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\(852.52) Extradural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\\\(852.52) Extradural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\" + }, + { + "displayName": "(852.53) Extradural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\(852.53) Extradural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\\\(852.53) Extradural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\" + }, + { + "displayName": "(852.54) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\(852.54) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\" + }, + { + "displayName": "(852.55) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\(852.55) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\\\(852.55) Extradural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\" + }, + { + "displayName": "(852.56) Extradural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\(852.56) Extradural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\" + }, + { + "displayName": "(852.59) Extradural hemorrhage following injury with open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\(852.59) Extradural hemorrhage following injury with open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\\\(852.59) Extradural hemorrhage following injury with open intracranial wound, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury with open intracranial wound (852.5)\\" + }, + { + "displayName": "Extradural hemorrhage following injury without mention of open intracranial wound (852.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\" + }, + { + "displayName": "(852.40) Extradural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\(852.40) Extradural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\\\(852.40) Extradural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\" + }, + { + "displayName": "(852.41) Extradural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\(852.41) Extradural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\\\(852.41) Extradural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\" + }, + { + "displayName": "(852.42) Extradural hemorrhage following injury without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\(852.42) Extradural hemorrhage following injury without mention of open intracranial wound, with brief [less than 1 hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\" + }, + { + "displayName": "(852.43) Extradural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\(852.43) Extradural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\\\(852.43) Extradural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\" + }, + { + "displayName": "(852.44) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\(852.44) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\\\(852.44) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\" + }, + { + "displayName": "(852.45) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\(852.45) Extradural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\" + }, + { + "displayName": "(852.46) Extradural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\(852.46) Extradural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\\\(852.46) Extradural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\" + }, + { + "displayName": "(852.49) Extradural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\(852.49) Extradural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\\\(852.49) Extradural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Extradural hemorrhage following injury without mention of open intracranial wound (852.4)\\" + }, + { + "displayName": "Subarachnoid hemorrhage following injury with open intracranial wound (852.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\" + }, + { + "displayName": "(852.10) Subarachnoid hemorrhage following injury with open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\(852.10) Subarachnoid hemorrhage following injury with open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\\\(852.10) Subarachnoid hemorrhage following injury with open intracranial wound, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\" + }, + { + "displayName": "(852.11) Subarachnoid hemorrhage following injury with open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\(852.11) Subarachnoid hemorrhage following injury with open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\\\(852.11) Subarachnoid hemorrhage following injury with open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\" + }, + { + "displayName": "(852.12) Subarachnoid hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\(852.12) Subarachnoid hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\\\(852.12) Subarachnoid hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\" + }, + { + "displayName": "(852.13) Subarachnoid hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\(852.13) Subarachnoid hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\\\(852.13) Subarachnoid hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\" + }, + { + "displayName": "(852.14) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\(852.14) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours) loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\" + }, + { + "displayName": "(852.15) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\(852.15) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\\\(852.15) Subarachnoid hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\" + }, + { + "displayName": "(852.16) Subarachnoid hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\(852.16) Subarachnoid hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\\\(852.16) Subarachnoid hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\" + }, + { + "displayName": "(852.19) Subarachnoid hemorrhage following injury with open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\(852.19) Subarachnoid hemorrhage following injury with open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\\\(852.19) Subarachnoid hemorrhage following injury with open intracranial wound, with concussion, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury with open intracranial wound (852.1)\\" + }, + { + "displayName": "Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\" + }, + { + "displayName": "(852.00) Subarachnoid hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\(852.00) Subarachnoid hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\\\(852.00) Subarachnoid hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\" + }, + { + "displayName": "(852.01) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\(852.01) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\\\(852.01) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\" + }, + { + "displayName": "(852.02) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\(852.02) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\\\(852.02) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\" + }, + { + "displayName": "(852.03) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\(852.03) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\" + }, + { + "displayName": "(852.04) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\(852.04) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\\\(852.04) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\" + }, + { + "displayName": "(852.05) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\(852.05) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\\\(852.05) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\" + }, + { + "displayName": "(852.06) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\(852.06) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\" + }, + { + "displayName": "(852.09) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\(852.09) Subarachnoid hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subarachnoid hemorrhage following injury without mention of open intracranial wound (852.0)\\" + }, + { + "displayName": "Subdural hemorrhage following injury without mention of open intracranial wound (852.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\" + }, + { + "displayName": "(852.20) Subdural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\(852.20) Subdural hemorrhage following injury without mention of open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\" + }, + { + "displayName": "(852.21) Subdural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\(852.21) Subdural hemorrhage following injury without mention of open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\" + }, + { + "displayName": "(852.22) Subdural hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\(852.22) Subdural hemorrhage following injury without mention of open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\" + }, + { + "displayName": "(852.23) Subdural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\(852.23) Subdural hemorrhage following injury without mention of open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\" + }, + { + "displayName": "(852.24) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\(852.24) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\" + }, + { + "displayName": "(852.25) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\(852.25) Subdural hemorrhage following injury without mention of open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\" + }, + { + "displayName": "(852.26) Subdural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\(852.26) Subdural hemorrhage following injury without mention of open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\" + }, + { + "displayName": "(852.29) Subdural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\(852.29) Subdural hemorrhage following injury without mention of open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury without mention of open intracranial wound (852.2)\\" + }, + { + "displayName": "Subdural hemorrhage following injury, with open intracranial wound (852.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\" + }, + { + "displayName": "(852.30) Subdural hemorrhage following injury with open intracranial wound, unspecified state of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\(852.30) Subdural hemorrhage following injury with open intracranial wound, unspecified state of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\" + }, + { + "displayName": "(852.31) Subdural hemorrhage following injury with open intracranial wound, with no loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\(852.31) Subdural hemorrhage following injury with open intracranial wound, with no loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Intracranial injury, excluding those with skull fracture (850-854.99)\\\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\\\(852.31) Subdural hemorrhage following injury with open intracranial wound, with no loss of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\" + }, + { + "displayName": "(852.32) Subdural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\(852.32) Subdural hemorrhage following injury with open intracranial wound, with brief [less than one hour] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\" + }, + { + "displayName": "(852.33) Subdural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\(852.33) Subdural hemorrhage following injury with open intracranial wound, with moderate [1-24 hours] loss of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\" + }, + { + "displayName": "(852.34) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\(852.34) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness and return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\" + }, + { + "displayName": "(852.35) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\(852.35) Subdural hemorrhage following injury with open intracranial wound, with prolonged [more than 24 hours] loss of consciousness without return to pre-existing conscious level\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\" + }, + { + "displayName": "(852.36) Subdural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\(852.36) Subdural hemorrhage following injury with open intracranial wound, with loss of consciousness of unspecified duration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\" + }, + { + "displayName": "(852.39) Subdural hemorrhage following injury with open intracranial wound, with concussion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\(852.39) Subdural hemorrhage following injury with open intracranial wound, with concussion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Intracranial injury, excluding those with skull fracture (850-854.99)\\Subarachnoid, subdural, and extradural hemorrhage, following injury (852)\\Subdural hemorrhage following injury, with open intracranial wound (852.3)\\" + }, + { + "displayName": "Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Late effects of injuries to skin and subcutaneous tissues (906)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to skin and subcutaneous tissues (906)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\" + }, + { + "displayName": "(906.0) Late effect of open wound of head, neck, and trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\(906.0) Late effect of open wound of head, neck, and trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to skin and subcutaneous tissues (906)\\\\(906.0) Late effect of open wound of head, neck, and trunk\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\" + }, + { + "displayName": "(906.1) Late effect of open wound of extremities without mention of tendon injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\(906.1) Late effect of open wound of extremities without mention of tendon injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\" + }, + { + "displayName": "(906.2) Late effect of superficial injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\(906.2) Late effect of superficial injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to skin and subcutaneous tissues (906)\\\\(906.2) Late effect of superficial injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\" + }, + { + "displayName": "(906.3) Late effect of contusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\(906.3) Late effect of contusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to skin and subcutaneous tissues (906)\\\\(906.3) Late effect of contusion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\" + }, + { + "displayName": "(906.4) Late effect of crushing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\(906.4) Late effect of crushing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\" + }, + { + "displayName": "(906.5) Late effect of burn of eye, face, head, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\(906.5) Late effect of burn of eye, face, head, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to skin and subcutaneous tissues (906)\\\\(906.5) Late effect of burn of eye, face, head, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\" + }, + { + "displayName": "(906.6) Late effect of burn of wrist and hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\(906.6) Late effect of burn of wrist and hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\" + }, + { + "displayName": "(906.7) Late effect of burn of other extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\(906.7) Late effect of burn of other extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to skin and subcutaneous tissues (906)\\\\(906.7) Late effect of burn of other extremities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\" + }, + { + "displayName": "(906.8) Late effect of burns of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\(906.8) Late effect of burns of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to skin and subcutaneous tissues (906)\\\\(906.8) Late effect of burns of other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\" + }, + { + "displayName": "(906.9) Late effect of burn of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\(906.9) Late effect of burn of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to skin and subcutaneous tissues (906)\\" + }, + { + "displayName": "Late effects of injuries to the nervous system (907)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to the nervous system (907)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\" + }, + { + "displayName": "(907.0) Late effect of intracranial injury without mention of skull fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\(907.0) Late effect of intracranial injury without mention of skull fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\" + }, + { + "displayName": "(907.1) Late effect of injury to cranial nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\(907.1) Late effect of injury to cranial nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to the nervous system (907)\\\\(907.1) Late effect of injury to cranial nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\" + }, + { + "displayName": "(907.2) Late effect of spinal cord injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\(907.2) Late effect of spinal cord injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to the nervous system (907)\\\\(907.2) Late effect of spinal cord injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\" + }, + { + "displayName": "(907.3) Late effect of injury to nerve root(s), spinal plexus(es), and other nerves of trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\(907.3) Late effect of injury to nerve root(s), spinal plexus(es), and other nerves of trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to the nervous system (907)\\\\(907.3) Late effect of injury to nerve root(s), spinal plexus(es), and other nerves of trunk\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\" + }, + { + "displayName": "(907.4) Late effect of injury to peripheral nerve of shoulder girdle and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\(907.4) Late effect of injury to peripheral nerve of shoulder girdle and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\" + }, + { + "displayName": "(907.5) Late effect of injury to peripheral nerve of pelvic girdle and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\(907.5) Late effect of injury to peripheral nerve of pelvic girdle and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\" + }, + { + "displayName": "(907.9) Late effect of injury to other and unspecified nerve", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\(907.9) Late effect of injury to other and unspecified nerve\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of injuries to the nervous system (907)\\\\(907.9) Late effect of injury to other and unspecified nerve\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of injuries to the nervous system (907)\\" + }, + { + "displayName": "Late effects of musculoskeletal and connective tissue injuries (905)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of musculoskeletal and connective tissue injuries (905)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\" + }, + { + "displayName": "(905.0) Late effect of fracture of skull and face bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\(905.0) Late effect of fracture of skull and face bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of musculoskeletal and connective tissue injuries (905)\\\\(905.0) Late effect of fracture of skull and face bones\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\" + }, + { + "displayName": "(905.1) Late effect of fracture of spine and trunk without mention of spinal cord lesion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\(905.1) Late effect of fracture of spine and trunk without mention of spinal cord lesion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\" + }, + { + "displayName": "(905.2) Late effect of fracture of upper extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\(905.2) Late effect of fracture of upper extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\" + }, + { + "displayName": "(905.3) Late effect of fracture of neck of femur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\(905.3) Late effect of fracture of neck of femur\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\" + }, + { + "displayName": "(905.4) Late effect of fracture of lower extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\(905.4) Late effect of fracture of lower extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\" + }, + { + "displayName": "(905.5) Late effect of fracture of multiple and unspecified bones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\(905.5) Late effect of fracture of multiple and unspecified bones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\" + }, + { + "displayName": "(905.6) Late effect of dislocation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\(905.6) Late effect of dislocation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\" + }, + { + "displayName": "(905.7) Late effect of sprain and strain without mention of tendon injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\(905.7) Late effect of sprain and strain without mention of tendon injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of musculoskeletal and connective tissue injuries (905)\\\\(905.7) Late effect of sprain and strain without mention of tendon injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\" + }, + { + "displayName": "(905.8) Late effect of tendon injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\(905.8) Late effect of tendon injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of musculoskeletal and connective tissue injuries (905)\\\\(905.8) Late effect of tendon injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\" + }, + { + "displayName": "(905.9) Late effect of traumatic amputation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\(905.9) Late effect of traumatic amputation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of musculoskeletal and connective tissue injuries (905)\\\\(905.9) Late effect of traumatic amputation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of musculoskeletal and connective tissue injuries (905)\\" + }, + { + "displayName": "Late effects of other and unspecified external causes (909)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified external causes (909)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\" + }, + { + "displayName": "(909.0) Late effect of poisoning due to drug, medicinal or biological substance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\(909.0) Late effect of poisoning due to drug, medicinal or biological substance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\" + }, + { + "displayName": "(909.1) Late effect of toxic effects of nonmedical substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\(909.1) Late effect of toxic effects of nonmedical substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified external causes (909)\\\\(909.1) Late effect of toxic effects of nonmedical substances\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\" + }, + { + "displayName": "(909.2) Late effect of radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\(909.2) Late effect of radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified external causes (909)\\\\(909.2) Late effect of radiation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\" + }, + { + "displayName": "(909.3) Late effect of complications of surgical and medical care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\(909.3) Late effect of complications of surgical and medical care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified external causes (909)\\\\(909.3) Late effect of complications of surgical and medical care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\" + }, + { + "displayName": "(909.4) Late effect of certain other external causes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\(909.4) Late effect of certain other external causes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\" + }, + { + "displayName": "(909.5) Late effect of adverse effect of drug, medicinal or biological substance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\(909.5) Late effect of adverse effect of drug, medicinal or biological substance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified external causes (909)\\\\(909.5) Late effect of adverse effect of drug, medicinal or biological substance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\" + }, + { + "displayName": "(909.9) Late effect of other and unspecified external causes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\(909.9) Late effect of other and unspecified external causes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified external causes (909)\\\\(909.9) Late effect of other and unspecified external causes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified external causes (909)\\" + }, + { + "displayName": "Late effects of other and unspecified injuries (908)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\" + }, + { + "displayName": "(908.0) Late effect of internal injury to chest", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\(908.0) Late effect of internal injury to chest\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified injuries (908)\\\\(908.0) Late effect of internal injury to chest\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\" + }, + { + "displayName": "(908.1) Late effect of internal injury to intra-abdominal organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\(908.1) Late effect of internal injury to intra-abdominal organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified injuries (908)\\\\(908.1) Late effect of internal injury to intra-abdominal organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\" + }, + { + "displayName": "(908.2) Late effect of internal injury to other internal organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\(908.2) Late effect of internal injury to other internal organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified injuries (908)\\\\(908.2) Late effect of internal injury to other internal organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\" + }, + { + "displayName": "(908.3) Late effect of injury to blood vessel of head, neck, and extremities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\(908.3) Late effect of injury to blood vessel of head, neck, and extremities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\" + }, + { + "displayName": "(908.4) Late effect of injury to blood vessel of thorax, abdomen, and pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\(908.4) Late effect of injury to blood vessel of thorax, abdomen, and pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified injuries (908)\\\\(908.4) Late effect of injury to blood vessel of thorax, abdomen, and pelvis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\" + }, + { + "displayName": "(908.5) Late effect of foreign body in orifice", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\(908.5) Late effect of foreign body in orifice\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified injuries (908)\\\\(908.5) Late effect of foreign body in orifice\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\" + }, + { + "displayName": "(908.6) Late effect of certain complications of trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\(908.6) Late effect of certain complications of trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\" + }, + { + "displayName": "(908.9) Late effect of unspecified injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\(908.9) Late effect of unspecified injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\\\Late effects of other and unspecified injuries (908)\\\\(908.9) Late effect of unspecified injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Late effects of injuries, poisonings, toxic effects, and other external causes (905-909.99)\\Late effects of other and unspecified injuries (908)\\" + }, + { + "displayName": "Open wounds (870-897.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\" + }, + { + "displayName": "Open wound of back (876)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of back (876)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of back (876)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\" + }, + { + "displayName": "(876.0) Open wound of back, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of back (876)\\(876.0) Open wound of back, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of back (876)\\" + }, + { + "displayName": "(876.1) Open wound of back, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of back (876)\\(876.1) Open wound of back, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of back (876)\\" + }, + { + "displayName": "Open wound of buttock (877)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of buttock (877)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\" + }, + { + "displayName": "(877.0) Open wound of buttock, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of buttock (877)\\(877.0) Open wound of buttock, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of buttock (877)\\" + }, + { + "displayName": "(877.1) Open wound of buttock, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of buttock (877)\\(877.1) Open wound of buttock, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of buttock (877)\\" + }, + { + "displayName": "Open wound of chest (wall) (875)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of chest (wall) (875)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\" + }, + { + "displayName": "(875.0) Open wound of chest (wall), without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of chest (wall) (875)\\(875.0) Open wound of chest (wall), without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of chest (wall) (875)\\" + }, + { + "displayName": "(875.1) Open wound of chest (wall), complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of chest (wall) (875)\\(875.1) Open wound of chest (wall), complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of chest (wall) (875)\\\\(875.1) Open wound of chest (wall), complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of chest (wall) (875)\\" + }, + { + "displayName": "Open wound of ear (872)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ear (872)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\" + }, + { + "displayName": "(872.8) Open wound of ear, part unspecified, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\(872.8) Open wound of ear, part unspecified, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\" + }, + { + "displayName": "(872.9) Open wound of ear, part unspecified, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\(872.9) Open wound of ear, part unspecified, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\" + }, + { + "displayName": "Open wound of external ear, complicated (872.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, complicated (872.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\" + }, + { + "displayName": "(872.10) Open wound of external ear, unspecified site, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, complicated (872.1)\\(872.10) Open wound of external ear, unspecified site, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, complicated (872.1)\\" + }, + { + "displayName": "(872.11) Open wound of auricle, ear, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, complicated (872.1)\\(872.11) Open wound of auricle, ear, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, complicated (872.1)\\" + }, + { + "displayName": "(872.12) Open wound of auditory canal, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, complicated (872.1)\\(872.12) Open wound of auditory canal, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, complicated (872.1)\\" + }, + { + "displayName": "Open wound of external ear, without mention of complication (872.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, without mention of complication (872.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\" + }, + { + "displayName": "(872.00) Open wound of external ear, unspecified site, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, without mention of complication (872.0)\\(872.00) Open wound of external ear, unspecified site, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, without mention of complication (872.0)\\" + }, + { + "displayName": "(872.01) Open wound of auricle, ear, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, without mention of complication (872.0)\\(872.01) Open wound of auricle, ear, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ear (872)\\\\Open wound of external ear, without mention of complication (872.0)\\\\(872.01) Open wound of auricle, ear, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, without mention of complication (872.0)\\" + }, + { + "displayName": "(872.02) Open wound of auditory canal, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, without mention of complication (872.0)\\(872.02) Open wound of auditory canal, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ear (872)\\\\Open wound of external ear, without mention of complication (872.0)\\\\(872.02) Open wound of auditory canal, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of external ear, without mention of complication (872.0)\\" + }, + { + "displayName": "Open wound of other specified parts of ear, complicated (872.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, complicated (872.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\" + }, + { + "displayName": "(872.71) Open wound of ear drum, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, complicated (872.7)\\(872.71) Open wound of ear drum, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ear (872)\\\\Open wound of other specified parts of ear, complicated (872.7)\\\\(872.71) Open wound of ear drum, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, complicated (872.7)\\" + }, + { + "displayName": "(872.72) Open wound of ossicles, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, complicated (872.7)\\(872.72) Open wound of ossicles, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ear (872)\\\\Open wound of other specified parts of ear, complicated (872.7)\\\\(872.72) Open wound of ossicles, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, complicated (872.7)\\" + }, + { + "displayName": "(872.73) Open wound of eustachian tube, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, complicated (872.7)\\(872.73) Open wound of eustachian tube, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, complicated (872.7)\\" + }, + { + "displayName": "(872.74) Open wound of cochlea, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, complicated (872.7)\\(872.74) Open wound of cochlea, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ear (872)\\\\Open wound of other specified parts of ear, complicated (872.7)\\\\(872.74) Open wound of cochlea, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, complicated (872.7)\\" + }, + { + "displayName": "(872.79) Open wound of other and multiple sites of ear, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, complicated (872.7)\\(872.79) Open wound of other and multiple sites of ear, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ear (872)\\\\Open wound of other specified parts of ear, complicated (872.7)\\\\(872.79) Open wound of other and multiple sites of ear, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, complicated (872.7)\\" + }, + { + "displayName": "Open wound of other specified parts of ear, without mention of complication (872.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, without mention of complication (872.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\" + }, + { + "displayName": "(872.61) Open wound of ear drum, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, without mention of complication (872.6)\\(872.61) Open wound of ear drum, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, without mention of complication (872.6)\\" + }, + { + "displayName": "(872.62) Open wound of ossicles, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, without mention of complication (872.6)\\(872.62) Open wound of ossicles, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ear (872)\\\\Open wound of other specified parts of ear, without mention of complication (872.6)\\\\(872.62) Open wound of ossicles, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, without mention of complication (872.6)\\" + }, + { + "displayName": "(872.63) Open wound of eustachian tube, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, without mention of complication (872.6)\\(872.63) Open wound of eustachian tube, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ear (872)\\\\Open wound of other specified parts of ear, without mention of complication (872.6)\\\\(872.63) Open wound of eustachian tube, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, without mention of complication (872.6)\\" + }, + { + "displayName": "(872.64) Open wound of cochlea, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, without mention of complication (872.6)\\(872.64) Open wound of cochlea, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ear (872)\\\\Open wound of other specified parts of ear, without mention of complication (872.6)\\\\(872.64) Open wound of cochlea, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, without mention of complication (872.6)\\" + }, + { + "displayName": "(872.69) Open wound of other and multiple sites of ear, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, without mention of complication (872.6)\\(872.69) Open wound of other and multiple sites of ear, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ear (872)\\\\Open wound of other specified parts of ear, without mention of complication (872.6)\\\\(872.69) Open wound of other and multiple sites of ear, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ear (872)\\Open wound of other specified parts of ear, without mention of complication (872.6)\\" + }, + { + "displayName": "Open wound of eyeball (871)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\" + }, + { + "displayName": "(871.0) Ocular laceration without prolapse of intraocular tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\(871.0) Ocular laceration without prolapse of intraocular tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of eyeball (871)\\\\(871.0) Ocular laceration without prolapse of intraocular tissue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\" + }, + { + "displayName": "(871.1) Ocular laceration with prolapse or exposure of intraocular tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\(871.1) Ocular laceration with prolapse or exposure of intraocular tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of eyeball (871)\\\\(871.1) Ocular laceration with prolapse or exposure of intraocular tissue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\" + }, + { + "displayName": "(871.2) Rupture of eye with partial loss of intraocular tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\(871.2) Rupture of eye with partial loss of intraocular tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of eyeball (871)\\\\(871.2) Rupture of eye with partial loss of intraocular tissue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\" + }, + { + "displayName": "(871.3) Avulsion of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\(871.3) Avulsion of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of eyeball (871)\\\\(871.3) Avulsion of eye\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\" + }, + { + "displayName": "(871.4) Unspecified laceration of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\(871.4) Unspecified laceration of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\" + }, + { + "displayName": "(871.5) Penetration of eyeball with magnetic foreign body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\(871.5) Penetration of eyeball with magnetic foreign body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of eyeball (871)\\\\(871.5) Penetration of eyeball with magnetic foreign body\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\" + }, + { + "displayName": "(871.6) Penetration of eyeball with (nonmagnetic) foreign body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\(871.6) Penetration of eyeball with (nonmagnetic) foreign body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of eyeball (871)\\\\(871.6) Penetration of eyeball with (nonmagnetic) foreign body\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\" + }, + { + "displayName": "(871.7) Unspecified ocular penetration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\(871.7) Unspecified ocular penetration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\" + }, + { + "displayName": "(871.9) Unspecified open wound of eyeball", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\(871.9) Unspecified open wound of eyeball\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of eyeball (871)\\\\(871.9) Unspecified open wound of eyeball\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of eyeball (871)\\" + }, + { + "displayName": "Open wound of genital organs (external), including traumatic amputation (878)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\" + }, + { + "displayName": "(878.0) Open wound of penis, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\(878.0) Open wound of penis, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of genital organs (external), including traumatic amputation (878)\\\\(878.0) Open wound of penis, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\" + }, + { + "displayName": "(878.1) Open wound of penis, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\(878.1) Open wound of penis, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of genital organs (external), including traumatic amputation (878)\\\\(878.1) Open wound of penis, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\" + }, + { + "displayName": "(878.2) Open wound of scrotum and testes, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\(878.2) Open wound of scrotum and testes, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of genital organs (external), including traumatic amputation (878)\\\\(878.2) Open wound of scrotum and testes, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\" + }, + { + "displayName": "(878.3) Open wound of scrotum and testes, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\(878.3) Open wound of scrotum and testes, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\" + }, + { + "displayName": "(878.4) Open wound of vulva, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\(878.4) Open wound of vulva, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of genital organs (external), including traumatic amputation (878)\\\\(878.4) Open wound of vulva, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\" + }, + { + "displayName": "(878.5) Open wound of vulva, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\(878.5) Open wound of vulva, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of genital organs (external), including traumatic amputation (878)\\\\(878.5) Open wound of vulva, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\" + }, + { + "displayName": "(878.6) Open wound of vagina, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\(878.6) Open wound of vagina, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\" + }, + { + "displayName": "(878.7) Open wound of vagina, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\(878.7) Open wound of vagina, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\" + }, + { + "displayName": "(878.8) Open wound of other and unspecified parts of genital organs (external), without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\(878.8) Open wound of other and unspecified parts of genital organs (external), without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of genital organs (external), including traumatic amputation (878)\\\\(878.8) Open wound of other and unspecified parts of genital organs (external), without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\" + }, + { + "displayName": "(878.9) Open wound of other and unspecified parts of genital organs (external), complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\(878.9) Open wound of other and unspecified parts of genital organs (external), complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of genital organs (external), including traumatic amputation (878)\\" + }, + { + "displayName": "Open wound of neck (874)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of neck (874)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\" + }, + { + "displayName": "(874.2) Open wound of thyroid gland, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\(874.2) Open wound of thyroid gland, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\" + }, + { + "displayName": "(874.3) Open wound of thyroid gland, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\(874.3) Open wound of thyroid gland, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\" + }, + { + "displayName": "(874.4) Open wound of pharynx, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\(874.4) Open wound of pharynx, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\" + }, + { + "displayName": "(874.5) Open wound of pharynx, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\(874.5) Open wound of pharynx, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\" + }, + { + "displayName": "(874.8) Open wound of other and unspecified parts of neck, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\(874.8) Open wound of other and unspecified parts of neck, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\" + }, + { + "displayName": "(874.9) Open wound of other and unspecified parts of neck, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\(874.9) Open wound of other and unspecified parts of neck, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\" + }, + { + "displayName": "Open wound of larynx and trachea, complicated (874.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, complicated (874.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\" + }, + { + "displayName": "(874.10) Open wound of larynx with trachea, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, complicated (874.1)\\(874.10) Open wound of larynx with trachea, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, complicated (874.1)\\" + }, + { + "displayName": "(874.11) Open wound of larynx, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, complicated (874.1)\\(874.11) Open wound of larynx, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, complicated (874.1)\\" + }, + { + "displayName": "(874.12) Open wound of trachea, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, complicated (874.1)\\(874.12) Open wound of trachea, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, complicated (874.1)\\" + }, + { + "displayName": "Open wound of larynx and trachea, without mention of complication (874.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, without mention of complication (874.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\" + }, + { + "displayName": "(874.00) Open wound of larynx with trachea, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, without mention of complication (874.0)\\(874.00) Open wound of larynx with trachea, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of neck (874)\\\\Open wound of larynx and trachea, without mention of complication (874.0)\\\\(874.00) Open wound of larynx with trachea, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, without mention of complication (874.0)\\" + }, + { + "displayName": "(874.01) Open wound of larynx, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, without mention of complication (874.0)\\(874.01) Open wound of larynx, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, without mention of complication (874.0)\\" + }, + { + "displayName": "(874.02) Open wound of trachea, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, without mention of complication (874.0)\\(874.02) Open wound of trachea, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of neck (874)\\\\Open wound of larynx and trachea, without mention of complication (874.0)\\\\(874.02) Open wound of trachea, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of neck (874)\\Open wound of larynx and trachea, without mention of complication (874.0)\\" + }, + { + "displayName": "Open wound of ocular adnexa (870)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ocular adnexa (870)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\" + }, + { + "displayName": "(870.0) Laceration of skin of eyelid and periocular area", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\(870.0) Laceration of skin of eyelid and periocular area\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ocular adnexa (870)\\\\(870.0) Laceration of skin of eyelid and periocular area\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\" + }, + { + "displayName": "(870.1) Laceration of eyelid, full-thickness, not involving lacrimal passages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\(870.1) Laceration of eyelid, full-thickness, not involving lacrimal passages\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Open wound of ocular adnexa (870)\\\\(870.1) Laceration of eyelid, full-thickness, not involving lacrimal passages\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\" + }, + { + "displayName": "(870.2) Laceration of eyelid involving lacrimal passages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\(870.2) Laceration of eyelid involving lacrimal passages\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\" + }, + { + "displayName": "(870.3) Penetrating wound of orbit, without mention of foreign body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\(870.3) Penetrating wound of orbit, without mention of foreign body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\" + }, + { + "displayName": "(870.4) Penetrating wound of orbit with foreign body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\(870.4) Penetrating wound of orbit with foreign body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\" + }, + { + "displayName": "(870.8) Other specified open wounds of ocular adnexa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\(870.8) Other specified open wounds of ocular adnexa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\" + }, + { + "displayName": "(870.9) Unspecified open wound of ocular adnexa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\(870.9) Unspecified open wound of ocular adnexa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of ocular adnexa (870)\\" + }, + { + "displayName": "Open wound of other and unspecified sites, except limbs (879)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\" + }, + { + "displayName": "(879.0) Open wound of breast, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\(879.0) Open wound of breast, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\" + }, + { + "displayName": "(879.1) Open wound of breast, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\(879.1) Open wound of breast, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\" + }, + { + "displayName": "(879.2) Open wound of abdominal wall, anterior, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\(879.2) Open wound of abdominal wall, anterior, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\" + }, + { + "displayName": "(879.3) Open wound of abdominal wall, anterior, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\(879.3) Open wound of abdominal wall, anterior, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\" + }, + { + "displayName": "(879.4) Open wound of abdominal wall, lateral, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\(879.4) Open wound of abdominal wall, lateral, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\" + }, + { + "displayName": "(879.5) Open wound of abdominal wall, lateral, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\(879.5) Open wound of abdominal wall, lateral, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\" + }, + { + "displayName": "(879.6) Open wound of other and unspecified parts of trunk, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\(879.6) Open wound of other and unspecified parts of trunk, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\" + }, + { + "displayName": "(879.7) Open wound of other and unspecified parts of trunk, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\(879.7) Open wound of other and unspecified parts of trunk, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\" + }, + { + "displayName": "(879.8) Open wound(s) (multiple) of unspecified site(s), without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\(879.8) Open wound(s) (multiple) of unspecified site(s), without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\" + }, + { + "displayName": "(879.9) Open wound(s) (multiple) of unspecified site(s), complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\(879.9) Open wound(s) (multiple) of unspecified site(s), complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Open wound of other and unspecified sites, except limbs (879)\\" + }, + { + "displayName": "Other open wound of head (873)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\" + }, + { + "displayName": "(873.0) Open wound of scalp, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\(873.0) Open wound of scalp, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\(873.0) Open wound of scalp, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\" + }, + { + "displayName": "(873.1) Open wound of scalp, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\(873.1) Open wound of scalp, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\(873.1) Open wound of scalp, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\" + }, + { + "displayName": "(873.8) Other and unspecified open wound of head without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\(873.8) Other and unspecified open wound of head without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\" + }, + { + "displayName": "(873.9) Other and unspecified open wound of head, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\(873.9) Other and unspecified open wound of head, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\(873.9) Other and unspecified open wound of head, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\" + }, + { + "displayName": "Open wound of face, complicated (873.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of face, complicated (873.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\" + }, + { + "displayName": "(873.50) Open wound of face, unspecified site, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\(873.50) Open wound of face, unspecified site, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\" + }, + { + "displayName": "(873.51) Open wound of cheek, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\(873.51) Open wound of cheek, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\" + }, + { + "displayName": "(873.52) Open wound of forehead, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\(873.52) Open wound of forehead, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\" + }, + { + "displayName": "(873.53) Open wound of lip, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\(873.53) Open wound of lip, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\" + }, + { + "displayName": "(873.54) Open wound of jaw, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\(873.54) Open wound of jaw, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\" + }, + { + "displayName": "(873.59) Open wound of other and multiple sites of face, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\(873.59) Open wound of other and multiple sites of face, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, complicated (873.5)\\" + }, + { + "displayName": "Open wound of face, without mention of complication (873.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\" + }, + { + "displayName": "(873.40) Open wound of face, unspecified site, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\(873.40) Open wound of face, unspecified site, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\" + }, + { + "displayName": "(873.41) Open wound of cheek, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\(873.41) Open wound of cheek, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\" + }, + { + "displayName": "(873.42) Open wound of forehead, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\(873.42) Open wound of forehead, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\" + }, + { + "displayName": "(873.43) Open wound of lip, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\(873.43) Open wound of lip, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of face, without mention of complication (873.4)\\\\(873.43) Open wound of lip, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\" + }, + { + "displayName": "(873.44) Open wound of jaw, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\(873.44) Open wound of jaw, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of face, without mention of complication (873.4)\\\\(873.44) Open wound of jaw, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\" + }, + { + "displayName": "(873.49) Open wound of other and multiple sites of face, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\(873.49) Open wound of other and multiple sites of face, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of face, without mention of complication (873.4)\\" + }, + { + "displayName": "Open wound of internal structure of mouth, complicated (873.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of internal structure of mouth, complicated (873.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\" + }, + { + "displayName": "(873.70) Open wound of mouth, unspecified site, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\(873.70) Open wound of mouth, unspecified site, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\" + }, + { + "displayName": "(873.71) Open wound of buccal mucosa, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\(873.71) Open wound of buccal mucosa, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of internal structure of mouth, complicated (873.7)\\\\(873.71) Open wound of buccal mucosa, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\" + }, + { + "displayName": "(873.72) Open wound of gum (alveolar process), complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\(873.72) Open wound of gum (alveolar process), complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\" + }, + { + "displayName": "(873.73) Open wound of tooth (broken) (fractured) (due to trauma), complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\(873.73) Open wound of tooth (broken) (fractured) (due to trauma), complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of internal structure of mouth, complicated (873.7)\\\\(873.73) Open wound of tooth (broken) (fractured) (due to trauma), complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\" + }, + { + "displayName": "(873.74) Open wound of tongue and floor of mouth, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\(873.74) Open wound of tongue and floor of mouth, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\" + }, + { + "displayName": "(873.75) Open wound of palate, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\(873.75) Open wound of palate, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of internal structure of mouth, complicated (873.7)\\\\(873.75) Open wound of palate, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\" + }, + { + "displayName": "(873.79) Open wound of other and multiple sites of mouth, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\(873.79) Open wound of other and multiple sites of mouth, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of internal structure of mouth, complicated (873.7)\\\\(873.79) Open wound of other and multiple sites of mouth, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structure of mouth, complicated (873.7)\\" + }, + { + "displayName": "Open wound of internal structures of mouth, without mention of complication (873.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of internal structures of mouth, without mention of complication (873.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\" + }, + { + "displayName": "(873.60) Open wound of mouth, unspecified site, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\(873.60) Open wound of mouth, unspecified site, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\" + }, + { + "displayName": "(873.61) Open wound of buccal mucosa, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\(873.61) Open wound of buccal mucosa, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of internal structures of mouth, without mention of complication (873.6)\\\\(873.61) Open wound of buccal mucosa, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\" + }, + { + "displayName": "(873.62) Open wound of gum (alveolar process), without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\(873.62) Open wound of gum (alveolar process), without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of internal structures of mouth, without mention of complication (873.6)\\\\(873.62) Open wound of gum (alveolar process), without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\" + }, + { + "displayName": "(873.63) Open wound of tooth (broken) (fractured) (due to trauma), without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\(873.63) Open wound of tooth (broken) (fractured) (due to trauma), without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of internal structures of mouth, without mention of complication (873.6)\\\\(873.63) Open wound of tooth (broken) (fractured) (due to trauma), without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\" + }, + { + "displayName": "(873.64) Open wound of tongue and floor of mouth, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\(873.64) Open wound of tongue and floor of mouth, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\\\Other open wound of head (873)\\\\Open wound of internal structures of mouth, without mention of complication (873.6)\\\\(873.64) Open wound of tongue and floor of mouth, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\" + }, + { + "displayName": "(873.65) Open wound of palate, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\(873.65) Open wound of palate, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\" + }, + { + "displayName": "(873.69) Open wound of other and multiple sites of mouth, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\(873.69) Open wound of other and multiple sites of mouth, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of internal structures of mouth, without mention of complication (873.6)\\" + }, + { + "displayName": "Open wound of nose, complicated (873.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, complicated (873.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\" + }, + { + "displayName": "(873.30) Open wound of nose, unspecified site, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, complicated (873.3)\\(873.30) Open wound of nose, unspecified site, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, complicated (873.3)\\" + }, + { + "displayName": "(873.31) Open wound of nasal septum, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, complicated (873.3)\\(873.31) Open wound of nasal septum, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, complicated (873.3)\\" + }, + { + "displayName": "(873.32) Open wound of nasal cavity, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, complicated (873.3)\\(873.32) Open wound of nasal cavity, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, complicated (873.3)\\" + }, + { + "displayName": "(873.33) Open wound of nasal sinus, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, complicated (873.3)\\(873.33) Open wound of nasal sinus, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, complicated (873.3)\\" + }, + { + "displayName": "(873.39) Open wound of multiple sites of nose, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, complicated (873.3)\\(873.39) Open wound of multiple sites of nose, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, complicated (873.3)\\" + }, + { + "displayName": "Open wound of nose, without mention of complication (873.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, without mention of complication (873.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\" + }, + { + "displayName": "(873.20) Open wound of nose, unspecified site, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, without mention of complication (873.2)\\(873.20) Open wound of nose, unspecified site, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, without mention of complication (873.2)\\" + }, + { + "displayName": "(873.21) Open wound of nasal septum, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, without mention of complication (873.2)\\(873.21) Open wound of nasal septum, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, without mention of complication (873.2)\\" + }, + { + "displayName": "(873.22) Open wound of nasal cavity, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, without mention of complication (873.2)\\(873.22) Open wound of nasal cavity, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, without mention of complication (873.2)\\" + }, + { + "displayName": "(873.23) Open wound of nasal sinus, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, without mention of complication (873.2)\\(873.23) Open wound of nasal sinus, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, without mention of complication (873.2)\\" + }, + { + "displayName": "(873.29) Open wound of multiple sites of nose, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, without mention of complication (873.2)\\(873.29) Open wound of multiple sites of nose, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF HEAD, NECK, AND TRUNK (870-879.99)\\Other open wound of head (873)\\Open wound of nose, without mention of complication (873.2)\\" + }, + { + "displayName": "OPEN WOUND OF LOWER LIMB (890-897.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\" + }, + { + "displayName": "Multiple and unspecified open wound of lower limb (894)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Multiple and unspecified open wound of lower limb (894)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\" + }, + { + "displayName": "(894.0) Multiple and unspecified open wound of lower limb, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Multiple and unspecified open wound of lower limb (894)\\(894.0) Multiple and unspecified open wound of lower limb, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Multiple and unspecified open wound of lower limb (894)\\" + }, + { + "displayName": "(894.1) Multiple and unspecified open wound of lower limb, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Multiple and unspecified open wound of lower limb (894)\\(894.1) Multiple and unspecified open wound of lower limb, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Multiple and unspecified open wound of lower limb (894)\\" + }, + { + "displayName": "(894.2) Multiple and unspecified open wound of lower limb, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Multiple and unspecified open wound of lower limb (894)\\(894.2) Multiple and unspecified open wound of lower limb, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Multiple and unspecified open wound of lower limb (894)\\" + }, + { + "displayName": "Open wound of foot except toe(s) alone (892)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of foot except toe(s) alone (892)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF LOWER LIMB (890-897.99)\\\\Open wound of foot except toe(s) alone (892)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\" + }, + { + "displayName": "(892.0) Open wound of foot except toe(s) alone, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of foot except toe(s) alone (892)\\(892.0) Open wound of foot except toe(s) alone, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF LOWER LIMB (890-897.99)\\\\Open wound of foot except toe(s) alone (892)\\\\(892.0) Open wound of foot except toe(s) alone, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of foot except toe(s) alone (892)\\" + }, + { + "displayName": "(892.1) Open wound of foot except toe(s) alone, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of foot except toe(s) alone (892)\\(892.1) Open wound of foot except toe(s) alone, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF LOWER LIMB (890-897.99)\\\\Open wound of foot except toe(s) alone (892)\\\\(892.1) Open wound of foot except toe(s) alone, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of foot except toe(s) alone (892)\\" + }, + { + "displayName": "(892.2) Open wound of foot except toe(s) alone, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of foot except toe(s) alone (892)\\(892.2) Open wound of foot except toe(s) alone, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF LOWER LIMB (890-897.99)\\\\Open wound of foot except toe(s) alone (892)\\\\(892.2) Open wound of foot except toe(s) alone, with tendon involvement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of foot except toe(s) alone (892)\\" + }, + { + "displayName": "Open wound of hip and thigh (890)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of hip and thigh (890)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF LOWER LIMB (890-897.99)\\\\Open wound of hip and thigh (890)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\" + }, + { + "displayName": "(890.0) Open wound of hip and thigh, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of hip and thigh (890)\\(890.0) Open wound of hip and thigh, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of hip and thigh (890)\\" + }, + { + "displayName": "(890.1) Open wound of hip and thigh, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of hip and thigh (890)\\(890.1) Open wound of hip and thigh, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of hip and thigh (890)\\" + }, + { + "displayName": "(890.2) Open wound of hip and thigh, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of hip and thigh (890)\\(890.2) Open wound of hip and thigh, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of hip and thigh (890)\\" + }, + { + "displayName": "Open wound of knee, leg [except thigh], and ankle (891)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of knee, leg [except thigh], and ankle (891)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\" + }, + { + "displayName": "(891.0) Open wound of knee, leg [except thigh], and ankle, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of knee, leg [except thigh], and ankle (891)\\(891.0) Open wound of knee, leg [except thigh], and ankle, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of knee, leg [except thigh], and ankle (891)\\" + }, + { + "displayName": "(891.1) Open wound of knee, leg [except thigh], and ankle, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of knee, leg [except thigh], and ankle (891)\\(891.1) Open wound of knee, leg [except thigh], and ankle, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of knee, leg [except thigh], and ankle (891)\\" + }, + { + "displayName": "(891.2) Open wound of knee, leg [except thigh], and ankle, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of knee, leg [except thigh], and ankle (891)\\(891.2) Open wound of knee, leg [except thigh], and ankle, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of knee, leg [except thigh], and ankle (891)\\" + }, + { + "displayName": "Open wound of toe(s) (893)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of toe(s) (893)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\" + }, + { + "displayName": "(893.0) Open wound of toe(s), without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of toe(s) (893)\\(893.0) Open wound of toe(s), without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of toe(s) (893)\\" + }, + { + "displayName": "(893.1) Open wound of toe(s), complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of toe(s) (893)\\(893.1) Open wound of toe(s), complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of toe(s) (893)\\" + }, + { + "displayName": "(893.2) Open wound of toe(s), with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of toe(s) (893)\\(893.2) Open wound of toe(s), with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Open wound of toe(s) (893)\\" + }, + { + "displayName": "Traumatic amputation of foot (complete) (partial) (896)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of foot (complete) (partial) (896)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\" + }, + { + "displayName": "(896.0) Traumatic amputation of foot (complete) (partial), unilateral, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of foot (complete) (partial) (896)\\(896.0) Traumatic amputation of foot (complete) (partial), unilateral, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of foot (complete) (partial) (896)\\" + }, + { + "displayName": "(896.1) Traumatic amputation of foot (complete) (partial), unilateral, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of foot (complete) (partial) (896)\\(896.1) Traumatic amputation of foot (complete) (partial), unilateral, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of foot (complete) (partial) (896)\\" + }, + { + "displayName": "(896.2) Traumatic amputation of foot (complete) (partial), bilateral, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of foot (complete) (partial) (896)\\(896.2) Traumatic amputation of foot (complete) (partial), bilateral, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of foot (complete) (partial) (896)\\" + }, + { + "displayName": "(896.3) Traumatic amputation of foot (complete) (partial), bilateral, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of foot (complete) (partial) (896)\\(896.3) Traumatic amputation of foot (complete) (partial), bilateral, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of foot (complete) (partial) (896)\\" + }, + { + "displayName": "Traumatic amputation of leg(s) (complete) (partial) (897)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\" + }, + { + "displayName": "(897.0) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\(897.0) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\" + }, + { + "displayName": "(897.1) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\(897.1) Traumatic amputation of leg(s) (complete) (partial), unilateral, below knee, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\" + }, + { + "displayName": "(897.2) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\(897.2) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\" + }, + { + "displayName": "(897.3) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\(897.3) Traumatic amputation of leg(s) (complete) (partial), unilateral, at or above knee, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\" + }, + { + "displayName": "(897.4) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\(897.4) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\" + }, + { + "displayName": "(897.5) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\(897.5) Traumatic amputation of leg(s) (complete) (partial), unilateral, level not specified, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\" + }, + { + "displayName": "(897.6) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level]), without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\(897.6) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level]), without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\" + }, + { + "displayName": "(897.7) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level], complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\(897.7) Traumatic amputation of leg(s) (complete) (partial), bilateral [any level], complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of leg(s) (complete) (partial) (897)\\" + }, + { + "displayName": "Traumatic amputation of toe(s) (complete) (partial) (895)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of toe(s) (complete) (partial) (895)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\" + }, + { + "displayName": "(895.0) Traumatic amputation of toe(s) (complete) (partial), without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of toe(s) (complete) (partial) (895)\\(895.0) Traumatic amputation of toe(s) (complete) (partial), without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of toe(s) (complete) (partial) (895)\\" + }, + { + "displayName": "(895.1) Traumatic amputation of toe(s) (complete) (partial), complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of toe(s) (complete) (partial) (895)\\(895.1) Traumatic amputation of toe(s) (complete) (partial), complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF LOWER LIMB (890-897.99)\\Traumatic amputation of toe(s) (complete) (partial) (895)\\" + }, + { + "displayName": "OPEN WOUND OF UPPER LIMB (880-887.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\" + }, + { + "displayName": "Multiple and unspecified open wound of upper limb (884)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Multiple and unspecified open wound of upper limb (884)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\" + }, + { + "displayName": "(884.0) Multiple and unspecified open wound of upper limb, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Multiple and unspecified open wound of upper limb (884)\\(884.0) Multiple and unspecified open wound of upper limb, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Multiple and unspecified open wound of upper limb (884)\\" + }, + { + "displayName": "(884.1) Multiple and unspecified open wound of upper limb, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Multiple and unspecified open wound of upper limb (884)\\(884.1) Multiple and unspecified open wound of upper limb, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Multiple and unspecified open wound of upper limb (884)\\" + }, + { + "displayName": "(884.2) Multiple and unspecified open wound of upper limb, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Multiple and unspecified open wound of upper limb (884)\\(884.2) Multiple and unspecified open wound of upper limb, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Multiple and unspecified open wound of upper limb (884)\\" + }, + { + "displayName": "Open wound of elbow, forearm, and wrist (881)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\" + }, + { + "displayName": "Open wound of elbow, forearm, and wrist, complicated (881.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, complicated (881.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\" + }, + { + "displayName": "(881.10) Open wound of forearm, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, complicated (881.1)\\(881.10) Open wound of forearm, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, complicated (881.1)\\" + }, + { + "displayName": "(881.11) Open wound of elbow, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, complicated (881.1)\\(881.11) Open wound of elbow, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, complicated (881.1)\\" + }, + { + "displayName": "(881.12) Open wound of wrist, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, complicated (881.1)\\(881.12) Open wound of wrist, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, complicated (881.1)\\" + }, + { + "displayName": "Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of elbow, forearm, and wrist (881)\\\\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\" + }, + { + "displayName": "(881.20) Open wound of forearm, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\\(881.20) Open wound of forearm, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of elbow, forearm, and wrist (881)\\\\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\\\\(881.20) Open wound of forearm, with tendon involvement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\\" + }, + { + "displayName": "(881.21) Open wound of elbow, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\\(881.21) Open wound of elbow, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\\" + }, + { + "displayName": "(881.22) Open wound of wrist, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\\(881.22) Open wound of wrist, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of elbow, forearm, and wrist (881)\\\\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\\\\(881.22) Open wound of wrist, with tendon involvement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, with tendon involvement (881.2)\\" + }, + { + "displayName": "Open wound of elbow, forearm, and wrist, without mention of complication (881.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of elbow, forearm, and wrist (881)\\\\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\" + }, + { + "displayName": "(881.00) Open wound of forearm, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\\(881.00) Open wound of forearm, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\\" + }, + { + "displayName": "(881.01) Open wound of elbow, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\\(881.01) Open wound of elbow, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of elbow, forearm, and wrist (881)\\\\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\\\\(881.01) Open wound of elbow, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\\" + }, + { + "displayName": "(881.02) Open wound of wrist, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\\(881.02) Open wound of wrist, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of elbow, forearm, and wrist (881)\\\\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\\\\(881.02) Open wound of wrist, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of elbow, forearm, and wrist (881)\\Open wound of elbow, forearm, and wrist, without mention of complication (881.0)\\" + }, + { + "displayName": "Open wound of finger(s) (883)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of finger(s) (883)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of finger(s) (883)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\" + }, + { + "displayName": "(883.0) Open wound of finger(s), without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of finger(s) (883)\\(883.0) Open wound of finger(s), without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of finger(s) (883)\\" + }, + { + "displayName": "(883.1) Open wound of finger(s), complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of finger(s) (883)\\(883.1) Open wound of finger(s), complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of finger(s) (883)\\\\(883.1) Open wound of finger(s), complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of finger(s) (883)\\" + }, + { + "displayName": "(883.2) Open wound of finger(s), with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of finger(s) (883)\\(883.2) Open wound of finger(s), with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of finger(s) (883)\\\\(883.2) Open wound of finger(s), with tendon involvement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of finger(s) (883)\\" + }, + { + "displayName": "Open wound of hand except finger(s) alone (882)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of hand except finger(s) alone (882)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\" + }, + { + "displayName": "(882.0) Open wound of hand except finger(s) alone, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of hand except finger(s) alone (882)\\(882.0) Open wound of hand except finger(s) alone, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of hand except finger(s) alone (882)\\\\(882.0) Open wound of hand except finger(s) alone, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of hand except finger(s) alone (882)\\" + }, + { + "displayName": "(882.1) Open wound of hand except finger(s) alone, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of hand except finger(s) alone (882)\\(882.1) Open wound of hand except finger(s) alone, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of hand except finger(s) alone (882)\\\\(882.1) Open wound of hand except finger(s) alone, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of hand except finger(s) alone (882)\\" + }, + { + "displayName": "(882.2) Open wound of hand except finger(s) alone, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of hand except finger(s) alone (882)\\(882.2) Open wound of hand except finger(s) alone, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of hand except finger(s) alone (882)\\" + }, + { + "displayName": "Open wound of shoulder and upper arm (880)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of shoulder and upper arm (880)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\" + }, + { + "displayName": "Open wound of shoulder and upper arm, complicated (880.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, complicated (880.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of shoulder and upper arm (880)\\\\Open wound of shoulder and upper arm, complicated (880.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\" + }, + { + "displayName": "(880.10) Open wound of shoulder region, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, complicated (880.1)\\(880.10) Open wound of shoulder region, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, complicated (880.1)\\" + }, + { + "displayName": "(880.11) Open wound of scapular region, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, complicated (880.1)\\(880.11) Open wound of scapular region, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of shoulder and upper arm (880)\\\\Open wound of shoulder and upper arm, complicated (880.1)\\\\(880.11) Open wound of scapular region, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, complicated (880.1)\\" + }, + { + "displayName": "(880.12) Open wound of axillary region, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, complicated (880.1)\\(880.12) Open wound of axillary region, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of shoulder and upper arm (880)\\\\Open wound of shoulder and upper arm, complicated (880.1)\\\\(880.12) Open wound of axillary region, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, complicated (880.1)\\" + }, + { + "displayName": "(880.13) Open wound of upper arm, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, complicated (880.1)\\(880.13) Open wound of upper arm, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, complicated (880.1)\\" + }, + { + "displayName": "(880.19) Open wound of multiple sites of shoulder and upper arm, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, complicated (880.1)\\(880.19) Open wound of multiple sites of shoulder and upper arm, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, complicated (880.1)\\" + }, + { + "displayName": "Open wound of shoulder and upper arm, with tendon involvement (880.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, with tendon involvement (880.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\" + }, + { + "displayName": "(880.20) Open wound of shoulder region, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, with tendon involvement (880.2)\\(880.20) Open wound of shoulder region, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, with tendon involvement (880.2)\\" + }, + { + "displayName": "(880.21) Open wound of scapular region, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, with tendon involvement (880.2)\\(880.21) Open wound of scapular region, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, with tendon involvement (880.2)\\" + }, + { + "displayName": "(880.22) Open wound of axillary region, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, with tendon involvement (880.2)\\(880.22) Open wound of axillary region, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, with tendon involvement (880.2)\\" + }, + { + "displayName": "(880.23) Open wound of upper arm, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, with tendon involvement (880.2)\\(880.23) Open wound of upper arm, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, with tendon involvement (880.2)\\" + }, + { + "displayName": "(880.29) Open wound of multiple sites of shoulder and upper arm, with tendon involvement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, with tendon involvement (880.2)\\(880.29) Open wound of multiple sites of shoulder and upper arm, with tendon involvement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, with tendon involvement (880.2)\\" + }, + { + "displayName": "Open wound of shoulder and upper arm, without mention of complication (880.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of shoulder and upper arm (880)\\\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\" + }, + { + "displayName": "(880.00) Open wound of shoulder region, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\(880.00) Open wound of shoulder region, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of shoulder and upper arm (880)\\\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\\\(880.00) Open wound of shoulder region, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\" + }, + { + "displayName": "(880.01) Open wound of scapular region, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\(880.01) Open wound of scapular region, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of shoulder and upper arm (880)\\\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\\\(880.01) Open wound of scapular region, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\" + }, + { + "displayName": "(880.02) Open wound of axillary region, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\(880.02) Open wound of axillary region, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\" + }, + { + "displayName": "(880.03) Open wound of upper arm, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\(880.03) Open wound of upper arm, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of shoulder and upper arm (880)\\\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\\\(880.03) Open wound of upper arm, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\" + }, + { + "displayName": "(880.09) Open wound of multiple sites of shoulder and upper arm, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\(880.09) Open wound of multiple sites of shoulder and upper arm, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Open wound of shoulder and upper arm (880)\\\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\\\(880.09) Open wound of multiple sites of shoulder and upper arm, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Open wound of shoulder and upper arm (880)\\Open wound of shoulder and upper arm, without mention of complication (880.0)\\" + }, + { + "displayName": "Traumatic amputation of arm and hand (complete) (partial) (887)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Traumatic amputation of arm and hand (complete) (partial) (887)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\" + }, + { + "displayName": "(887.0) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\(887.0) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\" + }, + { + "displayName": "(887.1) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\(887.1) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Traumatic amputation of arm and hand (complete) (partial) (887)\\\\(887.1) Traumatic amputation of arm and hand (complete) (partial), unilateral, below elbow, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\" + }, + { + "displayName": "(887.2) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\(887.2) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Traumatic amputation of arm and hand (complete) (partial) (887)\\\\(887.2) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\" + }, + { + "displayName": "(887.3) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\(887.3) Traumatic amputation of arm and hand (complete) (partial), unilateral, at or above elbow, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\" + }, + { + "displayName": "(887.4) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\(887.4) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Traumatic amputation of arm and hand (complete) (partial) (887)\\\\(887.4) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\" + }, + { + "displayName": "(887.5) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\(887.5) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Traumatic amputation of arm and hand (complete) (partial) (887)\\\\(887.5) Traumatic amputation of arm and hand (complete) (partial), unilateral, level not specified, complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\" + }, + { + "displayName": "(887.6) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\(887.6) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\" + }, + { + "displayName": "(887.7) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\(887.7) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Traumatic amputation of arm and hand (complete) (partial) (887)\\\\(887.7) Traumatic amputation of arm and hand (complete) (partial), bilateral [any level], complicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of arm and hand (complete) (partial) (887)\\" + }, + { + "displayName": "Traumatic amputation of other finger(s) (complete) (partial) (886)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of other finger(s) (complete) (partial) (886)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Traumatic amputation of other finger(s) (complete) (partial) (886)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\" + }, + { + "displayName": "(886.0) Traumatic amputation of other finger(s) (complete) (partial), without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of other finger(s) (complete) (partial) (886)\\(886.0) Traumatic amputation of other finger(s) (complete) (partial), without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Open wounds (870-897.99)\\\\OPEN WOUND OF UPPER LIMB (880-887.99)\\\\Traumatic amputation of other finger(s) (complete) (partial) (886)\\\\(886.0) Traumatic amputation of other finger(s) (complete) (partial), without mention of complication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of other finger(s) (complete) (partial) (886)\\" + }, + { + "displayName": "(886.1) Traumatic amputation of other finger(s) (complete) (partial), complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of other finger(s) (complete) (partial) (886)\\(886.1) Traumatic amputation of other finger(s) (complete) (partial), complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of other finger(s) (complete) (partial) (886)\\" + }, + { + "displayName": "Traumatic amputation of thumb (complete) (partial) (885)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of thumb (complete) (partial) (885)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\" + }, + { + "displayName": "(885.0) Traumatic amputation of thumb (complete)(partial), without mention of complication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of thumb (complete) (partial) (885)\\(885.0) Traumatic amputation of thumb (complete)(partial), without mention of complication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of thumb (complete) (partial) (885)\\" + }, + { + "displayName": "(885.1) Traumatic amputation of thumb (complete)(partial), complicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of thumb (complete) (partial) (885)\\(885.1) Traumatic amputation of thumb (complete)(partial), complicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Open wounds (870-897.99)\\OPEN WOUND OF UPPER LIMB (880-887.99)\\Traumatic amputation of thumb (complete) (partial) (885)\\" + }, + { + "displayName": "Other and unspecified effects of external causes (990-995.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "(990) Effects of radiation, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\(990) Effects of radiation, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\" + }, + { + "displayName": "Certain adverse effects not elsewhere classified (995)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\" + }, + { + "displayName": "(995.0) Other anaphylactic reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\(995.0) Other anaphylactic reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\" + }, + { + "displayName": "(995.1) Angioneurotic edema, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\(995.1) Angioneurotic edema, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\" + }, + { + "displayName": "(995.3) Allergy, unspecified, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\(995.3) Allergy, unspecified, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\" + }, + { + "displayName": "(995.4) Shock due to anesthesia, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\(995.4) Shock due to anesthesia, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\" + }, + { + "displayName": "(995.7) Other adverse food reactions, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\(995.7) Other adverse food reactions, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\" + }, + { + "displayName": "Anaphylactic reaction due to food (995.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\" + }, + { + "displayName": "(995.60) Anaphylactic reaction due to unspecified food", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\(995.60) Anaphylactic reaction due to unspecified food\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\" + }, + { + "displayName": "(995.61) Anaphylactic reaction due to peanuts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\(995.61) Anaphylactic reaction due to peanuts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\" + }, + { + "displayName": "(995.62) Anaphylactic reaction due to crustaceans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\(995.62) Anaphylactic reaction due to crustaceans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\" + }, + { + "displayName": "(995.63) Anaphylactic reaction due to fruits and vegetables", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\(995.63) Anaphylactic reaction due to fruits and vegetables\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\" + }, + { + "displayName": "(995.64) Anaphylactic reaction due to tree nuts and seeds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\(995.64) Anaphylactic reaction due to tree nuts and seeds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\" + }, + { + "displayName": "(995.65) Anaphylactic reaction due to fish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\(995.65) Anaphylactic reaction due to fish\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\" + }, + { + "displayName": "(995.66) Anaphylactic reaction due to food additives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\(995.66) Anaphylactic reaction due to food additives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\" + }, + { + "displayName": "(995.67) Anaphylactic reaction due to milk products", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\(995.67) Anaphylactic reaction due to milk products\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\" + }, + { + "displayName": "(995.68) Anaphylactic reaction due to eggs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\(995.68) Anaphylactic reaction due to eggs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\" + }, + { + "displayName": "(995.69) Anaphylactic reaction due to other specified food", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\(995.69) Anaphylactic reaction due to other specified food\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Anaphylactic reaction due to food (995.6)\\" + }, + { + "displayName": "Child maltreatment syndrome (995.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\" + }, + { + "displayName": "(995.50) Child abuse, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\(995.50) Child abuse, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Child maltreatment syndrome (995.5)\\\\(995.50) Child abuse, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\" + }, + { + "displayName": "(995.51) Child emotional/psychological abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\(995.51) Child emotional/psychological abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Child maltreatment syndrome (995.5)\\\\(995.51) Child emotional/psychological abuse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\" + }, + { + "displayName": "(995.52) Child neglect (nutritional)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\(995.52) Child neglect (nutritional)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Child maltreatment syndrome (995.5)\\\\(995.52) Child neglect (nutritional)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\" + }, + { + "displayName": "(995.53) Child sexual abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\(995.53) Child sexual abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Child maltreatment syndrome (995.5)\\\\(995.53) Child sexual abuse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\" + }, + { + "displayName": "(995.54) Child physical abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\(995.54) Child physical abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Child maltreatment syndrome (995.5)\\\\(995.54) Child physical abuse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\" + }, + { + "displayName": "(995.55) Shaken baby syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\(995.55) Shaken baby syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Child maltreatment syndrome (995.5)\\\\(995.55) Shaken baby syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\" + }, + { + "displayName": "(995.59) Other child abuse and neglect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\(995.59) Other child abuse and neglect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Child maltreatment syndrome (995.5)\\" + }, + { + "displayName": "Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\" + }, + { + "displayName": "(995.20) Unspecified adverse effect of unspecified drug, medicinal and biological substance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\(995.20) Unspecified adverse effect of unspecified drug, medicinal and biological substance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\" + }, + { + "displayName": "(995.21) Arthus phenomenon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\(995.21) Arthus phenomenon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\" + }, + { + "displayName": "(995.22) Unspecified adverse effect of anesthesia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\(995.22) Unspecified adverse effect of anesthesia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\" + }, + { + "displayName": "(995.23) Unspecified adverse effect of insulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\(995.23) Unspecified adverse effect of insulin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\" + }, + { + "displayName": "(995.24) Failed moderate sedation during procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\(995.24) Failed moderate sedation during procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\" + }, + { + "displayName": "(995.27) Other drug allergy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\(995.27) Other drug allergy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\" + }, + { + "displayName": "(995.29) Unspecified adverse effect of other drug, medicinal and biological substance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\(995.29) Unspecified adverse effect of other drug, medicinal and biological substance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other and unspecified adverse effect of drug, medicinal and biological substance (995.2)\\" + }, + { + "displayName": "Other specified adverse effects, not elsewhere classified (995.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\" + }, + { + "displayName": "(995.80) Adult maltreatment, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\(995.80) Adult maltreatment, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\" + }, + { + "displayName": "(995.81) Adult physical abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\(995.81) Adult physical abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Other specified adverse effects, not elsewhere classified (995.8)\\\\(995.81) Adult physical abuse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\" + }, + { + "displayName": "(995.82) Adult emotional/psychological abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\(995.82) Adult emotional/psychological abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Other specified adverse effects, not elsewhere classified (995.8)\\\\(995.82) Adult emotional/psychological abuse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\" + }, + { + "displayName": "(995.83) Adult sexual abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\(995.83) Adult sexual abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Other specified adverse effects, not elsewhere classified (995.8)\\\\(995.83) Adult sexual abuse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\" + }, + { + "displayName": "(995.84) Adult neglect (nutritional)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\(995.84) Adult neglect (nutritional)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Other specified adverse effects, not elsewhere classified (995.8)\\\\(995.84) Adult neglect (nutritional)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\" + }, + { + "displayName": "(995.85) Other adult abuse and neglect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\(995.85) Other adult abuse and neglect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Other specified adverse effects, not elsewhere classified (995.8)\\\\(995.85) Other adult abuse and neglect\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\" + }, + { + "displayName": "(995.86) Malignant hyperthermia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\(995.86) Malignant hyperthermia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Other specified adverse effects, not elsewhere classified (995.8)\\\\(995.86) Malignant hyperthermia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\" + }, + { + "displayName": "(995.89) Other specified adverse effects, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\(995.89) Other specified adverse effects, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Other specified adverse effects, not elsewhere classified (995.8)\\\\(995.89) Other specified adverse effects, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Other specified adverse effects, not elsewhere classified (995.8)\\" + }, + { + "displayName": "Systemic inflammatory response syndrome (SIRS) (995.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Systemic inflammatory response syndrome (SIRS) (995.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Certain adverse effects not elsewhere classified (995)\\\\Systemic inflammatory response syndrome (SIRS) (995.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\" + }, + { + "displayName": "(995.90) Systemic inflammatory response syndrome, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Systemic inflammatory response syndrome (SIRS) (995.9)\\(995.90) Systemic inflammatory response syndrome, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Systemic inflammatory response syndrome (SIRS) (995.9)\\" + }, + { + "displayName": "(995.91) Sepsis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Systemic inflammatory response syndrome (SIRS) (995.9)\\(995.91) Sepsis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Systemic inflammatory response syndrome (SIRS) (995.9)\\" + }, + { + "displayName": "(995.92) Severe sepsis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Systemic inflammatory response syndrome (SIRS) (995.9)\\(995.92) Severe sepsis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Systemic inflammatory response syndrome (SIRS) (995.9)\\" + }, + { + "displayName": "(995.93) Systemic inflammatory response syndrome due to noninfectious process without acute organ dysfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Systemic inflammatory response syndrome (SIRS) (995.9)\\(995.93) Systemic inflammatory response syndrome due to noninfectious process without acute organ dysfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Systemic inflammatory response syndrome (SIRS) (995.9)\\" + }, + { + "displayName": "(995.94) Systemic inflammatory response syndrome due to noninfectious process with acute organ dysfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Systemic inflammatory response syndrome (SIRS) (995.9)\\(995.94) Systemic inflammatory response syndrome due to noninfectious process with acute organ dysfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Certain adverse effects not elsewhere classified (995)\\Systemic inflammatory response syndrome (SIRS) (995.9)\\" + }, + { + "displayName": "Effects of air pressure (993)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\" + }, + { + "displayName": "(993.0) Barotrauma, otitic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\(993.0) Barotrauma, otitic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\" + }, + { + "displayName": "(993.1) Barotrauma, sinus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\(993.1) Barotrauma, sinus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\" + }, + { + "displayName": "(993.2) Other and unspecified effects of high altitude", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\(993.2) Other and unspecified effects of high altitude\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of air pressure (993)\\\\(993.2) Other and unspecified effects of high altitude\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\" + }, + { + "displayName": "(993.3) Caisson disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\(993.3) Caisson disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of air pressure (993)\\\\(993.3) Caisson disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\" + }, + { + "displayName": "(993.4) Effects of air pressure caused by explosion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\(993.4) Effects of air pressure caused by explosion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of air pressure (993)\\\\(993.4) Effects of air pressure caused by explosion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\" + }, + { + "displayName": "(993.8) Other specified effects of air pressure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\(993.8) Other specified effects of air pressure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of air pressure (993)\\\\(993.8) Other specified effects of air pressure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\" + }, + { + "displayName": "(993.9) Unspecified effect of air pressure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\(993.9) Unspecified effect of air pressure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of air pressure (993)\\\\(993.9) Unspecified effect of air pressure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of air pressure (993)\\" + }, + { + "displayName": "Effects of heat and light (992)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\" + }, + { + "displayName": "(992.0) Heat stroke and sunstroke", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\(992.0) Heat stroke and sunstroke\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of heat and light (992)\\\\(992.0) Heat stroke and sunstroke\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\" + }, + { + "displayName": "(992.1) Heat syncope", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\(992.1) Heat syncope\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of heat and light (992)\\\\(992.1) Heat syncope\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\" + }, + { + "displayName": "(992.2) Heat cramps", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\(992.2) Heat cramps\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\" + }, + { + "displayName": "(992.3) Heat exhaustion, anhydrotic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\(992.3) Heat exhaustion, anhydrotic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of heat and light (992)\\\\(992.3) Heat exhaustion, anhydrotic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\" + }, + { + "displayName": "(992.4) Heat exhaustion due to salt depletion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\(992.4) Heat exhaustion due to salt depletion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of heat and light (992)\\\\(992.4) Heat exhaustion due to salt depletion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\" + }, + { + "displayName": "(992.5) Heat exhaustion, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\(992.5) Heat exhaustion, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\" + }, + { + "displayName": "(992.6) Heat fatigue, transient", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\(992.6) Heat fatigue, transient\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\" + }, + { + "displayName": "(992.7) Heat edema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\(992.7) Heat edema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\" + }, + { + "displayName": "(992.8) Other specified heat effects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\(992.8) Other specified heat effects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\" + }, + { + "displayName": "(992.9) Unspecified effects of heat and light", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\(992.9) Unspecified effects of heat and light\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of heat and light (992)\\" + }, + { + "displayName": "Effects of other external causes (994)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\" + }, + { + "displayName": "(994.0) Effects of lightning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\(994.0) Effects of lightning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\" + }, + { + "displayName": "(994.1) Drowning and nonfatal submersion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\(994.1) Drowning and nonfatal submersion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\" + }, + { + "displayName": "(994.2) Effects of hunger", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\(994.2) Effects of hunger\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\" + }, + { + "displayName": "(994.3) Effects of thirst", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\(994.3) Effects of thirst\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\" + }, + { + "displayName": "(994.4) Exhaustion due to exposure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\(994.4) Exhaustion due to exposure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\" + }, + { + "displayName": "(994.5) Exhaustion due to excessive exertion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\(994.5) Exhaustion due to excessive exertion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\" + }, + { + "displayName": "(994.6) Motion sickness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\(994.6) Motion sickness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\" + }, + { + "displayName": "(994.7) Asphyxiation and strangulation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\(994.7) Asphyxiation and strangulation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of other external causes (994)\\\\(994.7) Asphyxiation and strangulation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\" + }, + { + "displayName": "(994.8) Electrocution and nonfatal effects of electric current", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\(994.8) Electrocution and nonfatal effects of electric current\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of other external causes (994)\\\\(994.8) Electrocution and nonfatal effects of electric current\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\" + }, + { + "displayName": "(994.9) Other effects of external causes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\(994.9) Other effects of external causes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of other external causes (994)\\\\(994.9) Other effects of external causes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of other external causes (994)\\" + }, + { + "displayName": "Effects of reduced temperature (991)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of reduced temperature (991)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\" + }, + { + "displayName": "(991.0) Frostbite of face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\(991.0) Frostbite of face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of reduced temperature (991)\\\\(991.0) Frostbite of face\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\" + }, + { + "displayName": "(991.1) Frostbite of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\(991.1) Frostbite of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of reduced temperature (991)\\\\(991.1) Frostbite of hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\" + }, + { + "displayName": "(991.2) Frostbite of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\(991.2) Frostbite of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of reduced temperature (991)\\\\(991.2) Frostbite of foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\" + }, + { + "displayName": "(991.3) Frostbite of other and unspecified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\(991.3) Frostbite of other and unspecified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\" + }, + { + "displayName": "(991.4) Immersion foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\(991.4) Immersion foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of reduced temperature (991)\\\\(991.4) Immersion foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\" + }, + { + "displayName": "(991.5) Chilblains", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\(991.5) Chilblains\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of reduced temperature (991)\\\\(991.5) Chilblains\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\" + }, + { + "displayName": "(991.6) Hypothermia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\(991.6) Hypothermia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of reduced temperature (991)\\\\(991.6) Hypothermia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\" + }, + { + "displayName": "(991.8) Other specified effects of reduced temperature", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\(991.8) Other specified effects of reduced temperature\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Other and unspecified effects of external causes (990-995.99)\\\\Effects of reduced temperature (991)\\\\(991.8) Other specified effects of reduced temperature\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\" + }, + { + "displayName": "(991.9) Unspecified effect of reduced temperature", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\(991.9) Unspecified effect of reduced temperature\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Other and unspecified effects of external causes (990-995.99)\\Effects of reduced temperature (991)\\" + }, + { + "displayName": "Poisoning by drugs, medicinal and biological substances (960-979.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(975.0) Poisoning by oxytocic agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\(975.0) Poisoning by oxytocic agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\" + }, + { + "displayName": "(975.1) Poisoning by smooth muscle relaxants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\(975.1) Poisoning by smooth muscle relaxants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\" + }, + { + "displayName": "(975.2) Poisoning by skeletal muscle relaxants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\(975.2) Poisoning by skeletal muscle relaxants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\" + }, + { + "displayName": "(975.3) Poisoning by other and unspecified drugs acting on muscles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\(975.3) Poisoning by other and unspecified drugs acting on muscles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\" + }, + { + "displayName": "(975.4) Poisoning by antitussives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\(975.4) Poisoning by antitussives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\" + }, + { + "displayName": "(975.5) Poisoning by expectorants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\(975.5) Poisoning by expectorants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\" + }, + { + "displayName": "(975.6) Poisoning by anti-common cold drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\(975.6) Poisoning by anti-common cold drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\" + }, + { + "displayName": "(975.7) Poisoning by antiasthmatics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\(975.7) Poisoning by antiasthmatics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\\\(975.7) Poisoning by antiasthmatics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\" + }, + { + "displayName": "(975.8) Poisoning by other and unspecified respiratory drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\(975.8) Poisoning by other and unspecified respiratory drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\\\(975.8) Poisoning by other and unspecified respiratory drugs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system (975)\\" + }, + { + "displayName": "Poisoning by agents primarily affecting blood constituents (964)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting blood constituents (964)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(964.0) Poisoning by iron and its compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\(964.0) Poisoning by iron and its compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting blood constituents (964)\\\\(964.0) Poisoning by iron and its compounds\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\" + }, + { + "displayName": "(964.1) Poisoning by liver preparations and other antianemic agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\(964.1) Poisoning by liver preparations and other antianemic agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting blood constituents (964)\\\\(964.1) Poisoning by liver preparations and other antianemic agents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\" + }, + { + "displayName": "(964.2) Poisoning by anticoagulants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\(964.2) Poisoning by anticoagulants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting blood constituents (964)\\\\(964.2) Poisoning by anticoagulants\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\" + }, + { + "displayName": "(964.3) Poisoning by vitamin K (phytonadione)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\(964.3) Poisoning by vitamin K (phytonadione)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting blood constituents (964)\\\\(964.3) Poisoning by vitamin K (phytonadione)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\" + }, + { + "displayName": "(964.4) Poisoning by fibrinolysis-affecting drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\(964.4) Poisoning by fibrinolysis-affecting drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting blood constituents (964)\\\\(964.4) Poisoning by fibrinolysis-affecting drugs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\" + }, + { + "displayName": "(964.5) Poisoning by anticoagulant antagonists and other coagulants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\(964.5) Poisoning by anticoagulant antagonists and other coagulants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting blood constituents (964)\\\\(964.5) Poisoning by anticoagulant antagonists and other coagulants\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\" + }, + { + "displayName": "(964.6) Poisoning by gamma globulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\(964.6) Poisoning by gamma globulin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting blood constituents (964)\\\\(964.6) Poisoning by gamma globulin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\" + }, + { + "displayName": "(964.7) Poisoning by natural blood and blood products", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\(964.7) Poisoning by natural blood and blood products\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\" + }, + { + "displayName": "(964.8) Poisoning by other specified agents affecting blood constituents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\(964.8) Poisoning by other specified agents affecting blood constituents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\" + }, + { + "displayName": "(964.9) Poisoning by unspecified agent affecting blood constituents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\(964.9) Poisoning by unspecified agent affecting blood constituents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting blood constituents (964)\\" + }, + { + "displayName": "Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(976.0) Poisoning by local anti-infectives and anti-inflammatory drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\(976.0) Poisoning by local anti-infectives and anti-inflammatory drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\" + }, + { + "displayName": "(976.1) Poisoning by antipruritics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\(976.1) Poisoning by antipruritics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\" + }, + { + "displayName": "(976.2) Poisoning by local astringents and local detergents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\(976.2) Poisoning by local astringents and local detergents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\" + }, + { + "displayName": "(976.3) Poisoning by emollients, demulcents, and protectants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\(976.3) Poisoning by emollients, demulcents, and protectants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\" + }, + { + "displayName": "(976.4) Poisoning by keratolytics, keratoplastics, other hair treatment drugs and preparations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\(976.4) Poisoning by keratolytics, keratoplastics, other hair treatment drugs and preparations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\" + }, + { + "displayName": "(976.5) Poisoning by eye anti-infectives and other eye drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\(976.5) Poisoning by eye anti-infectives and other eye drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\" + }, + { + "displayName": "(976.6) Poisoning by anti-infectives and other drugs and preparations for ear, nose, and throat", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\(976.6) Poisoning by anti-infectives and other drugs and preparations for ear, nose, and throat\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\" + }, + { + "displayName": "(976.7) Poisoning by dental drugs topically applied", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\(976.7) Poisoning by dental drugs topically applied\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\" + }, + { + "displayName": "(976.8) Poisoning by other agents primarily affecting skin and mucous membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\(976.8) Poisoning by other agents primarily affecting skin and mucous membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\\\(976.8) Poisoning by other agents primarily affecting skin and mucous membrane\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\" + }, + { + "displayName": "(976.9) Poisoning by unspecified agent primarily affecting skin and mucous membrane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\(976.9) Poisoning by unspecified agent primarily affecting skin and mucous membrane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\\\(976.9) Poisoning by unspecified agent primarily affecting skin and mucous membrane\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs (976)\\" + }, + { + "displayName": "Poisoning by agents primarily affecting the cardiovascular system (972)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting the cardiovascular system (972)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(972.0) Poisoning by cardiac rhythm regulators", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\(972.0) Poisoning by cardiac rhythm regulators\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting the cardiovascular system (972)\\\\(972.0) Poisoning by cardiac rhythm regulators\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\" + }, + { + "displayName": "(972.1) Poisoning by cardiotonic glycosides and drugs of similar action", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\(972.1) Poisoning by cardiotonic glycosides and drugs of similar action\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting the cardiovascular system (972)\\\\(972.1) Poisoning by cardiotonic glycosides and drugs of similar action\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\" + }, + { + "displayName": "(972.2) Poisoning by antilipemic and antiarteriosclerotic drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\(972.2) Poisoning by antilipemic and antiarteriosclerotic drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting the cardiovascular system (972)\\\\(972.2) Poisoning by antilipemic and antiarteriosclerotic drugs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\" + }, + { + "displayName": "(972.3) Poisoning by ganglion-blocking agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\(972.3) Poisoning by ganglion-blocking agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by agents primarily affecting the cardiovascular system (972)\\\\(972.3) Poisoning by ganglion-blocking agents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\" + }, + { + "displayName": "(972.4) Poisoning by coronary vasodilators", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\(972.4) Poisoning by coronary vasodilators\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\" + }, + { + "displayName": "(972.5) Poisoning by other vasodilators", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\(972.5) Poisoning by other vasodilators\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\" + }, + { + "displayName": "(972.6) Poisoning by other antihypertensive agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\(972.6) Poisoning by other antihypertensive agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\" + }, + { + "displayName": "(972.7) Poisoning by antivaricose drugs, including sclerosing agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\(972.7) Poisoning by antivaricose drugs, including sclerosing agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\" + }, + { + "displayName": "(972.8) Poisoning by capillary-active drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\(972.8) Poisoning by capillary-active drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\" + }, + { + "displayName": "(972.9) Poisoning by other and unspecified agents primarily affecting the cardiovascular system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\(972.9) Poisoning by other and unspecified agents primarily affecting the cardiovascular system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the cardiovascular system (972)\\" + }, + { + "displayName": "Poisoning by agents primarily affecting the gastrointestinal system (973)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(973.0) Poisoning by antacids and antigastric secretion drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\(973.0) Poisoning by antacids and antigastric secretion drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\" + }, + { + "displayName": "(973.1) Poisoning by irritant cathartics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\(973.1) Poisoning by irritant cathartics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\" + }, + { + "displayName": "(973.2) Poisoning by emollient cathartics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\(973.2) Poisoning by emollient cathartics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\" + }, + { + "displayName": "(973.3) Poisoning by other cathartics, including intestinal atonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\(973.3) Poisoning by other cathartics, including intestinal atonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\" + }, + { + "displayName": "(973.4) Poisoning by digestants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\(973.4) Poisoning by digestants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\" + }, + { + "displayName": "(973.5) Poisoning by antidiarrheal drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\(973.5) Poisoning by antidiarrheal drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\" + }, + { + "displayName": "(973.6) Poisoning by emetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\(973.6) Poisoning by emetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\" + }, + { + "displayName": "(973.8) Poisoning by other specified agents primarily affecting the gastrointestinal system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\(973.8) Poisoning by other specified agents primarily affecting the gastrointestinal system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\" + }, + { + "displayName": "(973.9) Poisoning by unspecified agent primarily affecting the gastrointestinal system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\(973.9) Poisoning by unspecified agent primarily affecting the gastrointestinal system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by agents primarily affecting the gastrointestinal system (973)\\" + }, + { + "displayName": "Poisoning by analgesics, antipyretics, and antirheumatics (965)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(965.1) Poisoning by salicylates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\(965.1) Poisoning by salicylates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\" + }, + { + "displayName": "(965.4) Poisoning by aromatic analgesics, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\(965.4) Poisoning by aromatic analgesics, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\" + }, + { + "displayName": "(965.5) Poisoning by pyrazole derivatives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\(965.5) Poisoning by pyrazole derivatives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\" + }, + { + "displayName": "(965.7) Poisoning by other non-narcotic analgesics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\(965.7) Poisoning by other non-narcotic analgesics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\" + }, + { + "displayName": "(965.8) Poisoning by other specified analgesics and antipyretics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\(965.8) Poisoning by other specified analgesics and antipyretics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\" + }, + { + "displayName": "(965.9) Poisoning by unspecified analgesic and antipyretic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\(965.9) Poisoning by unspecified analgesic and antipyretic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\\\(965.9) Poisoning by unspecified analgesic and antipyretic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\" + }, + { + "displayName": "Poisoning by antirheumatics [antiphlogistics] (965.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by antirheumatics [antiphlogistics] (965.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\\\Poisoning by antirheumatics [antiphlogistics] (965.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\" + }, + { + "displayName": "(965.61) Poisoning by propionic acid derivatives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by antirheumatics [antiphlogistics] (965.6)\\(965.61) Poisoning by propionic acid derivatives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\\\Poisoning by antirheumatics [antiphlogistics] (965.6)\\\\(965.61) Poisoning by propionic acid derivatives\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by antirheumatics [antiphlogistics] (965.6)\\" + }, + { + "displayName": "(965.69) Poisoning by other antirheumatics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by antirheumatics [antiphlogistics] (965.6)\\(965.69) Poisoning by other antirheumatics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\\\Poisoning by antirheumatics [antiphlogistics] (965.6)\\\\(965.69) Poisoning by other antirheumatics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by antirheumatics [antiphlogistics] (965.6)\\" + }, + { + "displayName": "Poisoning by opiates and related narcotics (965.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by opiates and related narcotics (965.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\\\Poisoning by opiates and related narcotics (965.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\" + }, + { + "displayName": "(965.00) Poisoning by opium (alkaloids), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by opiates and related narcotics (965.0)\\(965.00) Poisoning by opium (alkaloids), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\\\Poisoning by opiates and related narcotics (965.0)\\\\(965.00) Poisoning by opium (alkaloids), unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by opiates and related narcotics (965.0)\\" + }, + { + "displayName": "(965.01) Poisoning by heroin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by opiates and related narcotics (965.0)\\(965.01) Poisoning by heroin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\\\Poisoning by opiates and related narcotics (965.0)\\\\(965.01) Poisoning by heroin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by opiates and related narcotics (965.0)\\" + }, + { + "displayName": "(965.02) Poisoning by methadone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by opiates and related narcotics (965.0)\\(965.02) Poisoning by methadone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\\\Poisoning by opiates and related narcotics (965.0)\\\\(965.02) Poisoning by methadone\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by opiates and related narcotics (965.0)\\" + }, + { + "displayName": "(965.09) Poisoning by other opiates and related narcotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by opiates and related narcotics (965.0)\\(965.09) Poisoning by other opiates and related narcotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\\\Poisoning by opiates and related narcotics (965.0)\\\\(965.09) Poisoning by other opiates and related narcotics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by analgesics, antipyretics, and antirheumatics (965)\\Poisoning by opiates and related narcotics (965.0)\\" + }, + { + "displayName": "Poisoning by antibiotics (960)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by antibiotics (960)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(960.0) Poisoning by penicillins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\(960.0) Poisoning by penicillins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by antibiotics (960)\\\\(960.0) Poisoning by penicillins\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\" + }, + { + "displayName": "(960.1) Poisoning by antifungal antibiotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\(960.1) Poisoning by antifungal antibiotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by antibiotics (960)\\\\(960.1) Poisoning by antifungal antibiotics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\" + }, + { + "displayName": "(960.2) Poisoning by chloramphenicol group", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\(960.2) Poisoning by chloramphenicol group\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by antibiotics (960)\\\\(960.2) Poisoning by chloramphenicol group\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\" + }, + { + "displayName": "(960.3) Poisoning by erythromycin and other macrolides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\(960.3) Poisoning by erythromycin and other macrolides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by antibiotics (960)\\\\(960.3) Poisoning by erythromycin and other macrolides\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\" + }, + { + "displayName": "(960.4) Poisoning by tetracycline group", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\(960.4) Poisoning by tetracycline group\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by antibiotics (960)\\\\(960.4) Poisoning by tetracycline group\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\" + }, + { + "displayName": "(960.5) Poisoning of cephalosporin group", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\(960.5) Poisoning of cephalosporin group\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by antibiotics (960)\\\\(960.5) Poisoning of cephalosporin group\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\" + }, + { + "displayName": "(960.6) Poisoning of antimycobacterial antibiotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\(960.6) Poisoning of antimycobacterial antibiotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by antibiotics (960)\\\\(960.6) Poisoning of antimycobacterial antibiotics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\" + }, + { + "displayName": "(960.7) Poisoning by antineoplastic antibiotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\(960.7) Poisoning by antineoplastic antibiotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\" + }, + { + "displayName": "(960.8) Poisoning by other specified antibiotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\(960.8) Poisoning by other specified antibiotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\" + }, + { + "displayName": "(960.9) Poisoning by unspecified antibiotic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\(960.9) Poisoning by unspecified antibiotic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by antibiotics (960)\\" + }, + { + "displayName": "Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(966.0) Poisoning by oxazolidine derivatives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\\(966.0) Poisoning by oxazolidine derivatives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\\" + }, + { + "displayName": "(966.1) Poisoning by hydantoin derivatives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\\(966.1) Poisoning by hydantoin derivatives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\\" + }, + { + "displayName": "(966.2) Poisoning by succinimides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\\(966.2) Poisoning by succinimides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\\" + }, + { + "displayName": "(966.3) Poisoning by other and unspecified anticonvulsants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\\(966.3) Poisoning by other and unspecified anticonvulsants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\\" + }, + { + "displayName": "(966.4) Poisoning by anti-Parkinsonism drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\\(966.4) Poisoning by anti-Parkinsonism drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by anticonvulsants and anti-Parkinsonism drugs (966)\\" + }, + { + "displayName": "Poisoning by bacterial vaccines (978)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(978.0) Poisoning by BCG vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\(978.0) Poisoning by BCG vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\" + }, + { + "displayName": "(978.1) Poisoning by typhoid and paratyphoid vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\(978.1) Poisoning by typhoid and paratyphoid vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\" + }, + { + "displayName": "(978.2) Poisoning by cholera vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\(978.2) Poisoning by cholera vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\" + }, + { + "displayName": "(978.3) Poisoning by plague vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\(978.3) Poisoning by plague vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\" + }, + { + "displayName": "(978.4) Poisoning by tetanus vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\(978.4) Poisoning by tetanus vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\" + }, + { + "displayName": "(978.5) Poisoning by diphtheria vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\(978.5) Poisoning by diphtheria vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by bacterial vaccines (978)\\\\(978.5) Poisoning by diphtheria vaccine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\" + }, + { + "displayName": "(978.6) Poisoning by pertussis vaccine, including combinations with a pertussis component", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\(978.6) Poisoning by pertussis vaccine, including combinations with a pertussis component\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by bacterial vaccines (978)\\\\(978.6) Poisoning by pertussis vaccine, including combinations with a pertussis component\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\" + }, + { + "displayName": "(978.8) Poisoning by other and unspecified bacterial vaccines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\(978.8) Poisoning by other and unspecified bacterial vaccines\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by bacterial vaccines (978)\\\\(978.8) Poisoning by other and unspecified bacterial vaccines\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\" + }, + { + "displayName": "(978.9) Poisoning by mixed bacterial vaccines, except combinations with a pertussis component", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\(978.9) Poisoning by mixed bacterial vaccines, except combinations with a pertussis component\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by bacterial vaccines (978)\\\\(978.9) Poisoning by mixed bacterial vaccines, except combinations with a pertussis component\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by bacterial vaccines (978)\\" + }, + { + "displayName": "Poisoning by central nervous system stimulants (970)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by central nervous system stimulants (970)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(970.0) Poisoning by analeptics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by central nervous system stimulants (970)\\(970.0) Poisoning by analeptics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by central nervous system stimulants (970)\\" + }, + { + "displayName": "(970.1) Poisoning by opiate antagonists", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by central nervous system stimulants (970)\\(970.1) Poisoning by opiate antagonists\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by central nervous system stimulants (970)\\" + }, + { + "displayName": "(970.9) Poisoning by unspecified central nervous system stimulant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by central nervous system stimulants (970)\\(970.9) Poisoning by unspecified central nervous system stimulant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by central nervous system stimulants (970)\\" + }, + { + "displayName": "Poisoning by other specified central nervous system stimulants (970.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by central nervous system stimulants (970)\\Poisoning by other specified central nervous system stimulants (970.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by central nervous system stimulants (970)\\" + }, + { + "displayName": "(970.81) Poisoning by cocaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by central nervous system stimulants (970)\\Poisoning by other specified central nervous system stimulants (970.8)\\(970.81) Poisoning by cocaine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by central nervous system stimulants (970)\\Poisoning by other specified central nervous system stimulants (970.8)\\" + }, + { + "displayName": "Poisoning by drugs primarily affecting the autonomic nervous system (971)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by drugs primarily affecting the autonomic nervous system (971)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(971.0) Poisoning by parasympathomimetics (cholinergics)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by drugs primarily affecting the autonomic nervous system (971)\\(971.0) Poisoning by parasympathomimetics (cholinergics)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by drugs primarily affecting the autonomic nervous system (971)\\" + }, + { + "displayName": "(971.1) Poisoning by parasympatholytics (anticholinergics and antimuscarinics) and spasmolytics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by drugs primarily affecting the autonomic nervous system (971)\\(971.1) Poisoning by parasympatholytics (anticholinergics and antimuscarinics) and spasmolytics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by drugs primarily affecting the autonomic nervous system (971)\\" + }, + { + "displayName": "(971.2) Poisoning by sympathomimetics [adrenergics]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by drugs primarily affecting the autonomic nervous system (971)\\(971.2) Poisoning by sympathomimetics [adrenergics]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by drugs primarily affecting the autonomic nervous system (971)\\" + }, + { + "displayName": "(971.3) Poisoning by sympatholytics [antiadrenergics]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by drugs primarily affecting the autonomic nervous system (971)\\(971.3) Poisoning by sympatholytics [antiadrenergics]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by drugs primarily affecting the autonomic nervous system (971)\\" + }, + { + "displayName": "(971.9) Poisoning by unspecified drug primarily affecting autonomic nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by drugs primarily affecting the autonomic nervous system (971)\\(971.9) Poisoning by unspecified drug primarily affecting autonomic nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by drugs primarily affecting the autonomic nervous system (971)\\" + }, + { + "displayName": "Poisoning by hormones and synthetic substitutes (962)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by hormones and synthetic substitutes (962)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(962.0) Poisoning by adrenal cortical steroids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\(962.0) Poisoning by adrenal cortical steroids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by hormones and synthetic substitutes (962)\\\\(962.0) Poisoning by adrenal cortical steroids\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\" + }, + { + "displayName": "(962.1) Poisoning by androgens and anabolic congeners", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\(962.1) Poisoning by androgens and anabolic congeners\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by hormones and synthetic substitutes (962)\\\\(962.1) Poisoning by androgens and anabolic congeners\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\" + }, + { + "displayName": "(962.2) Poisoning by ovarian hormones and synthetic substitutes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\(962.2) Poisoning by ovarian hormones and synthetic substitutes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by hormones and synthetic substitutes (962)\\\\(962.2) Poisoning by ovarian hormones and synthetic substitutes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\" + }, + { + "displayName": "(962.3) Poisoning by insulins and antidiabetic agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\(962.3) Poisoning by insulins and antidiabetic agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by hormones and synthetic substitutes (962)\\\\(962.3) Poisoning by insulins and antidiabetic agents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\" + }, + { + "displayName": "(962.4) Poisoning by anterior pituitary hormones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\(962.4) Poisoning by anterior pituitary hormones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by hormones and synthetic substitutes (962)\\\\(962.4) Poisoning by anterior pituitary hormones\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\" + }, + { + "displayName": "(962.5) Poisoning by posterior pituitary hormones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\(962.5) Poisoning by posterior pituitary hormones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by hormones and synthetic substitutes (962)\\\\(962.5) Poisoning by posterior pituitary hormones\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\" + }, + { + "displayName": "(962.6) Poisoning by parathyroid and parathyroid derivatives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\(962.6) Poisoning by parathyroid and parathyroid derivatives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by hormones and synthetic substitutes (962)\\\\(962.6) Poisoning by parathyroid and parathyroid derivatives\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\" + }, + { + "displayName": "(962.7) Poisoning by thyroid and thyroid derivatives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\(962.7) Poisoning by thyroid and thyroid derivatives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by hormones and synthetic substitutes (962)\\\\(962.7) Poisoning by thyroid and thyroid derivatives\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\" + }, + { + "displayName": "(962.8) Poisoning by antithyroid agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\(962.8) Poisoning by antithyroid agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by hormones and synthetic substitutes (962)\\\\(962.8) Poisoning by antithyroid agents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\" + }, + { + "displayName": "(962.9) Poisoning by other and unspecified hormones and synthetic substitutes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\(962.9) Poisoning by other and unspecified hormones and synthetic substitutes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by hormones and synthetic substitutes (962)\\\\(962.9) Poisoning by other and unspecified hormones and synthetic substitutes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by hormones and synthetic substitutes (962)\\" + }, + { + "displayName": "Poisoning by other and unspecified drugs and medicinal substances (977)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other and unspecified drugs and medicinal substances (977)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(977.0) Poisoning by dietetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\(977.0) Poisoning by dietetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other and unspecified drugs and medicinal substances (977)\\\\(977.0) Poisoning by dietetics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\" + }, + { + "displayName": "(977.1) Poisoning by lipotropic drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\(977.1) Poisoning by lipotropic drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other and unspecified drugs and medicinal substances (977)\\\\(977.1) Poisoning by lipotropic drugs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\" + }, + { + "displayName": "(977.2) Poisoning by antidotes and chelating agents, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\(977.2) Poisoning by antidotes and chelating agents, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other and unspecified drugs and medicinal substances (977)\\\\(977.2) Poisoning by antidotes and chelating agents, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\" + }, + { + "displayName": "(977.3) Poisoning by alcohol deterrents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\(977.3) Poisoning by alcohol deterrents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\" + }, + { + "displayName": "(977.4) Poisoning by pharmaceutical excipients", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\(977.4) Poisoning by pharmaceutical excipients\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\" + }, + { + "displayName": "(977.8) Poisoning by other specified drugs and medicinal substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\(977.8) Poisoning by other specified drugs and medicinal substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\" + }, + { + "displayName": "(977.9) Poisoning by unspecified drug or medicinal substance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\(977.9) Poisoning by unspecified drug or medicinal substance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other and unspecified drugs and medicinal substances (977)\\" + }, + { + "displayName": "Poisoning by other anti-infectives (961)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(961.0) Poisoning by sulfonamides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\(961.0) Poisoning by sulfonamides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\" + }, + { + "displayName": "(961.1) Poisoning by arsenical anti-infectives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\(961.1) Poisoning by arsenical anti-infectives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\" + }, + { + "displayName": "(961.2) Poisoning by heavy metal anti-infectives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\(961.2) Poisoning by heavy metal anti-infectives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\" + }, + { + "displayName": "(961.3) Poisoning by quinoline and hydroxyquinoline derivatives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\(961.3) Poisoning by quinoline and hydroxyquinoline derivatives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\" + }, + { + "displayName": "(961.4) Poisoning by antimalarials and drugs acting on other blood protozoa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\(961.4) Poisoning by antimalarials and drugs acting on other blood protozoa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\" + }, + { + "displayName": "(961.5) Poisoning by other antiprotozoal drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\(961.5) Poisoning by other antiprotozoal drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\" + }, + { + "displayName": "(961.6) Poisoning by anthelmintics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\(961.6) Poisoning by anthelmintics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\" + }, + { + "displayName": "(961.7) Poisoning by antiviral drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\(961.7) Poisoning by antiviral drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other anti-infectives (961)\\\\(961.7) Poisoning by antiviral drugs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\" + }, + { + "displayName": "(961.8) Poisoning by other antimycobacterial drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\(961.8) Poisoning by other antimycobacterial drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other anti-infectives (961)\\\\(961.8) Poisoning by other antimycobacterial drugs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\" + }, + { + "displayName": "(961.9) Poisoning by other and unspecified anti-infectives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\(961.9) Poisoning by other and unspecified anti-infectives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other anti-infectives (961)\\\\(961.9) Poisoning by other and unspecified anti-infectives\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other anti-infectives (961)\\" + }, + { + "displayName": "Poisoning by other central nervous system depressants and anesthetics (968)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other central nervous system depressants and anesthetics (968)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(968.0) Poisoning by central nervous system muscle-tone depressants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\(968.0) Poisoning by central nervous system muscle-tone depressants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other central nervous system depressants and anesthetics (968)\\\\(968.0) Poisoning by central nervous system muscle-tone depressants\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\" + }, + { + "displayName": "(968.1) Poisoning by halothane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\(968.1) Poisoning by halothane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other central nervous system depressants and anesthetics (968)\\\\(968.1) Poisoning by halothane\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\" + }, + { + "displayName": "(968.2) Poisoning by other gaseous anesthetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\(968.2) Poisoning by other gaseous anesthetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other central nervous system depressants and anesthetics (968)\\\\(968.2) Poisoning by other gaseous anesthetics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\" + }, + { + "displayName": "(968.3) Poisoning by intravenous anesthetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\(968.3) Poisoning by intravenous anesthetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other central nervous system depressants and anesthetics (968)\\\\(968.3) Poisoning by intravenous anesthetics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\" + }, + { + "displayName": "(968.4) Poisoning by other and unspecified general anesthetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\(968.4) Poisoning by other and unspecified general anesthetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\" + }, + { + "displayName": "(968.5) Surface (topical) and infiltration anesthetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\(968.5) Surface (topical) and infiltration anesthetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\" + }, + { + "displayName": "(968.6) Poisoning by peripheral nerve- and plexus-blocking anesthetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\(968.6) Poisoning by peripheral nerve- and plexus-blocking anesthetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\" + }, + { + "displayName": "(968.7) Poisoning by spinal anesthetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\(968.7) Poisoning by spinal anesthetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\" + }, + { + "displayName": "(968.9) Poisoning by other and unspecified local anesthetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\(968.9) Poisoning by other and unspecified local anesthetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other central nervous system depressants and anesthetics (968)\\" + }, + { + "displayName": "Poisoning by other vaccines and biological substances (979)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other vaccines and biological substances (979)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(979.0) Poisoning by smallpox vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\(979.0) Poisoning by smallpox vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other vaccines and biological substances (979)\\\\(979.0) Poisoning by smallpox vaccine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\" + }, + { + "displayName": "(979.1) Poisoning by rabies vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\(979.1) Poisoning by rabies vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by other vaccines and biological substances (979)\\\\(979.1) Poisoning by rabies vaccine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\" + }, + { + "displayName": "(979.2) Poisoning by typhus vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\(979.2) Poisoning by typhus vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\" + }, + { + "displayName": "(979.3) Poisoning by yellow fever vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\(979.3) Poisoning by yellow fever vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\" + }, + { + "displayName": "(979.4) Poisoning by measles vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\(979.4) Poisoning by measles vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\" + }, + { + "displayName": "(979.5) Poisoning by poliomyelitis vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\(979.5) Poisoning by poliomyelitis vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\" + }, + { + "displayName": "(979.6) Poisoning by other and unspecified viral and rickettsial vaccines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\(979.6) Poisoning by other and unspecified viral and rickettsial vaccines\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\" + }, + { + "displayName": "(979.7) Poisoning by mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\(979.7) Poisoning by mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\" + }, + { + "displayName": "(979.9) Poisoning by other and unspecified vaccines and biological substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\(979.9) Poisoning by other and unspecified vaccines and biological substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by other vaccines and biological substances (979)\\" + }, + { + "displayName": "Poisoning by primarily systemic agents (963)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(963.0) Poisoning by antiallergic and antiemetic drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\(963.0) Poisoning by antiallergic and antiemetic drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\" + }, + { + "displayName": "(963.1) Poisoning by antineoplastic and immunosuppressive drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\(963.1) Poisoning by antineoplastic and immunosuppressive drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\" + }, + { + "displayName": "(963.2) Poisoning by acidifying agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\(963.2) Poisoning by acidifying agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\" + }, + { + "displayName": "(963.3) Poisoning by alkalizing agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\(963.3) Poisoning by alkalizing agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\" + }, + { + "displayName": "(963.4) Poisoning by enzymes, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\(963.4) Poisoning by enzymes, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\" + }, + { + "displayName": "(963.5) Poisoning by vitamins, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\(963.5) Poisoning by vitamins, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\" + }, + { + "displayName": "(963.8) Poisoning by other specified systemic agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\(963.8) Poisoning by other specified systemic agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\" + }, + { + "displayName": "(963.9) Poisoning by unspecified systemic agent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\(963.9) Poisoning by unspecified systemic agent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by primarily systemic agents (963)\\" + }, + { + "displayName": "Poisoning by psychotropic agents (969)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(969.1) Poisoning by phenothiazine-based tranquilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\(969.1) Poisoning by phenothiazine-based tranquilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\" + }, + { + "displayName": "(969.2) Poisoning by butyrophenone-based tranquilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\(969.2) Poisoning by butyrophenone-based tranquilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by psychotropic agents (969)\\\\(969.2) Poisoning by butyrophenone-based tranquilizers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\" + }, + { + "displayName": "(969.3) Poisoning by other antipsychotics, neuroleptics, and major tranquilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\(969.3) Poisoning by other antipsychotics, neuroleptics, and major tranquilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by psychotropic agents (969)\\\\(969.3) Poisoning by other antipsychotics, neuroleptics, and major tranquilizers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\" + }, + { + "displayName": "(969.4) Poisoning by benzodiazepine-based tranquilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\(969.4) Poisoning by benzodiazepine-based tranquilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by psychotropic agents (969)\\\\(969.4) Poisoning by benzodiazepine-based tranquilizers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\" + }, + { + "displayName": "(969.5) Poisoning by other tranquilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\(969.5) Poisoning by other tranquilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by psychotropic agents (969)\\\\(969.5) Poisoning by other tranquilizers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\" + }, + { + "displayName": "(969.6) Poisoning by psychodysleptics (hallucinogens)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\(969.6) Poisoning by psychodysleptics (hallucinogens)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by psychotropic agents (969)\\\\(969.6) Poisoning by psychodysleptics (hallucinogens)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\" + }, + { + "displayName": "(969.8) Poisoning by other specified psychotropic agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\(969.8) Poisoning by other specified psychotropic agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by psychotropic agents (969)\\\\(969.8) Poisoning by other specified psychotropic agents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\" + }, + { + "displayName": "(969.9) Poisoning by unspecified psychotropic agent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\(969.9) Poisoning by unspecified psychotropic agent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by psychotropic agents (969)\\\\(969.9) Poisoning by unspecified psychotropic agent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\" + }, + { + "displayName": "Poisoning by antidepressants (969.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by antidepressants (969.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by psychotropic agents (969)\\\\Poisoning by antidepressants (969.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\" + }, + { + "displayName": "(969.00) Poisoning by antidepressant, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by antidepressants (969.0)\\(969.00) Poisoning by antidepressant, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by antidepressants (969.0)\\" + }, + { + "displayName": "(969.02) Poisoning by selective serotonin and norepinephrine reuptake inhibitors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by antidepressants (969.0)\\(969.02) Poisoning by selective serotonin and norepinephrine reuptake inhibitors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by antidepressants (969.0)\\" + }, + { + "displayName": "(969.03) Poisoning by selective serotonin reuptake inhibitors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by antidepressants (969.0)\\(969.03) Poisoning by selective serotonin reuptake inhibitors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by antidepressants (969.0)\\" + }, + { + "displayName": "(969.05) Poisoning by tricyclic antidepressants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by antidepressants (969.0)\\(969.05) Poisoning by tricyclic antidepressants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by antidepressants (969.0)\\" + }, + { + "displayName": "(969.09) Poisoning by other antidepressants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by antidepressants (969.0)\\(969.09) Poisoning by other antidepressants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by antidepressants (969.0)\\" + }, + { + "displayName": "Poisoning by psychostimulants (969.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by psychostimulants (969.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\" + }, + { + "displayName": "(969.72) Poisoning by amphetamines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by psychostimulants (969.7)\\(969.72) Poisoning by amphetamines\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by psychotropic agents (969)\\Poisoning by psychostimulants (969.7)\\" + }, + { + "displayName": "Poisoning by sedatives and hypnotics (967)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(967.0) Poisoning by barbiturates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\(967.0) Poisoning by barbiturates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\" + }, + { + "displayName": "(967.1) Poisoning by chloral hydrate group", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\(967.1) Poisoning by chloral hydrate group\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\" + }, + { + "displayName": "(967.2) Poisoning by paraldehyde", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\(967.2) Poisoning by paraldehyde\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\" + }, + { + "displayName": "(967.3) Poisoning by bromine compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\(967.3) Poisoning by bromine compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\" + }, + { + "displayName": "(967.4) Poisoning by methaqualone compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\(967.4) Poisoning by methaqualone compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\" + }, + { + "displayName": "(967.5) Poisoning by glutethimide group", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\(967.5) Poisoning by glutethimide group\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by sedatives and hypnotics (967)\\\\(967.5) Poisoning by glutethimide group\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\" + }, + { + "displayName": "(967.6) Poisoning by mixed sedatives, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\(967.6) Poisoning by mixed sedatives, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by sedatives and hypnotics (967)\\\\(967.6) Poisoning by mixed sedatives, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\" + }, + { + "displayName": "(967.8) Poisoning by other sedatives and hypnotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\(967.8) Poisoning by other sedatives and hypnotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\" + }, + { + "displayName": "(967.9) Poisoning by unspecified sedative or hypnotic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\(967.9) Poisoning by unspecified sedative or hypnotic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by sedatives and hypnotics (967)\\\\(967.9) Poisoning by unspecified sedative or hypnotic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by sedatives and hypnotics (967)\\" + }, + { + "displayName": "Poisoning by water, mineral, and uric acid metabolism drugs (974)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\" + }, + { + "displayName": "(974.0) Poisoning by mercurial diuretics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\(974.0) Poisoning by mercurial diuretics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\" + }, + { + "displayName": "(974.1) Poisoning by purine derivative diuretics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\(974.1) Poisoning by purine derivative diuretics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\\\(974.1) Poisoning by purine derivative diuretics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\" + }, + { + "displayName": "(974.2) Poisoning by carbonic acid anhydrase inhibitors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\(974.2) Poisoning by carbonic acid anhydrase inhibitors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\\\(974.2) Poisoning by carbonic acid anhydrase inhibitors\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\" + }, + { + "displayName": "(974.3) Poisoning by saluretics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\(974.3) Poisoning by saluretics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\\\(974.3) Poisoning by saluretics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\" + }, + { + "displayName": "(974.4) Poisoning by other diuretics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\(974.4) Poisoning by other diuretics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\\\(974.4) Poisoning by other diuretics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\" + }, + { + "displayName": "(974.5) Poisoning by electrolytic, caloric, and water-balance agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\(974.5) Poisoning by electrolytic, caloric, and water-balance agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\\\(974.5) Poisoning by electrolytic, caloric, and water-balance agents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\" + }, + { + "displayName": "(974.6) Poisoning by other mineral salts, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\(974.6) Poisoning by other mineral salts, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\\\(974.6) Poisoning by other mineral salts, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\" + }, + { + "displayName": "(974.7) Poisoning by uric acid metabolism drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\(974.7) Poisoning by uric acid metabolism drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\\\(974.7) Poisoning by uric acid metabolism drugs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Poisoning by drugs, medicinal and biological substances (960-979.99)\\Poisoning by water, mineral, and uric acid metabolism drugs (974)\\" + }, + { + "displayName": "Sprains and strains of joints and adjacent muscles (840-848.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Other and ill-defined sprains and strains (848)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Other and ill-defined sprains and strains (848)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\" + }, + { + "displayName": "(848.0) Sprain of septal cartilage of nose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\(848.0) Sprain of septal cartilage of nose\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Other and ill-defined sprains and strains (848)\\\\(848.0) Sprain of septal cartilage of nose\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\" + }, + { + "displayName": "(848.1) Sprain of jaw", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\(848.1) Sprain of jaw\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Other and ill-defined sprains and strains (848)\\\\(848.1) Sprain of jaw\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\" + }, + { + "displayName": "(848.2) Sprain of thyroid region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\(848.2) Sprain of thyroid region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Other and ill-defined sprains and strains (848)\\\\(848.2) Sprain of thyroid region\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\" + }, + { + "displayName": "(848.3) Sprain of ribs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\(848.3) Sprain of ribs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Other and ill-defined sprains and strains (848)\\\\(848.3) Sprain of ribs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\" + }, + { + "displayName": "(848.5) Sprain of pelvic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\(848.5) Sprain of pelvic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Other and ill-defined sprains and strains (848)\\\\(848.5) Sprain of pelvic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\" + }, + { + "displayName": "(848.8) Other specified sites of sprains and strains", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\(848.8) Other specified sites of sprains and strains\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Other and ill-defined sprains and strains (848)\\\\(848.8) Other specified sites of sprains and strains\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\" + }, + { + "displayName": "(848.9) Unspecified site of sprain and strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\(848.9) Unspecified site of sprain and strain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Other and ill-defined sprains and strains (848)\\\\(848.9) Unspecified site of sprain and strain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\" + }, + { + "displayName": "Sternum sprain (848.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\Sternum sprain (848.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Other and ill-defined sprains and strains (848)\\\\Sternum sprain (848.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\" + }, + { + "displayName": "(848.40) Sprain of sternum, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\Sternum sprain (848.4)\\(848.40) Sprain of sternum, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Other and ill-defined sprains and strains (848)\\\\Sternum sprain (848.4)\\\\(848.40) Sprain of sternum, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\Sternum sprain (848.4)\\" + }, + { + "displayName": "(848.41) Sprain of sternoclavicular (joint) (ligament)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\Sternum sprain (848.4)\\(848.41) Sprain of sternoclavicular (joint) (ligament)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\Sternum sprain (848.4)\\" + }, + { + "displayName": "(848.42) Sprain of chondrosternal (joint)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\Sternum sprain (848.4)\\(848.42) Sprain of chondrosternal (joint)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\Sternum sprain (848.4)\\" + }, + { + "displayName": "(848.49) Sprain of sternum, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\Sternum sprain (848.4)\\(848.49) Sprain of sternum, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Other and ill-defined sprains and strains (848)\\Sternum sprain (848.4)\\" + }, + { + "displayName": "Sprains and strains of ankle and foot (845)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\" + }, + { + "displayName": "Ankle sprain (845.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Ankle sprain (845.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\" + }, + { + "displayName": "(845.00) Sprain of ankle, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Ankle sprain (845.0)\\(845.00) Sprain of ankle, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Ankle sprain (845.0)\\" + }, + { + "displayName": "(845.01) Sprain of deltoid (ligament), ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Ankle sprain (845.0)\\(845.01) Sprain of deltoid (ligament), ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Ankle sprain (845.0)\\" + }, + { + "displayName": "(845.02) Sprain of calcaneofibular (ligament) of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Ankle sprain (845.0)\\(845.02) Sprain of calcaneofibular (ligament) of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Ankle sprain (845.0)\\" + }, + { + "displayName": "(845.03) Sprain of tibiofibular (ligament), distal of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Ankle sprain (845.0)\\(845.03) Sprain of tibiofibular (ligament), distal of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Ankle sprain (845.0)\\" + }, + { + "displayName": "(845.09) Other sprains and strains of ankle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Ankle sprain (845.0)\\(845.09) Other sprains and strains of ankle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Ankle sprain (845.0)\\" + }, + { + "displayName": "Foot sprain (845.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Foot sprain (845.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of ankle and foot (845)\\\\Foot sprain (845.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\" + }, + { + "displayName": "(845.10) Sprain of foot, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Foot sprain (845.1)\\(845.10) Sprain of foot, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of ankle and foot (845)\\\\Foot sprain (845.1)\\\\(845.10) Sprain of foot, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Foot sprain (845.1)\\" + }, + { + "displayName": "(845.11) Sprain of tarsometatarsal (joint) (ligament) of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Foot sprain (845.1)\\(845.11) Sprain of tarsometatarsal (joint) (ligament) of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Foot sprain (845.1)\\" + }, + { + "displayName": "(845.12) Sprain of metatarsophalangeal (joint) of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Foot sprain (845.1)\\(845.12) Sprain of metatarsophalangeal (joint) of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of ankle and foot (845)\\\\Foot sprain (845.1)\\\\(845.12) Sprain of metatarsophalangeal (joint) of foot\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Foot sprain (845.1)\\" + }, + { + "displayName": "(845.13) Sprain of interphalangeal (joint), toe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Foot sprain (845.1)\\(845.13) Sprain of interphalangeal (joint), toe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of ankle and foot (845)\\\\Foot sprain (845.1)\\\\(845.13) Sprain of interphalangeal (joint), toe\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Foot sprain (845.1)\\" + }, + { + "displayName": "(845.19) Other sprain of foot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Foot sprain (845.1)\\(845.19) Other sprain of foot\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of ankle and foot (845)\\Foot sprain (845.1)\\" + }, + { + "displayName": "Sprains and strains of elbow and forearm (841)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of elbow and forearm (841)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\" + }, + { + "displayName": "(841.0) Radial collateral ligament sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\(841.0) Radial collateral ligament sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of elbow and forearm (841)\\\\(841.0) Radial collateral ligament sprain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\" + }, + { + "displayName": "(841.1) Ulnar collateral ligament sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\(841.1) Ulnar collateral ligament sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of elbow and forearm (841)\\\\(841.1) Ulnar collateral ligament sprain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\" + }, + { + "displayName": "(841.2) Radiohumeral (joint) sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\(841.2) Radiohumeral (joint) sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of elbow and forearm (841)\\\\(841.2) Radiohumeral (joint) sprain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\" + }, + { + "displayName": "(841.3) Ulnohumeral (joint) sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\(841.3) Ulnohumeral (joint) sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\" + }, + { + "displayName": "(841.8) Sprains and strains of other specified sites of elbow and forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\(841.8) Sprains and strains of other specified sites of elbow and forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of elbow and forearm (841)\\\\(841.8) Sprains and strains of other specified sites of elbow and forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\" + }, + { + "displayName": "(841.9) Sprains and strains of unspecified site of elbow and forearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\(841.9) Sprains and strains of unspecified site of elbow and forearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of elbow and forearm (841)\\\\(841.9) Sprains and strains of unspecified site of elbow and forearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of elbow and forearm (841)\\" + }, + { + "displayName": "Sprains and strains of hip and thigh (843)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of hip and thigh (843)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of hip and thigh (843)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\" + }, + { + "displayName": "(843.0) Iliofemoral (ligament) sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of hip and thigh (843)\\(843.0) Iliofemoral (ligament) sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of hip and thigh (843)\\\\(843.0) Iliofemoral (ligament) sprain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of hip and thigh (843)\\" + }, + { + "displayName": "(843.1) Ischiocapsular (ligament) sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of hip and thigh (843)\\(843.1) Ischiocapsular (ligament) sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of hip and thigh (843)\\" + }, + { + "displayName": "(843.8) Sprains and strains of other specified sites of hip and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of hip and thigh (843)\\(843.8) Sprains and strains of other specified sites of hip and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of hip and thigh (843)\\\\(843.8) Sprains and strains of other specified sites of hip and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of hip and thigh (843)\\" + }, + { + "displayName": "(843.9) Sprains and strains of unspecified site of hip and thigh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of hip and thigh (843)\\(843.9) Sprains and strains of unspecified site of hip and thigh\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of hip and thigh (843)\\\\(843.9) Sprains and strains of unspecified site of hip and thigh\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of hip and thigh (843)\\" + }, + { + "displayName": "Sprains and strains of knee and leg (844)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\" + }, + { + "displayName": "(844.0) Sprain of lateral collateral ligament of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\(844.0) Sprain of lateral collateral ligament of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of knee and leg (844)\\\\(844.0) Sprain of lateral collateral ligament of knee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\" + }, + { + "displayName": "(844.1) Sprain of medial collateral ligament of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\(844.1) Sprain of medial collateral ligament of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of knee and leg (844)\\\\(844.1) Sprain of medial collateral ligament of knee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\" + }, + { + "displayName": "(844.2) Sprain of cruciate ligament of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\(844.2) Sprain of cruciate ligament of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of knee and leg (844)\\\\(844.2) Sprain of cruciate ligament of knee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\" + }, + { + "displayName": "(844.3) Sprain of tibiofibular (joint) (ligament) superior, of knee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\(844.3) Sprain of tibiofibular (joint) (ligament) superior, of knee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of knee and leg (844)\\\\(844.3) Sprain of tibiofibular (joint) (ligament) superior, of knee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\" + }, + { + "displayName": "(844.8) Sprains and strains of other specified sites of knee and leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\(844.8) Sprains and strains of other specified sites of knee and leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\" + }, + { + "displayName": "(844.9) Sprains and strains of unspecified site of knee and leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\(844.9) Sprains and strains of unspecified site of knee and leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of knee and leg (844)\\" + }, + { + "displayName": "Sprains and strains of other and unspecified parts of back (847)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\" + }, + { + "displayName": "(847.0) Sprain of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\(847.0) Sprain of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\" + }, + { + "displayName": "(847.1) Sprain of thoracic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\(847.1) Sprain of thoracic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\" + }, + { + "displayName": "(847.2) Sprain of lumbar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\(847.2) Sprain of lumbar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\" + }, + { + "displayName": "(847.3) Sprain of sacrum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\(847.3) Sprain of sacrum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\" + }, + { + "displayName": "(847.4) Sprain of coccyx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\(847.4) Sprain of coccyx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\" + }, + { + "displayName": "(847.9) Sprain of unspecified site of back", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\(847.9) Sprain of unspecified site of back\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of other and unspecified parts of back (847)\\" + }, + { + "displayName": "Sprains and strains of sacroiliac region (846)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\" + }, + { + "displayName": "(846.0) Sprain of lumbosacral (joint) (ligament)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\(846.0) Sprain of lumbosacral (joint) (ligament)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\" + }, + { + "displayName": "(846.1) Sprain of sacroiliac ligament", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\(846.1) Sprain of sacroiliac ligament\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\" + }, + { + "displayName": "(846.2) Sprain of sacrospinatus (ligament)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\(846.2) Sprain of sacrospinatus (ligament)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\" + }, + { + "displayName": "(846.3) Sprain of sacrotuberous (ligament)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\(846.3) Sprain of sacrotuberous (ligament)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\" + }, + { + "displayName": "(846.8) Sprain of other specified sites of sacroiliac region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\(846.8) Sprain of other specified sites of sacroiliac region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\" + }, + { + "displayName": "(846.9) Sprain of unspecified site of sacroiliac region", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\(846.9) Sprain of unspecified site of sacroiliac region\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of sacroiliac region (846)\\" + }, + { + "displayName": "Sprains and strains of shoulder and upper arm (840)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\" + }, + { + "displayName": "(840.0) Acromioclavicular (joint) (ligament) sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\(840.0) Acromioclavicular (joint) (ligament) sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\" + }, + { + "displayName": "(840.1) Coracoclavicular (ligament) sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\(840.1) Coracoclavicular (ligament) sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\" + }, + { + "displayName": "(840.2) Coracohumeral (ligament) sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\(840.2) Coracohumeral (ligament) sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\" + }, + { + "displayName": "(840.3) Infraspinatus (muscle) (tendon) sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\(840.3) Infraspinatus (muscle) (tendon) sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\" + }, + { + "displayName": "(840.4) Rotator cuff (capsule) sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\(840.4) Rotator cuff (capsule) sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\" + }, + { + "displayName": "(840.5) Subscapularis (muscle) sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\(840.5) Subscapularis (muscle) sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\" + }, + { + "displayName": "(840.6) Supraspinatus (muscle) (tendon) sprain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\(840.6) Supraspinatus (muscle) (tendon) sprain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\" + }, + { + "displayName": "(840.7) Superior glenoid labrum lesion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\(840.7) Superior glenoid labrum lesion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\" + }, + { + "displayName": "(840.8) Sprains and strains of other specified sites of shoulder and upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\(840.8) Sprains and strains of other specified sites of shoulder and upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\" + }, + { + "displayName": "(840.9) Sprains and strains of unspecified site of shoulder and upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\(840.9) Sprains and strains of unspecified site of shoulder and upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of shoulder and upper arm (840)\\" + }, + { + "displayName": "Sprains and strains of wrist and hand (842)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\" + }, + { + "displayName": "Hand sprain (842.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Hand sprain (842.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\" + }, + { + "displayName": "(842.10) Sprain of hand, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Hand sprain (842.1)\\(842.10) Sprain of hand, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of wrist and hand (842)\\\\Hand sprain (842.1)\\\\(842.10) Sprain of hand, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Hand sprain (842.1)\\" + }, + { + "displayName": "(842.11) Sprain of carpometacarpal (joint) of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Hand sprain (842.1)\\(842.11) Sprain of carpometacarpal (joint) of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Hand sprain (842.1)\\" + }, + { + "displayName": "(842.12) Sprain of metacarpophalangeal (joint) of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Hand sprain (842.1)\\(842.12) Sprain of metacarpophalangeal (joint) of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of wrist and hand (842)\\\\Hand sprain (842.1)\\\\(842.12) Sprain of metacarpophalangeal (joint) of hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Hand sprain (842.1)\\" + }, + { + "displayName": "(842.13) Sprain of interphalangeal (joint) of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Hand sprain (842.1)\\(842.13) Sprain of interphalangeal (joint) of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of wrist and hand (842)\\\\Hand sprain (842.1)\\\\(842.13) Sprain of interphalangeal (joint) of hand\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Hand sprain (842.1)\\" + }, + { + "displayName": "(842.19) Other sprains and strains of hand", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Hand sprain (842.1)\\(842.19) Other sprains and strains of hand\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Hand sprain (842.1)\\" + }, + { + "displayName": "Wrist sprain (842.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Wrist sprain (842.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\" + }, + { + "displayName": "(842.00) Sprain of wrist, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Wrist sprain (842.0)\\(842.00) Sprain of wrist, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of wrist and hand (842)\\\\Wrist sprain (842.0)\\\\(842.00) Sprain of wrist, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Wrist sprain (842.0)\\" + }, + { + "displayName": "(842.01) Sprain of carpal (joint) of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Wrist sprain (842.0)\\(842.01) Sprain of carpal (joint) of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Sprains and strains of joints and adjacent muscles (840-848.99)\\\\Sprains and strains of wrist and hand (842)\\\\Wrist sprain (842.0)\\\\(842.01) Sprain of carpal (joint) of wrist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Wrist sprain (842.0)\\" + }, + { + "displayName": "(842.02) Sprain of radiocarpal (joint) (ligament) of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Wrist sprain (842.0)\\(842.02) Sprain of radiocarpal (joint) (ligament) of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Wrist sprain (842.0)\\" + }, + { + "displayName": "(842.09) Other sprains and strains of wrist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Wrist sprain (842.0)\\(842.09) Other sprains and strains of wrist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Sprains and strains of joints and adjacent muscles (840-848.99)\\Sprains and strains of wrist and hand (842)\\Wrist sprain (842.0)\\" + }, + { + "displayName": "Superficial injury (910-919.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "Superficial injury of elbow, forearm, and wrist (913)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\" + }, + { + "displayName": "(913.0) Abrasion or friction burn of elbow, forearm, and wrist, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\(913.0) Abrasion or friction burn of elbow, forearm, and wrist, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\" + }, + { + "displayName": "(913.1) Abrasion or friction burn of elbow, forearm, and wrist, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\(913.1) Abrasion or friction burn of elbow, forearm, and wrist, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\" + }, + { + "displayName": "(913.2) Blister of elbow, forearm, and wrist, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\(913.2) Blister of elbow, forearm, and wrist, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\" + }, + { + "displayName": "(913.3) Blister of elbow, forearm, and wrist, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\(913.3) Blister of elbow, forearm, and wrist, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\" + }, + { + "displayName": "(913.4) Insect bite, nonvenomous of elbow, forearm, and wrist, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\(913.4) Insect bite, nonvenomous of elbow, forearm, and wrist, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of elbow, forearm, and wrist (913)\\\\(913.4) Insect bite, nonvenomous of elbow, forearm, and wrist, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\" + }, + { + "displayName": "(913.5) Insect bite, nonvenomous, of elbow, forearm, and wrist, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\(913.5) Insect bite, nonvenomous, of elbow, forearm, and wrist, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of elbow, forearm, and wrist (913)\\\\(913.5) Insect bite, nonvenomous, of elbow, forearm, and wrist, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\" + }, + { + "displayName": "(913.6) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound and without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\(913.6) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound and without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of elbow, forearm, and wrist (913)\\\\(913.6) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound and without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\" + }, + { + "displayName": "(913.7) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\(913.7) Superficial foreign body (splinter) of elbow, forearm, and wrist, without major open wound, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\" + }, + { + "displayName": "(913.8) Other and unspecified superficial injury of elbow, forearm, and wrist, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\(913.8) Other and unspecified superficial injury of elbow, forearm, and wrist, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\" + }, + { + "displayName": "(913.9) Other and unspecified superficial injury of elbow, forearm, and wrist, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\(913.9) Other and unspecified superficial injury of elbow, forearm, and wrist, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of elbow, forearm, and wrist (913)\\" + }, + { + "displayName": "Superficial injury of eye and adnexa (918)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of eye and adnexa (918)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\" + }, + { + "displayName": "(918.0) Superficial injury of eyelids and periocular area", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of eye and adnexa (918)\\(918.0) Superficial injury of eyelids and periocular area\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of eye and adnexa (918)\\" + }, + { + "displayName": "(918.1) Superficial injury of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of eye and adnexa (918)\\(918.1) Superficial injury of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of eye and adnexa (918)\\" + }, + { + "displayName": "(918.2) Superficial injury of conjunctiva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of eye and adnexa (918)\\(918.2) Superficial injury of conjunctiva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of eye and adnexa (918)\\" + }, + { + "displayName": "(918.9) Other and unspecified superficial injuries of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of eye and adnexa (918)\\(918.9) Other and unspecified superficial injuries of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of eye and adnexa (918)\\" + }, + { + "displayName": "Superficial injury of face, neck, and scalp except eye (910)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\" + }, + { + "displayName": "(910.0) Abrasion or friction burn of face, neck, and scalp except eye, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\(910.0) Abrasion or friction burn of face, neck, and scalp except eye, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\" + }, + { + "displayName": "(910.1) Abrasion or friction burn of face, neck, and scalp except eye, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\(910.1) Abrasion or friction burn of face, neck, and scalp except eye, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\" + }, + { + "displayName": "(910.2) Blister of face, neck, and scalp except eye, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\(910.2) Blister of face, neck, and scalp except eye, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\" + }, + { + "displayName": "(910.3) Blister of face, neck, and scalp except eye, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\(910.3) Blister of face, neck, and scalp except eye, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\" + }, + { + "displayName": "(910.4) Insect bite, nonvenomous of face, neck, and scalp except eye, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\(910.4) Insect bite, nonvenomous of face, neck, and scalp except eye, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\" + }, + { + "displayName": "(910.5) Insect bite, nonvenomous of face, neck, and scalp except eye, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\(910.5) Insect bite, nonvenomous of face, neck, and scalp except eye, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\" + }, + { + "displayName": "(910.6) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound and without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\(910.6) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound and without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\" + }, + { + "displayName": "(910.7) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\(910.7) Superficial foreign body (splinter) of face, neck, and scalp except eye, without major open wound, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\" + }, + { + "displayName": "(910.8) Other and unspecified superficial injury of face, neck, and scalp, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\(910.8) Other and unspecified superficial injury of face, neck, and scalp, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\" + }, + { + "displayName": "(910.9) Other and unspecified superficial injury of face, neck, and scalp, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\(910.9) Other and unspecified superficial injury of face, neck, and scalp, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of face, neck, and scalp except eye (910)\\" + }, + { + "displayName": "Superficial injury of finger(s) (915)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\" + }, + { + "displayName": "(915.0) Abrasion or friction burn of finger(s), without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\(915.0) Abrasion or friction burn of finger(s), without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\" + }, + { + "displayName": "(915.1) Abrasion or friction burn of finger(s), infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\(915.1) Abrasion or friction burn of finger(s), infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\" + }, + { + "displayName": "(915.2) Blister of finger(s), without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\(915.2) Blister of finger(s), without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\" + }, + { + "displayName": "(915.3) Blister of finger(s), infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\(915.3) Blister of finger(s), infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\" + }, + { + "displayName": "(915.4) Insect bite, nonvenomous, of finger(s), without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\(915.4) Insect bite, nonvenomous, of finger(s), without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\" + }, + { + "displayName": "(915.5) Insect bite, nonvenomous of finger(s), infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\(915.5) Insect bite, nonvenomous of finger(s), infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\" + }, + { + "displayName": "(915.6) Superficial foreign body (splinter) of finger(s), without major open wound and without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\(915.6) Superficial foreign body (splinter) of finger(s), without major open wound and without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\" + }, + { + "displayName": "(915.7) Superficial foreign body (splinter) of finger(s), without major open wound, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\(915.7) Superficial foreign body (splinter) of finger(s), without major open wound, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\" + }, + { + "displayName": "(915.8) Other and unspecified superficial injury of fingers without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\(915.8) Other and unspecified superficial injury of fingers without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of finger(s) (915)\\\\(915.8) Other and unspecified superficial injury of fingers without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\" + }, + { + "displayName": "(915.9) Other and unspecified superficial injury of fingers, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\(915.9) Other and unspecified superficial injury of fingers, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of finger(s) (915)\\\\(915.9) Other and unspecified superficial injury of fingers, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of finger(s) (915)\\" + }, + { + "displayName": "Superficial injury of foot and toe(s) (917)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\" + }, + { + "displayName": "(917.0) Abrasion or friction burn of foot and toe(s), without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\(917.0) Abrasion or friction burn of foot and toe(s), without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\" + }, + { + "displayName": "(917.1) Abrasion or friction burn of foot and toe(s), infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\(917.1) Abrasion or friction burn of foot and toe(s), infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\" + }, + { + "displayName": "(917.2) Blister of foot and toe(s), without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\(917.2) Blister of foot and toe(s), without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\" + }, + { + "displayName": "(917.3) Blister of foot and toe(s), infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\(917.3) Blister of foot and toe(s), infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\" + }, + { + "displayName": "(917.4) Insect bite, nonvenomous, of foot and toe(s), without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\(917.4) Insect bite, nonvenomous, of foot and toe(s), without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\" + }, + { + "displayName": "(917.5) Insect bite, nonvenomous, of foot and toe(s), infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\(917.5) Insect bite, nonvenomous, of foot and toe(s), infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\" + }, + { + "displayName": "(917.6) Superficial foreign body (splinter) of foot and toe(s), without major open wound and without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\(917.6) Superficial foreign body (splinter) of foot and toe(s), without major open wound and without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\" + }, + { + "displayName": "(917.7) Superficial foreign body (splinter) of foot and toe(s), without major open wound, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\(917.7) Superficial foreign body (splinter) of foot and toe(s), without major open wound, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\" + }, + { + "displayName": "(917.8) Other and unspecified superficial injury of foot and toes, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\(917.8) Other and unspecified superficial injury of foot and toes, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of foot and toe(s) (917)\\\\(917.8) Other and unspecified superficial injury of foot and toes, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\" + }, + { + "displayName": "(917.9) Other and unspecified superficial injury of foot and toes, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\(917.9) Other and unspecified superficial injury of foot and toes, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of foot and toe(s) (917)\\\\(917.9) Other and unspecified superficial injury of foot and toes, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of foot and toe(s) (917)\\" + }, + { + "displayName": "Superficial injury of hand(s) except finger(s) alone (914)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hand(s) except finger(s) alone (914)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\" + }, + { + "displayName": "(914.0) Abrasion or friction burn of hand(s) except finger(s) alone, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\(914.0) Abrasion or friction burn of hand(s) except finger(s) alone, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hand(s) except finger(s) alone (914)\\\\(914.0) Abrasion or friction burn of hand(s) except finger(s) alone, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\" + }, + { + "displayName": "(914.1) Abrasion or friction burn of hand(s) except finger(s) alone, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\(914.1) Abrasion or friction burn of hand(s) except finger(s) alone, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\" + }, + { + "displayName": "(914.2) Blister of hand(s) except finger(s) alone, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\(914.2) Blister of hand(s) except finger(s) alone, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hand(s) except finger(s) alone (914)\\\\(914.2) Blister of hand(s) except finger(s) alone, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\" + }, + { + "displayName": "(914.3) Blister of hand(s) except finger(s) alone, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\(914.3) Blister of hand(s) except finger(s) alone, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hand(s) except finger(s) alone (914)\\\\(914.3) Blister of hand(s) except finger(s) alone, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\" + }, + { + "displayName": "(914.4) Insect bite, nonvenomous, of hand(s) except finger(s) alone, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\(914.4) Insect bite, nonvenomous, of hand(s) except finger(s) alone, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\" + }, + { + "displayName": "(914.5) Insect bite, nonvenomous, of hand(s) except finger(s) alone, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\(914.5) Insect bite, nonvenomous, of hand(s) except finger(s) alone, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hand(s) except finger(s) alone (914)\\\\(914.5) Insect bite, nonvenomous, of hand(s) except finger(s) alone, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\" + }, + { + "displayName": "(914.6) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound and without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\(914.6) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound and without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\" + }, + { + "displayName": "(914.7) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\(914.7) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hand(s) except finger(s) alone (914)\\\\(914.7) Superficial foreign body (splinter) of hand(s) except finger(s) alone, without major open wound, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\" + }, + { + "displayName": "(914.8) Other and unspecified superficial injury of hand(s) except finger(s) alone, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\(914.8) Other and unspecified superficial injury of hand(s) except finger(s) alone, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hand(s) except finger(s) alone (914)\\\\(914.8) Other and unspecified superficial injury of hand(s) except finger(s) alone, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\" + }, + { + "displayName": "(914.9) Other and unspecified superficial injury of hand(s) except finger(s) alone, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\(914.9) Other and unspecified superficial injury of hand(s) except finger(s) alone, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hand(s) except finger(s) alone (914)\\" + }, + { + "displayName": "Superficial injury of hip, thigh, leg, and ankle (916)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hip, thigh, leg, and ankle (916)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\" + }, + { + "displayName": "(916.0) Abrasion or friction burn of hip, thigh, leg, and ankle, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\(916.0) Abrasion or friction burn of hip, thigh, leg, and ankle, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\" + }, + { + "displayName": "(916.1) Abrasion or friction burn of hip, thigh, leg, and ankle, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\(916.1) Abrasion or friction burn of hip, thigh, leg, and ankle, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hip, thigh, leg, and ankle (916)\\\\(916.1) Abrasion or friction burn of hip, thigh, leg, and ankle, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\" + }, + { + "displayName": "(916.2) Blister of hip, thigh, leg, and ankle, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\(916.2) Blister of hip, thigh, leg, and ankle, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hip, thigh, leg, and ankle (916)\\\\(916.2) Blister of hip, thigh, leg, and ankle, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\" + }, + { + "displayName": "(916.3) Blister of hip, thigh, leg, and ankle, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\(916.3) Blister of hip, thigh, leg, and ankle, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hip, thigh, leg, and ankle (916)\\\\(916.3) Blister of hip, thigh, leg, and ankle, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\" + }, + { + "displayName": "(916.4) Insect bite, nonvenomous, of hip, thigh, leg, and ankle, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\(916.4) Insect bite, nonvenomous, of hip, thigh, leg, and ankle, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\" + }, + { + "displayName": "(916.5) Insect bite, nonvenomous of hip, thigh, leg, and ankle, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\(916.5) Insect bite, nonvenomous of hip, thigh, leg, and ankle, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hip, thigh, leg, and ankle (916)\\\\(916.5) Insect bite, nonvenomous of hip, thigh, leg, and ankle, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\" + }, + { + "displayName": "(916.6) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound and without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\(916.6) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound and without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hip, thigh, leg, and ankle (916)\\\\(916.6) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound and without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\" + }, + { + "displayName": "(916.7) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\(916.7) Superficial foreign body (splinter) of hip, thigh, leg, and ankle, without major open wound, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\" + }, + { + "displayName": "(916.8) Other and unspecified superficial injury of hip, thigh, leg, and ankle, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\(916.8) Other and unspecified superficial injury of hip, thigh, leg, and ankle, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of hip, thigh, leg, and ankle (916)\\\\(916.8) Other and unspecified superficial injury of hip, thigh, leg, and ankle, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\" + }, + { + "displayName": "(916.9) Other and unspecified superficial injury of hip, thigh, leg, and ankle, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\(916.9) Other and unspecified superficial injury of hip, thigh, leg, and ankle, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of hip, thigh, leg, and ankle (916)\\" + }, + { + "displayName": "Superficial injury of other, multiple, and unspecified sites (919)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of other, multiple, and unspecified sites (919)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\" + }, + { + "displayName": "(919.0) Abrasion or friction burn of other, multiple, and unspecified sites, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\(919.0) Abrasion or friction burn of other, multiple, and unspecified sites, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\" + }, + { + "displayName": "(919.1) Abrasion or friction burn of other, multiple, and unspecified sites, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\(919.1) Abrasion or friction burn of other, multiple, and unspecified sites, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of other, multiple, and unspecified sites (919)\\\\(919.1) Abrasion or friction burn of other, multiple, and unspecified sites, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\" + }, + { + "displayName": "(919.2) Blister of other, multiple, and unspecified sites, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\(919.2) Blister of other, multiple, and unspecified sites, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\" + }, + { + "displayName": "(919.3) Blister of other, multiple, and unspecified sites, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\(919.3) Blister of other, multiple, and unspecified sites, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of other, multiple, and unspecified sites (919)\\\\(919.3) Blister of other, multiple, and unspecified sites, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\" + }, + { + "displayName": "(919.4) Insect bite, nonvenomous, of other, multiple, and unspecified sites, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\(919.4) Insect bite, nonvenomous, of other, multiple, and unspecified sites, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of other, multiple, and unspecified sites (919)\\\\(919.4) Insect bite, nonvenomous, of other, multiple, and unspecified sites, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\" + }, + { + "displayName": "(919.5) Insect bite, nonvenomous, of other, multiple, and unspecified sites, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\(919.5) Insect bite, nonvenomous, of other, multiple, and unspecified sites, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\" + }, + { + "displayName": "(919.6) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound and without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\(919.6) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound and without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of other, multiple, and unspecified sites (919)\\\\(919.6) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound and without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\" + }, + { + "displayName": "(919.7) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\(919.7) Superficial foreign body (splinter) of other, multiple, and unspecified sites, without major open wound, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\" + }, + { + "displayName": "(919.8) Other and unspecified superficial injury of other, multiple, and unspecified sites, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\(919.8) Other and unspecified superficial injury of other, multiple, and unspecified sites, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of other, multiple, and unspecified sites (919)\\\\(919.8) Other and unspecified superficial injury of other, multiple, and unspecified sites, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\" + }, + { + "displayName": "(919.9) Other and unspecified superficial injury of other, multiple, and unspecified sites, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\(919.9) Other and unspecified superficial injury of other, multiple, and unspecified sites, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of other, multiple, and unspecified sites (919)\\\\(919.9) Other and unspecified superficial injury of other, multiple, and unspecified sites, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of other, multiple, and unspecified sites (919)\\" + }, + { + "displayName": "Superficial injury of shoulder and upper arm (912)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of shoulder and upper arm (912)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\" + }, + { + "displayName": "(912.0) Abrasion or friction burn of shoulder and upper arm, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\(912.0) Abrasion or friction burn of shoulder and upper arm, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of shoulder and upper arm (912)\\\\(912.0) Abrasion or friction burn of shoulder and upper arm, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\" + }, + { + "displayName": "(912.1) Abrasion or friction burn of shoulder and upper arm, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\(912.1) Abrasion or friction burn of shoulder and upper arm, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of shoulder and upper arm (912)\\\\(912.1) Abrasion or friction burn of shoulder and upper arm, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\" + }, + { + "displayName": "(912.2) Blister of shoulder and upper arm, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\(912.2) Blister of shoulder and upper arm, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of shoulder and upper arm (912)\\\\(912.2) Blister of shoulder and upper arm, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\" + }, + { + "displayName": "(912.3) Blister of shoulder and upper arm, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\(912.3) Blister of shoulder and upper arm, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of shoulder and upper arm (912)\\\\(912.3) Blister of shoulder and upper arm, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\" + }, + { + "displayName": "(912.4) Insect bite, nonvenomous of shoulder and upper arm, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\(912.4) Insect bite, nonvenomous of shoulder and upper arm, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of shoulder and upper arm (912)\\\\(912.4) Insect bite, nonvenomous of shoulder and upper arm, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\" + }, + { + "displayName": "(912.5) Insect bite, nonvenomous of shoulder and upper arm, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\(912.5) Insect bite, nonvenomous of shoulder and upper arm, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of shoulder and upper arm (912)\\\\(912.5) Insect bite, nonvenomous of shoulder and upper arm, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\" + }, + { + "displayName": "(912.6) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound and without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\(912.6) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound and without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of shoulder and upper arm (912)\\\\(912.6) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound and without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\" + }, + { + "displayName": "(912.7) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\(912.7) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of shoulder and upper arm (912)\\\\(912.7) Superficial foreign body (splinter) of shoulder and upper arm, without major open wound, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\" + }, + { + "displayName": "(912.8) Other and unspecified superficial injury of shoulder and upper arm, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\(912.8) Other and unspecified superficial injury of shoulder and upper arm, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of shoulder and upper arm (912)\\\\(912.8) Other and unspecified superficial injury of shoulder and upper arm, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\" + }, + { + "displayName": "(912.9) Other and unspecified superficial injury of shoulder and upper arm, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\(912.9) Other and unspecified superficial injury of shoulder and upper arm, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of shoulder and upper arm (912)\\\\(912.9) Other and unspecified superficial injury of shoulder and upper arm, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of shoulder and upper arm (912)\\" + }, + { + "displayName": "Superficial injury of trunk (911)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of trunk (911)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\" + }, + { + "displayName": "(911.0) Abrasion or friction burn of trunk, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\(911.0) Abrasion or friction burn of trunk, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of trunk (911)\\\\(911.0) Abrasion or friction burn of trunk, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\" + }, + { + "displayName": "(911.1) Abrasion or friction burn of trunk, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\(911.1) Abrasion or friction burn of trunk, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of trunk (911)\\\\(911.1) Abrasion or friction burn of trunk, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\" + }, + { + "displayName": "(911.2) Blister of trunk, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\(911.2) Blister of trunk, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of trunk (911)\\\\(911.2) Blister of trunk, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\" + }, + { + "displayName": "(911.3) Blister of trunk, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\(911.3) Blister of trunk, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of trunk (911)\\\\(911.3) Blister of trunk, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\" + }, + { + "displayName": "(911.4) Insect bite, nonvenomous of trunk, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\(911.4) Insect bite, nonvenomous of trunk, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of trunk (911)\\\\(911.4) Insect bite, nonvenomous of trunk, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\" + }, + { + "displayName": "(911.5) Insect bite, nonvenomous of trunk, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\(911.5) Insect bite, nonvenomous of trunk, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of trunk (911)\\\\(911.5) Insect bite, nonvenomous of trunk, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\" + }, + { + "displayName": "(911.6) Superficial foreign body (splinter) of trunk, without major open wound and without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\(911.6) Superficial foreign body (splinter) of trunk, without major open wound and without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of trunk (911)\\\\(911.6) Superficial foreign body (splinter) of trunk, without major open wound and without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\" + }, + { + "displayName": "(911.7) Superficial foreign body (splinter) of trunk, without major open wound, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\(911.7) Superficial foreign body (splinter) of trunk, without major open wound, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of trunk (911)\\\\(911.7) Superficial foreign body (splinter) of trunk, without major open wound, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\" + }, + { + "displayName": "(911.8) Other and unspecified superficial injury of trunk, without mention of infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\(911.8) Other and unspecified superficial injury of trunk, without mention of infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of trunk (911)\\\\(911.8) Other and unspecified superficial injury of trunk, without mention of infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\" + }, + { + "displayName": "(911.9) Other and unspecified superficial injury of trunk, infected", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\(911.9) Other and unspecified superficial injury of trunk, infected\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Superficial injury (910-919.99)\\\\Superficial injury of trunk (911)\\\\(911.9) Other and unspecified superficial injury of trunk, infected\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Superficial injury (910-919.99)\\Superficial injury of trunk (911)\\" + }, + { + "displayName": "Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\" + }, + { + "displayName": "(981) Toxic effect of petroleum products", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\(981) Toxic effect of petroleum products\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\(981) Toxic effect of petroleum products\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\" + }, + { + "displayName": "(986) Toxic effect of carbon monoxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\(986) Toxic effect of carbon monoxide\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\(986) Toxic effect of carbon monoxide\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\" + }, + { + "displayName": "Toxic effect of alcohol (980)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of alcohol (980)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\" + }, + { + "displayName": "(980.0) Toxic effect of ethyl alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\(980.0) Toxic effect of ethyl alcohol\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of alcohol (980)\\\\(980.0) Toxic effect of ethyl alcohol\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\" + }, + { + "displayName": "(980.1) Toxic effect of methyl alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\(980.1) Toxic effect of methyl alcohol\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of alcohol (980)\\\\(980.1) Toxic effect of methyl alcohol\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\" + }, + { + "displayName": "(980.2) Toxic effect of isopropyl alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\(980.2) Toxic effect of isopropyl alcohol\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of alcohol (980)\\\\(980.2) Toxic effect of isopropyl alcohol\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\" + }, + { + "displayName": "(980.3) Toxic effect of fusel oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\(980.3) Toxic effect of fusel oil\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of alcohol (980)\\\\(980.3) Toxic effect of fusel oil\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\" + }, + { + "displayName": "(980.8) Toxic effect of other specified alcohols", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\(980.8) Toxic effect of other specified alcohols\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of alcohol (980)\\\\(980.8) Toxic effect of other specified alcohols\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\" + }, + { + "displayName": "(980.9) Toxic effect of unspecified alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\(980.9) Toxic effect of unspecified alcohol\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of alcohol (980)\\\\(980.9) Toxic effect of unspecified alcohol\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of alcohol (980)\\" + }, + { + "displayName": "Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\" + }, + { + "displayName": "(983.0) Toxic effect of corrosive aromatics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\(983.0) Toxic effect of corrosive aromatics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\\\(983.0) Toxic effect of corrosive aromatics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\" + }, + { + "displayName": "(983.1) Toxic effect of acids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\(983.1) Toxic effect of acids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\" + }, + { + "displayName": "(983.2) Toxic effect of caustic alkalis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\(983.2) Toxic effect of caustic alkalis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\\\(983.2) Toxic effect of caustic alkalis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\" + }, + { + "displayName": "(983.9) Toxic effect of caustic, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\(983.9) Toxic effect of caustic, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of corrosive aromatics, acids, and caustic alkalis (983)\\" + }, + { + "displayName": "Toxic effect of lead and its compounds (including fumes) (984)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of lead and its compounds (including fumes) (984)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\" + }, + { + "displayName": "(984.0) Toxic effect of inorganic lead compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of lead and its compounds (including fumes) (984)\\(984.0) Toxic effect of inorganic lead compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of lead and its compounds (including fumes) (984)\\" + }, + { + "displayName": "(984.1) Toxic effect of organic lead compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of lead and its compounds (including fumes) (984)\\(984.1) Toxic effect of organic lead compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of lead and its compounds (including fumes) (984)\\" + }, + { + "displayName": "(984.8) Toxic effect of other lead compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of lead and its compounds (including fumes) (984)\\(984.8) Toxic effect of other lead compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of lead and its compounds (including fumes) (984)\\" + }, + { + "displayName": "(984.9) Toxic effect of unspecified lead compound", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of lead and its compounds (including fumes) (984)\\(984.9) Toxic effect of unspecified lead compound\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of lead and its compounds (including fumes) (984)\\" + }, + { + "displayName": "Toxic effect of noxious substances eaten as food (988)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of noxious substances eaten as food (988)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\" + }, + { + "displayName": "(988.0) Toxic effect of fish and shellfish eaten as food", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of noxious substances eaten as food (988)\\(988.0) Toxic effect of fish and shellfish eaten as food\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of noxious substances eaten as food (988)\\" + }, + { + "displayName": "(988.1) Toxic effect of mushrooms eaten as food", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of noxious substances eaten as food (988)\\(988.1) Toxic effect of mushrooms eaten as food\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of noxious substances eaten as food (988)\\" + }, + { + "displayName": "(988.2) Toxic effect of berries and other plants eaten as food", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of noxious substances eaten as food (988)\\(988.2) Toxic effect of berries and other plants eaten as food\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of noxious substances eaten as food (988)\\" + }, + { + "displayName": "(988.8) Toxic effect of other specified noxious substances eaten as food", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of noxious substances eaten as food (988)\\(988.8) Toxic effect of other specified noxious substances eaten as food\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of noxious substances eaten as food (988)\\" + }, + { + "displayName": "(988.9) Toxic effect of unspecified noxious substance eaten as food", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of noxious substances eaten as food (988)\\(988.9) Toxic effect of unspecified noxious substance eaten as food\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of noxious substances eaten as food (988)\\" + }, + { + "displayName": "Toxic effect of other gases, fumes, or vapors (987)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\" + }, + { + "displayName": "(987.0) Toxic effect of liquefied petroleum gases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\(987.0) Toxic effect of liquefied petroleum gases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\" + }, + { + "displayName": "(987.1) Toxic effect of other hydrocarbon gas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\(987.1) Toxic effect of other hydrocarbon gas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\" + }, + { + "displayName": "(987.2) Toxic effect of nitrogen oxides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\(987.2) Toxic effect of nitrogen oxides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other gases, fumes, or vapors (987)\\\\(987.2) Toxic effect of nitrogen oxides\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\" + }, + { + "displayName": "(987.3) Toxic effect of sulfur dioxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\(987.3) Toxic effect of sulfur dioxide\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other gases, fumes, or vapors (987)\\\\(987.3) Toxic effect of sulfur dioxide\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\" + }, + { + "displayName": "(987.4) Toxic effect of freon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\(987.4) Toxic effect of freon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other gases, fumes, or vapors (987)\\\\(987.4) Toxic effect of freon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\" + }, + { + "displayName": "(987.5) Toxic effect of lacrimogenic gas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\(987.5) Toxic effect of lacrimogenic gas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\" + }, + { + "displayName": "(987.6) Toxic effect of chlorine gas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\(987.6) Toxic effect of chlorine gas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other gases, fumes, or vapors (987)\\\\(987.6) Toxic effect of chlorine gas\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\" + }, + { + "displayName": "(987.7) Toxic effect of hydrocyanic acid gas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\(987.7) Toxic effect of hydrocyanic acid gas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\" + }, + { + "displayName": "(987.8) Toxic effect of other specified gases, fumes, or vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\(987.8) Toxic effect of other specified gases, fumes, or vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\" + }, + { + "displayName": "(987.9) Toxic effect of unspecified gas, fume, or vapor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\(987.9) Toxic effect of unspecified gas, fume, or vapor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other gases, fumes, or vapors (987)\\" + }, + { + "displayName": "Toxic effect of other metals (985)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\" + }, + { + "displayName": "(985.0) Toxic effect of mercury and its compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\(985.0) Toxic effect of mercury and its compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\" + }, + { + "displayName": "(985.1) Toxic effect of arsenic and its compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\(985.1) Toxic effect of arsenic and its compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\" + }, + { + "displayName": "(985.2) Toxic effect of manganese and its compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\(985.2) Toxic effect of manganese and its compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\" + }, + { + "displayName": "(985.3) Toxic effect of beryllium and its compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\(985.3) Toxic effect of beryllium and its compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other metals (985)\\\\(985.3) Toxic effect of beryllium and its compounds\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\" + }, + { + "displayName": "(985.4) Toxic effect of antimony and its compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\(985.4) Toxic effect of antimony and its compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other metals (985)\\\\(985.4) Toxic effect of antimony and its compounds\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\" + }, + { + "displayName": "(985.5) Toxic effect of cadmium and its compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\(985.5) Toxic effect of cadmium and its compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other metals (985)\\\\(985.5) Toxic effect of cadmium and its compounds\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\" + }, + { + "displayName": "(985.6) Toxic effect of chromium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\(985.6) Toxic effect of chromium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other metals (985)\\\\(985.6) Toxic effect of chromium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\" + }, + { + "displayName": "(985.8) Toxic effect of other specified metals", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\(985.8) Toxic effect of other specified metals\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\" + }, + { + "displayName": "(985.9) Toxic effect of unspecified metal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\(985.9) Toxic effect of unspecified metal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other metals (985)\\" + }, + { + "displayName": "Toxic effect of other substances, chiefly nonmedicinal as to source (989)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\" + }, + { + "displayName": "(989.0) Toxic effect of hydrocyanic acid and cyanides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\(989.0) Toxic effect of hydrocyanic acid and cyanides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\" + }, + { + "displayName": "(989.1) Toxic effect of strychnine and salts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\(989.1) Toxic effect of strychnine and salts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\" + }, + { + "displayName": "(989.2) Toxic effect of chlorinated hydrocarbons", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\(989.2) Toxic effect of chlorinated hydrocarbons\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\" + }, + { + "displayName": "(989.3) Toxic effect of organophosphate and carbamate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\(989.3) Toxic effect of organophosphate and carbamate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\\\(989.3) Toxic effect of organophosphate and carbamate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\" + }, + { + "displayName": "(989.4) Toxic effect of other pesticides, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\(989.4) Toxic effect of other pesticides, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\\\(989.4) Toxic effect of other pesticides, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\" + }, + { + "displayName": "(989.5) Toxic effect of venom", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\(989.5) Toxic effect of venom\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\\\(989.5) Toxic effect of venom\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\" + }, + { + "displayName": "(989.6) Toxic effect of soaps and detergents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\(989.6) Toxic effect of soaps and detergents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\\\(989.6) Toxic effect of soaps and detergents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\" + }, + { + "displayName": "(989.7) Toxic effect of aflatoxin and other mycotoxin (food contaminants)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\(989.7) Toxic effect of aflatoxin and other mycotoxin (food contaminants)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\\\(989.7) Toxic effect of aflatoxin and other mycotoxin (food contaminants)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\" + }, + { + "displayName": "(989.9) Toxic effect of unspecified substance, chiefly nonmedicinal as to source", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\(989.9) Toxic effect of unspecified substance, chiefly nonmedicinal as to source\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\\\(989.9) Toxic effect of unspecified substance, chiefly nonmedicinal as to source\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\" + }, + { + "displayName": "Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\" + }, + { + "displayName": "(989.81) Toxic effect of asbestos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\\(989.81) Toxic effect of asbestos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\\" + }, + { + "displayName": "(989.82) Toxic effect of latex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\\(989.82) Toxic effect of latex\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\\" + }, + { + "displayName": "(989.83) Toxic effect of silicone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\\(989.83) Toxic effect of silicone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\\" + }, + { + "displayName": "(989.84) Toxic effect of tobacco", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\\(989.84) Toxic effect of tobacco\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\\" + }, + { + "displayName": "(989.89) Toxic effect of other substance, chiefly nonmedicinal as to source, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\\(989.89) Toxic effect of other substance, chiefly nonmedicinal as to source, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989)\\Toxic effect of other substances, chiefly nonmedicinal as to source (989.8)\\" + }, + { + "displayName": "Toxic effect of solvents other than petroleum based (982)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\" + }, + { + "displayName": "(982.0) Toxic effect of benzene and homologues", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\(982.0) Toxic effect of benzene and homologues\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of solvents other than petroleum based (982)\\\\(982.0) Toxic effect of benzene and homologues\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\" + }, + { + "displayName": "(982.1) Toxic effect of carbon tetrachloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\(982.1) Toxic effect of carbon tetrachloride\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of solvents other than petroleum based (982)\\\\(982.1) Toxic effect of carbon tetrachloride\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\" + }, + { + "displayName": "(982.2) Toxic effect of carbon disulfide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\(982.2) Toxic effect of carbon disulfide\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of solvents other than petroleum based (982)\\\\(982.2) Toxic effect of carbon disulfide\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\" + }, + { + "displayName": "(982.3) Toxic effect of other chlorinated hydrocarbon solvents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\(982.3) Toxic effect of other chlorinated hydrocarbon solvents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of solvents other than petroleum based (982)\\\\(982.3) Toxic effect of other chlorinated hydrocarbon solvents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\" + }, + { + "displayName": "(982.4) Toxic effect of nitroglycol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\(982.4) Toxic effect of nitroglycol\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of solvents other than petroleum based (982)\\\\(982.4) Toxic effect of nitroglycol\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\" + }, + { + "displayName": "(982.8) Toxic effect of other nonpetroleum-based solvents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\(982.8) Toxic effect of other nonpetroleum-based solvents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Injury and poisoning (800-999.99)\\\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\\\Toxic effect of solvents other than petroleum based (982)\\\\(982.8) Toxic effect of other nonpetroleum-based solvents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Injury and poisoning (800-999.99)\\Toxic effects of substances chiefly nonmedicinal as to source (980-989.99)\\Toxic effect of solvents other than petroleum based (982)\\" + }, + { + "displayName": "Mental, behavioral and neurodevelopmental disorders (290-319.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Intellectual disabilities (317-319.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Intellectual disabilities (317-319.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\" + }, + { + "displayName": "(317) Mild intellectual disabilities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\(317) Mild intellectual disabilities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Intellectual disabilities (317-319.99)\\\\(317) Mild intellectual disabilities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\" + }, + { + "displayName": "(319) Unspecified intellectual disabilities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\(319) Unspecified intellectual disabilities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Intellectual disabilities (317-319.99)\\\\(319) Unspecified intellectual disabilities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\" + }, + { + "displayName": "Other specified intellectual disabilities (318)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\Other specified intellectual disabilities (318)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Intellectual disabilities (317-319.99)\\\\Other specified intellectual disabilities (318)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\" + }, + { + "displayName": "(318.0) Moderate intellectual disabilities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\Other specified intellectual disabilities (318)\\(318.0) Moderate intellectual disabilities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\Other specified intellectual disabilities (318)\\" + }, + { + "displayName": "(318.1) Severe intellectual disabilities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\Other specified intellectual disabilities (318)\\(318.1) Severe intellectual disabilities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\Other specified intellectual disabilities (318)\\" + }, + { + "displayName": "(318.2) Profound intellectual disabilities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\Other specified intellectual disabilities (318)\\(318.2) Profound intellectual disabilities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Intellectual disabilities (317-319.99)\\Other specified intellectual disabilities (318)\\" + }, + { + "displayName": "Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\" + }, + { + "displayName": "(311) Depressive disorder, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\(311) Depressive disorder, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(316) Psychic factors associated with diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\(316) Psychic factors associated with diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "Acute reaction to stress (308)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(308.0) Predominant disturbance of emotions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\(308.0) Predominant disturbance of emotions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\" + }, + { + "displayName": "(308.1) Predominant disturbance of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\(308.1) Predominant disturbance of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Acute reaction to stress (308)\\\\(308.1) Predominant disturbance of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\" + }, + { + "displayName": "(308.2) Predominant psychomotor disturbance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\(308.2) Predominant psychomotor disturbance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Acute reaction to stress (308)\\\\(308.2) Predominant psychomotor disturbance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\" + }, + { + "displayName": "(308.3) Other acute reactions to stress", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\(308.3) Other acute reactions to stress\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Acute reaction to stress (308)\\\\(308.3) Other acute reactions to stress\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\" + }, + { + "displayName": "(308.4) Mixed disorders as reaction to stress", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\(308.4) Mixed disorders as reaction to stress\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Acute reaction to stress (308)\\\\(308.4) Mixed disorders as reaction to stress\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\" + }, + { + "displayName": "(308.9) Unspecified acute reaction to stress", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\(308.9) Unspecified acute reaction to stress\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Acute reaction to stress (308)\\\\(308.9) Unspecified acute reaction to stress\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Acute reaction to stress (308)\\" + }, + { + "displayName": "Adjustment reaction (309)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(309.0) Adjustment disorder with depressed mood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\(309.0) Adjustment disorder with depressed mood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\" + }, + { + "displayName": "(309.1) Prolonged depressive reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\(309.1) Prolonged depressive reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\" + }, + { + "displayName": "(309.3) Adjustment disorder with disturbance of conduct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\(309.3) Adjustment disorder with disturbance of conduct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\" + }, + { + "displayName": "(309.4) Adjustment disorder with mixed disturbance of emotions and conduct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\(309.4) Adjustment disorder with mixed disturbance of emotions and conduct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\" + }, + { + "displayName": "(309.9) Unspecified adjustment reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\(309.9) Unspecified adjustment reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\" + }, + { + "displayName": "Adjustment reaction with predominant disturbance of other emotions (309.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\" + }, + { + "displayName": "(309.21) Separation anxiety disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\(309.21) Separation anxiety disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\" + }, + { + "displayName": "(309.22) Emancipation disorder of adolescence and early adult life", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\(309.22) Emancipation disorder of adolescence and early adult life\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\" + }, + { + "displayName": "(309.23) Specific academic or work inhibition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\(309.23) Specific academic or work inhibition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\" + }, + { + "displayName": "(309.24) Adjustment disorder with anxiety", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\(309.24) Adjustment disorder with anxiety\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\" + }, + { + "displayName": "(309.28) Adjustment disorder with mixed anxiety and depressed mood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\(309.28) Adjustment disorder with mixed anxiety and depressed mood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\" + }, + { + "displayName": "(309.29) Other adjustment reactions with predominant disturbance of other emotions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\(309.29) Other adjustment reactions with predominant disturbance of other emotions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Adjustment reaction with predominant disturbance of other emotions (309.2)\\" + }, + { + "displayName": "Other specified adjustment reactions (309.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Other specified adjustment reactions (309.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\" + }, + { + "displayName": "(309.81) Posttraumatic stress disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Other specified adjustment reactions (309.8)\\(309.81) Posttraumatic stress disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Other specified adjustment reactions (309.8)\\" + }, + { + "displayName": "(309.82) Adjustment reaction with physical symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Other specified adjustment reactions (309.8)\\(309.82) Adjustment reaction with physical symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Other specified adjustment reactions (309.8)\\" + }, + { + "displayName": "(309.83) Adjustment reaction with withdrawal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Other specified adjustment reactions (309.8)\\(309.83) Adjustment reaction with withdrawal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Other specified adjustment reactions (309.8)\\" + }, + { + "displayName": "(309.89) Other specified adjustment reactions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Other specified adjustment reactions (309.8)\\(309.89) Other specified adjustment reactions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Adjustment reaction (309)\\Other specified adjustment reactions (309.8)\\" + }, + { + "displayName": "Alcohol dependence syndrome (303)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "Acute alcoholic intoxication (303.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Acute alcoholic intoxication (303.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\" + }, + { + "displayName": "(303.00) Acute alcoholic intoxication in alcoholism, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Acute alcoholic intoxication (303.0)\\(303.00) Acute alcoholic intoxication in alcoholism, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Acute alcoholic intoxication (303.0)\\" + }, + { + "displayName": "(303.01) Acute alcoholic intoxication in alcoholism, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Acute alcoholic intoxication (303.0)\\(303.01) Acute alcoholic intoxication in alcoholism, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Alcohol dependence syndrome (303)\\\\Acute alcoholic intoxication (303.0)\\\\(303.01) Acute alcoholic intoxication in alcoholism, continuous\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Acute alcoholic intoxication (303.0)\\" + }, + { + "displayName": "(303.02) Acute alcoholic intoxication in alcoholism, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Acute alcoholic intoxication (303.0)\\(303.02) Acute alcoholic intoxication in alcoholism, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Alcohol dependence syndrome (303)\\\\Acute alcoholic intoxication (303.0)\\\\(303.02) Acute alcoholic intoxication in alcoholism, episodic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Acute alcoholic intoxication (303.0)\\" + }, + { + "displayName": "(303.03) Acute alcoholic intoxication in alcoholism, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Acute alcoholic intoxication (303.0)\\(303.03) Acute alcoholic intoxication in alcoholism, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Alcohol dependence syndrome (303)\\\\Acute alcoholic intoxication (303.0)\\\\(303.03) Acute alcoholic intoxication in alcoholism, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Acute alcoholic intoxication (303.0)\\" + }, + { + "displayName": "Other and unspecified alcohol dependence (303.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Other and unspecified alcohol dependence (303.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Alcohol dependence syndrome (303)\\\\Other and unspecified alcohol dependence (303.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\" + }, + { + "displayName": "(303.90) Other and unspecified alcohol dependence, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Other and unspecified alcohol dependence (303.9)\\(303.90) Other and unspecified alcohol dependence, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Alcohol dependence syndrome (303)\\\\Other and unspecified alcohol dependence (303.9)\\\\(303.90) Other and unspecified alcohol dependence, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Other and unspecified alcohol dependence (303.9)\\" + }, + { + "displayName": "(303.91) Other and unspecified alcohol dependence, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Other and unspecified alcohol dependence (303.9)\\(303.91) Other and unspecified alcohol dependence, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Alcohol dependence syndrome (303)\\\\Other and unspecified alcohol dependence (303.9)\\\\(303.91) Other and unspecified alcohol dependence, continuous\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Other and unspecified alcohol dependence (303.9)\\" + }, + { + "displayName": "(303.92) Other and unspecified alcohol dependence, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Other and unspecified alcohol dependence (303.9)\\(303.92) Other and unspecified alcohol dependence, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Other and unspecified alcohol dependence (303.9)\\" + }, + { + "displayName": "(303.93) Other and unspecified alcohol dependence, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Other and unspecified alcohol dependence (303.9)\\(303.93) Other and unspecified alcohol dependence, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Alcohol dependence syndrome (303)\\\\Other and unspecified alcohol dependence (303.9)\\\\(303.93) Other and unspecified alcohol dependence, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Alcohol dependence syndrome (303)\\Other and unspecified alcohol dependence (303.9)\\" + }, + { + "displayName": "Anxiety, dissociative and somatoform disorders (300)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(300.3) Obsessive-compulsive disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\(300.3) Obsessive-compulsive disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\(300.3) Obsessive-compulsive disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\" + }, + { + "displayName": "(300.4) Dysthymic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\(300.4) Dysthymic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\(300.4) Dysthymic disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\" + }, + { + "displayName": "(300.5) Neurasthenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\(300.5) Neurasthenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\" + }, + { + "displayName": "(300.6) Depersonalization disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\(300.6) Depersonalization disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\" + }, + { + "displayName": "(300.7) Hypochondriasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\(300.7) Hypochondriasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\" + }, + { + "displayName": "(300.9) Unspecified nonpsychotic mental disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\(300.9) Unspecified nonpsychotic mental disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\" + }, + { + "displayName": "Anxiety states (300.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Anxiety states (300.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\" + }, + { + "displayName": "(300.00) Anxiety state, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Anxiety states (300.0)\\(300.00) Anxiety state, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Anxiety states (300.0)\\" + }, + { + "displayName": "(300.01) Panic disorder without agoraphobia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Anxiety states (300.0)\\(300.01) Panic disorder without agoraphobia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Anxiety states (300.0)\\" + }, + { + "displayName": "(300.02) Generalized anxiety disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Anxiety states (300.0)\\(300.02) Generalized anxiety disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Anxiety states (300.0)\\" + }, + { + "displayName": "(300.09) Other anxiety states", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Anxiety states (300.0)\\(300.09) Other anxiety states\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Anxiety states (300.0)\\" + }, + { + "displayName": "Dissociative, conversion and factitious disorders (300.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\" + }, + { + "displayName": "(300.10) Hysteria, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\(300.10) Hysteria, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\" + }, + { + "displayName": "(300.11) Conversion disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\(300.11) Conversion disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Dissociative, conversion and factitious disorders (300.1)\\\\(300.11) Conversion disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\" + }, + { + "displayName": "(300.12) Dissociative amnesia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\(300.12) Dissociative amnesia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Dissociative, conversion and factitious disorders (300.1)\\\\(300.12) Dissociative amnesia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\" + }, + { + "displayName": "(300.13) Dissociative fugue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\(300.13) Dissociative fugue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Dissociative, conversion and factitious disorders (300.1)\\\\(300.13) Dissociative fugue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\" + }, + { + "displayName": "(300.14) Dissociative identity disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\(300.14) Dissociative identity disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\" + }, + { + "displayName": "(300.15) Dissociative disorder or reaction, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\(300.15) Dissociative disorder or reaction, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Dissociative, conversion and factitious disorders (300.1)\\\\(300.15) Dissociative disorder or reaction, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\" + }, + { + "displayName": "(300.16) Factitious disorder with predominantly psychological signs and symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\(300.16) Factitious disorder with predominantly psychological signs and symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Dissociative, conversion and factitious disorders (300.1)\\\\(300.16) Factitious disorder with predominantly psychological signs and symptoms\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\" + }, + { + "displayName": "(300.19) Other and unspecified factitious illness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\(300.19) Other and unspecified factitious illness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Dissociative, conversion and factitious disorders (300.1)\\\\(300.19) Other and unspecified factitious illness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Dissociative, conversion and factitious disorders (300.1)\\" + }, + { + "displayName": "Phobic disorders (300.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Phobic disorders (300.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\" + }, + { + "displayName": "(300.20) Phobia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Phobic disorders (300.2)\\(300.20) Phobia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Phobic disorders (300.2)\\\\(300.20) Phobia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Phobic disorders (300.2)\\" + }, + { + "displayName": "(300.21) Agoraphobia with panic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Phobic disorders (300.2)\\(300.21) Agoraphobia with panic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Phobic disorders (300.2)\\\\(300.21) Agoraphobia with panic disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Phobic disorders (300.2)\\" + }, + { + "displayName": "(300.22) Agoraphobia without mention of panic attacks", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Phobic disorders (300.2)\\(300.22) Agoraphobia without mention of panic attacks\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Phobic disorders (300.2)\\\\(300.22) Agoraphobia without mention of panic attacks\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Phobic disorders (300.2)\\" + }, + { + "displayName": "(300.23) Social phobia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Phobic disorders (300.2)\\(300.23) Social phobia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Phobic disorders (300.2)\\\\(300.23) Social phobia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Phobic disorders (300.2)\\" + }, + { + "displayName": "(300.29) Other isolated or specific phobias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Phobic disorders (300.2)\\(300.29) Other isolated or specific phobias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Phobic disorders (300.2)\\\\(300.29) Other isolated or specific phobias\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Phobic disorders (300.2)\\" + }, + { + "displayName": "Somatoform disorders (300.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Somatoform disorders (300.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Anxiety, dissociative and somatoform disorders (300)\\\\Somatoform disorders (300.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\" + }, + { + "displayName": "(300.81) Somatization disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Somatoform disorders (300.8)\\(300.81) Somatization disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Somatoform disorders (300.8)\\" + }, + { + "displayName": "(300.82) Undifferentiated somatoform disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Somatoform disorders (300.8)\\(300.82) Undifferentiated somatoform disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Somatoform disorders (300.8)\\" + }, + { + "displayName": "(300.89) Other somatoform disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Somatoform disorders (300.8)\\(300.89) Other somatoform disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Anxiety, dissociative and somatoform disorders (300)\\Somatoform disorders (300.8)\\" + }, + { + "displayName": "Disturbance of conduct, not elsewhere classified (312)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(312.4) Mixed disturbance of conduct and emotions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\(312.4) Mixed disturbance of conduct and emotions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\" + }, + { + "displayName": "(312.9) Unspecified disturbance of conduct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\(312.9) Unspecified disturbance of conduct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\" + }, + { + "displayName": "Disorders of impulse control, not elsewhere classified (312.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\" + }, + { + "displayName": "(312.30) Impulse control disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\(312.30) Impulse control disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\" + }, + { + "displayName": "(312.31) Pathological gambling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\(312.31) Pathological gambling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\" + }, + { + "displayName": "(312.32) Kleptomania", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\(312.32) Kleptomania\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\" + }, + { + "displayName": "(312.33) Pyromania", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\(312.33) Pyromania\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\" + }, + { + "displayName": "(312.34) Intermittent explosive disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\(312.34) Intermittent explosive disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\" + }, + { + "displayName": "(312.35) Isolated explosive disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\(312.35) Isolated explosive disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\" + }, + { + "displayName": "(312.39) Other disorders of impulse control", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\(312.39) Other disorders of impulse control\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Disorders of impulse control, not elsewhere classified (312.3)\\" + }, + { + "displayName": "Other specified disturbances of conduct, not elsewhere classified (312.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Other specified disturbances of conduct, not elsewhere classified (312.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\" + }, + { + "displayName": "(312.81) Conduct disorder, childhood onset type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Other specified disturbances of conduct, not elsewhere classified (312.8)\\(312.81) Conduct disorder, childhood onset type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Other specified disturbances of conduct, not elsewhere classified (312.8)\\" + }, + { + "displayName": "(312.82) Conduct disorder, adolescent onset type", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Other specified disturbances of conduct, not elsewhere classified (312.8)\\(312.82) Conduct disorder, adolescent onset type\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Other specified disturbances of conduct, not elsewhere classified (312.8)\\" + }, + { + "displayName": "(312.89) Other conduct disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Other specified disturbances of conduct, not elsewhere classified (312.8)\\(312.89) Other conduct disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Other specified disturbances of conduct, not elsewhere classified (312.8)\\" + }, + { + "displayName": "Socialized conduct disorder (312.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Socialized conduct disorder (312.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\" + }, + { + "displayName": "(312.20) Socialized conduct disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Socialized conduct disorder (312.2)\\(312.20) Socialized conduct disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Socialized conduct disorder (312.2)\\" + }, + { + "displayName": "(312.21) Socialized conduct disorder, mild", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Socialized conduct disorder (312.2)\\(312.21) Socialized conduct disorder, mild\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Socialized conduct disorder (312.2)\\" + }, + { + "displayName": "(312.22) Socialized conduct disorder, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Socialized conduct disorder (312.2)\\(312.22) Socialized conduct disorder, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Socialized conduct disorder (312.2)\\" + }, + { + "displayName": "(312.23) Socialized conduct disorder, severe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Socialized conduct disorder (312.2)\\(312.23) Socialized conduct disorder, severe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Socialized conduct disorder (312.2)\\" + }, + { + "displayName": "Undersocialized conduct disorder, aggressive type (312.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, aggressive type (312.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\" + }, + { + "displayName": "(312.00) Undersocialized conduct disorder, aggressive type, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, aggressive type (312.0)\\(312.00) Undersocialized conduct disorder, aggressive type, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of conduct, not elsewhere classified (312)\\\\Undersocialized conduct disorder, aggressive type (312.0)\\\\(312.00) Undersocialized conduct disorder, aggressive type, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, aggressive type (312.0)\\" + }, + { + "displayName": "(312.01) Undersocialized conduct disorder, aggressive type, mild", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, aggressive type (312.0)\\(312.01) Undersocialized conduct disorder, aggressive type, mild\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of conduct, not elsewhere classified (312)\\\\Undersocialized conduct disorder, aggressive type (312.0)\\\\(312.01) Undersocialized conduct disorder, aggressive type, mild\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, aggressive type (312.0)\\" + }, + { + "displayName": "(312.02) Undersocialized conduct disorder, aggressive type, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, aggressive type (312.0)\\(312.02) Undersocialized conduct disorder, aggressive type, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of conduct, not elsewhere classified (312)\\\\Undersocialized conduct disorder, aggressive type (312.0)\\\\(312.02) Undersocialized conduct disorder, aggressive type, moderate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, aggressive type (312.0)\\" + }, + { + "displayName": "(312.03) Undersocialized conduct disorder, aggressive type, severe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, aggressive type (312.0)\\(312.03) Undersocialized conduct disorder, aggressive type, severe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, aggressive type (312.0)\\" + }, + { + "displayName": "Undersocialized conduct disorder, unaggressive type (312.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, unaggressive type (312.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of conduct, not elsewhere classified (312)\\\\Undersocialized conduct disorder, unaggressive type (312.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\" + }, + { + "displayName": "(312.10) Undersocialized conduct disorder, unaggressive type, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, unaggressive type (312.1)\\(312.10) Undersocialized conduct disorder, unaggressive type, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, unaggressive type (312.1)\\" + }, + { + "displayName": "(312.11) Undersocialized conduct disorder, unaggressive type, mild", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, unaggressive type (312.1)\\(312.11) Undersocialized conduct disorder, unaggressive type, mild\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of conduct, not elsewhere classified (312)\\\\Undersocialized conduct disorder, unaggressive type (312.1)\\\\(312.11) Undersocialized conduct disorder, unaggressive type, mild\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, unaggressive type (312.1)\\" + }, + { + "displayName": "(312.12) Undersocialized conduct disorder, unaggressive type, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, unaggressive type (312.1)\\(312.12) Undersocialized conduct disorder, unaggressive type, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of conduct, not elsewhere classified (312)\\\\Undersocialized conduct disorder, unaggressive type (312.1)\\\\(312.12) Undersocialized conduct disorder, unaggressive type, moderate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, unaggressive type (312.1)\\" + }, + { + "displayName": "(312.13) Undersocialized conduct disorder, unaggressive type, severe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, unaggressive type (312.1)\\(312.13) Undersocialized conduct disorder, unaggressive type, severe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of conduct, not elsewhere classified (312)\\\\Undersocialized conduct disorder, unaggressive type (312.1)\\\\(312.13) Undersocialized conduct disorder, unaggressive type, severe\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of conduct, not elsewhere classified (312)\\Undersocialized conduct disorder, unaggressive type (312.1)\\" + }, + { + "displayName": "Disturbance of emotions specific to childhood and adolescence (313)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of emotions specific to childhood and adolescence (313)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(313.0) Overanxious disorder specific to childhood and adolescence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\(313.0) Overanxious disorder specific to childhood and adolescence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of emotions specific to childhood and adolescence (313)\\\\(313.0) Overanxious disorder specific to childhood and adolescence\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\" + }, + { + "displayName": "(313.1) Misery and unhappiness disorder specific to childhood and adolescence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\(313.1) Misery and unhappiness disorder specific to childhood and adolescence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\" + }, + { + "displayName": "(313.3) Relationship problems specific to childhood and adolescence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\(313.3) Relationship problems specific to childhood and adolescence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\" + }, + { + "displayName": "(313.9) Unspecified emotional disturbance of childhood or adolescence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\(313.9) Unspecified emotional disturbance of childhood or adolescence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\" + }, + { + "displayName": "Other or mixed emotional disturbances of childhood or adolescence (313.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Other or mixed emotional disturbances of childhood or adolescence (313.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\" + }, + { + "displayName": "(313.81) Oppositional defiant disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Other or mixed emotional disturbances of childhood or adolescence (313.8)\\(313.81) Oppositional defiant disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Other or mixed emotional disturbances of childhood or adolescence (313.8)\\" + }, + { + "displayName": "(313.82) Identity disorder of childhood or adolescence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Other or mixed emotional disturbances of childhood or adolescence (313.8)\\(313.82) Identity disorder of childhood or adolescence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Other or mixed emotional disturbances of childhood or adolescence (313.8)\\" + }, + { + "displayName": "(313.83) Academic underachievement disorder of childhood or adolescence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Other or mixed emotional disturbances of childhood or adolescence (313.8)\\(313.83) Academic underachievement disorder of childhood or adolescence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Other or mixed emotional disturbances of childhood or adolescence (313.8)\\" + }, + { + "displayName": "(313.89) Other emotional disturbances of childhood or adolescence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Other or mixed emotional disturbances of childhood or adolescence (313.8)\\(313.89) Other emotional disturbances of childhood or adolescence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Other or mixed emotional disturbances of childhood or adolescence (313.8)\\" + }, + { + "displayName": "Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of emotions specific to childhood and adolescence (313)\\\\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\" + }, + { + "displayName": "(313.21) Shyness disorder of childhood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\\(313.21) Shyness disorder of childhood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of emotions specific to childhood and adolescence (313)\\\\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\\\\(313.21) Shyness disorder of childhood\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\\" + }, + { + "displayName": "(313.22) Introverted disorder of childhood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\\(313.22) Introverted disorder of childhood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Disturbance of emotions specific to childhood and adolescence (313)\\\\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\\\\(313.22) Introverted disorder of childhood\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\\" + }, + { + "displayName": "(313.23) Selective mutism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\\(313.23) Selective mutism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Disturbance of emotions specific to childhood and adolescence (313)\\Sensitivity, shyness, and social withdrawal disorder specific to childhood and adolescence (313.2)\\" + }, + { + "displayName": "Drug dependence (304)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "Amphetamine and other psychostimulant dependence (304.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Amphetamine and other psychostimulant dependence (304.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\" + }, + { + "displayName": "(304.40) Amphetamine and other psychostimulant dependence, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Amphetamine and other psychostimulant dependence (304.4)\\(304.40) Amphetamine and other psychostimulant dependence, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Amphetamine and other psychostimulant dependence (304.4)\\" + }, + { + "displayName": "(304.41) Amphetamine and other psychostimulant dependence, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Amphetamine and other psychostimulant dependence (304.4)\\(304.41) Amphetamine and other psychostimulant dependence, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Amphetamine and other psychostimulant dependence (304.4)\\\\(304.41) Amphetamine and other psychostimulant dependence, continuous\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Amphetamine and other psychostimulant dependence (304.4)\\" + }, + { + "displayName": "(304.42) Amphetamine and other psychostimulant dependence, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Amphetamine and other psychostimulant dependence (304.4)\\(304.42) Amphetamine and other psychostimulant dependence, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Amphetamine and other psychostimulant dependence (304.4)\\\\(304.42) Amphetamine and other psychostimulant dependence, episodic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Amphetamine and other psychostimulant dependence (304.4)\\" + }, + { + "displayName": "(304.43) Amphetamine and other psychostimulant dependence, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Amphetamine and other psychostimulant dependence (304.4)\\(304.43) Amphetamine and other psychostimulant dependence, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Amphetamine and other psychostimulant dependence (304.4)\\" + }, + { + "displayName": "Cannabis dependence (304.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cannabis dependence (304.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\" + }, + { + "displayName": "(304.30) Cannabis dependence, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cannabis dependence (304.3)\\(304.30) Cannabis dependence, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cannabis dependence (304.3)\\" + }, + { + "displayName": "(304.31) Cannabis dependence, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cannabis dependence (304.3)\\(304.31) Cannabis dependence, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cannabis dependence (304.3)\\" + }, + { + "displayName": "(304.32) Cannabis dependence, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cannabis dependence (304.3)\\(304.32) Cannabis dependence, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cannabis dependence (304.3)\\" + }, + { + "displayName": "(304.33) Cannabis dependence, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cannabis dependence (304.3)\\(304.33) Cannabis dependence, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cannabis dependence (304.3)\\" + }, + { + "displayName": "Cocaine dependence (304.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cocaine dependence (304.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\" + }, + { + "displayName": "(304.20) Cocaine dependence, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cocaine dependence (304.2)\\(304.20) Cocaine dependence, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cocaine dependence (304.2)\\" + }, + { + "displayName": "(304.21) Cocaine dependence, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cocaine dependence (304.2)\\(304.21) Cocaine dependence, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Cocaine dependence (304.2)\\\\(304.21) Cocaine dependence, continuous\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cocaine dependence (304.2)\\" + }, + { + "displayName": "(304.22) Cocaine dependence, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cocaine dependence (304.2)\\(304.22) Cocaine dependence, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Cocaine dependence (304.2)\\\\(304.22) Cocaine dependence, episodic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cocaine dependence (304.2)\\" + }, + { + "displayName": "(304.23) Cocaine dependence, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cocaine dependence (304.2)\\(304.23) Cocaine dependence, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Cocaine dependence (304.2)\\\\(304.23) Cocaine dependence, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Cocaine dependence (304.2)\\" + }, + { + "displayName": "Combinations of drug dependence excluding opioid type drug (304.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of drug dependence excluding opioid type drug (304.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Combinations of drug dependence excluding opioid type drug (304.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\" + }, + { + "displayName": "(304.80) Combinations of drug dependence excluding opioid type drug, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of drug dependence excluding opioid type drug (304.8)\\(304.80) Combinations of drug dependence excluding opioid type drug, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Combinations of drug dependence excluding opioid type drug (304.8)\\\\(304.80) Combinations of drug dependence excluding opioid type drug, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of drug dependence excluding opioid type drug (304.8)\\" + }, + { + "displayName": "(304.81) Combinations of drug dependence excluding opioid type drug, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of drug dependence excluding opioid type drug (304.8)\\(304.81) Combinations of drug dependence excluding opioid type drug, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of drug dependence excluding opioid type drug (304.8)\\" + }, + { + "displayName": "(304.82) Combinations of drug dependence excluding opioid type drug, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of drug dependence excluding opioid type drug (304.8)\\(304.82) Combinations of drug dependence excluding opioid type drug, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of drug dependence excluding opioid type drug (304.8)\\" + }, + { + "displayName": "(304.83) Combinations of drug dependence excluding opioid type drug, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of drug dependence excluding opioid type drug (304.8)\\(304.83) Combinations of drug dependence excluding opioid type drug, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of drug dependence excluding opioid type drug (304.8)\\" + }, + { + "displayName": "Combinations of opioid type drug with any other drug dependence (304.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of opioid type drug with any other drug dependence (304.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\" + }, + { + "displayName": "(304.70) Combinations of opioid type drug with any other drug dependence, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of opioid type drug with any other drug dependence (304.7)\\(304.70) Combinations of opioid type drug with any other drug dependence, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of opioid type drug with any other drug dependence (304.7)\\" + }, + { + "displayName": "(304.71) Combinations of opioid type drug with any other drug dependence, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of opioid type drug with any other drug dependence (304.7)\\(304.71) Combinations of opioid type drug with any other drug dependence, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of opioid type drug with any other drug dependence (304.7)\\" + }, + { + "displayName": "(304.72) Combinations of opioid type drug with any other drug dependence, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of opioid type drug with any other drug dependence (304.7)\\(304.72) Combinations of opioid type drug with any other drug dependence, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of opioid type drug with any other drug dependence (304.7)\\" + }, + { + "displayName": "(304.73) Combinations of opioid type drug with any other drug dependence, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of opioid type drug with any other drug dependence (304.7)\\(304.73) Combinations of opioid type drug with any other drug dependence, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Combinations of opioid type drug with any other drug dependence (304.7)\\\\(304.73) Combinations of opioid type drug with any other drug dependence, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Combinations of opioid type drug with any other drug dependence (304.7)\\" + }, + { + "displayName": "Hallucinogen dependence (304.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Hallucinogen dependence (304.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Hallucinogen dependence (304.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\" + }, + { + "displayName": "(304.50) Hallucinogen dependence, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Hallucinogen dependence (304.5)\\(304.50) Hallucinogen dependence, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Hallucinogen dependence (304.5)\\" + }, + { + "displayName": "(304.51) Hallucinogen dependence, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Hallucinogen dependence (304.5)\\(304.51) Hallucinogen dependence, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Hallucinogen dependence (304.5)\\\\(304.51) Hallucinogen dependence, continuous\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Hallucinogen dependence (304.5)\\" + }, + { + "displayName": "(304.52) Hallucinogen dependence, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Hallucinogen dependence (304.5)\\(304.52) Hallucinogen dependence, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Hallucinogen dependence (304.5)\\" + }, + { + "displayName": "(304.53) Hallucinogen dependence, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Hallucinogen dependence (304.5)\\(304.53) Hallucinogen dependence, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Hallucinogen dependence (304.5)\\\\(304.53) Hallucinogen dependence, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Hallucinogen dependence (304.5)\\" + }, + { + "displayName": "Opioid type dependence (304.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Opioid type dependence (304.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Opioid type dependence (304.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\" + }, + { + "displayName": "(304.00) Opioid type dependence, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Opioid type dependence (304.0)\\(304.00) Opioid type dependence, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Opioid type dependence (304.0)\\\\(304.00) Opioid type dependence, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Opioid type dependence (304.0)\\" + }, + { + "displayName": "(304.01) Opioid type dependence, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Opioid type dependence (304.0)\\(304.01) Opioid type dependence, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Opioid type dependence (304.0)\\" + }, + { + "displayName": "(304.02) Opioid type dependence, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Opioid type dependence (304.0)\\(304.02) Opioid type dependence, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Opioid type dependence (304.0)\\" + }, + { + "displayName": "(304.03) Opioid type dependence, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Opioid type dependence (304.0)\\(304.03) Opioid type dependence, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Opioid type dependence (304.0)\\" + }, + { + "displayName": "Other specified drug dependence (304.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Other specified drug dependence (304.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\" + }, + { + "displayName": "(304.60) Other specified drug dependence, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Other specified drug dependence (304.6)\\(304.60) Other specified drug dependence, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Other specified drug dependence (304.6)\\" + }, + { + "displayName": "(304.61) Other specified drug dependence, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Other specified drug dependence (304.6)\\(304.61) Other specified drug dependence, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Other specified drug dependence (304.6)\\\\(304.61) Other specified drug dependence, continuous\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Other specified drug dependence (304.6)\\" + }, + { + "displayName": "(304.62) Other specified drug dependence, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Other specified drug dependence (304.6)\\(304.62) Other specified drug dependence, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Other specified drug dependence (304.6)\\\\(304.62) Other specified drug dependence, episodic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Other specified drug dependence (304.6)\\" + }, + { + "displayName": "(304.63) Other specified drug dependence, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Other specified drug dependence (304.6)\\(304.63) Other specified drug dependence, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Other specified drug dependence (304.6)\\" + }, + { + "displayName": "Sedative, hypnotic or anxiolytic dependence (304.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Sedative, hypnotic or anxiolytic dependence (304.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\" + }, + { + "displayName": "(304.10) Sedative, hypnotic or anxiolytic dependence, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Sedative, hypnotic or anxiolytic dependence (304.1)\\(304.10) Sedative, hypnotic or anxiolytic dependence, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Sedative, hypnotic or anxiolytic dependence (304.1)\\" + }, + { + "displayName": "(304.11) Sedative, hypnotic or anxiolytic dependence, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Sedative, hypnotic or anxiolytic dependence (304.1)\\(304.11) Sedative, hypnotic or anxiolytic dependence, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Sedative, hypnotic or anxiolytic dependence (304.1)\\" + }, + { + "displayName": "(304.12) Sedative, hypnotic or anxiolytic dependence, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Sedative, hypnotic or anxiolytic dependence (304.1)\\(304.12) Sedative, hypnotic or anxiolytic dependence, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Sedative, hypnotic or anxiolytic dependence (304.1)\\" + }, + { + "displayName": "(304.13) Sedative, hypnotic or anxiolytic dependence, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Sedative, hypnotic or anxiolytic dependence (304.1)\\(304.13) Sedative, hypnotic or anxiolytic dependence, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Sedative, hypnotic or anxiolytic dependence (304.1)\\\\(304.13) Sedative, hypnotic or anxiolytic dependence, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Sedative, hypnotic or anxiolytic dependence (304.1)\\" + }, + { + "displayName": "Unspecified drug dependence (304.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Unspecified drug dependence (304.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Unspecified drug dependence (304.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\" + }, + { + "displayName": "(304.90) Unspecified drug dependence, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Unspecified drug dependence (304.9)\\(304.90) Unspecified drug dependence, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Drug dependence (304)\\\\Unspecified drug dependence (304.9)\\\\(304.90) Unspecified drug dependence, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Unspecified drug dependence (304.9)\\" + }, + { + "displayName": "(304.91) Unspecified drug dependence, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Unspecified drug dependence (304.9)\\(304.91) Unspecified drug dependence, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Unspecified drug dependence (304.9)\\" + }, + { + "displayName": "(304.92) Unspecified drug dependence, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Unspecified drug dependence (304.9)\\(304.92) Unspecified drug dependence, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Unspecified drug dependence (304.9)\\" + }, + { + "displayName": "(304.93) Unspecified drug dependence, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Unspecified drug dependence (304.9)\\(304.93) Unspecified drug dependence, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Drug dependence (304)\\Unspecified drug dependence (304.9)\\" + }, + { + "displayName": "Hyperkinetic syndrome of childhood (314)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(314.1) Hyperkinesis with developmental delay", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\(314.1) Hyperkinesis with developmental delay\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\" + }, + { + "displayName": "(314.2) Hyperkinetic conduct disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\(314.2) Hyperkinetic conduct disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Hyperkinetic syndrome of childhood (314)\\\\(314.2) Hyperkinetic conduct disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\" + }, + { + "displayName": "(314.8) Other specified manifestations of hyperkinetic syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\(314.8) Other specified manifestations of hyperkinetic syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Hyperkinetic syndrome of childhood (314)\\\\(314.8) Other specified manifestations of hyperkinetic syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\" + }, + { + "displayName": "(314.9) Unspecified hyperkinetic syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\(314.9) Unspecified hyperkinetic syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\" + }, + { + "displayName": "Attention deficit disorder of childhood (314.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\Attention deficit disorder of childhood (314.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Hyperkinetic syndrome of childhood (314)\\\\Attention deficit disorder of childhood (314.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\" + }, + { + "displayName": "(314.00) Attention deficit disorder without mention of hyperactivity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\Attention deficit disorder of childhood (314.0)\\(314.00) Attention deficit disorder without mention of hyperactivity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Hyperkinetic syndrome of childhood (314)\\\\Attention deficit disorder of childhood (314.0)\\\\(314.00) Attention deficit disorder without mention of hyperactivity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\Attention deficit disorder of childhood (314.0)\\" + }, + { + "displayName": "(314.01) Attention deficit disorder with hyperactivity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\Attention deficit disorder of childhood (314.0)\\(314.01) Attention deficit disorder with hyperactivity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Hyperkinetic syndrome of childhood (314)\\Attention deficit disorder of childhood (314.0)\\" + }, + { + "displayName": "Nondependent abuse of drugs (305)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(305.1) Tobacco use disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\(305.1) Tobacco use disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\" + }, + { + "displayName": "Alcohol abuse (305.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Alcohol abuse (305.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\" + }, + { + "displayName": "(305.00) Alcohol abuse, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Alcohol abuse (305.0)\\(305.00) Alcohol abuse, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Alcohol abuse (305.0)\\" + }, + { + "displayName": "(305.01) Alcohol abuse, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Alcohol abuse (305.0)\\(305.01) Alcohol abuse, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Alcohol abuse (305.0)\\" + }, + { + "displayName": "(305.02) Alcohol abuse, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Alcohol abuse (305.0)\\(305.02) Alcohol abuse, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Alcohol abuse (305.0)\\" + }, + { + "displayName": "(305.03) Alcohol abuse, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Alcohol abuse (305.0)\\(305.03) Alcohol abuse, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Alcohol abuse (305.0)\\" + }, + { + "displayName": "Amphetamine or related acting sympathomimetic abuse (305.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Amphetamine or related acting sympathomimetic abuse (305.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Amphetamine or related acting sympathomimetic abuse (305.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\" + }, + { + "displayName": "(305.70) Amphetamine or related acting sympathomimetic abuse, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Amphetamine or related acting sympathomimetic abuse (305.7)\\(305.70) Amphetamine or related acting sympathomimetic abuse, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Amphetamine or related acting sympathomimetic abuse (305.7)\\\\(305.70) Amphetamine or related acting sympathomimetic abuse, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Amphetamine or related acting sympathomimetic abuse (305.7)\\" + }, + { + "displayName": "(305.71) Amphetamine or related acting sympathomimetic abuse, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Amphetamine or related acting sympathomimetic abuse (305.7)\\(305.71) Amphetamine or related acting sympathomimetic abuse, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Amphetamine or related acting sympathomimetic abuse (305.7)\\\\(305.71) Amphetamine or related acting sympathomimetic abuse, continuous\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Amphetamine or related acting sympathomimetic abuse (305.7)\\" + }, + { + "displayName": "(305.72) Amphetamine or related acting sympathomimetic abuse, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Amphetamine or related acting sympathomimetic abuse (305.7)\\(305.72) Amphetamine or related acting sympathomimetic abuse, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Amphetamine or related acting sympathomimetic abuse (305.7)\\\\(305.72) Amphetamine or related acting sympathomimetic abuse, episodic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Amphetamine or related acting sympathomimetic abuse (305.7)\\" + }, + { + "displayName": "(305.73) Amphetamine or related acting sympathomimetic abuse, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Amphetamine or related acting sympathomimetic abuse (305.7)\\(305.73) Amphetamine or related acting sympathomimetic abuse, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Amphetamine or related acting sympathomimetic abuse (305.7)\\\\(305.73) Amphetamine or related acting sympathomimetic abuse, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Amphetamine or related acting sympathomimetic abuse (305.7)\\" + }, + { + "displayName": "Antidepressant type abuse (305.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Antidepressant type abuse (305.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\" + }, + { + "displayName": "(305.80) Antidepressant type abuse, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Antidepressant type abuse (305.8)\\(305.80) Antidepressant type abuse, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Antidepressant type abuse (305.8)\\" + }, + { + "displayName": "(305.81) Antidepressant type abuse, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Antidepressant type abuse (305.8)\\(305.81) Antidepressant type abuse, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Antidepressant type abuse (305.8)\\" + }, + { + "displayName": "(305.82) Antidepressant type abuse, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Antidepressant type abuse (305.8)\\(305.82) Antidepressant type abuse, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Antidepressant type abuse (305.8)\\" + }, + { + "displayName": "(305.83) Antidepressant type abuse, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Antidepressant type abuse (305.8)\\(305.83) Antidepressant type abuse, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Antidepressant type abuse (305.8)\\" + }, + { + "displayName": "Cannabis abuse (305.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cannabis abuse (305.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\" + }, + { + "displayName": "(305.20) Cannabis abuse, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cannabis abuse (305.2)\\(305.20) Cannabis abuse, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Cannabis abuse (305.2)\\\\(305.20) Cannabis abuse, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cannabis abuse (305.2)\\" + }, + { + "displayName": "(305.21) Cannabis abuse, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cannabis abuse (305.2)\\(305.21) Cannabis abuse, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cannabis abuse (305.2)\\" + }, + { + "displayName": "(305.22) Cannabis abuse, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cannabis abuse (305.2)\\(305.22) Cannabis abuse, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cannabis abuse (305.2)\\" + }, + { + "displayName": "(305.23) Cannabis abuse, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cannabis abuse (305.2)\\(305.23) Cannabis abuse, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cannabis abuse (305.2)\\" + }, + { + "displayName": "Cocaine abuse (305.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cocaine abuse (305.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\" + }, + { + "displayName": "(305.60) Cocaine abuse, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cocaine abuse (305.6)\\(305.60) Cocaine abuse, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cocaine abuse (305.6)\\" + }, + { + "displayName": "(305.61) Cocaine abuse, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cocaine abuse (305.6)\\(305.61) Cocaine abuse, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cocaine abuse (305.6)\\" + }, + { + "displayName": "(305.62) Cocaine abuse, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cocaine abuse (305.6)\\(305.62) Cocaine abuse, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Cocaine abuse (305.6)\\\\(305.62) Cocaine abuse, episodic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cocaine abuse (305.6)\\" + }, + { + "displayName": "(305.63) Cocaine abuse, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cocaine abuse (305.6)\\(305.63) Cocaine abuse, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Cocaine abuse (305.6)\\\\(305.63) Cocaine abuse, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Cocaine abuse (305.6)\\" + }, + { + "displayName": "Hallucinogen abuse (305.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Hallucinogen abuse (305.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Hallucinogen abuse (305.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\" + }, + { + "displayName": "(305.30) Hallucinogen abuse, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Hallucinogen abuse (305.3)\\(305.30) Hallucinogen abuse, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Hallucinogen abuse (305.3)\\\\(305.30) Hallucinogen abuse, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Hallucinogen abuse (305.3)\\" + }, + { + "displayName": "(305.31) Hallucinogen abuse, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Hallucinogen abuse (305.3)\\(305.31) Hallucinogen abuse, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Hallucinogen abuse (305.3)\\" + }, + { + "displayName": "(305.32) Hallucinogen abuse, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Hallucinogen abuse (305.3)\\(305.32) Hallucinogen abuse, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Hallucinogen abuse (305.3)\\" + }, + { + "displayName": "(305.33) Hallucinogen abuse, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Hallucinogen abuse (305.3)\\(305.33) Hallucinogen abuse, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Hallucinogen abuse (305.3)\\" + }, + { + "displayName": "Opioid abuse (305.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Opioid abuse (305.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\" + }, + { + "displayName": "(305.50) Opioid abuse, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Opioid abuse (305.5)\\(305.50) Opioid abuse, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Opioid abuse (305.5)\\" + }, + { + "displayName": "(305.51) Opioid abuse, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Opioid abuse (305.5)\\(305.51) Opioid abuse, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Opioid abuse (305.5)\\" + }, + { + "displayName": "(305.52) Opioid abuse, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Opioid abuse (305.5)\\(305.52) Opioid abuse, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Opioid abuse (305.5)\\\\(305.52) Opioid abuse, episodic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Opioid abuse (305.5)\\" + }, + { + "displayName": "(305.53) Opioid abuse, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Opioid abuse (305.5)\\(305.53) Opioid abuse, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Opioid abuse (305.5)\\\\(305.53) Opioid abuse, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Opioid abuse (305.5)\\" + }, + { + "displayName": "Other, mixed, or unspecified drug abuse (305.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Other, mixed, or unspecified drug abuse (305.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\" + }, + { + "displayName": "(305.90) Other, mixed, or unspecified drug abuse, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Other, mixed, or unspecified drug abuse (305.9)\\(305.90) Other, mixed, or unspecified drug abuse, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Other, mixed, or unspecified drug abuse (305.9)\\" + }, + { + "displayName": "(305.91) Other, mixed, or unspecified drug abuse, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Other, mixed, or unspecified drug abuse (305.9)\\(305.91) Other, mixed, or unspecified drug abuse, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Other, mixed, or unspecified drug abuse (305.9)\\" + }, + { + "displayName": "(305.92) Other, mixed, or unspecified drug abuse, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Other, mixed, or unspecified drug abuse (305.9)\\(305.92) Other, mixed, or unspecified drug abuse, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Other, mixed, or unspecified drug abuse (305.9)\\" + }, + { + "displayName": "(305.93) Other, mixed, or unspecified drug abuse, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Other, mixed, or unspecified drug abuse (305.9)\\(305.93) Other, mixed, or unspecified drug abuse, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Other, mixed, or unspecified drug abuse (305.9)\\" + }, + { + "displayName": "Sedative, hypnotic or anxiolytic abuse (305.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Sedative, hypnotic or anxiolytic abuse (305.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\" + }, + { + "displayName": "(305.40) Sedative, hypnotic or anxiolytic abuse, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Sedative, hypnotic or anxiolytic abuse (305.4)\\(305.40) Sedative, hypnotic or anxiolytic abuse, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Sedative, hypnotic or anxiolytic abuse (305.4)\\\\(305.40) Sedative, hypnotic or anxiolytic abuse, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Sedative, hypnotic or anxiolytic abuse (305.4)\\" + }, + { + "displayName": "(305.41) Sedative, hypnotic or anxiolytic abuse, continuous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Sedative, hypnotic or anxiolytic abuse (305.4)\\(305.41) Sedative, hypnotic or anxiolytic abuse, continuous\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Sedative, hypnotic or anxiolytic abuse (305.4)\\\\(305.41) Sedative, hypnotic or anxiolytic abuse, continuous\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Sedative, hypnotic or anxiolytic abuse (305.4)\\" + }, + { + "displayName": "(305.42) Sedative, hypnotic or anxiolytic abuse, episodic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Sedative, hypnotic or anxiolytic abuse (305.4)\\(305.42) Sedative, hypnotic or anxiolytic abuse, episodic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Nondependent abuse of drugs (305)\\\\Sedative, hypnotic or anxiolytic abuse (305.4)\\\\(305.42) Sedative, hypnotic or anxiolytic abuse, episodic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Sedative, hypnotic or anxiolytic abuse (305.4)\\" + }, + { + "displayName": "(305.43) Sedative, hypnotic or anxiolytic abuse, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Sedative, hypnotic or anxiolytic abuse (305.4)\\(305.43) Sedative, hypnotic or anxiolytic abuse, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Nondependent abuse of drugs (305)\\Sedative, hypnotic or anxiolytic abuse (305.4)\\" + }, + { + "displayName": "Personality disorders (301)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(301.0) Paranoid personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\(301.0) Paranoid personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\" + }, + { + "displayName": "(301.3) Explosive personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\(301.3) Explosive personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\" + }, + { + "displayName": "(301.4) Obsessive-compulsive personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\(301.4) Obsessive-compulsive personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\" + }, + { + "displayName": "(301.6) Dependent personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\(301.6) Dependent personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\" + }, + { + "displayName": "(301.7) Antisocial personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\(301.7) Antisocial personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\(301.7) Antisocial personality disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\" + }, + { + "displayName": "(301.9) Unspecified personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\(301.9) Unspecified personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\(301.9) Unspecified personality disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\" + }, + { + "displayName": "Affective personality disorder (301.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Affective personality disorder (301.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\" + }, + { + "displayName": "(301.10) Affective personality disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Affective personality disorder (301.1)\\(301.10) Affective personality disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\Affective personality disorder (301.1)\\\\(301.10) Affective personality disorder, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Affective personality disorder (301.1)\\" + }, + { + "displayName": "(301.11) Chronic hypomanic personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Affective personality disorder (301.1)\\(301.11) Chronic hypomanic personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Affective personality disorder (301.1)\\" + }, + { + "displayName": "(301.12) Chronic depressive personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Affective personality disorder (301.1)\\(301.12) Chronic depressive personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\Affective personality disorder (301.1)\\\\(301.12) Chronic depressive personality disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Affective personality disorder (301.1)\\" + }, + { + "displayName": "(301.13) Cyclothymic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Affective personality disorder (301.1)\\(301.13) Cyclothymic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\Affective personality disorder (301.1)\\\\(301.13) Cyclothymic disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Affective personality disorder (301.1)\\" + }, + { + "displayName": "Histrionic personality disorder (301.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Histrionic personality disorder (301.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\Histrionic personality disorder (301.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\" + }, + { + "displayName": "(301.50) Histrionic personality disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Histrionic personality disorder (301.5)\\(301.50) Histrionic personality disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Histrionic personality disorder (301.5)\\" + }, + { + "displayName": "(301.51) Chronic factitious illness with physical symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Histrionic personality disorder (301.5)\\(301.51) Chronic factitious illness with physical symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Histrionic personality disorder (301.5)\\" + }, + { + "displayName": "(301.59) Other histrionic personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Histrionic personality disorder (301.5)\\(301.59) Other histrionic personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Histrionic personality disorder (301.5)\\" + }, + { + "displayName": "Other personality disorders (301.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Other personality disorders (301.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\" + }, + { + "displayName": "(301.81) Narcissistic personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Other personality disorders (301.8)\\(301.81) Narcissistic personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Other personality disorders (301.8)\\" + }, + { + "displayName": "(301.82) Avoidant personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Other personality disorders (301.8)\\(301.82) Avoidant personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\Other personality disorders (301.8)\\\\(301.82) Avoidant personality disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Other personality disorders (301.8)\\" + }, + { + "displayName": "(301.83) Borderline personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Other personality disorders (301.8)\\(301.83) Borderline personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Other personality disorders (301.8)\\" + }, + { + "displayName": "(301.84) Passive-aggressive personality", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Other personality disorders (301.8)\\(301.84) Passive-aggressive personality\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\Other personality disorders (301.8)\\\\(301.84) Passive-aggressive personality\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Other personality disorders (301.8)\\" + }, + { + "displayName": "(301.89) Other personality disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Other personality disorders (301.8)\\(301.89) Other personality disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\Other personality disorders (301.8)\\\\(301.89) Other personality disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Other personality disorders (301.8)\\" + }, + { + "displayName": "Schizoid personality disorder (301.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Schizoid personality disorder (301.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\" + }, + { + "displayName": "(301.20) Schizoid personality disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Schizoid personality disorder (301.2)\\(301.20) Schizoid personality disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\Schizoid personality disorder (301.2)\\\\(301.20) Schizoid personality disorder, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Schizoid personality disorder (301.2)\\" + }, + { + "displayName": "(301.21) Introverted personality", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Schizoid personality disorder (301.2)\\(301.21) Introverted personality\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\Schizoid personality disorder (301.2)\\\\(301.21) Introverted personality\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Schizoid personality disorder (301.2)\\" + }, + { + "displayName": "(301.22) Schizotypal personality disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Schizoid personality disorder (301.2)\\(301.22) Schizotypal personality disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Personality disorders (301)\\\\Schizoid personality disorder (301.2)\\\\(301.22) Schizotypal personality disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Personality disorders (301)\\Schizoid personality disorder (301.2)\\" + }, + { + "displayName": "Physiological malfunction arising from mental factors (306)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Physiological malfunction arising from mental factors (306)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(306.0) Musculoskeletal malfunction arising from mental factors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\(306.0) Musculoskeletal malfunction arising from mental factors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Physiological malfunction arising from mental factors (306)\\\\(306.0) Musculoskeletal malfunction arising from mental factors\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\" + }, + { + "displayName": "(306.1) Respiratory malfunction arising from mental factors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\(306.1) Respiratory malfunction arising from mental factors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Physiological malfunction arising from mental factors (306)\\\\(306.1) Respiratory malfunction arising from mental factors\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\" + }, + { + "displayName": "(306.2) Cardiovascular malfunction arising from mental factors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\(306.2) Cardiovascular malfunction arising from mental factors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\" + }, + { + "displayName": "(306.3) Skin disorder arising from mental factors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\(306.3) Skin disorder arising from mental factors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\" + }, + { + "displayName": "(306.4) Gastrointestinal malfunction arising from mental factors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\(306.4) Gastrointestinal malfunction arising from mental factors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\" + }, + { + "displayName": "(306.6) Endocrine disorder arising from mental factors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\(306.6) Endocrine disorder arising from mental factors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\" + }, + { + "displayName": "(306.7) Disorder of organs of special sense arising from mental factors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\(306.7) Disorder of organs of special sense arising from mental factors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\" + }, + { + "displayName": "(306.8) Other specified psychophysiological malfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\(306.8) Other specified psychophysiological malfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\" + }, + { + "displayName": "(306.9) Unspecified psychophysiological malfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\(306.9) Unspecified psychophysiological malfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\" + }, + { + "displayName": "Genitourinary malfunction arising from mental factors (306.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\Genitourinary malfunction arising from mental factors (306.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\" + }, + { + "displayName": "(306.50) Psychogenic genitourinary malfunction, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\Genitourinary malfunction arising from mental factors (306.5)\\(306.50) Psychogenic genitourinary malfunction, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\Genitourinary malfunction arising from mental factors (306.5)\\" + }, + { + "displayName": "(306.51) Psychogenic vaginismus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\Genitourinary malfunction arising from mental factors (306.5)\\(306.51) Psychogenic vaginismus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\Genitourinary malfunction arising from mental factors (306.5)\\" + }, + { + "displayName": "(306.52) Psychogenic dysmenorrhea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\Genitourinary malfunction arising from mental factors (306.5)\\(306.52) Psychogenic dysmenorrhea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Physiological malfunction arising from mental factors (306)\\\\Genitourinary malfunction arising from mental factors (306.5)\\\\(306.52) Psychogenic dysmenorrhea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\Genitourinary malfunction arising from mental factors (306.5)\\" + }, + { + "displayName": "(306.53) Psychogenic dysuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\Genitourinary malfunction arising from mental factors (306.5)\\(306.53) Psychogenic dysuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\Genitourinary malfunction arising from mental factors (306.5)\\" + }, + { + "displayName": "(306.59) Other genitourinary malfunction arising from mental factors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\Genitourinary malfunction arising from mental factors (306.5)\\(306.59) Other genitourinary malfunction arising from mental factors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Physiological malfunction arising from mental factors (306)\\\\Genitourinary malfunction arising from mental factors (306.5)\\\\(306.59) Other genitourinary malfunction arising from mental factors\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Physiological malfunction arising from mental factors (306)\\Genitourinary malfunction arising from mental factors (306.5)\\" + }, + { + "displayName": "Sexual and gender identity disorders (302)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(302.0) Ego-dystonic sexual orientation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\(302.0) Ego-dystonic sexual orientation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\(302.0) Ego-dystonic sexual orientation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\" + }, + { + "displayName": "(302.1) Zoophilia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\(302.1) Zoophilia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\(302.1) Zoophilia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\" + }, + { + "displayName": "(302.2) Pedophilia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\(302.2) Pedophilia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\" + }, + { + "displayName": "(302.3) Transvestic fetishism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\(302.3) Transvestic fetishism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\(302.3) Transvestic fetishism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\" + }, + { + "displayName": "(302.4) Exhibitionism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\(302.4) Exhibitionism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\(302.4) Exhibitionism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\" + }, + { + "displayName": "(302.6) Gender identity disorder in children", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\(302.6) Gender identity disorder in children\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\(302.6) Gender identity disorder in children\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\" + }, + { + "displayName": "(302.9) Unspecified psychosexual disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\(302.9) Unspecified psychosexual disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\" + }, + { + "displayName": "Other specified psychosexual disorders (302.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Other specified psychosexual disorders (302.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\" + }, + { + "displayName": "(302.81) Fetishism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\(302.81) Fetishism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Other specified psychosexual disorders (302.8)\\\\(302.81) Fetishism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\" + }, + { + "displayName": "(302.82) Voyeurism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\(302.82) Voyeurism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Other specified psychosexual disorders (302.8)\\\\(302.82) Voyeurism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\" + }, + { + "displayName": "(302.83) Sexual masochism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\(302.83) Sexual masochism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Other specified psychosexual disorders (302.8)\\\\(302.83) Sexual masochism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\" + }, + { + "displayName": "(302.84) Sexual sadism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\(302.84) Sexual sadism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\" + }, + { + "displayName": "(302.85) Gender identity disorder in adolescents or adults", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\(302.85) Gender identity disorder in adolescents or adults\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Other specified psychosexual disorders (302.8)\\\\(302.85) Gender identity disorder in adolescents or adults\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\" + }, + { + "displayName": "(302.89) Other specified psychosexual disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\(302.89) Other specified psychosexual disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Other specified psychosexual disorders (302.8)\\\\(302.89) Other specified psychosexual disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Other specified psychosexual disorders (302.8)\\" + }, + { + "displayName": "Psychosexual dysfunction (302.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Psychosexual dysfunction (302.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\" + }, + { + "displayName": "(302.70) Psychosexual dysfunction, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\(302.70) Psychosexual dysfunction, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Psychosexual dysfunction (302.7)\\\\(302.70) Psychosexual dysfunction, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\" + }, + { + "displayName": "(302.71) Hypoactive sexual desire disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\(302.71) Hypoactive sexual desire disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\" + }, + { + "displayName": "(302.72) Psychosexual dysfunction with inhibited sexual excitement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\(302.72) Psychosexual dysfunction with inhibited sexual excitement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\" + }, + { + "displayName": "(302.73) Female orgasmic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\(302.73) Female orgasmic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\" + }, + { + "displayName": "(302.74) Male orgasmic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\(302.74) Male orgasmic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\" + }, + { + "displayName": "(302.75) Premature ejaculation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\(302.75) Premature ejaculation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\" + }, + { + "displayName": "(302.76) Dyspareunia, psychogenic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\(302.76) Dyspareunia, psychogenic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\" + }, + { + "displayName": "(302.79) Psychosexual dysfunction with other specified psychosexual dysfunctions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\(302.79) Psychosexual dysfunction with other specified psychosexual dysfunctions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Psychosexual dysfunction (302.7)\\\\(302.79) Psychosexual dysfunction with other specified psychosexual dysfunctions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Psychosexual dysfunction (302.7)\\" + }, + { + "displayName": "Trans-sexualism (302.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Trans-sexualism (302.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Trans-sexualism (302.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\" + }, + { + "displayName": "(302.50) Trans-sexualism with unspecified sexual history", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Trans-sexualism (302.5)\\(302.50) Trans-sexualism with unspecified sexual history\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Trans-sexualism (302.5)\\" + }, + { + "displayName": "(302.51) Trans-sexualism with asexual history", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Trans-sexualism (302.5)\\(302.51) Trans-sexualism with asexual history\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Trans-sexualism (302.5)\\\\(302.51) Trans-sexualism with asexual history\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Trans-sexualism (302.5)\\" + }, + { + "displayName": "(302.52) Trans-sexualism with homosexual history", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Trans-sexualism (302.5)\\(302.52) Trans-sexualism with homosexual history\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Trans-sexualism (302.5)\\" + }, + { + "displayName": "(302.53) Trans-sexualism with heterosexual history", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Trans-sexualism (302.5)\\(302.53) Trans-sexualism with heterosexual history\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Sexual and gender identity disorders (302)\\\\Trans-sexualism (302.5)\\\\(302.53) Trans-sexualism with heterosexual history\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Sexual and gender identity disorders (302)\\Trans-sexualism (302.5)\\" + }, + { + "displayName": "Special symptoms or syndromes, not elsewhere classified (307)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(307.0) Adult onset fluency disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\(307.0) Adult onset fluency disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\(307.0) Adult onset fluency disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\" + }, + { + "displayName": "(307.1) Anorexia nervosa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\(307.1) Anorexia nervosa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\(307.1) Anorexia nervosa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\" + }, + { + "displayName": "(307.3) Stereotypic movement disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\(307.3) Stereotypic movement disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\" + }, + { + "displayName": "(307.6) Enuresis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\(307.6) Enuresis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\(307.6) Enuresis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\" + }, + { + "displayName": "(307.7) Encopresis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\(307.7) Encopresis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\(307.7) Encopresis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\" + }, + { + "displayName": "(307.9) Other and unspecified special symptoms or syndromes, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\(307.9) Other and unspecified special symptoms or syndromes, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\" + }, + { + "displayName": "Other and unspecified disorders of eating (307.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Other and unspecified disorders of eating (307.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\" + }, + { + "displayName": "(307.50) Eating disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\(307.50) Eating disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Other and unspecified disorders of eating (307.5)\\\\(307.50) Eating disorder, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\" + }, + { + "displayName": "(307.51) Bulimia nervosa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\(307.51) Bulimia nervosa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Other and unspecified disorders of eating (307.5)\\\\(307.51) Bulimia nervosa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\" + }, + { + "displayName": "(307.52) Pica", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\(307.52) Pica\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\" + }, + { + "displayName": "(307.53) Rumination disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\(307.53) Rumination disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\" + }, + { + "displayName": "(307.54) Psychogenic vomiting", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\(307.54) Psychogenic vomiting\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\" + }, + { + "displayName": "(307.59) Other disorders of eating", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\(307.59) Other disorders of eating\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Other and unspecified disorders of eating (307.5)\\" + }, + { + "displayName": "Pain disorders related to psychological factors (307.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Pain disorders related to psychological factors (307.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\" + }, + { + "displayName": "(307.80) Psychogenic pain, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Pain disorders related to psychological factors (307.8)\\(307.80) Psychogenic pain, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Pain disorders related to psychological factors (307.8)\\\\(307.80) Psychogenic pain, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Pain disorders related to psychological factors (307.8)\\" + }, + { + "displayName": "(307.81) Tension headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Pain disorders related to psychological factors (307.8)\\(307.81) Tension headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Pain disorders related to psychological factors (307.8)\\" + }, + { + "displayName": "(307.89) Other pain disorders related to psychological factors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Pain disorders related to psychological factors (307.8)\\(307.89) Other pain disorders related to psychological factors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Pain disorders related to psychological factors (307.8)\\\\(307.89) Other pain disorders related to psychological factors\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Pain disorders related to psychological factors (307.8)\\" + }, + { + "displayName": "Specific disorders of sleep of nonorganic origin (307.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\" + }, + { + "displayName": "(307.40) Nonorganic sleep disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\(307.40) Nonorganic sleep disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Specific disorders of sleep of nonorganic origin (307.4)\\\\(307.40) Nonorganic sleep disorder, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\" + }, + { + "displayName": "(307.41) Transient disorder of initiating or maintaining sleep", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\(307.41) Transient disorder of initiating or maintaining sleep\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Specific disorders of sleep of nonorganic origin (307.4)\\\\(307.41) Transient disorder of initiating or maintaining sleep\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\" + }, + { + "displayName": "(307.42) Persistent disorder of initiating or maintaining sleep", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\(307.42) Persistent disorder of initiating or maintaining sleep\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\" + }, + { + "displayName": "(307.43) Transient disorder of initiating or maintaining wakefulness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\(307.43) Transient disorder of initiating or maintaining wakefulness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Specific disorders of sleep of nonorganic origin (307.4)\\\\(307.43) Transient disorder of initiating or maintaining wakefulness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\" + }, + { + "displayName": "(307.44) Persistent disorder of initiating or maintaining wakefulness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\(307.44) Persistent disorder of initiating or maintaining wakefulness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Specific disorders of sleep of nonorganic origin (307.4)\\\\(307.44) Persistent disorder of initiating or maintaining wakefulness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\" + }, + { + "displayName": "(307.45) Circadian rhythm sleep disorder of nonorganic origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\(307.45) Circadian rhythm sleep disorder of nonorganic origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Specific disorders of sleep of nonorganic origin (307.4)\\\\(307.45) Circadian rhythm sleep disorder of nonorganic origin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\" + }, + { + "displayName": "(307.46) Sleep arousal disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\(307.46) Sleep arousal disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\" + }, + { + "displayName": "(307.47) Other dysfunctions of sleep stages or arousal from sleep", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\(307.47) Other dysfunctions of sleep stages or arousal from sleep\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Specific disorders of sleep of nonorganic origin (307.4)\\\\(307.47) Other dysfunctions of sleep stages or arousal from sleep\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\" + }, + { + "displayName": "(307.48) Repetitive intrusions of sleep", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\(307.48) Repetitive intrusions of sleep\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\" + }, + { + "displayName": "(307.49) Other specific disorders of sleep of nonorganic origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\(307.49) Other specific disorders of sleep of nonorganic origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Specific disorders of sleep of nonorganic origin (307.4)\\\\(307.49) Other specific disorders of sleep of nonorganic origin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Specific disorders of sleep of nonorganic origin (307.4)\\" + }, + { + "displayName": "Tics (307.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Tics (307.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Tics (307.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\" + }, + { + "displayName": "(307.20) Tic disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Tics (307.2)\\(307.20) Tic disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Tics (307.2)\\" + }, + { + "displayName": "(307.21) Transient tic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Tics (307.2)\\(307.21) Transient tic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Tics (307.2)\\" + }, + { + "displayName": "(307.22) Chronic motor or vocal tic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Tics (307.2)\\(307.22) Chronic motor or vocal tic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Tics (307.2)\\\\(307.22) Chronic motor or vocal tic disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Tics (307.2)\\" + }, + { + "displayName": "(307.23) Tourette's disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Tics (307.2)\\(307.23) Tourette's disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Special symptoms or syndromes, not elsewhere classified (307)\\\\Tics (307.2)\\\\(307.23) Tourette's disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Special symptoms or syndromes, not elsewhere classified (307)\\Tics (307.2)\\" + }, + { + "displayName": "Specific delays in development (315)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(315.1) Mathematics disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\(315.1) Mathematics disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\(315.1) Mathematics disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\" + }, + { + "displayName": "(315.2) Other specific developmental learning difficulties", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\(315.2) Other specific developmental learning difficulties\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\(315.2) Other specific developmental learning difficulties\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\" + }, + { + "displayName": "(315.4) Developmental coordination disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\(315.4) Developmental coordination disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\(315.4) Developmental coordination disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\" + }, + { + "displayName": "(315.5) Mixed development disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\(315.5) Mixed development disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\" + }, + { + "displayName": "(315.8) Other specified delays in development", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\(315.8) Other specified delays in development\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\(315.8) Other specified delays in development\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\" + }, + { + "displayName": "(315.9) Unspecified delay in development", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\(315.9) Unspecified delay in development\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\(315.9) Unspecified delay in development\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\" + }, + { + "displayName": "Developmental reading disorder (315.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental reading disorder (315.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\Developmental reading disorder (315.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\" + }, + { + "displayName": "(315.00) Developmental reading disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental reading disorder (315.0)\\(315.00) Developmental reading disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental reading disorder (315.0)\\" + }, + { + "displayName": "(315.01) Alexia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental reading disorder (315.0)\\(315.01) Alexia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\Developmental reading disorder (315.0)\\\\(315.01) Alexia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental reading disorder (315.0)\\" + }, + { + "displayName": "(315.02) Developmental dyslexia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental reading disorder (315.0)\\(315.02) Developmental dyslexia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\Developmental reading disorder (315.0)\\\\(315.02) Developmental dyslexia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental reading disorder (315.0)\\" + }, + { + "displayName": "(315.09) Other specific developmental reading disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental reading disorder (315.0)\\(315.09) Other specific developmental reading disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental reading disorder (315.0)\\" + }, + { + "displayName": "Developmental speech or language disorder (315.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental speech or language disorder (315.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\Developmental speech or language disorder (315.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\" + }, + { + "displayName": "(315.31) Expressive language disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental speech or language disorder (315.3)\\(315.31) Expressive language disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\Developmental speech or language disorder (315.3)\\\\(315.31) Expressive language disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental speech or language disorder (315.3)\\" + }, + { + "displayName": "(315.32) Mixed receptive-expressive language disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental speech or language disorder (315.3)\\(315.32) Mixed receptive-expressive language disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\Developmental speech or language disorder (315.3)\\\\(315.32) Mixed receptive-expressive language disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental speech or language disorder (315.3)\\" + }, + { + "displayName": "(315.34) Speech and language developmental delay due to hearing loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental speech or language disorder (315.3)\\(315.34) Speech and language developmental delay due to hearing loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental speech or language disorder (315.3)\\" + }, + { + "displayName": "(315.35) Childhood onset fluency disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental speech or language disorder (315.3)\\(315.35) Childhood onset fluency disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\Developmental speech or language disorder (315.3)\\\\(315.35) Childhood onset fluency disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental speech or language disorder (315.3)\\" + }, + { + "displayName": "(315.39) Other developmental speech or language disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental speech or language disorder (315.3)\\(315.39) Other developmental speech or language disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific delays in development (315)\\\\Developmental speech or language disorder (315.3)\\\\(315.39) Other developmental speech or language disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific delays in development (315)\\Developmental speech or language disorder (315.3)\\" + }, + { + "displayName": "Specific nonpsychotic mental disorders due to brain damage (310)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific nonpsychotic mental disorders due to brain damage (310)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\" + }, + { + "displayName": "(310.0) Frontal lobe syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\(310.0) Frontal lobe syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific nonpsychotic mental disorders due to brain damage (310)\\\\(310.0) Frontal lobe syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\" + }, + { + "displayName": "(310.1) Personality change due to conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\(310.1) Personality change due to conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\" + }, + { + "displayName": "(310.2) Postconcussion syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\(310.2) Postconcussion syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific nonpsychotic mental disorders due to brain damage (310)\\\\(310.2) Postconcussion syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\" + }, + { + "displayName": "(310.9) Unspecified nonpsychotic mental disorder following organic brain damage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\(310.9) Unspecified nonpsychotic mental disorder following organic brain damage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific nonpsychotic mental disorders due to brain damage (310)\\\\(310.9) Unspecified nonpsychotic mental disorder following organic brain damage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\" + }, + { + "displayName": "Other specified nonpsychotic mental disorders following organic brain damage (310.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\Other specified nonpsychotic mental disorders following organic brain damage (310.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\" + }, + { + "displayName": "(310.89) Other specified nonpsychotic mental disorders following organic brain damage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\Other specified nonpsychotic mental disorders following organic brain damage (310.8)\\(310.89) Other specified nonpsychotic mental disorders following organic brain damage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\\\Specific nonpsychotic mental disorders due to brain damage (310)\\\\Other specified nonpsychotic mental disorders following organic brain damage (310.8)\\\\(310.89) Other specified nonpsychotic mental disorders following organic brain damage\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Neurotic disorders, personality disorders, and other nonpsychotic mental disorders (300-316.99)\\Specific nonpsychotic mental disorders due to brain damage (310)\\Other specified nonpsychotic mental disorders following organic brain damage (310.8)\\" + }, + { + "displayName": "Psychoses (290-299.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\" + }, + { + "displayName": "ORGANIC PSYCHOTIC CONDITIONS (290-294.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\" + }, + { + "displayName": "Alcohol-induced mental disorders (291)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Alcohol-induced mental disorders (291)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\" + }, + { + "displayName": "(291.0) Alcohol withdrawal delirium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\(291.0) Alcohol withdrawal delirium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\" + }, + { + "displayName": "(291.1) Alcohol-induced persisting amnestic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\(291.1) Alcohol-induced persisting amnestic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Alcohol-induced mental disorders (291)\\\\(291.1) Alcohol-induced persisting amnestic disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\" + }, + { + "displayName": "(291.2) Alcohol-induced persisting dementia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\(291.2) Alcohol-induced persisting dementia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Alcohol-induced mental disorders (291)\\\\(291.2) Alcohol-induced persisting dementia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\" + }, + { + "displayName": "(291.3) Alcohol-induced psychotic disorder with hallucinations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\(291.3) Alcohol-induced psychotic disorder with hallucinations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\" + }, + { + "displayName": "(291.4) Idiosyncratic alcohol intoxication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\(291.4) Idiosyncratic alcohol intoxication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\" + }, + { + "displayName": "(291.5) Alcohol-induced psychotic disorder with delusions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\(291.5) Alcohol-induced psychotic disorder with delusions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\" + }, + { + "displayName": "(291.9) Unspecified alcohol-induced mental disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\(291.9) Unspecified alcohol-induced mental disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\" + }, + { + "displayName": "Other specified alcohol-induced mental disorders (291.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\Other specified alcohol-induced mental disorders (291.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\" + }, + { + "displayName": "(291.81) Alcohol withdrawal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\Other specified alcohol-induced mental disorders (291.8)\\(291.81) Alcohol withdrawal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\Other specified alcohol-induced mental disorders (291.8)\\" + }, + { + "displayName": "(291.82) Alcohol induced sleep disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\Other specified alcohol-induced mental disorders (291.8)\\(291.82) Alcohol induced sleep disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Alcohol-induced mental disorders (291)\\\\Other specified alcohol-induced mental disorders (291.8)\\\\(291.82) Alcohol induced sleep disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\Other specified alcohol-induced mental disorders (291.8)\\" + }, + { + "displayName": "(291.89) Other alcohol-induced mental disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\Other specified alcohol-induced mental disorders (291.8)\\(291.89) Other alcohol-induced mental disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Alcohol-induced mental disorders (291)\\\\Other specified alcohol-induced mental disorders (291.8)\\\\(291.89) Other alcohol-induced mental disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Alcohol-induced mental disorders (291)\\Other specified alcohol-induced mental disorders (291.8)\\" + }, + { + "displayName": "Dementias (290)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\" + }, + { + "displayName": "(290.0) Senile dementia, uncomplicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\(290.0) Senile dementia, uncomplicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Dementias (290)\\\\(290.0) Senile dementia, uncomplicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\" + }, + { + "displayName": "(290.3) Senile dementia with delirium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\(290.3) Senile dementia with delirium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Dementias (290)\\\\(290.3) Senile dementia with delirium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\" + }, + { + "displayName": "(290.8) Other specified senile psychotic conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\(290.8) Other specified senile psychotic conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\" + }, + { + "displayName": "(290.9) Unspecified senile psychotic condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\(290.9) Unspecified senile psychotic condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Dementias (290)\\\\(290.9) Unspecified senile psychotic condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\" + }, + { + "displayName": "Presenile dementia (290.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Presenile dementia (290.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Dementias (290)\\\\Presenile dementia (290.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\" + }, + { + "displayName": "(290.10) Presenile dementia, uncomplicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Presenile dementia (290.1)\\(290.10) Presenile dementia, uncomplicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Dementias (290)\\\\Presenile dementia (290.1)\\\\(290.10) Presenile dementia, uncomplicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Presenile dementia (290.1)\\" + }, + { + "displayName": "(290.11) Presenile dementia with delirium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Presenile dementia (290.1)\\(290.11) Presenile dementia with delirium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Dementias (290)\\\\Presenile dementia (290.1)\\\\(290.11) Presenile dementia with delirium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Presenile dementia (290.1)\\" + }, + { + "displayName": "(290.12) Presenile dementia with delusional features", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Presenile dementia (290.1)\\(290.12) Presenile dementia with delusional features\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Presenile dementia (290.1)\\" + }, + { + "displayName": "(290.13) Presenile dementia with depressive features", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Presenile dementia (290.1)\\(290.13) Presenile dementia with depressive features\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Dementias (290)\\\\Presenile dementia (290.1)\\\\(290.13) Presenile dementia with depressive features\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Presenile dementia (290.1)\\" + }, + { + "displayName": "Senile dementia with delusional or depressive features (290.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Senile dementia with delusional or depressive features (290.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\" + }, + { + "displayName": "(290.20) Senile dementia with delusional features", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Senile dementia with delusional or depressive features (290.2)\\(290.20) Senile dementia with delusional features\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Dementias (290)\\\\Senile dementia with delusional or depressive features (290.2)\\\\(290.20) Senile dementia with delusional features\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Senile dementia with delusional or depressive features (290.2)\\" + }, + { + "displayName": "(290.21) Senile dementia with depressive features", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Senile dementia with delusional or depressive features (290.2)\\(290.21) Senile dementia with depressive features\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Senile dementia with delusional or depressive features (290.2)\\" + }, + { + "displayName": "Vascular dementia (290.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Vascular dementia (290.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\" + }, + { + "displayName": "(290.40) Vascular dementia, uncomplicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Vascular dementia (290.4)\\(290.40) Vascular dementia, uncomplicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Dementias (290)\\\\Vascular dementia (290.4)\\\\(290.40) Vascular dementia, uncomplicated\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Vascular dementia (290.4)\\" + }, + { + "displayName": "(290.41) Vascular dementia, with delirium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Vascular dementia (290.4)\\(290.41) Vascular dementia, with delirium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Dementias (290)\\\\Vascular dementia (290.4)\\\\(290.41) Vascular dementia, with delirium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Vascular dementia (290.4)\\" + }, + { + "displayName": "(290.42) Vascular dementia, with delusions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Vascular dementia (290.4)\\(290.42) Vascular dementia, with delusions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Dementias (290)\\\\Vascular dementia (290.4)\\\\(290.42) Vascular dementia, with delusions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Vascular dementia (290.4)\\" + }, + { + "displayName": "(290.43) Vascular dementia, with depressed mood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Vascular dementia (290.4)\\(290.43) Vascular dementia, with depressed mood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Dementias (290)\\Vascular dementia (290.4)\\" + }, + { + "displayName": "Drug-induced mental disorders (292)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Drug-induced mental disorders (292)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\" + }, + { + "displayName": "(292.0) Drug withdrawal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\(292.0) Drug withdrawal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Drug-induced mental disorders (292)\\\\(292.0) Drug withdrawal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\" + }, + { + "displayName": "(292.2) Pathological drug intoxication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\(292.2) Pathological drug intoxication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\" + }, + { + "displayName": "(292.9) Unspecified drug-induced mental disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\(292.9) Unspecified drug-induced mental disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\" + }, + { + "displayName": "Drug-induced psychotic disorders (292.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Drug-induced psychotic disorders (292.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Drug-induced mental disorders (292)\\\\Drug-induced psychotic disorders (292.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\" + }, + { + "displayName": "(292.11) Drug-induced psychotic disorder with delusions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Drug-induced psychotic disorders (292.1)\\(292.11) Drug-induced psychotic disorder with delusions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Drug-induced mental disorders (292)\\\\Drug-induced psychotic disorders (292.1)\\\\(292.11) Drug-induced psychotic disorder with delusions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Drug-induced psychotic disorders (292.1)\\" + }, + { + "displayName": "(292.12) Drug-induced psychotic disorder with hallucinations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Drug-induced psychotic disorders (292.1)\\(292.12) Drug-induced psychotic disorder with hallucinations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Drug-induced mental disorders (292)\\\\Drug-induced psychotic disorders (292.1)\\\\(292.12) Drug-induced psychotic disorder with hallucinations\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Drug-induced psychotic disorders (292.1)\\" + }, + { + "displayName": "Other specified drug-induced mental disorders (292.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\" + }, + { + "displayName": "(292.81) Drug-induced delirium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\(292.81) Drug-induced delirium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Drug-induced mental disorders (292)\\\\Other specified drug-induced mental disorders (292.8)\\\\(292.81) Drug-induced delirium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\" + }, + { + "displayName": "(292.82) Drug-induced persisting dementia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\(292.82) Drug-induced persisting dementia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\" + }, + { + "displayName": "(292.83) Drug-induced persisting amnestic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\(292.83) Drug-induced persisting amnestic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\" + }, + { + "displayName": "(292.84) Drug-induced mood disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\(292.84) Drug-induced mood disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\" + }, + { + "displayName": "(292.85) Drug induced sleep disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\(292.85) Drug induced sleep disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\" + }, + { + "displayName": "(292.89) Other specified drug-induced mental disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\(292.89) Other specified drug-induced mental disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Drug-induced mental disorders (292)\\Other specified drug-induced mental disorders (292.8)\\" + }, + { + "displayName": "Persistent mental disorders due to conditions classified elsewhere (294)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\" + }, + { + "displayName": "(294.0) Amnestic disorder in conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\(294.0) Amnestic disorder in conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\" + }, + { + "displayName": "(294.8) Other persistent mental disorders due to conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\(294.8) Other persistent mental disorders due to conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\" + }, + { + "displayName": "(294.9) Unspecified persistent mental disorders due to conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\(294.9) Unspecified persistent mental disorders due to conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\" + }, + { + "displayName": "Dementia in conditions classified elsewhere (294.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\Dementia in conditions classified elsewhere (294.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\" + }, + { + "displayName": "(294.10) Dementia in conditions classified elsewhere without behavioral disturbance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\Dementia in conditions classified elsewhere (294.1)\\(294.10) Dementia in conditions classified elsewhere without behavioral disturbance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Persistent mental disorders due to conditions classified elsewhere (294)\\\\Dementia in conditions classified elsewhere (294.1)\\\\(294.10) Dementia in conditions classified elsewhere without behavioral disturbance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\Dementia in conditions classified elsewhere (294.1)\\" + }, + { + "displayName": "(294.11) Dementia in conditions classified elsewhere with behavioral disturbance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\Dementia in conditions classified elsewhere (294.1)\\(294.11) Dementia in conditions classified elsewhere with behavioral disturbance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Persistent mental disorders due to conditions classified elsewhere (294)\\\\Dementia in conditions classified elsewhere (294.1)\\\\(294.11) Dementia in conditions classified elsewhere with behavioral disturbance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\Dementia in conditions classified elsewhere (294.1)\\" + }, + { + "displayName": "Dementia, unspecified (294.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\Dementia, unspecified (294.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\" + }, + { + "displayName": "(294.20) Dementia, unspecified, without behavioral disturbance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\Dementia, unspecified (294.2)\\(294.20) Dementia, unspecified, without behavioral disturbance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Persistent mental disorders due to conditions classified elsewhere (294)\\\\Dementia, unspecified (294.2)\\\\(294.20) Dementia, unspecified, without behavioral disturbance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\Dementia, unspecified (294.2)\\" + }, + { + "displayName": "(294.21) Dementia, unspecified, with behavioral disturbance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\Dementia, unspecified (294.2)\\(294.21) Dementia, unspecified, with behavioral disturbance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Persistent mental disorders due to conditions classified elsewhere (294)\\\\Dementia, unspecified (294.2)\\\\(294.21) Dementia, unspecified, with behavioral disturbance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Persistent mental disorders due to conditions classified elsewhere (294)\\Dementia, unspecified (294.2)\\" + }, + { + "displayName": "Transient mental disorders due to conditions classified elsewhere (293)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\" + }, + { + "displayName": "(293.0) Delirium due to conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\(293.0) Delirium due to conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Transient mental disorders due to conditions classified elsewhere (293)\\\\(293.0) Delirium due to conditions classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\" + }, + { + "displayName": "(293.1) Subacute delirium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\(293.1) Subacute delirium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\" + }, + { + "displayName": "(293.9) Unspecified transient mental disorder in conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\(293.9) Unspecified transient mental disorder in conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Transient mental disorders due to conditions classified elsewhere (293)\\\\(293.9) Unspecified transient mental disorder in conditions classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\" + }, + { + "displayName": "Other specified transient mental disorders due to conditions classified elsewhere (293.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Transient mental disorders due to conditions classified elsewhere (293)\\\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\" + }, + { + "displayName": "(293.81) Psychotic disorder with delusions in conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\(293.81) Psychotic disorder with delusions in conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\" + }, + { + "displayName": "(293.82) Psychotic disorder with hallucinations in conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\(293.82) Psychotic disorder with hallucinations in conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Transient mental disorders due to conditions classified elsewhere (293)\\\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\\\(293.82) Psychotic disorder with hallucinations in conditions classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\" + }, + { + "displayName": "(293.83) Mood disorder in conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\(293.83) Mood disorder in conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Transient mental disorders due to conditions classified elsewhere (293)\\\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\\\(293.83) Mood disorder in conditions classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\" + }, + { + "displayName": "(293.84) Anxiety disorder in conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\(293.84) Anxiety disorder in conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Transient mental disorders due to conditions classified elsewhere (293)\\\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\\\(293.84) Anxiety disorder in conditions classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\" + }, + { + "displayName": "(293.89) Other specified transient mental disorders due to conditions classified elsewhere, other", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\(293.89) Other specified transient mental disorders due to conditions classified elsewhere, other\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\\\Transient mental disorders due to conditions classified elsewhere (293)\\\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\\\(293.89) Other specified transient mental disorders due to conditions classified elsewhere, other\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\ORGANIC PSYCHOTIC CONDITIONS (290-294.99)\\Transient mental disorders due to conditions classified elsewhere (293)\\Other specified transient mental disorders due to conditions classified elsewhere (293.8)\\" + }, + { + "displayName": "OTHER PSYCHOSES (295-299.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\" + }, + { + "displayName": "Episodic mood disorders (296)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\" + }, + { + "displayName": "(296.7) Bipolar I disorder, most recent episode (or current) unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\(296.7) Bipolar I disorder, most recent episode (or current) unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\(296.7) Bipolar I disorder, most recent episode (or current) unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\" + }, + { + "displayName": "Bipolar I disorder, most recent episode (or current) depressed (296.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\" + }, + { + "displayName": "(296.50) Bipolar I disorder, most recent episode (or current) depressed, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\(296.50) Bipolar I disorder, most recent episode (or current) depressed, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\\\(296.50) Bipolar I disorder, most recent episode (or current) depressed, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\" + }, + { + "displayName": "(296.51) Bipolar I disorder, most recent episode (or current) depressed, mild", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\(296.51) Bipolar I disorder, most recent episode (or current) depressed, mild\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\\\(296.51) Bipolar I disorder, most recent episode (or current) depressed, mild\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\" + }, + { + "displayName": "(296.52) Bipolar I disorder, most recent episode (or current) depressed, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\(296.52) Bipolar I disorder, most recent episode (or current) depressed, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\\\(296.52) Bipolar I disorder, most recent episode (or current) depressed, moderate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\" + }, + { + "displayName": "(296.53) Bipolar I disorder, most recent episode (or current) depressed, severe, without mention of psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\(296.53) Bipolar I disorder, most recent episode (or current) depressed, severe, without mention of psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\\\(296.53) Bipolar I disorder, most recent episode (or current) depressed, severe, without mention of psychotic behavior\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\" + }, + { + "displayName": "(296.54) Bipolar I disorder, most recent episode (or current) depressed, severe, specified as with psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\(296.54) Bipolar I disorder, most recent episode (or current) depressed, severe, specified as with psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\\\(296.54) Bipolar I disorder, most recent episode (or current) depressed, severe, specified as with psychotic behavior\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\" + }, + { + "displayName": "(296.55) Bipolar I disorder, most recent episode (or current) depressed, in partial or unspecified remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\(296.55) Bipolar I disorder, most recent episode (or current) depressed, in partial or unspecified remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\\\(296.55) Bipolar I disorder, most recent episode (or current) depressed, in partial or unspecified remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\" + }, + { + "displayName": "(296.56) Bipolar I disorder, most recent episode (or current) depressed, in full remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\(296.56) Bipolar I disorder, most recent episode (or current) depressed, in full remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\\\(296.56) Bipolar I disorder, most recent episode (or current) depressed, in full remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) depressed (296.5)\\" + }, + { + "displayName": "Bipolar I disorder, most recent episode (or current) manic (296.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\" + }, + { + "displayName": "(296.40) Bipolar I disorder, most recent episode (or current) manic, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\(296.40) Bipolar I disorder, most recent episode (or current) manic, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\" + }, + { + "displayName": "(296.41) Bipolar I disorder, most recent episode (or current) manic, mild", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\(296.41) Bipolar I disorder, most recent episode (or current) manic, mild\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\" + }, + { + "displayName": "(296.42) Bipolar I disorder, most recent episode (or current) manic, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\(296.42) Bipolar I disorder, most recent episode (or current) manic, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\" + }, + { + "displayName": "(296.43) Bipolar I disorder, most recent episode (or current) manic, severe, without mention of psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\(296.43) Bipolar I disorder, most recent episode (or current) manic, severe, without mention of psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\" + }, + { + "displayName": "(296.44) Bipolar I disorder, most recent episode (or current) manic, severe, specified as with psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\(296.44) Bipolar I disorder, most recent episode (or current) manic, severe, specified as with psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\" + }, + { + "displayName": "(296.45) Bipolar I disorder, most recent episode (or current) manic, in partial or unspecified remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\(296.45) Bipolar I disorder, most recent episode (or current) manic, in partial or unspecified remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\" + }, + { + "displayName": "(296.46) Bipolar I disorder, most recent episode (or current) manic, in full remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\(296.46) Bipolar I disorder, most recent episode (or current) manic, in full remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) manic (296.4)\\" + }, + { + "displayName": "Bipolar I disorder, most recent episode (or current) mixed (296.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\" + }, + { + "displayName": "(296.60) Bipolar I disorder, most recent episode (or current) mixed, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\(296.60) Bipolar I disorder, most recent episode (or current) mixed, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\" + }, + { + "displayName": "(296.61) Bipolar I disorder, most recent episode (or current) mixed, mild", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\(296.61) Bipolar I disorder, most recent episode (or current) mixed, mild\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\" + }, + { + "displayName": "(296.62) Bipolar I disorder, most recent episode (or current) mixed, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\(296.62) Bipolar I disorder, most recent episode (or current) mixed, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\" + }, + { + "displayName": "(296.63) Bipolar I disorder, most recent episode (or current) mixed, severe, without mention of psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\(296.63) Bipolar I disorder, most recent episode (or current) mixed, severe, without mention of psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\" + }, + { + "displayName": "(296.64) Bipolar I disorder, most recent episode (or current) mixed, severe, specified as with psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\(296.64) Bipolar I disorder, most recent episode (or current) mixed, severe, specified as with psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\" + }, + { + "displayName": "(296.65) Bipolar I disorder, most recent episode (or current) mixed, in partial or unspecified remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\(296.65) Bipolar I disorder, most recent episode (or current) mixed, in partial or unspecified remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\" + }, + { + "displayName": "(296.66) Bipolar I disorder, most recent episode (or current) mixed, in full remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\(296.66) Bipolar I disorder, most recent episode (or current) mixed, in full remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, most recent episode (or current) mixed (296.6)\\" + }, + { + "displayName": "Bipolar I disorder, single manic episode (296.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\" + }, + { + "displayName": "(296.00) Bipolar I disorder, single manic episode, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\(296.00) Bipolar I disorder, single manic episode, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\" + }, + { + "displayName": "(296.01) Bipolar I disorder, single manic episode, mild", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\(296.01) Bipolar I disorder, single manic episode, mild\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, single manic episode (296.0)\\\\(296.01) Bipolar I disorder, single manic episode, mild\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\" + }, + { + "displayName": "(296.02) Bipolar I disorder, single manic episode, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\(296.02) Bipolar I disorder, single manic episode, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, single manic episode (296.0)\\\\(296.02) Bipolar I disorder, single manic episode, moderate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\" + }, + { + "displayName": "(296.03) Bipolar I disorder, single manic episode, severe, without mention of psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\(296.03) Bipolar I disorder, single manic episode, severe, without mention of psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, single manic episode (296.0)\\\\(296.03) Bipolar I disorder, single manic episode, severe, without mention of psychotic behavior\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\" + }, + { + "displayName": "(296.04) Bipolar I disorder, single manic episode, severe, specified as with psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\(296.04) Bipolar I disorder, single manic episode, severe, specified as with psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, single manic episode (296.0)\\\\(296.04) Bipolar I disorder, single manic episode, severe, specified as with psychotic behavior\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\" + }, + { + "displayName": "(296.05) Bipolar I disorder, single manic episode, in partial or unspecified remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\(296.05) Bipolar I disorder, single manic episode, in partial or unspecified remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, single manic episode (296.0)\\\\(296.05) Bipolar I disorder, single manic episode, in partial or unspecified remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\" + }, + { + "displayName": "(296.06) Bipolar I disorder, single manic episode, in full remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\(296.06) Bipolar I disorder, single manic episode, in full remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Bipolar I disorder, single manic episode (296.0)\\\\(296.06) Bipolar I disorder, single manic episode, in full remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Bipolar I disorder, single manic episode (296.0)\\" + }, + { + "displayName": "Major depressive disorder, recurrent episode (296.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Major depressive disorder, recurrent episode (296.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\" + }, + { + "displayName": "(296.30) Major depressive affective disorder, recurrent episode, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\(296.30) Major depressive affective disorder, recurrent episode, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\" + }, + { + "displayName": "(296.31) Major depressive affective disorder, recurrent episode, mild", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\(296.31) Major depressive affective disorder, recurrent episode, mild\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\" + }, + { + "displayName": "(296.32) Major depressive affective disorder, recurrent episode, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\(296.32) Major depressive affective disorder, recurrent episode, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\" + }, + { + "displayName": "(296.33) Major depressive affective disorder, recurrent episode, severe, without mention of psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\(296.33) Major depressive affective disorder, recurrent episode, severe, without mention of psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\" + }, + { + "displayName": "(296.34) Major depressive affective disorder, recurrent episode, severe, specified as with psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\(296.34) Major depressive affective disorder, recurrent episode, severe, specified as with psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\" + }, + { + "displayName": "(296.35) Major depressive affective disorder, recurrent episode, in partial or unspecified remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\(296.35) Major depressive affective disorder, recurrent episode, in partial or unspecified remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\" + }, + { + "displayName": "(296.36) Major depressive affective disorder, recurrent episode, in full remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\(296.36) Major depressive affective disorder, recurrent episode, in full remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, recurrent episode (296.3)\\" + }, + { + "displayName": "Major depressive disorder, single episode (296.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\" + }, + { + "displayName": "(296.20) Major depressive affective disorder, single episode, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\(296.20) Major depressive affective disorder, single episode, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\" + }, + { + "displayName": "(296.21) Major depressive affective disorder, single episode, mild", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\(296.21) Major depressive affective disorder, single episode, mild\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\" + }, + { + "displayName": "(296.22) Major depressive affective disorder, single episode, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\(296.22) Major depressive affective disorder, single episode, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\" + }, + { + "displayName": "(296.23) Major depressive affective disorder, single episode, severe, without mention of psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\(296.23) Major depressive affective disorder, single episode, severe, without mention of psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\" + }, + { + "displayName": "(296.24) Major depressive affective disorder, single episode, severe, specified as with psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\(296.24) Major depressive affective disorder, single episode, severe, specified as with psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\" + }, + { + "displayName": "(296.25) Major depressive affective disorder, single episode, in partial or unspecified remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\(296.25) Major depressive affective disorder, single episode, in partial or unspecified remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\" + }, + { + "displayName": "(296.26) Major depressive affective disorder, single episode, in full remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\(296.26) Major depressive affective disorder, single episode, in full remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Major depressive disorder, single episode (296.2)\\" + }, + { + "displayName": "Manic disorder, recurrent episode (296.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Manic disorder, recurrent episode (296.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\" + }, + { + "displayName": "(296.10) Manic affective disorder, recurrent episode, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\(296.10) Manic affective disorder, recurrent episode, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Manic disorder, recurrent episode (296.1)\\\\(296.10) Manic affective disorder, recurrent episode, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\" + }, + { + "displayName": "(296.11) Manic affective disorder, recurrent episode, mild", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\(296.11) Manic affective disorder, recurrent episode, mild\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Manic disorder, recurrent episode (296.1)\\\\(296.11) Manic affective disorder, recurrent episode, mild\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\" + }, + { + "displayName": "(296.12) Manic affective disorder, recurrent episode, moderate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\(296.12) Manic affective disorder, recurrent episode, moderate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Manic disorder, recurrent episode (296.1)\\\\(296.12) Manic affective disorder, recurrent episode, moderate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\" + }, + { + "displayName": "(296.13) Manic affective disorder, recurrent episode, severe, without mention of psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\(296.13) Manic affective disorder, recurrent episode, severe, without mention of psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Manic disorder, recurrent episode (296.1)\\\\(296.13) Manic affective disorder, recurrent episode, severe, without mention of psychotic behavior\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\" + }, + { + "displayName": "(296.14) Manic affective disorder, recurrent episode, severe, specified as with psychotic behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\(296.14) Manic affective disorder, recurrent episode, severe, specified as with psychotic behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Manic disorder, recurrent episode (296.1)\\\\(296.14) Manic affective disorder, recurrent episode, severe, specified as with psychotic behavior\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\" + }, + { + "displayName": "(296.15) Manic affective disorder, recurrent episode, in partial or unspecified remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\(296.15) Manic affective disorder, recurrent episode, in partial or unspecified remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Episodic mood disorders (296)\\\\Manic disorder, recurrent episode (296.1)\\\\(296.15) Manic affective disorder, recurrent episode, in partial or unspecified remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\" + }, + { + "displayName": "(296.16) Manic affective disorder, recurrent episode, in full remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\(296.16) Manic affective disorder, recurrent episode, in full remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Manic disorder, recurrent episode (296.1)\\" + }, + { + "displayName": "Other and unspecified bipolar disorders (296.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified bipolar disorders (296.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\" + }, + { + "displayName": "(296.80) Bipolar disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified bipolar disorders (296.8)\\(296.80) Bipolar disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified bipolar disorders (296.8)\\" + }, + { + "displayName": "(296.81) Atypical manic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified bipolar disorders (296.8)\\(296.81) Atypical manic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified bipolar disorders (296.8)\\" + }, + { + "displayName": "(296.82) Atypical depressive disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified bipolar disorders (296.8)\\(296.82) Atypical depressive disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified bipolar disorders (296.8)\\" + }, + { + "displayName": "(296.89) Other bipolar disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified bipolar disorders (296.8)\\(296.89) Other bipolar disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified bipolar disorders (296.8)\\" + }, + { + "displayName": "Other and unspecified episodic mood disorder (296.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified episodic mood disorder (296.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\" + }, + { + "displayName": "(296.90) Unspecified episodic mood disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified episodic mood disorder (296.9)\\(296.90) Unspecified episodic mood disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified episodic mood disorder (296.9)\\" + }, + { + "displayName": "(296.99) Other specified episodic mood disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified episodic mood disorder (296.9)\\(296.99) Other specified episodic mood disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Episodic mood disorders (296)\\Other and unspecified episodic mood disorder (296.9)\\" + }, + { + "displayName": "Other nonorganic psychoses (298)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\" + }, + { + "displayName": "(298.0) Depressive type psychosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\(298.0) Depressive type psychosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\" + }, + { + "displayName": "(298.1) Excitative type psychosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\(298.1) Excitative type psychosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\" + }, + { + "displayName": "(298.2) Reactive confusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\(298.2) Reactive confusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\" + }, + { + "displayName": "(298.3) Acute paranoid reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\(298.3) Acute paranoid reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\" + }, + { + "displayName": "(298.4) Psychogenic paranoid psychosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\(298.4) Psychogenic paranoid psychosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\" + }, + { + "displayName": "(298.8) Other and unspecified reactive psychosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\(298.8) Other and unspecified reactive psychosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\" + }, + { + "displayName": "(298.9) Unspecified psychosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\(298.9) Unspecified psychosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Other nonorganic psychoses (298)\\" + }, + { + "displayName": "Paranoid states (Delusional disorders) (297)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\" + }, + { + "displayName": "(297.0) Paranoid state, simple", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\(297.0) Paranoid state, simple\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\" + }, + { + "displayName": "(297.1) Delusional disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\(297.1) Delusional disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Paranoid states (Delusional disorders) (297)\\\\(297.1) Delusional disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\" + }, + { + "displayName": "(297.2) Paraphrenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\(297.2) Paraphrenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Paranoid states (Delusional disorders) (297)\\\\(297.2) Paraphrenia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\" + }, + { + "displayName": "(297.3) Shared psychotic disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\(297.3) Shared psychotic disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Paranoid states (Delusional disorders) (297)\\\\(297.3) Shared psychotic disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\" + }, + { + "displayName": "(297.8) Other specified paranoid states", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\(297.8) Other specified paranoid states\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Paranoid states (Delusional disorders) (297)\\\\(297.8) Other specified paranoid states\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\" + }, + { + "displayName": "(297.9) Unspecified paranoid state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\(297.9) Unspecified paranoid state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Paranoid states (Delusional disorders) (297)\\\\(297.9) Unspecified paranoid state\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Paranoid states (Delusional disorders) (297)\\" + }, + { + "displayName": "Pervasive developmental disorders (299)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Pervasive developmental disorders (299)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\" + }, + { + "displayName": "Autistic disorder (299.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Autistic disorder (299.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Pervasive developmental disorders (299)\\\\Autistic disorder (299.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\" + }, + { + "displayName": "(299.00) Autistic disorder, current or active state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Autistic disorder (299.0)\\(299.00) Autistic disorder, current or active state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Pervasive developmental disorders (299)\\\\Autistic disorder (299.0)\\\\(299.00) Autistic disorder, current or active state\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Autistic disorder (299.0)\\" + }, + { + "displayName": "(299.01) Autistic disorder, residual state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Autistic disorder (299.0)\\(299.01) Autistic disorder, residual state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Pervasive developmental disorders (299)\\\\Autistic disorder (299.0)\\\\(299.01) Autistic disorder, residual state\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Autistic disorder (299.0)\\" + }, + { + "displayName": "Childhood disintegrative disorder (299.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Childhood disintegrative disorder (299.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\" + }, + { + "displayName": "(299.10) Childhood disintegrative disorder, current or active state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Childhood disintegrative disorder (299.1)\\(299.10) Childhood disintegrative disorder, current or active state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Childhood disintegrative disorder (299.1)\\" + }, + { + "displayName": "(299.11) Childhood disintegrative disorder, residual state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Childhood disintegrative disorder (299.1)\\(299.11) Childhood disintegrative disorder, residual state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Childhood disintegrative disorder (299.1)\\" + }, + { + "displayName": "Other specified pervasive developmental disorders (299.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Other specified pervasive developmental disorders (299.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\" + }, + { + "displayName": "(299.80) Other specified pervasive developmental disorders, current or active state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Other specified pervasive developmental disorders (299.8)\\(299.80) Other specified pervasive developmental disorders, current or active state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Other specified pervasive developmental disorders (299.8)\\" + }, + { + "displayName": "(299.81) Other specified pervasive developmental disorders, residual state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Other specified pervasive developmental disorders (299.8)\\(299.81) Other specified pervasive developmental disorders, residual state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Other specified pervasive developmental disorders (299.8)\\" + }, + { + "displayName": "Unspecified pervasive developmental disorder (299.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Unspecified pervasive developmental disorder (299.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\" + }, + { + "displayName": "(299.90) Unspecified pervasive developmental disorder, current or active state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Unspecified pervasive developmental disorder (299.9)\\(299.90) Unspecified pervasive developmental disorder, current or active state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Unspecified pervasive developmental disorder (299.9)\\" + }, + { + "displayName": "(299.91) Unspecified pervasive developmental disorder, residual state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Unspecified pervasive developmental disorder (299.9)\\(299.91) Unspecified pervasive developmental disorder, residual state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Pervasive developmental disorders (299)\\Unspecified pervasive developmental disorder (299.9)\\" + }, + { + "displayName": "Schizophrenic disorders (295)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\" + }, + { + "displayName": "Catatonic type schizophrenia (295.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\" + }, + { + "displayName": "(295.20) Catatonic type schizophrenia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\(295.20) Catatonic type schizophrenia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\" + }, + { + "displayName": "(295.21) Catatonic type schizophrenia, subchronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\(295.21) Catatonic type schizophrenia, subchronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\" + }, + { + "displayName": "(295.22) Catatonic type schizophrenia, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\(295.22) Catatonic type schizophrenia, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\" + }, + { + "displayName": "(295.23) Catatonic type schizophrenia, subchronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\(295.23) Catatonic type schizophrenia, subchronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\" + }, + { + "displayName": "(295.24) Catatonic type schizophrenia, chronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\(295.24) Catatonic type schizophrenia, chronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\" + }, + { + "displayName": "(295.25) Catatonic type schizophrenia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\(295.25) Catatonic type schizophrenia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Catatonic type schizophrenia (295.2)\\" + }, + { + "displayName": "Disorganized type schizophrenia (295.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\" + }, + { + "displayName": "(295.10) Disorganized type schizophrenia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\(295.10) Disorganized type schizophrenia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\" + }, + { + "displayName": "(295.11) Disorganized type schizophrenia, subchronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\(295.11) Disorganized type schizophrenia, subchronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Disorganized type schizophrenia (295.1)\\\\(295.11) Disorganized type schizophrenia, subchronic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\" + }, + { + "displayName": "(295.12) Disorganized type schizophrenia, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\(295.12) Disorganized type schizophrenia, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Disorganized type schizophrenia (295.1)\\\\(295.12) Disorganized type schizophrenia, chronic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\" + }, + { + "displayName": "(295.13) Disorganized type schizophrenia, subchronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\(295.13) Disorganized type schizophrenia, subchronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Disorganized type schizophrenia (295.1)\\\\(295.13) Disorganized type schizophrenia, subchronic with acute exacerbation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\" + }, + { + "displayName": "(295.14) Disorganized type schizophrenia, chronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\(295.14) Disorganized type schizophrenia, chronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Disorganized type schizophrenia (295.1)\\\\(295.14) Disorganized type schizophrenia, chronic with acute exacerbation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\" + }, + { + "displayName": "(295.15) Disorganized type schizophrenia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\(295.15) Disorganized type schizophrenia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Disorganized type schizophrenia (295.1)\\\\(295.15) Disorganized type schizophrenia, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Disorganized type schizophrenia (295.1)\\" + }, + { + "displayName": "Latent schizophrenia (295.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Latent schizophrenia (295.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\" + }, + { + "displayName": "(295.50) Latent schizophrenia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\(295.50) Latent schizophrenia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Latent schizophrenia (295.5)\\\\(295.50) Latent schizophrenia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\" + }, + { + "displayName": "(295.51) Latent schizophrenia, subchronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\(295.51) Latent schizophrenia, subchronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\" + }, + { + "displayName": "(295.52) Latent schizophrenia, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\(295.52) Latent schizophrenia, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\" + }, + { + "displayName": "(295.53) Latent schizophrenia, subchronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\(295.53) Latent schizophrenia, subchronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\" + }, + { + "displayName": "(295.54) Latent schizophrenia, chronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\(295.54) Latent schizophrenia, chronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\" + }, + { + "displayName": "(295.55) Latent schizophrenia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\(295.55) Latent schizophrenia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Latent schizophrenia (295.5)\\" + }, + { + "displayName": "Other specified types of schizophrenia (295.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Other specified types of schizophrenia (295.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\" + }, + { + "displayName": "(295.80) Other specified types of schizophrenia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\(295.80) Other specified types of schizophrenia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Other specified types of schizophrenia (295.8)\\\\(295.80) Other specified types of schizophrenia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\" + }, + { + "displayName": "(295.81) Other specified types of schizophrenia, subchronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\(295.81) Other specified types of schizophrenia, subchronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\" + }, + { + "displayName": "(295.82) Other specified types of schizophrenia, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\(295.82) Other specified types of schizophrenia, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\" + }, + { + "displayName": "(295.83) Other specified types of schizophrenia, subchronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\(295.83) Other specified types of schizophrenia, subchronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\" + }, + { + "displayName": "(295.84) Other specified types of schizophrenia, chronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\(295.84) Other specified types of schizophrenia, chronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\" + }, + { + "displayName": "(295.85) Other specified types of schizophrenia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\(295.85) Other specified types of schizophrenia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Other specified types of schizophrenia (295.8)\\" + }, + { + "displayName": "Paranoid type schizophrenia (295.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\" + }, + { + "displayName": "(295.30) Paranoid type schizophrenia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\(295.30) Paranoid type schizophrenia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\" + }, + { + "displayName": "(295.31) Paranoid type schizophrenia, subchronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\(295.31) Paranoid type schizophrenia, subchronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\" + }, + { + "displayName": "(295.32) Paranoid type schizophrenia, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\(295.32) Paranoid type schizophrenia, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\" + }, + { + "displayName": "(295.33) Paranoid type schizophrenia, subchronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\(295.33) Paranoid type schizophrenia, subchronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\" + }, + { + "displayName": "(295.34) Paranoid type schizophrenia, chronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\(295.34) Paranoid type schizophrenia, chronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\" + }, + { + "displayName": "(295.35) Paranoid type schizophrenia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\(295.35) Paranoid type schizophrenia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Paranoid type schizophrenia (295.3)\\" + }, + { + "displayName": "Residual type schizophrenic disorders (295.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\" + }, + { + "displayName": "(295.60) Schizophrenic disorders, residual type, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\(295.60) Schizophrenic disorders, residual type, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\" + }, + { + "displayName": "(295.61) Schizophrenic disorders, residual type, subchronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\(295.61) Schizophrenic disorders, residual type, subchronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\" + }, + { + "displayName": "(295.62) Schizophrenic disorders, residual type, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\(295.62) Schizophrenic disorders, residual type, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\" + }, + { + "displayName": "(295.63) Schizophrenic disorders, residual type, subchronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\(295.63) Schizophrenic disorders, residual type, subchronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Residual type schizophrenic disorders (295.6)\\\\(295.63) Schizophrenic disorders, residual type, subchronic with acute exacerbation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\" + }, + { + "displayName": "(295.64) Schizophrenic disorders, residual type, chronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\(295.64) Schizophrenic disorders, residual type, chronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Residual type schizophrenic disorders (295.6)\\\\(295.64) Schizophrenic disorders, residual type, chronic with acute exacerbation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\" + }, + { + "displayName": "(295.65) Schizophrenic disorders, residual type, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\(295.65) Schizophrenic disorders, residual type, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Residual type schizophrenic disorders (295.6)\\\\(295.65) Schizophrenic disorders, residual type, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Residual type schizophrenic disorders (295.6)\\" + }, + { + "displayName": "Schizoaffective disorder (295.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\" + }, + { + "displayName": "(295.70) Schizoaffective disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\(295.70) Schizoaffective disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Schizoaffective disorder (295.7)\\\\(295.70) Schizoaffective disorder, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\" + }, + { + "displayName": "(295.71) Schizoaffective disorder, subchronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\(295.71) Schizoaffective disorder, subchronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\" + }, + { + "displayName": "(295.72) Schizoaffective disorder, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\(295.72) Schizoaffective disorder, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Schizoaffective disorder (295.7)\\\\(295.72) Schizoaffective disorder, chronic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\" + }, + { + "displayName": "(295.73) Schizoaffective disorder, subchronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\(295.73) Schizoaffective disorder, subchronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\" + }, + { + "displayName": "(295.74) Schizoaffective disorder, chronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\(295.74) Schizoaffective disorder, chronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\" + }, + { + "displayName": "(295.75) Schizoaffective disorder, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\(295.75) Schizoaffective disorder, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Schizoaffective disorder (295.7)\\\\(295.75) Schizoaffective disorder, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizoaffective disorder (295.7)\\" + }, + { + "displayName": "Schizophreniform disorder (295.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\" + }, + { + "displayName": "(295.40) Schizophreniform disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\(295.40) Schizophreniform disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\" + }, + { + "displayName": "(295.41) Schizophreniform disorder, subchronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\(295.41) Schizophreniform disorder, subchronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\" + }, + { + "displayName": "(295.42) Schizophreniform disorder, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\(295.42) Schizophreniform disorder, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\" + }, + { + "displayName": "(295.43) Schizophreniform disorder, subchronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\(295.43) Schizophreniform disorder, subchronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\" + }, + { + "displayName": "(295.44) Schizophreniform disorder, chronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\(295.44) Schizophreniform disorder, chronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\" + }, + { + "displayName": "(295.45) Schizophreniform disorder, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\(295.45) Schizophreniform disorder, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Schizophreniform disorder (295.4)\\" + }, + { + "displayName": "Simple type schizophrenia (295.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Simple type schizophrenia (295.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\" + }, + { + "displayName": "(295.00) Simple type schizophrenia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\(295.00) Simple type schizophrenia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Simple type schizophrenia (295.0)\\\\(295.00) Simple type schizophrenia, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\" + }, + { + "displayName": "(295.01) Simple type schizophrenia, subchronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\(295.01) Simple type schizophrenia, subchronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Simple type schizophrenia (295.0)\\\\(295.01) Simple type schizophrenia, subchronic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\" + }, + { + "displayName": "(295.02) Simple type schizophrenia, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\(295.02) Simple type schizophrenia, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\\\Psychoses (290-299.99)\\\\OTHER PSYCHOSES (295-299.99)\\\\Schizophrenic disorders (295)\\\\Simple type schizophrenia (295.0)\\\\(295.02) Simple type schizophrenia, chronic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\" + }, + { + "displayName": "(295.03) Simple type schizophrenia, subchronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\(295.03) Simple type schizophrenia, subchronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\" + }, + { + "displayName": "(295.04) Simple type schizophrenia, chronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\(295.04) Simple type schizophrenia, chronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\" + }, + { + "displayName": "(295.05) Simple type schizophrenia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\(295.05) Simple type schizophrenia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Simple type schizophrenia (295.0)\\" + }, + { + "displayName": "Unspecified schizophrenia (295.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\" + }, + { + "displayName": "(295.90) Unspecified schizophrenia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\(295.90) Unspecified schizophrenia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\" + }, + { + "displayName": "(295.91) Unspecified schizophrenia, subchronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\(295.91) Unspecified schizophrenia, subchronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\" + }, + { + "displayName": "(295.92) Unspecified schizophrenia, chronic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\(295.92) Unspecified schizophrenia, chronic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\" + }, + { + "displayName": "(295.93) Unspecified schizophrenia, subchronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\(295.93) Unspecified schizophrenia, subchronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\" + }, + { + "displayName": "(295.94) Unspecified schizophrenia, chronic with acute exacerbation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\(295.94) Unspecified schizophrenia, chronic with acute exacerbation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\" + }, + { + "displayName": "(295.95) Unspecified schizophrenia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\(295.95) Unspecified schizophrenia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Mental, behavioral and neurodevelopmental disorders (290-319.99)\\Psychoses (290-299.99)\\OTHER PSYCHOSES (295-299.99)\\Schizophrenic disorders (295)\\Unspecified schizophrenia (295.9)\\" + }, + { + "displayName": "Neoplasms (140-239.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Benign neoplasms (210-229.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "(217) Benign neoplasm of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\(217) Benign neoplasm of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(220) Benign neoplasm of ovary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\(220) Benign neoplasm of ovary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(226) Benign neoplasm of thyroid glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\(226) Benign neoplasm of thyroid glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "Benign neoplasm of bone and articular cartilage (213)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(213.0) Benign neoplasm of bones of skull and face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\(213.0) Benign neoplasm of bones of skull and face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\" + }, + { + "displayName": "(213.1) Benign neoplasm of lower jaw bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\(213.1) Benign neoplasm of lower jaw bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\" + }, + { + "displayName": "(213.2) Benign neoplasm of vertebral column, excluding sacrum and coccyx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\(213.2) Benign neoplasm of vertebral column, excluding sacrum and coccyx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\" + }, + { + "displayName": "(213.3) Benign neoplasm of ribs, sternum, and clavicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\(213.3) Benign neoplasm of ribs, sternum, and clavicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\" + }, + { + "displayName": "(213.4) Benign neoplasm of scapula and long bones of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\(213.4) Benign neoplasm of scapula and long bones of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\" + }, + { + "displayName": "(213.5) Benign neoplasm of short bones of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\(213.5) Benign neoplasm of short bones of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of bone and articular cartilage (213)\\\\(213.5) Benign neoplasm of short bones of upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\" + }, + { + "displayName": "(213.6) Benign neoplasm of pelvic bones, sacrum, and coccyx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\(213.6) Benign neoplasm of pelvic bones, sacrum, and coccyx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of bone and articular cartilage (213)\\\\(213.6) Benign neoplasm of pelvic bones, sacrum, and coccyx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\" + }, + { + "displayName": "(213.7) Benign neoplasm of long bones of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\(213.7) Benign neoplasm of long bones of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of bone and articular cartilage (213)\\\\(213.7) Benign neoplasm of long bones of lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\" + }, + { + "displayName": "(213.8) Benign neoplasm of short bones of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\(213.8) Benign neoplasm of short bones of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of bone and articular cartilage (213)\\\\(213.8) Benign neoplasm of short bones of lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\" + }, + { + "displayName": "(213.9) Benign neoplasm of bone and articular cartilage, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\(213.9) Benign neoplasm of bone and articular cartilage, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of bone and articular cartilage (213)\\\\(213.9) Benign neoplasm of bone and articular cartilage, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of bone and articular cartilage (213)\\" + }, + { + "displayName": "Benign neoplasm of brain and other parts of nervous system (225)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of brain and other parts of nervous system (225)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(225.0) Benign neoplasm of brain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\(225.0) Benign neoplasm of brain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of brain and other parts of nervous system (225)\\\\(225.0) Benign neoplasm of brain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\" + }, + { + "displayName": "(225.1) Benign neoplasm of cranial nerves", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\(225.1) Benign neoplasm of cranial nerves\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of brain and other parts of nervous system (225)\\\\(225.1) Benign neoplasm of cranial nerves\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\" + }, + { + "displayName": "(225.2) Benign neoplasm of cerebral meninges", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\(225.2) Benign neoplasm of cerebral meninges\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of brain and other parts of nervous system (225)\\\\(225.2) Benign neoplasm of cerebral meninges\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\" + }, + { + "displayName": "(225.3) Benign neoplasm of spinal cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\(225.3) Benign neoplasm of spinal cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of brain and other parts of nervous system (225)\\\\(225.3) Benign neoplasm of spinal cord\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\" + }, + { + "displayName": "(225.4) Benign neoplasm of spinal meninges", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\(225.4) Benign neoplasm of spinal meninges\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of brain and other parts of nervous system (225)\\\\(225.4) Benign neoplasm of spinal meninges\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\" + }, + { + "displayName": "(225.8) Benign neoplasm of other specified sites of nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\(225.8) Benign neoplasm of other specified sites of nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of brain and other parts of nervous system (225)\\\\(225.8) Benign neoplasm of other specified sites of nervous system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\" + }, + { + "displayName": "(225.9) Benign neoplasm of nervous system, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\(225.9) Benign neoplasm of nervous system, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of brain and other parts of nervous system (225)\\\\(225.9) Benign neoplasm of nervous system, part unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of brain and other parts of nervous system (225)\\" + }, + { + "displayName": "Benign neoplasm of eye (224)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of eye (224)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(224.0) Benign neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\(224.0) Benign neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of eye (224)\\\\(224.0) Benign neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\" + }, + { + "displayName": "(224.1) Benign neoplasm of orbit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\(224.1) Benign neoplasm of orbit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of eye (224)\\\\(224.1) Benign neoplasm of orbit\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\" + }, + { + "displayName": "(224.2) Benign neoplasm of lacrimal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\(224.2) Benign neoplasm of lacrimal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of eye (224)\\\\(224.2) Benign neoplasm of lacrimal gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\" + }, + { + "displayName": "(224.3) Benign neoplasm of conjunctiva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\(224.3) Benign neoplasm of conjunctiva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of eye (224)\\\\(224.3) Benign neoplasm of conjunctiva\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\" + }, + { + "displayName": "(224.4) Benign neoplasm of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\(224.4) Benign neoplasm of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of eye (224)\\\\(224.4) Benign neoplasm of cornea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\" + }, + { + "displayName": "(224.5) Benign neoplasm of retina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\(224.5) Benign neoplasm of retina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of eye (224)\\\\(224.5) Benign neoplasm of retina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\" + }, + { + "displayName": "(224.6) Benign neoplasm of choroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\(224.6) Benign neoplasm of choroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of eye (224)\\\\(224.6) Benign neoplasm of choroid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\" + }, + { + "displayName": "(224.7) Benign neoplasm of lacrimal duct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\(224.7) Benign neoplasm of lacrimal duct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of eye (224)\\\\(224.7) Benign neoplasm of lacrimal duct\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\" + }, + { + "displayName": "(224.8) Benign neoplasm of other specified parts of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\(224.8) Benign neoplasm of other specified parts of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of eye (224)\\\\(224.8) Benign neoplasm of other specified parts of eye\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\" + }, + { + "displayName": "(224.9) Benign neoplasm of eye, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\(224.9) Benign neoplasm of eye, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of eye (224)\\\\(224.9) Benign neoplasm of eye, part unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of eye (224)\\" + }, + { + "displayName": "Benign neoplasm of kidney and other urinary organs (223)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of kidney and other urinary organs (223)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(223.0) Benign neoplasm of kidney, except pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\(223.0) Benign neoplasm of kidney, except pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of kidney and other urinary organs (223)\\\\(223.0) Benign neoplasm of kidney, except pelvis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\" + }, + { + "displayName": "(223.1) Benign neoplasm of renal pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\(223.1) Benign neoplasm of renal pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of kidney and other urinary organs (223)\\\\(223.1) Benign neoplasm of renal pelvis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\" + }, + { + "displayName": "(223.2) Benign neoplasm of ureter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\(223.2) Benign neoplasm of ureter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of kidney and other urinary organs (223)\\\\(223.2) Benign neoplasm of ureter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\" + }, + { + "displayName": "(223.3) Benign neoplasm of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\(223.3) Benign neoplasm of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of kidney and other urinary organs (223)\\\\(223.3) Benign neoplasm of bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\" + }, + { + "displayName": "(223.9) Benign neoplasm of urinary organ, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\(223.9) Benign neoplasm of urinary organ, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of kidney and other urinary organs (223)\\\\(223.9) Benign neoplasm of urinary organ, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\" + }, + { + "displayName": "Benign neoplasm of other specified sites of urinary organs (223.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\Benign neoplasm of other specified sites of urinary organs (223.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of kidney and other urinary organs (223)\\\\Benign neoplasm of other specified sites of urinary organs (223.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\" + }, + { + "displayName": "(223.81) Benign neoplasm of urethra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\Benign neoplasm of other specified sites of urinary organs (223.8)\\(223.81) Benign neoplasm of urethra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of kidney and other urinary organs (223)\\\\Benign neoplasm of other specified sites of urinary organs (223.8)\\\\(223.81) Benign neoplasm of urethra\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\Benign neoplasm of other specified sites of urinary organs (223.8)\\" + }, + { + "displayName": "(223.89) Benign neoplasm of other specified sites of urinary organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\Benign neoplasm of other specified sites of urinary organs (223.8)\\(223.89) Benign neoplasm of other specified sites of urinary organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of kidney and other urinary organs (223)\\\\Benign neoplasm of other specified sites of urinary organs (223.8)\\\\(223.89) Benign neoplasm of other specified sites of urinary organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of kidney and other urinary organs (223)\\Benign neoplasm of other specified sites of urinary organs (223.8)\\" + }, + { + "displayName": "Benign neoplasm of lip, oral cavity, and pharynx (210)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(210.0) Benign neoplasm of lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\(210.0) Benign neoplasm of lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\\\(210.0) Benign neoplasm of lip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\" + }, + { + "displayName": "(210.1) Benign neoplasm of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\(210.1) Benign neoplasm of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\\\(210.1) Benign neoplasm of tongue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\" + }, + { + "displayName": "(210.2) Benign neoplasm of major salivary glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\(210.2) Benign neoplasm of major salivary glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\\\(210.2) Benign neoplasm of major salivary glands\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\" + }, + { + "displayName": "(210.3) Benign neoplasm of floor of mouth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\(210.3) Benign neoplasm of floor of mouth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\\\(210.3) Benign neoplasm of floor of mouth\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\" + }, + { + "displayName": "(210.4) Benign neoplasm of other and unspecified parts of mouth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\(210.4) Benign neoplasm of other and unspecified parts of mouth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\\\(210.4) Benign neoplasm of other and unspecified parts of mouth\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\" + }, + { + "displayName": "(210.5) Benign neoplasm of tonsil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\(210.5) Benign neoplasm of tonsil\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\\\(210.5) Benign neoplasm of tonsil\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\" + }, + { + "displayName": "(210.6) Benign neoplasm of other parts of oropharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\(210.6) Benign neoplasm of other parts of oropharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\\\(210.6) Benign neoplasm of other parts of oropharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\" + }, + { + "displayName": "(210.7) Benign neoplasm of nasopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\(210.7) Benign neoplasm of nasopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\\\(210.7) Benign neoplasm of nasopharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\" + }, + { + "displayName": "(210.8) Benign neoplasm of hypopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\(210.8) Benign neoplasm of hypopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\\\(210.8) Benign neoplasm of hypopharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\" + }, + { + "displayName": "(210.9) Benign neoplasm of pharynx, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\(210.9) Benign neoplasm of pharynx, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\\\(210.9) Benign neoplasm of pharynx, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of lip, oral cavity, and pharynx (210)\\" + }, + { + "displayName": "Benign neoplasm of male genital organs (222)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of male genital organs (222)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(222.0) Benign neoplasm of testis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\(222.0) Benign neoplasm of testis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of male genital organs (222)\\\\(222.0) Benign neoplasm of testis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\" + }, + { + "displayName": "(222.1) Benign neoplasm of penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\(222.1) Benign neoplasm of penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of male genital organs (222)\\\\(222.1) Benign neoplasm of penis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\" + }, + { + "displayName": "(222.2) Benign neoplasm of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\(222.2) Benign neoplasm of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of male genital organs (222)\\\\(222.2) Benign neoplasm of prostate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\" + }, + { + "displayName": "(222.3) Benign neoplasm of epididymis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\(222.3) Benign neoplasm of epididymis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of male genital organs (222)\\\\(222.3) Benign neoplasm of epididymis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\" + }, + { + "displayName": "(222.4) Benign neoplasm of scrotum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\(222.4) Benign neoplasm of scrotum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of male genital organs (222)\\\\(222.4) Benign neoplasm of scrotum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\" + }, + { + "displayName": "(222.8) Benign neoplasm of other specified sites of male genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\(222.8) Benign neoplasm of other specified sites of male genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of male genital organs (222)\\\\(222.8) Benign neoplasm of other specified sites of male genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\" + }, + { + "displayName": "(222.9) Benign neoplasm of male genital organ, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\(222.9) Benign neoplasm of male genital organ, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of male genital organs (222)\\\\(222.9) Benign neoplasm of male genital organ, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of male genital organs (222)\\" + }, + { + "displayName": "Benign neoplasm of other and unspecified sites (229)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other and unspecified sites (229)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(229.0) Benign neoplasm of lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other and unspecified sites (229)\\(229.0) Benign neoplasm of lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of other and unspecified sites (229)\\\\(229.0) Benign neoplasm of lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other and unspecified sites (229)\\" + }, + { + "displayName": "(229.8) Benign neoplasm of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other and unspecified sites (229)\\(229.8) Benign neoplasm of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other and unspecified sites (229)\\" + }, + { + "displayName": "(229.9) Benign neoplasm of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other and unspecified sites (229)\\(229.9) Benign neoplasm of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of other and unspecified sites (229)\\\\(229.9) Benign neoplasm of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other and unspecified sites (229)\\" + }, + { + "displayName": "Benign neoplasm of other endocrine glands and related structures (227)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of other endocrine glands and related structures (227)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(227.0) Benign neoplasm of adrenal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\(227.0) Benign neoplasm of adrenal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of other endocrine glands and related structures (227)\\\\(227.0) Benign neoplasm of adrenal gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\" + }, + { + "displayName": "(227.1) Benign neoplasm of parathyroid gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\(227.1) Benign neoplasm of parathyroid gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\" + }, + { + "displayName": "(227.3) Benign neoplasm of pituitary gland and craniopharyngeal duct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\(227.3) Benign neoplasm of pituitary gland and craniopharyngeal duct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of other endocrine glands and related structures (227)\\\\(227.3) Benign neoplasm of pituitary gland and craniopharyngeal duct\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\" + }, + { + "displayName": "(227.4) Benign neoplasm of pineal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\(227.4) Benign neoplasm of pineal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of other endocrine glands and related structures (227)\\\\(227.4) Benign neoplasm of pineal gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\" + }, + { + "displayName": "(227.5) Benign neoplasm of carotid body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\(227.5) Benign neoplasm of carotid body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of other endocrine glands and related structures (227)\\\\(227.5) Benign neoplasm of carotid body\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\" + }, + { + "displayName": "(227.6) Benign neoplasm of aortic body and other paraganglia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\(227.6) Benign neoplasm of aortic body and other paraganglia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of other endocrine glands and related structures (227)\\\\(227.6) Benign neoplasm of aortic body and other paraganglia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\" + }, + { + "displayName": "(227.8) Benign neoplasm of other endocrine glands and related structures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\(227.8) Benign neoplasm of other endocrine glands and related structures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\" + }, + { + "displayName": "(227.9) Benign neoplasm of endocrine gland, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\(227.9) Benign neoplasm of endocrine gland, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other endocrine glands and related structures (227)\\" + }, + { + "displayName": "Benign neoplasm of other female genital organs (221)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other female genital organs (221)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(221.0) Benign neoplasm of fallopian tube and uterine ligaments", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other female genital organs (221)\\(221.0) Benign neoplasm of fallopian tube and uterine ligaments\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other female genital organs (221)\\" + }, + { + "displayName": "(221.1) Benign neoplasm of vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other female genital organs (221)\\(221.1) Benign neoplasm of vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other female genital organs (221)\\" + }, + { + "displayName": "(221.2) Benign neoplasm of vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other female genital organs (221)\\(221.2) Benign neoplasm of vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other female genital organs (221)\\" + }, + { + "displayName": "(221.8) Benign neoplasm of other specified sites of female genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other female genital organs (221)\\(221.8) Benign neoplasm of other specified sites of female genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other female genital organs (221)\\" + }, + { + "displayName": "(221.9) Benign neoplasm of female genital organ, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other female genital organs (221)\\(221.9) Benign neoplasm of female genital organ, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other female genital organs (221)\\" + }, + { + "displayName": "Benign neoplasm of other parts of digestive system (211)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(211.0) Benign neoplasm of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\(211.0) Benign neoplasm of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\" + }, + { + "displayName": "(211.1) Benign neoplasm of stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\(211.1) Benign neoplasm of stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\" + }, + { + "displayName": "(211.2) Benign neoplasm of duodenum, jejunum, and ileum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\(211.2) Benign neoplasm of duodenum, jejunum, and ileum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\" + }, + { + "displayName": "(211.3) Benign neoplasm of colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\(211.3) Benign neoplasm of colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\" + }, + { + "displayName": "(211.4) Benign neoplasm of rectum and anal canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\(211.4) Benign neoplasm of rectum and anal canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\" + }, + { + "displayName": "(211.5) Benign neoplasm of liver and biliary passages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\(211.5) Benign neoplasm of liver and biliary passages\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\" + }, + { + "displayName": "(211.6) Benign neoplasm of pancreas, except islets of Langerhans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\(211.6) Benign neoplasm of pancreas, except islets of Langerhans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\" + }, + { + "displayName": "(211.7) Benign neoplasm of islets of Langerhans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\(211.7) Benign neoplasm of islets of Langerhans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\" + }, + { + "displayName": "(211.8) Benign neoplasm of retroperitoneum and peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\(211.8) Benign neoplasm of retroperitoneum and peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\" + }, + { + "displayName": "(211.9) Benign neoplasm of other and unspecified site in the digestive system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\(211.9) Benign neoplasm of other and unspecified site in the digestive system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of other parts of digestive system (211)\\" + }, + { + "displayName": "Benign neoplasm of respiratory and intrathoracic organs (212)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(212.0) Benign neoplasm of nasal cavities, middle ear, and accessory sinuses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\(212.0) Benign neoplasm of nasal cavities, middle ear, and accessory sinuses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\" + }, + { + "displayName": "(212.1) Benign neoplasm of larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\(212.1) Benign neoplasm of larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\" + }, + { + "displayName": "(212.2) Benign neoplasm of trachea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\(212.2) Benign neoplasm of trachea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\" + }, + { + "displayName": "(212.3) Benign neoplasm of bronchus and lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\(212.3) Benign neoplasm of bronchus and lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of respiratory and intrathoracic organs (212)\\\\(212.3) Benign neoplasm of bronchus and lung\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\" + }, + { + "displayName": "(212.4) Benign neoplasm of pleura", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\(212.4) Benign neoplasm of pleura\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of respiratory and intrathoracic organs (212)\\\\(212.4) Benign neoplasm of pleura\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\" + }, + { + "displayName": "(212.5) Benign neoplasm of mediastinum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\(212.5) Benign neoplasm of mediastinum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of respiratory and intrathoracic organs (212)\\\\(212.5) Benign neoplasm of mediastinum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\" + }, + { + "displayName": "(212.6) Benign neoplasm of thymus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\(212.6) Benign neoplasm of thymus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of respiratory and intrathoracic organs (212)\\\\(212.6) Benign neoplasm of thymus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\" + }, + { + "displayName": "(212.7) Benign neoplasm of heart", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\(212.7) Benign neoplasm of heart\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of respiratory and intrathoracic organs (212)\\\\(212.7) Benign neoplasm of heart\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\" + }, + { + "displayName": "(212.8) Benign neoplasm of other specified sites of respiratory and intrathoracic organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\(212.8) Benign neoplasm of other specified sites of respiratory and intrathoracic organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of respiratory and intrathoracic organs (212)\\\\(212.8) Benign neoplasm of other specified sites of respiratory and intrathoracic organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\" + }, + { + "displayName": "(212.9) Benign neoplasm of respiratory and intrathoracic organs, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\(212.9) Benign neoplasm of respiratory and intrathoracic organs, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of respiratory and intrathoracic organs (212)\\\\(212.9) Benign neoplasm of respiratory and intrathoracic organs, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of respiratory and intrathoracic organs (212)\\" + }, + { + "displayName": "Benign neoplasm of skin (216)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of skin (216)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(216.0) Benign neoplasm of skin of lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\(216.0) Benign neoplasm of skin of lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of skin (216)\\\\(216.0) Benign neoplasm of skin of lip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\" + }, + { + "displayName": "(216.1) Benign neoplasm of eyelid, including canthus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\(216.1) Benign neoplasm of eyelid, including canthus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of skin (216)\\\\(216.1) Benign neoplasm of eyelid, including canthus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\" + }, + { + "displayName": "(216.2) Benign neoplasm of ear and external auditory canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\(216.2) Benign neoplasm of ear and external auditory canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of skin (216)\\\\(216.2) Benign neoplasm of ear and external auditory canal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\" + }, + { + "displayName": "(216.3) Benign neoplasm of skin of other and unspecified parts of face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\(216.3) Benign neoplasm of skin of other and unspecified parts of face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of skin (216)\\\\(216.3) Benign neoplasm of skin of other and unspecified parts of face\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\" + }, + { + "displayName": "(216.4) Benign neoplasm of scalp and skin of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\(216.4) Benign neoplasm of scalp and skin of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of skin (216)\\\\(216.4) Benign neoplasm of scalp and skin of neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\" + }, + { + "displayName": "(216.5) Benign neoplasm of skin of trunk, except scrotum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\(216.5) Benign neoplasm of skin of trunk, except scrotum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of skin (216)\\\\(216.5) Benign neoplasm of skin of trunk, except scrotum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\" + }, + { + "displayName": "(216.6) Benign neoplasm of skin of upper limb, including shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\(216.6) Benign neoplasm of skin of upper limb, including shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of skin (216)\\\\(216.6) Benign neoplasm of skin of upper limb, including shoulder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\" + }, + { + "displayName": "(216.7) Benign neoplasm of skin of lower limb, including hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\(216.7) Benign neoplasm of skin of lower limb, including hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of skin (216)\\\\(216.7) Benign neoplasm of skin of lower limb, including hip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\" + }, + { + "displayName": "(216.8) Benign neoplasm of other specified sites of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\(216.8) Benign neoplasm of other specified sites of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of skin (216)\\\\(216.8) Benign neoplasm of other specified sites of skin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\" + }, + { + "displayName": "(216.9) Benign neoplasm of skin, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\(216.9) Benign neoplasm of skin, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Benign neoplasm of skin (216)\\\\(216.9) Benign neoplasm of skin, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Benign neoplasm of skin (216)\\" + }, + { + "displayName": "Hemangioma and lymphangioma, any site (228)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Hemangioma and lymphangioma, any site (228)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(228.1) Lymphangioma, any site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\(228.1) Lymphangioma, any site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Hemangioma and lymphangioma, any site (228)\\\\(228.1) Lymphangioma, any site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\" + }, + { + "displayName": "Hemangioma, any site (228.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Hemangioma and lymphangioma, any site (228)\\\\Hemangioma, any site (228.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\" + }, + { + "displayName": "(228.00) Hemangioma of unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\(228.00) Hemangioma of unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Hemangioma and lymphangioma, any site (228)\\\\Hemangioma, any site (228.0)\\\\(228.00) Hemangioma of unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\" + }, + { + "displayName": "(228.01) Hemangioma of skin and subcutaneous tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\(228.01) Hemangioma of skin and subcutaneous tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Hemangioma and lymphangioma, any site (228)\\\\Hemangioma, any site (228.0)\\\\(228.01) Hemangioma of skin and subcutaneous tissue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\" + }, + { + "displayName": "(228.02) Hemangioma of intracranial structures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\(228.02) Hemangioma of intracranial structures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Hemangioma and lymphangioma, any site (228)\\\\Hemangioma, any site (228.0)\\\\(228.02) Hemangioma of intracranial structures\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\" + }, + { + "displayName": "(228.03) Hemangioma of retina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\(228.03) Hemangioma of retina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Hemangioma and lymphangioma, any site (228)\\\\Hemangioma, any site (228.0)\\\\(228.03) Hemangioma of retina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\" + }, + { + "displayName": "(228.04) Hemangioma of intra-abdominal structures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\(228.04) Hemangioma of intra-abdominal structures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Hemangioma and lymphangioma, any site (228)\\\\Hemangioma, any site (228.0)\\\\(228.04) Hemangioma of intra-abdominal structures\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\" + }, + { + "displayName": "(228.09) Hemangioma of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\(228.09) Hemangioma of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Hemangioma and lymphangioma, any site (228)\\\\Hemangioma, any site (228.0)\\\\(228.09) Hemangioma of other sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Hemangioma and lymphangioma, any site (228)\\Hemangioma, any site (228.0)\\" + }, + { + "displayName": "Lipoma (214)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Lipoma (214)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(214.0) Lipoma of skin and subcutaneous tissue of face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\(214.0) Lipoma of skin and subcutaneous tissue of face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Lipoma (214)\\\\(214.0) Lipoma of skin and subcutaneous tissue of face\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\" + }, + { + "displayName": "(214.1) Lipoma of other skin and subcutaneous tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\(214.1) Lipoma of other skin and subcutaneous tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Lipoma (214)\\\\(214.1) Lipoma of other skin and subcutaneous tissue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\" + }, + { + "displayName": "(214.2) Lipoma of intrathoracic organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\(214.2) Lipoma of intrathoracic organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Lipoma (214)\\\\(214.2) Lipoma of intrathoracic organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\" + }, + { + "displayName": "(214.3) Lipoma of intra-abdominal organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\(214.3) Lipoma of intra-abdominal organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Lipoma (214)\\\\(214.3) Lipoma of intra-abdominal organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\" + }, + { + "displayName": "(214.4) Lipoma of spermatic cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\(214.4) Lipoma of spermatic cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Lipoma (214)\\\\(214.4) Lipoma of spermatic cord\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\" + }, + { + "displayName": "(214.8) Lipoma of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\(214.8) Lipoma of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Lipoma (214)\\\\(214.8) Lipoma of other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\" + }, + { + "displayName": "(214.9) Lipoma, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\(214.9) Lipoma, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Lipoma (214)\\" + }, + { + "displayName": "Other benign neoplasm of connective and other soft tissue (215)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(215.0) Other benign neoplasm of connective and other soft tissue of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\(215.0) Other benign neoplasm of connective and other soft tissue of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\" + }, + { + "displayName": "(215.2) Other benign neoplasm of connective and other soft tissue of upper limb, including shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\(215.2) Other benign neoplasm of connective and other soft tissue of upper limb, including shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\" + }, + { + "displayName": "(215.3) Other benign neoplasm of connective and other soft tissue of lower limb, including hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\(215.3) Other benign neoplasm of connective and other soft tissue of lower limb, including hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\" + }, + { + "displayName": "(215.4) Other benign neoplasm of connective and other soft tissue of thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\(215.4) Other benign neoplasm of connective and other soft tissue of thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\" + }, + { + "displayName": "(215.5) Other benign neoplasm of connective and other soft tissue of abdomen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\(215.5) Other benign neoplasm of connective and other soft tissue of abdomen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\" + }, + { + "displayName": "(215.6) Other benign neoplasm of connective and other soft tissue of pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\(215.6) Other benign neoplasm of connective and other soft tissue of pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\" + }, + { + "displayName": "(215.7) Other benign neoplasm of connective and other soft tissue of trunk, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\(215.7) Other benign neoplasm of connective and other soft tissue of trunk, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\" + }, + { + "displayName": "(215.8) Other benign neoplasm of connective and other soft tissue of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\(215.8) Other benign neoplasm of connective and other soft tissue of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\" + }, + { + "displayName": "(215.9) Other benign neoplasm of connective and other soft tissue, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\(215.9) Other benign neoplasm of connective and other soft tissue, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of connective and other soft tissue (215)\\" + }, + { + "displayName": "Other benign neoplasm of uterus (219)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of uterus (219)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(219.0) Benign neoplasm of cervix uteri", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of uterus (219)\\(219.0) Benign neoplasm of cervix uteri\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of uterus (219)\\" + }, + { + "displayName": "(219.1) Benign neoplasm of corpus uteri", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of uterus (219)\\(219.1) Benign neoplasm of corpus uteri\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of uterus (219)\\" + }, + { + "displayName": "(219.8) Benign neoplasm of other specified parts of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of uterus (219)\\(219.8) Benign neoplasm of other specified parts of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of uterus (219)\\" + }, + { + "displayName": "(219.9) Benign neoplasm of uterus, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of uterus (219)\\(219.9) Benign neoplasm of uterus, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Other benign neoplasm of uterus (219)\\\\(219.9) Benign neoplasm of uterus, part unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Other benign neoplasm of uterus (219)\\" + }, + { + "displayName": "Uterine leiomyoma (218)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Uterine leiomyoma (218)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Uterine leiomyoma (218)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\" + }, + { + "displayName": "(218.0) Submucous leiomyoma of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Uterine leiomyoma (218)\\(218.0) Submucous leiomyoma of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Uterine leiomyoma (218)\\\\(218.0) Submucous leiomyoma of uterus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Uterine leiomyoma (218)\\" + }, + { + "displayName": "(218.1) Intramural leiomyoma of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Uterine leiomyoma (218)\\(218.1) Intramural leiomyoma of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Uterine leiomyoma (218)\\\\(218.1) Intramural leiomyoma of uterus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Uterine leiomyoma (218)\\" + }, + { + "displayName": "(218.2) Subserous leiomyoma of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Uterine leiomyoma (218)\\(218.2) Subserous leiomyoma of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Benign neoplasms (210-229.99)\\\\Uterine leiomyoma (218)\\\\(218.2) Subserous leiomyoma of uterus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Uterine leiomyoma (218)\\" + }, + { + "displayName": "(218.9) Leiomyoma of uterus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Uterine leiomyoma (218)\\(218.9) Leiomyoma of uterus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Benign neoplasms (210-229.99)\\Uterine leiomyoma (218)\\" + }, + { + "displayName": "Carcinoma in situ (230-234.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "Carcinoma in situ of breast and genitourinary system (233)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\" + }, + { + "displayName": "(233.0) Carcinoma in situ of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\(233.0) Carcinoma in situ of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\" + }, + { + "displayName": "(233.1) Carcinoma in situ of cervix uteri", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\(233.1) Carcinoma in situ of cervix uteri\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\" + }, + { + "displayName": "(233.2) Carcinoma in situ of other and unspecified parts of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\(233.2) Carcinoma in situ of other and unspecified parts of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\" + }, + { + "displayName": "(233.4) Carcinoma in situ of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\(233.4) Carcinoma in situ of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\" + }, + { + "displayName": "(233.5) Carcinoma in situ of penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\(233.5) Carcinoma in situ of penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\" + }, + { + "displayName": "(233.6) Carcinoma in situ of other and unspecified male genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\(233.6) Carcinoma in situ of other and unspecified male genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\" + }, + { + "displayName": "(233.7) Carcinoma in situ of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\(233.7) Carcinoma in situ of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\" + }, + { + "displayName": "(233.9) Carcinoma in situ of other and unspecified urinary organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\(233.9) Carcinoma in situ of other and unspecified urinary organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of breast and genitourinary system (233)\\\\(233.9) Carcinoma in situ of other and unspecified urinary organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\" + }, + { + "displayName": "Carcinoma in situ of other and unspecified female genital organs (233.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of breast and genitourinary system (233)\\\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\" + }, + { + "displayName": "(233.30) Carcinoma in situ, unspecified female genital organ", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\(233.30) Carcinoma in situ, unspecified female genital organ\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of breast and genitourinary system (233)\\\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\\\(233.30) Carcinoma in situ, unspecified female genital organ\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\" + }, + { + "displayName": "(233.31) Carcinoma in situ, vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\(233.31) Carcinoma in situ, vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of breast and genitourinary system (233)\\\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\\\(233.31) Carcinoma in situ, vagina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\" + }, + { + "displayName": "(233.32) Carcinoma in situ, vulva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\(233.32) Carcinoma in situ, vulva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of breast and genitourinary system (233)\\\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\\\(233.32) Carcinoma in situ, vulva\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\" + }, + { + "displayName": "(233.39) Carcinoma in situ, other female genital organ", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\(233.39) Carcinoma in situ, other female genital organ\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of breast and genitourinary system (233)\\\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\\\(233.39) Carcinoma in situ, other female genital organ\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of breast and genitourinary system (233)\\Carcinoma in situ of other and unspecified female genital organs (233.3)\\" + }, + { + "displayName": "Carcinoma in situ of digestive organs (230)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of digestive organs (230)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\" + }, + { + "displayName": "(230.0) Carcinoma in situ of lip, oral cavity, and pharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\(230.0) Carcinoma in situ of lip, oral cavity, and pharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of digestive organs (230)\\\\(230.0) Carcinoma in situ of lip, oral cavity, and pharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\" + }, + { + "displayName": "(230.1) Carcinoma in situ of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\(230.1) Carcinoma in situ of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of digestive organs (230)\\\\(230.1) Carcinoma in situ of esophagus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\" + }, + { + "displayName": "(230.2) Carcinoma in situ of stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\(230.2) Carcinoma in situ of stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of digestive organs (230)\\\\(230.2) Carcinoma in situ of stomach\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\" + }, + { + "displayName": "(230.3) Carcinoma in situ of colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\(230.3) Carcinoma in situ of colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of digestive organs (230)\\\\(230.3) Carcinoma in situ of colon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\" + }, + { + "displayName": "(230.4) Carcinoma in situ of rectum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\(230.4) Carcinoma in situ of rectum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of digestive organs (230)\\\\(230.4) Carcinoma in situ of rectum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\" + }, + { + "displayName": "(230.5) Carcinoma in situ of anal canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\(230.5) Carcinoma in situ of anal canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of digestive organs (230)\\\\(230.5) Carcinoma in situ of anal canal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\" + }, + { + "displayName": "(230.6) Carcinoma in situ of anus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\(230.6) Carcinoma in situ of anus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of digestive organs (230)\\\\(230.6) Carcinoma in situ of anus, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\" + }, + { + "displayName": "(230.7) Carcinoma in situ of other and unspecified parts of intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\(230.7) Carcinoma in situ of other and unspecified parts of intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of digestive organs (230)\\\\(230.7) Carcinoma in situ of other and unspecified parts of intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\" + }, + { + "displayName": "(230.8) Carcinoma in situ of liver and biliary system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\(230.8) Carcinoma in situ of liver and biliary system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of digestive organs (230)\\\\(230.8) Carcinoma in situ of liver and biliary system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\" + }, + { + "displayName": "(230.9) Carcinoma in situ of other and unspecified digestive organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\(230.9) Carcinoma in situ of other and unspecified digestive organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of digestive organs (230)\\\\(230.9) Carcinoma in situ of other and unspecified digestive organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of digestive organs (230)\\" + }, + { + "displayName": "Carcinoma in situ of other and unspecified sites (234)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of other and unspecified sites (234)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of other and unspecified sites (234)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\" + }, + { + "displayName": "(234.0) Carcinoma in situ of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of other and unspecified sites (234)\\(234.0) Carcinoma in situ of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of other and unspecified sites (234)\\\\(234.0) Carcinoma in situ of eye\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of other and unspecified sites (234)\\" + }, + { + "displayName": "(234.8) Carcinoma in situ of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of other and unspecified sites (234)\\(234.8) Carcinoma in situ of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of other and unspecified sites (234)\\" + }, + { + "displayName": "(234.9) Carcinoma in situ, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of other and unspecified sites (234)\\(234.9) Carcinoma in situ, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of other and unspecified sites (234)\\" + }, + { + "displayName": "Carcinoma in situ of respiratory system (231)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of respiratory system (231)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\" + }, + { + "displayName": "(231.0) Carcinoma in situ of larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of respiratory system (231)\\(231.0) Carcinoma in situ of larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of respiratory system (231)\\" + }, + { + "displayName": "(231.1) Carcinoma in situ of trachea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of respiratory system (231)\\(231.1) Carcinoma in situ of trachea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of respiratory system (231)\\" + }, + { + "displayName": "(231.2) Carcinoma in situ of bronchus and lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of respiratory system (231)\\(231.2) Carcinoma in situ of bronchus and lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of respiratory system (231)\\" + }, + { + "displayName": "(231.8) Carcinoma in situ of other specified parts of respiratory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of respiratory system (231)\\(231.8) Carcinoma in situ of other specified parts of respiratory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of respiratory system (231)\\" + }, + { + "displayName": "(231.9) Carcinoma in situ of respiratory system, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of respiratory system (231)\\(231.9) Carcinoma in situ of respiratory system, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of respiratory system (231)\\" + }, + { + "displayName": "Carcinoma in situ of skin (232)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\" + }, + { + "displayName": "(232.0) Carcinoma in situ of skin of lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\(232.0) Carcinoma in situ of skin of lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\" + }, + { + "displayName": "(232.1) Carcinoma in situ of eyelid, including canthus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\(232.1) Carcinoma in situ of eyelid, including canthus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\" + }, + { + "displayName": "(232.2) Carcinoma in situ of skin of ear and external auditory canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\(232.2) Carcinoma in situ of skin of ear and external auditory canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\" + }, + { + "displayName": "(232.3) Carcinoma in situ of skin of other and unspecified parts of face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\(232.3) Carcinoma in situ of skin of other and unspecified parts of face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\" + }, + { + "displayName": "(232.4) Carcinoma in situ of scalp and skin of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\(232.4) Carcinoma in situ of scalp and skin of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\" + }, + { + "displayName": "(232.5) Carcinoma in situ of skin of trunk, except scrotum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\(232.5) Carcinoma in situ of skin of trunk, except scrotum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\" + }, + { + "displayName": "(232.6) Carcinoma in situ of skin of upper limb, including shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\(232.6) Carcinoma in situ of skin of upper limb, including shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\" + }, + { + "displayName": "(232.7) Carcinoma in situ of skin of lower limb, including hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\(232.7) Carcinoma in situ of skin of lower limb, including hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of skin (232)\\\\(232.7) Carcinoma in situ of skin of lower limb, including hip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\" + }, + { + "displayName": "(232.8) Carcinoma in situ of other specified sites of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\(232.8) Carcinoma in situ of other specified sites of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Carcinoma in situ (230-234.99)\\\\Carcinoma in situ of skin (232)\\\\(232.8) Carcinoma in situ of other specified sites of skin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\" + }, + { + "displayName": "(232.9) Carcinoma in situ of skin, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\(232.9) Carcinoma in situ of skin, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Carcinoma in situ (230-234.99)\\Carcinoma in situ of skin (232)\\" + }, + { + "displayName": "Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "Kaposi's sarcoma (176)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\" + }, + { + "displayName": "(176.0) Kaposi's sarcoma, skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\(176.0) Kaposi's sarcoma, skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\" + }, + { + "displayName": "(176.1) Kaposi's sarcoma, soft tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\(176.1) Kaposi's sarcoma, soft tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\" + }, + { + "displayName": "(176.2) Kaposi's sarcoma, palate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\(176.2) Kaposi's sarcoma, palate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\" + }, + { + "displayName": "(176.3) Kaposi's sarcoma, gastrointestinal sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\(176.3) Kaposi's sarcoma, gastrointestinal sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\" + }, + { + "displayName": "(176.4) Kaposi's sarcoma, lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\(176.4) Kaposi's sarcoma, lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\" + }, + { + "displayName": "(176.5) Kaposi's sarcoma, lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\(176.5) Kaposi's sarcoma, lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\" + }, + { + "displayName": "(176.8) Kaposi's sarcoma, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\(176.8) Kaposi's sarcoma, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\" + }, + { + "displayName": "(176.9) Kaposi's sarcoma, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\(176.9) Kaposi's sarcoma, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Kaposi's sarcoma (176)\\" + }, + { + "displayName": "Malignant melanoma of skin (172)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\" + }, + { + "displayName": "(172.0) Malignant melanoma of skin of lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\(172.0) Malignant melanoma of skin of lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\" + }, + { + "displayName": "(172.1) Malignant melanoma of skin of eyelid, including canthus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\(172.1) Malignant melanoma of skin of eyelid, including canthus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant melanoma of skin (172)\\\\(172.1) Malignant melanoma of skin of eyelid, including canthus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\" + }, + { + "displayName": "(172.2) Malignant melanoma of skin of ear and external auditory canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\(172.2) Malignant melanoma of skin of ear and external auditory canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant melanoma of skin (172)\\\\(172.2) Malignant melanoma of skin of ear and external auditory canal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\" + }, + { + "displayName": "(172.3) Malignant melanoma of skin of other and unspecified parts of face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\(172.3) Malignant melanoma of skin of other and unspecified parts of face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant melanoma of skin (172)\\\\(172.3) Malignant melanoma of skin of other and unspecified parts of face\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\" + }, + { + "displayName": "(172.4) Malignant melanoma of skin of scalp and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\(172.4) Malignant melanoma of skin of scalp and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\" + }, + { + "displayName": "(172.5) Malignant melanoma of skin of trunk, except scrotum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\(172.5) Malignant melanoma of skin of trunk, except scrotum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant melanoma of skin (172)\\\\(172.5) Malignant melanoma of skin of trunk, except scrotum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\" + }, + { + "displayName": "(172.6) Malignant melanoma of skin of upper limb, including shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\(172.6) Malignant melanoma of skin of upper limb, including shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant melanoma of skin (172)\\\\(172.6) Malignant melanoma of skin of upper limb, including shoulder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\" + }, + { + "displayName": "(172.7) Malignant melanoma of skin of lower limb, including hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\(172.7) Malignant melanoma of skin of lower limb, including hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\" + }, + { + "displayName": "(172.8) Malignant melanoma of other specified sites of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\(172.8) Malignant melanoma of other specified sites of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\" + }, + { + "displayName": "(172.9) Melanoma of skin, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\(172.9) Melanoma of skin, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant melanoma of skin (172)\\" + }, + { + "displayName": "Malignant neoplasm of bone and articular cartilage (170)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\" + }, + { + "displayName": "(170.0) Malignant neoplasm of bones of skull and face, except mandible", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\(170.0) Malignant neoplasm of bones of skull and face, except mandible\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\" + }, + { + "displayName": "(170.1) Malignant neoplasm of mandible", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\(170.1) Malignant neoplasm of mandible\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\" + }, + { + "displayName": "(170.2) Malignant neoplasm of vertebral column, excluding sacrum and coccyx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\(170.2) Malignant neoplasm of vertebral column, excluding sacrum and coccyx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\" + }, + { + "displayName": "(170.3) Malignant neoplasm of ribs, sternum, and clavicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\(170.3) Malignant neoplasm of ribs, sternum, and clavicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\" + }, + { + "displayName": "(170.4) Malignant neoplasm of scapula and long bones of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\(170.4) Malignant neoplasm of scapula and long bones of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\" + }, + { + "displayName": "(170.5) Malignant neoplasm of short bones of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\(170.5) Malignant neoplasm of short bones of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\" + }, + { + "displayName": "(170.6) Malignant neoplasm of pelvic bones, sacrum, and coccyx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\(170.6) Malignant neoplasm of pelvic bones, sacrum, and coccyx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\" + }, + { + "displayName": "(170.7) Malignant neoplasm of long bones of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\(170.7) Malignant neoplasm of long bones of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\" + }, + { + "displayName": "(170.8) Malignant neoplasm of short bones of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\(170.8) Malignant neoplasm of short bones of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\" + }, + { + "displayName": "(170.9) Malignant neoplasm of bone and articular cartilage, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\(170.9) Malignant neoplasm of bone and articular cartilage, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of bone and articular cartilage (170)\\" + }, + { + "displayName": "Malignant neoplasm of connective and other soft tissue (171)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\" + }, + { + "displayName": "(171.0) Malignant neoplasm of connective and other soft tissue of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\(171.0) Malignant neoplasm of connective and other soft tissue of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\" + }, + { + "displayName": "(171.2) Malignant neoplasm of connective and other soft tissue of upper limb, including shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\(171.2) Malignant neoplasm of connective and other soft tissue of upper limb, including shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\" + }, + { + "displayName": "(171.3) Malignant neoplasm of connective and other soft tissue of lower limb, including hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\(171.3) Malignant neoplasm of connective and other soft tissue of lower limb, including hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\" + }, + { + "displayName": "(171.4) Malignant neoplasm of connective and other soft tissue of thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\(171.4) Malignant neoplasm of connective and other soft tissue of thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of connective and other soft tissue (171)\\\\(171.4) Malignant neoplasm of connective and other soft tissue of thorax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\" + }, + { + "displayName": "(171.5) Malignant neoplasm of connective and other soft tissue of abdomen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\(171.5) Malignant neoplasm of connective and other soft tissue of abdomen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of connective and other soft tissue (171)\\\\(171.5) Malignant neoplasm of connective and other soft tissue of abdomen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\" + }, + { + "displayName": "(171.6) Malignant neoplasm of connective and other soft tissue of pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\(171.6) Malignant neoplasm of connective and other soft tissue of pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of connective and other soft tissue (171)\\\\(171.6) Malignant neoplasm of connective and other soft tissue of pelvis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\" + }, + { + "displayName": "(171.7) Malignant neoplasm of connective and other soft tissue of trunk, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\(171.7) Malignant neoplasm of connective and other soft tissue of trunk, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\" + }, + { + "displayName": "(171.8) Malignant neoplasm of other specified sites of connective and other soft tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\(171.8) Malignant neoplasm of other specified sites of connective and other soft tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of connective and other soft tissue (171)\\\\(171.8) Malignant neoplasm of other specified sites of connective and other soft tissue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\" + }, + { + "displayName": "(171.9) Malignant neoplasm of connective and other soft tissue, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\(171.9) Malignant neoplasm of connective and other soft tissue, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of connective and other soft tissue (171)\\\\(171.9) Malignant neoplasm of connective and other soft tissue, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of connective and other soft tissue (171)\\" + }, + { + "displayName": "Malignant neoplasm of female breast (174)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\" + }, + { + "displayName": "(174.0) Malignant neoplasm of nipple and areola of female breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\(174.0) Malignant neoplasm of nipple and areola of female breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of female breast (174)\\\\(174.0) Malignant neoplasm of nipple and areola of female breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\" + }, + { + "displayName": "(174.1) Malignant neoplasm of central portion of female breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\(174.1) Malignant neoplasm of central portion of female breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of female breast (174)\\\\(174.1) Malignant neoplasm of central portion of female breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\" + }, + { + "displayName": "(174.2) Malignant neoplasm of upper-inner quadrant of female breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\(174.2) Malignant neoplasm of upper-inner quadrant of female breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\" + }, + { + "displayName": "(174.3) Malignant neoplasm of lower-inner quadrant of female breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\(174.3) Malignant neoplasm of lower-inner quadrant of female breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of female breast (174)\\\\(174.3) Malignant neoplasm of lower-inner quadrant of female breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\" + }, + { + "displayName": "(174.4) Malignant neoplasm of upper-outer quadrant of female breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\(174.4) Malignant neoplasm of upper-outer quadrant of female breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of female breast (174)\\\\(174.4) Malignant neoplasm of upper-outer quadrant of female breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\" + }, + { + "displayName": "(174.5) Malignant neoplasm of lower-outer quadrant of female breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\(174.5) Malignant neoplasm of lower-outer quadrant of female breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of female breast (174)\\\\(174.5) Malignant neoplasm of lower-outer quadrant of female breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\" + }, + { + "displayName": "(174.6) Malignant neoplasm of axillary tail of female breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\(174.6) Malignant neoplasm of axillary tail of female breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of female breast (174)\\\\(174.6) Malignant neoplasm of axillary tail of female breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\" + }, + { + "displayName": "(174.8) Malignant neoplasm of other specified sites of female breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\(174.8) Malignant neoplasm of other specified sites of female breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Malignant neoplasm of female breast (174)\\\\(174.8) Malignant neoplasm of other specified sites of female breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\" + }, + { + "displayName": "(174.9) Malignant neoplasm of breast (female), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\(174.9) Malignant neoplasm of breast (female), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of female breast (174)\\" + }, + { + "displayName": "Malignant neoplasm of male breast (175)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of male breast (175)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\" + }, + { + "displayName": "(175.0) Malignant neoplasm of nipple and areola of male breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of male breast (175)\\(175.0) Malignant neoplasm of nipple and areola of male breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of male breast (175)\\" + }, + { + "displayName": "(175.9) Malignant neoplasm of other and unspecified sites of male breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of male breast (175)\\(175.9) Malignant neoplasm of other and unspecified sites of male breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Malignant neoplasm of male breast (175)\\" + }, + { + "displayName": "Other and unspecified malignant neoplasm of skin (173)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\" + }, + { + "displayName": "Other and unspecified malignant neoplasm of other specified sites of skin (173.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\" + }, + { + "displayName": "(173.80) Unspecified malignant neoplasm of other specified sites of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\\(173.80) Unspecified malignant neoplasm of other specified sites of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\\" + }, + { + "displayName": "(173.81) Basal cell carcinoma of other specified sites of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\\(173.81) Basal cell carcinoma of other specified sites of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\\" + }, + { + "displayName": "(173.82) Squamous cell carcinoma of other specified sites of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\\(173.82) Squamous cell carcinoma of other specified sites of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\\" + }, + { + "displayName": "(173.89) Other specified malignant neoplasm of other specified sites of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\\(173.89) Other specified malignant neoplasm of other specified sites of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of other specified sites of skin (173.8)\\" + }, + { + "displayName": "Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\" + }, + { + "displayName": "(173.40) Unspecified malignant neoplasm of scalp and skin of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\\(173.40) Unspecified malignant neoplasm of scalp and skin of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\\" + }, + { + "displayName": "(173.41) Basal cell carcinoma of scalp and skin of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\\(173.41) Basal cell carcinoma of scalp and skin of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\\" + }, + { + "displayName": "(173.42) Squamous cell carcinoma of scalp and skin of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\\(173.42) Squamous cell carcinoma of scalp and skin of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\\" + }, + { + "displayName": "(173.49) Other specified malignant neoplasm of scalp and skin of neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\\(173.49) Other specified malignant neoplasm of scalp and skin of neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of scalp and skin of neck (173.4)\\" + }, + { + "displayName": "Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\" + }, + { + "displayName": "(173.20) Unspecified malignant neoplasm of skin of ear and external auditory canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\(173.20) Unspecified malignant neoplasm of skin of ear and external auditory canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\\\(173.20) Unspecified malignant neoplasm of skin of ear and external auditory canal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\" + }, + { + "displayName": "(173.21) Basal cell carcinoma of skin of ear and external auditory canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\(173.21) Basal cell carcinoma of skin of ear and external auditory canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\\\(173.21) Basal cell carcinoma of skin of ear and external auditory canal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\" + }, + { + "displayName": "(173.22) Squamous cell carcinoma of skin of ear and external auditory canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\(173.22) Squamous cell carcinoma of skin of ear and external auditory canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\" + }, + { + "displayName": "(173.29) Other specified malignant neoplasm of skin of ear and external auditory canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\(173.29) Other specified malignant neoplasm of skin of ear and external auditory canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\\\(173.29) Other specified malignant neoplasm of skin of ear and external auditory canal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of ear and external auditory canal (173.2)\\" + }, + { + "displayName": "Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\" + }, + { + "displayName": "(173.10) Unspecified malignant neoplasm of eyelid, including canthus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\\(173.10) Unspecified malignant neoplasm of eyelid, including canthus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\\\\(173.10) Unspecified malignant neoplasm of eyelid, including canthus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\\" + }, + { + "displayName": "(173.11) Basal cell carcinoma of eyelid, including canthus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\\(173.11) Basal cell carcinoma of eyelid, including canthus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\\\\(173.11) Basal cell carcinoma of eyelid, including canthus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\\" + }, + { + "displayName": "(173.12) Squamous cell carcinoma of eyelid, including canthus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\\(173.12) Squamous cell carcinoma of eyelid, including canthus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\\\\(173.12) Squamous cell carcinoma of eyelid, including canthus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of eyelid, including canthus (173.1)\\" + }, + { + "displayName": "Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\" + }, + { + "displayName": "(173.70) Unspecified malignant neoplasm of skin of lower limb, including hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\(173.70) Unspecified malignant neoplasm of skin of lower limb, including hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\\\(173.70) Unspecified malignant neoplasm of skin of lower limb, including hip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\" + }, + { + "displayName": "(173.71) Basal cell carcinoma of skin of lower limb, including hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\(173.71) Basal cell carcinoma of skin of lower limb, including hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\\\(173.71) Basal cell carcinoma of skin of lower limb, including hip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\" + }, + { + "displayName": "(173.72) Squamous cell carcinoma of skin of lower limb, including hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\(173.72) Squamous cell carcinoma of skin of lower limb, including hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\\\(173.72) Squamous cell carcinoma of skin of lower limb, including hip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\" + }, + { + "displayName": "(173.79) Other specified malignant neoplasm of skin of lower limb, including hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\(173.79) Other specified malignant neoplasm of skin of lower limb, including hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\\\(173.79) Other specified malignant neoplasm of skin of lower limb, including hip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of lower limb, including hip (173.7)\\" + }, + { + "displayName": "Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\" + }, + { + "displayName": "(173.30) Unspecified malignant neoplasm of skin of other and unspecified parts of face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\(173.30) Unspecified malignant neoplasm of skin of other and unspecified parts of face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\\\(173.30) Unspecified malignant neoplasm of skin of other and unspecified parts of face\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\" + }, + { + "displayName": "(173.31) Basal cell carcinoma of skin of other and unspecified parts of face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\(173.31) Basal cell carcinoma of skin of other and unspecified parts of face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\\\(173.31) Basal cell carcinoma of skin of other and unspecified parts of face\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\" + }, + { + "displayName": "(173.32) Squamous cell carcinoma of skin of other and unspecified parts of face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\(173.32) Squamous cell carcinoma of skin of other and unspecified parts of face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\" + }, + { + "displayName": "(173.39) Other specified malignant neoplasm of skin of other and unspecified parts of face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\(173.39) Other specified malignant neoplasm of skin of other and unspecified parts of face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of other and unspecified parts of face (173.3)\\" + }, + { + "displayName": "Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\" + }, + { + "displayName": "(173.50) Unspecified malignant neoplasm of skin of trunk, except scrotum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\\(173.50) Unspecified malignant neoplasm of skin of trunk, except scrotum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\\" + }, + { + "displayName": "(173.51) Basal cell carcinoma of skin of trunk, except scrotum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\\(173.51) Basal cell carcinoma of skin of trunk, except scrotum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\\" + }, + { + "displayName": "(173.52) Squamous cell carcinoma of skin of trunk, except scrotum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\\(173.52) Squamous cell carcinoma of skin of trunk, except scrotum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\\" + }, + { + "displayName": "(173.59) Other specified malignant neoplasm of skin of trunk, except scrotum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\\(173.59) Other specified malignant neoplasm of skin of trunk, except scrotum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of trunk, except scrotum (173.5)\\" + }, + { + "displayName": "Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\" + }, + { + "displayName": "(173.60) Unspecified malignant neoplasm of skin of upper limb, including shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\\(173.60) Unspecified malignant neoplasm of skin of upper limb, including shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\\" + }, + { + "displayName": "(173.61) Basal cell carcinoma of skin of upper limb, including shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\\(173.61) Basal cell carcinoma of skin of upper limb, including shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\\" + }, + { + "displayName": "(173.62) Squamous cell carcinoma of skin of upper limb, including shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\\(173.62) Squamous cell carcinoma of skin of upper limb, including shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\\" + }, + { + "displayName": "(173.69) Other specified malignant neoplasm of skin of upper limb, including shoulder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\\(173.69) Other specified malignant neoplasm of skin of upper limb, including shoulder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin of upper limb, including shoulder (173.6)\\" + }, + { + "displayName": "Other and unspecified malignant neoplasm of skin, site unspecified (173.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\" + }, + { + "displayName": "(173.90) Unspecified malignant neoplasm of skin, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\\(173.90) Unspecified malignant neoplasm of skin, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\\" + }, + { + "displayName": "(173.91) Basal cell carcinoma of skin, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\\(173.91) Basal cell carcinoma of skin, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\\" + }, + { + "displayName": "(173.92) Squamous cell carcinoma of skin, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\\(173.92) Squamous cell carcinoma of skin, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\\" + }, + { + "displayName": "(173.99) Other specified malignant neoplasm of skin, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\\(173.99) Other specified malignant neoplasm of skin, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other and unspecified malignant neoplasm of skin, site unspecified (173.9)\\" + }, + { + "displayName": "Other malignant neoplasm of skin of lip (173.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other malignant neoplasm of skin of lip (173.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\" + }, + { + "displayName": "(173.00) Unspecified malignant neoplasm of skin of lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other malignant neoplasm of skin of lip (173.0)\\(173.00) Unspecified malignant neoplasm of skin of lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other malignant neoplasm of skin of lip (173.0)\\" + }, + { + "displayName": "(173.01) Basal cell carcinoma of skin of lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other malignant neoplasm of skin of lip (173.0)\\(173.01) Basal cell carcinoma of skin of lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other malignant neoplasm of skin of lip (173.0)\\\\(173.01) Basal cell carcinoma of skin of lip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other malignant neoplasm of skin of lip (173.0)\\" + }, + { + "displayName": "(173.02) Squamous cell carcinoma of skin of lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other malignant neoplasm of skin of lip (173.0)\\(173.02) Squamous cell carcinoma of skin of lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other malignant neoplasm of skin of lip (173.0)\\\\(173.02) Squamous cell carcinoma of skin of lip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other malignant neoplasm of skin of lip (173.0)\\" + }, + { + "displayName": "(173.09) Other specified malignant neoplasm of skin of lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other malignant neoplasm of skin of lip (173.0)\\(173.09) Other specified malignant neoplasm of skin of lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\\\Other and unspecified malignant neoplasm of skin (173)\\\\Other malignant neoplasm of skin of lip (173.0)\\\\(173.09) Other specified malignant neoplasm of skin of lip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of bone, connective tissue, skin, and breast (170-176.99)\\Other and unspecified malignant neoplasm of skin (173)\\Other malignant neoplasm of skin of lip (173.0)\\" + }, + { + "displayName": "Malignant neoplasm of digestive organs and peritoneum (150-159.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "Malignant neoplasm of colon (153)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of colon (153)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\" + }, + { + "displayName": "(153.0) Malignant neoplasm of hepatic flexure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\(153.0) Malignant neoplasm of hepatic flexure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of colon (153)\\\\(153.0) Malignant neoplasm of hepatic flexure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\" + }, + { + "displayName": "(153.1) Malignant neoplasm of transverse colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\(153.1) Malignant neoplasm of transverse colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of colon (153)\\\\(153.1) Malignant neoplasm of transverse colon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\" + }, + { + "displayName": "(153.2) Malignant neoplasm of descending colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\(153.2) Malignant neoplasm of descending colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of colon (153)\\\\(153.2) Malignant neoplasm of descending colon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\" + }, + { + "displayName": "(153.3) Malignant neoplasm of sigmoid colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\(153.3) Malignant neoplasm of sigmoid colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of colon (153)\\\\(153.3) Malignant neoplasm of sigmoid colon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\" + }, + { + "displayName": "(153.4) Malignant neoplasm of cecum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\(153.4) Malignant neoplasm of cecum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of colon (153)\\\\(153.4) Malignant neoplasm of cecum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\" + }, + { + "displayName": "(153.5) Malignant neoplasm of appendix vermiformis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\(153.5) Malignant neoplasm of appendix vermiformis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of colon (153)\\\\(153.5) Malignant neoplasm of appendix vermiformis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\" + }, + { + "displayName": "(153.6) Malignant neoplasm of ascending colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\(153.6) Malignant neoplasm of ascending colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of colon (153)\\\\(153.6) Malignant neoplasm of ascending colon\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\" + }, + { + "displayName": "(153.7) Malignant neoplasm of splenic flexure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\(153.7) Malignant neoplasm of splenic flexure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of colon (153)\\\\(153.7) Malignant neoplasm of splenic flexure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\" + }, + { + "displayName": "(153.8) Malignant neoplasm of other specified sites of large intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\(153.8) Malignant neoplasm of other specified sites of large intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of colon (153)\\\\(153.8) Malignant neoplasm of other specified sites of large intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\" + }, + { + "displayName": "(153.9) Malignant neoplasm of colon, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\(153.9) Malignant neoplasm of colon, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of colon (153)\\\\(153.9) Malignant neoplasm of colon, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of colon (153)\\" + }, + { + "displayName": "Malignant neoplasm of esophagus (150)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of esophagus (150)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\" + }, + { + "displayName": "(150.0) Malignant neoplasm of cervical esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\(150.0) Malignant neoplasm of cervical esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of esophagus (150)\\\\(150.0) Malignant neoplasm of cervical esophagus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\" + }, + { + "displayName": "(150.1) Malignant neoplasm of thoracic esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\(150.1) Malignant neoplasm of thoracic esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of esophagus (150)\\\\(150.1) Malignant neoplasm of thoracic esophagus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\" + }, + { + "displayName": "(150.2) Malignant neoplasm of abdominal esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\(150.2) Malignant neoplasm of abdominal esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of esophagus (150)\\\\(150.2) Malignant neoplasm of abdominal esophagus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\" + }, + { + "displayName": "(150.3) Malignant neoplasm of upper third of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\(150.3) Malignant neoplasm of upper third of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of esophagus (150)\\\\(150.3) Malignant neoplasm of upper third of esophagus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\" + }, + { + "displayName": "(150.4) Malignant neoplasm of middle third of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\(150.4) Malignant neoplasm of middle third of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of esophagus (150)\\\\(150.4) Malignant neoplasm of middle third of esophagus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\" + }, + { + "displayName": "(150.5) Malignant neoplasm of lower third of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\(150.5) Malignant neoplasm of lower third of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of esophagus (150)\\\\(150.5) Malignant neoplasm of lower third of esophagus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\" + }, + { + "displayName": "(150.8) Malignant neoplasm of other specified part of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\(150.8) Malignant neoplasm of other specified part of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of esophagus (150)\\\\(150.8) Malignant neoplasm of other specified part of esophagus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\" + }, + { + "displayName": "(150.9) Malignant neoplasm of esophagus, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\(150.9) Malignant neoplasm of esophagus, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of esophagus (150)\\\\(150.9) Malignant neoplasm of esophagus, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of esophagus (150)\\" + }, + { + "displayName": "Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\" + }, + { + "displayName": "(156.0) Malignant neoplasm of gallbladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\(156.0) Malignant neoplasm of gallbladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\\\(156.0) Malignant neoplasm of gallbladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\" + }, + { + "displayName": "(156.1) Malignant neoplasm of extrahepatic bile ducts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\(156.1) Malignant neoplasm of extrahepatic bile ducts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\\\(156.1) Malignant neoplasm of extrahepatic bile ducts\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\" + }, + { + "displayName": "(156.2) Malignant neoplasm of ampulla of vater", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\(156.2) Malignant neoplasm of ampulla of vater\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\\\(156.2) Malignant neoplasm of ampulla of vater\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\" + }, + { + "displayName": "(156.8) Malignant neoplasm of other specified sites of gallbladder and extrahepatic bile ducts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\(156.8) Malignant neoplasm of other specified sites of gallbladder and extrahepatic bile ducts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\\\(156.8) Malignant neoplasm of other specified sites of gallbladder and extrahepatic bile ducts\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\" + }, + { + "displayName": "(156.9) Malignant neoplasm of biliary tract, part unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\(156.9) Malignant neoplasm of biliary tract, part unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\\\(156.9) Malignant neoplasm of biliary tract, part unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of gallbladder and extrahepatic bile ducts (156)\\" + }, + { + "displayName": "Malignant neoplasm of liver and intrahepatic bile ducts (155)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of liver and intrahepatic bile ducts (155)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of liver and intrahepatic bile ducts (155)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\" + }, + { + "displayName": "(155.0) Malignant neoplasm of liver, primary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of liver and intrahepatic bile ducts (155)\\(155.0) Malignant neoplasm of liver, primary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of liver and intrahepatic bile ducts (155)\\\\(155.0) Malignant neoplasm of liver, primary\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of liver and intrahepatic bile ducts (155)\\" + }, + { + "displayName": "(155.1) Malignant neoplasm of intrahepatic bile ducts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of liver and intrahepatic bile ducts (155)\\(155.1) Malignant neoplasm of intrahepatic bile ducts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of liver and intrahepatic bile ducts (155)\\\\(155.1) Malignant neoplasm of intrahepatic bile ducts\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of liver and intrahepatic bile ducts (155)\\" + }, + { + "displayName": "(155.2) Malignant neoplasm of liver, not specified as primary or secondary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of liver and intrahepatic bile ducts (155)\\(155.2) Malignant neoplasm of liver, not specified as primary or secondary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of liver and intrahepatic bile ducts (155)\\\\(155.2) Malignant neoplasm of liver, not specified as primary or secondary\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of liver and intrahepatic bile ducts (155)\\" + }, + { + "displayName": "Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\" + }, + { + "displayName": "(159.0) Malignant neoplasm of intestinal tract, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\(159.0) Malignant neoplasm of intestinal tract, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\\\(159.0) Malignant neoplasm of intestinal tract, part unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\" + }, + { + "displayName": "(159.1) Malignant neoplasm of spleen, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\(159.1) Malignant neoplasm of spleen, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\\\(159.1) Malignant neoplasm of spleen, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\" + }, + { + "displayName": "(159.8) Malignant neoplasm of other sites of digestive system and intra-abdominal organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\(159.8) Malignant neoplasm of other sites of digestive system and intra-abdominal organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\\\(159.8) Malignant neoplasm of other sites of digestive system and intra-abdominal organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\" + }, + { + "displayName": "(159.9) Malignant neoplasm of ill-defined sites within the digestive organs and peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\(159.9) Malignant neoplasm of ill-defined sites within the digestive organs and peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\\\(159.9) Malignant neoplasm of ill-defined sites within the digestive organs and peritoneum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of other and ill-defined sites within the digestive organs and peritoneum (159)\\" + }, + { + "displayName": "Malignant neoplasm of pancreas (157)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of pancreas (157)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\" + }, + { + "displayName": "(157.0) Malignant neoplasm of head of pancreas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\(157.0) Malignant neoplasm of head of pancreas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of pancreas (157)\\\\(157.0) Malignant neoplasm of head of pancreas\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\" + }, + { + "displayName": "(157.1) Malignant neoplasm of body of pancreas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\(157.1) Malignant neoplasm of body of pancreas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of pancreas (157)\\\\(157.1) Malignant neoplasm of body of pancreas\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\" + }, + { + "displayName": "(157.2) Malignant neoplasm of tail of pancreas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\(157.2) Malignant neoplasm of tail of pancreas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of pancreas (157)\\\\(157.2) Malignant neoplasm of tail of pancreas\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\" + }, + { + "displayName": "(157.3) Malignant neoplasm of pancreatic duct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\(157.3) Malignant neoplasm of pancreatic duct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of pancreas (157)\\\\(157.3) Malignant neoplasm of pancreatic duct\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\" + }, + { + "displayName": "(157.4) Malignant neoplasm of islets of langerhans", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\(157.4) Malignant neoplasm of islets of langerhans\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of pancreas (157)\\\\(157.4) Malignant neoplasm of islets of langerhans\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\" + }, + { + "displayName": "(157.8) Malignant neoplasm of other specified sites of pancreas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\(157.8) Malignant neoplasm of other specified sites of pancreas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of pancreas (157)\\\\(157.8) Malignant neoplasm of other specified sites of pancreas\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\" + }, + { + "displayName": "(157.9) Malignant neoplasm of pancreas, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\(157.9) Malignant neoplasm of pancreas, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of pancreas (157)\\\\(157.9) Malignant neoplasm of pancreas, part unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of pancreas (157)\\" + }, + { + "displayName": "Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\" + }, + { + "displayName": "(154.0) Malignant neoplasm of rectosigmoid junction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\(154.0) Malignant neoplasm of rectosigmoid junction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\\\(154.0) Malignant neoplasm of rectosigmoid junction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\" + }, + { + "displayName": "(154.1) Malignant neoplasm of rectum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\(154.1) Malignant neoplasm of rectum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\\\(154.1) Malignant neoplasm of rectum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\" + }, + { + "displayName": "(154.2) Malignant neoplasm of anal canal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\(154.2) Malignant neoplasm of anal canal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\\\(154.2) Malignant neoplasm of anal canal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\" + }, + { + "displayName": "(154.3) Malignant neoplasm of anus, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\(154.3) Malignant neoplasm of anus, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\\\(154.3) Malignant neoplasm of anus, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\" + }, + { + "displayName": "(154.8) Malignant neoplasm of other sites of rectum, rectosigmoid junction, and anus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\(154.8) Malignant neoplasm of other sites of rectum, rectosigmoid junction, and anus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\\\(154.8) Malignant neoplasm of other sites of rectum, rectosigmoid junction, and anus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of rectum, rectosigmoid junction, and anus (154)\\" + }, + { + "displayName": "Malignant neoplasm of retroperitoneum and peritoneum (158)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of retroperitoneum and peritoneum (158)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of retroperitoneum and peritoneum (158)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\" + }, + { + "displayName": "(158.0) Malignant neoplasm of retroperitoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of retroperitoneum and peritoneum (158)\\(158.0) Malignant neoplasm of retroperitoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of retroperitoneum and peritoneum (158)\\\\(158.0) Malignant neoplasm of retroperitoneum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of retroperitoneum and peritoneum (158)\\" + }, + { + "displayName": "(158.8) Malignant neoplasm of specified parts of peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of retroperitoneum and peritoneum (158)\\(158.8) Malignant neoplasm of specified parts of peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of retroperitoneum and peritoneum (158)\\\\(158.8) Malignant neoplasm of specified parts of peritoneum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of retroperitoneum and peritoneum (158)\\" + }, + { + "displayName": "(158.9) Malignant neoplasm of peritoneum, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of retroperitoneum and peritoneum (158)\\(158.9) Malignant neoplasm of peritoneum, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of retroperitoneum and peritoneum (158)\\\\(158.9) Malignant neoplasm of peritoneum, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of retroperitoneum and peritoneum (158)\\" + }, + { + "displayName": "Malignant neoplasm of small intestine, including duodenum (152)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of small intestine, including duodenum (152)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\" + }, + { + "displayName": "(152.0) Malignant neoplasm of duodenum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\(152.0) Malignant neoplasm of duodenum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of small intestine, including duodenum (152)\\\\(152.0) Malignant neoplasm of duodenum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\" + }, + { + "displayName": "(152.1) Malignant neoplasm of jejunum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\(152.1) Malignant neoplasm of jejunum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of small intestine, including duodenum (152)\\\\(152.1) Malignant neoplasm of jejunum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\" + }, + { + "displayName": "(152.2) Malignant neoplasm of ileum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\(152.2) Malignant neoplasm of ileum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of small intestine, including duodenum (152)\\\\(152.2) Malignant neoplasm of ileum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\" + }, + { + "displayName": "(152.3) Malignant neoplasm of Meckel's diverticulum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\(152.3) Malignant neoplasm of Meckel's diverticulum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of small intestine, including duodenum (152)\\\\(152.3) Malignant neoplasm of Meckel's diverticulum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\" + }, + { + "displayName": "(152.8) Malignant neoplasm of other specified sites of small intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\(152.8) Malignant neoplasm of other specified sites of small intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of small intestine, including duodenum (152)\\\\(152.8) Malignant neoplasm of other specified sites of small intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\" + }, + { + "displayName": "(152.9) Malignant neoplasm of small intestine, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\(152.9) Malignant neoplasm of small intestine, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of small intestine, including duodenum (152)\\\\(152.9) Malignant neoplasm of small intestine, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of small intestine, including duodenum (152)\\" + }, + { + "displayName": "Malignant neoplasm of stomach (151)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of stomach (151)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\" + }, + { + "displayName": "(151.0) Malignant neoplasm of cardia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\(151.0) Malignant neoplasm of cardia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of stomach (151)\\\\(151.0) Malignant neoplasm of cardia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\" + }, + { + "displayName": "(151.1) Malignant neoplasm of pylorus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\(151.1) Malignant neoplasm of pylorus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of stomach (151)\\\\(151.1) Malignant neoplasm of pylorus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\" + }, + { + "displayName": "(151.2) Malignant neoplasm of pyloric antrum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\(151.2) Malignant neoplasm of pyloric antrum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of stomach (151)\\\\(151.2) Malignant neoplasm of pyloric antrum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\" + }, + { + "displayName": "(151.3) Malignant neoplasm of fundus of stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\(151.3) Malignant neoplasm of fundus of stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of stomach (151)\\\\(151.3) Malignant neoplasm of fundus of stomach\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\" + }, + { + "displayName": "(151.4) Malignant neoplasm of body of stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\(151.4) Malignant neoplasm of body of stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of stomach (151)\\\\(151.4) Malignant neoplasm of body of stomach\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\" + }, + { + "displayName": "(151.5) Malignant neoplasm of lesser curvature of stomach, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\(151.5) Malignant neoplasm of lesser curvature of stomach, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of stomach (151)\\\\(151.5) Malignant neoplasm of lesser curvature of stomach, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\" + }, + { + "displayName": "(151.6) Malignant neoplasm of greater curvature of stomach, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\(151.6) Malignant neoplasm of greater curvature of stomach, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of stomach (151)\\\\(151.6) Malignant neoplasm of greater curvature of stomach, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\" + }, + { + "displayName": "(151.8) Malignant neoplasm of other specified sites of stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\(151.8) Malignant neoplasm of other specified sites of stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of stomach (151)\\\\(151.8) Malignant neoplasm of other specified sites of stomach\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\" + }, + { + "displayName": "(151.9) Malignant neoplasm of stomach, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\(151.9) Malignant neoplasm of stomach, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\\\Malignant neoplasm of stomach (151)\\\\(151.9) Malignant neoplasm of stomach, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of digestive organs and peritoneum (150-159.99)\\Malignant neoplasm of stomach (151)\\" + }, + { + "displayName": "Malignant neoplasm of genitourinary organs (179-189.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "(179) Malignant neoplasm of uterus, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\(179) Malignant neoplasm of uterus, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\(179) Malignant neoplasm of uterus, part unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\" + }, + { + "displayName": "(181) Malignant neoplasm of placenta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\(181) Malignant neoplasm of placenta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\(181) Malignant neoplasm of placenta\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\" + }, + { + "displayName": "(185) Malignant neoplasm of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\(185) Malignant neoplasm of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\(185) Malignant neoplasm of prostate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\" + }, + { + "displayName": "Malignant neoplasm of bladder (188)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of bladder (188)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\" + }, + { + "displayName": "(188.0) Malignant neoplasm of trigone of urinary bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\(188.0) Malignant neoplasm of trigone of urinary bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of bladder (188)\\\\(188.0) Malignant neoplasm of trigone of urinary bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\" + }, + { + "displayName": "(188.1) Malignant neoplasm of dome of urinary bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\(188.1) Malignant neoplasm of dome of urinary bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of bladder (188)\\\\(188.1) Malignant neoplasm of dome of urinary bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\" + }, + { + "displayName": "(188.2) Malignant neoplasm of lateral wall of urinary bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\(188.2) Malignant neoplasm of lateral wall of urinary bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of bladder (188)\\\\(188.2) Malignant neoplasm of lateral wall of urinary bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\" + }, + { + "displayName": "(188.3) Malignant neoplasm of anterior wall of urinary bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\(188.3) Malignant neoplasm of anterior wall of urinary bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of bladder (188)\\\\(188.3) Malignant neoplasm of anterior wall of urinary bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\" + }, + { + "displayName": "(188.4) Malignant neoplasm of posterior wall of urinary bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\(188.4) Malignant neoplasm of posterior wall of urinary bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of bladder (188)\\\\(188.4) Malignant neoplasm of posterior wall of urinary bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\" + }, + { + "displayName": "(188.5) Malignant neoplasm of bladder neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\(188.5) Malignant neoplasm of bladder neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of bladder (188)\\\\(188.5) Malignant neoplasm of bladder neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\" + }, + { + "displayName": "(188.6) Malignant neoplasm of ureteric orifice", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\(188.6) Malignant neoplasm of ureteric orifice\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of bladder (188)\\\\(188.6) Malignant neoplasm of ureteric orifice\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\" + }, + { + "displayName": "(188.7) Malignant neoplasm of urachus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\(188.7) Malignant neoplasm of urachus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of bladder (188)\\\\(188.7) Malignant neoplasm of urachus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\" + }, + { + "displayName": "(188.8) Malignant neoplasm of other specified sites of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\(188.8) Malignant neoplasm of other specified sites of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of bladder (188)\\\\(188.8) Malignant neoplasm of other specified sites of bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\" + }, + { + "displayName": "(188.9) Malignant neoplasm of bladder, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\(188.9) Malignant neoplasm of bladder, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of bladder (188)\\\\(188.9) Malignant neoplasm of bladder, part unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of bladder (188)\\" + }, + { + "displayName": "Malignant neoplasm of body of uterus (182)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of body of uterus (182)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of body of uterus (182)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\" + }, + { + "displayName": "(182.0) Malignant neoplasm of corpus uteri, except isthmus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of body of uterus (182)\\(182.0) Malignant neoplasm of corpus uteri, except isthmus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of body of uterus (182)\\\\(182.0) Malignant neoplasm of corpus uteri, except isthmus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of body of uterus (182)\\" + }, + { + "displayName": "(182.1) Malignant neoplasm of isthmus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of body of uterus (182)\\(182.1) Malignant neoplasm of isthmus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of body of uterus (182)\\\\(182.1) Malignant neoplasm of isthmus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of body of uterus (182)\\" + }, + { + "displayName": "(182.8) Malignant neoplasm of other specified sites of body of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of body of uterus (182)\\(182.8) Malignant neoplasm of other specified sites of body of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of body of uterus (182)\\\\(182.8) Malignant neoplasm of other specified sites of body of uterus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of body of uterus (182)\\" + }, + { + "displayName": "Malignant neoplasm of cervix uteri (180)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of cervix uteri (180)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of cervix uteri (180)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\" + }, + { + "displayName": "(180.0) Malignant neoplasm of endocervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of cervix uteri (180)\\(180.0) Malignant neoplasm of endocervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of cervix uteri (180)\\\\(180.0) Malignant neoplasm of endocervix\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of cervix uteri (180)\\" + }, + { + "displayName": "(180.1) Malignant neoplasm of exocervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of cervix uteri (180)\\(180.1) Malignant neoplasm of exocervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of cervix uteri (180)\\\\(180.1) Malignant neoplasm of exocervix\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of cervix uteri (180)\\" + }, + { + "displayName": "(180.8) Malignant neoplasm of other specified sites of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of cervix uteri (180)\\(180.8) Malignant neoplasm of other specified sites of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of cervix uteri (180)\\\\(180.8) Malignant neoplasm of other specified sites of cervix\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of cervix uteri (180)\\" + }, + { + "displayName": "(180.9) Malignant neoplasm of cervix uteri, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of cervix uteri (180)\\(180.9) Malignant neoplasm of cervix uteri, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of cervix uteri (180)\\\\(180.9) Malignant neoplasm of cervix uteri, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of cervix uteri (180)\\" + }, + { + "displayName": "Malignant neoplasm of kidney and other and unspecified urinary organs (189)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\" + }, + { + "displayName": "(189.0) Malignant neoplasm of kidney, except pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\(189.0) Malignant neoplasm of kidney, except pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\\\(189.0) Malignant neoplasm of kidney, except pelvis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\" + }, + { + "displayName": "(189.1) Malignant neoplasm of renal pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\(189.1) Malignant neoplasm of renal pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\\\(189.1) Malignant neoplasm of renal pelvis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\" + }, + { + "displayName": "(189.2) Malignant neoplasm of ureter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\(189.2) Malignant neoplasm of ureter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\\\(189.2) Malignant neoplasm of ureter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\" + }, + { + "displayName": "(189.3) Malignant neoplasm of urethra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\(189.3) Malignant neoplasm of urethra\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\\\(189.3) Malignant neoplasm of urethra\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\" + }, + { + "displayName": "(189.4) Malignant neoplasm of paraurethral glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\(189.4) Malignant neoplasm of paraurethral glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\\\(189.4) Malignant neoplasm of paraurethral glands\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\" + }, + { + "displayName": "(189.8) Malignant neoplasm of other specified sites of urinary organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\(189.8) Malignant neoplasm of other specified sites of urinary organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\\\(189.8) Malignant neoplasm of other specified sites of urinary organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\" + }, + { + "displayName": "(189.9) Malignant neoplasm of urinary organ, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\(189.9) Malignant neoplasm of urinary organ, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\\\(189.9) Malignant neoplasm of urinary organ, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of kidney and other and unspecified urinary organs (189)\\" + }, + { + "displayName": "Malignant neoplasm of other and unspecified female genital organs (184)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of other and unspecified female genital organs (184)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\" + }, + { + "displayName": "(184.0) Malignant neoplasm of vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\(184.0) Malignant neoplasm of vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of other and unspecified female genital organs (184)\\\\(184.0) Malignant neoplasm of vagina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\" + }, + { + "displayName": "(184.1) Malignant neoplasm of labia majora", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\(184.1) Malignant neoplasm of labia majora\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of other and unspecified female genital organs (184)\\\\(184.1) Malignant neoplasm of labia majora\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\" + }, + { + "displayName": "(184.2) Malignant neoplasm of labia minora", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\(184.2) Malignant neoplasm of labia minora\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of other and unspecified female genital organs (184)\\\\(184.2) Malignant neoplasm of labia minora\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\" + }, + { + "displayName": "(184.3) Malignant neoplasm of clitoris", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\(184.3) Malignant neoplasm of clitoris\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of other and unspecified female genital organs (184)\\\\(184.3) Malignant neoplasm of clitoris\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\" + }, + { + "displayName": "(184.4) Malignant neoplasm of vulva, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\(184.4) Malignant neoplasm of vulva, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of other and unspecified female genital organs (184)\\\\(184.4) Malignant neoplasm of vulva, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\" + }, + { + "displayName": "(184.8) Malignant neoplasm of other specified sites of female genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\(184.8) Malignant neoplasm of other specified sites of female genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of other and unspecified female genital organs (184)\\\\(184.8) Malignant neoplasm of other specified sites of female genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\" + }, + { + "displayName": "(184.9) Malignant neoplasm of female genital organ, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\(184.9) Malignant neoplasm of female genital organ, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of other and unspecified female genital organs (184)\\\\(184.9) Malignant neoplasm of female genital organ, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of other and unspecified female genital organs (184)\\" + }, + { + "displayName": "Malignant neoplasm of ovary and other uterine adnexa (183)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of ovary and other uterine adnexa (183)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\" + }, + { + "displayName": "(183.0) Malignant neoplasm of ovary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\(183.0) Malignant neoplasm of ovary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of ovary and other uterine adnexa (183)\\\\(183.0) Malignant neoplasm of ovary\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\" + }, + { + "displayName": "(183.2) Malignant neoplasm of fallopian tube", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\(183.2) Malignant neoplasm of fallopian tube\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of ovary and other uterine adnexa (183)\\\\(183.2) Malignant neoplasm of fallopian tube\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\" + }, + { + "displayName": "(183.3) Malignant neoplasm of broad ligament of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\(183.3) Malignant neoplasm of broad ligament of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of ovary and other uterine adnexa (183)\\\\(183.3) Malignant neoplasm of broad ligament of uterus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\" + }, + { + "displayName": "(183.4) Malignant neoplasm of parametrium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\(183.4) Malignant neoplasm of parametrium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of ovary and other uterine adnexa (183)\\\\(183.4) Malignant neoplasm of parametrium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\" + }, + { + "displayName": "(183.5) Malignant neoplasm of round ligament of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\(183.5) Malignant neoplasm of round ligament of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of ovary and other uterine adnexa (183)\\\\(183.5) Malignant neoplasm of round ligament of uterus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\" + }, + { + "displayName": "(183.8) Malignant neoplasm of other specified sites of uterine adnexa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\(183.8) Malignant neoplasm of other specified sites of uterine adnexa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\" + }, + { + "displayName": "(183.9) Malignant neoplasm of uterine adnexa, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\(183.9) Malignant neoplasm of uterine adnexa, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of ovary and other uterine adnexa (183)\\" + }, + { + "displayName": "Malignant neoplasm of penis and other male genital organs (187)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\" + }, + { + "displayName": "(187.1) Malignant neoplasm of prepuce", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\(187.1) Malignant neoplasm of prepuce\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\" + }, + { + "displayName": "(187.2) Malignant neoplasm of glans penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\(187.2) Malignant neoplasm of glans penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\" + }, + { + "displayName": "(187.3) Malignant neoplasm of body of penis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\(187.3) Malignant neoplasm of body of penis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\" + }, + { + "displayName": "(187.4) Malignant neoplasm of penis, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\(187.4) Malignant neoplasm of penis, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\" + }, + { + "displayName": "(187.5) Malignant neoplasm of epididymis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\(187.5) Malignant neoplasm of epididymis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\" + }, + { + "displayName": "(187.6) Malignant neoplasm of spermatic cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\(187.6) Malignant neoplasm of spermatic cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\" + }, + { + "displayName": "(187.7) Malignant neoplasm of scrotum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\(187.7) Malignant neoplasm of scrotum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\" + }, + { + "displayName": "(187.8) Malignant neoplasm of other specified sites of male genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\(187.8) Malignant neoplasm of other specified sites of male genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\" + }, + { + "displayName": "(187.9) Malignant neoplasm of male genital organ, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\(187.9) Malignant neoplasm of male genital organ, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of penis and other male genital organs (187)\\\\(187.9) Malignant neoplasm of male genital organ, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of penis and other male genital organs (187)\\" + }, + { + "displayName": "Malignant neoplasm of testis (186)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of testis (186)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of testis (186)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\" + }, + { + "displayName": "(186.0) Malignant neoplasm of undescended testis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of testis (186)\\(186.0) Malignant neoplasm of undescended testis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of testis (186)\\\\(186.0) Malignant neoplasm of undescended testis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of testis (186)\\" + }, + { + "displayName": "(186.9) Malignant neoplasm of other and unspecified testis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of testis (186)\\(186.9) Malignant neoplasm of other and unspecified testis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of genitourinary organs (179-189.99)\\\\Malignant neoplasm of testis (186)\\\\(186.9) Malignant neoplasm of other and unspecified testis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of genitourinary organs (179-189.99)\\Malignant neoplasm of testis (186)\\" + }, + { + "displayName": "Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "Malignant neoplasm of floor of mouth (144)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of floor of mouth (144)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\" + }, + { + "displayName": "(144.0) Malignant neoplasm of anterior portion of floor of mouth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of floor of mouth (144)\\(144.0) Malignant neoplasm of anterior portion of floor of mouth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of floor of mouth (144)\\" + }, + { + "displayName": "(144.1) Malignant neoplasm of lateral portion of floor of mouth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of floor of mouth (144)\\(144.1) Malignant neoplasm of lateral portion of floor of mouth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of floor of mouth (144)\\" + }, + { + "displayName": "(144.8) Malignant neoplasm of other sites of floor of mouth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of floor of mouth (144)\\(144.8) Malignant neoplasm of other sites of floor of mouth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of floor of mouth (144)\\" + }, + { + "displayName": "(144.9) Malignant neoplasm of floor of mouth, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of floor of mouth (144)\\(144.9) Malignant neoplasm of floor of mouth, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of floor of mouth (144)\\" + }, + { + "displayName": "Malignant neoplasm of gum (143)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of gum (143)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\" + }, + { + "displayName": "(143.0) Malignant neoplasm of upper gum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of gum (143)\\(143.0) Malignant neoplasm of upper gum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of gum (143)\\" + }, + { + "displayName": "(143.1) Malignant neoplasm of lower gum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of gum (143)\\(143.1) Malignant neoplasm of lower gum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of gum (143)\\" + }, + { + "displayName": "(143.8) Malignant neoplasm of other sites of gum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of gum (143)\\(143.8) Malignant neoplasm of other sites of gum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of gum (143)\\" + }, + { + "displayName": "(143.9) Malignant neoplasm of gum, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of gum (143)\\(143.9) Malignant neoplasm of gum, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of gum (143)\\" + }, + { + "displayName": "Malignant neoplasm of hypopharynx (148)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\" + }, + { + "displayName": "(148.0) Malignant neoplasm of postcricoid region of hypopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\(148.0) Malignant neoplasm of postcricoid region of hypopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\" + }, + { + "displayName": "(148.1) Malignant neoplasm of pyriform sinus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\(148.1) Malignant neoplasm of pyriform sinus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\" + }, + { + "displayName": "(148.2) Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\(148.2) Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\" + }, + { + "displayName": "(148.3) Malignant neoplasm of posterior hypopharyngeal wall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\(148.3) Malignant neoplasm of posterior hypopharyngeal wall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\" + }, + { + "displayName": "(148.8) Malignant neoplasm of other specified sites of hypopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\(148.8) Malignant neoplasm of other specified sites of hypopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\" + }, + { + "displayName": "(148.9) Malignant neoplasm of hypopharynx, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\(148.9) Malignant neoplasm of hypopharynx, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of hypopharynx (148)\\" + }, + { + "displayName": "Malignant neoplasm of lip (140)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\" + }, + { + "displayName": "(140.0) Malignant neoplasm of upper lip, vermilion border", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\(140.0) Malignant neoplasm of upper lip, vermilion border\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of lip (140)\\\\(140.0) Malignant neoplasm of upper lip, vermilion border\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\" + }, + { + "displayName": "(140.1) Malignant neoplasm of lower lip, vermilion border", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\(140.1) Malignant neoplasm of lower lip, vermilion border\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of lip (140)\\\\(140.1) Malignant neoplasm of lower lip, vermilion border\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\" + }, + { + "displayName": "(140.3) Malignant neoplasm of upper lip, inner aspect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\(140.3) Malignant neoplasm of upper lip, inner aspect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\" + }, + { + "displayName": "(140.4) Malignant neoplasm of lower lip, inner aspect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\(140.4) Malignant neoplasm of lower lip, inner aspect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of lip (140)\\\\(140.4) Malignant neoplasm of lower lip, inner aspect\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\" + }, + { + "displayName": "(140.5) Malignant neoplasm of lip, unspecified, inner aspect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\(140.5) Malignant neoplasm of lip, unspecified, inner aspect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\" + }, + { + "displayName": "(140.6) Malignant neoplasm of commissure of lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\(140.6) Malignant neoplasm of commissure of lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of lip (140)\\\\(140.6) Malignant neoplasm of commissure of lip\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\" + }, + { + "displayName": "(140.8) Malignant neoplasm of other sites of lip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\(140.8) Malignant neoplasm of other sites of lip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\" + }, + { + "displayName": "(140.9) Malignant neoplasm of lip, unspecified, vermilion border", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\(140.9) Malignant neoplasm of lip, unspecified, vermilion border\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of lip (140)\\\\(140.9) Malignant neoplasm of lip, unspecified, vermilion border\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of lip (140)\\" + }, + { + "displayName": "Malignant neoplasm of major salivary glands (142)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of major salivary glands (142)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of major salivary glands (142)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\" + }, + { + "displayName": "(142.0) Malignant neoplasm of parotid gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of major salivary glands (142)\\(142.0) Malignant neoplasm of parotid gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of major salivary glands (142)\\" + }, + { + "displayName": "(142.1) Malignant neoplasm of submandibular gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of major salivary glands (142)\\(142.1) Malignant neoplasm of submandibular gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of major salivary glands (142)\\\\(142.1) Malignant neoplasm of submandibular gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of major salivary glands (142)\\" + }, + { + "displayName": "(142.2) Malignant neoplasm of sublingual gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of major salivary glands (142)\\(142.2) Malignant neoplasm of sublingual gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of major salivary glands (142)\\\\(142.2) Malignant neoplasm of sublingual gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of major salivary glands (142)\\" + }, + { + "displayName": "(142.8) Malignant neoplasm of other major salivary glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of major salivary glands (142)\\(142.8) Malignant neoplasm of other major salivary glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of major salivary glands (142)\\\\(142.8) Malignant neoplasm of other major salivary glands\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of major salivary glands (142)\\" + }, + { + "displayName": "(142.9) Malignant neoplasm of salivary gland, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of major salivary glands (142)\\(142.9) Malignant neoplasm of salivary gland, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of major salivary glands (142)\\\\(142.9) Malignant neoplasm of salivary gland, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of major salivary glands (142)\\" + }, + { + "displayName": "Malignant neoplasm of nasopharynx (147)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of nasopharynx (147)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\" + }, + { + "displayName": "(147.0) Malignant neoplasm of superior wall of nasopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\(147.0) Malignant neoplasm of superior wall of nasopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of nasopharynx (147)\\\\(147.0) Malignant neoplasm of superior wall of nasopharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\" + }, + { + "displayName": "(147.1) Malignant neoplasm of posterior wall of nasopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\(147.1) Malignant neoplasm of posterior wall of nasopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of nasopharynx (147)\\\\(147.1) Malignant neoplasm of posterior wall of nasopharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\" + }, + { + "displayName": "(147.2) Malignant neoplasm of lateral wall of nasopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\(147.2) Malignant neoplasm of lateral wall of nasopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of nasopharynx (147)\\\\(147.2) Malignant neoplasm of lateral wall of nasopharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\" + }, + { + "displayName": "(147.3) Malignant neoplasm of anterior wall of nasopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\(147.3) Malignant neoplasm of anterior wall of nasopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of nasopharynx (147)\\\\(147.3) Malignant neoplasm of anterior wall of nasopharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\" + }, + { + "displayName": "(147.8) Malignant neoplasm of other specified sites of nasopharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\(147.8) Malignant neoplasm of other specified sites of nasopharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of nasopharynx (147)\\\\(147.8) Malignant neoplasm of other specified sites of nasopharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\" + }, + { + "displayName": "(147.9) Malignant neoplasm of nasopharynx, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\(147.9) Malignant neoplasm of nasopharynx, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of nasopharynx (147)\\\\(147.9) Malignant neoplasm of nasopharynx, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of nasopharynx (147)\\" + }, + { + "displayName": "Malignant neoplasm of oropharynx (146)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of oropharynx (146)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\" + }, + { + "displayName": "(146.0) Malignant neoplasm of tonsil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\(146.0) Malignant neoplasm of tonsil\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of oropharynx (146)\\\\(146.0) Malignant neoplasm of tonsil\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\" + }, + { + "displayName": "(146.1) Malignant neoplasm of tonsillar fossa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\(146.1) Malignant neoplasm of tonsillar fossa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of oropharynx (146)\\\\(146.1) Malignant neoplasm of tonsillar fossa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\" + }, + { + "displayName": "(146.2) Malignant neoplasm of tonsillar pillars (anterior) (posterior)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\(146.2) Malignant neoplasm of tonsillar pillars (anterior) (posterior)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of oropharynx (146)\\\\(146.2) Malignant neoplasm of tonsillar pillars (anterior) (posterior)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\" + }, + { + "displayName": "(146.3) Malignant neoplasm of vallecula epiglottica", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\(146.3) Malignant neoplasm of vallecula epiglottica\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of oropharynx (146)\\\\(146.3) Malignant neoplasm of vallecula epiglottica\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\" + }, + { + "displayName": "(146.4) Malignant neoplasm of anterior aspect of epiglottis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\(146.4) Malignant neoplasm of anterior aspect of epiglottis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of oropharynx (146)\\\\(146.4) Malignant neoplasm of anterior aspect of epiglottis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\" + }, + { + "displayName": "(146.5) Malignant neoplasm of junctional region of oropharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\(146.5) Malignant neoplasm of junctional region of oropharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of oropharynx (146)\\\\(146.5) Malignant neoplasm of junctional region of oropharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\" + }, + { + "displayName": "(146.6) Malignant neoplasm of lateral wall of oropharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\(146.6) Malignant neoplasm of lateral wall of oropharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of oropharynx (146)\\\\(146.6) Malignant neoplasm of lateral wall of oropharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\" + }, + { + "displayName": "(146.7) Malignant neoplasm of posterior wall of oropharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\(146.7) Malignant neoplasm of posterior wall of oropharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of oropharynx (146)\\\\(146.7) Malignant neoplasm of posterior wall of oropharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\" + }, + { + "displayName": "(146.8) Malignant neoplasm of other specified sites of oropharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\(146.8) Malignant neoplasm of other specified sites of oropharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of oropharynx (146)\\\\(146.8) Malignant neoplasm of other specified sites of oropharynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\" + }, + { + "displayName": "(146.9) Malignant neoplasm of oropharynx, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\(146.9) Malignant neoplasm of oropharynx, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of oropharynx (146)\\\\(146.9) Malignant neoplasm of oropharynx, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of oropharynx (146)\\" + }, + { + "displayName": "Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\" + }, + { + "displayName": "(149.0) Malignant neoplasm of pharynx, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\(149.0) Malignant neoplasm of pharynx, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\\\(149.0) Malignant neoplasm of pharynx, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\" + }, + { + "displayName": "(149.1) Malignant neoplasm of waldeyer's ring", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\(149.1) Malignant neoplasm of waldeyer's ring\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\\\(149.1) Malignant neoplasm of waldeyer's ring\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\" + }, + { + "displayName": "(149.8) Malignant neoplasm of other sites within the lip and oral cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\(149.8) Malignant neoplasm of other sites within the lip and oral cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\\\(149.8) Malignant neoplasm of other sites within the lip and oral cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\" + }, + { + "displayName": "(149.9) Malignant neoplasm of ill-defined sites within the lip and oral cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\(149.9) Malignant neoplasm of ill-defined sites within the lip and oral cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\\\(149.9) Malignant neoplasm of ill-defined sites within the lip and oral cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and ill-defined sites within the lip, oral cavity, and pharynx (149)\\" + }, + { + "displayName": "Malignant neoplasm of other and unspecified parts of mouth (145)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and unspecified parts of mouth (145)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\" + }, + { + "displayName": "(145.0) Malignant neoplasm of cheek mucosa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\(145.0) Malignant neoplasm of cheek mucosa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and unspecified parts of mouth (145)\\\\(145.0) Malignant neoplasm of cheek mucosa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\" + }, + { + "displayName": "(145.1) Malignant neoplasm of vestibule of mouth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\(145.1) Malignant neoplasm of vestibule of mouth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and unspecified parts of mouth (145)\\\\(145.1) Malignant neoplasm of vestibule of mouth\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\" + }, + { + "displayName": "(145.2) Malignant neoplasm of hard palate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\(145.2) Malignant neoplasm of hard palate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and unspecified parts of mouth (145)\\\\(145.2) Malignant neoplasm of hard palate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\" + }, + { + "displayName": "(145.3) Malignant neoplasm of soft palate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\(145.3) Malignant neoplasm of soft palate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and unspecified parts of mouth (145)\\\\(145.3) Malignant neoplasm of soft palate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\" + }, + { + "displayName": "(145.4) Malignant neoplasm of uvula", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\(145.4) Malignant neoplasm of uvula\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and unspecified parts of mouth (145)\\\\(145.4) Malignant neoplasm of uvula\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\" + }, + { + "displayName": "(145.5) Malignant neoplasm of palate, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\(145.5) Malignant neoplasm of palate, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and unspecified parts of mouth (145)\\\\(145.5) Malignant neoplasm of palate, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\" + }, + { + "displayName": "(145.6) Malignant neoplasm of retromolar area", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\(145.6) Malignant neoplasm of retromolar area\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and unspecified parts of mouth (145)\\\\(145.6) Malignant neoplasm of retromolar area\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\" + }, + { + "displayName": "(145.8) Malignant neoplasm of other specified parts of mouth", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\(145.8) Malignant neoplasm of other specified parts of mouth\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and unspecified parts of mouth (145)\\\\(145.8) Malignant neoplasm of other specified parts of mouth\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\" + }, + { + "displayName": "(145.9) Malignant neoplasm of mouth, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\(145.9) Malignant neoplasm of mouth, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of other and unspecified parts of mouth (145)\\\\(145.9) Malignant neoplasm of mouth, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of other and unspecified parts of mouth (145)\\" + }, + { + "displayName": "Malignant neoplasm of tongue (141)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of tongue (141)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\" + }, + { + "displayName": "(141.0) Malignant neoplasm of base of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\(141.0) Malignant neoplasm of base of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of tongue (141)\\\\(141.0) Malignant neoplasm of base of tongue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\" + }, + { + "displayName": "(141.1) Malignant neoplasm of dorsal surface of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\(141.1) Malignant neoplasm of dorsal surface of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of tongue (141)\\\\(141.1) Malignant neoplasm of dorsal surface of tongue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\" + }, + { + "displayName": "(141.2) Malignant neoplasm of tip and lateral border of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\(141.2) Malignant neoplasm of tip and lateral border of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\\\Malignant neoplasm of tongue (141)\\\\(141.2) Malignant neoplasm of tip and lateral border of tongue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\" + }, + { + "displayName": "(141.3) Malignant neoplasm of ventral surface of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\(141.3) Malignant neoplasm of ventral surface of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\" + }, + { + "displayName": "(141.4) Malignant neoplasm of anterior two-thirds of tongue, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\(141.4) Malignant neoplasm of anterior two-thirds of tongue, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\" + }, + { + "displayName": "(141.5) Malignant neoplasm of junctional zone of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\(141.5) Malignant neoplasm of junctional zone of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\" + }, + { + "displayName": "(141.6) Malignant neoplasm of lingual tonsil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\(141.6) Malignant neoplasm of lingual tonsil\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\" + }, + { + "displayName": "(141.8) Malignant neoplasm of other sites of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\(141.8) Malignant neoplasm of other sites of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\" + }, + { + "displayName": "(141.9) Malignant neoplasm of tongue, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\(141.9) Malignant neoplasm of tongue, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lip, oral cavity, and pharynx (140-149.99)\\Malignant neoplasm of tongue (141)\\" + }, + { + "displayName": "Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "Hodgkin's disease (201)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\" + }, + { + "displayName": "Hodgkin's disease, lymphocytic depletion (201.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\" + }, + { + "displayName": "(201.70) Hodgkin's disease, lymphocytic depletion, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\(201.70) Hodgkin's disease, lymphocytic depletion, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\" + }, + { + "displayName": "(201.71) Hodgkin's disease, lymphocytic depletion, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\(201.71) Hodgkin's disease, lymphocytic depletion, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\" + }, + { + "displayName": "(201.72) Hodgkin's disease, lymphocytic depletion, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\(201.72) Hodgkin's disease, lymphocytic depletion, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\" + }, + { + "displayName": "(201.73) Hodgkin's disease, lymphocytic depletion, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\(201.73) Hodgkin's disease, lymphocytic depletion, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\" + }, + { + "displayName": "(201.74) Hodgkin's disease, lymphocytic depletion, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\(201.74) Hodgkin's disease, lymphocytic depletion, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\" + }, + { + "displayName": "(201.75) Hodgkin's disease, lymphocytic depletion, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\(201.75) Hodgkin's disease, lymphocytic depletion, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\" + }, + { + "displayName": "(201.76) Hodgkin's disease, lymphocytic depletion, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\(201.76) Hodgkin's disease, lymphocytic depletion, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\" + }, + { + "displayName": "(201.77) Hodgkin's disease, lymphocytic depletion, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\(201.77) Hodgkin's disease, lymphocytic depletion, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic depletion (201.7)\\\\(201.77) Hodgkin's disease, lymphocytic depletion, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\" + }, + { + "displayName": "(201.78) Hodgkin's disease, lymphocytic depletion, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\(201.78) Hodgkin's disease, lymphocytic depletion, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic depletion (201.7)\\\\(201.78) Hodgkin's disease, lymphocytic depletion, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic depletion (201.7)\\" + }, + { + "displayName": "Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\" + }, + { + "displayName": "(201.40) Hodgkin's disease, lymphocytic-histiocytic predominance, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\(201.40) Hodgkin's disease, lymphocytic-histiocytic predominance, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\\\(201.40) Hodgkin's disease, lymphocytic-histiocytic predominance, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\" + }, + { + "displayName": "(201.41) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\(201.41) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\\\(201.41) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\" + }, + { + "displayName": "(201.42) Hodgkin's disease, lymphocytic-histiocytic predominance, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\(201.42) Hodgkin's disease, lymphocytic-histiocytic predominance, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\\\(201.42) Hodgkin's disease, lymphocytic-histiocytic predominance, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\" + }, + { + "displayName": "(201.43) Hodgkin's disease, lymphocytic-histiocytic predominance, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\(201.43) Hodgkin's disease, lymphocytic-histiocytic predominance, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\\\(201.43) Hodgkin's disease, lymphocytic-histiocytic predominance, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\" + }, + { + "displayName": "(201.44) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\(201.44) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\\\(201.44) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\" + }, + { + "displayName": "(201.45) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\(201.45) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\\\(201.45) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\" + }, + { + "displayName": "(201.46) Hodgkin's disease, lymphocytic-histiocytic predominance, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\(201.46) Hodgkin's disease, lymphocytic-histiocytic predominance, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\\\(201.46) Hodgkin's disease, lymphocytic-histiocytic predominance, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\" + }, + { + "displayName": "(201.47) Hodgkin's disease, lymphocytic-histiocytic predominance, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\(201.47) Hodgkin's disease, lymphocytic-histiocytic predominance, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\\\(201.47) Hodgkin's disease, lymphocytic-histiocytic predominance, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\" + }, + { + "displayName": "(201.48) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\(201.48) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\\\(201.48) Hodgkin's disease, lymphocytic-histiocytic predominance, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, lymphocytic-histiocytic predominance (201.4)\\" + }, + { + "displayName": "Hodgkin's disease, mixed cellularity (201.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, mixed cellularity (201.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\" + }, + { + "displayName": "(201.60) Hodgkin's disease, mixed cellularity, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\(201.60) Hodgkin's disease, mixed cellularity, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, mixed cellularity (201.6)\\\\(201.60) Hodgkin's disease, mixed cellularity, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\" + }, + { + "displayName": "(201.61) Hodgkin's disease, mixed cellularity, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\(201.61) Hodgkin's disease, mixed cellularity, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, mixed cellularity (201.6)\\\\(201.61) Hodgkin's disease, mixed cellularity, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\" + }, + { + "displayName": "(201.62) Hodgkin's disease, mixed cellularity, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\(201.62) Hodgkin's disease, mixed cellularity, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, mixed cellularity (201.6)\\\\(201.62) Hodgkin's disease, mixed cellularity, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\" + }, + { + "displayName": "(201.63) Hodgkin's disease, mixed cellularity, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\(201.63) Hodgkin's disease, mixed cellularity, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, mixed cellularity (201.6)\\\\(201.63) Hodgkin's disease, mixed cellularity, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\" + }, + { + "displayName": "(201.64) Hodgkin's disease, mixed cellularity, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\(201.64) Hodgkin's disease, mixed cellularity, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, mixed cellularity (201.6)\\\\(201.64) Hodgkin's disease, mixed cellularity, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\" + }, + { + "displayName": "(201.65) Hodgkin's disease, mixed cellularity, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\(201.65) Hodgkin's disease, mixed cellularity, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, mixed cellularity (201.6)\\\\(201.65) Hodgkin's disease, mixed cellularity, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\" + }, + { + "displayName": "(201.66) Hodgkin's disease, mixed cellularity, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\(201.66) Hodgkin's disease, mixed cellularity, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, mixed cellularity (201.6)\\\\(201.66) Hodgkin's disease, mixed cellularity, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\" + }, + { + "displayName": "(201.67) Hodgkin's disease, mixed cellularity, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\(201.67) Hodgkin's disease, mixed cellularity, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, mixed cellularity (201.6)\\\\(201.67) Hodgkin's disease, mixed cellularity, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\" + }, + { + "displayName": "(201.68) Hodgkin's disease, mixed cellularity, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\(201.68) Hodgkin's disease, mixed cellularity, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, mixed cellularity (201.6)\\\\(201.68) Hodgkin's disease, mixed cellularity, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, mixed cellularity (201.6)\\" + }, + { + "displayName": "Hodgkin's disease, nodular sclerosis (201.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, nodular sclerosis (201.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\" + }, + { + "displayName": "(201.50) Hodgkin's disease, nodular sclerosis, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\(201.50) Hodgkin's disease, nodular sclerosis, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, nodular sclerosis (201.5)\\\\(201.50) Hodgkin's disease, nodular sclerosis, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\" + }, + { + "displayName": "(201.51) Hodgkin's disease, nodular sclerosis, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\(201.51) Hodgkin's disease, nodular sclerosis, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, nodular sclerosis (201.5)\\\\(201.51) Hodgkin's disease, nodular sclerosis, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\" + }, + { + "displayName": "(201.52) Hodgkin's disease, nodular sclerosis, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\(201.52) Hodgkin's disease, nodular sclerosis, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, nodular sclerosis (201.5)\\\\(201.52) Hodgkin's disease, nodular sclerosis, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\" + }, + { + "displayName": "(201.53) Hodgkin's disease, nodular sclerosis, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\(201.53) Hodgkin's disease, nodular sclerosis, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, nodular sclerosis (201.5)\\\\(201.53) Hodgkin's disease, nodular sclerosis, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\" + }, + { + "displayName": "(201.54) Hodgkin's disease, nodular sclerosis, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\(201.54) Hodgkin's disease, nodular sclerosis, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, nodular sclerosis (201.5)\\\\(201.54) Hodgkin's disease, nodular sclerosis, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\" + }, + { + "displayName": "(201.55) Hodgkin's disease, nodular sclerosis, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\(201.55) Hodgkin's disease, nodular sclerosis, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, nodular sclerosis (201.5)\\\\(201.55) Hodgkin's disease, nodular sclerosis, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\" + }, + { + "displayName": "(201.56) Hodgkin's disease, nodular sclerosis, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\(201.56) Hodgkin's disease, nodular sclerosis, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, nodular sclerosis (201.5)\\\\(201.56) Hodgkin's disease, nodular sclerosis, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\" + }, + { + "displayName": "(201.57) Hodgkin's disease, nodular sclerosis, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\(201.57) Hodgkin's disease, nodular sclerosis, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's disease, nodular sclerosis (201.5)\\\\(201.57) Hodgkin's disease, nodular sclerosis, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\" + }, + { + "displayName": "(201.58) Hodgkin's disease, nodular sclerosis, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\(201.58) Hodgkin's disease, nodular sclerosis, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, nodular sclerosis (201.5)\\" + }, + { + "displayName": "Hodgkin's disease, unspecified type (201.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\" + }, + { + "displayName": "(201.90) Hodgkin's disease, unspecified type, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\(201.90) Hodgkin's disease, unspecified type, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\" + }, + { + "displayName": "(201.91) Hodgkin's disease, unspecified type, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\(201.91) Hodgkin's disease, unspecified type, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\" + }, + { + "displayName": "(201.92) Hodgkin's disease, unspecified type, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\(201.92) Hodgkin's disease, unspecified type, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\" + }, + { + "displayName": "(201.93) Hodgkin's disease, unspecified type, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\(201.93) Hodgkin's disease, unspecified type, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\" + }, + { + "displayName": "(201.94) Hodgkin's disease, unspecified type, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\(201.94) Hodgkin's disease, unspecified type, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\" + }, + { + "displayName": "(201.95) Hodgkin's disease, unspecified type, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\(201.95) Hodgkin's disease, unspecified type, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\" + }, + { + "displayName": "(201.96) Hodgkin's disease, unspecified type, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\(201.96) Hodgkin's disease, unspecified type, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\" + }, + { + "displayName": "(201.97) Hodgkin's disease, unspecified type, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\(201.97) Hodgkin's disease, unspecified type, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\" + }, + { + "displayName": "(201.98) Hodgkin's disease, unspecified type, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\(201.98) Hodgkin's disease, unspecified type, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's disease, unspecified type (201.9)\\" + }, + { + "displayName": "Hodgkin's granuloma (201.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\" + }, + { + "displayName": "(201.10) Hodgkin's granuloma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\(201.10) Hodgkin's granuloma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\" + }, + { + "displayName": "(201.11) Hodgkin's granuloma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\(201.11) Hodgkin's granuloma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\" + }, + { + "displayName": "(201.12) Hodgkin's granuloma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\(201.12) Hodgkin's granuloma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\" + }, + { + "displayName": "(201.13) Hodgkin's granuloma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\(201.13) Hodgkin's granuloma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\" + }, + { + "displayName": "(201.14) Hodgkin's granuloma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\(201.14) Hodgkin's granuloma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\" + }, + { + "displayName": "(201.15) Hodgkin's granuloma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\(201.15) Hodgkin's granuloma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\" + }, + { + "displayName": "(201.16) Hodgkin's granuloma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\(201.16) Hodgkin's granuloma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\" + }, + { + "displayName": "(201.17) Hodgkin's granuloma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\(201.17) Hodgkin's granuloma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\" + }, + { + "displayName": "(201.18) Hodgkin's granuloma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\(201.18) Hodgkin's granuloma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's granuloma (201.1)\\" + }, + { + "displayName": "Hodgkin's paragranuloma (201.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\" + }, + { + "displayName": "(201.00) Hodgkin's paragranuloma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\(201.00) Hodgkin's paragranuloma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's paragranuloma (201.0)\\\\(201.00) Hodgkin's paragranuloma, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\" + }, + { + "displayName": "(201.01) Hodgkin's paragranuloma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\(201.01) Hodgkin's paragranuloma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's paragranuloma (201.0)\\\\(201.01) Hodgkin's paragranuloma, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\" + }, + { + "displayName": "(201.02) Hodgkin's paragranuloma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\(201.02) Hodgkin's paragranuloma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's paragranuloma (201.0)\\\\(201.02) Hodgkin's paragranuloma, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\" + }, + { + "displayName": "(201.03) Hodgkin's paragranuloma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\(201.03) Hodgkin's paragranuloma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's paragranuloma (201.0)\\\\(201.03) Hodgkin's paragranuloma, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\" + }, + { + "displayName": "(201.04) Hodgkin's paragranuloma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\(201.04) Hodgkin's paragranuloma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's paragranuloma (201.0)\\\\(201.04) Hodgkin's paragranuloma, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\" + }, + { + "displayName": "(201.05) Hodgkin's paragranuloma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\(201.05) Hodgkin's paragranuloma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's paragranuloma (201.0)\\\\(201.05) Hodgkin's paragranuloma, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\" + }, + { + "displayName": "(201.06) Hodgkin's paragranuloma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\(201.06) Hodgkin's paragranuloma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\" + }, + { + "displayName": "(201.07) Hodgkin's paragranuloma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\(201.07) Hodgkin's paragranuloma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\" + }, + { + "displayName": "(201.08) Hodgkin's paragranuloma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\(201.08) Hodgkin's paragranuloma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's paragranuloma (201.0)\\" + }, + { + "displayName": "Hodgkin's sarcoma (201.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\" + }, + { + "displayName": "(201.20) Hodgkin's sarcoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\(201.20) Hodgkin's sarcoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\" + }, + { + "displayName": "(201.21) Hodgkin's sarcoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\(201.21) Hodgkin's sarcoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\" + }, + { + "displayName": "(201.22) Hodgkin's sarcoma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\(201.22) Hodgkin's sarcoma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\" + }, + { + "displayName": "(201.23) Hodgkin's sarcoma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\(201.23) Hodgkin's sarcoma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Hodgkin's disease (201)\\\\Hodgkin's sarcoma (201.2)\\\\(201.23) Hodgkin's sarcoma, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\" + }, + { + "displayName": "(201.24) Hodgkin's sarcoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\(201.24) Hodgkin's sarcoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\" + }, + { + "displayName": "(201.25) Hodgkin's sarcoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\(201.25) Hodgkin's sarcoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\" + }, + { + "displayName": "(201.26) Hodgkin's sarcoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\(201.26) Hodgkin's sarcoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\" + }, + { + "displayName": "(201.27) Hodgkin's sarcoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\(201.27) Hodgkin's sarcoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\" + }, + { + "displayName": "(201.28) Hodgkin's sarcoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\(201.28) Hodgkin's sarcoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Hodgkin's disease (201)\\Hodgkin's sarcoma (201.2)\\" + }, + { + "displayName": "Leukemia of unspecified cell type (208)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\" + }, + { + "displayName": "Leukemia of unspecified cell type, acute (208.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, acute (208.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\" + }, + { + "displayName": "(208.00) Acute leukemia of unspecified cell type, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, acute (208.0)\\(208.00) Acute leukemia of unspecified cell type, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, acute (208.0)\\" + }, + { + "displayName": "(208.01) Acute leukemia of unspecified cell type, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, acute (208.0)\\(208.01) Acute leukemia of unspecified cell type, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, acute (208.0)\\" + }, + { + "displayName": "(208.02) Acute leukemia of unspecified cell type, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, acute (208.0)\\(208.02) Acute leukemia of unspecified cell type, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, acute (208.0)\\" + }, + { + "displayName": "Leukemia of unspecified cell type, chronic (208.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, chronic (208.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\" + }, + { + "displayName": "(208.10) Chronic leukemia of unspecified cell type, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, chronic (208.1)\\(208.10) Chronic leukemia of unspecified cell type, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, chronic (208.1)\\" + }, + { + "displayName": "(208.11) Chronic leukemia of unspecified cell type, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, chronic (208.1)\\(208.11) Chronic leukemia of unspecified cell type, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, chronic (208.1)\\" + }, + { + "displayName": "(208.12) Chronic leukemia of unspecified cell type, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, chronic (208.1)\\(208.12) Chronic leukemia of unspecified cell type, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, chronic (208.1)\\" + }, + { + "displayName": "Leukemia of unspecified cell type, subacute (208.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, subacute (208.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\" + }, + { + "displayName": "(208.20) Subacute leukemia of unspecified cell type, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, subacute (208.2)\\(208.20) Subacute leukemia of unspecified cell type, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, subacute (208.2)\\" + }, + { + "displayName": "(208.21) Subacute leukemia of unspecified cell type, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, subacute (208.2)\\(208.21) Subacute leukemia of unspecified cell type, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, subacute (208.2)\\" + }, + { + "displayName": "(208.22) Subacute leukemia of unspecified cell type, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, subacute (208.2)\\(208.22) Subacute leukemia of unspecified cell type, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Leukemia of unspecified cell type (208)\\\\Leukemia of unspecified cell type, subacute (208.2)\\\\(208.22) Subacute leukemia of unspecified cell type, in relapse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Leukemia of unspecified cell type, subacute (208.2)\\" + }, + { + "displayName": "Other leukemia of unspecified cell type (208.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Other leukemia of unspecified cell type (208.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Leukemia of unspecified cell type (208)\\\\Other leukemia of unspecified cell type (208.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\" + }, + { + "displayName": "(208.80) Other leukemia of unspecified cell type, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Other leukemia of unspecified cell type (208.8)\\(208.80) Other leukemia of unspecified cell type, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Leukemia of unspecified cell type (208)\\\\Other leukemia of unspecified cell type (208.8)\\\\(208.80) Other leukemia of unspecified cell type, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Other leukemia of unspecified cell type (208.8)\\" + }, + { + "displayName": "(208.81) Other leukemia of unspecified cell type, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Other leukemia of unspecified cell type (208.8)\\(208.81) Other leukemia of unspecified cell type, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Leukemia of unspecified cell type (208)\\\\Other leukemia of unspecified cell type (208.8)\\\\(208.81) Other leukemia of unspecified cell type, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Other leukemia of unspecified cell type (208.8)\\" + }, + { + "displayName": "(208.82) Other leukemia of unspecified cell type, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Other leukemia of unspecified cell type (208.8)\\(208.82) Other leukemia of unspecified cell type, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Leukemia of unspecified cell type (208)\\\\Other leukemia of unspecified cell type (208.8)\\\\(208.82) Other leukemia of unspecified cell type, in relapse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Other leukemia of unspecified cell type (208.8)\\" + }, + { + "displayName": "Unspecified leukemia (208.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Unspecified leukemia (208.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Leukemia of unspecified cell type (208)\\\\Unspecified leukemia (208.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\" + }, + { + "displayName": "(208.90) Unspecified leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Unspecified leukemia (208.9)\\(208.90) Unspecified leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Leukemia of unspecified cell type (208)\\\\Unspecified leukemia (208.9)\\\\(208.90) Unspecified leukemia, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Unspecified leukemia (208.9)\\" + }, + { + "displayName": "(208.91) Unspecified leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Unspecified leukemia (208.9)\\(208.91) Unspecified leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Leukemia of unspecified cell type (208)\\\\Unspecified leukemia (208.9)\\\\(208.91) Unspecified leukemia, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Unspecified leukemia (208.9)\\" + }, + { + "displayName": "(208.92) Unspecified leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Unspecified leukemia (208.9)\\(208.92) Unspecified leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Leukemia of unspecified cell type (208)\\Unspecified leukemia (208.9)\\" + }, + { + "displayName": "Lymphoid leukemia (204)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\" + }, + { + "displayName": "Lymphoid leukemia, acute (204.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, acute (204.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\" + }, + { + "displayName": "(204.00) Acute lymphoid leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, acute (204.0)\\(204.00) Acute lymphoid leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, acute (204.0)\\" + }, + { + "displayName": "(204.01) Acute lymphoid leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, acute (204.0)\\(204.01) Acute lymphoid leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, acute (204.0)\\" + }, + { + "displayName": "(204.02) Acute lymphoid leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, acute (204.0)\\(204.02) Acute lymphoid leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, acute (204.0)\\" + }, + { + "displayName": "Lymphoid leukemia, chronic (204.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, chronic (204.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\" + }, + { + "displayName": "(204.10) Chronic lymphoid leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, chronic (204.1)\\(204.10) Chronic lymphoid leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, chronic (204.1)\\" + }, + { + "displayName": "(204.11) Chronic lymphoid leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, chronic (204.1)\\(204.11) Chronic lymphoid leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, chronic (204.1)\\" + }, + { + "displayName": "(204.12) Chronic lymphoid leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, chronic (204.1)\\(204.12) Chronic lymphoid leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, chronic (204.1)\\" + }, + { + "displayName": "Lymphoid leukemia, subacute (204.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, subacute (204.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\" + }, + { + "displayName": "(204.20) Subacute lymphoid leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, subacute (204.2)\\(204.20) Subacute lymphoid leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphoid leukemia (204)\\\\Lymphoid leukemia, subacute (204.2)\\\\(204.20) Subacute lymphoid leukemia, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, subacute (204.2)\\" + }, + { + "displayName": "(204.21) Subacute lymphoid leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, subacute (204.2)\\(204.21) Subacute lymphoid leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphoid leukemia (204)\\\\Lymphoid leukemia, subacute (204.2)\\\\(204.21) Subacute lymphoid leukemia, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Lymphoid leukemia, subacute (204.2)\\" + }, + { + "displayName": "Other lymphoid leukemia (204.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Other lymphoid leukemia (204.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphoid leukemia (204)\\\\Other lymphoid leukemia (204.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\" + }, + { + "displayName": "(204.80) Other lymphoid leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Other lymphoid leukemia (204.8)\\(204.80) Other lymphoid leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphoid leukemia (204)\\\\Other lymphoid leukemia (204.8)\\\\(204.80) Other lymphoid leukemia, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Other lymphoid leukemia (204.8)\\" + }, + { + "displayName": "(204.81) Other lymphoid leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Other lymphoid leukemia (204.8)\\(204.81) Other lymphoid leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Other lymphoid leukemia (204.8)\\" + }, + { + "displayName": "(204.82) Other lymphoid leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Other lymphoid leukemia (204.8)\\(204.82) Other lymphoid leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Other lymphoid leukemia (204.8)\\" + }, + { + "displayName": "Unspecified lymphoid leukemia (204.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Unspecified lymphoid leukemia (204.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\" + }, + { + "displayName": "(204.90) Unspecified lymphoid leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Unspecified lymphoid leukemia (204.9)\\(204.90) Unspecified lymphoid leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Unspecified lymphoid leukemia (204.9)\\" + }, + { + "displayName": "(204.91) Unspecified lymphoid leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Unspecified lymphoid leukemia (204.9)\\(204.91) Unspecified lymphoid leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Unspecified lymphoid leukemia (204.9)\\" + }, + { + "displayName": "(204.92) Unspecified lymphoid leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Unspecified lymphoid leukemia (204.9)\\(204.92) Unspecified lymphoid leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphoid leukemia (204)\\Unspecified lymphoid leukemia (204.9)\\" + }, + { + "displayName": "Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\" + }, + { + "displayName": "Anaplastic large cell lymphoma (200.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\" + }, + { + "displayName": "(200.60) Anaplastic large cell lymphoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\(200.60) Anaplastic large cell lymphoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\" + }, + { + "displayName": "(200.61) Anaplastic large cell lymphoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\(200.61) Anaplastic large cell lymphoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Anaplastic large cell lymphoma (200.6)\\\\(200.61) Anaplastic large cell lymphoma, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\" + }, + { + "displayName": "(200.62) Anaplastic large cell lymphoma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\(200.62) Anaplastic large cell lymphoma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Anaplastic large cell lymphoma (200.6)\\\\(200.62) Anaplastic large cell lymphoma, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\" + }, + { + "displayName": "(200.63) Anaplastic large cell lymphoma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\(200.63) Anaplastic large cell lymphoma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\" + }, + { + "displayName": "(200.64) Anaplastic large cell lymphoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\(200.64) Anaplastic large cell lymphoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\" + }, + { + "displayName": "(200.65) Anaplastic large cell lymphoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\(200.65) Anaplastic large cell lymphoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\" + }, + { + "displayName": "(200.66) Anaplastic large cell lymphoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\(200.66) Anaplastic large cell lymphoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\" + }, + { + "displayName": "(200.67) Anaplastic large cell lymphoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\(200.67) Anaplastic large cell lymphoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\" + }, + { + "displayName": "(200.68) Anaplastic large cell lymphoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\(200.68) Anaplastic large cell lymphoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Anaplastic large cell lymphoma (200.6)\\" + }, + { + "displayName": "Burkitt's tumor or lymphoma (200.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\" + }, + { + "displayName": "(200.20) Burkitt's tumor or lymphoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\(200.20) Burkitt's tumor or lymphoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\" + }, + { + "displayName": "(200.21) Burkitt's tumor or lymphoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\(200.21) Burkitt's tumor or lymphoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\" + }, + { + "displayName": "(200.22) Burkitt's tumor or lymphoma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\(200.22) Burkitt's tumor or lymphoma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\" + }, + { + "displayName": "(200.23) Burkitt's tumor or lymphoma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\(200.23) Burkitt's tumor or lymphoma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\" + }, + { + "displayName": "(200.24) Burkitt's tumor or lymphoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\(200.24) Burkitt's tumor or lymphoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\" + }, + { + "displayName": "(200.25) Burkitt's tumor or lymphoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\(200.25) Burkitt's tumor or lymphoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\" + }, + { + "displayName": "(200.26) Burkitt's tumor or lymphoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\(200.26) Burkitt's tumor or lymphoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\" + }, + { + "displayName": "(200.27) Burkitt's tumor or lymphoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\(200.27) Burkitt's tumor or lymphoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\" + }, + { + "displayName": "(200.28) Burkitt's tumor or lymphoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\(200.28) Burkitt's tumor or lymphoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Burkitt's tumor or lymphoma (200.2)\\\\(200.28) Burkitt's tumor or lymphoma, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Burkitt's tumor or lymphoma (200.2)\\" + }, + { + "displayName": "Large cell lymphoma (200.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Large cell lymphoma (200.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\" + }, + { + "displayName": "(200.70) Large cell lymphoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\(200.70) Large cell lymphoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Large cell lymphoma (200.7)\\\\(200.70) Large cell lymphoma, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\" + }, + { + "displayName": "(200.71) Large cell lymphoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\(200.71) Large cell lymphoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\" + }, + { + "displayName": "(200.72) Large cell lymphoma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\(200.72) Large cell lymphoma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Large cell lymphoma (200.7)\\\\(200.72) Large cell lymphoma, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\" + }, + { + "displayName": "(200.73) Large cell lymphoma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\(200.73) Large cell lymphoma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Large cell lymphoma (200.7)\\\\(200.73) Large cell lymphoma, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\" + }, + { + "displayName": "(200.74) Large cell lymphoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\(200.74) Large cell lymphoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Large cell lymphoma (200.7)\\\\(200.74) Large cell lymphoma, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\" + }, + { + "displayName": "(200.75) Large cell lymphoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\(200.75) Large cell lymphoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Large cell lymphoma (200.7)\\\\(200.75) Large cell lymphoma, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\" + }, + { + "displayName": "(200.76) Large cell lymphoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\(200.76) Large cell lymphoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Large cell lymphoma (200.7)\\\\(200.76) Large cell lymphoma, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\" + }, + { + "displayName": "(200.77) Large cell lymphoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\(200.77) Large cell lymphoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\" + }, + { + "displayName": "(200.78) Large cell lymphoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\(200.78) Large cell lymphoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Large cell lymphoma (200.7)\\\\(200.78) Large cell lymphoma, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Large cell lymphoma (200.7)\\" + }, + { + "displayName": "Lymphosarcoma (200.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\" + }, + { + "displayName": "(200.10) Lymphosarcoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\(200.10) Lymphosarcoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Lymphosarcoma (200.1)\\\\(200.10) Lymphosarcoma, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\" + }, + { + "displayName": "(200.11) Lymphosarcoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\(200.11) Lymphosarcoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Lymphosarcoma (200.1)\\\\(200.11) Lymphosarcoma, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\" + }, + { + "displayName": "(200.12) Lymphosarcoma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\(200.12) Lymphosarcoma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\" + }, + { + "displayName": "(200.13) Lymphosarcoma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\(200.13) Lymphosarcoma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Lymphosarcoma (200.1)\\\\(200.13) Lymphosarcoma, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\" + }, + { + "displayName": "(200.14) Lymphosarcoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\(200.14) Lymphosarcoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Lymphosarcoma (200.1)\\\\(200.14) Lymphosarcoma, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\" + }, + { + "displayName": "(200.15) Lymphosarcoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\(200.15) Lymphosarcoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\" + }, + { + "displayName": "(200.16) Lymphosarcoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\(200.16) Lymphosarcoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Lymphosarcoma (200.1)\\\\(200.16) Lymphosarcoma, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\" + }, + { + "displayName": "(200.17) Lymphosarcoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\(200.17) Lymphosarcoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Lymphosarcoma (200.1)\\\\(200.17) Lymphosarcoma, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\" + }, + { + "displayName": "(200.18) Lymphosarcoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\(200.18) Lymphosarcoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Lymphosarcoma (200.1)\\" + }, + { + "displayName": "Mantle cell lymphoma (200.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\" + }, + { + "displayName": "(200.40) Mantle cell lymphoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\(200.40) Mantle cell lymphoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\" + }, + { + "displayName": "(200.41) Mantle cell lymphoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\(200.41) Mantle cell lymphoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Mantle cell lymphoma (200.4)\\\\(200.41) Mantle cell lymphoma, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\" + }, + { + "displayName": "(200.42) Mantle cell lymphoma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\(200.42) Mantle cell lymphoma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Mantle cell lymphoma (200.4)\\\\(200.42) Mantle cell lymphoma, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\" + }, + { + "displayName": "(200.43) Mantle cell lymphoma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\(200.43) Mantle cell lymphoma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Mantle cell lymphoma (200.4)\\\\(200.43) Mantle cell lymphoma, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\" + }, + { + "displayName": "(200.44) Mantle cell lymphoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\(200.44) Mantle cell lymphoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Mantle cell lymphoma (200.4)\\\\(200.44) Mantle cell lymphoma, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\" + }, + { + "displayName": "(200.45) Mantle cell lymphoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\(200.45) Mantle cell lymphoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Mantle cell lymphoma (200.4)\\\\(200.45) Mantle cell lymphoma, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\" + }, + { + "displayName": "(200.46) Mantle cell lymphoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\(200.46) Mantle cell lymphoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Mantle cell lymphoma (200.4)\\\\(200.46) Mantle cell lymphoma, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\" + }, + { + "displayName": "(200.47) Mantle cell lymphoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\(200.47) Mantle cell lymphoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Mantle cell lymphoma (200.4)\\\\(200.47) Mantle cell lymphoma, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\" + }, + { + "displayName": "(200.48) Mantle cell lymphoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\(200.48) Mantle cell lymphoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Mantle cell lymphoma (200.4)\\\\(200.48) Mantle cell lymphoma, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Mantle cell lymphoma (200.4)\\" + }, + { + "displayName": "Marginal zone lymphoma (200.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Marginal zone lymphoma (200.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\" + }, + { + "displayName": "(200.30) Marginal zone lymphoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\(200.30) Marginal zone lymphoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Marginal zone lymphoma (200.3)\\\\(200.30) Marginal zone lymphoma, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\" + }, + { + "displayName": "(200.31) Marginal zone lymphoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\(200.31) Marginal zone lymphoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Marginal zone lymphoma (200.3)\\\\(200.31) Marginal zone lymphoma, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\" + }, + { + "displayName": "(200.32) Marginal zone lymphoma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\(200.32) Marginal zone lymphoma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Marginal zone lymphoma (200.3)\\\\(200.32) Marginal zone lymphoma, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\" + }, + { + "displayName": "(200.33) Marginal zone lymphoma, intraabdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\(200.33) Marginal zone lymphoma, intraabdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Marginal zone lymphoma (200.3)\\\\(200.33) Marginal zone lymphoma, intraabdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\" + }, + { + "displayName": "(200.34) Marginal zone lymphoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\(200.34) Marginal zone lymphoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Marginal zone lymphoma (200.3)\\\\(200.34) Marginal zone lymphoma, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\" + }, + { + "displayName": "(200.35) Marginal zone lymphoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\(200.35) Marginal zone lymphoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Marginal zone lymphoma (200.3)\\\\(200.35) Marginal zone lymphoma, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\" + }, + { + "displayName": "(200.36) Marginal zone lymphoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\(200.36) Marginal zone lymphoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Marginal zone lymphoma (200.3)\\\\(200.36) Marginal zone lymphoma, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\" + }, + { + "displayName": "(200.37) Marginal zone lymphoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\(200.37) Marginal zone lymphoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Marginal zone lymphoma (200.3)\\\\(200.37) Marginal zone lymphoma, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\" + }, + { + "displayName": "(200.38) Marginal zone lymphoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\(200.38) Marginal zone lymphoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Marginal zone lymphoma (200.3)\\\\(200.38) Marginal zone lymphoma, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Marginal zone lymphoma (200.3)\\" + }, + { + "displayName": "Other named variants of lymphosarcoma and reticulosarcoma (200.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\" + }, + { + "displayName": "(200.80) Other named variants of lymphosarcoma and reticulosarcoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\(200.80) Other named variants of lymphosarcoma and reticulosarcoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\\\(200.80) Other named variants of lymphosarcoma and reticulosarcoma, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\" + }, + { + "displayName": "(200.81) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\(200.81) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\\\(200.81) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\" + }, + { + "displayName": "(200.82) Other named variants of lymphosarcoma and reticulosarcoma,intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\(200.82) Other named variants of lymphosarcoma and reticulosarcoma,intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\" + }, + { + "displayName": "(200.83) Other named variants of lymphosarcoma and reticulosarcoma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\(200.83) Other named variants of lymphosarcoma and reticulosarcoma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\\\(200.83) Other named variants of lymphosarcoma and reticulosarcoma, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\" + }, + { + "displayName": "(200.84) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\(200.84) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\\\(200.84) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\" + }, + { + "displayName": "(200.85) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\(200.85) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\" + }, + { + "displayName": "(200.86) Other named variants of lymphosarcoma and reticulosarcoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\(200.86) Other named variants of lymphosarcoma and reticulosarcoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\" + }, + { + "displayName": "(200.87) Other named variants of lymphosarcoma and reticulosarcoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\(200.87) Other named variants of lymphosarcoma and reticulosarcoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\" + }, + { + "displayName": "(200.88) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\(200.88) Other named variants of lymphosarcoma and reticulosarcoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Other named variants of lymphosarcoma and reticulosarcoma (200.8)\\" + }, + { + "displayName": "Primary central nervous system lymphoma (200.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\" + }, + { + "displayName": "(200.50) Primary central nervous system lymphoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\(200.50) Primary central nervous system lymphoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\" + }, + { + "displayName": "(200.51) Primary central nervous system lymphoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\(200.51) Primary central nervous system lymphoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\" + }, + { + "displayName": "(200.52) Primary central nervous system lymphoma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\(200.52) Primary central nervous system lymphoma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\" + }, + { + "displayName": "(200.53) Primary central nervous system lymphoma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\(200.53) Primary central nervous system lymphoma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\" + }, + { + "displayName": "(200.54) Primary central nervous system lymphoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\(200.54) Primary central nervous system lymphoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\" + }, + { + "displayName": "(200.55) Primary central nervous system lymphoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\(200.55) Primary central nervous system lymphoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\" + }, + { + "displayName": "(200.56) Primary central nervous system lymphoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\(200.56) Primary central nervous system lymphoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Primary central nervous system lymphoma (200.5)\\\\(200.56) Primary central nervous system lymphoma, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\" + }, + { + "displayName": "(200.57) Primary central nervous system lymphoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\(200.57) Primary central nervous system lymphoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\" + }, + { + "displayName": "(200.58) Primary central nervous system lymphoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\(200.58) Primary central nervous system lymphoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Primary central nervous system lymphoma (200.5)\\\\(200.58) Primary central nervous system lymphoma, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Primary central nervous system lymphoma (200.5)\\" + }, + { + "displayName": "Reticulosarcoma (200.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\\\Reticulosarcoma (200.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\" + }, + { + "displayName": "(200.00) Reticulosarcoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\(200.00) Reticulosarcoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\" + }, + { + "displayName": "(200.01) Reticulosarcoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\(200.01) Reticulosarcoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\" + }, + { + "displayName": "(200.02) Reticulosarcoma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\(200.02) Reticulosarcoma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\" + }, + { + "displayName": "(200.03) Reticulosarcoma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\(200.03) Reticulosarcoma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\" + }, + { + "displayName": "(200.04) Reticulosarcoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\(200.04) Reticulosarcoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\" + }, + { + "displayName": "(200.05) Reticulosarcoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\(200.05) Reticulosarcoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\" + }, + { + "displayName": "(200.06) Reticulosarcoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\(200.06) Reticulosarcoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\" + }, + { + "displayName": "(200.07) Reticulosarcoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\(200.07) Reticulosarcoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\" + }, + { + "displayName": "(200.08) Reticulosarcoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\(200.08) Reticulosarcoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Lymphosarcoma and reticulosarcoma and other specified malignant tumors of lymphatic tissue (200)\\Reticulosarcoma (200.0)\\" + }, + { + "displayName": "Monocytic leukemia (206)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\" + }, + { + "displayName": "Monocytic leukemia, acute (206.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, acute (206.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\" + }, + { + "displayName": "(206.00) Acute monocytic leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, acute (206.0)\\(206.00) Acute monocytic leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, acute (206.0)\\" + }, + { + "displayName": "(206.01) Acute monocytic leukemia,in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, acute (206.0)\\(206.01) Acute monocytic leukemia,in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, acute (206.0)\\" + }, + { + "displayName": "(206.02) Acute monocytic leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, acute (206.0)\\(206.02) Acute monocytic leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, acute (206.0)\\" + }, + { + "displayName": "Monocytic leukemia, chronic (206.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, chronic (206.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\" + }, + { + "displayName": "(206.10) Chronic monocytic leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, chronic (206.1)\\(206.10) Chronic monocytic leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Monocytic leukemia (206)\\\\Monocytic leukemia, chronic (206.1)\\\\(206.10) Chronic monocytic leukemia, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, chronic (206.1)\\" + }, + { + "displayName": "(206.11) Chronic monocytic leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, chronic (206.1)\\(206.11) Chronic monocytic leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Monocytic leukemia (206)\\\\Monocytic leukemia, chronic (206.1)\\\\(206.11) Chronic monocytic leukemia, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, chronic (206.1)\\" + }, + { + "displayName": "(206.12) Chronic monocytic leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, chronic (206.1)\\(206.12) Chronic monocytic leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Monocytic leukemia (206)\\\\Monocytic leukemia, chronic (206.1)\\\\(206.12) Chronic monocytic leukemia, in relapse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, chronic (206.1)\\" + }, + { + "displayName": "Monocytic leukemia, subacute (206.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, subacute (206.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Monocytic leukemia (206)\\\\Monocytic leukemia, subacute (206.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\" + }, + { + "displayName": "(206.20) Subacute monocytic leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, subacute (206.2)\\(206.20) Subacute monocytic leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, subacute (206.2)\\" + }, + { + "displayName": "(206.21) Subacute monocytic leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, subacute (206.2)\\(206.21) Subacute monocytic leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Monocytic leukemia (206)\\\\Monocytic leukemia, subacute (206.2)\\\\(206.21) Subacute monocytic leukemia, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Monocytic leukemia, subacute (206.2)\\" + }, + { + "displayName": "Other monocytic leukemia (206.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Other monocytic leukemia (206.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Monocytic leukemia (206)\\\\Other monocytic leukemia (206.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\" + }, + { + "displayName": "(206.80) Other monocytic leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Other monocytic leukemia (206.8)\\(206.80) Other monocytic leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Monocytic leukemia (206)\\\\Other monocytic leukemia (206.8)\\\\(206.80) Other monocytic leukemia, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Other monocytic leukemia (206.8)\\" + }, + { + "displayName": "(206.81) Other monocytic leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Other monocytic leukemia (206.8)\\(206.81) Other monocytic leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Other monocytic leukemia (206.8)\\" + }, + { + "displayName": "(206.82) Other monocytic leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Other monocytic leukemia (206.8)\\(206.82) Other monocytic leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Monocytic leukemia (206)\\\\Other monocytic leukemia (206.8)\\\\(206.82) Other monocytic leukemia, in relapse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Other monocytic leukemia (206.8)\\" + }, + { + "displayName": "Unspecified monocytic leukemia (206.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Unspecified monocytic leukemia (206.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\" + }, + { + "displayName": "(206.90) Unspecified monocytic leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Unspecified monocytic leukemia (206.9)\\(206.90) Unspecified monocytic leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Monocytic leukemia (206)\\\\Unspecified monocytic leukemia (206.9)\\\\(206.90) Unspecified monocytic leukemia, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Unspecified monocytic leukemia (206.9)\\" + }, + { + "displayName": "(206.91) Unspecified monocytic leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Unspecified monocytic leukemia (206.9)\\(206.91) Unspecified monocytic leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Monocytic leukemia (206)\\\\Unspecified monocytic leukemia (206.9)\\\\(206.91) Unspecified monocytic leukemia, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Monocytic leukemia (206)\\Unspecified monocytic leukemia (206.9)\\" + }, + { + "displayName": "Multiple myeloma and immunoproliferative neoplasms (203)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\" + }, + { + "displayName": "Multiple myeloma (203.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Multiple myeloma (203.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\" + }, + { + "displayName": "(203.00) Multiple myeloma, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Multiple myeloma (203.0)\\(203.00) Multiple myeloma, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Multiple myeloma (203.0)\\" + }, + { + "displayName": "(203.01) Multiple myeloma, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Multiple myeloma (203.0)\\(203.01) Multiple myeloma, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Multiple myeloma (203.0)\\" + }, + { + "displayName": "(203.02) Multiple myeloma, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Multiple myeloma (203.0)\\(203.02) Multiple myeloma, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Multiple myeloma (203.0)\\" + }, + { + "displayName": "Other immunoproliferative neoplasms (203.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Other immunoproliferative neoplasms (203.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\" + }, + { + "displayName": "(203.80) Other immunoproliferative neoplasms, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Other immunoproliferative neoplasms (203.8)\\(203.80) Other immunoproliferative neoplasms, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Other immunoproliferative neoplasms (203.8)\\" + }, + { + "displayName": "(203.81) Other immunoproliferative neoplasms, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Other immunoproliferative neoplasms (203.8)\\(203.81) Other immunoproliferative neoplasms, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Other immunoproliferative neoplasms (203.8)\\" + }, + { + "displayName": "(203.82) Other immunoproliferative neoplasms, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Other immunoproliferative neoplasms (203.8)\\(203.82) Other immunoproliferative neoplasms, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Other immunoproliferative neoplasms (203.8)\\" + }, + { + "displayName": "Plasma cell leukemia (203.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Plasma cell leukemia (203.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\" + }, + { + "displayName": "(203.10) Plasma cell leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Plasma cell leukemia (203.1)\\(203.10) Plasma cell leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Plasma cell leukemia (203.1)\\" + }, + { + "displayName": "(203.11) Plasma cell leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Plasma cell leukemia (203.1)\\(203.11) Plasma cell leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Plasma cell leukemia (203.1)\\" + }, + { + "displayName": "(203.12) Plasma cell leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Plasma cell leukemia (203.1)\\(203.12) Plasma cell leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Multiple myeloma and immunoproliferative neoplasms (203)\\Plasma cell leukemia (203.1)\\" + }, + { + "displayName": "Myeloid leukemia (205)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\" + }, + { + "displayName": "Myeloid leukemia, acute (205.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, acute (205.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\" + }, + { + "displayName": "(205.00) Acute myeloid leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, acute (205.0)\\(205.00) Acute myeloid leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, acute (205.0)\\" + }, + { + "displayName": "(205.01) Acute myeloid leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, acute (205.0)\\(205.01) Acute myeloid leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, acute (205.0)\\" + }, + { + "displayName": "(205.02) Acute myeloid leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, acute (205.0)\\(205.02) Acute myeloid leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, acute (205.0)\\" + }, + { + "displayName": "Myeloid leukemia, chronic (205.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, chronic (205.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Myeloid leukemia (205)\\\\Myeloid leukemia, chronic (205.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\" + }, + { + "displayName": "(205.10) Chronic myeloid leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, chronic (205.1)\\(205.10) Chronic myeloid leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Myeloid leukemia (205)\\\\Myeloid leukemia, chronic (205.1)\\\\(205.10) Chronic myeloid leukemia, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, chronic (205.1)\\" + }, + { + "displayName": "(205.11) Chronic myeloid leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, chronic (205.1)\\(205.11) Chronic myeloid leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Myeloid leukemia (205)\\\\Myeloid leukemia, chronic (205.1)\\\\(205.11) Chronic myeloid leukemia, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, chronic (205.1)\\" + }, + { + "displayName": "(205.12) Chronic myeloid leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, chronic (205.1)\\(205.12) Chronic myeloid leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Myeloid leukemia (205)\\\\Myeloid leukemia, chronic (205.1)\\\\(205.12) Chronic myeloid leukemia, in relapse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, chronic (205.1)\\" + }, + { + "displayName": "Myeloid leukemia, subacute (205.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, subacute (205.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Myeloid leukemia (205)\\\\Myeloid leukemia, subacute (205.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\" + }, + { + "displayName": "(205.20) Subacute myeloid leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, subacute (205.2)\\(205.20) Subacute myeloid leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Myeloid leukemia (205)\\\\Myeloid leukemia, subacute (205.2)\\\\(205.20) Subacute myeloid leukemia, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, subacute (205.2)\\" + }, + { + "displayName": "(205.21) Subacute myeloid leukemia,in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, subacute (205.2)\\(205.21) Subacute myeloid leukemia,in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid leukemia, subacute (205.2)\\" + }, + { + "displayName": "Myeloid sarcoma (205.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid sarcoma (205.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Myeloid leukemia (205)\\\\Myeloid sarcoma (205.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\" + }, + { + "displayName": "(205.30) Myeloid sarcoma, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid sarcoma (205.3)\\(205.30) Myeloid sarcoma, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Myeloid leukemia (205)\\\\Myeloid sarcoma (205.3)\\\\(205.30) Myeloid sarcoma, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid sarcoma (205.3)\\" + }, + { + "displayName": "(205.31) Myeloid sarcoma, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid sarcoma (205.3)\\(205.31) Myeloid sarcoma, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Myeloid leukemia (205)\\\\Myeloid sarcoma (205.3)\\\\(205.31) Myeloid sarcoma, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid sarcoma (205.3)\\" + }, + { + "displayName": "(205.32) Myeloid sarcoma, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid sarcoma (205.3)\\(205.32) Myeloid sarcoma, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Myeloid leukemia (205)\\\\Myeloid sarcoma (205.3)\\\\(205.32) Myeloid sarcoma, in relapse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Myeloid sarcoma (205.3)\\" + }, + { + "displayName": "Other myeloid leukemia (205.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Other myeloid leukemia (205.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\" + }, + { + "displayName": "(205.80) Other myeloid leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Other myeloid leukemia (205.8)\\(205.80) Other myeloid leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Other myeloid leukemia (205.8)\\" + }, + { + "displayName": "(205.81) Other myeloid leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Other myeloid leukemia (205.8)\\(205.81) Other myeloid leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Other myeloid leukemia (205.8)\\" + }, + { + "displayName": "(205.82) Other myeloid leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Other myeloid leukemia (205.8)\\(205.82) Other myeloid leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Other myeloid leukemia (205.8)\\" + }, + { + "displayName": "Unspecified myeloid leukemia (205.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Unspecified myeloid leukemia (205.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\" + }, + { + "displayName": "(205.90) Unspecified myeloid leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Unspecified myeloid leukemia (205.9)\\(205.90) Unspecified myeloid leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Unspecified myeloid leukemia (205.9)\\" + }, + { + "displayName": "(205.91) Unspecified myeloid leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Unspecified myeloid leukemia (205.9)\\(205.91) Unspecified myeloid leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Unspecified myeloid leukemia (205.9)\\" + }, + { + "displayName": "(205.92) Unspecified myeloid leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Unspecified myeloid leukemia (205.9)\\(205.92) Unspecified myeloid leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Myeloid leukemia (205)\\\\Unspecified myeloid leukemia (205.9)\\\\(205.92) Unspecified myeloid leukemia, in relapse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Myeloid leukemia (205)\\Unspecified myeloid leukemia (205.9)\\" + }, + { + "displayName": "Other malignant neoplasms of lymphoid and histiocytic tissue (202)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\" + }, + { + "displayName": "Letterer-Siwe disease (202.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Letterer-Siwe disease (202.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\" + }, + { + "displayName": "(202.50) Letterer-siwe disease, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\(202.50) Letterer-siwe disease, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Letterer-Siwe disease (202.5)\\\\(202.50) Letterer-siwe disease, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\" + }, + { + "displayName": "(202.51) Letterer-siwe disease, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\(202.51) Letterer-siwe disease, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Letterer-Siwe disease (202.5)\\\\(202.51) Letterer-siwe disease, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\" + }, + { + "displayName": "(202.52) Letterer-siwe disease, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\(202.52) Letterer-siwe disease, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\" + }, + { + "displayName": "(202.53) Letterer-siwe disease, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\(202.53) Letterer-siwe disease, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Letterer-Siwe disease (202.5)\\\\(202.53) Letterer-siwe disease, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\" + }, + { + "displayName": "(202.54) Letterer-siwe disease, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\(202.54) Letterer-siwe disease, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\" + }, + { + "displayName": "(202.55) Letterer-siwe disease, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\(202.55) Letterer-siwe disease, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Letterer-Siwe disease (202.5)\\\\(202.55) Letterer-siwe disease, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\" + }, + { + "displayName": "(202.56) Letterer-siwe disease, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\(202.56) Letterer-siwe disease, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\" + }, + { + "displayName": "(202.57) Letterer-siwe disease, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\(202.57) Letterer-siwe disease, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\" + }, + { + "displayName": "(202.58) Letterer-siwe disease, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\(202.58) Letterer-siwe disease, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Letterer-Siwe disease (202.5)\\" + }, + { + "displayName": "Leukemic reticuloendotheliosis (202.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\" + }, + { + "displayName": "(202.40) Leukemic reticuloendotheliosis, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\(202.40) Leukemic reticuloendotheliosis, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\" + }, + { + "displayName": "(202.41) Leukemic reticuloendotheliosis, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\(202.41) Leukemic reticuloendotheliosis, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\" + }, + { + "displayName": "(202.42) Leukemic reticuloendotheliosis, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\(202.42) Leukemic reticuloendotheliosis, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\" + }, + { + "displayName": "(202.43) Leukemic reticuloendotheliosis, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\(202.43) Leukemic reticuloendotheliosis, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\" + }, + { + "displayName": "(202.44) Leukemic reticuloendotheliosis, lymph nodes of axilla and upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\(202.44) Leukemic reticuloendotheliosis, lymph nodes of axilla and upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\" + }, + { + "displayName": "(202.45) Leukemic reticuloendotheliosis, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\(202.45) Leukemic reticuloendotheliosis, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\" + }, + { + "displayName": "(202.46) Leukemic reticuloendotheliosis, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\(202.46) Leukemic reticuloendotheliosis, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\" + }, + { + "displayName": "(202.47) Leukemic reticuloendotheliosis, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\(202.47) Leukemic reticuloendotheliosis, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\" + }, + { + "displayName": "(202.48) Leukemic reticuloendotheliosis, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\(202.48) Leukemic reticuloendotheliosis, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Leukemic reticuloendotheliosis (202.4)\\\\(202.48) Leukemic reticuloendotheliosis, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Leukemic reticuloendotheliosis (202.4)\\" + }, + { + "displayName": "Malignant histiocytosis (202.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant histiocytosis (202.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\" + }, + { + "displayName": "(202.30) Malignant histiocytosis, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\(202.30) Malignant histiocytosis, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\" + }, + { + "displayName": "(202.31) Malignant histiocytosis, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\(202.31) Malignant histiocytosis, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant histiocytosis (202.3)\\\\(202.31) Malignant histiocytosis, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\" + }, + { + "displayName": "(202.32) Malignant histiocytosis, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\(202.32) Malignant histiocytosis, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant histiocytosis (202.3)\\\\(202.32) Malignant histiocytosis, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\" + }, + { + "displayName": "(202.33) Malignant histiocytosis, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\(202.33) Malignant histiocytosis, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\" + }, + { + "displayName": "(202.34) Malignant histiocytosis, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\(202.34) Malignant histiocytosis, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant histiocytosis (202.3)\\\\(202.34) Malignant histiocytosis, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\" + }, + { + "displayName": "(202.35) Malignant histiocytosis, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\(202.35) Malignant histiocytosis, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\" + }, + { + "displayName": "(202.36) Malignant histiocytosis, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\(202.36) Malignant histiocytosis, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant histiocytosis (202.3)\\\\(202.36) Malignant histiocytosis, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\" + }, + { + "displayName": "(202.37) Malignant histiocytosis, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\(202.37) Malignant histiocytosis, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant histiocytosis (202.3)\\\\(202.37) Malignant histiocytosis, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\" + }, + { + "displayName": "(202.38) Malignant histiocytosis, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\(202.38) Malignant histiocytosis, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant histiocytosis (202.3)\\\\(202.38) Malignant histiocytosis, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant histiocytosis (202.3)\\" + }, + { + "displayName": "Malignant mast cell tumors (202.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant mast cell tumors (202.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\" + }, + { + "displayName": "(202.60) Malignant mast cell tumors, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\(202.60) Malignant mast cell tumors, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\" + }, + { + "displayName": "(202.61) Malignant mast cell tumors, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\(202.61) Malignant mast cell tumors, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant mast cell tumors (202.6)\\\\(202.61) Malignant mast cell tumors, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\" + }, + { + "displayName": "(202.62) Malignant mast cell tumors, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\(202.62) Malignant mast cell tumors, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant mast cell tumors (202.6)\\\\(202.62) Malignant mast cell tumors, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\" + }, + { + "displayName": "(202.63) Malignant mast cell tumors, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\(202.63) Malignant mast cell tumors, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant mast cell tumors (202.6)\\\\(202.63) Malignant mast cell tumors, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\" + }, + { + "displayName": "(202.64) Malignant mast cell tumors, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\(202.64) Malignant mast cell tumors, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant mast cell tumors (202.6)\\\\(202.64) Malignant mast cell tumors, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\" + }, + { + "displayName": "(202.65) Malignant mast cell tumors, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\(202.65) Malignant mast cell tumors, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant mast cell tumors (202.6)\\\\(202.65) Malignant mast cell tumors, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\" + }, + { + "displayName": "(202.66) Malignant mast cell tumors, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\(202.66) Malignant mast cell tumors, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant mast cell tumors (202.6)\\\\(202.66) Malignant mast cell tumors, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\" + }, + { + "displayName": "(202.67) Malignant mast cell tumors, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\(202.67) Malignant mast cell tumors, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant mast cell tumors (202.6)\\\\(202.67) Malignant mast cell tumors, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\" + }, + { + "displayName": "(202.68) Malignant mast cell tumors, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\(202.68) Malignant mast cell tumors, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Malignant mast cell tumors (202.6)\\\\(202.68) Malignant mast cell tumors, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Malignant mast cell tumors (202.6)\\" + }, + { + "displayName": "Mycosis fungoides (202.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Mycosis fungoides (202.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\" + }, + { + "displayName": "(202.10) Mycosis fungoides, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\(202.10) Mycosis fungoides, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Mycosis fungoides (202.1)\\\\(202.10) Mycosis fungoides, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\" + }, + { + "displayName": "(202.11) Mycosis fungoides, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\(202.11) Mycosis fungoides, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Mycosis fungoides (202.1)\\\\(202.11) Mycosis fungoides, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\" + }, + { + "displayName": "(202.12) Mycosis fungoides, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\(202.12) Mycosis fungoides, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Mycosis fungoides (202.1)\\\\(202.12) Mycosis fungoides, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\" + }, + { + "displayName": "(202.13) Mycosis fungoides, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\(202.13) Mycosis fungoides, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Mycosis fungoides (202.1)\\\\(202.13) Mycosis fungoides, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\" + }, + { + "displayName": "(202.14) Mycosis fungoides, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\(202.14) Mycosis fungoides, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Mycosis fungoides (202.1)\\\\(202.14) Mycosis fungoides, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\" + }, + { + "displayName": "(202.15) Mycosis fungoides, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\(202.15) Mycosis fungoides, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Mycosis fungoides (202.1)\\\\(202.15) Mycosis fungoides, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\" + }, + { + "displayName": "(202.16) Mycosis fungoides, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\(202.16) Mycosis fungoides, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Mycosis fungoides (202.1)\\\\(202.16) Mycosis fungoides, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\" + }, + { + "displayName": "(202.17) Mycosis fungoides, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\(202.17) Mycosis fungoides, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Mycosis fungoides (202.1)\\\\(202.17) Mycosis fungoides, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\" + }, + { + "displayName": "(202.18) Mycosis fungoides, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\(202.18) Mycosis fungoides, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Mycosis fungoides (202.1)\\\\(202.18) Mycosis fungoides, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Mycosis fungoides (202.1)\\" + }, + { + "displayName": "Nodular lymphoma (202.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Nodular lymphoma (202.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\" + }, + { + "displayName": "(202.00) Nodular lymphoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\(202.00) Nodular lymphoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Nodular lymphoma (202.0)\\\\(202.00) Nodular lymphoma, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\" + }, + { + "displayName": "(202.01) Nodular lymphoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\(202.01) Nodular lymphoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Nodular lymphoma (202.0)\\\\(202.01) Nodular lymphoma, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\" + }, + { + "displayName": "(202.02) Nodular lymphoma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\(202.02) Nodular lymphoma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Nodular lymphoma (202.0)\\\\(202.02) Nodular lymphoma, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\" + }, + { + "displayName": "(202.03) Nodular lymphoma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\(202.03) Nodular lymphoma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Nodular lymphoma (202.0)\\\\(202.03) Nodular lymphoma, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\" + }, + { + "displayName": "(202.04) Nodular lymphoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\(202.04) Nodular lymphoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Nodular lymphoma (202.0)\\\\(202.04) Nodular lymphoma, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\" + }, + { + "displayName": "(202.05) Nodular lymphoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\(202.05) Nodular lymphoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Nodular lymphoma (202.0)\\\\(202.05) Nodular lymphoma, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\" + }, + { + "displayName": "(202.06) Nodular lymphoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\(202.06) Nodular lymphoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Nodular lymphoma (202.0)\\\\(202.06) Nodular lymphoma, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\" + }, + { + "displayName": "(202.07) Nodular lymphoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\(202.07) Nodular lymphoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Nodular lymphoma (202.0)\\\\(202.07) Nodular lymphoma, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\" + }, + { + "displayName": "(202.08) Nodular lymphoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\(202.08) Nodular lymphoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Nodular lymphoma (202.0)\\\\(202.08) Nodular lymphoma, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Nodular lymphoma (202.0)\\" + }, + { + "displayName": "Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\" + }, + { + "displayName": "(202.90) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\(202.90) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\\\(202.90) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\" + }, + { + "displayName": "(202.91) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\(202.91) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\\\(202.91) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\" + }, + { + "displayName": "(202.92) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\(202.92) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\\\(202.92) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\" + }, + { + "displayName": "(202.93) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\(202.93) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\\\(202.93) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intra-abdominal lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\" + }, + { + "displayName": "(202.94) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\(202.94) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\\\(202.94) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\" + }, + { + "displayName": "(202.95) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\(202.95) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\\\(202.95) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\" + }, + { + "displayName": "(202.96) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\(202.96) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\\\(202.96) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\" + }, + { + "displayName": "(202.97) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\(202.97) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\\\(202.97) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\" + }, + { + "displayName": "(202.98) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\(202.98) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\\\(202.98) Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other and unspecified malignant neoplasms of lymphoid and histiocytic tissue (202.9)\\" + }, + { + "displayName": "Other malignant lymphomas (202.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other malignant lymphomas (202.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\" + }, + { + "displayName": "(202.80) Other malignant lymphomas, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\(202.80) Other malignant lymphomas, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other malignant lymphomas (202.8)\\\\(202.80) Other malignant lymphomas, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\" + }, + { + "displayName": "(202.81) Other malignant lymphomas, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\(202.81) Other malignant lymphomas, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other malignant lymphomas (202.8)\\\\(202.81) Other malignant lymphomas, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\" + }, + { + "displayName": "(202.82) Other malignant lymphomas, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\(202.82) Other malignant lymphomas, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\" + }, + { + "displayName": "(202.83) Other malignant lymphomas, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\(202.83) Other malignant lymphomas, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\" + }, + { + "displayName": "(202.84) Other malignant lymphomas, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\(202.84) Other malignant lymphomas, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\" + }, + { + "displayName": "(202.85) Other malignant lymphomas, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\(202.85) Other malignant lymphomas, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\" + }, + { + "displayName": "(202.86) Other malignant lymphomas, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\(202.86) Other malignant lymphomas, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\" + }, + { + "displayName": "(202.87) Other malignant lymphomas, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\(202.87) Other malignant lymphomas, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other malignant lymphomas (202.8)\\\\(202.87) Other malignant lymphomas, spleen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\" + }, + { + "displayName": "(202.88) Other malignant lymphomas, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\(202.88) Other malignant lymphomas, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Other malignant lymphomas (202.8)\\\\(202.88) Other malignant lymphomas, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Other malignant lymphomas (202.8)\\" + }, + { + "displayName": "Peripheral T-cell lymphoma (202.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Peripheral T-cell lymphoma (202.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\" + }, + { + "displayName": "(202.70) Peripheral T cell lymphoma, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\(202.70) Peripheral T cell lymphoma, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Peripheral T-cell lymphoma (202.7)\\\\(202.70) Peripheral T cell lymphoma, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\" + }, + { + "displayName": "(202.71) Peripheral T cell lymphoma, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\(202.71) Peripheral T cell lymphoma, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Peripheral T-cell lymphoma (202.7)\\\\(202.71) Peripheral T cell lymphoma, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\" + }, + { + "displayName": "(202.72) Peripheral T cell lymphoma, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\(202.72) Peripheral T cell lymphoma, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Peripheral T-cell lymphoma (202.7)\\\\(202.72) Peripheral T cell lymphoma, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\" + }, + { + "displayName": "(202.73) Peripheral T cell lymphoma, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\(202.73) Peripheral T cell lymphoma, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\" + }, + { + "displayName": "(202.74) Peripheral T cell lymphoma, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\(202.74) Peripheral T cell lymphoma, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\" + }, + { + "displayName": "(202.75) Peripheral T cell lymphoma, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\(202.75) Peripheral T cell lymphoma, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\" + }, + { + "displayName": "(202.76) Peripheral T cell lymphoma, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\(202.76) Peripheral T cell lymphoma, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\" + }, + { + "displayName": "(202.77) Peripheral T cell lymphoma, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\(202.77) Peripheral T cell lymphoma, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\" + }, + { + "displayName": "(202.78) Peripheral T cell lymphoma, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\(202.78) Peripheral T cell lymphoma, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Peripheral T-cell lymphoma (202.7)\\" + }, + { + "displayName": "Sezary's disease (202.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\" + }, + { + "displayName": "(202.20) Sezary's disease, unspecified site, extranodal and solid organ sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\(202.20) Sezary's disease, unspecified site, extranodal and solid organ sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Sezary's disease (202.2)\\\\(202.20) Sezary's disease, unspecified site, extranodal and solid organ sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\" + }, + { + "displayName": "(202.21) Sezary's disease, lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\(202.21) Sezary's disease, lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Sezary's disease (202.2)\\\\(202.21) Sezary's disease, lymph nodes of head, face, and neck\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\" + }, + { + "displayName": "(202.22) Sezary's disease, intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\(202.22) Sezary's disease, intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Sezary's disease (202.2)\\\\(202.22) Sezary's disease, intrathoracic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\" + }, + { + "displayName": "(202.23) Sezary's disease, intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\(202.23) Sezary's disease, intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\" + }, + { + "displayName": "(202.24) Sezary's disease, lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\(202.24) Sezary's disease, lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Sezary's disease (202.2)\\\\(202.24) Sezary's disease, lymph nodes of axilla and upper limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\" + }, + { + "displayName": "(202.25) Sezary's disease, lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\(202.25) Sezary's disease, lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Sezary's disease (202.2)\\\\(202.25) Sezary's disease, lymph nodes of inguinal region and lower limb\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\" + }, + { + "displayName": "(202.26) Sezary's disease, intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\(202.26) Sezary's disease, intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Sezary's disease (202.2)\\\\(202.26) Sezary's disease, intrapelvic lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\" + }, + { + "displayName": "(202.27) Sezary's disease, spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\(202.27) Sezary's disease, spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\" + }, + { + "displayName": "(202.28) Sezary's disease, lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\(202.28) Sezary's disease, lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\\\Sezary's disease (202.2)\\\\(202.28) Sezary's disease, lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other malignant neoplasms of lymphoid and histiocytic tissue (202)\\Sezary's disease (202.2)\\" + }, + { + "displayName": "Other specified leukemia (207)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other specified leukemia (207)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\" + }, + { + "displayName": "Acute erythremia and erythroleukemia (207.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Acute erythremia and erythroleukemia (207.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\" + }, + { + "displayName": "(207.00) Acute erythremia and erythroleukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Acute erythremia and erythroleukemia (207.0)\\(207.00) Acute erythremia and erythroleukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other specified leukemia (207)\\\\Acute erythremia and erythroleukemia (207.0)\\\\(207.00) Acute erythremia and erythroleukemia, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Acute erythremia and erythroleukemia (207.0)\\" + }, + { + "displayName": "(207.01) Acute erythremia and erythroleukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Acute erythremia and erythroleukemia (207.0)\\(207.01) Acute erythremia and erythroleukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other specified leukemia (207)\\\\Acute erythremia and erythroleukemia (207.0)\\\\(207.01) Acute erythremia and erythroleukemia, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Acute erythremia and erythroleukemia (207.0)\\" + }, + { + "displayName": "(207.02) Acute erythremia and erythroleukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Acute erythremia and erythroleukemia (207.0)\\(207.02) Acute erythremia and erythroleukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other specified leukemia (207)\\\\Acute erythremia and erythroleukemia (207.0)\\\\(207.02) Acute erythremia and erythroleukemia, in relapse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Acute erythremia and erythroleukemia (207.0)\\" + }, + { + "displayName": "Chronic erythremia (207.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Chronic erythremia (207.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\" + }, + { + "displayName": "(207.10) Chronic erythremia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Chronic erythremia (207.1)\\(207.10) Chronic erythremia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other specified leukemia (207)\\\\Chronic erythremia (207.1)\\\\(207.10) Chronic erythremia, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Chronic erythremia (207.1)\\" + }, + { + "displayName": "(207.11) Chronic erythremia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Chronic erythremia (207.1)\\(207.11) Chronic erythremia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other specified leukemia (207)\\\\Chronic erythremia (207.1)\\\\(207.11) Chronic erythremia, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Chronic erythremia (207.1)\\" + }, + { + "displayName": "Megakaryocytic leukemia (207.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Megakaryocytic leukemia (207.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other specified leukemia (207)\\\\Megakaryocytic leukemia (207.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\" + }, + { + "displayName": "(207.20) Megakaryocytic leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Megakaryocytic leukemia (207.2)\\(207.20) Megakaryocytic leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other specified leukemia (207)\\\\Megakaryocytic leukemia (207.2)\\\\(207.20) Megakaryocytic leukemia, without mention of having achieved remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Megakaryocytic leukemia (207.2)\\" + }, + { + "displayName": "(207.21) Megakaryocytic leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Megakaryocytic leukemia (207.2)\\(207.21) Megakaryocytic leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\\\Other specified leukemia (207)\\\\Megakaryocytic leukemia (207.2)\\\\(207.21) Megakaryocytic leukemia, in remission\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Megakaryocytic leukemia (207.2)\\" + }, + { + "displayName": "Other specified leukemia (207.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Other specified leukemia (207.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\" + }, + { + "displayName": "(207.80) Other specified leukemia, without mention of having achieved remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Other specified leukemia (207.8)\\(207.80) Other specified leukemia, without mention of having achieved remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Other specified leukemia (207.8)\\" + }, + { + "displayName": "(207.81) Other specified leukemia, in remission", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Other specified leukemia (207.8)\\(207.81) Other specified leukemia, in remission\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Other specified leukemia (207.8)\\" + }, + { + "displayName": "(207.82) Other specified leukemia, in relapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Other specified leukemia (207.8)\\(207.82) Other specified leukemia, in relapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of lymphatic and hematopoietic tissue (200-208.99)\\Other specified leukemia (207)\\Other specified leukemia (207.8)\\" + }, + { + "displayName": "Malignant neoplasm of other and unspecified sites (190-199.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "(193) Malignant neoplasm of thyroid gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\(193) Malignant neoplasm of thyroid gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\" + }, + { + "displayName": "Malignant neoplasm of brain (191)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\" + }, + { + "displayName": "(191.0) Malignant neoplasm of cerebrum, except lobes and ventricles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\(191.0) Malignant neoplasm of cerebrum, except lobes and ventricles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of brain (191)\\\\(191.0) Malignant neoplasm of cerebrum, except lobes and ventricles\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\" + }, + { + "displayName": "(191.1) Malignant neoplasm of frontal lobe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\(191.1) Malignant neoplasm of frontal lobe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of brain (191)\\\\(191.1) Malignant neoplasm of frontal lobe\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\" + }, + { + "displayName": "(191.2) Malignant neoplasm of temporal lobe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\(191.2) Malignant neoplasm of temporal lobe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of brain (191)\\\\(191.2) Malignant neoplasm of temporal lobe\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\" + }, + { + "displayName": "(191.3) Malignant neoplasm of parietal lobe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\(191.3) Malignant neoplasm of parietal lobe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of brain (191)\\\\(191.3) Malignant neoplasm of parietal lobe\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\" + }, + { + "displayName": "(191.4) Malignant neoplasm of occipital lobe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\(191.4) Malignant neoplasm of occipital lobe\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\" + }, + { + "displayName": "(191.5) Malignant neoplasm of ventricles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\(191.5) Malignant neoplasm of ventricles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\" + }, + { + "displayName": "(191.6) Malignant neoplasm of cerebellum nos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\(191.6) Malignant neoplasm of cerebellum nos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\" + }, + { + "displayName": "(191.7) Malignant neoplasm of brain stem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\(191.7) Malignant neoplasm of brain stem\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\" + }, + { + "displayName": "(191.8) Malignant neoplasm of other parts of brain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\(191.8) Malignant neoplasm of other parts of brain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\" + }, + { + "displayName": "(191.9) Malignant neoplasm of brain, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\(191.9) Malignant neoplasm of brain, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of brain (191)\\" + }, + { + "displayName": "Malignant neoplasm of eye (190)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\" + }, + { + "displayName": "(190.0) Malignant neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\(190.0) Malignant neoplasm of eyeball, except conjunctiva, cornea, retina, and choroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\" + }, + { + "displayName": "(190.1) Malignant neoplasm of orbit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\(190.1) Malignant neoplasm of orbit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\" + }, + { + "displayName": "(190.2) Malignant neoplasm of lacrimal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\(190.2) Malignant neoplasm of lacrimal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\" + }, + { + "displayName": "(190.3) Malignant neoplasm of conjunctiva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\(190.3) Malignant neoplasm of conjunctiva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\" + }, + { + "displayName": "(190.4) Malignant neoplasm of cornea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\(190.4) Malignant neoplasm of cornea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of eye (190)\\\\(190.4) Malignant neoplasm of cornea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\" + }, + { + "displayName": "(190.5) Malignant neoplasm of retina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\(190.5) Malignant neoplasm of retina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of eye (190)\\\\(190.5) Malignant neoplasm of retina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\" + }, + { + "displayName": "(190.6) Malignant neoplasm of choroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\(190.6) Malignant neoplasm of choroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of eye (190)\\\\(190.6) Malignant neoplasm of choroid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\" + }, + { + "displayName": "(190.7) Malignant neoplasm of lacrimal duct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\(190.7) Malignant neoplasm of lacrimal duct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of eye (190)\\\\(190.7) Malignant neoplasm of lacrimal duct\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\" + }, + { + "displayName": "(190.8) Malignant neoplasm of other specified sites of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\(190.8) Malignant neoplasm of other specified sites of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of eye (190)\\\\(190.8) Malignant neoplasm of other specified sites of eye\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\" + }, + { + "displayName": "(190.9) Malignant neoplasm of eye, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\(190.9) Malignant neoplasm of eye, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of eye (190)\\\\(190.9) Malignant neoplasm of eye, part unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of eye (190)\\" + }, + { + "displayName": "Malignant neoplasm of other and ill-defined sites (195)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\" + }, + { + "displayName": "(195.0) Malignant neoplasm of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\(195.0) Malignant neoplasm of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\" + }, + { + "displayName": "(195.1) Malignant neoplasm of thorax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\(195.1) Malignant neoplasm of thorax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\" + }, + { + "displayName": "(195.2) Malignant neoplasm of abdomen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\(195.2) Malignant neoplasm of abdomen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\" + }, + { + "displayName": "(195.3) Malignant neoplasm of pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\(195.3) Malignant neoplasm of pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\" + }, + { + "displayName": "(195.4) Malignant neoplasm of upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\(195.4) Malignant neoplasm of upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\" + }, + { + "displayName": "(195.5) Malignant neoplasm of lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\(195.5) Malignant neoplasm of lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\" + }, + { + "displayName": "(195.8) Malignant neoplasm of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\(195.8) Malignant neoplasm of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and ill-defined sites (195)\\" + }, + { + "displayName": "Malignant neoplasm of other and unspecified parts of nervous system (192)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\" + }, + { + "displayName": "(192.0) Malignant neoplasm of cranial nerves", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\(192.0) Malignant neoplasm of cranial nerves\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\\\(192.0) Malignant neoplasm of cranial nerves\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\" + }, + { + "displayName": "(192.1) Malignant neoplasm of cerebral meninges", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\(192.1) Malignant neoplasm of cerebral meninges\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\" + }, + { + "displayName": "(192.2) Malignant neoplasm of spinal cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\(192.2) Malignant neoplasm of spinal cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\" + }, + { + "displayName": "(192.3) Malignant neoplasm of spinal meninges", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\(192.3) Malignant neoplasm of spinal meninges\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\" + }, + { + "displayName": "(192.8) Malignant neoplasm of other specified sites of nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\(192.8) Malignant neoplasm of other specified sites of nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\" + }, + { + "displayName": "(192.9) Malignant neoplasm of nervous system, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\(192.9) Malignant neoplasm of nervous system, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other and unspecified parts of nervous system (192)\\" + }, + { + "displayName": "Malignant neoplasm of other endocrine glands and related structures (194)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\" + }, + { + "displayName": "(194.0) Malignant neoplasm of adrenal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\(194.0) Malignant neoplasm of adrenal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\" + }, + { + "displayName": "(194.1) Malignant neoplasm of parathyroid gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\(194.1) Malignant neoplasm of parathyroid gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\" + }, + { + "displayName": "(194.3) Malignant neoplasm of pituitary gland and craniopharyngeal duct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\(194.3) Malignant neoplasm of pituitary gland and craniopharyngeal duct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\" + }, + { + "displayName": "(194.4) Malignant neoplasm of pineal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\(194.4) Malignant neoplasm of pineal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of other endocrine glands and related structures (194)\\\\(194.4) Malignant neoplasm of pineal gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\" + }, + { + "displayName": "(194.5) Malignant neoplasm of carotid body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\(194.5) Malignant neoplasm of carotid body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of other endocrine glands and related structures (194)\\\\(194.5) Malignant neoplasm of carotid body\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\" + }, + { + "displayName": "(194.6) Malignant neoplasm of aortic body and other paraganglia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\(194.6) Malignant neoplasm of aortic body and other paraganglia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of other endocrine glands and related structures (194)\\\\(194.6) Malignant neoplasm of aortic body and other paraganglia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\" + }, + { + "displayName": "(194.8) Malignant neoplasm of other endocrine glands and related structures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\(194.8) Malignant neoplasm of other endocrine glands and related structures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of other endocrine glands and related structures (194)\\\\(194.8) Malignant neoplasm of other endocrine glands and related structures\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\" + }, + { + "displayName": "(194.9) Malignant neoplasm of endocrine gland, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\(194.9) Malignant neoplasm of endocrine gland, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm of other endocrine glands and related structures (194)\\\\(194.9) Malignant neoplasm of endocrine gland, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm of other endocrine glands and related structures (194)\\" + }, + { + "displayName": "Malignant neoplasm without specification of site (199)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm without specification of site (199)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm without specification of site (199)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\" + }, + { + "displayName": "(199.0) Disseminated malignant neoplasm without specification of site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm without specification of site (199)\\(199.0) Disseminated malignant neoplasm without specification of site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm without specification of site (199)\\\\(199.0) Disseminated malignant neoplasm without specification of site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm without specification of site (199)\\" + }, + { + "displayName": "(199.1) Other malignant neoplasm without specification of site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm without specification of site (199)\\(199.1) Other malignant neoplasm without specification of site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Malignant neoplasm without specification of site (199)\\\\(199.1) Other malignant neoplasm without specification of site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm without specification of site (199)\\" + }, + { + "displayName": "(199.2) Malignant neoplasm associated with transplant organ", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm without specification of site (199)\\(199.2) Malignant neoplasm associated with transplant organ\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Malignant neoplasm without specification of site (199)\\" + }, + { + "displayName": "Secondary and unspecified malignant neoplasm of lymph nodes (196)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\" + }, + { + "displayName": "(196.0) Secondary and unspecified malignant neoplasm of lymph nodes of head, face, and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\(196.0) Secondary and unspecified malignant neoplasm of lymph nodes of head, face, and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\" + }, + { + "displayName": "(196.1) Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\(196.1) Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\" + }, + { + "displayName": "(196.2) Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\(196.2) Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\" + }, + { + "displayName": "(196.3) Secondary and unspecified malignant neoplasm of lymph nodes of axilla and upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\(196.3) Secondary and unspecified malignant neoplasm of lymph nodes of axilla and upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\" + }, + { + "displayName": "(196.5) Secondary and unspecified malignant neoplasm of lymph nodes of inguinal region and lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\(196.5) Secondary and unspecified malignant neoplasm of lymph nodes of inguinal region and lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\" + }, + { + "displayName": "(196.6) Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\(196.6) Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\" + }, + { + "displayName": "(196.8) Secondary and unspecified malignant neoplasm of lymph nodes of multiple sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\(196.8) Secondary and unspecified malignant neoplasm of lymph nodes of multiple sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\\\(196.8) Secondary and unspecified malignant neoplasm of lymph nodes of multiple sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\" + }, + { + "displayName": "(196.9) Secondary and unspecified malignant neoplasm of lymph nodes, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\(196.9) Secondary and unspecified malignant neoplasm of lymph nodes, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\\\(196.9) Secondary and unspecified malignant neoplasm of lymph nodes, site unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary and unspecified malignant neoplasm of lymph nodes (196)\\" + }, + { + "displayName": "Secondary malignant neoplasm of other specified sites (198)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\" + }, + { + "displayName": "(198.0) Secondary malignant neoplasm of kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\(198.0) Secondary malignant neoplasm of kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\" + }, + { + "displayName": "(198.1) Secondary malignant neoplasm of other urinary organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\(198.1) Secondary malignant neoplasm of other urinary organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\" + }, + { + "displayName": "(198.2) Secondary malignant neoplasm of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\(198.2) Secondary malignant neoplasm of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\" + }, + { + "displayName": "(198.3) Secondary malignant neoplasm of brain and spinal cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\(198.3) Secondary malignant neoplasm of brain and spinal cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\" + }, + { + "displayName": "(198.4) Secondary malignant neoplasm of other parts of nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\(198.4) Secondary malignant neoplasm of other parts of nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\" + }, + { + "displayName": "(198.5) Secondary malignant neoplasm of bone and bone marrow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\(198.5) Secondary malignant neoplasm of bone and bone marrow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\" + }, + { + "displayName": "(198.6) Secondary malignant neoplasm of ovary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\(198.6) Secondary malignant neoplasm of ovary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\" + }, + { + "displayName": "(198.7) Secondary malignant neoplasm of adrenal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\(198.7) Secondary malignant neoplasm of adrenal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of other specified sites (198)\\\\(198.7) Secondary malignant neoplasm of adrenal gland\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\" + }, + { + "displayName": "Secondary malignant neoplasm of other specified sites (198.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\Secondary malignant neoplasm of other specified sites (198.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of other specified sites (198)\\\\Secondary malignant neoplasm of other specified sites (198.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\" + }, + { + "displayName": "(198.81) Secondary malignant neoplasm of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\Secondary malignant neoplasm of other specified sites (198.8)\\(198.81) Secondary malignant neoplasm of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of other specified sites (198)\\\\Secondary malignant neoplasm of other specified sites (198.8)\\\\(198.81) Secondary malignant neoplasm of breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\Secondary malignant neoplasm of other specified sites (198.8)\\" + }, + { + "displayName": "(198.82) Secondary malignant neoplasm of genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\Secondary malignant neoplasm of other specified sites (198.8)\\(198.82) Secondary malignant neoplasm of genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\Secondary malignant neoplasm of other specified sites (198.8)\\" + }, + { + "displayName": "(198.89) Secondary malignant neoplasm of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\Secondary malignant neoplasm of other specified sites (198.8)\\(198.89) Secondary malignant neoplasm of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of other specified sites (198)\\\\Secondary malignant neoplasm of other specified sites (198.8)\\\\(198.89) Secondary malignant neoplasm of other specified sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of other specified sites (198)\\Secondary malignant neoplasm of other specified sites (198.8)\\" + }, + { + "displayName": "Secondary malignant neoplasm of respiratory and digestive systems (197)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\" + }, + { + "displayName": "(197.0) Secondary malignant neoplasm of lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\(197.0) Secondary malignant neoplasm of lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\\\(197.0) Secondary malignant neoplasm of lung\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\" + }, + { + "displayName": "(197.1) Secondary malignant neoplasm of mediastinum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\(197.1) Secondary malignant neoplasm of mediastinum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\\\(197.1) Secondary malignant neoplasm of mediastinum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\" + }, + { + "displayName": "(197.2) Secondary malignant neoplasm of pleura", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\(197.2) Secondary malignant neoplasm of pleura\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\\\(197.2) Secondary malignant neoplasm of pleura\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\" + }, + { + "displayName": "(197.3) Secondary malignant neoplasm of other respiratory organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\(197.3) Secondary malignant neoplasm of other respiratory organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\\\(197.3) Secondary malignant neoplasm of other respiratory organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\" + }, + { + "displayName": "(197.4) Secondary malignant neoplasm of small intestine including duodenum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\(197.4) Secondary malignant neoplasm of small intestine including duodenum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\\\(197.4) Secondary malignant neoplasm of small intestine including duodenum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\" + }, + { + "displayName": "(197.5) Secondary malignant neoplasm of large intestine and rectum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\(197.5) Secondary malignant neoplasm of large intestine and rectum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\\\(197.5) Secondary malignant neoplasm of large intestine and rectum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\" + }, + { + "displayName": "(197.6) Secondary malignant neoplasm of retroperitoneum and peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\(197.6) Secondary malignant neoplasm of retroperitoneum and peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\\\(197.6) Secondary malignant neoplasm of retroperitoneum and peritoneum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\" + }, + { + "displayName": "(197.7) Malignant neoplasm of liver, secondary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\(197.7) Malignant neoplasm of liver, secondary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of other and unspecified sites (190-199.99)\\\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\\\(197.7) Malignant neoplasm of liver, secondary\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\" + }, + { + "displayName": "(197.8) Secondary malignant neoplasm of other digestive organs and spleen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\(197.8) Secondary malignant neoplasm of other digestive organs and spleen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of other and unspecified sites (190-199.99)\\Secondary malignant neoplasm of respiratory and digestive systems (197)\\" + }, + { + "displayName": "Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "Malignant neoplasm of larynx (161)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\" + }, + { + "displayName": "(161.0) Malignant neoplasm of glottis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\(161.0) Malignant neoplasm of glottis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\" + }, + { + "displayName": "(161.1) Malignant neoplasm of supraglottis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\(161.1) Malignant neoplasm of supraglottis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\" + }, + { + "displayName": "(161.2) Malignant neoplasm of subglottis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\(161.2) Malignant neoplasm of subglottis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\" + }, + { + "displayName": "(161.3) Malignant neoplasm of laryngeal cartilages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\(161.3) Malignant neoplasm of laryngeal cartilages\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\" + }, + { + "displayName": "(161.8) Malignant neoplasm of other specified sites of larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\(161.8) Malignant neoplasm of other specified sites of larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\" + }, + { + "displayName": "(161.9) Malignant neoplasm of larynx, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\(161.9) Malignant neoplasm of larynx, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of larynx (161)\\\\(161.9) Malignant neoplasm of larynx, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of larynx (161)\\" + }, + { + "displayName": "Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\" + }, + { + "displayName": "(160.0) Malignant neoplasm of nasal cavities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\(160.0) Malignant neoplasm of nasal cavities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\\\(160.0) Malignant neoplasm of nasal cavities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\" + }, + { + "displayName": "(160.1) Malignant neoplasm of auditory tube, middle ear, and mastoid air cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\(160.1) Malignant neoplasm of auditory tube, middle ear, and mastoid air cells\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\\\(160.1) Malignant neoplasm of auditory tube, middle ear, and mastoid air cells\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\" + }, + { + "displayName": "(160.2) Malignant neoplasm of maxillary sinus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\(160.2) Malignant neoplasm of maxillary sinus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\" + }, + { + "displayName": "(160.3) Malignant neoplasm of ethmoidal sinus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\(160.3) Malignant neoplasm of ethmoidal sinus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\" + }, + { + "displayName": "(160.4) Malignant neoplasm of frontal sinus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\(160.4) Malignant neoplasm of frontal sinus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\" + }, + { + "displayName": "(160.5) Malignant neoplasm of sphenoidal sinus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\(160.5) Malignant neoplasm of sphenoidal sinus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\" + }, + { + "displayName": "(160.8) Malignant neoplasm of other accessory sinuses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\(160.8) Malignant neoplasm of other accessory sinuses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\" + }, + { + "displayName": "(160.9) Malignant neoplasm of accessory sinus, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\(160.9) Malignant neoplasm of accessory sinus, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of nasal cavities, middle ear, and accessory sinuses (160)\\" + }, + { + "displayName": "Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\" + }, + { + "displayName": "(165.0) Malignant neoplasm of upper respiratory tract, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\\(165.0) Malignant neoplasm of upper respiratory tract, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\\" + }, + { + "displayName": "(165.8) Malignant neoplasm of other sites within the respiratory system and intrathoracic organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\\(165.8) Malignant neoplasm of other sites within the respiratory system and intrathoracic organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\\" + }, + { + "displayName": "(165.9) Malignant neoplasm of ill-defined sites within the respiratory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\\(165.9) Malignant neoplasm of ill-defined sites within the respiratory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\\\\(165.9) Malignant neoplasm of ill-defined sites within the respiratory system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of other and ill-defined sites within the respiratory system and intrathoracic organs (165)\\" + }, + { + "displayName": "Malignant neoplasm of pleura (163)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of pleura (163)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of pleura (163)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\" + }, + { + "displayName": "(163.0) Malignant neoplasm of parietal pleura", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of pleura (163)\\(163.0) Malignant neoplasm of parietal pleura\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of pleura (163)\\\\(163.0) Malignant neoplasm of parietal pleura\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of pleura (163)\\" + }, + { + "displayName": "(163.1) Malignant neoplasm of visceral pleura", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of pleura (163)\\(163.1) Malignant neoplasm of visceral pleura\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of pleura (163)\\\\(163.1) Malignant neoplasm of visceral pleura\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of pleura (163)\\" + }, + { + "displayName": "(163.8) Malignant neoplasm of other specified sites of pleura", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of pleura (163)\\(163.8) Malignant neoplasm of other specified sites of pleura\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of pleura (163)\\\\(163.8) Malignant neoplasm of other specified sites of pleura\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of pleura (163)\\" + }, + { + "displayName": "(163.9) Malignant neoplasm of pleura, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of pleura (163)\\(163.9) Malignant neoplasm of pleura, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of pleura (163)\\\\(163.9) Malignant neoplasm of pleura, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of pleura (163)\\" + }, + { + "displayName": "Malignant neoplasm of thymus, heart, and mediastinum (164)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\" + }, + { + "displayName": "(164.0) Malignant neoplasm of thymus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\(164.0) Malignant neoplasm of thymus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\\\(164.0) Malignant neoplasm of thymus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\" + }, + { + "displayName": "(164.1) Malignant neoplasm of heart", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\(164.1) Malignant neoplasm of heart\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\\\(164.1) Malignant neoplasm of heart\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\" + }, + { + "displayName": "(164.2) Malignant neoplasm of anterior mediastinum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\(164.2) Malignant neoplasm of anterior mediastinum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\\\(164.2) Malignant neoplasm of anterior mediastinum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\" + }, + { + "displayName": "(164.3) Malignant neoplasm of posterior mediastinum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\(164.3) Malignant neoplasm of posterior mediastinum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\\\(164.3) Malignant neoplasm of posterior mediastinum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\" + }, + { + "displayName": "(164.8) Malignant neoplasm of other parts of mediastinum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\(164.8) Malignant neoplasm of other parts of mediastinum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\" + }, + { + "displayName": "(164.9) Malignant neoplasm of mediastinum, part unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\(164.9) Malignant neoplasm of mediastinum, part unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of thymus, heart, and mediastinum (164)\\" + }, + { + "displayName": "Malignant neoplasm of trachea, bronchus, and lung (162)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\" + }, + { + "displayName": "(162.0) Malignant neoplasm of trachea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\(162.0) Malignant neoplasm of trachea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\" + }, + { + "displayName": "(162.2) Malignant neoplasm of main bronchus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\(162.2) Malignant neoplasm of main bronchus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\" + }, + { + "displayName": "(162.3) Malignant neoplasm of upper lobe, bronchus or lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\(162.3) Malignant neoplasm of upper lobe, bronchus or lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\" + }, + { + "displayName": "(162.4) Malignant neoplasm of middle lobe, bronchus or lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\(162.4) Malignant neoplasm of middle lobe, bronchus or lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\" + }, + { + "displayName": "(162.5) Malignant neoplasm of lower lobe, bronchus or lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\(162.5) Malignant neoplasm of lower lobe, bronchus or lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\" + }, + { + "displayName": "(162.8) Malignant neoplasm of other parts of bronchus or lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\(162.8) Malignant neoplasm of other parts of bronchus or lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\" + }, + { + "displayName": "(162.9) Malignant neoplasm of bronchus and lung, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\(162.9) Malignant neoplasm of bronchus and lung, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Malignant neoplasm of respiratory and intrathoracic organs (160-165.99)\\Malignant neoplasm of trachea, bronchus, and lung (162)\\" + }, + { + "displayName": "Neoplasms of uncertain behavior (235-238.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "Neoplasm of uncertain behavior of digestive and respiratory systems (235)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\" + }, + { + "displayName": "(235.0) Neoplasm of uncertain behavior of major salivary glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\(235.0) Neoplasm of uncertain behavior of major salivary glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\" + }, + { + "displayName": "(235.1) Neoplasm of uncertain behavior of lip, oral cavity, and pharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\(235.1) Neoplasm of uncertain behavior of lip, oral cavity, and pharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\" + }, + { + "displayName": "(235.2) Neoplasm of uncertain behavior of stomach, intestines, and rectum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\(235.2) Neoplasm of uncertain behavior of stomach, intestines, and rectum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\\\(235.2) Neoplasm of uncertain behavior of stomach, intestines, and rectum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\" + }, + { + "displayName": "(235.3) Neoplasm of uncertain behavior of liver and biliary passages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\(235.3) Neoplasm of uncertain behavior of liver and biliary passages\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\\\(235.3) Neoplasm of uncertain behavior of liver and biliary passages\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\" + }, + { + "displayName": "(235.4) Neoplasm of uncertain behavior of retroperitoneum and peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\(235.4) Neoplasm of uncertain behavior of retroperitoneum and peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\\\(235.4) Neoplasm of uncertain behavior of retroperitoneum and peritoneum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\" + }, + { + "displayName": "(235.5) Neoplasm of uncertain behavior of other and unspecified digestive organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\(235.5) Neoplasm of uncertain behavior of other and unspecified digestive organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\\\(235.5) Neoplasm of uncertain behavior of other and unspecified digestive organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\" + }, + { + "displayName": "(235.6) Neoplasm of uncertain behavior of larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\(235.6) Neoplasm of uncertain behavior of larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\\\(235.6) Neoplasm of uncertain behavior of larynx\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\" + }, + { + "displayName": "(235.7) Neoplasm of uncertain behavior of trachea, bronchus, and lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\(235.7) Neoplasm of uncertain behavior of trachea, bronchus, and lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\\\(235.7) Neoplasm of uncertain behavior of trachea, bronchus, and lung\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\" + }, + { + "displayName": "(235.8) Neoplasm of uncertain behavior of pleura, thymus, and mediastinum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\(235.8) Neoplasm of uncertain behavior of pleura, thymus, and mediastinum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\\\(235.8) Neoplasm of uncertain behavior of pleura, thymus, and mediastinum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\" + }, + { + "displayName": "(235.9) Neoplasm of uncertain behavior of other and unspecified respiratory organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\(235.9) Neoplasm of uncertain behavior of other and unspecified respiratory organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\\\(235.9) Neoplasm of uncertain behavior of other and unspecified respiratory organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of digestive and respiratory systems (235)\\" + }, + { + "displayName": "Neoplasm of uncertain behavior of endocrine glands and nervous system (237)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\" + }, + { + "displayName": "(237.0) Neoplasm of uncertain behavior of pituitary gland and craniopharyngeal duct", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\(237.0) Neoplasm of uncertain behavior of pituitary gland and craniopharyngeal duct\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\\\(237.0) Neoplasm of uncertain behavior of pituitary gland and craniopharyngeal duct\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\" + }, + { + "displayName": "(237.1) Neoplasm of uncertain behavior of pineal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\(237.1) Neoplasm of uncertain behavior of pineal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\" + }, + { + "displayName": "(237.2) Neoplasm of uncertain behavior of adrenal gland", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\(237.2) Neoplasm of uncertain behavior of adrenal gland\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\" + }, + { + "displayName": "(237.3) Neoplasm of uncertain behavior of paraganglia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\(237.3) Neoplasm of uncertain behavior of paraganglia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\" + }, + { + "displayName": "(237.4) Neoplasm of uncertain behavior of other and unspecified endocrine glands", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\(237.4) Neoplasm of uncertain behavior of other and unspecified endocrine glands\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\" + }, + { + "displayName": "(237.5) Neoplasm of uncertain behavior of brain and spinal cord", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\(237.5) Neoplasm of uncertain behavior of brain and spinal cord\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\" + }, + { + "displayName": "(237.6) Neoplasm of uncertain behavior of meninges", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\(237.6) Neoplasm of uncertain behavior of meninges\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\" + }, + { + "displayName": "(237.9) Neoplasm of uncertain behavior of other and unspecified parts of nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\(237.9) Neoplasm of uncertain behavior of other and unspecified parts of nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\" + }, + { + "displayName": "Neurofibromatosis (237.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\Neurofibromatosis (237.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\" + }, + { + "displayName": "(237.70) Neurofibromatosis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\Neurofibromatosis (237.7)\\(237.70) Neurofibromatosis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\Neurofibromatosis (237.7)\\" + }, + { + "displayName": "(237.71) Neurofibromatosis, type 1 [von recklinghausen's disease]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\Neurofibromatosis (237.7)\\(237.71) Neurofibromatosis, type 1 [von recklinghausen's disease]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\Neurofibromatosis (237.7)\\" + }, + { + "displayName": "(237.72) Neurofibromatosis, type 2 [acoustic neurofibromatosis]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\Neurofibromatosis (237.7)\\(237.72) Neurofibromatosis, type 2 [acoustic neurofibromatosis]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\Neurofibromatosis (237.7)\\" + }, + { + "displayName": "(237.73) Schwannomatosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\Neurofibromatosis (237.7)\\(237.73) Schwannomatosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\Neurofibromatosis (237.7)\\" + }, + { + "displayName": "(237.79) Other neurofibromatosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\Neurofibromatosis (237.7)\\(237.79) Other neurofibromatosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of endocrine glands and nervous system (237)\\Neurofibromatosis (237.7)\\" + }, + { + "displayName": "Neoplasm of uncertain behavior of genitourinary organs (236)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\" + }, + { + "displayName": "(236.0) Neoplasm of uncertain behavior of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\(236.0) Neoplasm of uncertain behavior of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\" + }, + { + "displayName": "(236.1) Neoplasm of uncertain behavior of placenta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\(236.1) Neoplasm of uncertain behavior of placenta\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\" + }, + { + "displayName": "(236.2) Neoplasm of uncertain behavior of ovary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\(236.2) Neoplasm of uncertain behavior of ovary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\" + }, + { + "displayName": "(236.3) Neoplasm of uncertain behavior of other and unspecified female genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\(236.3) Neoplasm of uncertain behavior of other and unspecified female genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of genitourinary organs (236)\\\\(236.3) Neoplasm of uncertain behavior of other and unspecified female genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\" + }, + { + "displayName": "(236.4) Neoplasm of uncertain behavior of testis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\(236.4) Neoplasm of uncertain behavior of testis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of genitourinary organs (236)\\\\(236.4) Neoplasm of uncertain behavior of testis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\" + }, + { + "displayName": "(236.5) Neoplasm of uncertain behavior of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\(236.5) Neoplasm of uncertain behavior of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of genitourinary organs (236)\\\\(236.5) Neoplasm of uncertain behavior of prostate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\" + }, + { + "displayName": "(236.6) Neoplasm of uncertain behavior of other and unspecified male genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\(236.6) Neoplasm of uncertain behavior of other and unspecified male genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\" + }, + { + "displayName": "(236.7) Neoplasm of uncertain behavior of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\(236.7) Neoplasm of uncertain behavior of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\" + }, + { + "displayName": "Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\" + }, + { + "displayName": "(236.90) Neoplasm of uncertain behavior of urinary organ, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\\(236.90) Neoplasm of uncertain behavior of urinary organ, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\\" + }, + { + "displayName": "(236.91) Neoplasm of uncertain behavior of kidney and ureter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\\(236.91) Neoplasm of uncertain behavior of kidney and ureter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\\" + }, + { + "displayName": "(236.99) Neoplasm of uncertain behavior of other and unspecified urinary organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\\(236.99) Neoplasm of uncertain behavior of other and unspecified urinary organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of genitourinary organs (236)\\Neoplasm of uncertain behavior of other and unspecified urinary organs (236.9)\\" + }, + { + "displayName": "Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\" + }, + { + "displayName": "(238.0) Neoplasm of uncertain behavior of bone and articular cartilage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\(238.0) Neoplasm of uncertain behavior of bone and articular cartilage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\" + }, + { + "displayName": "(238.1) Neoplasm of uncertain behavior of connective and other soft tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\(238.1) Neoplasm of uncertain behavior of connective and other soft tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\\\(238.1) Neoplasm of uncertain behavior of connective and other soft tissue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\" + }, + { + "displayName": "(238.2) Neoplasm of uncertain behavior of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\(238.2) Neoplasm of uncertain behavior of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\\\(238.2) Neoplasm of uncertain behavior of skin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\" + }, + { + "displayName": "(238.3) Neoplasm of uncertain behavior of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\(238.3) Neoplasm of uncertain behavior of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\" + }, + { + "displayName": "(238.4) Polycythemia vera", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\(238.4) Polycythemia vera\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\\\(238.4) Polycythemia vera\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\" + }, + { + "displayName": "(238.5) Neoplasm of uncertain behavior of histiocytic and mast cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\(238.5) Neoplasm of uncertain behavior of histiocytic and mast cells\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\\\(238.5) Neoplasm of uncertain behavior of histiocytic and mast cells\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\" + }, + { + "displayName": "(238.6) Neoplasm of uncertain behavior of plasma cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\(238.6) Neoplasm of uncertain behavior of plasma cells\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of uncertain behavior (235-238.99)\\\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\\\(238.6) Neoplasm of uncertain behavior of plasma cells\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\" + }, + { + "displayName": "(238.8) Neoplasm of uncertain behavior of other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\(238.8) Neoplasm of uncertain behavior of other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\" + }, + { + "displayName": "(238.9) Neoplasm of uncertain behavior, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\(238.9) Neoplasm of uncertain behavior, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\" + }, + { + "displayName": "Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\" + }, + { + "displayName": "(238.71) Essential thrombocythemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\(238.71) Essential thrombocythemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\" + }, + { + "displayName": "(238.72) Low grade myelodysplastic syndrome lesions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\(238.72) Low grade myelodysplastic syndrome lesions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\" + }, + { + "displayName": "(238.73) High grade myelodysplastic syndrome lesions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\(238.73) High grade myelodysplastic syndrome lesions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\" + }, + { + "displayName": "(238.74) Myelodysplastic syndrome with 5q deletion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\(238.74) Myelodysplastic syndrome with 5q deletion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\" + }, + { + "displayName": "(238.75) Myelodysplastic syndrome, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\(238.75) Myelodysplastic syndrome, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\" + }, + { + "displayName": "(238.76) Myelofibrosis with myeloid metaplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\(238.76) Myelofibrosis with myeloid metaplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\" + }, + { + "displayName": "(238.77) Post-transplant lymphoproliferative disorder (PTLD)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\(238.77) Post-transplant lymphoproliferative disorder (PTLD)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\" + }, + { + "displayName": "(238.79) Other lymphatic and hematopoietic tissues", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\(238.79) Other lymphatic and hematopoietic tissues\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of uncertain behavior (235-238.99)\\Neoplasm of uncertain behavior of other and unspecified sites and tissues (238)\\Neoplasm of uncertain behavior of other lymphatic and hematopoietic tissues (238.7)\\" + }, + { + "displayName": "Neoplasms of unspecified nature (239-239.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "Neoplasms of unspecified nature (239)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\" + }, + { + "displayName": "(239.0) Neoplasm of unspecified nature of digestive system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\(239.0) Neoplasm of unspecified nature of digestive system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\" + }, + { + "displayName": "(239.1) Neoplasm of unspecified nature of respiratory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\(239.1) Neoplasm of unspecified nature of respiratory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\" + }, + { + "displayName": "(239.2) Neoplasm of unspecified nature of bone, soft tissue, and skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\(239.2) Neoplasm of unspecified nature of bone, soft tissue, and skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of unspecified nature (239-239.99)\\\\Neoplasms of unspecified nature (239)\\\\(239.2) Neoplasm of unspecified nature of bone, soft tissue, and skin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\" + }, + { + "displayName": "(239.3) Neoplasm of unspecified nature of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\(239.3) Neoplasm of unspecified nature of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\" + }, + { + "displayName": "(239.4) Neoplasm of unspecified nature of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\(239.4) Neoplasm of unspecified nature of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of unspecified nature (239-239.99)\\\\Neoplasms of unspecified nature (239)\\\\(239.4) Neoplasm of unspecified nature of bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\" + }, + { + "displayName": "(239.5) Neoplasm of unspecified nature of other genitourinary organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\(239.5) Neoplasm of unspecified nature of other genitourinary organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of unspecified nature (239-239.99)\\\\Neoplasms of unspecified nature (239)\\\\(239.5) Neoplasm of unspecified nature of other genitourinary organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\" + }, + { + "displayName": "(239.6) Neoplasm of unspecified nature of brain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\(239.6) Neoplasm of unspecified nature of brain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\" + }, + { + "displayName": "(239.7) Neoplasm of unspecified nature of endocrine glands and other parts of nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\(239.7) Neoplasm of unspecified nature of endocrine glands and other parts of nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neoplasms of unspecified nature (239-239.99)\\\\Neoplasms of unspecified nature (239)\\\\(239.7) Neoplasm of unspecified nature of endocrine glands and other parts of nervous system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\" + }, + { + "displayName": "(239.9) Neoplasm of unspecified nature, site unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\(239.9) Neoplasm of unspecified nature, site unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\" + }, + { + "displayName": "Neoplasm of unspecified nature of other specified sites (239.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\Neoplasm of unspecified nature of other specified sites (239.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\" + }, + { + "displayName": "(239.81) Neoplasms of unspecified nature, retina and choroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\Neoplasm of unspecified nature of other specified sites (239.8)\\(239.81) Neoplasms of unspecified nature, retina and choroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\Neoplasm of unspecified nature of other specified sites (239.8)\\" + }, + { + "displayName": "(239.89) Neoplasms of unspecified nature, other specified sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\Neoplasm of unspecified nature of other specified sites (239.8)\\(239.89) Neoplasms of unspecified nature, other specified sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neoplasms of unspecified nature (239-239.99)\\Neoplasms of unspecified nature (239)\\Neoplasm of unspecified nature of other specified sites (239.8)\\" + }, + { + "displayName": "Neuroendocrine tumors (209-209.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\" + }, + { + "displayName": "Neuroendocrine tumors (209)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\" + }, + { + "displayName": "Benign carcinoid tumors of other and unspecified sites (209.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\" + }, + { + "displayName": "(209.60) Benign carcinoid tumor of unknown primary site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\(209.60) Benign carcinoid tumor of unknown primary site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\" + }, + { + "displayName": "(209.61) Benign carcinoid tumor of the bronchus and lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\(209.61) Benign carcinoid tumor of the bronchus and lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\" + }, + { + "displayName": "(209.62) Benign carcinoid tumor of the thymus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\(209.62) Benign carcinoid tumor of the thymus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\" + }, + { + "displayName": "(209.63) Benign carcinoid tumor of the stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\(209.63) Benign carcinoid tumor of the stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\" + }, + { + "displayName": "(209.64) Benign carcinoid tumor of the kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\(209.64) Benign carcinoid tumor of the kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Benign carcinoid tumors of other and unspecified sites (209.6)\\\\(209.64) Benign carcinoid tumor of the kidney\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\" + }, + { + "displayName": "(209.69) Benign carcinoid tumor of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\(209.69) Benign carcinoid tumor of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Benign carcinoid tumors of other and unspecified sites (209.6)\\\\(209.69) Benign carcinoid tumor of other sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of other and unspecified sites (209.6)\\" + }, + { + "displayName": "Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\" + }, + { + "displayName": "(209.50) Benign carcinoid tumor of the large intestine, unspecified portion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\\(209.50) Benign carcinoid tumor of the large intestine, unspecified portion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\\" + }, + { + "displayName": "(209.51) Benign carcinoid tumor of the appendix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\\(209.51) Benign carcinoid tumor of the appendix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\\" + }, + { + "displayName": "(209.52) Benign carcinoid tumor of the cecum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\\(209.52) Benign carcinoid tumor of the cecum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\\" + }, + { + "displayName": "(209.57) Benign carcinoid tumor of the rectum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\\(209.57) Benign carcinoid tumor of the rectum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the appendix, large intestine, and rectum (209.5)\\" + }, + { + "displayName": "Benign carcinoid tumors of the small intestine (209.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the small intestine (209.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\" + }, + { + "displayName": "(209.40) Benign carcinoid tumor of the small intestine, unspecified portion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the small intestine (209.4)\\(209.40) Benign carcinoid tumor of the small intestine, unspecified portion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the small intestine (209.4)\\" + }, + { + "displayName": "(209.41) Benign carcinoid tumor of the duodenum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the small intestine (209.4)\\(209.41) Benign carcinoid tumor of the duodenum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the small intestine (209.4)\\" + }, + { + "displayName": "(209.43) Benign carcinoid tumor of the ileum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the small intestine (209.4)\\(209.43) Benign carcinoid tumor of the ileum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Benign carcinoid tumors of the small intestine (209.4)\\" + }, + { + "displayName": "Malignant carcinoid tumors of other and unspecified sites (209.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\" + }, + { + "displayName": "(209.20) Malignant carcinoid tumor of unknown primary site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\(209.20) Malignant carcinoid tumor of unknown primary site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\\\(209.20) Malignant carcinoid tumor of unknown primary site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\" + }, + { + "displayName": "(209.21) Malignant carcinoid tumor of the bronchus and lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\(209.21) Malignant carcinoid tumor of the bronchus and lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\\\(209.21) Malignant carcinoid tumor of the bronchus and lung\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\" + }, + { + "displayName": "(209.22) Malignant carcinoid tumor of the thymus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\(209.22) Malignant carcinoid tumor of the thymus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\" + }, + { + "displayName": "(209.23) Malignant carcinoid tumor of the stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\(209.23) Malignant carcinoid tumor of the stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\\\(209.23) Malignant carcinoid tumor of the stomach\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\" + }, + { + "displayName": "(209.24) Malignant carcinoid tumor of the kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\(209.24) Malignant carcinoid tumor of the kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\\\(209.24) Malignant carcinoid tumor of the kidney\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\" + }, + { + "displayName": "(209.25) Malignant carcinoid tumor of foregut, not otherwise specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\(209.25) Malignant carcinoid tumor of foregut, not otherwise specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\" + }, + { + "displayName": "(209.26) Malignant carcinoid tumor of midgut, not otherwise specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\(209.26) Malignant carcinoid tumor of midgut, not otherwise specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\" + }, + { + "displayName": "(209.27) Malignant carcinoid tumor of hindgut, not otherwise specified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\(209.27) Malignant carcinoid tumor of hindgut, not otherwise specified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\" + }, + { + "displayName": "(209.29) Malignant carcinoid tumor of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\(209.29) Malignant carcinoid tumor of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of other and unspecified sites (209.2)\\" + }, + { + "displayName": "Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\" + }, + { + "displayName": "(209.10) Malignant carcinoid tumor of the large intestine, unspecified portion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\(209.10) Malignant carcinoid tumor of the large intestine, unspecified portion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\" + }, + { + "displayName": "(209.11) Malignant carcinoid tumor of the appendix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\(209.11) Malignant carcinoid tumor of the appendix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\" + }, + { + "displayName": "(209.12) Malignant carcinoid tumor of the cecum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\(209.12) Malignant carcinoid tumor of the cecum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\" + }, + { + "displayName": "(209.13) Malignant carcinoid tumor of the ascending colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\(209.13) Malignant carcinoid tumor of the ascending colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\" + }, + { + "displayName": "(209.15) Malignant carcinoid tumor of the descending colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\(209.15) Malignant carcinoid tumor of the descending colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\" + }, + { + "displayName": "(209.16) Malignant carcinoid tumor of the sigmoid colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\(209.16) Malignant carcinoid tumor of the sigmoid colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\" + }, + { + "displayName": "(209.17) Malignant carcinoid tumor of the rectum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\(209.17) Malignant carcinoid tumor of the rectum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the appendix, large intestine, and rectum (209.1)\\" + }, + { + "displayName": "Malignant carcinoid tumors of the small intestine (209.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the small intestine (209.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Malignant carcinoid tumors of the small intestine (209.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\" + }, + { + "displayName": "(209.00) Malignant carcinoid tumor of the small intestine, unspecified portion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the small intestine (209.0)\\(209.00) Malignant carcinoid tumor of the small intestine, unspecified portion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Malignant carcinoid tumors of the small intestine (209.0)\\\\(209.00) Malignant carcinoid tumor of the small intestine, unspecified portion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the small intestine (209.0)\\" + }, + { + "displayName": "(209.01) Malignant carcinoid tumor of the duodenum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the small intestine (209.0)\\(209.01) Malignant carcinoid tumor of the duodenum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Malignant carcinoid tumors of the small intestine (209.0)\\\\(209.01) Malignant carcinoid tumor of the duodenum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the small intestine (209.0)\\" + }, + { + "displayName": "(209.02) Malignant carcinoid tumor of the jejunum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the small intestine (209.0)\\(209.02) Malignant carcinoid tumor of the jejunum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Malignant carcinoid tumors of the small intestine (209.0)\\\\(209.02) Malignant carcinoid tumor of the jejunum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the small intestine (209.0)\\" + }, + { + "displayName": "(209.03) Malignant carcinoid tumor of the ileum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the small intestine (209.0)\\(209.03) Malignant carcinoid tumor of the ileum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant carcinoid tumors of the small intestine (209.0)\\" + }, + { + "displayName": "Malignant poorly differentiated neuroendocrine tumors (209.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\" + }, + { + "displayName": "(209.30) Malignant poorly differentiated neuroendocrine carcinoma, any site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\(209.30) Malignant poorly differentiated neuroendocrine carcinoma, any site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\" + }, + { + "displayName": "(209.31) Merkel cell carcinoma of the face", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\(209.31) Merkel cell carcinoma of the face\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\" + }, + { + "displayName": "(209.32) Merkel cell carcinoma of the scalp and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\(209.32) Merkel cell carcinoma of the scalp and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\" + }, + { + "displayName": "(209.33) Merkel cell carcinoma of the upper limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\(209.33) Merkel cell carcinoma of the upper limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\" + }, + { + "displayName": "(209.34) Merkel cell carcinoma of the lower limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\(209.34) Merkel cell carcinoma of the lower limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\" + }, + { + "displayName": "(209.35) Merkel cell carcinoma of the trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\(209.35) Merkel cell carcinoma of the trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\" + }, + { + "displayName": "(209.36) Merkel cell carcinoma of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\(209.36) Merkel cell carcinoma of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\\\(209.36) Merkel cell carcinoma of other sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Malignant poorly differentiated neuroendocrine tumors (209.3)\\" + }, + { + "displayName": "Secondary neuroendocrine tumors (209.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Secondary neuroendocrine tumors (209.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\" + }, + { + "displayName": "(209.70) Secondary neuroendocrine tumor, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\(209.70) Secondary neuroendocrine tumor, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Secondary neuroendocrine tumors (209.7)\\\\(209.70) Secondary neuroendocrine tumor, unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\" + }, + { + "displayName": "(209.71) Secondary neuroendocrine tumor of distant lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\(209.71) Secondary neuroendocrine tumor of distant lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Secondary neuroendocrine tumors (209.7)\\\\(209.71) Secondary neuroendocrine tumor of distant lymph nodes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\" + }, + { + "displayName": "(209.72) Secondary neuroendocrine tumor of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\(209.72) Secondary neuroendocrine tumor of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Secondary neuroendocrine tumors (209.7)\\\\(209.72) Secondary neuroendocrine tumor of liver\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\" + }, + { + "displayName": "(209.73) Secondary neuroendocrine tumor of bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\(209.73) Secondary neuroendocrine tumor of bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Secondary neuroendocrine tumors (209.7)\\\\(209.73) Secondary neuroendocrine tumor of bone\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\" + }, + { + "displayName": "(209.74) Secondary neuroendocrine tumor of peritoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\(209.74) Secondary neuroendocrine tumor of peritoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Neoplasms (140-239.99)\\\\Neuroendocrine tumors (209-209.99)\\\\Neuroendocrine tumors (209)\\\\Secondary neuroendocrine tumors (209.7)\\\\(209.74) Secondary neuroendocrine tumor of peritoneum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\" + }, + { + "displayName": "(209.75) Secondary Merkel cell carcinoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\(209.75) Secondary Merkel cell carcinoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\" + }, + { + "displayName": "(209.79) Secondary neuroendocrine tumor of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\(209.79) Secondary neuroendocrine tumor of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Neoplasms (140-239.99)\\Neuroendocrine tumors (209-209.99)\\Neuroendocrine tumors (209)\\Secondary neuroendocrine tumors (209.7)\\" + }, + { + "displayName": "Supplementary classification of external causes of injury and poisoning (E000-E999.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Accidental falls (E880-E888.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E882) Accidental fall from or out of building or other structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\(E882) Accidental fall from or out of building or other structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\" + }, + { + "displayName": "(E887) Fracture, cause unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\(E887) Fracture, cause unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\" + }, + { + "displayName": "Accidental fall into hole or other opening in surface (E883)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall into hole or other opening in surface (E883)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\" + }, + { + "displayName": "(E883.0) Accident from diving or jumping into water [swimming pool]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall into hole or other opening in surface (E883)\\(E883.0) Accident from diving or jumping into water [swimming pool]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall into hole or other opening in surface (E883)\\" + }, + { + "displayName": "(E883.1) Accidental fall into well", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall into hole or other opening in surface (E883)\\(E883.1) Accidental fall into well\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall into hole or other opening in surface (E883)\\" + }, + { + "displayName": "(E883.2) Accidental fall into storm drain or manhole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall into hole or other opening in surface (E883)\\(E883.2) Accidental fall into storm drain or manhole\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall into hole or other opening in surface (E883)\\" + }, + { + "displayName": "(E883.9) Accidental fall into other hole or other opening in surface", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall into hole or other opening in surface (E883)\\(E883.9) Accidental fall into other hole or other opening in surface\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall into hole or other opening in surface (E883)\\" + }, + { + "displayName": "Accidental fall on or from ladders or scaffolding (E881)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from ladders or scaffolding (E881)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\" + }, + { + "displayName": "(E881.0) Accidental fall from ladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from ladders or scaffolding (E881)\\(E881.0) Accidental fall from ladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from ladders or scaffolding (E881)\\" + }, + { + "displayName": "(E881.1) Accidental fall from scaffolding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from ladders or scaffolding (E881)\\(E881.1) Accidental fall from scaffolding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from ladders or scaffolding (E881)\\" + }, + { + "displayName": "Accidental fall on or from stairs or steps (E880)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from stairs or steps (E880)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\" + }, + { + "displayName": "(E880.0) Accidental fall on or from escalator", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from stairs or steps (E880)\\(E880.0) Accidental fall on or from escalator\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from stairs or steps (E880)\\" + }, + { + "displayName": "(E880.1) Accidental fall on or from sidewalk curb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from stairs or steps (E880)\\(E880.1) Accidental fall on or from sidewalk curb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from stairs or steps (E880)\\" + }, + { + "displayName": "(E880.9) Accidental fall on or from other stairs or steps", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from stairs or steps (E880)\\(E880.9) Accidental fall on or from other stairs or steps\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Accidental fall on or from stairs or steps (E880)\\" + }, + { + "displayName": "Fall on same level from collision, pushing, or shoving, by or with other person (E886)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\" + }, + { + "displayName": "(E886.0) Fall on same level from collision, pushing, or shoving, by or with other person in sports", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\\(E886.0) Fall on same level from collision, pushing, or shoving, by or with other person in sports\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\\\\(E886.0) Fall on same level from collision, pushing, or shoving, by or with other person in sports\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\\" + }, + { + "displayName": "(E886.9) Other and unspecified falls on same level from collision, pushing, or shoving, by or with other person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\\(E886.9) Other and unspecified falls on same level from collision, pushing, or shoving, by or with other person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from collision, pushing, or shoving, by or with other person (E886)\\" + }, + { + "displayName": "Fall on same level from slipping, tripping, or stumbling (E885)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\" + }, + { + "displayName": "(E885.0) Fall from (nonmotorized) scooter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\(E885.0) Fall from (nonmotorized) scooter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Fall on same level from slipping, tripping, or stumbling (E885)\\\\(E885.0) Fall from (nonmotorized) scooter\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\" + }, + { + "displayName": "(E885.1) Fall from roller skates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\(E885.1) Fall from roller skates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Fall on same level from slipping, tripping, or stumbling (E885)\\\\(E885.1) Fall from roller skates\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\" + }, + { + "displayName": "(E885.2) Fall from skateboard", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\(E885.2) Fall from skateboard\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\" + }, + { + "displayName": "(E885.3) Fall from skis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\(E885.3) Fall from skis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Fall on same level from slipping, tripping, or stumbling (E885)\\\\(E885.3) Fall from skis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\" + }, + { + "displayName": "(E885.4) Fall from snowboard", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\(E885.4) Fall from snowboard\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Fall on same level from slipping, tripping, or stumbling (E885)\\\\(E885.4) Fall from snowboard\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\" + }, + { + "displayName": "(E885.9) Fall from other slipping, tripping, or stumbling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\(E885.9) Fall from other slipping, tripping, or stumbling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Fall on same level from slipping, tripping, or stumbling (E885)\\" + }, + { + "displayName": "Other accidental falls from one level to another (E884)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Other accidental falls from one level to another (E884)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\" + }, + { + "displayName": "(E884.0) Accidental fall from playground equipment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\(E884.0) Accidental fall from playground equipment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Other accidental falls from one level to another (E884)\\\\(E884.0) Accidental fall from playground equipment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\" + }, + { + "displayName": "(E884.1) Accidental fall from cliff", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\(E884.1) Accidental fall from cliff\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Other accidental falls from one level to another (E884)\\\\(E884.1) Accidental fall from cliff\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\" + }, + { + "displayName": "(E884.2) Accidental fall from chair", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\(E884.2) Accidental fall from chair\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Other accidental falls from one level to another (E884)\\\\(E884.2) Accidental fall from chair\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\" + }, + { + "displayName": "(E884.3) Accidental fall from wheelchair", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\(E884.3) Accidental fall from wheelchair\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\" + }, + { + "displayName": "(E884.4) Accidental fall from bed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\(E884.4) Accidental fall from bed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Other accidental falls from one level to another (E884)\\\\(E884.4) Accidental fall from bed\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\" + }, + { + "displayName": "(E884.5) Accidental fall from other furniture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\(E884.5) Accidental fall from other furniture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Other accidental falls from one level to another (E884)\\\\(E884.5) Accidental fall from other furniture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\" + }, + { + "displayName": "(E884.6) Accidental fall from commode", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\(E884.6) Accidental fall from commode\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Other accidental falls from one level to another (E884)\\\\(E884.6) Accidental fall from commode\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\" + }, + { + "displayName": "(E884.9) Other accidental fall from one level to another", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\(E884.9) Other accidental fall from one level to another\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other accidental falls from one level to another (E884)\\" + }, + { + "displayName": "Other and unspecified accidental fall (E888)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other and unspecified accidental fall (E888)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Other and unspecified accidental fall (E888)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\" + }, + { + "displayName": "(E888.0) Fall resulting in striking against sharp object", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other and unspecified accidental fall (E888)\\(E888.0) Fall resulting in striking against sharp object\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Other and unspecified accidental fall (E888)\\\\(E888.0) Fall resulting in striking against sharp object\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other and unspecified accidental fall (E888)\\" + }, + { + "displayName": "(E888.1) Fall resulting in striking against other object", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other and unspecified accidental fall (E888)\\(E888.1) Fall resulting in striking against other object\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Other and unspecified accidental fall (E888)\\\\(E888.1) Fall resulting in striking against other object\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other and unspecified accidental fall (E888)\\" + }, + { + "displayName": "(E888.8) Other fall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other and unspecified accidental fall (E888)\\(E888.8) Other fall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other and unspecified accidental fall (E888)\\" + }, + { + "displayName": "(E888.9) Unspecified fall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other and unspecified accidental fall (E888)\\(E888.9) Unspecified fall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental falls (E880-E888.9)\\\\Other and unspecified accidental fall (E888)\\\\(E888.9) Unspecified fall\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental falls (E880-E888.9)\\Other and unspecified accidental fall (E888)\\" + }, + { + "displayName": "Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E851) Accidental poisoning by barbiturates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\(E851) Accidental poisoning by barbiturates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\(E851) Accidental poisoning by barbiturates\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\" + }, + { + "displayName": "(E856) Accidental poisoning by antibiotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\(E856) Accidental poisoning by antibiotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\(E856) Accidental poisoning by antibiotics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\" + }, + { + "displayName": "(E857) Accidental poisoning by other anti-infectives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\(E857) Accidental poisoning by other anti-infectives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\(E857) Accidental poisoning by other anti-infectives\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\" + }, + { + "displayName": "Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\" + }, + { + "displayName": "(E850.0) Accidental poisoning by heroin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\(E850.0) Accidental poisoning by heroin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\" + }, + { + "displayName": "(E850.1) Accidental poisoning by methadone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\(E850.1) Accidental poisoning by methadone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\" + }, + { + "displayName": "(E850.2) Accidental poisoning by other opiates and related narcotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\(E850.2) Accidental poisoning by other opiates and related narcotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\" + }, + { + "displayName": "(E850.3) Accidental poisoning by salicylates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\(E850.3) Accidental poisoning by salicylates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\" + }, + { + "displayName": "(E850.4) Accidental poisoning by aromatic analgesics, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\(E850.4) Accidental poisoning by aromatic analgesics, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\" + }, + { + "displayName": "(E850.5) Accidental poisoning by pyrazole derivatives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\(E850.5) Accidental poisoning by pyrazole derivatives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\" + }, + { + "displayName": "(E850.6) Accidental poisoning by antirheumatics (antiphlogistics)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\(E850.6) Accidental poisoning by antirheumatics (antiphlogistics)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\" + }, + { + "displayName": "(E850.7) Accidental poisoning by other non-narcotic analgesics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\(E850.7) Accidental poisoning by other non-narcotic analgesics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\" + }, + { + "displayName": "(E850.8) Accidental poisoning by other specified analgesics and antipyretics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\(E850.8) Accidental poisoning by other specified analgesics and antipyretics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\" + }, + { + "displayName": "(E850.9) Accidental poisoning by unspecified analgesic or antipyretic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\(E850.9) Accidental poisoning by unspecified analgesic or antipyretic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by analgesics, antipyretics, and antirheumatics (E850)\\" + }, + { + "displayName": "Accidental poisoning by other drugs (E858)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\" + }, + { + "displayName": "(E858.0) Accidental poisoning by hormones and synthetic substitutes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\(E858.0) Accidental poisoning by hormones and synthetic substitutes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\" + }, + { + "displayName": "(E858.1) Accidental poisoning by primarily systemic agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\(E858.1) Accidental poisoning by primarily systemic agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\" + }, + { + "displayName": "(E858.2) Accidental poisoning by agents primarily affecting blood constituents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\(E858.2) Accidental poisoning by agents primarily affecting blood constituents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\" + }, + { + "displayName": "(E858.3) Accidental poisoning by agents primarily affecting cardiovascular system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\(E858.3) Accidental poisoning by agents primarily affecting cardiovascular system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\" + }, + { + "displayName": "(E858.4) Accidental poisoning by agents primarily affecting gastrointestinal system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\(E858.4) Accidental poisoning by agents primarily affecting gastrointestinal system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\" + }, + { + "displayName": "(E858.5) Accidental poisoning by water, mineral, and uric acid metabolism drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\(E858.5) Accidental poisoning by water, mineral, and uric acid metabolism drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\" + }, + { + "displayName": "(E858.6) Accidental poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\(E858.6) Accidental poisoning by agents primarily acting on the smooth and skeletal muscles and respiratory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\" + }, + { + "displayName": "(E858.7) Accidental poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\(E858.7) Accidental poisoning by agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\" + }, + { + "displayName": "(E858.8) Accidental poisoning by other specified drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\(E858.8) Accidental poisoning by other specified drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\" + }, + { + "displayName": "(E858.9) Accidental poisoning by unspecified drug", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\(E858.9) Accidental poisoning by unspecified drug\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs (E858)\\" + }, + { + "displayName": "Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\" + }, + { + "displayName": "(E855.0) Accidental poisoning by anticonvulsant and anti-parkinsonism drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\(E855.0) Accidental poisoning by anticonvulsant and anti-parkinsonism drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\" + }, + { + "displayName": "(E855.1) Accidental poisoning by other central nervous system depressants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\(E855.1) Accidental poisoning by other central nervous system depressants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\" + }, + { + "displayName": "(E855.2) Accidental poisoning by local anesthetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\(E855.2) Accidental poisoning by local anesthetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\\\(E855.2) Accidental poisoning by local anesthetics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\" + }, + { + "displayName": "(E855.3) Accidental poisoning by parasympathomimetics [cholinergics]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\(E855.3) Accidental poisoning by parasympathomimetics [cholinergics]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\\\(E855.3) Accidental poisoning by parasympathomimetics [cholinergics]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\" + }, + { + "displayName": "(E855.4) Accidental poisoning by parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\(E855.4) Accidental poisoning by parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\" + }, + { + "displayName": "(E855.5) Accidental poisoning by sympathomimetics [adrenergics]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\(E855.5) Accidental poisoning by sympathomimetics [adrenergics]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\" + }, + { + "displayName": "(E855.6) Accidental poisoning by sympatholytics [antiadrenergics]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\(E855.6) Accidental poisoning by sympatholytics [antiadrenergics]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\" + }, + { + "displayName": "(E855.8) Accidental poisoning by other specified drugs acting on central and autonomic nervous systems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\(E855.8) Accidental poisoning by other specified drugs acting on central and autonomic nervous systems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\\\(E855.8) Accidental poisoning by other specified drugs acting on central and autonomic nervous systems\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\" + }, + { + "displayName": "(E855.9) Accidental poisoning by unspecified drug acting on central and autonomic nervous systems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\(E855.9) Accidental poisoning by unspecified drug acting on central and autonomic nervous systems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other drugs acting on central and autonomic nervous system (E855)\\" + }, + { + "displayName": "Accidental poisoning by other psychotropic agents (E854)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other psychotropic agents (E854)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other psychotropic agents (E854)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\" + }, + { + "displayName": "(E854.0) Accidental poisoning by antidepressants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other psychotropic agents (E854)\\(E854.0) Accidental poisoning by antidepressants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other psychotropic agents (E854)\\" + }, + { + "displayName": "(E854.1) Accidental poisoning by psychodysleptics [hallucinogens]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other psychotropic agents (E854)\\(E854.1) Accidental poisoning by psychodysleptics [hallucinogens]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other psychotropic agents (E854)\\\\(E854.1) Accidental poisoning by psychodysleptics [hallucinogens]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other psychotropic agents (E854)\\" + }, + { + "displayName": "(E854.2) Accidental poisoning by psychostimulants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other psychotropic agents (E854)\\(E854.2) Accidental poisoning by psychostimulants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other psychotropic agents (E854)\\\\(E854.2) Accidental poisoning by psychostimulants\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other psychotropic agents (E854)\\" + }, + { + "displayName": "(E854.3) Accidental poisoning by central nervous system stimulants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other psychotropic agents (E854)\\(E854.3) Accidental poisoning by central nervous system stimulants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other psychotropic agents (E854)\\" + }, + { + "displayName": "(E854.8) Accidental poisoning by other psychotropic agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other psychotropic agents (E854)\\(E854.8) Accidental poisoning by other psychotropic agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other psychotropic agents (E854)\\\\(E854.8) Accidental poisoning by other psychotropic agents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other psychotropic agents (E854)\\" + }, + { + "displayName": "Accidental poisoning by other sedatives and hypnotics (E852)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other sedatives and hypnotics (E852)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\" + }, + { + "displayName": "(E852.0) Accidental poisoning by chloral hydrate group", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\(E852.0) Accidental poisoning by chloral hydrate group\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\" + }, + { + "displayName": "(E852.1) Accidental poisoning by paraldehyde", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\(E852.1) Accidental poisoning by paraldehyde\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other sedatives and hypnotics (E852)\\\\(E852.1) Accidental poisoning by paraldehyde\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\" + }, + { + "displayName": "(E852.2) Accidental poisoning by bromine compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\(E852.2) Accidental poisoning by bromine compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other sedatives and hypnotics (E852)\\\\(E852.2) Accidental poisoning by bromine compounds\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\" + }, + { + "displayName": "(E852.3) Accidental poisoning by methaqualone compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\(E852.3) Accidental poisoning by methaqualone compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\" + }, + { + "displayName": "(E852.4) Accidental poisoning by glutethimide group", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\(E852.4) Accidental poisoning by glutethimide group\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\" + }, + { + "displayName": "(E852.5) Accidental poisoning by mixed sedatives, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\(E852.5) Accidental poisoning by mixed sedatives, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other sedatives and hypnotics (E852)\\\\(E852.5) Accidental poisoning by mixed sedatives, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\" + }, + { + "displayName": "(E852.8) Accidental poisoning by other specified sedatives and hypnotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\(E852.8) Accidental poisoning by other specified sedatives and hypnotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by other sedatives and hypnotics (E852)\\\\(E852.8) Accidental poisoning by other specified sedatives and hypnotics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\" + }, + { + "displayName": "(E852.9) Accidental poisoning by unspecified sedative or hypnotic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\(E852.9) Accidental poisoning by unspecified sedative or hypnotic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by other sedatives and hypnotics (E852)\\" + }, + { + "displayName": "Accidental poisoning by tranquilizers (E853)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by tranquilizers (E853)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\" + }, + { + "displayName": "(E853.0) Accidental poisoning by phenothiazine-based tranquilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by tranquilizers (E853)\\(E853.0) Accidental poisoning by phenothiazine-based tranquilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by tranquilizers (E853)\\" + }, + { + "displayName": "(E853.1) Accidental poisoning by butyrophenone-based tranquilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by tranquilizers (E853)\\(E853.1) Accidental poisoning by butyrophenone-based tranquilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by tranquilizers (E853)\\\\(E853.1) Accidental poisoning by butyrophenone-based tranquilizers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by tranquilizers (E853)\\" + }, + { + "displayName": "(E853.2) Accidental poisoning by benzodiazepine-based tranquilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by tranquilizers (E853)\\(E853.2) Accidental poisoning by benzodiazepine-based tranquilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by tranquilizers (E853)\\\\(E853.2) Accidental poisoning by benzodiazepine-based tranquilizers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by tranquilizers (E853)\\" + }, + { + "displayName": "(E853.8) Accidental poisoning by other specified tranquilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by tranquilizers (E853)\\(E853.8) Accidental poisoning by other specified tranquilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\\\Accidental poisoning by tranquilizers (E853)\\\\(E853.8) Accidental poisoning by other specified tranquilizers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by tranquilizers (E853)\\" + }, + { + "displayName": "(E853.9) Accidental poisoning by unspecified tranquilizer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by tranquilizers (E853)\\(E853.9) Accidental poisoning by unspecified tranquilizer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by drugs, medicinal substances, and biologicals (E850-E858.9)\\Accidental poisoning by tranquilizers (E853)\\" + }, + { + "displayName": "Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E867) Accidental poisoning by gas distributed by pipeline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\(E867) Accidental poisoning by gas distributed by pipeline\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\(E867) Accidental poisoning by gas distributed by pipeline\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\" + }, + { + "displayName": "Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\" + }, + { + "displayName": "(E863.0) Accidental poisoning by insecticides of organochlorine compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\(E863.0) Accidental poisoning by insecticides of organochlorine compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\\\(E863.0) Accidental poisoning by insecticides of organochlorine compounds\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\" + }, + { + "displayName": "(E863.1) Accidental poisoning by insecticides of organophosphorus compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\(E863.1) Accidental poisoning by insecticides of organophosphorus compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\\\(E863.1) Accidental poisoning by insecticides of organophosphorus compounds\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\" + }, + { + "displayName": "(E863.2) Accidental poisoning by carbamates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\(E863.2) Accidental poisoning by carbamates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\" + }, + { + "displayName": "(E863.3) Accidental poisoning by mixtures of insecticides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\(E863.3) Accidental poisoning by mixtures of insecticides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\\\(E863.3) Accidental poisoning by mixtures of insecticides\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\" + }, + { + "displayName": "(E863.4) Accidental poisoning by other and unspecified insecticides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\(E863.4) Accidental poisoning by other and unspecified insecticides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\" + }, + { + "displayName": "(E863.5) Accidental poisoning by herbicides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\(E863.5) Accidental poisoning by herbicides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\\\(E863.5) Accidental poisoning by herbicides\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\" + }, + { + "displayName": "(E863.6) Accidental poisoning by fungicides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\(E863.6) Accidental poisoning by fungicides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\\\(E863.6) Accidental poisoning by fungicides\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\" + }, + { + "displayName": "(E863.7) Accidental poisoning by rodenticides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\(E863.7) Accidental poisoning by rodenticides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\\\(E863.7) Accidental poisoning by rodenticides\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\" + }, + { + "displayName": "(E863.8) Accidental poisoning by fumigants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\(E863.8) Accidental poisoning by fumigants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\\\(E863.8) Accidental poisoning by fumigants\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\" + }, + { + "displayName": "(E863.9) Accidental poisoning by other and unspecified agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\(E863.9) Accidental poisoning by other and unspecified agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers (E863)\\" + }, + { + "displayName": "Accidental poisoning by alcohol, not elsewhere classified (E860)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\" + }, + { + "displayName": "(E860.0) Accidental poisoning by alcoholic beverages", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\(E860.0) Accidental poisoning by alcoholic beverages\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\" + }, + { + "displayName": "(E860.1) Accidental poisoning by other and unspecified ethyl alcohol and its products", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\(E860.1) Accidental poisoning by other and unspecified ethyl alcohol and its products\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\\\(E860.1) Accidental poisoning by other and unspecified ethyl alcohol and its products\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\" + }, + { + "displayName": "(E860.2) Accidental poisoning by methyl alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\(E860.2) Accidental poisoning by methyl alcohol\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\\\(E860.2) Accidental poisoning by methyl alcohol\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\" + }, + { + "displayName": "(E860.3) Accidental poisoning by isopropyl alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\(E860.3) Accidental poisoning by isopropyl alcohol\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\\\(E860.3) Accidental poisoning by isopropyl alcohol\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\" + }, + { + "displayName": "(E860.4) Accidental poisoning by fusel oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\(E860.4) Accidental poisoning by fusel oil\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\\\(E860.4) Accidental poisoning by fusel oil\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\" + }, + { + "displayName": "(E860.8) Accidental poisoning by other specified alcohols", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\(E860.8) Accidental poisoning by other specified alcohols\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\\\(E860.8) Accidental poisoning by other specified alcohols\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\" + }, + { + "displayName": "(E860.9) Accidental poisoning by unspecified alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\(E860.9) Accidental poisoning by unspecified alcohol\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by alcohol, not elsewhere classified (E860)\\" + }, + { + "displayName": "Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\" + }, + { + "displayName": "(E861.0) Accidental poisoning by synthetic detergents and shampoos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\(E861.0) Accidental poisoning by synthetic detergents and shampoos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\" + }, + { + "displayName": "(E861.1) Accidental poisoning by soap products", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\(E861.1) Accidental poisoning by soap products\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\" + }, + { + "displayName": "(E861.2) Accidental poisoning by polishes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\(E861.2) Accidental poisoning by polishes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\" + }, + { + "displayName": "(E861.3) Accidental poisoning by other cleansing and polishing agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\(E861.3) Accidental poisoning by other cleansing and polishing agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\" + }, + { + "displayName": "(E861.4) Accidental poisoning by disinfectants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\(E861.4) Accidental poisoning by disinfectants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\" + }, + { + "displayName": "(E861.5) Accidental poisoning by lead paints", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\(E861.5) Accidental poisoning by lead paints\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\" + }, + { + "displayName": "(E861.6) Accidental poisoning by other paints and varnishes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\(E861.6) Accidental poisoning by other paints and varnishes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\" + }, + { + "displayName": "(E861.9) Accidental poisoning by unspecified cleansing and polishing agents, disinfectants, paints, and varnishes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\(E861.9) Accidental poisoning by unspecified cleansing and polishing agents, disinfectants, paints, and varnishes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by cleansing and polishing agents, disinfectants, paints, and varnishes (E861)\\" + }, + { + "displayName": "Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\" + }, + { + "displayName": "(E864.0) Accidental poisoning by corrosive aromatics not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\(E864.0) Accidental poisoning by corrosive aromatics not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\\\(E864.0) Accidental poisoning by corrosive aromatics not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\" + }, + { + "displayName": "(E864.1) Accidental poisoning by acids not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\(E864.1) Accidental poisoning by acids not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\\\(E864.1) Accidental poisoning by acids not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\" + }, + { + "displayName": "(E864.2) Accidental poisoning by caustic alkalis not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\(E864.2) Accidental poisoning by caustic alkalis not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\" + }, + { + "displayName": "(E864.3) Accidental poisoning by other specified corrosives and caustics not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\(E864.3) Accidental poisoning by other specified corrosives and caustics not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\\\(E864.3) Accidental poisoning by other specified corrosives and caustics not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\" + }, + { + "displayName": "(E864.4) Accidental poisoning by unspecified corrosives and caustics not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\(E864.4) Accidental poisoning by unspecified corrosives and caustics not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\\\(E864.4) Accidental poisoning by unspecified corrosives and caustics not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by corrosives and caustics, not elsewhere classified (E864)\\" + }, + { + "displayName": "Accidental poisoning by other and unspecified solid and liquid substances (E866)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\" + }, + { + "displayName": "(E866.0) Accidental poisoning by lead and its compounds and fumes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\(E866.0) Accidental poisoning by lead and its compounds and fumes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\\\(E866.0) Accidental poisoning by lead and its compounds and fumes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\" + }, + { + "displayName": "(E866.1) Accidental poisoning by mercury and its compounds and fumes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\(E866.1) Accidental poisoning by mercury and its compounds and fumes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\\\(E866.1) Accidental poisoning by mercury and its compounds and fumes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\" + }, + { + "displayName": "(E866.2) Accidental poisoning by antimony and its compounds and fumes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\(E866.2) Accidental poisoning by antimony and its compounds and fumes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\\\(E866.2) Accidental poisoning by antimony and its compounds and fumes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\" + }, + { + "displayName": "(E866.3) Accidental poisoning by arsenic and its compounds and fumes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\(E866.3) Accidental poisoning by arsenic and its compounds and fumes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\" + }, + { + "displayName": "(E866.4) Accidental poisoning by other metals and their compounds and fumes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\(E866.4) Accidental poisoning by other metals and their compounds and fumes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\\\(E866.4) Accidental poisoning by other metals and their compounds and fumes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\" + }, + { + "displayName": "(E866.5) Accidental poisoning by plant foods and fertilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\(E866.5) Accidental poisoning by plant foods and fertilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\\\(E866.5) Accidental poisoning by plant foods and fertilizers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\" + }, + { + "displayName": "(E866.6) Accidental poisoning by glues and adhesives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\(E866.6) Accidental poisoning by glues and adhesives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\\\(E866.6) Accidental poisoning by glues and adhesives\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\" + }, + { + "displayName": "(E866.7) Accidental poisoning by cosmetics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\(E866.7) Accidental poisoning by cosmetics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\" + }, + { + "displayName": "(E866.8) Accidental poisoning by other specified solid or liquid substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\(E866.8) Accidental poisoning by other specified solid or liquid substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\\\(E866.8) Accidental poisoning by other specified solid or liquid substances\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\" + }, + { + "displayName": "(E866.9) Accidental poisoning by unspecified solid or liquid substance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\(E866.9) Accidental poisoning by unspecified solid or liquid substance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\\\(E866.9) Accidental poisoning by unspecified solid or liquid substance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other and unspecified solid and liquid substances (E866)\\" + }, + { + "displayName": "Accidental poisoning by other gases and vapors (E869)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by other gases and vapors (E869)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\" + }, + { + "displayName": "(E869.0) Accidental poisoning by nitrogen oxides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\(E869.0) Accidental poisoning by nitrogen oxides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by other gases and vapors (E869)\\\\(E869.0) Accidental poisoning by nitrogen oxides\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\" + }, + { + "displayName": "(E869.1) Accidental poisoning by sulfur dioxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\(E869.1) Accidental poisoning by sulfur dioxide\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by other gases and vapors (E869)\\\\(E869.1) Accidental poisoning by sulfur dioxide\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\" + }, + { + "displayName": "(E869.2) Accidental poisoning by freon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\(E869.2) Accidental poisoning by freon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\" + }, + { + "displayName": "(E869.3) Accidental poisoning by lacrimogenic gas [tear gas]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\(E869.3) Accidental poisoning by lacrimogenic gas [tear gas]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\" + }, + { + "displayName": "(E869.4) Second hand tobacco smoke", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\(E869.4) Second hand tobacco smoke\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\" + }, + { + "displayName": "(E869.8) Accidental poisoning by other specified gases and vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\(E869.8) Accidental poisoning by other specified gases and vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\" + }, + { + "displayName": "(E869.9) Accidental poisoning by unspecified gases and vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\(E869.9) Accidental poisoning by unspecified gases and vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other gases and vapors (E869)\\" + }, + { + "displayName": "Accidental poisoning by other utility gas and other carbon monoxide (E868)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\" + }, + { + "displayName": "(E868.0) Accidental poisoning by liquefied petroleum gas distributed in mobile containers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\(E868.0) Accidental poisoning by liquefied petroleum gas distributed in mobile containers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\" + }, + { + "displayName": "(E868.1) Accidental poisoning by other and unspecified utility gas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\(E868.1) Accidental poisoning by other and unspecified utility gas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\" + }, + { + "displayName": "(E868.2) Accidental poisoning by motor vehicle exhaust gas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\(E868.2) Accidental poisoning by motor vehicle exhaust gas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\" + }, + { + "displayName": "(E868.3) Accidental poisoning by carbon monoxide from incomplete combustion of other domestic fuels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\(E868.3) Accidental poisoning by carbon monoxide from incomplete combustion of other domestic fuels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\" + }, + { + "displayName": "(E868.8) Accidental poisoning by carbon monoxide from other sources", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\(E868.8) Accidental poisoning by carbon monoxide from other sources\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\" + }, + { + "displayName": "(E868.9) Accidental poisoning by unspecified carbon monoxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\(E868.9) Accidental poisoning by unspecified carbon monoxide\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by other utility gas and other carbon monoxide (E868)\\" + }, + { + "displayName": "Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\" + }, + { + "displayName": "(E862.0) Accidental poisoning by petroleum solvents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\(E862.0) Accidental poisoning by petroleum solvents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\\\(E862.0) Accidental poisoning by petroleum solvents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\" + }, + { + "displayName": "(E862.1) Accidental poisoning by petroleum fuels and cleaners", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\(E862.1) Accidental poisoning by petroleum fuels and cleaners\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\" + }, + { + "displayName": "(E862.2) Accidental poisoning by lubricating oils", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\(E862.2) Accidental poisoning by lubricating oils\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\\\(E862.2) Accidental poisoning by lubricating oils\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\" + }, + { + "displayName": "(E862.3) Accidental poisoning by petroleum solids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\(E862.3) Accidental poisoning by petroleum solids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\" + }, + { + "displayName": "(E862.4) Accidental poisoning by other specified solvents, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\(E862.4) Accidental poisoning by other specified solvents, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\\\(E862.4) Accidental poisoning by other specified solvents, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\" + }, + { + "displayName": "(E862.9) Accidental poisoning by unspecified solvent, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\(E862.9) Accidental poisoning by unspecified solvent, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\\\(E862.9) Accidental poisoning by unspecified solvent, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning by petroleum products, other solvents and their vapors, not elsewhere classified (E862)\\" + }, + { + "displayName": "Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\" + }, + { + "displayName": "(E865.0) Accidental poisoning by meat", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\(E865.0) Accidental poisoning by meat\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\\\(E865.0) Accidental poisoning by meat\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\" + }, + { + "displayName": "(E865.1) Accidental poisoning by shellfish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\(E865.1) Accidental poisoning by shellfish\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\\\(E865.1) Accidental poisoning by shellfish\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\" + }, + { + "displayName": "(E865.2) Accidental poisoning from other fish", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\(E865.2) Accidental poisoning from other fish\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\" + }, + { + "displayName": "(E865.3) Accidental poisoning from berries and seeds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\(E865.3) Accidental poisoning from berries and seeds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\\\(E865.3) Accidental poisoning from berries and seeds\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\" + }, + { + "displayName": "(E865.4) Accidental poisoning from other specified plants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\(E865.4) Accidental poisoning from other specified plants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\" + }, + { + "displayName": "(E865.5) Accidental poisoning from mushrooms and other fungi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\(E865.5) Accidental poisoning from mushrooms and other fungi\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\\\(E865.5) Accidental poisoning from mushrooms and other fungi\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\" + }, + { + "displayName": "(E865.8) Accidental poisoning from other specified foods", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\(E865.8) Accidental poisoning from other specified foods\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\\\(E865.8) Accidental poisoning from other specified foods\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\" + }, + { + "displayName": "(E865.9) Accidental poisoning from unspecified foodstuff or poisonous plant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\(E865.9) Accidental poisoning from unspecified foodstuff or poisonous plant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\\\(E865.9) Accidental poisoning from unspecified foodstuff or poisonous plant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidental poisoning by other solid and liquid substances, gases, and vapors (E860-E869.9)\\Accidental poisoning from poisonous foodstuffs and poisonous plants (E865)\\" + }, + { + "displayName": "Accidents caused by fire and flames (E890-E899.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E892) Conflagration not in building or structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\(E892) Conflagration not in building or structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\(E892) Conflagration not in building or structure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\" + }, + { + "displayName": "(E894) Ignition of highly inflammable material", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\(E894) Ignition of highly inflammable material\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\" + }, + { + "displayName": "(E895) Accident caused by controlled fire in private dwelling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\(E895) Accident caused by controlled fire in private dwelling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\" + }, + { + "displayName": "(E896) Accident caused by controlled fire in other and unspecified building or structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\(E896) Accident caused by controlled fire in other and unspecified building or structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\(E896) Accident caused by controlled fire in other and unspecified building or structure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\" + }, + { + "displayName": "(E897) Accident caused by controlled fire not in building or structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\(E897) Accident caused by controlled fire not in building or structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\(E897) Accident caused by controlled fire not in building or structure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\" + }, + { + "displayName": "(E899) Accident caused by unspecified fire", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\(E899) Accident caused by unspecified fire\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\" + }, + { + "displayName": "Accident caused by ignition of clothing (E893)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by ignition of clothing (E893)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\Accident caused by ignition of clothing (E893)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\" + }, + { + "displayName": "(E893.0) Accident caused by ignition of clothing from controlled fire in private dwelling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by ignition of clothing (E893)\\(E893.0) Accident caused by ignition of clothing from controlled fire in private dwelling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\Accident caused by ignition of clothing (E893)\\\\(E893.0) Accident caused by ignition of clothing from controlled fire in private dwelling\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by ignition of clothing (E893)\\" + }, + { + "displayName": "(E893.1) Accident caused by ignition of clothing from controlled fire in other building or structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by ignition of clothing (E893)\\(E893.1) Accident caused by ignition of clothing from controlled fire in other building or structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by ignition of clothing (E893)\\" + }, + { + "displayName": "(E893.2) Accident caused by ignition of clothing from controlled fire not in building or structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by ignition of clothing (E893)\\(E893.2) Accident caused by ignition of clothing from controlled fire not in building or structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\Accident caused by ignition of clothing (E893)\\\\(E893.2) Accident caused by ignition of clothing from controlled fire not in building or structure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by ignition of clothing (E893)\\" + }, + { + "displayName": "(E893.8) Accident caused by ignition of clothing from other specified sources", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by ignition of clothing (E893)\\(E893.8) Accident caused by ignition of clothing from other specified sources\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\Accident caused by ignition of clothing (E893)\\\\(E893.8) Accident caused by ignition of clothing from other specified sources\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by ignition of clothing (E893)\\" + }, + { + "displayName": "(E893.9) Accident caused by ignition of clothing by unspecified source", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by ignition of clothing (E893)\\(E893.9) Accident caused by ignition of clothing by unspecified source\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\Accident caused by ignition of clothing (E893)\\\\(E893.9) Accident caused by ignition of clothing by unspecified source\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by ignition of clothing (E893)\\" + }, + { + "displayName": "Accident caused by other specified fire and flames (E898)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by other specified fire and flames (E898)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\Accident caused by other specified fire and flames (E898)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\" + }, + { + "displayName": "(E898.0) Accident caused by burning bedclothes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by other specified fire and flames (E898)\\(E898.0) Accident caused by burning bedclothes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by other specified fire and flames (E898)\\" + }, + { + "displayName": "(E898.1) Accident caused by other burning materials", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by other specified fire and flames (E898)\\(E898.1) Accident caused by other burning materials\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\Accident caused by other specified fire and flames (E898)\\\\(E898.1) Accident caused by other burning materials\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Accident caused by other specified fire and flames (E898)\\" + }, + { + "displayName": "Conflagration in other and unspecified building or structure (E891)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\Conflagration in other and unspecified building or structure (E891)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\" + }, + { + "displayName": "(E891.0) Explosion caused by conflagration in other and unspecified building or structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\(E891.0) Explosion caused by conflagration in other and unspecified building or structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\" + }, + { + "displayName": "(E891.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in other and unspecified building or structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\(E891.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in other and unspecified building or structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\Conflagration in other and unspecified building or structure (E891)\\\\(E891.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in other and unspecified building or structure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\" + }, + { + "displayName": "(E891.2) Other smoke and fumes from conflagration in other and unspecified building or structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\(E891.2) Other smoke and fumes from conflagration in other and unspecified building or structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\Conflagration in other and unspecified building or structure (E891)\\\\(E891.2) Other smoke and fumes from conflagration in other and unspecified building or structure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\" + }, + { + "displayName": "(E891.3) Burning caused by conflagration in other and unspecified building or structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\(E891.3) Burning caused by conflagration in other and unspecified building or structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by fire and flames (E890-E899.9)\\\\Conflagration in other and unspecified building or structure (E891)\\\\(E891.3) Burning caused by conflagration in other and unspecified building or structure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\" + }, + { + "displayName": "(E891.8) Other accident resulting from conflagration in other and unspecified building or structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\(E891.8) Other accident resulting from conflagration in other and unspecified building or structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\" + }, + { + "displayName": "(E891.9) Unspecified accident resulting from conflagration of other and unspecified building or structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\(E891.9) Unspecified accident resulting from conflagration of other and unspecified building or structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in other and unspecified building or structure (E891)\\" + }, + { + "displayName": "Conflagration in private dwelling (E890)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\" + }, + { + "displayName": "(E890.0) Explosion caused by conflagration in private dwelling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\(E890.0) Explosion caused by conflagration in private dwelling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\" + }, + { + "displayName": "(E890.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in private dwelling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\(E890.1) Fumes from combustion of polyvinylchloride [pvc] and similar material in conflagration in private dwelling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\" + }, + { + "displayName": "(E890.2) Other smoke and fumes from conflagration in private dwelling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\(E890.2) Other smoke and fumes from conflagration in private dwelling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\" + }, + { + "displayName": "(E890.3) Burning caused by conflagration in private dwelling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\(E890.3) Burning caused by conflagration in private dwelling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\" + }, + { + "displayName": "(E890.8) Other accident resulting from conflagration in private dwelling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\(E890.8) Other accident resulting from conflagration in private dwelling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\" + }, + { + "displayName": "(E890.9) Unspecified accident resulting from conflagration in private dwelling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\(E890.9) Unspecified accident resulting from conflagration in private dwelling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by fire and flames (E890-E899.9)\\Conflagration in private dwelling (E890)\\" + }, + { + "displayName": "Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E911) Inhalation and ingestion of food causing obstruction of respiratory tract or suffocation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\(E911) Inhalation and ingestion of food causing obstruction of respiratory tract or suffocation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\" + }, + { + "displayName": "(E912) Inhalation and ingestion of other object causing obstruction of respiratory tract or suffocation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\(E912) Inhalation and ingestion of other object causing obstruction of respiratory tract or suffocation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\" + }, + { + "displayName": "(E914) Foreign body accidentally entering eye and adnexa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\(E914) Foreign body accidentally entering eye and adnexa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\" + }, + { + "displayName": "(E915) Foreign body accidentally entering other orifice", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\(E915) Foreign body accidentally entering other orifice\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\" + }, + { + "displayName": "Accidental drowning and submersion (E910)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\" + }, + { + "displayName": "(E910.0) Accidental drowning and submersion while water-skiing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\(E910.0) Accidental drowning and submersion while water-skiing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\" + }, + { + "displayName": "(E910.1) Accidental drowning and submersion while engaged in other sport or recreational activity with diving equipment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\(E910.1) Accidental drowning and submersion while engaged in other sport or recreational activity with diving equipment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\" + }, + { + "displayName": "(E910.2) Accidental drowning and submersion while engaged in other sport or recreational activity without diving equipment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\(E910.2) Accidental drowning and submersion while engaged in other sport or recreational activity without diving equipment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\" + }, + { + "displayName": "(E910.3) Accidental drowning and submersion while swimming or diving for purposes other than recreation or sport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\(E910.3) Accidental drowning and submersion while swimming or diving for purposes other than recreation or sport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\\\Accidental drowning and submersion (E910)\\\\(E910.3) Accidental drowning and submersion while swimming or diving for purposes other than recreation or sport\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\" + }, + { + "displayName": "(E910.4) Accidental drowning and submersion in bathtub", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\(E910.4) Accidental drowning and submersion in bathtub\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\" + }, + { + "displayName": "(E910.8) Other accidental drowning or submersion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\(E910.8) Other accidental drowning or submersion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\\\Accidental drowning and submersion (E910)\\\\(E910.8) Other accidental drowning or submersion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\" + }, + { + "displayName": "(E910.9) Unspecified accidental drowning or submersion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\(E910.9) Unspecified accidental drowning or submersion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\\\Accidental drowning and submersion (E910)\\\\(E910.9) Unspecified accidental drowning or submersion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental drowning and submersion (E910)\\" + }, + { + "displayName": "Accidental mechanical suffocation (E913)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\\\Accidental mechanical suffocation (E913)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\" + }, + { + "displayName": "(E913.0) Accidental mechanical suffocation in bed or cradle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\(E913.0) Accidental mechanical suffocation in bed or cradle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\\\Accidental mechanical suffocation (E913)\\\\(E913.0) Accidental mechanical suffocation in bed or cradle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\" + }, + { + "displayName": "(E913.1) Accidental mechanical suffocation by plastic bag", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\(E913.1) Accidental mechanical suffocation by plastic bag\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\" + }, + { + "displayName": "(E913.2) Accidental mechanical suffocation due to lack of air (in closed place)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\(E913.2) Accidental mechanical suffocation due to lack of air (in closed place)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\\\Accidental mechanical suffocation (E913)\\\\(E913.2) Accidental mechanical suffocation due to lack of air (in closed place)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\" + }, + { + "displayName": "(E913.3) Accidental mechanical suffocation by falling earth or other substance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\(E913.3) Accidental mechanical suffocation by falling earth or other substance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\" + }, + { + "displayName": "(E913.8) Accidental mechanical suffocation by other specified means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\(E913.8) Accidental mechanical suffocation by other specified means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\\\Accidental mechanical suffocation (E913)\\\\(E913.8) Accidental mechanical suffocation by other specified means\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\" + }, + { + "displayName": "(E913.9) Accidental mechanical suffocation by unspecified means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\(E913.9) Accidental mechanical suffocation by unspecified means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents caused by submersion, suffocation, and foreign bodies (E910-E915.9)\\Accidental mechanical suffocation (E913)\\" + }, + { + "displayName": "Accidents due to natural and environmental factors (E900-E909.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E903) Accident caused by travel and motion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\(E903) Accident caused by travel and motion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\(E903) Accident caused by travel and motion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\" + }, + { + "displayName": "(E907) Accident due to lightning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\(E907) Accident due to lightning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\" + }, + { + "displayName": "Accident caused by excessive heat (E900)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident caused by excessive heat (E900)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accident caused by excessive heat (E900)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\" + }, + { + "displayName": "(E900.0) Accident caused by excessive heat due to weather conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident caused by excessive heat (E900)\\(E900.0) Accident caused by excessive heat due to weather conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accident caused by excessive heat (E900)\\\\(E900.0) Accident caused by excessive heat due to weather conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident caused by excessive heat (E900)\\" + }, + { + "displayName": "(E900.1) Accidents due to excessive heat of man-made origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident caused by excessive heat (E900)\\(E900.1) Accidents due to excessive heat of man-made origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accident caused by excessive heat (E900)\\\\(E900.1) Accidents due to excessive heat of man-made origin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident caused by excessive heat (E900)\\" + }, + { + "displayName": "(E900.9) Accidents due to excessive heat of unspecified origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident caused by excessive heat (E900)\\(E900.9) Accidents due to excessive heat of unspecified origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident caused by excessive heat (E900)\\" + }, + { + "displayName": "Accident due to cataclysmic earth surface movements and eruptions (E909)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\" + }, + { + "displayName": "(E909.0) Earthquakes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\(E909.0) Earthquakes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\\\(E909.0) Earthquakes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\" + }, + { + "displayName": "(E909.1) Volcanic eruptions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\(E909.1) Volcanic eruptions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\\\(E909.1) Volcanic eruptions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\" + }, + { + "displayName": "(E909.2) Avalanche, landslide, or mudslide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\(E909.2) Avalanche, landslide, or mudslide\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\\\(E909.2) Avalanche, landslide, or mudslide\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\" + }, + { + "displayName": "(E909.3) Collapse of dam or man-made structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\(E909.3) Collapse of dam or man-made structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\\\(E909.3) Collapse of dam or man-made structure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\" + }, + { + "displayName": "(E909.4) Tidalwave caused by earthquake", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\(E909.4) Tidalwave caused by earthquake\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\\\(E909.4) Tidalwave caused by earthquake\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\" + }, + { + "displayName": "(E909.8) Other cataclysmic earth surface movements and eruptions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\(E909.8) Other cataclysmic earth surface movements and eruptions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\" + }, + { + "displayName": "(E909.9) Unspecified cataclysmic earth surface movements and eruptions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\(E909.9) Unspecified cataclysmic earth surface movements and eruptions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic earth surface movements and eruptions (E909)\\" + }, + { + "displayName": "Accident due to cataclysmic storms, and floods resulting from storms (E908)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\" + }, + { + "displayName": "(E908.0) Hurricane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\(E908.0) Hurricane\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\" + }, + { + "displayName": "(E908.1) Tornado", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\(E908.1) Tornado\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\" + }, + { + "displayName": "(E908.2) Floods", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\(E908.2) Floods\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\" + }, + { + "displayName": "(E908.3) Blizzard (snow) (ice)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\(E908.3) Blizzard (snow) (ice)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\" + }, + { + "displayName": "(E908.4) Dust storm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\(E908.4) Dust storm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\" + }, + { + "displayName": "(E908.8) Other cataclysmic storms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\(E908.8) Other cataclysmic storms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\" + }, + { + "displayName": "(E908.9) Unspecified cataclysmic storms, and floods resulting from storms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\(E908.9) Unspecified cataclysmic storms, and floods resulting from storms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to cataclysmic storms, and floods resulting from storms (E908)\\" + }, + { + "displayName": "Accident due to high and low air pressure and changes in air pressure (E902)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to high and low air pressure and changes in air pressure (E902)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\" + }, + { + "displayName": "(E902.0) Accident due to residence or prolonged visit at high altitude", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to high and low air pressure and changes in air pressure (E902)\\(E902.0) Accident due to residence or prolonged visit at high altitude\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to high and low air pressure and changes in air pressure (E902)\\" + }, + { + "displayName": "(E902.1) Accident due to changes in air pressure in aircraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to high and low air pressure and changes in air pressure (E902)\\(E902.1) Accident due to changes in air pressure in aircraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to high and low air pressure and changes in air pressure (E902)\\" + }, + { + "displayName": "(E902.2) Accident due to changes in air pressure due to diving", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to high and low air pressure and changes in air pressure (E902)\\(E902.2) Accident due to changes in air pressure due to diving\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to high and low air pressure and changes in air pressure (E902)\\" + }, + { + "displayName": "(E902.8) Accident due to changes in air pressure due to other specified causes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to high and low air pressure and changes in air pressure (E902)\\(E902.8) Accident due to changes in air pressure due to other specified causes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to high and low air pressure and changes in air pressure (E902)\\" + }, + { + "displayName": "(E902.9) Accident due to changes in air pressure from unspecified cause", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to high and low air pressure and changes in air pressure (E902)\\(E902.9) Accident due to changes in air pressure from unspecified cause\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accident due to high and low air pressure and changes in air pressure (E902)\\" + }, + { + "displayName": "Accidents due to excessive cold (E901)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accidents due to excessive cold (E901)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\" + }, + { + "displayName": "(E901.0) Accident due to excessive cold due to weather conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accidents due to excessive cold (E901)\\(E901.0) Accident due to excessive cold due to weather conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accidents due to excessive cold (E901)\\\\(E901.0) Accident due to excessive cold due to weather conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accidents due to excessive cold (E901)\\" + }, + { + "displayName": "(E901.1) Accident due to excessive cold of man-made origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accidents due to excessive cold (E901)\\(E901.1) Accident due to excessive cold of man-made origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accidents due to excessive cold (E901)\\\\(E901.1) Accident due to excessive cold of man-made origin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accidents due to excessive cold (E901)\\" + }, + { + "displayName": "(E901.8) Accident due to excessive cold of other specified origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accidents due to excessive cold (E901)\\(E901.8) Accident due to excessive cold of other specified origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accidents due to excessive cold (E901)\\\\(E901.8) Accident due to excessive cold of other specified origin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accidents due to excessive cold (E901)\\" + }, + { + "displayName": "(E901.9) Accident due to excessive cold of unspecified origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accidents due to excessive cold (E901)\\(E901.9) Accident due to excessive cold of unspecified origin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Accidents due to excessive cold (E901)\\\\(E901.9) Accident due to excessive cold of unspecified origin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Accidents due to excessive cold (E901)\\" + }, + { + "displayName": "Hunger, thirst, exposure, and neglect (E904)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Hunger, thirst, exposure, and neglect (E904)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\" + }, + { + "displayName": "(E904.0) Accident due to abandonment or neglect of infants and helpless persons", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Hunger, thirst, exposure, and neglect (E904)\\(E904.0) Accident due to abandonment or neglect of infants and helpless persons\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Hunger, thirst, exposure, and neglect (E904)\\" + }, + { + "displayName": "(E904.1) Accident due to lack of food", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Hunger, thirst, exposure, and neglect (E904)\\(E904.1) Accident due to lack of food\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Hunger, thirst, exposure, and neglect (E904)\\" + }, + { + "displayName": "(E904.2) Accident due to lack of water", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Hunger, thirst, exposure, and neglect (E904)\\(E904.2) Accident due to lack of water\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Hunger, thirst, exposure, and neglect (E904)\\" + }, + { + "displayName": "(E904.3) Accident due to exposure (to weather conditions), not elsewhere classifiable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Hunger, thirst, exposure, and neglect (E904)\\(E904.3) Accident due to exposure (to weather conditions), not elsewhere classifiable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Hunger, thirst, exposure, and neglect (E904)\\\\(E904.3) Accident due to exposure (to weather conditions), not elsewhere classifiable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Hunger, thirst, exposure, and neglect (E904)\\" + }, + { + "displayName": "(E904.9) Accident due to privation, unqualified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Hunger, thirst, exposure, and neglect (E904)\\(E904.9) Accident due to privation, unqualified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Hunger, thirst, exposure, and neglect (E904)\\\\(E904.9) Accident due to privation, unqualified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Hunger, thirst, exposure, and neglect (E904)\\" + }, + { + "displayName": "Other injury caused by animals (E906)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\" + }, + { + "displayName": "(E906.0) Dog bite", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\(E906.0) Dog bite\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\" + }, + { + "displayName": "(E906.1) Rat bite", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\(E906.1) Rat bite\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\" + }, + { + "displayName": "(E906.2) Bite of nonvenomous snakes and lizards", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\(E906.2) Bite of nonvenomous snakes and lizards\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\" + }, + { + "displayName": "(E906.3) Bite of other animal except arthropod", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\(E906.3) Bite of other animal except arthropod\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Other injury caused by animals (E906)\\\\(E906.3) Bite of other animal except arthropod\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\" + }, + { + "displayName": "(E906.4) Bite of nonvenomous arthropod", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\(E906.4) Bite of nonvenomous arthropod\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Accidents due to natural and environmental factors (E900-E909.9)\\\\Other injury caused by animals (E906)\\\\(E906.4) Bite of nonvenomous arthropod\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\" + }, + { + "displayName": "(E906.5) Bite by unspecified animal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\(E906.5) Bite by unspecified animal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\" + }, + { + "displayName": "(E906.8) Other specified injury caused by animal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\(E906.8) Other specified injury caused by animal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\" + }, + { + "displayName": "(E906.9) Unspecified injury caused by animal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\(E906.9) Unspecified injury caused by animal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Other injury caused by animals (E906)\\" + }, + { + "displayName": "Venomous animals and plants as the cause of poisoning and toxic reactions (E905)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\" + }, + { + "displayName": "(E905.0) Venomous snakes and lizards causing poisoning and toxic reactions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\(E905.0) Venomous snakes and lizards causing poisoning and toxic reactions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\" + }, + { + "displayName": "(E905.1) Venomous spiders causing poisoning and toxic reactions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\(E905.1) Venomous spiders causing poisoning and toxic reactions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\" + }, + { + "displayName": "(E905.2) Scorpion sting causing poisoning and toxic reactions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\(E905.2) Scorpion sting causing poisoning and toxic reactions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\" + }, + { + "displayName": "(E905.3) Sting of hornets, wasps, and bees causing poisoning and toxic reactions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\(E905.3) Sting of hornets, wasps, and bees causing poisoning and toxic reactions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\" + }, + { + "displayName": "(E905.4) Centipede and venomous millipede (tropical) bite causing poisoning and toxic reactions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\(E905.4) Centipede and venomous millipede (tropical) bite causing poisoning and toxic reactions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\" + }, + { + "displayName": "(E905.5) Other venomous arthropods causing poisoning and toxic reactions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\(E905.5) Other venomous arthropods causing poisoning and toxic reactions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\" + }, + { + "displayName": "(E905.6) Venomous marine animals and plants causing poisoning and toxic reactions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\(E905.6) Venomous marine animals and plants causing poisoning and toxic reactions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\" + }, + { + "displayName": "(E905.7) Poisoning and toxic reactions caused by other plants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\(E905.7) Poisoning and toxic reactions caused by other plants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\" + }, + { + "displayName": "(E905.8) Poisoning and toxic reactions caused by other specified animals and plants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\(E905.8) Poisoning and toxic reactions caused by other specified animals and plants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\" + }, + { + "displayName": "(E905.9) Poisoning and toxic reactions caused by unspecified animals and plants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\(E905.9) Poisoning and toxic reactions caused by unspecified animals and plants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Accidents due to natural and environmental factors (E900-E909.9)\\Venomous animals and plants as the cause of poisoning and toxic reactions (E905)\\" + }, + { + "displayName": "Activity (E001-E030.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E030) Unspecified activity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\(E030) Unspecified activity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "Activities involving animal care (E019)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving animal care (E019)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E019.0) Activities involving walking an animal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving animal care (E019)\\(E019.0) Activities involving walking an animal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving animal care (E019)\\\\(E019.0) Activities involving walking an animal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving animal care (E019)\\" + }, + { + "displayName": "(E019.9) Other activity involving animal care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving animal care (E019)\\(E019.9) Other activity involving animal care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving animal care (E019)\\" + }, + { + "displayName": "Activities involving climbing, rappelling and jumping off (E004)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving climbing, rappelling and jumping off (E004)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E004.0) Activities involving mountain climbing, rock climbing and wall climbing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving climbing, rappelling and jumping off (E004)\\(E004.0) Activities involving mountain climbing, rock climbing and wall climbing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving climbing, rappelling and jumping off (E004)\\" + }, + { + "displayName": "(E004.9) Other activity involving climbing, rappelling and jumping off", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving climbing, rappelling and jumping off (E004)\\(E004.9) Other activity involving climbing, rappelling and jumping off\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving climbing, rappelling and jumping off (E004)\\" + }, + { + "displayName": "Activities involving dancing and other rhythmic movement (E005)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving dancing and other rhythmic movement (E005)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E005.0) Activities involving dancing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving dancing and other rhythmic movement (E005)\\(E005.0) Activities involving dancing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving dancing and other rhythmic movement (E005)\\" + }, + { + "displayName": "(E005.2) Activities involving gymnastics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving dancing and other rhythmic movement (E005)\\(E005.2) Activities involving gymnastics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving dancing and other rhythmic movement (E005)\\" + }, + { + "displayName": "(E005.3) Activities involving trampoline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving dancing and other rhythmic movement (E005)\\(E005.3) Activities involving trampoline\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving dancing and other rhythmic movement (E005)\\" + }, + { + "displayName": "(E005.4) Activities involving cheerleading", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving dancing and other rhythmic movement (E005)\\(E005.4) Activities involving cheerleading\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving dancing and other rhythmic movement (E005)\\" + }, + { + "displayName": "(E005.9) Other activity involving dancing and other rhythmic movements", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving dancing and other rhythmic movement (E005)\\(E005.9) Other activity involving dancing and other rhythmic movements\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving dancing and other rhythmic movement (E005)\\" + }, + { + "displayName": "Activities involving food preparation, cooking and grilling (E015)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving food preparation, cooking and grilling (E015)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E015.0) Activities involving food preparation and clean up", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving food preparation, cooking and grilling (E015)\\(E015.0) Activities involving food preparation and clean up\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving food preparation, cooking and grilling (E015)\\" + }, + { + "displayName": "(E015.1) Activities involving grilling and smoking food", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving food preparation, cooking and grilling (E015)\\(E015.1) Activities involving grilling and smoking food\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving food preparation, cooking and grilling (E015)\\\\(E015.1) Activities involving grilling and smoking food\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving food preparation, cooking and grilling (E015)\\" + }, + { + "displayName": "(E015.2) Activities involving cooking and baking", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving food preparation, cooking and grilling (E015)\\(E015.2) Activities involving cooking and baking\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving food preparation, cooking and grilling (E015)\\\\(E015.2) Activities involving cooking and baking\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving food preparation, cooking and grilling (E015)\\" + }, + { + "displayName": "(E015.9) Other activity involving cooking and grilling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving food preparation, cooking and grilling (E015)\\(E015.9) Other activity involving cooking and grilling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving food preparation, cooking and grilling (E015)\\\\(E015.9) Other activity involving cooking and grilling\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving food preparation, cooking and grilling (E015)\\" + }, + { + "displayName": "Activities involving ice and snow (E003)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving ice and snow (E003)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving ice and snow (E003)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E003.0) Activities involving ice skating", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving ice and snow (E003)\\(E003.0) Activities involving ice skating\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving ice and snow (E003)\\\\(E003.0) Activities involving ice skating\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving ice and snow (E003)\\" + }, + { + "displayName": "(E003.1) Activities involving ice hockey", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving ice and snow (E003)\\(E003.1) Activities involving ice hockey\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving ice and snow (E003)\\\\(E003.1) Activities involving ice hockey\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving ice and snow (E003)\\" + }, + { + "displayName": "(E003.2) Activities involving snow (alpine) (downhill) skiing, snow boarding, sledding, tobogganing and snow tubing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving ice and snow (E003)\\(E003.2) Activities involving snow (alpine) (downhill) skiing, snow boarding, sledding, tobogganing and snow tubing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving ice and snow (E003)\\\\(E003.2) Activities involving snow (alpine) (downhill) skiing, snow boarding, sledding, tobogganing and snow tubing\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving ice and snow (E003)\\" + }, + { + "displayName": "(E003.9) Other activity involving ice and snow", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving ice and snow (E003)\\(E003.9) Other activity involving ice and snow\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving ice and snow (E003)\\" + }, + { + "displayName": "Activities involving other specified sports and athletics (E008)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving other specified sports and athletics (E008)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E008.0) Activities involving boxing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\(E008.0) Activities involving boxing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving other specified sports and athletics (E008)\\\\(E008.0) Activities involving boxing\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\" + }, + { + "displayName": "(E008.1) Activities involving wrestling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\(E008.1) Activities involving wrestling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving other specified sports and athletics (E008)\\\\(E008.1) Activities involving wrestling\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\" + }, + { + "displayName": "(E008.2) Activities involving racquet and hand sports", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\(E008.2) Activities involving racquet and hand sports\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\" + }, + { + "displayName": "(E008.3) Activities involving frisbee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\(E008.3) Activities involving frisbee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\" + }, + { + "displayName": "(E008.4) Activities involving martial arts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\(E008.4) Activities involving martial arts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\" + }, + { + "displayName": "(E008.9) Other specified sports and athletics activity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\(E008.9) Other specified sports and athletics activity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other specified sports and athletics (E008)\\" + }, + { + "displayName": "Activities involving other sports and athletics played as a team or group (E007)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E007.0) Activities involving american tackle football", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\(E007.0) Activities involving american tackle football\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\" + }, + { + "displayName": "(E007.1) Activities involving american flag or touch football", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\(E007.1) Activities involving american flag or touch football\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\" + }, + { + "displayName": "(E007.2) Activities involving rugby", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\(E007.2) Activities involving rugby\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\" + }, + { + "displayName": "(E007.3) Activities involving baseball", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\(E007.3) Activities involving baseball\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\" + }, + { + "displayName": "(E007.4) Activities involving lacrosse and field hockey", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\(E007.4) Activities involving lacrosse and field hockey\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\" + }, + { + "displayName": "(E007.5) Activities involving soccer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\(E007.5) Activities involving soccer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\" + }, + { + "displayName": "(E007.6) Activities involving basketball", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\(E007.6) Activities involving basketball\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\" + }, + { + "displayName": "(E007.7) Activities involving volleyball (beach) (court)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\(E007.7) Activities involving volleyball (beach) (court)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\" + }, + { + "displayName": "(E007.8) Activities involving physical games generally associated with school recess, summer camp and children", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\(E007.8) Activities involving physical games generally associated with school recess, summer camp and children\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\" + }, + { + "displayName": "(E007.9) Other activity involving other sports and athletes played as a team or group", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\(E007.9) Other activity involving other sports and athletes played as a team or group\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played as a team or group (E007)\\" + }, + { + "displayName": "Activities involving other sports and athletics played individually (E006)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E006.0) Activities involving roller skating (inline) and skateboarding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\(E006.0) Activities involving roller skating (inline) and skateboarding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\" + }, + { + "displayName": "(E006.1) Activities involving horseback riding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\(E006.1) Activities involving horseback riding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\" + }, + { + "displayName": "(E006.2) Activities involving golf", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\(E006.2) Activities involving golf\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving other sports and athletics played individually (E006)\\\\(E006.2) Activities involving golf\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\" + }, + { + "displayName": "(E006.3) Activities involving bowling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\(E006.3) Activities involving bowling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving other sports and athletics played individually (E006)\\\\(E006.3) Activities involving bowling\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\" + }, + { + "displayName": "(E006.4) Activities involving bike riding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\(E006.4) Activities involving bike riding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving other sports and athletics played individually (E006)\\\\(E006.4) Activities involving bike riding\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\" + }, + { + "displayName": "(E006.9) Other activity involving other sports and athletics played individually", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\(E006.9) Other activity involving other sports and athletics played individually\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving other sports and athletics played individually (E006)\\\\(E006.9) Other activity involving other sports and athletics played individually\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving other sports and athletics played individually (E006)\\" + }, + { + "displayName": "Activities involving person providing caregiving (E014)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving person providing caregiving (E014)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E014.1) Caregiving involving lifting", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving person providing caregiving (E014)\\(E014.1) Caregiving involving lifting\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving person providing caregiving (E014)\\\\(E014.1) Caregiving involving lifting\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving person providing caregiving (E014)\\" + }, + { + "displayName": "(E014.9) Other activity involving person providing caregiving", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving person providing caregiving (E014)\\(E014.9) Other activity involving person providing caregiving\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving person providing caregiving (E014)\\\\(E014.9) Other activity involving person providing caregiving\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving person providing caregiving (E014)\\" + }, + { + "displayName": "Activities involving personal hygiene and household maintenance (E013)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving personal hygiene and household maintenance (E013)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E013.0) Activities involving personal bathing and showering", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving personal hygiene and household maintenance (E013)\\(E013.0) Activities involving personal bathing and showering\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving personal hygiene and household maintenance (E013)\\" + }, + { + "displayName": "(E013.4) Activities involving floor mopping and cleaning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving personal hygiene and household maintenance (E013)\\(E013.4) Activities involving floor mopping and cleaning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving personal hygiene and household maintenance (E013)\\" + }, + { + "displayName": "(E013.5) Activities involving residential relocation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving personal hygiene and household maintenance (E013)\\(E013.5) Activities involving residential relocation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving personal hygiene and household maintenance (E013)\\" + }, + { + "displayName": "(E013.8) Other personal hygiene activity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving personal hygiene and household maintenance (E013)\\(E013.8) Other personal hygiene activity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving personal hygiene and household maintenance (E013)\\" + }, + { + "displayName": "(E013.9) Other household maintenance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving personal hygiene and household maintenance (E013)\\(E013.9) Other household maintenance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving personal hygiene and household maintenance (E013)\\" + }, + { + "displayName": "Activities involving property and land maintenance, building and construction (E016)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving property and land maintenance, building and construction (E016)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E016.0) Activities involving digging, shoveling and raking", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving property and land maintenance, building and construction (E016)\\(E016.0) Activities involving digging, shoveling and raking\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving property and land maintenance, building and construction (E016)\\" + }, + { + "displayName": "(E016.1) Activities involving gardening and landscaping", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving property and land maintenance, building and construction (E016)\\(E016.1) Activities involving gardening and landscaping\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving property and land maintenance, building and construction (E016)\\" + }, + { + "displayName": "(E016.2) Activities involving building and construction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving property and land maintenance, building and construction (E016)\\(E016.2) Activities involving building and construction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving property and land maintenance, building and construction (E016)\\\\(E016.2) Activities involving building and construction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving property and land maintenance, building and construction (E016)\\" + }, + { + "displayName": "(E016.9) Other activity involving property and land maintenance, building and construction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving property and land maintenance, building and construction (E016)\\(E016.9) Other activity involving property and land maintenance, building and construction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving property and land maintenance, building and construction (E016)\\\\(E016.9) Other activity involving property and land maintenance, building and construction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving property and land maintenance, building and construction (E016)\\" + }, + { + "displayName": "Activities involving roller coasters and other types of external motion (E017)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving roller coasters and other types of external motion (E017)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving roller coasters and other types of external motion (E017)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E017.9) Other activity involving external motion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving roller coasters and other types of external motion (E017)\\(E017.9) Other activity involving external motion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving roller coasters and other types of external motion (E017)\\" + }, + { + "displayName": "Activities involving walking and running (E001)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving walking and running (E001)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E001.0) Activities involving walking, marching and hiking", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving walking and running (E001)\\(E001.0) Activities involving walking, marching and hiking\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving walking and running (E001)\\" + }, + { + "displayName": "(E001.1) Activities involving running", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving walking and running (E001)\\(E001.1) Activities involving running\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving walking and running (E001)\\" + }, + { + "displayName": "Activities involving water and water craft (E002)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving water and water craft (E002)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E002.0) Activities involving swimming", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving water and water craft (E002)\\(E002.0) Activities involving swimming\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activities involving water and water craft (E002)\\\\(E002.0) Activities involving swimming\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving water and water craft (E002)\\" + }, + { + "displayName": "(E002.5) Activities involving rowing, canoeing, kayaking, rafting and tubing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving water and water craft (E002)\\(E002.5) Activities involving rowing, canoeing, kayaking, rafting and tubing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving water and water craft (E002)\\" + }, + { + "displayName": "(E002.6) Activities involving water skiing and wake boarding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving water and water craft (E002)\\(E002.6) Activities involving water skiing and wake boarding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving water and water craft (E002)\\" + }, + { + "displayName": "(E002.7) Activities involving surfing, windsurfing and boogie boarding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving water and water craft (E002)\\(E002.7) Activities involving surfing, windsurfing and boogie boarding\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving water and water craft (E002)\\" + }, + { + "displayName": "(E002.9) Other activity involving water and watercraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving water and water craft (E002)\\(E002.9) Other activity involving water and watercraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activities involving water and water craft (E002)\\" + }, + { + "displayName": "Activity involving other cardiorespiratory exercise (E009)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activity involving other cardiorespiratory exercise (E009)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E009.0) Activity involving exercise machines primarily for cardiorespiratory conditioning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activity involving other cardiorespiratory exercise (E009)\\(E009.0) Activity involving exercise machines primarily for cardiorespiratory conditioning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activity involving other cardiorespiratory exercise (E009)\\" + }, + { + "displayName": "Activity involving other muscle strengthening exercises (E010)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activity involving other muscle strengthening exercises (E010)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E010.2) Activity involving free weights", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activity involving other muscle strengthening exercises (E010)\\(E010.2) Activity involving free weights\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activity involving other muscle strengthening exercises (E010)\\\\(E010.2) Activity involving free weights\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activity involving other muscle strengthening exercises (E010)\\" + }, + { + "displayName": "(E010.9) Other activity involving other muscle strengthening exercises", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activity involving other muscle strengthening exercises (E010)\\(E010.9) Other activity involving other muscle strengthening exercises\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Activity involving other muscle strengthening exercises (E010)\\\\(E010.9) Other activity involving other muscle strengthening exercises\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Activity involving other muscle strengthening exercises (E010)\\" + }, + { + "displayName": "Other activity (E029)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Other activity (E029)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\" + }, + { + "displayName": "(E029.1) Spectator at an event", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Other activity (E029)\\(E029.1) Spectator at an event\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Other activity (E029)\\\\(E029.1) Spectator at an event\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Other activity (E029)\\" + }, + { + "displayName": "(E029.2) Rough housing and horseplay", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Other activity (E029)\\(E029.2) Rough housing and horseplay\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Other activity (E029)\\" + }, + { + "displayName": "(E029.9) Other activity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Other activity (E029)\\(E029.9) Other activity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Activity (E001-E030.9)\\\\Other activity (E029)\\\\(E029.9) Other activity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Activity (E001-E030.9)\\Other activity (E029)\\" + }, + { + "displayName": "Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E945.0) Oxytocic agents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\(E945.0) Oxytocic agents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\\\(E945.0) Oxytocic agents causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\" + }, + { + "displayName": "(E945.1) Smooth muscle relaxants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\(E945.1) Smooth muscle relaxants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\\\(E945.1) Smooth muscle relaxants causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\" + }, + { + "displayName": "(E945.2) Skeletal muscle relaxants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\(E945.2) Skeletal muscle relaxants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\" + }, + { + "displayName": "(E945.3) Other and unspecified drugs acting on muscles causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\(E945.3) Other and unspecified drugs acting on muscles causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\" + }, + { + "displayName": "(E945.4) Antitussives causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\(E945.4) Antitussives causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\" + }, + { + "displayName": "(E945.5) Expectorants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\(E945.5) Expectorants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\" + }, + { + "displayName": "(E945.6) Anti-common cold drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\(E945.6) Anti-common cold drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\" + }, + { + "displayName": "(E945.7) Antiasthmatics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\(E945.7) Antiasthmatics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\" + }, + { + "displayName": "(E945.8) Other and unspecified respiratory drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\(E945.8) Other and unspecified respiratory drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily acting on the smooth and skeletal muscles and respiratory system causing adverse effects in therapeutic use (E945)\\" + }, + { + "displayName": "Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E934.0) Iron and its compounds causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\(E934.0) Iron and its compounds causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\" + }, + { + "displayName": "(E934.1) Liver preparations and other antianemic agents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\(E934.1) Liver preparations and other antianemic agents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\" + }, + { + "displayName": "(E934.2) Anticoagulants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\(E934.2) Anticoagulants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\" + }, + { + "displayName": "(E934.3) Vitamin k [phytonadione] causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\(E934.3) Vitamin k [phytonadione] causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\" + }, + { + "displayName": "(E934.4) Fibrinolysis-affecting drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\(E934.4) Fibrinolysis-affecting drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\\\(E934.4) Fibrinolysis-affecting drugs causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\" + }, + { + "displayName": "(E934.5) Anticoagulant antagonists and other coagulants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\(E934.5) Anticoagulant antagonists and other coagulants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\\\(E934.5) Anticoagulant antagonists and other coagulants causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\" + }, + { + "displayName": "(E934.6) Gamma globulin causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\(E934.6) Gamma globulin causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\\\(E934.6) Gamma globulin causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\" + }, + { + "displayName": "(E934.7) Natural blood and blood products causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\(E934.7) Natural blood and blood products causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\" + }, + { + "displayName": "(E934.8) Other agents affecting blood constituents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\(E934.8) Other agents affecting blood constituents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\\\(E934.8) Other agents affecting blood constituents causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\" + }, + { + "displayName": "(E934.9) Unspecified agent affecting blood constituents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\(E934.9) Unspecified agent affecting blood constituents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting blood constituents causing adverse effects in therapeutic use (E934)\\" + }, + { + "displayName": "Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E943.0) Antacids and antigastric secretion drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\(E943.0) Antacids and antigastric secretion drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\" + }, + { + "displayName": "(E943.1) Irritant cathartics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\(E943.1) Irritant cathartics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\" + }, + { + "displayName": "(E943.2) Emollient cathartics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\(E943.2) Emollient cathartics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\" + }, + { + "displayName": "(E943.3) Other cathartics, including intestinal atonia drugs, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\(E943.3) Other cathartics, including intestinal atonia drugs, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\" + }, + { + "displayName": "(E943.4) Digestants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\(E943.4) Digestants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\" + }, + { + "displayName": "(E943.5) Antidiarrheal drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\(E943.5) Antidiarrheal drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\" + }, + { + "displayName": "(E943.6) Emetics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\(E943.6) Emetics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\" + }, + { + "displayName": "(E943.8) Other specified agents primarily affecting the gastro-intestinal system causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\(E943.8) Other specified agents primarily affecting the gastro-intestinal system causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\" + }, + { + "displayName": "(E943.9) Unspecified agent primarily affecting the gastrointestinal system causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\(E943.9) Unspecified agent primarily affecting the gastrointestinal system causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\\\(E943.9) Unspecified agent primarily affecting the gastrointestinal system causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting gastrointestinal system causing adverse effects in therapeutic use (E943)\\" + }, + { + "displayName": "Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E946.0) Local anti-infectives and anti-inflammatory drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\(E946.0) Local anti-infectives and anti-inflammatory drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\\\(E946.0) Local anti-infectives and anti-inflammatory drugs causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\" + }, + { + "displayName": "(E946.1) Antipruritics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\(E946.1) Antipruritics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\\\(E946.1) Antipruritics causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\" + }, + { + "displayName": "(E946.2) Local astringents and local detergents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\(E946.2) Local astringents and local detergents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\\\(E946.2) Local astringents and local detergents causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\" + }, + { + "displayName": "(E946.3) Emollients, demulcents, and protectants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\(E946.3) Emollients, demulcents, and protectants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\\\(E946.3) Emollients, demulcents, and protectants causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\" + }, + { + "displayName": "(E946.4) Keratolytics, keratoplastics, other hair treatment drugs and preparations causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\(E946.4) Keratolytics, keratoplastics, other hair treatment drugs and preparations causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\\\(E946.4) Keratolytics, keratoplastics, other hair treatment drugs and preparations causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\" + }, + { + "displayName": "(E946.5) Eye anti-infectives and other eye drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\(E946.5) Eye anti-infectives and other eye drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\" + }, + { + "displayName": "(E946.6) Anti-infectives and other drugs and preparations for ear, nose, and throat causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\(E946.6) Anti-infectives and other drugs and preparations for ear, nose, and throat causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\" + }, + { + "displayName": "(E946.7) Dental drugs topically applied causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\(E946.7) Dental drugs topically applied causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\" + }, + { + "displayName": "(E946.8) Other agents primarily affecting skin and mucous membrane causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\(E946.8) Other agents primarily affecting skin and mucous membrane causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\" + }, + { + "displayName": "(E946.9) Unspecified agent primarily affecting skin and mucous membrane causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\(E946.9) Unspecified agent primarily affecting skin and mucous membrane causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting skin and mucous membrane, ophthalmological, otorhinolaryngological, and dental drugs causing adverse effects in therapeutic use (E946)\\" + }, + { + "displayName": "Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E942.0) Cardiac rhythm regulators causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\(E942.0) Cardiac rhythm regulators causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\" + }, + { + "displayName": "(E942.1) Cardiotonic glycosides and drugs of similar action causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\(E942.1) Cardiotonic glycosides and drugs of similar action causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\" + }, + { + "displayName": "(E942.2) Antilipemic and antiarteriosclerotic drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\(E942.2) Antilipemic and antiarteriosclerotic drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\" + }, + { + "displayName": "(E942.3) Ganglion-blocking agents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\(E942.3) Ganglion-blocking agents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\" + }, + { + "displayName": "(E942.4) Coronary vasodilators causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\(E942.4) Coronary vasodilators causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\" + }, + { + "displayName": "(E942.5) Other vasodilators causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\(E942.5) Other vasodilators causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\" + }, + { + "displayName": "(E942.6) Other antihypertensive agents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\(E942.6) Other antihypertensive agents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\\\(E942.6) Other antihypertensive agents causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\" + }, + { + "displayName": "(E942.7) Antivaricose drugs, including sclerosing agents, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\(E942.7) Antivaricose drugs, including sclerosing agents, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\\\(E942.7) Antivaricose drugs, including sclerosing agents, causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\" + }, + { + "displayName": "(E942.8) Capillary-active drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\(E942.8) Capillary-active drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\\\(E942.8) Capillary-active drugs causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\" + }, + { + "displayName": "(E942.9) Other and unspecified agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\(E942.9) Other and unspecified agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Agents primarily affecting the cardiovascular system causing adverse effects in therapeutic use (E942)\\" + }, + { + "displayName": "Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E935.0) Heroin causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\(E935.0) Heroin causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\" + }, + { + "displayName": "(E935.1) Methadone causing averse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\(E935.1) Methadone causing averse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\" + }, + { + "displayName": "(E935.2) Other opiates and related narcotics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\(E935.2) Other opiates and related narcotics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\" + }, + { + "displayName": "(E935.3) Salicylates causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\(E935.3) Salicylates causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\" + }, + { + "displayName": "(E935.4) Aromatic analgesics, not elsewhere classified, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\(E935.4) Aromatic analgesics, not elsewhere classified, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\" + }, + { + "displayName": "(E935.5) Pyrazole derivatives causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\(E935.5) Pyrazole derivatives causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\" + }, + { + "displayName": "(E935.6) Antirheumatics [antiphlogistics] causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\(E935.6) Antirheumatics [antiphlogistics] causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\" + }, + { + "displayName": "(E935.7) Other non-narcotic analgesics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\(E935.7) Other non-narcotic analgesics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\" + }, + { + "displayName": "(E935.8) Other specified analgesics and antipyretics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\(E935.8) Other specified analgesics and antipyretics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\" + }, + { + "displayName": "(E935.9) Unspecified analgesic and antipyretic causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\(E935.9) Unspecified analgesic and antipyretic causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Analgesics, antipyretics, and antirheumatics causing adverse effects in therapeutic use (E935)\\" + }, + { + "displayName": "Antibiotics causing adverse effects in therapeutic use (E930)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E930.0) Penicillins causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\(E930.0) Penicillins causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\" + }, + { + "displayName": "(E930.1) Antifungal antibiotics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\(E930.1) Antifungal antibiotics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\" + }, + { + "displayName": "(E930.2) Chloramphenicol group causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\(E930.2) Chloramphenicol group causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\" + }, + { + "displayName": "(E930.3) Erythromycin and other macrolides causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\(E930.3) Erythromycin and other macrolides causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\" + }, + { + "displayName": "(E930.4) Tetracycline group causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\(E930.4) Tetracycline group causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\" + }, + { + "displayName": "(E930.5) Cephalosporin group causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\(E930.5) Cephalosporin group causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\" + }, + { + "displayName": "(E930.6) Antimycobacterial antibiotics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\(E930.6) Antimycobacterial antibiotics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\" + }, + { + "displayName": "(E930.7) Antineoplastic antibiotics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\(E930.7) Antineoplastic antibiotics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\" + }, + { + "displayName": "(E930.8) Other specified antibiotics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\(E930.8) Other specified antibiotics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\" + }, + { + "displayName": "(E930.9) Unspecified antibiotic causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\(E930.9) Unspecified antibiotic causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Antibiotics causing adverse effects in therapeutic use (E930)\\" + }, + { + "displayName": "Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E936.0) Oxazolidine derivatives causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\(E936.0) Oxazolidine derivatives causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\" + }, + { + "displayName": "(E936.1) Hydantoin derivatives causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\(E936.1) Hydantoin derivatives causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\" + }, + { + "displayName": "(E936.2) Succinimides causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\(E936.2) Succinimides causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\\\(E936.2) Succinimides causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\" + }, + { + "displayName": "(E936.3) Other and unspecified anticonvulsants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\(E936.3) Other and unspecified anticonvulsants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\\\(E936.3) Other and unspecified anticonvulsants causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\" + }, + { + "displayName": "(E936.4) Anti-parkinsonism drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\(E936.4) Anti-parkinsonism drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\\\(E936.4) Anti-parkinsonism drugs causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Anticonvulsants and anti-Parkinsonism drugs causing adverse effects in therapeutic use (E936)\\" + }, + { + "displayName": "Bacterial vaccines causing adverse effects in therapeutic use (E948)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E948.0) Bcg vaccine causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\(E948.0) Bcg vaccine causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\" + }, + { + "displayName": "(E948.1) Typhoid and paratyphoid vaccines causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\(E948.1) Typhoid and paratyphoid vaccines causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\" + }, + { + "displayName": "(E948.2) Cholera vaccine causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\(E948.2) Cholera vaccine causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\" + }, + { + "displayName": "(E948.3) Plague vaccine causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\(E948.3) Plague vaccine causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\" + }, + { + "displayName": "(E948.4) Tetanus vaccine causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\(E948.4) Tetanus vaccine causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\" + }, + { + "displayName": "(E948.5) Diphtheria vaccine causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\(E948.5) Diphtheria vaccine causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\" + }, + { + "displayName": "(E948.6) Pertussis vaccine, including combinations with a pertussis component, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\(E948.6) Pertussis vaccine, including combinations with a pertussis component, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\" + }, + { + "displayName": "(E948.8) Other and unspecified bacterial vaccines causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\(E948.8) Other and unspecified bacterial vaccines causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\" + }, + { + "displayName": "(E948.9) Mixed bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\(E948.9) Mixed bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Bacterial vaccines causing adverse effects in therapeutic use (E948)\\" + }, + { + "displayName": "Central nervous system stimulants causing adverse effects in therapeutic use (E940)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E940.0) Analeptics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\\(E940.0) Analeptics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\\" + }, + { + "displayName": "(E940.1) Opiate antagonists causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\\(E940.1) Opiate antagonists causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\\" + }, + { + "displayName": "(E940.8) Other specified central nervous system stimulants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\\(E940.8) Other specified central nervous system stimulants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\\" + }, + { + "displayName": "(E940.9) Unspecified central nervous system stimulant causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\\(E940.9) Unspecified central nervous system stimulant causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Central nervous system stimulants causing adverse effects in therapeutic use (E940)\\" + }, + { + "displayName": "Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E941.0) Parasympathomimetics [cholinergics] causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\(E941.0) Parasympathomimetics [cholinergics] causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\" + }, + { + "displayName": "(E941.1) Parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\(E941.1) Parasympatholytics [anticholinergics and antimuscarinics] and spasmolytics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\" + }, + { + "displayName": "(E941.2) Sympathomimetics [adrenergics] causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\(E941.2) Sympathomimetics [adrenergics] causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\" + }, + { + "displayName": "(E941.3) Sympatholytics [antiadrenergics] causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\(E941.3) Sympatholytics [antiadrenergics] causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\\\(E941.3) Sympatholytics [antiadrenergics] causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\" + }, + { + "displayName": "(E941.9) Unspecified drug primarily affecting the autonomic nervous system causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\(E941.9) Unspecified drug primarily affecting the autonomic nervous system causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\\\(E941.9) Unspecified drug primarily affecting the autonomic nervous system causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Drugs primarily affecting the autonomic nervous system causing adverse effects in therapeutic use (E941)\\" + }, + { + "displayName": "Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E932.0) Adrenal cortical steroids causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\(E932.0) Adrenal cortical steroids causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\\\(E932.0) Adrenal cortical steroids causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\" + }, + { + "displayName": "(E932.1) Androgens and anabolic congeners causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\(E932.1) Androgens and anabolic congeners causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\" + }, + { + "displayName": "(E932.2) Ovarian hormones and synthetic substitutes causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\(E932.2) Ovarian hormones and synthetic substitutes causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\\\(E932.2) Ovarian hormones and synthetic substitutes causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\" + }, + { + "displayName": "(E932.3) Insulins and antidiabetic agents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\(E932.3) Insulins and antidiabetic agents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\\\(E932.3) Insulins and antidiabetic agents causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\" + }, + { + "displayName": "(E932.4) Anterior pituitary hormones causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\(E932.4) Anterior pituitary hormones causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\" + }, + { + "displayName": "(E932.5) Posterior pituitary hormones causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\(E932.5) Posterior pituitary hormones causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\" + }, + { + "displayName": "(E932.6) Parathyroid and parathyroid derivatives causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\(E932.6) Parathyroid and parathyroid derivatives causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\\\(E932.6) Parathyroid and parathyroid derivatives causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\" + }, + { + "displayName": "(E932.7) Thyroid and thyroid derivatives causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\(E932.7) Thyroid and thyroid derivatives causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\\\(E932.7) Thyroid and thyroid derivatives causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\" + }, + { + "displayName": "(E932.8) Antithyroid agents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\(E932.8) Antithyroid agents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\\\(E932.8) Antithyroid agents causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\" + }, + { + "displayName": "(E932.9) Other and unspecified hormones and synthetic substitutes causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\(E932.9) Other and unspecified hormones and synthetic substitutes causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\\\(E932.9) Other and unspecified hormones and synthetic substitutes causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Hormones and synthetic substitutes causing adverse effects in therapeutic use (E932)\\" + }, + { + "displayName": "Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E947.0) Dietetics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\(E947.0) Dietetics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\" + }, + { + "displayName": "(E947.1) Lipotropic drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\(E947.1) Lipotropic drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\" + }, + { + "displayName": "(E947.2) Antidotes and chelating agents, not elsewhere classified, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\(E947.2) Antidotes and chelating agents, not elsewhere classified, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\" + }, + { + "displayName": "(E947.3) Alcohol deterrents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\(E947.3) Alcohol deterrents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\" + }, + { + "displayName": "(E947.4) Pharmaceutical excipients causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\(E947.4) Pharmaceutical excipients causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\" + }, + { + "displayName": "(E947.8) Other drugs and medicinal substances causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\(E947.8) Other drugs and medicinal substances causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\" + }, + { + "displayName": "(E947.9) Unspecified drug or medicinal substance causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\(E947.9) Unspecified drug or medicinal substance causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\\\(E947.9) Unspecified drug or medicinal substance causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other and unspecified drugs and medicinal substances causing adverse effects in therapeutic use (E947)\\" + }, + { + "displayName": "Other anti-infectives causing adverse effects in therapeutic use (E931)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E931.0) Sulfonamides causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\(E931.0) Sulfonamides causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\" + }, + { + "displayName": "(E931.1) Arsenical anti-infectives causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\(E931.1) Arsenical anti-infectives causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\" + }, + { + "displayName": "(E931.2) Heavy metal anti-infectives causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\(E931.2) Heavy metal anti-infectives causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\" + }, + { + "displayName": "(E931.3) Quinoline and hydroxyquinoline derivatives causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\(E931.3) Quinoline and hydroxyquinoline derivatives causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\\\(E931.3) Quinoline and hydroxyquinoline derivatives causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\" + }, + { + "displayName": "(E931.4) Antimalarials and drugs acting on other blood protozoa causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\(E931.4) Antimalarials and drugs acting on other blood protozoa causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\\\(E931.4) Antimalarials and drugs acting on other blood protozoa causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\" + }, + { + "displayName": "(E931.5) Other antiprotozoal drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\(E931.5) Other antiprotozoal drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\\\(E931.5) Other antiprotozoal drugs causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\" + }, + { + "displayName": "(E931.6) Anthelmintics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\(E931.6) Anthelmintics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\" + }, + { + "displayName": "(E931.7) Antiviral drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\(E931.7) Antiviral drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\" + }, + { + "displayName": "(E931.8) Other antimycobacterial drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\(E931.8) Other antimycobacterial drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\" + }, + { + "displayName": "(E931.9) Other and unspecified anti-infectives causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\(E931.9) Other and unspecified anti-infectives causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other anti-infectives causing adverse effects in therapeutic use (E931)\\" + }, + { + "displayName": "Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E938.0) Central nervous system muscle-tone depressants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\(E938.0) Central nervous system muscle-tone depressants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\" + }, + { + "displayName": "(E938.1) Halothane causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\(E938.1) Halothane causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\" + }, + { + "displayName": "(E938.2) Other gaseous anesthetics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\(E938.2) Other gaseous anesthetics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\" + }, + { + "displayName": "(E938.3) Intravenous anesthetics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\(E938.3) Intravenous anesthetics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\" + }, + { + "displayName": "(E938.4) Other and unspecified general anesthetics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\(E938.4) Other and unspecified general anesthetics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\" + }, + { + "displayName": "(E938.5) Surface and infiltration anesthetics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\(E938.5) Surface and infiltration anesthetics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\" + }, + { + "displayName": "(E938.6) Peripheral nerve- and plexus-blocking anesthetics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\(E938.6) Peripheral nerve- and plexus-blocking anesthetics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\" + }, + { + "displayName": "(E938.7) Spinal anesthetics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\(E938.7) Spinal anesthetics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\" + }, + { + "displayName": "(E938.9) Other and unspecified local anesthetics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\(E938.9) Other and unspecified local anesthetics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other central nervous system depressants and anesthetics causing adverse effects in therapeutic use (E938)\\" + }, + { + "displayName": "Other vaccines and biological substances causing adverse effects in therapeutic use (E949)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E949.0) Smallpox vaccine causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\(E949.0) Smallpox vaccine causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\" + }, + { + "displayName": "(E949.1) Rabies vaccine causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\(E949.1) Rabies vaccine causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\" + }, + { + "displayName": "(E949.2) Typhus vaccine causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\(E949.2) Typhus vaccine causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\" + }, + { + "displayName": "(E949.3) Yellow fever vaccine causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\(E949.3) Yellow fever vaccine causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\" + }, + { + "displayName": "(E949.4) Measles vaccine causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\(E949.4) Measles vaccine causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\" + }, + { + "displayName": "(E949.5) Poliomyelitis vaccine causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\(E949.5) Poliomyelitis vaccine causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\" + }, + { + "displayName": "(E949.6) Other and unspecified viral and rickettsial vaccines causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\(E949.6) Other and unspecified viral and rickettsial vaccines causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\" + }, + { + "displayName": "(E949.7) Mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\(E949.7) Mixed viral-rickettsial and bacterial vaccines, except combinations with a pertussis component, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\" + }, + { + "displayName": "(E949.9) Other and unspecified vaccines and biological substances causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\(E949.9) Other and unspecified vaccines and biological substances causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Other vaccines and biological substances causing adverse effects in therapeutic use (E949)\\" + }, + { + "displayName": "Primarily systemic agents causing adverse effects in therapeutic use (E933)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E933.0) Antiallergic and antiemetic drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\(E933.0) Antiallergic and antiemetic drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\" + }, + { + "displayName": "(E933.1) Antineoplastic and immunosuppressive drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\(E933.1) Antineoplastic and immunosuppressive drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\\\(E933.1) Antineoplastic and immunosuppressive drugs causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\" + }, + { + "displayName": "(E933.2) Acidifying agents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\(E933.2) Acidifying agents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\\\(E933.2) Acidifying agents causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\" + }, + { + "displayName": "(E933.3) Alkalizing agents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\(E933.3) Alkalizing agents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\\\(E933.3) Alkalizing agents causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\" + }, + { + "displayName": "(E933.4) Enzymes, not elsewhere classified, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\(E933.4) Enzymes, not elsewhere classified, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\" + }, + { + "displayName": "(E933.5) Vitamins, not elsewhere classified, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\(E933.5) Vitamins, not elsewhere classified, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\" + }, + { + "displayName": "(E933.6) Oral bisphosphonates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\(E933.6) Oral bisphosphonates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\" + }, + { + "displayName": "(E933.7) Intravenous bisphosphonates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\(E933.7) Intravenous bisphosphonates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\" + }, + { + "displayName": "(E933.8) Other systemic agents, not elsewhere classified, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\(E933.8) Other systemic agents, not elsewhere classified, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\" + }, + { + "displayName": "(E933.9) Unspecified systemic agent causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\(E933.9) Unspecified systemic agent causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Primarily systemic agents causing adverse effects in therapeutic use (E933)\\" + }, + { + "displayName": "Psychotropic agents causing adverse effects in therapeutic use (E939)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E939.0) Antidepressants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\(E939.0) Antidepressants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\\\(E939.0) Antidepressants causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\" + }, + { + "displayName": "(E939.1) Phenothiazine-based tranquilizers causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\(E939.1) Phenothiazine-based tranquilizers causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\\\(E939.1) Phenothiazine-based tranquilizers causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\" + }, + { + "displayName": "(E939.2) Butyrophenone-based tranquilizers causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\(E939.2) Butyrophenone-based tranquilizers causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\" + }, + { + "displayName": "(E939.3) Other antipsychotics, neuroleptics, and major tranquilizers causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\(E939.3) Other antipsychotics, neuroleptics, and major tranquilizers causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\" + }, + { + "displayName": "(E939.4) Benzodiazepine-based tranquilizers causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\(E939.4) Benzodiazepine-based tranquilizers causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\" + }, + { + "displayName": "(E939.5) Other tranquilizers causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\(E939.5) Other tranquilizers causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\" + }, + { + "displayName": "(E939.6) Psychodysleptics [hallucinogens] causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\(E939.6) Psychodysleptics [hallucinogens] causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\" + }, + { + "displayName": "(E939.7) Psychostimulants causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\(E939.7) Psychostimulants causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\" + }, + { + "displayName": "(E939.8) Other psychotropic agents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\(E939.8) Other psychotropic agents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\" + }, + { + "displayName": "(E939.9) Unspecified psychotropic agent causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\(E939.9) Unspecified psychotropic agent causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Psychotropic agents causing adverse effects in therapeutic use (E939)\\" + }, + { + "displayName": "Sedatives and hypnotics causing adverse effects in therapeutic use (E937)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E937.0) Barbiturates causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\(E937.0) Barbiturates causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\" + }, + { + "displayName": "(E937.1) Chloral hydrate group causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\(E937.1) Chloral hydrate group causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\" + }, + { + "displayName": "(E937.2) Paraldehyde causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\(E937.2) Paraldehyde causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\" + }, + { + "displayName": "(E937.3) Bromine compounds causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\(E937.3) Bromine compounds causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\" + }, + { + "displayName": "(E937.4) Methaqualone compounds causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\(E937.4) Methaqualone compounds causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\" + }, + { + "displayName": "(E937.5) Glutethimide group causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\(E937.5) Glutethimide group causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\" + }, + { + "displayName": "(E937.6) Mixed sedatives, not elsewhere classified, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\(E937.6) Mixed sedatives, not elsewhere classified, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\" + }, + { + "displayName": "(E937.8) Other sedatives and hypnotics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\(E937.8) Other sedatives and hypnotics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\" + }, + { + "displayName": "(E937.9) Unspecified sedatives and hypnotics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\(E937.9) Unspecified sedatives and hypnotics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Sedatives and hypnotics causing adverse effects in therapeutic use (E937)\\" + }, + { + "displayName": "Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\" + }, + { + "displayName": "(E944.0) Mercurial diuretics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\(E944.0) Mercurial diuretics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\" + }, + { + "displayName": "(E944.1) Purine derivative diuretics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\(E944.1) Purine derivative diuretics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\" + }, + { + "displayName": "(E944.2) Carbonic acid anhydrase inhibitors causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\(E944.2) Carbonic acid anhydrase inhibitors causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\" + }, + { + "displayName": "(E944.3) Saluretics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\(E944.3) Saluretics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\" + }, + { + "displayName": "(E944.4) Other diuretics causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\(E944.4) Other diuretics causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\" + }, + { + "displayName": "(E944.5) Electrolytic, caloric, and water-balance agents causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\(E944.5) Electrolytic, caloric, and water-balance agents causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\" + }, + { + "displayName": "(E944.6) Other mineral salts, not elsewhere classified, causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\(E944.6) Other mineral salts, not elsewhere classified, causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\\\(E944.6) Other mineral salts, not elsewhere classified, causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\" + }, + { + "displayName": "(E944.7) Uric acid metabolism drugs causing adverse effects in therapeutic use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\(E944.7) Uric acid metabolism drugs causing adverse effects in therapeutic use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\\\(E944.7) Uric acid metabolism drugs causing adverse effects in therapeutic use\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Drugs, medicinal and biological substances causing adverse effects in therapeutic use (E930-E949.9)\\Water, mineral, and uric acid metabolism drugs causing adverse effects in therapeutic use (E944)\\" + }, + { + "displayName": "External cause status (E000-E000.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\External cause status (E000-E000.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\External cause status (E000-E000.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "External cause status (E000)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\External cause status (E000-E000.9)\\External cause status (E000)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\External cause status (E000-E000.9)\\\\External cause status (E000)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\External cause status (E000-E000.9)\\" + }, + { + "displayName": "(E000.0) Civilian activity done for income or pay", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\External cause status (E000-E000.9)\\External cause status (E000)\\(E000.0) Civilian activity done for income or pay\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\External cause status (E000-E000.9)\\\\External cause status (E000)\\\\(E000.0) Civilian activity done for income or pay\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\External cause status (E000-E000.9)\\External cause status (E000)\\" + }, + { + "displayName": "(E000.2) Volunteer activity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\External cause status (E000-E000.9)\\External cause status (E000)\\(E000.2) Volunteer activity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\External cause status (E000-E000.9)\\\\External cause status (E000)\\\\(E000.2) Volunteer activity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\External cause status (E000-E000.9)\\External cause status (E000)\\" + }, + { + "displayName": "(E000.8) Other external cause status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\External cause status (E000-E000.9)\\External cause status (E000)\\(E000.8) Other external cause status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\External cause status (E000-E000.9)\\\\External cause status (E000)\\\\(E000.8) Other external cause status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\External cause status (E000-E000.9)\\External cause status (E000)\\" + }, + { + "displayName": "(E000.9) Unspecified external cause status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\External cause status (E000-E000.9)\\External cause status (E000)\\(E000.9) Unspecified external cause status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\External cause status (E000-E000.9)\\\\External cause status (E000)\\\\(E000.9) Unspecified external cause status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\External cause status (E000-E000.9)\\External cause status (E000)\\" + }, + { + "displayName": "Homicide and injury purposely inflicted by other persons (E960-E969.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E961) Assault by corrosive or caustic substance, except poisoning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\(E961) Assault by corrosive or caustic substance, except poisoning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\" + }, + { + "displayName": "(E963) Assault by hanging and strangulation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\(E963) Assault by hanging and strangulation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\" + }, + { + "displayName": "(E964) Assault by submersion [drowning]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\(E964) Assault by submersion [drowning]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\" + }, + { + "displayName": "(E966) Assault by cutting and piercing instrument", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\(E966) Assault by cutting and piercing instrument\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\" + }, + { + "displayName": "(E969) Late effects of injury purposely inflicted by other person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\(E969) Late effects of injury purposely inflicted by other person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\" + }, + { + "displayName": "Assault by firearms and explosives (E965)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\" + }, + { + "displayName": "(E965.0) Assault by handgun", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\(E965.0) Assault by handgun\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\" + }, + { + "displayName": "(E965.1) Assault by shotgun", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\(E965.1) Assault by shotgun\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\" + }, + { + "displayName": "(E965.2) Assault by hunting rifle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\(E965.2) Assault by hunting rifle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\" + }, + { + "displayName": "(E965.3) Assault by military firearms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\(E965.3) Assault by military firearms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\" + }, + { + "displayName": "(E965.4) Assault by other and unspecified firearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\(E965.4) Assault by other and unspecified firearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\" + }, + { + "displayName": "(E965.5) Assault by antipersonnel bomb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\(E965.5) Assault by antipersonnel bomb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\" + }, + { + "displayName": "(E965.6) Assault by gasoline bomb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\(E965.6) Assault by gasoline bomb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\" + }, + { + "displayName": "(E965.7) Assault by letter bomb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\(E965.7) Assault by letter bomb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\" + }, + { + "displayName": "(E965.8) Assault by other specified explosive", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\(E965.8) Assault by other specified explosive\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\" + }, + { + "displayName": "(E965.9) Assault by unspecified explosive", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\(E965.9) Assault by unspecified explosive\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by firearms and explosives (E965)\\" + }, + { + "displayName": "Assault by other and unspecified means (E968)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\" + }, + { + "displayName": "(E968.0) Assault by fire", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\(E968.0) Assault by fire\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\" + }, + { + "displayName": "(E968.1) Assault by pushing from a high place", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\(E968.1) Assault by pushing from a high place\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\" + }, + { + "displayName": "(E968.2) Assault by striking by blunt or thrown object", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\(E968.2) Assault by striking by blunt or thrown object\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\" + }, + { + "displayName": "(E968.3) Assault by hot liquid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\(E968.3) Assault by hot liquid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\" + }, + { + "displayName": "(E968.4) Assault by criminal neglect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\(E968.4) Assault by criminal neglect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\" + }, + { + "displayName": "(E968.5) Assault by transport vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\(E968.5) Assault by transport vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\" + }, + { + "displayName": "(E968.6) Assault by air gun", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\(E968.6) Assault by air gun\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\" + }, + { + "displayName": "(E968.7) Assault by human bite", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\(E968.7) Assault by human bite\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\" + }, + { + "displayName": "(E968.8) Assault by other specified means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\(E968.8) Assault by other specified means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\" + }, + { + "displayName": "(E968.9) Assault by unspecified means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\(E968.9) Assault by unspecified means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by other and unspecified means (E968)\\" + }, + { + "displayName": "Assault by poisoning (E962)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by poisoning (E962)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\\\Assault by poisoning (E962)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\" + }, + { + "displayName": "(E962.0) Assault by drugs and medicinal substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by poisoning (E962)\\(E962.0) Assault by drugs and medicinal substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\\\Assault by poisoning (E962)\\\\(E962.0) Assault by drugs and medicinal substances\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by poisoning (E962)\\" + }, + { + "displayName": "(E962.1) Assault by other solid and liquid substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by poisoning (E962)\\(E962.1) Assault by other solid and liquid substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by poisoning (E962)\\" + }, + { + "displayName": "(E962.2) Assault by other gases and vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by poisoning (E962)\\(E962.2) Assault by other gases and vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by poisoning (E962)\\" + }, + { + "displayName": "(E962.9) Assault by unspecified poisoning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by poisoning (E962)\\(E962.9) Assault by unspecified poisoning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Assault by poisoning (E962)\\" + }, + { + "displayName": "Fight, brawl, rape (E960)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Fight, brawl, rape (E960)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\" + }, + { + "displayName": "(E960.0) Unarmed fight or brawl", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Fight, brawl, rape (E960)\\(E960.0) Unarmed fight or brawl\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Fight, brawl, rape (E960)\\" + }, + { + "displayName": "(E960.1) Rape", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Fight, brawl, rape (E960)\\(E960.1) Rape\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Fight, brawl, rape (E960)\\" + }, + { + "displayName": "Perpetrator of child and adult abuse (E967)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\\\Perpetrator of child and adult abuse (E967)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\" + }, + { + "displayName": "(E967.0) Perpetrator of child and adult abuse, by father, stepfather, or boyfriend", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\(E967.0) Perpetrator of child and adult abuse, by father, stepfather, or boyfriend\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\" + }, + { + "displayName": "(E967.1) Perpetrator of child and adult abuse, by other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\(E967.1) Perpetrator of child and adult abuse, by other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\\\Perpetrator of child and adult abuse (E967)\\\\(E967.1) Perpetrator of child and adult abuse, by other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\" + }, + { + "displayName": "(E967.2) Perpetrator of child and adult abuse, by mother, stepmother, or girlfriend", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\(E967.2) Perpetrator of child and adult abuse, by mother, stepmother, or girlfriend\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\" + }, + { + "displayName": "(E967.3) Perpetrator of child and adult abuse, by spouse or partner", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\(E967.3) Perpetrator of child and adult abuse, by spouse or partner\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\" + }, + { + "displayName": "(E967.4) Perpetrator of child and adult abuse, by child", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\(E967.4) Perpetrator of child and adult abuse, by child\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\" + }, + { + "displayName": "(E967.5) Perpetrator of child and adult abuse, by sibling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\(E967.5) Perpetrator of child and adult abuse, by sibling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\" + }, + { + "displayName": "(E967.6) Perpetrator of child and adult abuse, by grandparent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\(E967.6) Perpetrator of child and adult abuse, by grandparent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\" + }, + { + "displayName": "(E967.7) Perpetrator of child and adult abuse, by other relative", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\(E967.7) Perpetrator of child and adult abuse, by other relative\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\" + }, + { + "displayName": "(E967.8) Perpetrator of child and adult abuse, by non-related caregiver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\(E967.8) Perpetrator of child and adult abuse, by non-related caregiver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\" + }, + { + "displayName": "(E967.9) Perpetrator of child and adult abuse, by unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\(E967.9) Perpetrator of child and adult abuse, by unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Homicide and injury purposely inflicted by other persons (E960-E969.9)\\Perpetrator of child and adult abuse (E967)\\" + }, + { + "displayName": "Injury resulting from operations of war (E990-E999.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "Injury due to war operations but occurring after cessation of hostilities (E998)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations but occurring after cessation of hostilities (E998)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\" + }, + { + "displayName": "Injury due to war operations by bullets and fragments (E991)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by bullets and fragments (E991)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\" + }, + { + "displayName": "(E991.0) Injury due to war operations from rubber bullets (rifle)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by bullets and fragments (E991)\\(E991.0) Injury due to war operations from rubber bullets (rifle)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by bullets and fragments (E991)\\" + }, + { + "displayName": "(E991.1) Injury due to war operations from pellets (rifle)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by bullets and fragments (E991)\\(E991.1) Injury due to war operations from pellets (rifle)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by bullets and fragments (E991)\\" + }, + { + "displayName": "(E991.2) Injury due to war operations from other bullets", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by bullets and fragments (E991)\\(E991.2) Injury due to war operations from other bullets\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by bullets and fragments (E991)\\" + }, + { + "displayName": "(E991.3) Injury due to war operations from antipersonnel bomb (fragments)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by bullets and fragments (E991)\\(E991.3) Injury due to war operations from antipersonnel bomb (fragments)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by bullets and fragments (E991)\\" + }, + { + "displayName": "(E991.9) Injury due to war operations from other and unspecified fragments", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by bullets and fragments (E991)\\(E991.9) Injury due to war operations from other and unspecified fragments\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by bullets and fragments (E991)\\" + }, + { + "displayName": "Injury due to war operations by destruction of aircraft (E994)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by destruction of aircraft (E994)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\" + }, + { + "displayName": "Injury due to war operations by explosion of marine weapons (E992)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by explosion of marine weapons (E992)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury resulting from operations of war (E990-E999.9)\\\\Injury due to war operations by explosion of marine weapons (E992)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\" + }, + { + "displayName": "Injury due to war operations by fires and conflagrations (E990)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by fires and conflagrations (E990)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\" + }, + { + "displayName": "(E990.0) Injury due to war operations from gasoline bomb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by fires and conflagrations (E990)\\(E990.0) Injury due to war operations from gasoline bomb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by fires and conflagrations (E990)\\" + }, + { + "displayName": "(E990.9) Injury due to war operations from other and unspecified source", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by fires and conflagrations (E990)\\(E990.9) Injury due to war operations from other and unspecified source\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by fires and conflagrations (E990)\\" + }, + { + "displayName": "Injury due to war operations by nuclear weapons (E996)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by nuclear weapons (E996)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\" + }, + { + "displayName": "Injury due to war operations by other and unspecified forms of conventional warfare (E995)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other and unspecified forms of conventional warfare (E995)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury resulting from operations of war (E990-E999.9)\\\\Injury due to war operations by other and unspecified forms of conventional warfare (E995)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\" + }, + { + "displayName": "Injury due to war operations by other explosion (E993)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other explosion (E993)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\" + }, + { + "displayName": "Injury due to war operations by other forms of unconventional warfare (E997)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other forms of unconventional warfare (E997)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\" + }, + { + "displayName": "(E997.0) Injury due to war operations by lasers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other forms of unconventional warfare (E997)\\(E997.0) Injury due to war operations by lasers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other forms of unconventional warfare (E997)\\" + }, + { + "displayName": "(E997.1) Injury due to war operations by biological warfare", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other forms of unconventional warfare (E997)\\(E997.1) Injury due to war operations by biological warfare\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other forms of unconventional warfare (E997)\\" + }, + { + "displayName": "(E997.2) Injury due to war operations by gases, fumes, and chemicals", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other forms of unconventional warfare (E997)\\(E997.2) Injury due to war operations by gases, fumes, and chemicals\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other forms of unconventional warfare (E997)\\" + }, + { + "displayName": "(E997.8) Injury due to other specified forms of unconventional warfare", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other forms of unconventional warfare (E997)\\(E997.8) Injury due to other specified forms of unconventional warfare\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other forms of unconventional warfare (E997)\\" + }, + { + "displayName": "(E997.9) Injury due to unspecified form of unconventional warfare", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other forms of unconventional warfare (E997)\\(E997.9) Injury due to unspecified form of unconventional warfare\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Injury due to war operations by other forms of unconventional warfare (E997)\\" + }, + { + "displayName": "Late effect of injury due to war operations and terrorism (E999)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Late effect of injury due to war operations and terrorism (E999)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\" + }, + { + "displayName": "(E999.0) Late effect of injury due to war operations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Late effect of injury due to war operations and terrorism (E999)\\(E999.0) Late effect of injury due to war operations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Late effect of injury due to war operations and terrorism (E999)\\" + }, + { + "displayName": "(E999.1) Late effect of injury due to terrorism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Late effect of injury due to war operations and terrorism (E999)\\(E999.1) Late effect of injury due to terrorism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury resulting from operations of war (E990-E999.9)\\Late effect of injury due to war operations and terrorism (E999)\\" + }, + { + "displayName": "Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E984) Submersion (drowning), undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\(E984) Submersion (drowning), undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\" + }, + { + "displayName": "(E986) Injury by cutting and piercing instruments, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\(E986) Injury by cutting and piercing instruments, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\" + }, + { + "displayName": "(E989) Late effects of injury, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\(E989) Late effects of injury, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\" + }, + { + "displayName": "Falling from high place, undetermined whether accidentally or purposely inflicted (E987)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\" + }, + { + "displayName": "(E987.0) Falling from residential premises, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\\(E987.0) Falling from residential premises, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\\" + }, + { + "displayName": "(E987.1) Falling from other man-made structures, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\\(E987.1) Falling from other man-made structures, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\\" + }, + { + "displayName": "(E987.2) Falling from natural sites, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\\(E987.2) Falling from natural sites, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\\" + }, + { + "displayName": "(E987.9) Falling from unspecified site, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\\(E987.9) Falling from unspecified site, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Falling from high place, undetermined whether accidentally or purposely inflicted (E987)\\" + }, + { + "displayName": "Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\" + }, + { + "displayName": "(E983.0) Hanging, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\\(E983.0) Hanging, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\\" + }, + { + "displayName": "(E983.1) Suffocation by plastic bag, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\\(E983.1) Suffocation by plastic bag, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\\" + }, + { + "displayName": "(E983.8) Strangulation or suffocation by other specified means, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\\(E983.8) Strangulation or suffocation by other specified means, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\\" + }, + { + "displayName": "(E983.9) Strangulation or suffocation by unspecified means, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\\(E983.9) Strangulation or suffocation by unspecified means, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Hanging, strangulation, or suffocation, undetermined whether accidentally or purposely inflicted (E983)\\" + }, + { + "displayName": "Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\" + }, + { + "displayName": "(E985.0) Injury by handgun, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\(E985.0) Injury by handgun, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\\\(E985.0) Injury by handgun, undetermined whether accidentally or purposely inflicted\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\" + }, + { + "displayName": "(E985.1) Injury by shotgun, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\(E985.1) Injury by shotgun, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\\\(E985.1) Injury by shotgun, undetermined whether accidentally or purposely inflicted\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\" + }, + { + "displayName": "(E985.2) Injury by hunting rifle, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\(E985.2) Injury by hunting rifle, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\" + }, + { + "displayName": "(E985.3) Injury by military firearms, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\(E985.3) Injury by military firearms, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\" + }, + { + "displayName": "(E985.4) Injury by other and unspecified firearm, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\(E985.4) Injury by other and unspecified firearm, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\" + }, + { + "displayName": "(E985.5) Injury by explosives, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\(E985.5) Injury by explosives, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\" + }, + { + "displayName": "(E985.6) Injury by air gun, undetermined whether accidental or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\(E985.6) Injury by air gun, undetermined whether accidental or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\" + }, + { + "displayName": "(E985.7) Injury by paintball gun, undetermined whether accidental or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\(E985.7) Injury by paintball gun, undetermined whether accidental or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by firearms, air guns and explosives, undetermined whether accidentally or purposely inflicted (E985)\\" + }, + { + "displayName": "Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\" + }, + { + "displayName": "(E988.0) Injury by jumping or lying before moving object, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\(E988.0) Injury by jumping or lying before moving object, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\" + }, + { + "displayName": "(E988.1) Injury by burns or fire, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\(E988.1) Injury by burns or fire, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\" + }, + { + "displayName": "(E988.2) Injury by scald, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\(E988.2) Injury by scald, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\" + }, + { + "displayName": "(E988.3) Injury by extremes of cold, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\(E988.3) Injury by extremes of cold, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\" + }, + { + "displayName": "(E988.4) Injury by electrocution, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\(E988.4) Injury by electrocution, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\" + }, + { + "displayName": "(E988.5) Injury by crashing of motor vehicle, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\(E988.5) Injury by crashing of motor vehicle, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\" + }, + { + "displayName": "(E988.6) Injury by crashing of aircraft, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\(E988.6) Injury by crashing of aircraft, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\" + }, + { + "displayName": "(E988.7) Injury by caustic substances, except poisoning, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\(E988.7) Injury by caustic substances, except poisoning, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\" + }, + { + "displayName": "(E988.8) Injury by other specified means, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\(E988.8) Injury by other specified means, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\" + }, + { + "displayName": "(E988.9) Injury by unspecified means, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\(E988.9) Injury by unspecified means, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Injury by other and unspecified means, undetermined whether accidentally or purposely inflicted (E988)\\" + }, + { + "displayName": "Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\" + }, + { + "displayName": "(E981.0) Poisoning by gas distributed by pipeline, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\\(E981.0) Poisoning by gas distributed by pipeline, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\\" + }, + { + "displayName": "(E981.1) Poisoning by liquefied petroleum gas distributed in mobile containers, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\\(E981.1) Poisoning by liquefied petroleum gas distributed in mobile containers, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\\" + }, + { + "displayName": "(E981.8) Poisoning by other utility gas, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\\(E981.8) Poisoning by other utility gas, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\\\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\\\\(E981.8) Poisoning by other utility gas, undetermined whether accidentally or purposely inflicted\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by gases in domestic use, undetermined whether accidentally or purposely inflicted (E981)\\" + }, + { + "displayName": "Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\\\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\" + }, + { + "displayName": "(E982.0) Poisoning by motor vehicle exhaust gas, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\\(E982.0) Poisoning by motor vehicle exhaust gas, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\\" + }, + { + "displayName": "(E982.1) Poisoning by other carbon monoxide, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\\(E982.1) Poisoning by other carbon monoxide, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\\" + }, + { + "displayName": "(E982.8) Poisoning by other specified gases and vapors, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\\(E982.8) Poisoning by other specified gases and vapors, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\\" + }, + { + "displayName": "(E982.9) Poisoning by unspecified gases and vapors, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\\(E982.9) Poisoning by unspecified gases and vapors, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by other gases, undetermined whether accidentally or purposely inflicted (E982)\\" + }, + { + "displayName": "Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\" + }, + { + "displayName": "(E980.0) Poisoning by analgesics, antipyretics, and antirheumatics, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\(E980.0) Poisoning by analgesics, antipyretics, and antirheumatics, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\" + }, + { + "displayName": "(E980.1) Poisoning by barbiturates, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\(E980.1) Poisoning by barbiturates, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\" + }, + { + "displayName": "(E980.2) Poisoning by other sedatives and hypnotics, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\(E980.2) Poisoning by other sedatives and hypnotics, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\" + }, + { + "displayName": "(E980.3) Poisoning by tranquilizers and other psychotropic agents, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\(E980.3) Poisoning by tranquilizers and other psychotropic agents, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\\\(E980.3) Poisoning by tranquilizers and other psychotropic agents, undetermined whether accidentally or purposely inflicted\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\" + }, + { + "displayName": "(E980.4) Poisoning by other specified drugs and medicinal substances, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\(E980.4) Poisoning by other specified drugs and medicinal substances, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\\\(E980.4) Poisoning by other specified drugs and medicinal substances, undetermined whether accidentally or purposely inflicted\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\" + }, + { + "displayName": "(E980.5) Poisoning by unspecified drug or medicinal substance, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\(E980.5) Poisoning by unspecified drug or medicinal substance, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\\\(E980.5) Poisoning by unspecified drug or medicinal substance, undetermined whether accidentally or purposely inflicted\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\" + }, + { + "displayName": "(E980.6) Poisoning by corrosive and caustic substances, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\(E980.6) Poisoning by corrosive and caustic substances, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\\\(E980.6) Poisoning by corrosive and caustic substances, undetermined whether accidentally or purposely inflicted\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\" + }, + { + "displayName": "(E980.7) Poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\(E980.7) Poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\\\(E980.7) Poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers, undetermined whether accidentally or purposely inflicted\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\" + }, + { + "displayName": "(E980.8) Poisoning by arsenic and its compounds, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\(E980.8) Poisoning by arsenic and its compounds, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\\\(E980.8) Poisoning by arsenic and its compounds, undetermined whether accidentally or purposely inflicted\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\" + }, + { + "displayName": "(E980.9) Poisoning by other and unspecified solid and liquid substances, undetermined whether accidentally or purposely inflicted", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\(E980.9) Poisoning by other and unspecified solid and liquid substances, undetermined whether accidentally or purposely inflicted\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\\\(E980.9) Poisoning by other and unspecified solid and liquid substances, undetermined whether accidentally or purposely inflicted\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Injury undetermined whether accidentally or purposely inflicted (E980-E989.9)\\Poisoning by solid or liquid substances, undetermined whether accidentally or purposely inflicted (E980)\\" + }, + { + "displayName": "Late effects of accidental injury (E929-E929.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Late effects of accidental injury (E929-E929.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "Late effects of accidental injury (E929)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Late effects of accidental injury (E929-E929.9)\\\\Late effects of accidental injury (E929)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\" + }, + { + "displayName": "(E929.0) Late effects of motor vehicle accident", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\(E929.0) Late effects of motor vehicle accident\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Late effects of accidental injury (E929-E929.9)\\\\Late effects of accidental injury (E929)\\\\(E929.0) Late effects of motor vehicle accident\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\" + }, + { + "displayName": "(E929.1) Late effects of other transport accident", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\(E929.1) Late effects of other transport accident\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Late effects of accidental injury (E929-E929.9)\\\\Late effects of accidental injury (E929)\\\\(E929.1) Late effects of other transport accident\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\" + }, + { + "displayName": "(E929.2) Late effects of accidental poisoning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\(E929.2) Late effects of accidental poisoning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Late effects of accidental injury (E929-E929.9)\\\\Late effects of accidental injury (E929)\\\\(E929.2) Late effects of accidental poisoning\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\" + }, + { + "displayName": "(E929.3) Late effects of accidental fall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\(E929.3) Late effects of accidental fall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Late effects of accidental injury (E929-E929.9)\\\\Late effects of accidental injury (E929)\\\\(E929.3) Late effects of accidental fall\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\" + }, + { + "displayName": "(E929.4) Late effects of accident caused by fire", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\(E929.4) Late effects of accident caused by fire\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Late effects of accidental injury (E929-E929.9)\\\\Late effects of accidental injury (E929)\\\\(E929.4) Late effects of accident caused by fire\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\" + }, + { + "displayName": "(E929.5) Late effects of accident due to natural and environmental factors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\(E929.5) Late effects of accident due to natural and environmental factors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Late effects of accidental injury (E929-E929.9)\\\\Late effects of accidental injury (E929)\\\\(E929.5) Late effects of accident due to natural and environmental factors\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\" + }, + { + "displayName": "(E929.8) Late effects of other accidents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\(E929.8) Late effects of other accidents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\" + }, + { + "displayName": "(E929.9) Late effects of unspecified accident", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\(E929.9) Late effects of unspecified accident\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Late effects of accidental injury (E929-E929.9)\\Late effects of accidental injury (E929)\\" + }, + { + "displayName": "Legal intervention (E970-E978.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E970) Injury due to legal intervention by firearms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\(E970) Injury due to legal intervention by firearms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\" + }, + { + "displayName": "(E971) Injury due to legal intervention by explosives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\(E971) Injury due to legal intervention by explosives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\" + }, + { + "displayName": "(E972) Injury due to legal intervention by gas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\(E972) Injury due to legal intervention by gas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\" + }, + { + "displayName": "(E973) Injury due to legal intervention by blunt object", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\(E973) Injury due to legal intervention by blunt object\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\" + }, + { + "displayName": "(E974) Injury due to legal intervention by cutting and piercing instrument", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\(E974) Injury due to legal intervention by cutting and piercing instrument\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\" + }, + { + "displayName": "(E975) Injury due to legal intervention by other specified means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\(E975) Injury due to legal intervention by other specified means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\" + }, + { + "displayName": "(E976) Injury due to legal intervention by unspecified means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\(E976) Injury due to legal intervention by unspecified means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\" + }, + { + "displayName": "(E977) Late effects of injuries due to legal intervention", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\(E977) Late effects of injuries due to legal intervention\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\" + }, + { + "displayName": "(E978) Legal execution", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\(E978) Legal execution\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Legal intervention (E970-E978.9)\\" + }, + { + "displayName": "Misadventures to patients during surgical and medical care (E870-E876.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\" + }, + { + "displayName": "(E870.0) Accidental cut, puncture, perforation or hemorrhage during surgical operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\(E870.0) Accidental cut, puncture, perforation or hemorrhage during surgical operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\" + }, + { + "displayName": "(E870.1) Accidental cut, puncture, perforation or hemorrhage during infusion or transfusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\(E870.1) Accidental cut, puncture, perforation or hemorrhage during infusion or transfusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\" + }, + { + "displayName": "(E870.2) Accidental cut, puncture, perforation or hemorrhage during kidney dialysis or other perfusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\(E870.2) Accidental cut, puncture, perforation or hemorrhage during kidney dialysis or other perfusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\" + }, + { + "displayName": "(E870.3) Accidental cut, puncture, perforation or hemorrhage during injection or vaccination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\(E870.3) Accidental cut, puncture, perforation or hemorrhage during injection or vaccination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\" + }, + { + "displayName": "(E870.4) Accidental cut, puncture, perforation or hemorrhage during endoscopic examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\(E870.4) Accidental cut, puncture, perforation or hemorrhage during endoscopic examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\" + }, + { + "displayName": "(E870.5) Accidental cut, puncture, perforation or hemorrhage during aspiration of fluid or tissue, puncture, and catheterization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\(E870.5) Accidental cut, puncture, perforation or hemorrhage during aspiration of fluid or tissue, puncture, and catheterization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\" + }, + { + "displayName": "(E870.6) Accidental cut, puncture, perforation or hemorrhage during heart catheterization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\(E870.6) Accidental cut, puncture, perforation or hemorrhage during heart catheterization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\" + }, + { + "displayName": "(E870.7) Accidental cut, puncture, perforation or hemorrhage during administration of enema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\(E870.7) Accidental cut, puncture, perforation or hemorrhage during administration of enema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\" + }, + { + "displayName": "(E870.8) Accidental cut, puncture, perforation or hemorrhage during other specified medical care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\(E870.8) Accidental cut, puncture, perforation or hemorrhage during other specified medical care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\\\(E870.8) Accidental cut, puncture, perforation or hemorrhage during other specified medical care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\" + }, + { + "displayName": "(E870.9) Accidental cut, puncture, perforation or hemorrhage during unspecified medical care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\(E870.9) Accidental cut, puncture, perforation or hemorrhage during unspecified medical care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\\\(E870.9) Accidental cut, puncture, perforation or hemorrhage during unspecified medical care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Accidental cut, puncture, perforation, or hemorrhage during medical care (E870)\\" + }, + { + "displayName": "Contaminated or infected blood, other fluid, drug, or biological substance (E875)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\" + }, + { + "displayName": "(E875.0) Contaminated substance transfused or infused", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\(E875.0) Contaminated substance transfused or infused\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\" + }, + { + "displayName": "(E875.1) Contaminated substance injected or used for vaccination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\(E875.1) Contaminated substance injected or used for vaccination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\" + }, + { + "displayName": "(E875.2) Contaminated drug or biological substance administered by other means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\(E875.2) Contaminated drug or biological substance administered by other means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\" + }, + { + "displayName": "(E875.8) Misadventure to patient from other contamination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\(E875.8) Misadventure to patient from other contamination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\" + }, + { + "displayName": "(E875.9) Misadventure to patient from unspecified contamination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\(E875.9) Misadventure to patient from unspecified contamination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Contaminated or infected blood, other fluid, drug, or biological substance (E875)\\" + }, + { + "displayName": "Failure in dosage (E873)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Failure in dosage (E873)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\" + }, + { + "displayName": "(E873.0) Excessive amount of blood or other fluid during transfusion or infusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\(E873.0) Excessive amount of blood or other fluid during transfusion or infusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Failure in dosage (E873)\\\\(E873.0) Excessive amount of blood or other fluid during transfusion or infusion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\" + }, + { + "displayName": "(E873.1) Incorrect dilution of fluid during infusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\(E873.1) Incorrect dilution of fluid during infusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Failure in dosage (E873)\\\\(E873.1) Incorrect dilution of fluid during infusion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\" + }, + { + "displayName": "(E873.2) Overdose of radiation in therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\(E873.2) Overdose of radiation in therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Failure in dosage (E873)\\\\(E873.2) Overdose of radiation in therapy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\" + }, + { + "displayName": "(E873.3) Inadvertent exposure of patient to radiation during medical care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\(E873.3) Inadvertent exposure of patient to radiation during medical care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\" + }, + { + "displayName": "(E873.4) Failure in dosage in electroshock or insulin-shock therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\(E873.4) Failure in dosage in electroshock or insulin-shock therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\" + }, + { + "displayName": "(E873.5) Inappropriate [too hot or too cold] temperature in local application and packing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\(E873.5) Inappropriate [too hot or too cold] temperature in local application and packing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\" + }, + { + "displayName": "(E873.6) Nonadministration of necessary drug or medicinal substance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\(E873.6) Nonadministration of necessary drug or medicinal substance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\" + }, + { + "displayName": "(E873.8) Other specified failure in dosage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\(E873.8) Other specified failure in dosage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\" + }, + { + "displayName": "(E873.9) Unspecified failure in dosage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\(E873.9) Unspecified failure in dosage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure in dosage (E873)\\" + }, + { + "displayName": "Failure of sterile precautions during procedure (E872)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\" + }, + { + "displayName": "(E872.0) Failure of sterile precautions during surgical operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\(E872.0) Failure of sterile precautions during surgical operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\" + }, + { + "displayName": "(E872.1) Failure of sterile precautions during infusion or transfusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\(E872.1) Failure of sterile precautions during infusion or transfusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\" + }, + { + "displayName": "(E872.2) Failure of sterile precautions during kidney dialysis and other perfusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\(E872.2) Failure of sterile precautions during kidney dialysis and other perfusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\" + }, + { + "displayName": "(E872.3) Failure of sterile precautions during injection or vaccination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\(E872.3) Failure of sterile precautions during injection or vaccination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\" + }, + { + "displayName": "(E872.4) Failure of sterile precautions during endoscopic examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\(E872.4) Failure of sterile precautions during endoscopic examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\" + }, + { + "displayName": "(E872.5) Failure of sterile precautions during aspiration of fluid or tissue, puncture, and catheterization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\(E872.5) Failure of sterile precautions during aspiration of fluid or tissue, puncture, and catheterization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\" + }, + { + "displayName": "(E872.6) Failure of sterile precautions during heart catheterization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\(E872.6) Failure of sterile precautions during heart catheterization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\" + }, + { + "displayName": "(E872.8) Failure of sterile precautions during other specified procedures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\(E872.8) Failure of sterile precautions during other specified procedures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\" + }, + { + "displayName": "(E872.9) Failure of sterile precautions during unspecified procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\(E872.9) Failure of sterile precautions during unspecified procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Failure of sterile precautions during procedure (E872)\\" + }, + { + "displayName": "Foreign object left in body during procedure (E871)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\" + }, + { + "displayName": "(E871.0) Foreign object left in body during surgical operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\(E871.0) Foreign object left in body during surgical operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\" + }, + { + "displayName": "(E871.1) Foreign object left in body during infusion or transfusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\(E871.1) Foreign object left in body during infusion or transfusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Foreign object left in body during procedure (E871)\\\\(E871.1) Foreign object left in body during infusion or transfusion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\" + }, + { + "displayName": "(E871.2) Foreign object left in body during kidney dialysis or other perfusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\(E871.2) Foreign object left in body during kidney dialysis or other perfusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Foreign object left in body during procedure (E871)\\\\(E871.2) Foreign object left in body during kidney dialysis or other perfusion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\" + }, + { + "displayName": "(E871.3) Foreign object left in body during injection or vaccination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\(E871.3) Foreign object left in body during injection or vaccination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\" + }, + { + "displayName": "(E871.4) Foreign object left in body during endoscopic examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\(E871.4) Foreign object left in body during endoscopic examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Foreign object left in body during procedure (E871)\\\\(E871.4) Foreign object left in body during endoscopic examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\" + }, + { + "displayName": "(E871.5) Foreign object left in body during aspiration of fluid or tissue, puncture, and catheterization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\(E871.5) Foreign object left in body during aspiration of fluid or tissue, puncture, and catheterization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\" + }, + { + "displayName": "(E871.6) Foreign object left in body during heart catheterization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\(E871.6) Foreign object left in body during heart catheterization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Foreign object left in body during procedure (E871)\\\\(E871.6) Foreign object left in body during heart catheterization\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\" + }, + { + "displayName": "(E871.7) Foreign object left in body during removal of catheter or packing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\(E871.7) Foreign object left in body during removal of catheter or packing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Foreign object left in body during procedure (E871)\\\\(E871.7) Foreign object left in body during removal of catheter or packing\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\" + }, + { + "displayName": "(E871.8) Foreign object left in body during other specified procedures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\(E871.8) Foreign object left in body during other specified procedures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\" + }, + { + "displayName": "(E871.9) Foreign object left in body during unspecified procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\(E871.9) Foreign object left in body during unspecified procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Foreign object left in body during procedure (E871)\\\\(E871.9) Foreign object left in body during unspecified procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Foreign object left in body during procedure (E871)\\" + }, + { + "displayName": "Mechanical failure of instrument or apparatus during procedure (E874)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Mechanical failure of instrument or apparatus during procedure (E874)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\" + }, + { + "displayName": "(E874.0) Mechanical failure of instrument or apparatus during surgical operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\(E874.0) Mechanical failure of instrument or apparatus during surgical operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Mechanical failure of instrument or apparatus during procedure (E874)\\\\(E874.0) Mechanical failure of instrument or apparatus during surgical operation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\" + }, + { + "displayName": "(E874.1) Mechanical failure of instrument or apparatus during infusion and transfusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\(E874.1) Mechanical failure of instrument or apparatus during infusion and transfusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\" + }, + { + "displayName": "(E874.2) Mechanical failure of instrument or apparatus during kidney dialysis and other perfusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\(E874.2) Mechanical failure of instrument or apparatus during kidney dialysis and other perfusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Mechanical failure of instrument or apparatus during procedure (E874)\\\\(E874.2) Mechanical failure of instrument or apparatus during kidney dialysis and other perfusion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\" + }, + { + "displayName": "(E874.3) Mechanical failure of instrument or apparatus during endoscopic examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\(E874.3) Mechanical failure of instrument or apparatus during endoscopic examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Mechanical failure of instrument or apparatus during procedure (E874)\\\\(E874.3) Mechanical failure of instrument or apparatus during endoscopic examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\" + }, + { + "displayName": "(E874.4) Mechanical failure of instrument or apparatus during aspiration of fluid or tissue, puncture, and catheterization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\(E874.4) Mechanical failure of instrument or apparatus during aspiration of fluid or tissue, puncture, and catheterization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Mechanical failure of instrument or apparatus during procedure (E874)\\\\(E874.4) Mechanical failure of instrument or apparatus during aspiration of fluid or tissue, puncture, and catheterization\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\" + }, + { + "displayName": "(E874.5) Mechanical failure of instrument or apparatus during heart catheterization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\(E874.5) Mechanical failure of instrument or apparatus during heart catheterization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Mechanical failure of instrument or apparatus during procedure (E874)\\\\(E874.5) Mechanical failure of instrument or apparatus during heart catheterization\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\" + }, + { + "displayName": "(E874.8) Mechanical failure of instrument or apparatus during other specified procedures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\(E874.8) Mechanical failure of instrument or apparatus during other specified procedures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Mechanical failure of instrument or apparatus during procedure (E874)\\\\(E874.8) Mechanical failure of instrument or apparatus during other specified procedures\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\" + }, + { + "displayName": "(E874.9) Mechanical failure of instrument or apparatus during unspecified procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\(E874.9) Mechanical failure of instrument or apparatus during unspecified procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Mechanical failure of instrument or apparatus during procedure (E874)\\\\(E874.9) Mechanical failure of instrument or apparatus during unspecified procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Mechanical failure of instrument or apparatus during procedure (E874)\\" + }, + { + "displayName": "Other and unspecified misadventures during medical care (E876)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Other and unspecified misadventures during medical care (E876)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\" + }, + { + "displayName": "(E876.0) Mismatched blood in transfusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\(E876.0) Mismatched blood in transfusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\" + }, + { + "displayName": "(E876.1) Wrong fluid in infusion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\(E876.1) Wrong fluid in infusion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Other and unspecified misadventures during medical care (E876)\\\\(E876.1) Wrong fluid in infusion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\" + }, + { + "displayName": "(E876.2) Failure in suture and ligature during surgical operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\(E876.2) Failure in suture and ligature during surgical operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Misadventures to patients during surgical and medical care (E870-E876.9)\\\\Other and unspecified misadventures during medical care (E876)\\\\(E876.2) Failure in suture and ligature during surgical operation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\" + }, + { + "displayName": "(E876.3) Endotracheal tube wrongly placed during anesthetic procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\(E876.3) Endotracheal tube wrongly placed during anesthetic procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\" + }, + { + "displayName": "(E876.4) Failure to introduce or to remove other tube or instrument", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\(E876.4) Failure to introduce or to remove other tube or instrument\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\" + }, + { + "displayName": "(E876.5) Performance of wrong operation (procedure) on correct patient", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\(E876.5) Performance of wrong operation (procedure) on correct patient\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\" + }, + { + "displayName": "(E876.8) Other specified misadventures during medical care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\(E876.8) Other specified misadventures during medical care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\" + }, + { + "displayName": "(E876.9) Unspecified misadventure during medical care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\(E876.9) Unspecified misadventure during medical care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Misadventures to patients during surgical and medical care (E870-E876.9)\\Other and unspecified misadventures during medical care (E876)\\" + }, + { + "displayName": "Other accidents (E916-E928.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E916) Struck accidentally by falling object", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\(E916) Struck accidentally by falling object\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E918) Caught accidentally in or between objects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\(E918) Caught accidentally in or between objects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "Accident caused by electric current (E925)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by electric current (E925)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by electric current (E925)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E925.0) Accident caused by domestic wiring and appliances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by electric current (E925)\\(E925.0) Accident caused by domestic wiring and appliances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by electric current (E925)\\\\(E925.0) Accident caused by domestic wiring and appliances\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by electric current (E925)\\" + }, + { + "displayName": "(E925.1) Accident caused by electric current in electric power generating plants, distribution stations, transmission lines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by electric current (E925)\\(E925.1) Accident caused by electric current in electric power generating plants, distribution stations, transmission lines\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by electric current (E925)\\" + }, + { + "displayName": "(E925.2) Accident caused by industrial wiring, appliances, and electrical machinery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by electric current (E925)\\(E925.2) Accident caused by industrial wiring, appliances, and electrical machinery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by electric current (E925)\\\\(E925.2) Accident caused by industrial wiring, appliances, and electrical machinery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by electric current (E925)\\" + }, + { + "displayName": "(E925.8) Accident caused by other electric current", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by electric current (E925)\\(E925.8) Accident caused by other electric current\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by electric current (E925)\\\\(E925.8) Accident caused by other electric current\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by electric current (E925)\\" + }, + { + "displayName": "(E925.9) Accident caused by unspecified electric current", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by electric current (E925)\\(E925.9) Accident caused by unspecified electric current\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by electric current (E925)\\\\(E925.9) Accident caused by unspecified electric current\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by electric current (E925)\\" + }, + { + "displayName": "Accident caused by explosion of pressure vessel (E921)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosion of pressure vessel (E921)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by explosion of pressure vessel (E921)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E921.0) Accident caused by explosion of boilers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosion of pressure vessel (E921)\\(E921.0) Accident caused by explosion of boilers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosion of pressure vessel (E921)\\" + }, + { + "displayName": "(E921.1) Accident caused by explosion of gas cylinders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosion of pressure vessel (E921)\\(E921.1) Accident caused by explosion of gas cylinders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by explosion of pressure vessel (E921)\\\\(E921.1) Accident caused by explosion of gas cylinders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosion of pressure vessel (E921)\\" + }, + { + "displayName": "(E921.8) Accident caused by explosion of other specified pressure vessels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosion of pressure vessel (E921)\\(E921.8) Accident caused by explosion of other specified pressure vessels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by explosion of pressure vessel (E921)\\\\(E921.8) Accident caused by explosion of other specified pressure vessels\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosion of pressure vessel (E921)\\" + }, + { + "displayName": "(E921.9) Accident caused by explosion of unspecified pressure vessel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosion of pressure vessel (E921)\\(E921.9) Accident caused by explosion of unspecified pressure vessel\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosion of pressure vessel (E921)\\" + }, + { + "displayName": "Accident caused by explosive material (E923)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosive material (E923)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by explosive material (E923)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E923.0) Accident caused by fireworks", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosive material (E923)\\(E923.0) Accident caused by fireworks\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosive material (E923)\\" + }, + { + "displayName": "(E923.1) Accident caused by blasting materials", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosive material (E923)\\(E923.1) Accident caused by blasting materials\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by explosive material (E923)\\\\(E923.1) Accident caused by blasting materials\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosive material (E923)\\" + }, + { + "displayName": "(E923.2) Accident caused by explosive gases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosive material (E923)\\(E923.2) Accident caused by explosive gases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by explosive material (E923)\\\\(E923.2) Accident caused by explosive gases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosive material (E923)\\" + }, + { + "displayName": "(E923.8) Accident caused by other explosive materials", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosive material (E923)\\(E923.8) Accident caused by other explosive materials\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by explosive material (E923)\\\\(E923.8) Accident caused by other explosive materials\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosive material (E923)\\" + }, + { + "displayName": "(E923.9) Accident caused by unspecified explosive material", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosive material (E923)\\(E923.9) Accident caused by unspecified explosive material\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by explosive material (E923)\\\\(E923.9) Accident caused by unspecified explosive material\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by explosive material (E923)\\" + }, + { + "displayName": "Accident caused by firearm, and air gun missile (E922)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E922.0) Accident caused by handgun", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\(E922.0) Accident caused by handgun\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by firearm, and air gun missile (E922)\\\\(E922.0) Accident caused by handgun\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\" + }, + { + "displayName": "(E922.1) Accident caused by shotgun (automatic)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\(E922.1) Accident caused by shotgun (automatic)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by firearm, and air gun missile (E922)\\\\(E922.1) Accident caused by shotgun (automatic)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\" + }, + { + "displayName": "(E922.2) Accident caused by hunting rifle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\(E922.2) Accident caused by hunting rifle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by firearm, and air gun missile (E922)\\\\(E922.2) Accident caused by hunting rifle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\" + }, + { + "displayName": "(E922.3) Accident caused by military firearms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\(E922.3) Accident caused by military firearms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by firearm, and air gun missile (E922)\\\\(E922.3) Accident caused by military firearms\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\" + }, + { + "displayName": "(E922.4) Accident caused by air gun", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\(E922.4) Accident caused by air gun\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accident caused by firearm, and air gun missile (E922)\\\\(E922.4) Accident caused by air gun\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\" + }, + { + "displayName": "(E922.5) Accident caused by paintball gun", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\(E922.5) Accident caused by paintball gun\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\" + }, + { + "displayName": "(E922.8) Accident caused by other specified firearm missile", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\(E922.8) Accident caused by other specified firearm missile\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\" + }, + { + "displayName": "(E922.9) Accident caused by unspecified firearm missile", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\(E922.9) Accident caused by unspecified firearm missile\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by firearm, and air gun missile (E922)\\" + }, + { + "displayName": "Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E924.0) Accident caused by hot liquids and vapors, including steam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\\(E924.0) Accident caused by hot liquids and vapors, including steam\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\\" + }, + { + "displayName": "(E924.1) Accident caused by caustic and corrosive substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\\(E924.1) Accident caused by caustic and corrosive substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\\" + }, + { + "displayName": "(E924.2) Accident caused by hot (boiling) tap water", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\\(E924.2) Accident caused by hot (boiling) tap water\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\\" + }, + { + "displayName": "(E924.8) Accident caused by other hot substance or object", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\\(E924.8) Accident caused by other hot substance or object\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\\" + }, + { + "displayName": "(E924.9) Accident caused by unspecified hot substance or object", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\\(E924.9) Accident caused by unspecified hot substance or object\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accident caused by hot substance or object, caustic or corrosive material, and steam (E924)\\" + }, + { + "displayName": "Accidents caused by cutting and piercing instruments or objects (E920)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by cutting and piercing instruments or objects (E920)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E920.0) Accidents caused by powered lawn mower", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\(E920.0) Accidents caused by powered lawn mower\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\" + }, + { + "displayName": "(E920.1) Accidents caused by other powered hand tools", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\(E920.1) Accidents caused by other powered hand tools\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by cutting and piercing instruments or objects (E920)\\\\(E920.1) Accidents caused by other powered hand tools\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\" + }, + { + "displayName": "(E920.2) Accidents caused by powered household appliances and implements", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\(E920.2) Accidents caused by powered household appliances and implements\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by cutting and piercing instruments or objects (E920)\\\\(E920.2) Accidents caused by powered household appliances and implements\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\" + }, + { + "displayName": "(E920.3) Accidents caused by knives, swords, and daggers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\(E920.3) Accidents caused by knives, swords, and daggers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by cutting and piercing instruments or objects (E920)\\\\(E920.3) Accidents caused by knives, swords, and daggers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\" + }, + { + "displayName": "(E920.4) Accidents caused by other hand tools and implements", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\(E920.4) Accidents caused by other hand tools and implements\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by cutting and piercing instruments or objects (E920)\\\\(E920.4) Accidents caused by other hand tools and implements\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\" + }, + { + "displayName": "(E920.5) Accidents caused by hypodermic needle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\(E920.5) Accidents caused by hypodermic needle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\" + }, + { + "displayName": "(E920.8) Accidents caused by other specified cutting and piercing instruments or objects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\(E920.8) Accidents caused by other specified cutting and piercing instruments or objects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by cutting and piercing instruments or objects (E920)\\\\(E920.8) Accidents caused by other specified cutting and piercing instruments or objects\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\" + }, + { + "displayName": "(E920.9) Accidents caused by unspecified cutting and piercing instrument or object", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\(E920.9) Accidents caused by unspecified cutting and piercing instrument or object\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by cutting and piercing instruments or objects (E920)\\\\(E920.9) Accidents caused by unspecified cutting and piercing instrument or object\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by cutting and piercing instruments or objects (E920)\\" + }, + { + "displayName": "Accidents caused by machinery (E919)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E919.0) Accidents caused by agricultural machines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\(E919.0) Accidents caused by agricultural machines\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by machinery (E919)\\\\(E919.0) Accidents caused by agricultural machines\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\" + }, + { + "displayName": "(E919.1) Accidents caused by mining and earth-drilling machinery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\(E919.1) Accidents caused by mining and earth-drilling machinery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\" + }, + { + "displayName": "(E919.2) Accidents caused by lifting machines and appliances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\(E919.2) Accidents caused by lifting machines and appliances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by machinery (E919)\\\\(E919.2) Accidents caused by lifting machines and appliances\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\" + }, + { + "displayName": "(E919.3) Accidents caused by metalworking machines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\(E919.3) Accidents caused by metalworking machines\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by machinery (E919)\\\\(E919.3) Accidents caused by metalworking machines\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\" + }, + { + "displayName": "(E919.4) Accidents caused by woodworking and forming machines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\(E919.4) Accidents caused by woodworking and forming machines\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by machinery (E919)\\\\(E919.4) Accidents caused by woodworking and forming machines\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\" + }, + { + "displayName": "(E919.5) Accidents caused by prime movers, except electrical motors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\(E919.5) Accidents caused by prime movers, except electrical motors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\" + }, + { + "displayName": "(E919.6) Accidents caused by transmission machinery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\(E919.6) Accidents caused by transmission machinery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by machinery (E919)\\\\(E919.6) Accidents caused by transmission machinery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\" + }, + { + "displayName": "(E919.7) Accidents caused by earth moving, scraping, and other excavating machines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\(E919.7) Accidents caused by earth moving, scraping, and other excavating machines\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by machinery (E919)\\\\(E919.7) Accidents caused by earth moving, scraping, and other excavating machines\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\" + }, + { + "displayName": "(E919.8) Accidents caused by other specified machinery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\(E919.8) Accidents caused by other specified machinery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Accidents caused by machinery (E919)\\\\(E919.8) Accidents caused by other specified machinery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\" + }, + { + "displayName": "(E919.9) Accidents caused by unspecified machinery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\(E919.9) Accidents caused by unspecified machinery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Accidents caused by machinery (E919)\\" + }, + { + "displayName": "Exposure to radiation (E926)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Exposure to radiation (E926)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E926.0) Exposure to radiofrequency radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\(E926.0) Exposure to radiofrequency radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Exposure to radiation (E926)\\\\(E926.0) Exposure to radiofrequency radiation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\" + }, + { + "displayName": "(E926.1) Exposure to infra-red radiation from heaters and lamps", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\(E926.1) Exposure to infra-red radiation from heaters and lamps\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Exposure to radiation (E926)\\\\(E926.1) Exposure to infra-red radiation from heaters and lamps\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\" + }, + { + "displayName": "(E926.2) Exposure to visible and ultraviolet light sources", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\(E926.2) Exposure to visible and ultraviolet light sources\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Exposure to radiation (E926)\\\\(E926.2) Exposure to visible and ultraviolet light sources\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\" + }, + { + "displayName": "(E926.3) Exposure to x-rays and other electromagnetic ionizing radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\(E926.3) Exposure to x-rays and other electromagnetic ionizing radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Exposure to radiation (E926)\\\\(E926.3) Exposure to x-rays and other electromagnetic ionizing radiation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\" + }, + { + "displayName": "(E926.4) Exposure to lasers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\(E926.4) Exposure to lasers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Exposure to radiation (E926)\\\\(E926.4) Exposure to lasers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\" + }, + { + "displayName": "(E926.5) Exposure to radioactive isotopes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\(E926.5) Exposure to radioactive isotopes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Exposure to radiation (E926)\\\\(E926.5) Exposure to radioactive isotopes\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\" + }, + { + "displayName": "(E926.8) Exposure to other specified radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\(E926.8) Exposure to other specified radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\" + }, + { + "displayName": "(E926.9) Exposure to unspecified radiation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\(E926.9) Exposure to unspecified radiation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Exposure to radiation (E926)\\" + }, + { + "displayName": "Other and unspecified environmental and accidental causes (E928)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E928.0) Prolonged stay in weightless environment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\(E928.0) Prolonged stay in weightless environment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\" + }, + { + "displayName": "(E928.1) Exposure to noise", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\(E928.1) Exposure to noise\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\" + }, + { + "displayName": "(E928.2) Vibration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\(E928.2) Vibration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\" + }, + { + "displayName": "(E928.3) Human bite", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\(E928.3) Human bite\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\" + }, + { + "displayName": "(E928.4) External constriction caused by hair", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\(E928.4) External constriction caused by hair\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\" + }, + { + "displayName": "(E928.5) External constriction caused by other object", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\(E928.5) External constriction caused by other object\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\" + }, + { + "displayName": "(E928.6) Environmental exposure to harmful algae and toxins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\(E928.6) Environmental exposure to harmful algae and toxins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\" + }, + { + "displayName": "(E928.8) Other accidents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\(E928.8) Other accidents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\" + }, + { + "displayName": "(E928.9) Unspecified accident", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\(E928.9) Unspecified accident\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Other and unspecified environmental and accidental causes (E928)\\" + }, + { + "displayName": "Overexertion and strenuous and repetitive movements or loads (E927)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E927.0) Overexertion from sudden strenuous movement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\(E927.0) Overexertion from sudden strenuous movement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\" + }, + { + "displayName": "(E927.1) Overexertion from prolonged static position", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\(E927.1) Overexertion from prolonged static position\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Overexertion and strenuous and repetitive movements or loads (E927)\\\\(E927.1) Overexertion from prolonged static position\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\" + }, + { + "displayName": "(E927.2) Excessive physical exertion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\(E927.2) Excessive physical exertion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Overexertion and strenuous and repetitive movements or loads (E927)\\\\(E927.2) Excessive physical exertion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\" + }, + { + "displayName": "(E927.3) Cumulative trauma from repetitive motion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\(E927.3) Cumulative trauma from repetitive motion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Overexertion and strenuous and repetitive movements or loads (E927)\\\\(E927.3) Cumulative trauma from repetitive motion\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\" + }, + { + "displayName": "(E927.4) Cumulative trauma from repetitive impact", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\(E927.4) Cumulative trauma from repetitive impact\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\" + }, + { + "displayName": "(E927.8) Other overexertion and strenuous and repetitive movements or loads", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\(E927.8) Other overexertion and strenuous and repetitive movements or loads\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Overexertion and strenuous and repetitive movements or loads (E927)\\\\(E927.8) Other overexertion and strenuous and repetitive movements or loads\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\" + }, + { + "displayName": "(E927.9) Unspecified overexertion and strenuous and repetitive movements or loads", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\(E927.9) Unspecified overexertion and strenuous and repetitive movements or loads\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Overexertion and strenuous and repetitive movements or loads (E927)\\" + }, + { + "displayName": "Striking against or struck accidentally by objects or persons (E917)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Striking against or struck accidentally by objects or persons (E917)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\" + }, + { + "displayName": "(E917.0) Striking against or struck accidentally by objects or persons in sports", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\(E917.0) Striking against or struck accidentally by objects or persons in sports\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Striking against or struck accidentally by objects or persons (E917)\\\\(E917.0) Striking against or struck accidentally by objects or persons in sports\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\" + }, + { + "displayName": "(E917.1) Striking against or struck accidentally by a crowd, by collective fear or panic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\(E917.1) Striking against or struck accidentally by a crowd, by collective fear or panic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\" + }, + { + "displayName": "(E917.2) Striking against or struck accidentally in running water", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\(E917.2) Striking against or struck accidentally in running water\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Striking against or struck accidentally by objects or persons (E917)\\\\(E917.2) Striking against or struck accidentally in running water\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\" + }, + { + "displayName": "(E917.3) Striking against or struck accidentally by furniture without subsequent fall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\(E917.3) Striking against or struck accidentally by furniture without subsequent fall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Striking against or struck accidentally by objects or persons (E917)\\\\(E917.3) Striking against or struck accidentally by furniture without subsequent fall\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\" + }, + { + "displayName": "(E917.4) Striking against or struck accidentally by other stationary object without subsequent fall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\(E917.4) Striking against or struck accidentally by other stationary object without subsequent fall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Striking against or struck accidentally by objects or persons (E917)\\\\(E917.4) Striking against or struck accidentally by other stationary object without subsequent fall\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\" + }, + { + "displayName": "(E917.5) Striking against or struck accidentally by object in sports with subsequent fall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\(E917.5) Striking against or struck accidentally by object in sports with subsequent fall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Striking against or struck accidentally by objects or persons (E917)\\\\(E917.5) Striking against or struck accidentally by object in sports with subsequent fall\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\" + }, + { + "displayName": "(E917.6) Striking against or struck accidentally caused by a crowd, by collective fear or panic with subsequent fall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\(E917.6) Striking against or struck accidentally caused by a crowd, by collective fear or panic with subsequent fall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Other accidents (E916-E928.9)\\\\Striking against or struck accidentally by objects or persons (E917)\\\\(E917.6) Striking against or struck accidentally caused by a crowd, by collective fear or panic with subsequent fall\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\" + }, + { + "displayName": "(E917.7) Striking against or struck accidentally by furniture with subsequent fall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\(E917.7) Striking against or struck accidentally by furniture with subsequent fall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\" + }, + { + "displayName": "(E917.8) Striking against or struck accidentally by other stationary object with subsequent fall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\(E917.8) Striking against or struck accidentally by other stationary object with subsequent fall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\" + }, + { + "displayName": "(E917.9) Other accident caused by striking against or being struck accidentally by objects or persons", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\(E917.9) Other accident caused by striking against or being struck accidentally by objects or persons\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Other accidents (E916-E928.9)\\Striking against or struck accidentally by objects or persons (E917)\\" + }, + { + "displayName": "Place of occurrence (E849-E849.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E849.0) Home accidents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\(E849.0) Home accidents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\" + }, + { + "displayName": "(E849.1) Farm accidents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\(E849.1) Farm accidents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\" + }, + { + "displayName": "(E849.2) Mine and quarry accidents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\(E849.2) Mine and quarry accidents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\" + }, + { + "displayName": "(E849.3) Accidents occurring in industrial places and premises", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\(E849.3) Accidents occurring in industrial places and premises\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Place of occurrence (E849-E849.9)\\\\(E849.3) Accidents occurring in industrial places and premises\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\" + }, + { + "displayName": "(E849.4) Accidents occurring in place for recreation and sport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\(E849.4) Accidents occurring in place for recreation and sport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Place of occurrence (E849-E849.9)\\\\(E849.4) Accidents occurring in place for recreation and sport\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\" + }, + { + "displayName": "(E849.5) Street and highway accidents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\(E849.5) Street and highway accidents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Place of occurrence (E849-E849.9)\\\\(E849.5) Street and highway accidents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\" + }, + { + "displayName": "(E849.6) Accidents occurring in public building", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\(E849.6) Accidents occurring in public building\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Place of occurrence (E849-E849.9)\\\\(E849.6) Accidents occurring in public building\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\" + }, + { + "displayName": "(E849.7) Accidents occurring in residential institution", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\(E849.7) Accidents occurring in residential institution\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Place of occurrence (E849-E849.9)\\\\(E849.7) Accidents occurring in residential institution\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\" + }, + { + "displayName": "(E849.8) Accidents occurring in other specified places", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\(E849.8) Accidents occurring in other specified places\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Place of occurrence (E849-E849.9)\\\\(E849.8) Accidents occurring in other specified places\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\" + }, + { + "displayName": "(E849.9) Accidents occurring in unspecified place", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\(E849.9) Accidents occurring in unspecified place\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Place of occurrence (E849-E849.9)\\" + }, + { + "displayName": "Suicide and self-inflicted injury (E950-E959.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "(E954) Suicide and self-inflicted injury by submersion [drowning]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\(E954) Suicide and self-inflicted injury by submersion [drowning]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\" + }, + { + "displayName": "(E956) Suicide and self-inflicted injury by cutting and piercing instrument", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\(E956) Suicide and self-inflicted injury by cutting and piercing instrument\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\" + }, + { + "displayName": "(E959) Late effects of self-inflicted injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\(E959) Late effects of self-inflicted injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\" + }, + { + "displayName": "Suicide and self-inflicted injuries by jumping from high place (E957)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injuries by jumping from high place (E957)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\" + }, + { + "displayName": "(E957.0) Suicide and self-inflicted injuries by jumping from residential premises", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injuries by jumping from high place (E957)\\(E957.0) Suicide and self-inflicted injuries by jumping from residential premises\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injuries by jumping from high place (E957)\\" + }, + { + "displayName": "(E957.1) Suicide and self-inflicted injuries by jumping from other man-made structures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injuries by jumping from high place (E957)\\(E957.1) Suicide and self-inflicted injuries by jumping from other man-made structures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injuries by jumping from high place (E957)\\\\(E957.1) Suicide and self-inflicted injuries by jumping from other man-made structures\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injuries by jumping from high place (E957)\\" + }, + { + "displayName": "(E957.2) Suicide and self-inflicted injuries by jumping from natural sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injuries by jumping from high place (E957)\\(E957.2) Suicide and self-inflicted injuries by jumping from natural sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injuries by jumping from high place (E957)\\\\(E957.2) Suicide and self-inflicted injuries by jumping from natural sites\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injuries by jumping from high place (E957)\\" + }, + { + "displayName": "(E957.9) Suicide and self-inflicted injuries by jumping from unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injuries by jumping from high place (E957)\\(E957.9) Suicide and self-inflicted injuries by jumping from unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injuries by jumping from high place (E957)\\\\(E957.9) Suicide and self-inflicted injuries by jumping from unspecified site\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injuries by jumping from high place (E957)\\" + }, + { + "displayName": "Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\" + }, + { + "displayName": "(E955.0) Suicide and self-inflicted injury by handgun", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\(E955.0) Suicide and self-inflicted injury by handgun\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\\\(E955.0) Suicide and self-inflicted injury by handgun\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\" + }, + { + "displayName": "(E955.1) Suicide and self-inflicted injury by shotgun", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\(E955.1) Suicide and self-inflicted injury by shotgun\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\\\(E955.1) Suicide and self-inflicted injury by shotgun\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\" + }, + { + "displayName": "(E955.2) Suicide and self-inflicted injury by hunting rifle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\(E955.2) Suicide and self-inflicted injury by hunting rifle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\" + }, + { + "displayName": "(E955.3) Suicide and self-inflicted injury by military firearms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\(E955.3) Suicide and self-inflicted injury by military firearms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\\\(E955.3) Suicide and self-inflicted injury by military firearms\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\" + }, + { + "displayName": "(E955.4) Suicide and self-inflicted injury by other and unspecified firearm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\(E955.4) Suicide and self-inflicted injury by other and unspecified firearm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\\\(E955.4) Suicide and self-inflicted injury by other and unspecified firearm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\" + }, + { + "displayName": "(E955.5) Suicide and self-inflicted injury by explosives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\(E955.5) Suicide and self-inflicted injury by explosives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\\\(E955.5) Suicide and self-inflicted injury by explosives\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\" + }, + { + "displayName": "(E955.6) Suicide and self-inflicted injury by air gun", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\(E955.6) Suicide and self-inflicted injury by air gun\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\\\(E955.6) Suicide and self-inflicted injury by air gun\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\" + }, + { + "displayName": "(E955.7) Suicide and self-inflicted injury by paintball gun", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\(E955.7) Suicide and self-inflicted injury by paintball gun\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\" + }, + { + "displayName": "(E955.9) Suicide and self-inflicted injury by firearms and explosives, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\(E955.9) Suicide and self-inflicted injury by firearms and explosives, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\\\(E955.9) Suicide and self-inflicted injury by firearms and explosives, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by firearms, air guns, and explosives (E955)\\" + }, + { + "displayName": "Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\" + }, + { + "displayName": "(E953.0) Suicide and self-inflicted injury by hanging", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\(E953.0) Suicide and self-inflicted injury by hanging\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\\\(E953.0) Suicide and self-inflicted injury by hanging\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\" + }, + { + "displayName": "(E953.1) Suicide and self-inflicted injury by suffocation by plastic bag", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\(E953.1) Suicide and self-inflicted injury by suffocation by plastic bag\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\\\(E953.1) Suicide and self-inflicted injury by suffocation by plastic bag\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\" + }, + { + "displayName": "(E953.8) Suicide and self-inflicted injury by other specified means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\(E953.8) Suicide and self-inflicted injury by other specified means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\" + }, + { + "displayName": "(E953.9) Suicide and self-inflicted injury by unspecified means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\(E953.9) Suicide and self-inflicted injury by unspecified means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\\\(E953.9) Suicide and self-inflicted injury by unspecified means\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by hanging, strangulation, and suffocation (E953)\\" + }, + { + "displayName": "Suicide and self-inflicted injury by other and unspecified means (E958)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by other and unspecified means (E958)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\" + }, + { + "displayName": "(E958.0) Suicide and self-inflicted injury by jumping or lying before moving object", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\(E958.0) Suicide and self-inflicted injury by jumping or lying before moving object\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by other and unspecified means (E958)\\\\(E958.0) Suicide and self-inflicted injury by jumping or lying before moving object\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\" + }, + { + "displayName": "(E958.1) Suicide and self-inflicted injury by burns, fire", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\(E958.1) Suicide and self-inflicted injury by burns, fire\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by other and unspecified means (E958)\\\\(E958.1) Suicide and self-inflicted injury by burns, fire\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\" + }, + { + "displayName": "(E958.2) Suicide and self-inflicted injury by scald", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\(E958.2) Suicide and self-inflicted injury by scald\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by other and unspecified means (E958)\\\\(E958.2) Suicide and self-inflicted injury by scald\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\" + }, + { + "displayName": "(E958.3) Suicide and self-inflicted injury by extremes of cold", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\(E958.3) Suicide and self-inflicted injury by extremes of cold\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\" + }, + { + "displayName": "(E958.4) Suicide and self-inflicted injury by electrocution", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\(E958.4) Suicide and self-inflicted injury by electrocution\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by other and unspecified means (E958)\\\\(E958.4) Suicide and self-inflicted injury by electrocution\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\" + }, + { + "displayName": "(E958.5) Suicide and self-inflicted injury by crashing of motor vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\(E958.5) Suicide and self-inflicted injury by crashing of motor vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\" + }, + { + "displayName": "(E958.6) Suicide and self-inflicted injury by crashing of aircraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\(E958.6) Suicide and self-inflicted injury by crashing of aircraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by other and unspecified means (E958)\\\\(E958.6) Suicide and self-inflicted injury by crashing of aircraft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\" + }, + { + "displayName": "(E958.7) Suicide and self-inflicted injury by caustic substances, except poisoning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\(E958.7) Suicide and self-inflicted injury by caustic substances, except poisoning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by other and unspecified means (E958)\\\\(E958.7) Suicide and self-inflicted injury by caustic substances, except poisoning\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\" + }, + { + "displayName": "(E958.8) Suicide and self-inflicted injury by other specified means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\(E958.8) Suicide and self-inflicted injury by other specified means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by other and unspecified means (E958)\\\\(E958.8) Suicide and self-inflicted injury by other specified means\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\" + }, + { + "displayName": "(E958.9) Suicide and self-inflicted injury by unspecified means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\(E958.9) Suicide and self-inflicted injury by unspecified means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted injury by other and unspecified means (E958)\\\\(E958.9) Suicide and self-inflicted injury by unspecified means\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted injury by other and unspecified means (E958)\\" + }, + { + "displayName": "Suicide and self-inflicted poisoning by gases in domestic use (E951)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by gases in domestic use (E951)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\" + }, + { + "displayName": "(E951.0) Suicide and self-inflicted poisoning by gas distributed by pipeline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by gases in domestic use (E951)\\(E951.0) Suicide and self-inflicted poisoning by gas distributed by pipeline\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by gases in domestic use (E951)\\" + }, + { + "displayName": "(E951.1) Suicide and self-inflicted poisoning by liquefied petroleum gas distributed in mobile containers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by gases in domestic use (E951)\\(E951.1) Suicide and self-inflicted poisoning by liquefied petroleum gas distributed in mobile containers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by gases in domestic use (E951)\\" + }, + { + "displayName": "(E951.8) Suicide and self-inflicted poisoning by other utility gas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by gases in domestic use (E951)\\(E951.8) Suicide and self-inflicted poisoning by other utility gas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by gases in domestic use (E951)\\" + }, + { + "displayName": "Suicide and self-inflicted poisoning by other gases and vapors (E952)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by other gases and vapors (E952)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\" + }, + { + "displayName": "(E952.0) Suicide and self-inflicted poisoning by motor vehicle exhaust gas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by other gases and vapors (E952)\\(E952.0) Suicide and self-inflicted poisoning by motor vehicle exhaust gas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by other gases and vapors (E952)\\" + }, + { + "displayName": "(E952.1) Suicide and self-inflicted poisoning by other carbon monoxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by other gases and vapors (E952)\\(E952.1) Suicide and self-inflicted poisoning by other carbon monoxide\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by other gases and vapors (E952)\\" + }, + { + "displayName": "(E952.8) Suicide and self-inflicted poisoning by other specified gases and vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by other gases and vapors (E952)\\(E952.8) Suicide and self-inflicted poisoning by other specified gases and vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by other gases and vapors (E952)\\" + }, + { + "displayName": "(E952.9) Suicide and self-inflicted poisoning by unspecified gases and vapors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by other gases and vapors (E952)\\(E952.9) Suicide and self-inflicted poisoning by unspecified gases and vapors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by other gases and vapors (E952)\\" + }, + { + "displayName": "Suicide and self-inflicted poisoning by solid or liquid substances (E950)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\" + }, + { + "displayName": "(E950.0) Suicide and self-inflicted poisoning by analgesics, antipyretics, and antirheumatics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\(E950.0) Suicide and self-inflicted poisoning by analgesics, antipyretics, and antirheumatics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\" + }, + { + "displayName": "(E950.1) Suicide and self-inflicted poisoning by barbiturates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\(E950.1) Suicide and self-inflicted poisoning by barbiturates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\" + }, + { + "displayName": "(E950.2) Suicide and self-inflicted poisoning by other sedatives and hypnotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\(E950.2) Suicide and self-inflicted poisoning by other sedatives and hypnotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\\\(E950.2) Suicide and self-inflicted poisoning by other sedatives and hypnotics\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\" + }, + { + "displayName": "(E950.3) Suicide and self-inflicted poisoning by tranquilizers and other psychotropic agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\(E950.3) Suicide and self-inflicted poisoning by tranquilizers and other psychotropic agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\" + }, + { + "displayName": "(E950.4) Suicide and self-inflicted poisoning by other specified drugs and medicinal substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\(E950.4) Suicide and self-inflicted poisoning by other specified drugs and medicinal substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\\\(E950.4) Suicide and self-inflicted poisoning by other specified drugs and medicinal substances\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\" + }, + { + "displayName": "(E950.5) Suicide and self-inflicted poisoning by unspecified drug or medicinal substance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\(E950.5) Suicide and self-inflicted poisoning by unspecified drug or medicinal substance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Suicide and self-inflicted injury (E950-E959.9)\\\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\\\(E950.5) Suicide and self-inflicted poisoning by unspecified drug or medicinal substance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\" + }, + { + "displayName": "(E950.6) Suicide and self-inflicted poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\(E950.6) Suicide and self-inflicted poisoning by agricultural and horticultural chemical and pharmaceutical preparations other than plant foods and fertilizers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\" + }, + { + "displayName": "(E950.7) Suicide and self-inflicted poisoning by corrosive and caustic substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\(E950.7) Suicide and self-inflicted poisoning by corrosive and caustic substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\" + }, + { + "displayName": "(E950.8) Suicide and self-inflicted poisoning by arsenic and its compounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\(E950.8) Suicide and self-inflicted poisoning by arsenic and its compounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\" + }, + { + "displayName": "(E950.9) Suicide and self-inflicted poisoning by other and unspecified solid and liquid substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\(E950.9) Suicide and self-inflicted poisoning by other and unspecified solid and liquid substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Suicide and self-inflicted injury (E950-E959.9)\\Suicide and self-inflicted poisoning by solid or liquid substances (E950)\\" + }, + { + "displayName": "Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\" + }, + { + "displayName": "(E879.0) Cardiac catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\(E879.0) Cardiac catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\" + }, + { + "displayName": "(E879.1) Kidney dialysis as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\(E879.1) Kidney dialysis as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\" + }, + { + "displayName": "(E879.2) Radiological procedure and radiotherapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\(E879.2) Radiological procedure and radiotherapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\" + }, + { + "displayName": "(E879.3) Shock therapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\(E879.3) Shock therapy as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\" + }, + { + "displayName": "(E879.4) Aspiration of fluid as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\(E879.4) Aspiration of fluid as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\" + }, + { + "displayName": "(E879.5) Insertion of gastric or duodenal sound as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure of time of procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\(E879.5) Insertion of gastric or duodenal sound as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure of time of procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\" + }, + { + "displayName": "(E879.6) Urinary catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\(E879.6) Urinary catheterization as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\" + }, + { + "displayName": "(E879.7) Blood sampling as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\(E879.7) Blood sampling as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\\\(E879.7) Blood sampling as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\" + }, + { + "displayName": "(E879.8) Other specified procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\(E879.8) Other specified procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\\\(E879.8) Other specified procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\" + }, + { + "displayName": "(E879.9) Unspecified procedure as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\(E879.9) Unspecified procedure as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\\\(E879.9) Unspecified procedure as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at time of procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Other procedures, without mention of misadventure at the time of procedure, as the cause of abnormal reaction of patient, or of later complication (E879)\\" + }, + { + "displayName": "Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\" + }, + { + "displayName": "(E878.0) Surgical operation with transplant of whole organ causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\(E878.0) Surgical operation with transplant of whole organ causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\" + }, + { + "displayName": "(E878.1) Surgical operation with implant of artificial internal device causing abnormal patient reaction, or later complication,without mention of misadventure at time of operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\(E878.1) Surgical operation with implant of artificial internal device causing abnormal patient reaction, or later complication,without mention of misadventure at time of operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\" + }, + { + "displayName": "(E878.2) Surgical operation with anastomosis, bypass, or graft, with natural or artificial tissues used as implant causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\(E878.2) Surgical operation with anastomosis, bypass, or graft, with natural or artificial tissues used as implant causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\" + }, + { + "displayName": "(E878.3) Surgical operation with formation of external stoma causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\(E878.3) Surgical operation with formation of external stoma causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\" + }, + { + "displayName": "(E878.4) Other restorative surgery causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\(E878.4) Other restorative surgery causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\\\(E878.4) Other restorative surgery causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\" + }, + { + "displayName": "(E878.5) Amputation of limb(s) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\(E878.5) Amputation of limb(s) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\\\(E878.5) Amputation of limb(s) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\" + }, + { + "displayName": "(E878.6) Removal of other organ (partial) (total) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\(E878.6) Removal of other organ (partial) (total) causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\" + }, + { + "displayName": "(E878.8) Other specified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\(E878.8) Other specified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\" + }, + { + "displayName": "(E878.9) Unspecified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\(E878.9) Unspecified surgical operations and procedures causing abnormal patient reaction, or later complication, without mention of misadventure at time of operation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Surgical and medical procedures as the cause of abnormal reaction of patient or later complication, without mention of misadventure at the time of procedure (E878-E879.9)\\Surgical operation and other surgical procedures as the cause of abnormal reaction of patient, or of later complication, without mention of misadventure at the time of operation (E878)\\" + }, + { + "displayName": "Terrorism (E979-E979.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Terrorism (E979-E979.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "Terrorism (E979)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Terrorism (E979-E979.9)\\\\Terrorism (E979)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\" + }, + { + "displayName": "(E979.0) Terrorism involving explosion of marine weapons", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\(E979.0) Terrorism involving explosion of marine weapons\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\" + }, + { + "displayName": "(E979.1) Terrorism involving destruction of aircraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\(E979.1) Terrorism involving destruction of aircraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\" + }, + { + "displayName": "(E979.2) Terrorism involving other explosions and fragments", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\(E979.2) Terrorism involving other explosions and fragments\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\" + }, + { + "displayName": "(E979.3) Terrorism involving fires", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\(E979.3) Terrorism involving fires\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\" + }, + { + "displayName": "(E979.4) Terrorism involving firearms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\(E979.4) Terrorism involving firearms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\" + }, + { + "displayName": "(E979.5) Terrorism involving nuclear weapons", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\(E979.5) Terrorism involving nuclear weapons\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\" + }, + { + "displayName": "(E979.6) Terrorism involving biological weapons", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\(E979.6) Terrorism involving biological weapons\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Terrorism (E979-E979.9)\\\\Terrorism (E979)\\\\(E979.6) Terrorism involving biological weapons\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\" + }, + { + "displayName": "(E979.7) Terrorism involving chemical weapons", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\(E979.7) Terrorism involving chemical weapons\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Terrorism (E979-E979.9)\\\\Terrorism (E979)\\\\(E979.7) Terrorism involving chemical weapons\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\" + }, + { + "displayName": "(E979.8) Terrorism involving other means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\(E979.8) Terrorism involving other means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Terrorism (E979-E979.9)\\\\Terrorism (E979)\\\\(E979.8) Terrorism involving other means\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\" + }, + { + "displayName": "(E979.9) Terrorism secondary effects", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\(E979.9) Terrorism secondary effects\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Terrorism (E979-E979.9)\\Terrorism (E979)\\" + }, + { + "displayName": "Transport accidents (E800-E848.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\" + }, + { + "displayName": "AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\" + }, + { + "displayName": "Accident involving spacecraft (E845)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident involving spacecraft (E845)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\" + }, + { + "displayName": "(E845.0) Accident involving spacecraft injuring occupant of spacecraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident involving spacecraft (E845)\\(E845.0) Accident involving spacecraft injuring occupant of spacecraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident involving spacecraft (E845)\\\\(E845.0) Accident involving spacecraft injuring occupant of spacecraft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident involving spacecraft (E845)\\" + }, + { + "displayName": "(E845.8) Accident involving spacecraft injuring ground crew, airline employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident involving spacecraft (E845)\\(E845.8) Accident involving spacecraft injuring ground crew, airline employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident involving spacecraft (E845)\\\\(E845.8) Accident involving spacecraft injuring ground crew, airline employee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident involving spacecraft (E845)\\" + }, + { + "displayName": "(E845.9) Accident involving spacecraft injuring other person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident involving spacecraft (E845)\\(E845.9) Accident involving spacecraft injuring other person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident involving spacecraft (E845)\\\\(E845.9) Accident involving spacecraft injuring other person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident involving spacecraft (E845)\\" + }, + { + "displayName": "Accident to powered aircraft at takeoff or landing (E840)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\" + }, + { + "displayName": "(E840.0) Accident to powered aircraft at takeoff or landing injuring occupant of spacecraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\(E840.0) Accident to powered aircraft at takeoff or landing injuring occupant of spacecraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident to powered aircraft at takeoff or landing (E840)\\\\(E840.0) Accident to powered aircraft at takeoff or landing injuring occupant of spacecraft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\" + }, + { + "displayName": "(E840.1) Accident to powered aircraft at takeoff or landing injuring occupant of military aircraft, any", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\(E840.1) Accident to powered aircraft at takeoff or landing injuring occupant of military aircraft, any\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident to powered aircraft at takeoff or landing (E840)\\\\(E840.1) Accident to powered aircraft at takeoff or landing injuring occupant of military aircraft, any\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\" + }, + { + "displayName": "(E840.2) Accident to powered aircraft at takeoff or landing injuring crew of commercial aircraft (powered) in surface to surface transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\(E840.2) Accident to powered aircraft at takeoff or landing injuring crew of commercial aircraft (powered) in surface to surface transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident to powered aircraft at takeoff or landing (E840)\\\\(E840.2) Accident to powered aircraft at takeoff or landing injuring crew of commercial aircraft (powered) in surface to surface transport\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\" + }, + { + "displayName": "(E840.3) Accident to powered aircraft at takeoff or landing injuring other occupant of commercial aircraft (powered) in surface to surface transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\(E840.3) Accident to powered aircraft at takeoff or landing injuring other occupant of commercial aircraft (powered) in surface to surface transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident to powered aircraft at takeoff or landing (E840)\\\\(E840.3) Accident to powered aircraft at takeoff or landing injuring other occupant of commercial aircraft (powered) in surface to surface transport\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\" + }, + { + "displayName": "(E840.4) Accident to powered aircraft at takeoff or landing injuring occupant of commercial aircraft (powered) in surface to air transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\(E840.4) Accident to powered aircraft at takeoff or landing injuring occupant of commercial aircraft (powered) in surface to air transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\" + }, + { + "displayName": "(E840.5) Accident to powered aircraft at takeoff or landing injuring occupant of other powered aircraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\(E840.5) Accident to powered aircraft at takeoff or landing injuring occupant of other powered aircraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident to powered aircraft at takeoff or landing (E840)\\\\(E840.5) Accident to powered aircraft at takeoff or landing injuring occupant of other powered aircraft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\" + }, + { + "displayName": "(E840.6) Accident to powered aircraft at takeoff or landing injuring occupant of unpowered aircraft, except parachutist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\(E840.6) Accident to powered aircraft at takeoff or landing injuring occupant of unpowered aircraft, except parachutist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\" + }, + { + "displayName": "(E840.7) Accident to powered aircraft at takeoff or landing injuring parachutist (military) (other)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\(E840.7) Accident to powered aircraft at takeoff or landing injuring parachutist (military) (other)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident to powered aircraft at takeoff or landing (E840)\\\\(E840.7) Accident to powered aircraft at takeoff or landing injuring parachutist (military) (other)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\" + }, + { + "displayName": "(E840.8) Accident to powered aircraft at takeoff or landing injuring ground crew, airline employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\(E840.8) Accident to powered aircraft at takeoff or landing injuring ground crew, airline employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident to powered aircraft at takeoff or landing (E840)\\\\(E840.8) Accident to powered aircraft at takeoff or landing injuring ground crew, airline employee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\" + }, + { + "displayName": "(E840.9) Accident to powered aircraft at takeoff or landing injuring other person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\(E840.9) Accident to powered aircraft at takeoff or landing injuring other person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident to powered aircraft at takeoff or landing (E840)\\\\(E840.9) Accident to powered aircraft at takeoff or landing injuring other person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft at takeoff or landing (E840)\\" + }, + { + "displayName": "Accident to powered aircraft, other and unspecified (E841)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\" + }, + { + "displayName": "(E841.0) Accident to powered aircraft, other and unspecified, injuring occupant of spacecraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\(E841.0) Accident to powered aircraft, other and unspecified, injuring occupant of spacecraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident to powered aircraft, other and unspecified (E841)\\\\(E841.0) Accident to powered aircraft, other and unspecified, injuring occupant of spacecraft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\" + }, + { + "displayName": "(E841.1) Accident to powered aircraft, other and unspecified, injuring occupant of military aircraft, any", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\(E841.1) Accident to powered aircraft, other and unspecified, injuring occupant of military aircraft, any\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident to powered aircraft, other and unspecified (E841)\\\\(E841.1) Accident to powered aircraft, other and unspecified, injuring occupant of military aircraft, any\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\" + }, + { + "displayName": "(E841.2) Accident to powered aircraft, other and unspecified, injuring crew of commercial aircraft (powered) in surface to surface transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\(E841.2) Accident to powered aircraft, other and unspecified, injuring crew of commercial aircraft (powered) in surface to surface transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\" + }, + { + "displayName": "(E841.3) Accident to powered aircraft, other and unspecified, injuring other occupant of commercial aircraft (powered) in surface to surface transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\(E841.3) Accident to powered aircraft, other and unspecified, injuring other occupant of commercial aircraft (powered) in surface to surface transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\" + }, + { + "displayName": "(E841.4) Accident to powered aircraft, other and unspecified, injuring occupant of commercial aircraft (powered) in surface to air transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\(E841.4) Accident to powered aircraft, other and unspecified, injuring occupant of commercial aircraft (powered) in surface to air transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Accident to powered aircraft, other and unspecified (E841)\\\\(E841.4) Accident to powered aircraft, other and unspecified, injuring occupant of commercial aircraft (powered) in surface to air transport\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\" + }, + { + "displayName": "(E841.5) Accident to powered aircraft, other and unspecified, injuring occupant of other powered aircraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\(E841.5) Accident to powered aircraft, other and unspecified, injuring occupant of other powered aircraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\" + }, + { + "displayName": "(E841.6) Accident to powered aircraft, other and unspecified, injuring occupant of unpowered aircraft, except parachutist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\(E841.6) Accident to powered aircraft, other and unspecified, injuring occupant of unpowered aircraft, except parachutist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\" + }, + { + "displayName": "(E841.7) Accident to powered aircraft, other and unspecified, injuring parachutist (military) (other)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\(E841.7) Accident to powered aircraft, other and unspecified, injuring parachutist (military) (other)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\" + }, + { + "displayName": "(E841.8) Accident to powered aircraft, other and unspecified, injuring ground crew, airline employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\(E841.8) Accident to powered aircraft, other and unspecified, injuring ground crew, airline employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\" + }, + { + "displayName": "(E841.9) Accident to powered aircraft, other and unspecified, injuring other person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\(E841.9) Accident to powered aircraft, other and unspecified, injuring other person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to powered aircraft, other and unspecified (E841)\\" + }, + { + "displayName": "Accident to unpowered aircraft (E842)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to unpowered aircraft (E842)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\" + }, + { + "displayName": "(E842.6) Accident to unpowered aircraft injuring occupant of unpowered aircraft, except parachutist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to unpowered aircraft (E842)\\(E842.6) Accident to unpowered aircraft injuring occupant of unpowered aircraft, except parachutist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to unpowered aircraft (E842)\\" + }, + { + "displayName": "(E842.7) Accident to unpowered aircraft injuring parachutist (military) (other)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to unpowered aircraft (E842)\\(E842.7) Accident to unpowered aircraft injuring parachutist (military) (other)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to unpowered aircraft (E842)\\" + }, + { + "displayName": "(E842.8) Accident to unpowered aircraft injuring ground crew, airline employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to unpowered aircraft (E842)\\(E842.8) Accident to unpowered aircraft injuring ground crew, airline employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to unpowered aircraft (E842)\\" + }, + { + "displayName": "(E842.9) Accident to unpowered aircraft injuring other person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to unpowered aircraft (E842)\\(E842.9) Accident to unpowered aircraft injuring other person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Accident to unpowered aircraft (E842)\\" + }, + { + "displayName": "Fall in, on, or from aircraft (E843)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\" + }, + { + "displayName": "(E843.0) Fall in, on, or from aircraft injuring occupant of spacecraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\(E843.0) Fall in, on, or from aircraft injuring occupant of spacecraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\" + }, + { + "displayName": "(E843.1) Fall in, on, or from aircraft injuring occupant of military aircraft, any", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\(E843.1) Fall in, on, or from aircraft injuring occupant of military aircraft, any\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\" + }, + { + "displayName": "(E843.2) Fall in, on, or from aircraft injuring crew of commercial aircraft (powered) in surface to surface transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\(E843.2) Fall in, on, or from aircraft injuring crew of commercial aircraft (powered) in surface to surface transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\" + }, + { + "displayName": "(E843.3) Fall in, on, or from aircraft injuring other occupant of commercial aircraft (powered) in surface to surface transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\(E843.3) Fall in, on, or from aircraft injuring other occupant of commercial aircraft (powered) in surface to surface transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\" + }, + { + "displayName": "(E843.4) Fall in, on, or from aircraft injuring occupant of commercial aircraft (powered) in surface to air transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\(E843.4) Fall in, on, or from aircraft injuring occupant of commercial aircraft (powered) in surface to air transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\" + }, + { + "displayName": "(E843.5) Fall in, on, or from aircraft injuring occupant of other powered aircraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\(E843.5) Fall in, on, or from aircraft injuring occupant of other powered aircraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\" + }, + { + "displayName": "(E843.6) Fall in, on, or from aircraft injuring occupant of unpowered aircraft, except parachutist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\(E843.6) Fall in, on, or from aircraft injuring occupant of unpowered aircraft, except parachutist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\" + }, + { + "displayName": "(E843.7) Fall in, on, or from aircraft injuring parachutist (military) (other)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\(E843.7) Fall in, on, or from aircraft injuring parachutist (military) (other)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\" + }, + { + "displayName": "(E843.8) Fall in, on, or from aircraft injuring ground crew, airline employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\(E843.8) Fall in, on, or from aircraft injuring ground crew, airline employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\" + }, + { + "displayName": "(E843.9) Fall in, on, or from aircraft injuring other person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\(E843.9) Fall in, on, or from aircraft injuring other person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Fall in, on, or from aircraft (E843)\\\\(E843.9) Fall in, on, or from aircraft injuring other person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Fall in, on, or from aircraft (E843)\\" + }, + { + "displayName": "Other specified air transport accidents (E844)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\" + }, + { + "displayName": "(E844.0) Other specified air transport accidents injuring occupant of spacecraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\(E844.0) Other specified air transport accidents injuring occupant of spacecraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\\\Other specified air transport accidents (E844)\\\\(E844.0) Other specified air transport accidents injuring occupant of spacecraft\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\" + }, + { + "displayName": "(E844.1) Other specified air transport accidents injuring occupant of military aircraft, any", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\(E844.1) Other specified air transport accidents injuring occupant of military aircraft, any\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\" + }, + { + "displayName": "(E844.2) Other specified air transport accidents injuring crew of commercial aircraft (powered) in surface to surface transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\(E844.2) Other specified air transport accidents injuring crew of commercial aircraft (powered) in surface to surface transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\" + }, + { + "displayName": "(E844.3) Other specified air transport accidents injuring other occupant of commercial aircraft (powered) in surface to surface transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\(E844.3) Other specified air transport accidents injuring other occupant of commercial aircraft (powered) in surface to surface transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\" + }, + { + "displayName": "(E844.4) Other specified air transport accidents injuring occupant of commercial aircraft (powered) in surface to air transport", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\(E844.4) Other specified air transport accidents injuring occupant of commercial aircraft (powered) in surface to air transport\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\" + }, + { + "displayName": "(E844.5) Other specified air transport accidents injuring occupant of other powered aircraft", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\(E844.5) Other specified air transport accidents injuring occupant of other powered aircraft\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\" + }, + { + "displayName": "(E844.6) Other specified air transport accidents injuring occupant of unpowered aircraft, except parachutist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\(E844.6) Other specified air transport accidents injuring occupant of unpowered aircraft, except parachutist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\" + }, + { + "displayName": "(E844.7) Other specified air transport accidents injuring parachutist (military) (other)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\(E844.7) Other specified air transport accidents injuring parachutist (military) (other)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\" + }, + { + "displayName": "(E844.8) Other specified air transport accidents injuring ground crew, airline employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\(E844.8) Other specified air transport accidents injuring ground crew, airline employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\" + }, + { + "displayName": "(E844.9) Other specified air transport accidents injuring other person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\(E844.9) Other specified air transport accidents injuring other person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\AIR AND SPACE TRANSPORT ACCIDENTS (E840-E845.9)\\Other specified air transport accidents (E844)\\" + }, + { + "displayName": "MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\" + }, + { + "displayName": "Nontraffic accident involving motor-driven snow vehicle (E820)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\" + }, + { + "displayName": "(E820.0) Nontraffic accident involving motor-driven snow vehicle injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\(E820.0) Nontraffic accident involving motor-driven snow vehicle injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\" + }, + { + "displayName": "(E820.1) Nontraffic accident involving motor-driven snow vehicle injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\(E820.1) Nontraffic accident involving motor-driven snow vehicle injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\" + }, + { + "displayName": "(E820.2) Nontraffic accident involving motor-driven snow vehicle injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\(E820.2) Nontraffic accident involving motor-driven snow vehicle injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\" + }, + { + "displayName": "(E820.3) Nontraffic accident involving motor-driven snow vehicle injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\(E820.3) Nontraffic accident involving motor-driven snow vehicle injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Nontraffic accident involving motor-driven snow vehicle (E820)\\\\(E820.3) Nontraffic accident involving motor-driven snow vehicle injuring passenger on motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\" + }, + { + "displayName": "(E820.4) Nontraffic accident involving motor-driven snow vehicle injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\(E820.4) Nontraffic accident involving motor-driven snow vehicle injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Nontraffic accident involving motor-driven snow vehicle (E820)\\\\(E820.4) Nontraffic accident involving motor-driven snow vehicle injuring occupant of streetcar\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\" + }, + { + "displayName": "(E820.5) Nontraffic accident involving motor-driven snow vehicle injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\(E820.5) Nontraffic accident involving motor-driven snow vehicle injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Nontraffic accident involving motor-driven snow vehicle (E820)\\\\(E820.5) Nontraffic accident involving motor-driven snow vehicle injuring rider of animal; occupant of animal-drawn vehicle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\" + }, + { + "displayName": "(E820.6) Nontraffic accident involving motor-driven snow vehicle injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\(E820.6) Nontraffic accident involving motor-driven snow vehicle injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Nontraffic accident involving motor-driven snow vehicle (E820)\\\\(E820.6) Nontraffic accident involving motor-driven snow vehicle injuring pedal cyclist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\" + }, + { + "displayName": "(E820.7) Nontraffic accident involving motor-driven snow vehicle injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\(E820.7) Nontraffic accident involving motor-driven snow vehicle injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Nontraffic accident involving motor-driven snow vehicle (E820)\\\\(E820.7) Nontraffic accident involving motor-driven snow vehicle injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\" + }, + { + "displayName": "(E820.8) Nontraffic accident involving motor-driven snow vehicle injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\(E820.8) Nontraffic accident involving motor-driven snow vehicle injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Nontraffic accident involving motor-driven snow vehicle (E820)\\\\(E820.8) Nontraffic accident involving motor-driven snow vehicle injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\" + }, + { + "displayName": "(E820.9) Nontraffic accident involving motor-driven snow vehicle injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\(E820.9) Nontraffic accident involving motor-driven snow vehicle injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving motor-driven snow vehicle (E820)\\" + }, + { + "displayName": "Nontraffic accident involving other off-road motor vehicle (E821)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\" + }, + { + "displayName": "(E821.0) Nontraffic accident involving other off-road motor vehicle injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\(E821.0) Nontraffic accident involving other off-road motor vehicle injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\" + }, + { + "displayName": "(E821.1) Nontraffic accident involving other off-road motor vehicle injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\(E821.1) Nontraffic accident involving other off-road motor vehicle injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\" + }, + { + "displayName": "(E821.2) Nontraffic accident involving other off-road motor vehicle injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\(E821.2) Nontraffic accident involving other off-road motor vehicle injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\" + }, + { + "displayName": "(E821.3) Nontraffic accident involving other off-road motor vehicle injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\(E821.3) Nontraffic accident involving other off-road motor vehicle injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\" + }, + { + "displayName": "(E821.4) Nontraffic accident involving other off-road motor vehicle injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\(E821.4) Nontraffic accident involving other off-road motor vehicle injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\" + }, + { + "displayName": "(E821.5) Nontraffic accident involving other off-road motor vehicle injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\(E821.5) Nontraffic accident involving other off-road motor vehicle injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\" + }, + { + "displayName": "(E821.6) Nontraffic accident involving other off-road motor vehicle injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\(E821.6) Nontraffic accident involving other off-road motor vehicle injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\" + }, + { + "displayName": "(E821.7) Nontraffic accident involving other off-road motor vehicle injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\(E821.7) Nontraffic accident involving other off-road motor vehicle injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Nontraffic accident involving other off-road motor vehicle (E821)\\\\(E821.7) Nontraffic accident involving other off-road motor vehicle injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\" + }, + { + "displayName": "(E821.8) Nontraffic accident involving other off-road motor vehicle injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\(E821.8) Nontraffic accident involving other off-road motor vehicle injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Nontraffic accident involving other off-road motor vehicle (E821)\\\\(E821.8) Nontraffic accident involving other off-road motor vehicle injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\" + }, + { + "displayName": "(E821.9) Nontraffic accident involving other off-road motor vehicle injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\(E821.9) Nontraffic accident involving other off-road motor vehicle injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Nontraffic accident involving other off-road motor vehicle (E821)\\\\(E821.9) Nontraffic accident involving other off-road motor vehicle injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Nontraffic accident involving other off-road motor vehicle (E821)\\" + }, + { + "displayName": "Other motor vehicle nontraffic accident involving collision with moving object (E822)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\" + }, + { + "displayName": "(E822.0) Other motor vehicle nontraffic accident involving collision with moving object injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\(E822.0) Other motor vehicle nontraffic accident involving collision with moving object injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\\\(E822.0) Other motor vehicle nontraffic accident involving collision with moving object injuring driver of motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\" + }, + { + "displayName": "(E822.1) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\(E822.1) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\" + }, + { + "displayName": "(E822.2) Other motor vehicle nontraffic accident involving collision with moving object injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\(E822.2) Other motor vehicle nontraffic accident involving collision with moving object injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\" + }, + { + "displayName": "(E822.3) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\(E822.3) Other motor vehicle nontraffic accident involving collision with moving object injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\" + }, + { + "displayName": "(E822.4) Other motor vehicle nontraffic accident involving collision with moving object injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\(E822.4) Other motor vehicle nontraffic accident involving collision with moving object injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\\\(E822.4) Other motor vehicle nontraffic accident involving collision with moving object injuring occupant of streetcar\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\" + }, + { + "displayName": "(E822.5) Other motor vehicle nontraffic accident involving collision with moving object injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\(E822.5) Other motor vehicle nontraffic accident involving collision with moving object injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\\\(E822.5) Other motor vehicle nontraffic accident involving collision with moving object injuring rider of animal; occupant of animal-drawn vehicle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\" + }, + { + "displayName": "(E822.6) Other motor vehicle nontraffic accident involving collision with moving object injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\(E822.6) Other motor vehicle nontraffic accident involving collision with moving object injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\" + }, + { + "displayName": "(E822.7) Other motor vehicle nontraffic accident involving collision with moving object injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\(E822.7) Other motor vehicle nontraffic accident involving collision with moving object injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\\\(E822.7) Other motor vehicle nontraffic accident involving collision with moving object injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\" + }, + { + "displayName": "(E822.8) Other motor vehicle nontraffic accident involving collision with moving object injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\(E822.8) Other motor vehicle nontraffic accident involving collision with moving object injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\\\(E822.8) Other motor vehicle nontraffic accident involving collision with moving object injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\" + }, + { + "displayName": "(E822.9) Other motor vehicle nontraffic accident involving collision with moving object injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\(E822.9) Other motor vehicle nontraffic accident involving collision with moving object injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with moving object (E822)\\" + }, + { + "displayName": "Other motor vehicle nontraffic accident involving collision with stationary object (E823)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\" + }, + { + "displayName": "(E823.0) Other motor vehicle nontraffic accident involving collision with stationary object injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\(E823.0) Other motor vehicle nontraffic accident involving collision with stationary object injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\" + }, + { + "displayName": "(E823.1) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\(E823.1) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\" + }, + { + "displayName": "(E823.2) Other motor vehicle nontraffic accident involving collision with stationary object injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\(E823.2) Other motor vehicle nontraffic accident involving collision with stationary object injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\" + }, + { + "displayName": "(E823.3) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\(E823.3) Other motor vehicle nontraffic accident involving collision with stationary object injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\" + }, + { + "displayName": "(E823.4) Other motor vehicle nontraffic accident involving collision with stationary object injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\(E823.4) Other motor vehicle nontraffic accident involving collision with stationary object injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\" + }, + { + "displayName": "(E823.5) Other motor vehicle nontraffic accident involving collision with stationary object injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\(E823.5) Other motor vehicle nontraffic accident involving collision with stationary object injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\" + }, + { + "displayName": "(E823.6) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\(E823.6) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\" + }, + { + "displayName": "(E823.7) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\(E823.7) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\\\(E823.7) Other motor vehicle nontraffic accident involving collision with stationary object injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\" + }, + { + "displayName": "(E823.8) Other motor vehicle nontraffic accident involving collision with stationary object injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\(E823.8) Other motor vehicle nontraffic accident involving collision with stationary object injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\" + }, + { + "displayName": "(E823.9) Other motor vehicle nontraffic accident involving collision with stationary object injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\(E823.9) Other motor vehicle nontraffic accident involving collision with stationary object injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\\\(E823.9) Other motor vehicle nontraffic accident involving collision with stationary object injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident involving collision with stationary object (E823)\\" + }, + { + "displayName": "Other motor vehicle nontraffic accident of other and unspecified nature (E825)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\" + }, + { + "displayName": "(E825.0) Other motor vehicle nontraffic accident of other and unspecified nature injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\(E825.0) Other motor vehicle nontraffic accident of other and unspecified nature injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\\\(E825.0) Other motor vehicle nontraffic accident of other and unspecified nature injuring driver of motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\" + }, + { + "displayName": "(E825.1) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\(E825.1) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\\\(E825.1) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger in motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\" + }, + { + "displayName": "(E825.2) Other motor vehicle nontraffic accident of other and unspecified nature injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\(E825.2) Other motor vehicle nontraffic accident of other and unspecified nature injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\\\(E825.2) Other motor vehicle nontraffic accident of other and unspecified nature injuring motorcyclist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\" + }, + { + "displayName": "(E825.3) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\(E825.3) Other motor vehicle nontraffic accident of other and unspecified nature injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\" + }, + { + "displayName": "(E825.4) Other motor vehicle nontraffic accident of other and unspecified nature injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\(E825.4) Other motor vehicle nontraffic accident of other and unspecified nature injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\" + }, + { + "displayName": "(E825.5) Other motor vehicle nontraffic accident of other and unspecified nature injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\(E825.5) Other motor vehicle nontraffic accident of other and unspecified nature injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\\\(E825.5) Other motor vehicle nontraffic accident of other and unspecified nature injuring rider of animal; occupant of animal-drawn vehicle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\" + }, + { + "displayName": "(E825.6) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\(E825.6) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\\\(E825.6) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedal cyclist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\" + }, + { + "displayName": "(E825.7) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\(E825.7) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\\\(E825.7) Other motor vehicle nontraffic accident of other and unspecified nature injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\" + }, + { + "displayName": "(E825.8) Other motor vehicle nontraffic accident of other and unspecified nature injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\(E825.8) Other motor vehicle nontraffic accident of other and unspecified nature injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\" + }, + { + "displayName": "(E825.9) Other motor vehicle nontraffic accident of other and unspecified nature injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\(E825.9) Other motor vehicle nontraffic accident of other and unspecified nature injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\\\(E825.9) Other motor vehicle nontraffic accident of other and unspecified nature injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident of other and unspecified nature (E825)\\" + }, + { + "displayName": "Other motor vehicle nontraffic accident while boarding and alighting (E824)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\" + }, + { + "displayName": "(E824.0) Other motor vehicle nontraffic accident while boarding and alighting injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\(E824.0) Other motor vehicle nontraffic accident while boarding and alighting injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\" + }, + { + "displayName": "(E824.1) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\(E824.1) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\\\(E824.1) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger in motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\" + }, + { + "displayName": "(E824.2) Other motor vehicle nontraffic accident while boarding and alighting injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\(E824.2) Other motor vehicle nontraffic accident while boarding and alighting injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\\\(E824.2) Other motor vehicle nontraffic accident while boarding and alighting injuring motorcyclist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\" + }, + { + "displayName": "(E824.3) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\(E824.3) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\\\(E824.3) Other motor vehicle nontraffic accident while boarding and alighting injuring passenger on motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\" + }, + { + "displayName": "(E824.4) Other motor vehicle nontraffic accident while boarding and alighting injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\(E824.4) Other motor vehicle nontraffic accident while boarding and alighting injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\\\(E824.4) Other motor vehicle nontraffic accident while boarding and alighting injuring occupant of streetcar\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\" + }, + { + "displayName": "(E824.5) Other motor vehicle nontraffic accident while boarding and alighting injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\(E824.5) Other motor vehicle nontraffic accident while boarding and alighting injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\\\(E824.5) Other motor vehicle nontraffic accident while boarding and alighting injuring rider of animal; occupant of animal-drawn vehicle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\" + }, + { + "displayName": "(E824.6) Other motor vehicle nontraffic accident while boarding and alighting injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\(E824.6) Other motor vehicle nontraffic accident while boarding and alighting injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\\\(E824.6) Other motor vehicle nontraffic accident while boarding and alighting injuring pedal cyclist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\" + }, + { + "displayName": "(E824.7) Other motor vehicle nontraffic accident while boarding and alighting injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\(E824.7) Other motor vehicle nontraffic accident while boarding and alighting injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\\\(E824.7) Other motor vehicle nontraffic accident while boarding and alighting injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\" + }, + { + "displayName": "(E824.8) Other motor vehicle nontraffic accident while boarding and alighting injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\(E824.8) Other motor vehicle nontraffic accident while boarding and alighting injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\" + }, + { + "displayName": "(E824.9) Other motor vehicle nontraffic accident while boarding and alighting injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\(E824.9) Other motor vehicle nontraffic accident while boarding and alighting injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE NONTRAFFIC ACCIDENTS (E820-E825.9)\\Other motor vehicle nontraffic accident while boarding and alighting (E824)\\" + }, + { + "displayName": "MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\" + }, + { + "displayName": "Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\" + }, + { + "displayName": "(E816.0) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\(E816.0) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\" + }, + { + "displayName": "(E816.1) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\(E816.1) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\" + }, + { + "displayName": "(E816.2) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\(E816.2) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\" + }, + { + "displayName": "(E816.3) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\(E816.3) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\" + }, + { + "displayName": "(E816.4) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\(E816.4) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\\\(E816.4) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring occupant of streetcar\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\" + }, + { + "displayName": "(E816.5) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\(E816.5) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\" + }, + { + "displayName": "(E816.6) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\(E816.6) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\\\(E816.6) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedal cyclist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\" + }, + { + "displayName": "(E816.7) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\(E816.7) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\\\(E816.7) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\" + }, + { + "displayName": "(E816.8) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\(E816.8) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\" + }, + { + "displayName": "(E816.9) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\(E816.9) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\\\(E816.9) Motor vehicle traffic accident due to loss of control, without collision on the highway, injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident due to loss of control, without collision on the highway (E816)\\" + }, + { + "displayName": "Motor vehicle traffic accident involving collision with other vehicle (E813)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\" + }, + { + "displayName": "(E813.0) Motor vehicle traffic accident involving collision with other vehicle injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\(E813.0) Motor vehicle traffic accident involving collision with other vehicle injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\" + }, + { + "displayName": "(E813.1) Motor vehicle traffic accident involving collision with other vehicle injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\(E813.1) Motor vehicle traffic accident involving collision with other vehicle injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\" + }, + { + "displayName": "(E813.2) Motor vehicle traffic accident involving collision with other vehicle injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\(E813.2) Motor vehicle traffic accident involving collision with other vehicle injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\" + }, + { + "displayName": "(E813.3) Motor vehicle traffic accident involving collision with other vehicle injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\(E813.3) Motor vehicle traffic accident involving collision with other vehicle injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\" + }, + { + "displayName": "(E813.4) Motor vehicle traffic accident involving collision with other vehicle injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\(E813.4) Motor vehicle traffic accident involving collision with other vehicle injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\" + }, + { + "displayName": "(E813.5) Motor vehicle traffic accident involving collision with other vehicle injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\(E813.5) Motor vehicle traffic accident involving collision with other vehicle injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\" + }, + { + "displayName": "(E813.6) Motor vehicle traffic accident involving collision with other vehicle injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\(E813.6) Motor vehicle traffic accident involving collision with other vehicle injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\" + }, + { + "displayName": "(E813.7) Motor vehicle traffic accident involving collision with other vehicle injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\(E813.7) Motor vehicle traffic accident involving collision with other vehicle injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\" + }, + { + "displayName": "(E813.8) Motor vehicle traffic accident involving collision with other vehicle injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\(E813.8) Motor vehicle traffic accident involving collision with other vehicle injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\" + }, + { + "displayName": "(E813.9) Motor vehicle traffic accident involving collision with other vehicle injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\(E813.9) Motor vehicle traffic accident involving collision with other vehicle injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with other vehicle (E813)\\" + }, + { + "displayName": "Motor vehicle traffic accident involving collision with pedestrian (E814)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\" + }, + { + "displayName": "(E814.0) Motor vehicle traffic accident involving collision with pedestrian injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\(E814.0) Motor vehicle traffic accident involving collision with pedestrian injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\\\(E814.0) Motor vehicle traffic accident involving collision with pedestrian injuring driver of motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\" + }, + { + "displayName": "(E814.1) Motor vehicle traffic accident involving collision with pedestrian injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\(E814.1) Motor vehicle traffic accident involving collision with pedestrian injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\" + }, + { + "displayName": "(E814.2) Motor vehicle traffic accident involving collision with pedestrian injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\(E814.2) Motor vehicle traffic accident involving collision with pedestrian injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\\\(E814.2) Motor vehicle traffic accident involving collision with pedestrian injuring motorcyclist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\" + }, + { + "displayName": "(E814.3) Motor vehicle traffic accident involving collision with pedestrian injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\(E814.3) Motor vehicle traffic accident involving collision with pedestrian injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\" + }, + { + "displayName": "(E814.4) Motor vehicle traffic accident involving collision with pedestrian injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\(E814.4) Motor vehicle traffic accident involving collision with pedestrian injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\\\(E814.4) Motor vehicle traffic accident involving collision with pedestrian injuring occupant of streetcar\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\" + }, + { + "displayName": "(E814.5) Motor vehicle traffic accident involving collision with pedestrian injuring rider of animal; occupant of animal drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\(E814.5) Motor vehicle traffic accident involving collision with pedestrian injuring rider of animal; occupant of animal drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\\\(E814.5) Motor vehicle traffic accident involving collision with pedestrian injuring rider of animal; occupant of animal drawn vehicle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\" + }, + { + "displayName": "(E814.6) Motor vehicle traffic accident involving collision with pedestrian injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\(E814.6) Motor vehicle traffic accident involving collision with pedestrian injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\\\(E814.6) Motor vehicle traffic accident involving collision with pedestrian injuring pedal cyclist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\" + }, + { + "displayName": "(E814.7) Motor vehicle traffic accident involving collision with pedestrian injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\(E814.7) Motor vehicle traffic accident involving collision with pedestrian injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\\\(E814.7) Motor vehicle traffic accident involving collision with pedestrian injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\" + }, + { + "displayName": "(E814.8) Motor vehicle traffic accident involving collision with pedestrian injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\(E814.8) Motor vehicle traffic accident involving collision with pedestrian injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\\\(E814.8) Motor vehicle traffic accident involving collision with pedestrian injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\" + }, + { + "displayName": "(E814.9) Motor vehicle traffic accident involving collision with pedestrian injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\(E814.9) Motor vehicle traffic accident involving collision with pedestrian injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with pedestrian (E814)\\" + }, + { + "displayName": "Motor vehicle traffic accident involving collision with train (E810)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with train (E810)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\" + }, + { + "displayName": "(E810.0) Motor vehicle traffic accident involving collision with train injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\(E810.0) Motor vehicle traffic accident involving collision with train injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with train (E810)\\\\(E810.0) Motor vehicle traffic accident involving collision with train injuring driver of motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\" + }, + { + "displayName": "(E810.1) Motor vehicle traffic accident involving collision with train injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\(E810.1) Motor vehicle traffic accident involving collision with train injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with train (E810)\\\\(E810.1) Motor vehicle traffic accident involving collision with train injuring passenger in motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\" + }, + { + "displayName": "(E810.2) Motor vehicle traffic accident involving collision with train injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\(E810.2) Motor vehicle traffic accident involving collision with train injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\" + }, + { + "displayName": "(E810.3) Motor vehicle traffic accident involving collision with train injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\(E810.3) Motor vehicle traffic accident involving collision with train injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with train (E810)\\\\(E810.3) Motor vehicle traffic accident involving collision with train injuring passenger on motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\" + }, + { + "displayName": "(E810.4) Motor vehicle traffic accident involving collision with train injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\(E810.4) Motor vehicle traffic accident involving collision with train injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with train (E810)\\\\(E810.4) Motor vehicle traffic accident involving collision with train injuring occupant of streetcar\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\" + }, + { + "displayName": "(E810.5) Motor vehicle traffic accident involving collision with train injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\(E810.5) Motor vehicle traffic accident involving collision with train injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with train (E810)\\\\(E810.5) Motor vehicle traffic accident involving collision with train injuring rider of animal; occupant of animal-drawn vehicle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\" + }, + { + "displayName": "(E810.6) Motor vehicle traffic accident involving collision with train injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\(E810.6) Motor vehicle traffic accident involving collision with train injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\" + }, + { + "displayName": "(E810.7) Motor vehicle traffic accident involving collision with train injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\(E810.7) Motor vehicle traffic accident involving collision with train injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with train (E810)\\\\(E810.7) Motor vehicle traffic accident involving collision with train injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\" + }, + { + "displayName": "(E810.8) Motor vehicle traffic accident involving collision with train injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\(E810.8) Motor vehicle traffic accident involving collision with train injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident involving collision with train (E810)\\\\(E810.8) Motor vehicle traffic accident involving collision with train injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\" + }, + { + "displayName": "(E810.9) Motor vehicle traffic accident involving collision with train injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\(E810.9) Motor vehicle traffic accident involving collision with train injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving collision with train (E810)\\" + }, + { + "displayName": "Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\" + }, + { + "displayName": "(E811.0) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\(E811.0) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\" + }, + { + "displayName": "(E811.1) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\(E811.1) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\" + }, + { + "displayName": "(E811.2) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\(E811.2) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\" + }, + { + "displayName": "(E811.3) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\(E811.3) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\" + }, + { + "displayName": "(E811.4) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\(E811.4) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\" + }, + { + "displayName": "(E811.5) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\(E811.5) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\" + }, + { + "displayName": "(E811.6) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\(E811.6) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\" + }, + { + "displayName": "(E811.7) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\(E811.7) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\" + }, + { + "displayName": "(E811.8) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\(E811.8) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\" + }, + { + "displayName": "(E811.9) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\(E811.9) Motor vehicle traffic accident involving re-entrant collision with another motor vehicle injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident involving re-entrant collision with another motor vehicle (E811)\\" + }, + { + "displayName": "Motor vehicle traffic accident of unspecified nature (E819)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\" + }, + { + "displayName": "(E819.0) Motor vehicle traffic accident of unspecified nature injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\(E819.0) Motor vehicle traffic accident of unspecified nature injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\" + }, + { + "displayName": "(E819.1) Motor vehicle traffic accident of unspecified nature injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\(E819.1) Motor vehicle traffic accident of unspecified nature injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\" + }, + { + "displayName": "(E819.2) Motor vehicle traffic accident of unspecified nature injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\(E819.2) Motor vehicle traffic accident of unspecified nature injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\" + }, + { + "displayName": "(E819.3) Motor vehicle traffic accident of unspecified nature injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\(E819.3) Motor vehicle traffic accident of unspecified nature injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\" + }, + { + "displayName": "(E819.4) Motor vehicle traffic accident of unspecified nature injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\(E819.4) Motor vehicle traffic accident of unspecified nature injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\" + }, + { + "displayName": "(E819.5) Motor vehicle traffic accident of unspecified nature injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\(E819.5) Motor vehicle traffic accident of unspecified nature injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\" + }, + { + "displayName": "(E819.6) Motor vehicle traffic accident of unspecified nature injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\(E819.6) Motor vehicle traffic accident of unspecified nature injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\" + }, + { + "displayName": "(E819.7) Motor vehicle traffic accident of unspecified nature injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\(E819.7) Motor vehicle traffic accident of unspecified nature injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\" + }, + { + "displayName": "(E819.8) Motor vehicle traffic accident of unspecified nature injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\(E819.8) Motor vehicle traffic accident of unspecified nature injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident of unspecified nature (E819)\\\\(E819.8) Motor vehicle traffic accident of unspecified nature injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\" + }, + { + "displayName": "(E819.9) Motor vehicle traffic accident of unspecified nature injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\(E819.9) Motor vehicle traffic accident of unspecified nature injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Motor vehicle traffic accident of unspecified nature (E819)\\\\(E819.9) Motor vehicle traffic accident of unspecified nature injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Motor vehicle traffic accident of unspecified nature (E819)\\" + }, + { + "displayName": "Noncollision motor vehicle traffic accident while boarding or alighting (E817)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\" + }, + { + "displayName": "(E817.0) Noncollision motor vehicle traffic accident while boarding or alighting injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\(E817.0) Noncollision motor vehicle traffic accident while boarding or alighting injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\\\(E817.0) Noncollision motor vehicle traffic accident while boarding or alighting injuring driver of motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\" + }, + { + "displayName": "(E817.1) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\(E817.1) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\\\(E817.1) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger in motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\" + }, + { + "displayName": "(E817.2) Noncollision motor vehicle traffic accident while boarding or alighting injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\(E817.2) Noncollision motor vehicle traffic accident while boarding or alighting injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\" + }, + { + "displayName": "(E817.3) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\(E817.3) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\\\(E817.3) Noncollision motor vehicle traffic accident while boarding or alighting injuring passenger on motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\" + }, + { + "displayName": "(E817.4) Noncollision motor vehicle traffic accident while boarding or alighting injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\(E817.4) Noncollision motor vehicle traffic accident while boarding or alighting injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\\\(E817.4) Noncollision motor vehicle traffic accident while boarding or alighting injuring occupant of streetcar\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\" + }, + { + "displayName": "(E817.5) Noncollision motor vehicle traffic accident while boarding or alighting injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\(E817.5) Noncollision motor vehicle traffic accident while boarding or alighting injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\" + }, + { + "displayName": "(E817.6) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\(E817.6) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\" + }, + { + "displayName": "(E817.7) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\(E817.7) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\\\(E817.7) Noncollision motor vehicle traffic accident while boarding or alighting injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\" + }, + { + "displayName": "(E817.8) Noncollision motor vehicle traffic accident while boarding or alighting injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\(E817.8) Noncollision motor vehicle traffic accident while boarding or alighting injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\\\(E817.8) Noncollision motor vehicle traffic accident while boarding or alighting injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\" + }, + { + "displayName": "(E817.9) Noncollision motor vehicle traffic accident while boarding or alighting injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\(E817.9) Noncollision motor vehicle traffic accident while boarding or alighting injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Noncollision motor vehicle traffic accident while boarding or alighting (E817)\\" + }, + { + "displayName": "Other motor vehicle traffic accident involving collision on the highway (E815)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Other motor vehicle traffic accident involving collision on the highway (E815)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\" + }, + { + "displayName": "(E815.0) Other motor vehicle traffic accident involving collision on the highway injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\(E815.0) Other motor vehicle traffic accident involving collision on the highway injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Other motor vehicle traffic accident involving collision on the highway (E815)\\\\(E815.0) Other motor vehicle traffic accident involving collision on the highway injuring driver of motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\" + }, + { + "displayName": "(E815.1) Other motor vehicle traffic accident involving collision on the highway injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\(E815.1) Other motor vehicle traffic accident involving collision on the highway injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Other motor vehicle traffic accident involving collision on the highway (E815)\\\\(E815.1) Other motor vehicle traffic accident involving collision on the highway injuring passenger in motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\" + }, + { + "displayName": "(E815.2) Other motor vehicle traffic accident involving collision on the highway injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\(E815.2) Other motor vehicle traffic accident involving collision on the highway injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\" + }, + { + "displayName": "(E815.3) Other motor vehicle traffic accident involving collision on the highway injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\(E815.3) Other motor vehicle traffic accident involving collision on the highway injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\" + }, + { + "displayName": "(E815.4) Other motor vehicle traffic accident involving collision on the highway injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\(E815.4) Other motor vehicle traffic accident involving collision on the highway injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\" + }, + { + "displayName": "(E815.5) Other motor vehicle traffic accident involving collision on the highway injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\(E815.5) Other motor vehicle traffic accident involving collision on the highway injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\" + }, + { + "displayName": "(E815.6) Other motor vehicle traffic accident involving collision on the highway injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\(E815.6) Other motor vehicle traffic accident involving collision on the highway injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\" + }, + { + "displayName": "(E815.7) Other motor vehicle traffic accident involving collision on the highway injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\(E815.7) Other motor vehicle traffic accident involving collision on the highway injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\" + }, + { + "displayName": "(E815.8) Other motor vehicle traffic accident involving collision on the highway injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\(E815.8) Other motor vehicle traffic accident involving collision on the highway injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\" + }, + { + "displayName": "(E815.9) Other motor vehicle traffic accident involving collision on the highway injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\(E815.9) Other motor vehicle traffic accident involving collision on the highway injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision on the highway (E815)\\" + }, + { + "displayName": "Other motor vehicle traffic accident involving collision with motor vehicle (E812)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\" + }, + { + "displayName": "(E812.0) Other motor vehicle traffic accident involving collision with motor vehicle injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\(E812.0) Other motor vehicle traffic accident involving collision with motor vehicle injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\" + }, + { + "displayName": "(E812.1) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\(E812.1) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\" + }, + { + "displayName": "(E812.2) Other motor vehicle traffic accident involving collision with motor vehicle injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\(E812.2) Other motor vehicle traffic accident involving collision with motor vehicle injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\\\(E812.2) Other motor vehicle traffic accident involving collision with motor vehicle injuring motorcyclist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\" + }, + { + "displayName": "(E812.3) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\(E812.3) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\\\(E812.3) Other motor vehicle traffic accident involving collision with motor vehicle injuring passenger on motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\" + }, + { + "displayName": "(E812.4) Other motor vehicle traffic accident involving collision with motor vehicle injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\(E812.4) Other motor vehicle traffic accident involving collision with motor vehicle injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\\\(E812.4) Other motor vehicle traffic accident involving collision with motor vehicle injuring occupant of streetcar\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\" + }, + { + "displayName": "(E812.5) Other motor vehicle traffic accident involving collision with motor vehicle injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\(E812.5) Other motor vehicle traffic accident involving collision with motor vehicle injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\\\(E812.5) Other motor vehicle traffic accident involving collision with motor vehicle injuring rider of animal; occupant of animal-drawn vehicle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\" + }, + { + "displayName": "(E812.6) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\(E812.6) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\" + }, + { + "displayName": "(E812.7) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\(E812.7) Other motor vehicle traffic accident involving collision with motor vehicle injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\" + }, + { + "displayName": "(E812.8) Other motor vehicle traffic accident involving collision with motor vehicle injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\(E812.8) Other motor vehicle traffic accident involving collision with motor vehicle injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\" + }, + { + "displayName": "(E812.9) Other motor vehicle traffic accident involving collision with motor vehicle injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\(E812.9) Other motor vehicle traffic accident involving collision with motor vehicle injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other motor vehicle traffic accident involving collision with motor vehicle (E812)\\" + }, + { + "displayName": "Other noncollision motor vehicle traffic accident (E818)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\" + }, + { + "displayName": "(E818.0) Other noncollision motor vehicle traffic accident injuring driver of motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\(E818.0) Other noncollision motor vehicle traffic accident injuring driver of motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Other noncollision motor vehicle traffic accident (E818)\\\\(E818.0) Other noncollision motor vehicle traffic accident injuring driver of motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\" + }, + { + "displayName": "(E818.1) Other noncollision motor vehicle traffic accident injuring passenger in motor vehicle other than motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\(E818.1) Other noncollision motor vehicle traffic accident injuring passenger in motor vehicle other than motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Other noncollision motor vehicle traffic accident (E818)\\\\(E818.1) Other noncollision motor vehicle traffic accident injuring passenger in motor vehicle other than motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\" + }, + { + "displayName": "(E818.2) Other noncollision motor vehicle traffic accident injuring motorcyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\(E818.2) Other noncollision motor vehicle traffic accident injuring motorcyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\" + }, + { + "displayName": "(E818.3) Other noncollision motor vehicle traffic accident injuring passenger on motorcycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\(E818.3) Other noncollision motor vehicle traffic accident injuring passenger on motorcycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Other noncollision motor vehicle traffic accident (E818)\\\\(E818.3) Other noncollision motor vehicle traffic accident injuring passenger on motorcycle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\" + }, + { + "displayName": "(E818.4) Other noncollision motor vehicle traffic accident injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\(E818.4) Other noncollision motor vehicle traffic accident injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\\\Other noncollision motor vehicle traffic accident (E818)\\\\(E818.4) Other noncollision motor vehicle traffic accident injuring occupant of streetcar\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\" + }, + { + "displayName": "(E818.5) Other noncollision motor vehicle traffic accident injuring rider of animal; occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\(E818.5) Other noncollision motor vehicle traffic accident injuring rider of animal; occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\" + }, + { + "displayName": "(E818.6) Other noncollision motor vehicle traffic accident injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\(E818.6) Other noncollision motor vehicle traffic accident injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\" + }, + { + "displayName": "(E818.7) Other noncollision motor vehicle traffic accident injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\(E818.7) Other noncollision motor vehicle traffic accident injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\" + }, + { + "displayName": "(E818.8) Other noncollision motor vehicle traffic accident injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\(E818.8) Other noncollision motor vehicle traffic accident injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\" + }, + { + "displayName": "(E818.9) Other noncollision motor vehicle traffic accident injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\(E818.9) Other noncollision motor vehicle traffic accident injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\MOTOR VEHICLE TRAFFIC ACCIDENTS (E810-E819.9)\\Other noncollision motor vehicle traffic accident (E818)\\" + }, + { + "displayName": "OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\" + }, + { + "displayName": "Accident involving animal being ridden (E828)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Accident involving animal being ridden (E828)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\" + }, + { + "displayName": "(E828.0) Accident involving animal being ridden injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Accident involving animal being ridden (E828)\\(E828.0) Accident involving animal being ridden injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Accident involving animal being ridden (E828)\\" + }, + { + "displayName": "(E828.2) Accident involving animal being ridden injuring rider of animal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Accident involving animal being ridden (E828)\\(E828.2) Accident involving animal being ridden injuring rider of animal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Accident involving animal being ridden (E828)\\" + }, + { + "displayName": "(E828.4) Accident involving animal being ridden injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Accident involving animal being ridden (E828)\\(E828.4) Accident involving animal being ridden injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Accident involving animal being ridden (E828)\\" + }, + { + "displayName": "(E828.8) Accident involving animal being ridden injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Accident involving animal being ridden (E828)\\(E828.8) Accident involving animal being ridden injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\\\Accident involving animal being ridden (E828)\\\\(E828.8) Accident involving animal being ridden injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Accident involving animal being ridden (E828)\\" + }, + { + "displayName": "(E828.9) Accident involving animal being ridden injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Accident involving animal being ridden (E828)\\(E828.9) Accident involving animal being ridden injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\\\Accident involving animal being ridden (E828)\\\\(E828.9) Accident involving animal being ridden injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Accident involving animal being ridden (E828)\\" + }, + { + "displayName": "Animal-drawn vehicle accident (E827)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\\\Animal-drawn vehicle accident (E827)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\" + }, + { + "displayName": "(E827.0) Animal-drawn vehicle accident injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\(E827.0) Animal-drawn vehicle accident injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\\\Animal-drawn vehicle accident (E827)\\\\(E827.0) Animal-drawn vehicle accident injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\" + }, + { + "displayName": "(E827.2) Animal-drawn vehicle accident injuring rider of animal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\(E827.2) Animal-drawn vehicle accident injuring rider of animal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\\\Animal-drawn vehicle accident (E827)\\\\(E827.2) Animal-drawn vehicle accident injuring rider of animal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\" + }, + { + "displayName": "(E827.3) Animal-drawn vehicle accident injuring occupant of animal drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\(E827.3) Animal-drawn vehicle accident injuring occupant of animal drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\\\Animal-drawn vehicle accident (E827)\\\\(E827.3) Animal-drawn vehicle accident injuring occupant of animal drawn vehicle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\" + }, + { + "displayName": "(E827.4) Animal-drawn vehicle accident injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\(E827.4) Animal-drawn vehicle accident injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\" + }, + { + "displayName": "(E827.8) Animal-drawn vehicle accident injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\(E827.8) Animal-drawn vehicle accident injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\" + }, + { + "displayName": "(E827.9) Animal-drawn vehicle accident injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\(E827.9) Animal-drawn vehicle accident injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Animal-drawn vehicle accident (E827)\\" + }, + { + "displayName": "Other road vehicle accidents (E829)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Other road vehicle accidents (E829)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\" + }, + { + "displayName": "(E829.0) Other road vehicle accidents injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Other road vehicle accidents (E829)\\(E829.0) Other road vehicle accidents injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Other road vehicle accidents (E829)\\" + }, + { + "displayName": "(E829.4) Other road vehicle accidents injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Other road vehicle accidents (E829)\\(E829.4) Other road vehicle accidents injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Other road vehicle accidents (E829)\\" + }, + { + "displayName": "(E829.8) Other road vehicle accidents injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Other road vehicle accidents (E829)\\(E829.8) Other road vehicle accidents injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Other road vehicle accidents (E829)\\" + }, + { + "displayName": "(E829.9) Other road vehicle accidents injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Other road vehicle accidents (E829)\\(E829.9) Other road vehicle accidents injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Other road vehicle accidents (E829)\\" + }, + { + "displayName": "Pedal cycle accident (E826)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\" + }, + { + "displayName": "(E826.0) Pedal cycle accident injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\(E826.0) Pedal cycle accident injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\" + }, + { + "displayName": "(E826.1) Pedal cycle accident injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\(E826.1) Pedal cycle accident injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\" + }, + { + "displayName": "(E826.2) Pedal cycle accident injuring rider of animal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\(E826.2) Pedal cycle accident injuring rider of animal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\" + }, + { + "displayName": "(E826.3) Pedal cycle accident injuring occupant of animal-drawn vehicle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\(E826.3) Pedal cycle accident injuring occupant of animal-drawn vehicle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\\\Pedal cycle accident (E826)\\\\(E826.3) Pedal cycle accident injuring occupant of animal-drawn vehicle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\" + }, + { + "displayName": "(E826.4) Pedal cycle accident injuring occupant of streetcar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\(E826.4) Pedal cycle accident injuring occupant of streetcar\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\" + }, + { + "displayName": "(E826.8) Pedal cycle accident injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\(E826.8) Pedal cycle accident injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\\\Pedal cycle accident (E826)\\\\(E826.8) Pedal cycle accident injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\" + }, + { + "displayName": "(E826.9) Pedal cycle accident injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\(E826.9) Pedal cycle accident injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\\\Pedal cycle accident (E826)\\\\(E826.9) Pedal cycle accident injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\OTHER ROAD VEHICLE ACCIDENTS (E826-E829.9)\\Pedal cycle accident (E826)\\" + }, + { + "displayName": "RAILWAY ACCIDENTS (E800-E807.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\" + }, + { + "displayName": "Fall in, on, or from railway train (E804)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\" + }, + { + "displayName": "(E804.0) Fall in, on, or from railway train injuring railway employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\(E804.0) Fall in, on, or from railway train injuring railway employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Fall in, on, or from railway train (E804)\\\\(E804.0) Fall in, on, or from railway train injuring railway employee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\" + }, + { + "displayName": "(E804.1) Fall in, on, or from railway train injuring passenger on railway", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\(E804.1) Fall in, on, or from railway train injuring passenger on railway\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Fall in, on, or from railway train (E804)\\\\(E804.1) Fall in, on, or from railway train injuring passenger on railway\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\" + }, + { + "displayName": "(E804.2) Fall in, on, or from railway train injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\(E804.2) Fall in, on, or from railway train injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Fall in, on, or from railway train (E804)\\\\(E804.2) Fall in, on, or from railway train injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\" + }, + { + "displayName": "(E804.3) Fall in, on, or from railway train injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\(E804.3) Fall in, on, or from railway train injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\" + }, + { + "displayName": "(E804.8) Fall in, on, or from railway train injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\(E804.8) Fall in, on, or from railway train injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\" + }, + { + "displayName": "(E804.9) Fall in, on, or from railway train injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\(E804.9) Fall in, on, or from railway train injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Fall in, on, or from railway train (E804)\\" + }, + { + "displayName": "Hit by rolling stock (E805)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\" + }, + { + "displayName": "(E805.0) Railway employee hit by rolling stock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\(E805.0) Railway employee hit by rolling stock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\" + }, + { + "displayName": "(E805.1) Passenger on railway hit by rolling stock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\(E805.1) Passenger on railway hit by rolling stock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\" + }, + { + "displayName": "(E805.2) Pedestrian hit by rolling stock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\(E805.2) Pedestrian hit by rolling stock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\" + }, + { + "displayName": "(E805.3) Pedal cyclist hit by rolling stock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\(E805.3) Pedal cyclist hit by rolling stock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\" + }, + { + "displayName": "(E805.8) Other specified person hit by rolling stock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\(E805.8) Other specified person hit by rolling stock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\" + }, + { + "displayName": "(E805.9) Unspecified person hit by rolling stock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\(E805.9) Unspecified person hit by rolling stock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Hit by rolling stock (E805)\\" + }, + { + "displayName": "Other specified railway accident (E806)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\" + }, + { + "displayName": "(E806.0) Other specified railway accident injuring railway employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\(E806.0) Other specified railway accident injuring railway employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\" + }, + { + "displayName": "(E806.1) Other specified railway accident injuring passenger on railway", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\(E806.1) Other specified railway accident injuring passenger on railway\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\" + }, + { + "displayName": "(E806.2) Other specified railway accident injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\(E806.2) Other specified railway accident injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Other specified railway accident (E806)\\\\(E806.2) Other specified railway accident injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\" + }, + { + "displayName": "(E806.3) Other specified railway accident injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\(E806.3) Other specified railway accident injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\" + }, + { + "displayName": "(E806.8) Other specified railway accident injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\(E806.8) Other specified railway accident injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Other specified railway accident (E806)\\\\(E806.8) Other specified railway accident injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\" + }, + { + "displayName": "(E806.9) Other specified railway accident injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\(E806.9) Other specified railway accident injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Other specified railway accident (E806)\\\\(E806.9) Other specified railway accident injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Other specified railway accident (E806)\\" + }, + { + "displayName": "Railway accident involving collision with other object (E801)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\" + }, + { + "displayName": "(E801.0) Railway accident involving collision with other object and injuring railway employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\(E801.0) Railway accident involving collision with other object and injuring railway employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\" + }, + { + "displayName": "(E801.1) Railway accident involving collision with other object and injuring passenger on railway", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\(E801.1) Railway accident involving collision with other object and injuring passenger on railway\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\" + }, + { + "displayName": "(E801.2) Railway accident involving collision with other object and injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\(E801.2) Railway accident involving collision with other object and injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\" + }, + { + "displayName": "(E801.3) Railway accident involving collision with other object and injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\(E801.3) Railway accident involving collision with other object and injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\" + }, + { + "displayName": "(E801.8) Railway accident involving collision with other object and injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\(E801.8) Railway accident involving collision with other object and injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\" + }, + { + "displayName": "(E801.9) Railway accident involving collision with other object and injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\(E801.9) Railway accident involving collision with other object and injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with other object (E801)\\" + }, + { + "displayName": "Railway accident involving collision with rolling stock (E800)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\" + }, + { + "displayName": "(E800.0) Railway accident involving collision with rolling stock and injuring railway employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\(E800.0) Railway accident involving collision with rolling stock and injuring railway employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\" + }, + { + "displayName": "(E800.1) Railway accident involving collision with rolling stock and injuring passenger on railway", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\(E800.1) Railway accident involving collision with rolling stock and injuring passenger on railway\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\" + }, + { + "displayName": "(E800.2) Railway accident involving collision with rolling stock and injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\(E800.2) Railway accident involving collision with rolling stock and injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\" + }, + { + "displayName": "(E800.3) Railway accident involving collision with rolling stock and injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\(E800.3) Railway accident involving collision with rolling stock and injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\" + }, + { + "displayName": "(E800.8) Railway accident involving collision with rolling stock and injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\(E800.8) Railway accident involving collision with rolling stock and injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\" + }, + { + "displayName": "(E800.9) Railway accident involving collision with rolling stock and injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\(E800.9) Railway accident involving collision with rolling stock and injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Railway accident involving collision with rolling stock (E800)\\\\(E800.9) Railway accident involving collision with rolling stock and injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving collision with rolling stock (E800)\\" + }, + { + "displayName": "Railway accident involving derailment without antecedent collision (E802)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Railway accident involving derailment without antecedent collision (E802)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\" + }, + { + "displayName": "(E802.0) Railway accident involving derailment without antecedent collision injuring railway employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\(E802.0) Railway accident involving derailment without antecedent collision injuring railway employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Railway accident involving derailment without antecedent collision (E802)\\\\(E802.0) Railway accident involving derailment without antecedent collision injuring railway employee\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\" + }, + { + "displayName": "(E802.1) Railway accident involving derailment without antecedent collision injuring passenger on railway", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\(E802.1) Railway accident involving derailment without antecedent collision injuring passenger on railway\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Railway accident involving derailment without antecedent collision (E802)\\\\(E802.1) Railway accident involving derailment without antecedent collision injuring passenger on railway\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\" + }, + { + "displayName": "(E802.2) Railway accident involving derailment without antecedent collision injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\(E802.2) Railway accident involving derailment without antecedent collision injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Railway accident involving derailment without antecedent collision (E802)\\\\(E802.2) Railway accident involving derailment without antecedent collision injuring pedestrian\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\" + }, + { + "displayName": "(E802.3) Railway accident involving derailment without antecedent collision injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\(E802.3) Railway accident involving derailment without antecedent collision injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Railway accident involving derailment without antecedent collision (E802)\\\\(E802.3) Railway accident involving derailment without antecedent collision injuring pedal cyclist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\" + }, + { + "displayName": "(E802.8) Railway accident involving derailment without antecedent collision injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\(E802.8) Railway accident involving derailment without antecedent collision injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Railway accident involving derailment without antecedent collision (E802)\\\\(E802.8) Railway accident involving derailment without antecedent collision injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\" + }, + { + "displayName": "(E802.9) Railway accident involving derailment without antecedent collision injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\(E802.9) Railway accident involving derailment without antecedent collision injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Railway accident involving derailment without antecedent collision (E802)\\\\(E802.9) Railway accident involving derailment without antecedent collision injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving derailment without antecedent collision (E802)\\" + }, + { + "displayName": "Railway accident involving explosion, fire, or burning (E803)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\" + }, + { + "displayName": "(E803.0) Railway accident involving explosion, fire, or burning injuring railway employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\(E803.0) Railway accident involving explosion, fire, or burning injuring railway employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\" + }, + { + "displayName": "(E803.1) Railway accident involving explosion, fire, or burning injuring passenger on railway", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\(E803.1) Railway accident involving explosion, fire, or burning injuring passenger on railway\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\" + }, + { + "displayName": "(E803.2) Railway accident involving explosion, fire, or burning injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\(E803.2) Railway accident involving explosion, fire, or burning injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\" + }, + { + "displayName": "(E803.3) Railway accident involving explosion, fire, or burning injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\(E803.3) Railway accident involving explosion, fire, or burning injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\" + }, + { + "displayName": "(E803.8) Railway accident involving explosion, fire, or burning injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\(E803.8) Railway accident involving explosion, fire, or burning injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\" + }, + { + "displayName": "(E803.9) Railway accident involving explosion, fire, or burning injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\(E803.9) Railway accident involving explosion, fire, or burning injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident involving explosion, fire, or burning (E803)\\" + }, + { + "displayName": "Railway accident of unspecified nature (E807)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\" + }, + { + "displayName": "(E807.0) Railway accident of unspecified nature injuring railway employee", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\(E807.0) Railway accident of unspecified nature injuring railway employee\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\" + }, + { + "displayName": "(E807.1) Railway accident of unspecified nature injuring passenger on railway", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\(E807.1) Railway accident of unspecified nature injuring passenger on railway\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\" + }, + { + "displayName": "(E807.2) Railway accident of unspecified nature injuring pedestrian", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\(E807.2) Railway accident of unspecified nature injuring pedestrian\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\" + }, + { + "displayName": "(E807.3) Railway accident of unspecified nature injuring pedal cyclist", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\(E807.3) Railway accident of unspecified nature injuring pedal cyclist\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Railway accident of unspecified nature (E807)\\\\(E807.3) Railway accident of unspecified nature injuring pedal cyclist\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\" + }, + { + "displayName": "(E807.8) Railway accident of unspecified nature injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\(E807.8) Railway accident of unspecified nature injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Railway accident of unspecified nature (E807)\\\\(E807.8) Railway accident of unspecified nature injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\" + }, + { + "displayName": "(E807.9) Railway accident of unspecified nature injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\(E807.9) Railway accident of unspecified nature injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\RAILWAY ACCIDENTS (E800-E807.9)\\\\Railway accident of unspecified nature (E807)\\\\(E807.9) Railway accident of unspecified nature injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\RAILWAY ACCIDENTS (E800-E807.9)\\Railway accident of unspecified nature (E807)\\" + }, + { + "displayName": "VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\" + }, + { + "displayName": "(E846) Accidents involving powered vehicles used solely within the buildings and premises of industrial or commercial establishment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\\(E846) Accidents involving powered vehicles used solely within the buildings and premises of industrial or commercial establishment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\\\\(E846) Accidents involving powered vehicles used solely within the buildings and premises of industrial or commercial establishment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\\" + }, + { + "displayName": "(E847) Accidents involving cable cars not running on rails", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\\(E847) Accidents involving cable cars not running on rails\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\\\\(E847) Accidents involving cable cars not running on rails\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\\" + }, + { + "displayName": "(E848) Accidents involving other vehicles, not elsewhere classifiable", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\\(E848) Accidents involving other vehicles, not elsewhere classifiable\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\\\\(E848) Accidents involving other vehicles, not elsewhere classifiable\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\VEHICLE ACCIDENTS NOT ELSEWHERE CLASSIFIABLE (E846-E848.9)\\" + }, + { + "displayName": "WATER TRANSPORT ACCIDENTS (E830-E838.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\" + }, + { + "displayName": "Accident to watercraft causing other injury (E831)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\" + }, + { + "displayName": "(E831.0) Accident to watercraft causing other injury to occupant of small boat, unpowered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\(E831.0) Accident to watercraft causing other injury to occupant of small boat, unpowered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\" + }, + { + "displayName": "(E831.1) Accident to watercraft causing other injury to occupant of small boat, powered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\(E831.1) Accident to watercraft causing other injury to occupant of small boat, powered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\" + }, + { + "displayName": "(E831.2) Accident to watercraft causing other injury to occupant of other watercraft -- crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\(E831.2) Accident to watercraft causing other injury to occupant of other watercraft -- crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\" + }, + { + "displayName": "(E831.3) Accident to watercraft causing other injury to occupant of other watercraft -- other than crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\(E831.3) Accident to watercraft causing other injury to occupant of other watercraft -- other than crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\" + }, + { + "displayName": "(E831.4) Accident to watercraft causing other injury to water skier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\(E831.4) Accident to watercraft causing other injury to water skier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\" + }, + { + "displayName": "(E831.5) Accident to watercraft causing other injury to swimmer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\(E831.5) Accident to watercraft causing other injury to swimmer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\" + }, + { + "displayName": "(E831.6) Accident to watercraft causing other injury to dockers, stevedores", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\(E831.6) Accident to watercraft causing other injury to dockers, stevedores\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\" + }, + { + "displayName": "(E831.8) Accident to watercraft causing other injury to other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\(E831.8) Accident to watercraft causing other injury to other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\" + }, + { + "displayName": "(E831.9) Accident to watercraft causing other injury to unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\(E831.9) Accident to watercraft causing other injury to unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing other injury (E831)\\" + }, + { + "displayName": "Accident to watercraft causing submersion (E830)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\" + }, + { + "displayName": "(E830.0) Accident to watercraft causing submersion injuring occupant of small boat, unpowered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\(E830.0) Accident to watercraft causing submersion injuring occupant of small boat, unpowered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\" + }, + { + "displayName": "(E830.1) Accident to watercraft causing submersion injuring occupant of small boat, powered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\(E830.1) Accident to watercraft causing submersion injuring occupant of small boat, powered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\" + }, + { + "displayName": "(E830.2) Accident to watercraft causing submersion injuring occupant of other watercraft -- crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\(E830.2) Accident to watercraft causing submersion injuring occupant of other watercraft -- crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\" + }, + { + "displayName": "(E830.3) Accident to watercraft causing submersion injuring occupant of other watercraft -- other than crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\(E830.3) Accident to watercraft causing submersion injuring occupant of other watercraft -- other than crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\" + }, + { + "displayName": "(E830.4) Accident to watercraft causing submersion injuring water skier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\(E830.4) Accident to watercraft causing submersion injuring water skier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\" + }, + { + "displayName": "(E830.5) Accident to watercraft causing submersion injuring swimmer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\(E830.5) Accident to watercraft causing submersion injuring swimmer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\" + }, + { + "displayName": "(E830.6) Accident to watercraft causing submersion injuring dockers, stevedores", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\(E830.6) Accident to watercraft causing submersion injuring dockers, stevedores\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Accident to watercraft causing submersion (E830)\\\\(E830.6) Accident to watercraft causing submersion injuring dockers, stevedores\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\" + }, + { + "displayName": "(E830.8) Accident to watercraft causing submersion injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\(E830.8) Accident to watercraft causing submersion injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Accident to watercraft causing submersion (E830)\\\\(E830.8) Accident to watercraft causing submersion injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\" + }, + { + "displayName": "(E830.9) Accident to watercraft causing submersion injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\(E830.9) Accident to watercraft causing submersion injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Accident to watercraft causing submersion (E830)\\" + }, + { + "displayName": "Explosion, fire, or burning in watercraft (E837)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\" + }, + { + "displayName": "(E837.0) Explosion, fire, or burning in watercraft injuring occupant of small boat, unpowered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\(E837.0) Explosion, fire, or burning in watercraft injuring occupant of small boat, unpowered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Explosion, fire, or burning in watercraft (E837)\\\\(E837.0) Explosion, fire, or burning in watercraft injuring occupant of small boat, unpowered\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\" + }, + { + "displayName": "(E837.1) Explosion, fire, or burning in watercraft injuring occupant of small boat, powered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\(E837.1) Explosion, fire, or burning in watercraft injuring occupant of small boat, powered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Explosion, fire, or burning in watercraft (E837)\\\\(E837.1) Explosion, fire, or burning in watercraft injuring occupant of small boat, powered\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\" + }, + { + "displayName": "(E837.2) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\(E837.2) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Explosion, fire, or burning in watercraft (E837)\\\\(E837.2) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- crew\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\" + }, + { + "displayName": "(E837.3) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- other than crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\(E837.3) Explosion, fire, or burning in watercraft injuring occupant of other watercraft -- other than crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\" + }, + { + "displayName": "(E837.4) Explosion, fire, or burning in watercraft injuring water skier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\(E837.4) Explosion, fire, or burning in watercraft injuring water skier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Explosion, fire, or burning in watercraft (E837)\\\\(E837.4) Explosion, fire, or burning in watercraft injuring water skier\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\" + }, + { + "displayName": "(E837.5) Explosion, fire, or burning in watercraft injuring swimmer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\(E837.5) Explosion, fire, or burning in watercraft injuring swimmer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\" + }, + { + "displayName": "(E837.6) Explosion, fire, or burning in watercraft injuring dockers, stevedores", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\(E837.6) Explosion, fire, or burning in watercraft injuring dockers, stevedores\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\" + }, + { + "displayName": "(E837.8) Explosion, fire, or burning in watercraft injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\(E837.8) Explosion, fire, or burning in watercraft injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Explosion, fire, or burning in watercraft (E837)\\\\(E837.8) Explosion, fire, or burning in watercraft injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\" + }, + { + "displayName": "(E837.9) Explosion, fire, or burning in watercraft injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\(E837.9) Explosion, fire, or burning in watercraft injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Explosion, fire, or burning in watercraft (E837)\\\\(E837.9) Explosion, fire, or burning in watercraft injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Explosion, fire, or burning in watercraft (E837)\\" + }, + { + "displayName": "Fall on stairs or ladders in water transport (E833)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Fall on stairs or ladders in water transport (E833)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\" + }, + { + "displayName": "(E833.0) Fall on stairs or ladders in water transport injuring occupant of small boat, unpowered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\(E833.0) Fall on stairs or ladders in water transport injuring occupant of small boat, unpowered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\" + }, + { + "displayName": "(E833.1) Fall on stairs or ladders in water transport injuring occupant of small boat, powered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\(E833.1) Fall on stairs or ladders in water transport injuring occupant of small boat, powered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\" + }, + { + "displayName": "(E833.2) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\(E833.2) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\" + }, + { + "displayName": "(E833.3) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- other than crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\(E833.3) Fall on stairs or ladders in water transport injuring occupant of other watercraft -- other than crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\" + }, + { + "displayName": "(E833.4) Fall on stairs or ladders in water transport injuring water skier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\(E833.4) Fall on stairs or ladders in water transport injuring water skier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\" + }, + { + "displayName": "(E833.5) Fall on stairs or ladders in water transport injuring swimmer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\(E833.5) Fall on stairs or ladders in water transport injuring swimmer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\" + }, + { + "displayName": "(E833.6) Fall on stairs or ladders in water transport injuring dockers, stevedores", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\(E833.6) Fall on stairs or ladders in water transport injuring dockers, stevedores\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\" + }, + { + "displayName": "(E833.8) Fall on stairs or ladders in water transport injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\(E833.8) Fall on stairs or ladders in water transport injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\" + }, + { + "displayName": "(E833.9) Fall on stairs or ladders in water transport injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\(E833.9) Fall on stairs or ladders in water transport injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Fall on stairs or ladders in water transport (E833)\\" + }, + { + "displayName": "Machinery accident in water transport (E836)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\" + }, + { + "displayName": "(E836.0) Machinery accident in water transport injuring occupant of small boat, unpowered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\(E836.0) Machinery accident in water transport injuring occupant of small boat, unpowered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\" + }, + { + "displayName": "(E836.1) Machinery accident in water transport injuring occupant of small boat, powered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\(E836.1) Machinery accident in water transport injuring occupant of small boat, powered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\" + }, + { + "displayName": "(E836.2) Machinery accident in water transport injuring occupant of other watercraft -- crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\(E836.2) Machinery accident in water transport injuring occupant of other watercraft -- crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\" + }, + { + "displayName": "(E836.3) Machinery accident in water transport injuring occupant of other watercraft -- other than crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\(E836.3) Machinery accident in water transport injuring occupant of other watercraft -- other than crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\" + }, + { + "displayName": "(E836.4) Machinery accident in water transport injuring water skier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\(E836.4) Machinery accident in water transport injuring water skier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\" + }, + { + "displayName": "(E836.5) Machinery accident in water transport injuring swimmer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\(E836.5) Machinery accident in water transport injuring swimmer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\" + }, + { + "displayName": "(E836.6) Machinery accident in water transport injuring dockers, stevedores", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\(E836.6) Machinery accident in water transport injuring dockers, stevedores\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Machinery accident in water transport (E836)\\\\(E836.6) Machinery accident in water transport injuring dockers, stevedores\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\" + }, + { + "displayName": "(E836.8) Machinery accident in water transport injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\(E836.8) Machinery accident in water transport injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\" + }, + { + "displayName": "(E836.9) Machinery accident in water transport injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\(E836.9) Machinery accident in water transport injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Machinery accident in water transport (E836)\\\\(E836.9) Machinery accident in water transport injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Machinery accident in water transport (E836)\\" + }, + { + "displayName": "Other accidental submersion or drowning in water transport accident (E832)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other accidental submersion or drowning in water transport accident (E832)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\" + }, + { + "displayName": "(E832.0) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, unpowered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\(E832.0) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, unpowered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\" + }, + { + "displayName": "(E832.1) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, powered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\(E832.1) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, powered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other accidental submersion or drowning in water transport accident (E832)\\\\(E832.1) Other accidental submersion or drowning in water transport accident injuring occupant of small boat, powered\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\" + }, + { + "displayName": "(E832.2) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\(E832.2) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other accidental submersion or drowning in water transport accident (E832)\\\\(E832.2) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- crew\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\" + }, + { + "displayName": "(E832.3) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- other than crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\(E832.3) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- other than crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other accidental submersion or drowning in water transport accident (E832)\\\\(E832.3) Other accidental submersion or drowning in water transport accident injuring occupant of other watercraft -- other than crew\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\" + }, + { + "displayName": "(E832.4) Other accidental submersion or drowning in water transport accident injuring water skier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\(E832.4) Other accidental submersion or drowning in water transport accident injuring water skier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\" + }, + { + "displayName": "(E832.5) Other accidental submersion or drowning in water transport accident injuring swimmer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\(E832.5) Other accidental submersion or drowning in water transport accident injuring swimmer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other accidental submersion or drowning in water transport accident (E832)\\\\(E832.5) Other accidental submersion or drowning in water transport accident injuring swimmer\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\" + }, + { + "displayName": "(E832.6) Other accidental submersion or drowning in water transport accident injuring dockers, stevedores", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\(E832.6) Other accidental submersion or drowning in water transport accident injuring dockers, stevedores\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other accidental submersion or drowning in water transport accident (E832)\\\\(E832.6) Other accidental submersion or drowning in water transport accident injuring dockers, stevedores\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\" + }, + { + "displayName": "(E832.8) Other accidental submersion or drowning in water transport accident injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\(E832.8) Other accidental submersion or drowning in water transport accident injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other accidental submersion or drowning in water transport accident (E832)\\\\(E832.8) Other accidental submersion or drowning in water transport accident injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\" + }, + { + "displayName": "(E832.9) Other accidental submersion or drowning in water transport accident injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\(E832.9) Other accidental submersion or drowning in water transport accident injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other accidental submersion or drowning in water transport accident (E832)\\\\(E832.9) Other accidental submersion or drowning in water transport accident injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other accidental submersion or drowning in water transport accident (E832)\\" + }, + { + "displayName": "Other and unspecified fall in water transport (E835)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other and unspecified fall in water transport (E835)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\" + }, + { + "displayName": "(E835.0) Other and unspecified fall in water transport injuring occupant of small boat, unpowered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\(E835.0) Other and unspecified fall in water transport injuring occupant of small boat, unpowered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other and unspecified fall in water transport (E835)\\\\(E835.0) Other and unspecified fall in water transport injuring occupant of small boat, unpowered\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\" + }, + { + "displayName": "(E835.1) Other and unspecified fall in water transport injuring occupant of small boat, powered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\(E835.1) Other and unspecified fall in water transport injuring occupant of small boat, powered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\" + }, + { + "displayName": "(E835.2) Other and unspecified fall in water transport injuring occupant of other watercraft -- crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\(E835.2) Other and unspecified fall in water transport injuring occupant of other watercraft -- crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\" + }, + { + "displayName": "(E835.3) Other and unspecified fall in water transport injuring occupant of other watercraft -- other than crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\(E835.3) Other and unspecified fall in water transport injuring occupant of other watercraft -- other than crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\" + }, + { + "displayName": "(E835.4) Other and unspecified fall in water transport injuring water skier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\(E835.4) Other and unspecified fall in water transport injuring water skier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\" + }, + { + "displayName": "(E835.5) Other and unspecified fall in water transport injuring swimmer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\(E835.5) Other and unspecified fall in water transport injuring swimmer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\" + }, + { + "displayName": "(E835.6) Other and unspecified fall in water transport injuring dockers, stevedores", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\(E835.6) Other and unspecified fall in water transport injuring dockers, stevedores\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\" + }, + { + "displayName": "(E835.8) Other and unspecified fall in water transport injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\(E835.8) Other and unspecified fall in water transport injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\" + }, + { + "displayName": "(E835.9) Other and unspecified fall in water transport injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\(E835.9) Other and unspecified fall in water transport injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified fall in water transport (E835)\\" + }, + { + "displayName": "Other and unspecified water transport accident (E838)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\" + }, + { + "displayName": "(E838.0) Other and unspecified water transport accident injuring occupant of small boat, unpowered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\(E838.0) Other and unspecified water transport accident injuring occupant of small boat, unpowered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\" + }, + { + "displayName": "(E838.1) Other and unspecified water transport accident injuring occupant of small boat, powered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\(E838.1) Other and unspecified water transport accident injuring occupant of small boat, powered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\" + }, + { + "displayName": "(E838.2) Other and unspecified water transport accident injuring occupant of other watercraft -- crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\(E838.2) Other and unspecified water transport accident injuring occupant of other watercraft -- crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\" + }, + { + "displayName": "(E838.3) Other and unspecified water transport accident injuring occupant of other watercraft -- other than crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\(E838.3) Other and unspecified water transport accident injuring occupant of other watercraft -- other than crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\" + }, + { + "displayName": "(E838.4) Other and unspecified water transport accident injuring water skier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\(E838.4) Other and unspecified water transport accident injuring water skier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\" + }, + { + "displayName": "(E838.5) Other and unspecified water transport accident injuring swimmer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\(E838.5) Other and unspecified water transport accident injuring swimmer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\" + }, + { + "displayName": "(E838.6) Other and unspecified water transport accident injuring dockers, stevedores", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\(E838.6) Other and unspecified water transport accident injuring dockers, stevedores\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\" + }, + { + "displayName": "(E838.8) Other and unspecified water transport accident injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\(E838.8) Other and unspecified water transport accident injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\" + }, + { + "displayName": "(E838.9) Other and unspecified water transport accident injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\(E838.9) Other and unspecified water transport accident injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other and unspecified water transport accident (E838)\\" + }, + { + "displayName": "Other fall from one level to another in water transport (E834)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\" + }, + { + "displayName": "(E834.0) Other fall from one level to another in water transport injuring occupant of small boat, unpowered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\(E834.0) Other fall from one level to another in water transport injuring occupant of small boat, unpowered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\" + }, + { + "displayName": "(E834.1) Other fall from one level to another in water transport injuring occupant of small boat, powered", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\(E834.1) Other fall from one level to another in water transport injuring occupant of small boat, powered\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\" + }, + { + "displayName": "(E834.2) Other fall from one level to another in water transport injuring occupant of other watercraft -- crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\(E834.2) Other fall from one level to another in water transport injuring occupant of other watercraft -- crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other fall from one level to another in water transport (E834)\\\\(E834.2) Other fall from one level to another in water transport injuring occupant of other watercraft -- crew\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\" + }, + { + "displayName": "(E834.3) Other fall from one level to another in water transport injuring occupant of other watercraft -- other than crew", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\(E834.3) Other fall from one level to another in water transport injuring occupant of other watercraft -- other than crew\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other fall from one level to another in water transport (E834)\\\\(E834.3) Other fall from one level to another in water transport injuring occupant of other watercraft -- other than crew\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\" + }, + { + "displayName": "(E834.4) Other fall from one level to another in water transport injuring water skier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\(E834.4) Other fall from one level to another in water transport injuring water skier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\" + }, + { + "displayName": "(E834.5) Other fall from one level to another in water transport injuring swimmer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\(E834.5) Other fall from one level to another in water transport injuring swimmer\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\" + }, + { + "displayName": "(E834.6) Other fall from one level to another in water transport injuring dockers, stevedores", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\(E834.6) Other fall from one level to another in water transport injuring dockers, stevedores\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\" + }, + { + "displayName": "(E834.8) Other fall from one level to another in water transport injuring other specified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\(E834.8) Other fall from one level to another in water transport injuring other specified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other fall from one level to another in water transport (E834)\\\\(E834.8) Other fall from one level to another in water transport injuring other specified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\" + }, + { + "displayName": "(E834.9) Other fall from one level to another in water transport injuring unspecified person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\(E834.9) Other fall from one level to another in water transport injuring unspecified person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\\\Transport accidents (E800-E848.9)\\\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\\\Other fall from one level to another in water transport (E834)\\\\(E834.9) Other fall from one level to another in water transport injuring unspecified person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of external causes of injury and poisoning (E000-E999.9)\\Transport accidents (E800-E848.9)\\WATER TRANSPORT ACCIDENTS (E830-E838.9)\\Other fall from one level to another in water transport (E834)\\" + }, + { + "displayName": "Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Acquired absence of other organs and tissue (v88-v88.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Acquired absence of other organs and tissue (v88-v88.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Acquired absence of other organs and tissue (V88)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\" + }, + { + "displayName": "Acquired absence of cervix and uterus (V88.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\Acquired absence of cervix and uterus (V88.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\" + }, + { + "displayName": "(V88.01) Acquired absence of both cervix and uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\Acquired absence of cervix and uterus (V88.0)\\(V88.01) Acquired absence of both cervix and uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\Acquired absence of cervix and uterus (V88.0)\\" + }, + { + "displayName": "(V88.02) Acquired absence of uterus with remaining cervical stump", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\Acquired absence of cervix and uterus (V88.0)\\(V88.02) Acquired absence of uterus with remaining cervical stump\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\Acquired absence of cervix and uterus (V88.0)\\" + }, + { + "displayName": "(V88.03) Acquired absence of cervix with remaining uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\Acquired absence of cervix and uterus (V88.0)\\(V88.03) Acquired absence of cervix with remaining uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\Acquired absence of cervix and uterus (V88.0)\\" + }, + { + "displayName": "Acquired absence of pancreas (V88.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\Acquired absence of pancreas (V88.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\" + }, + { + "displayName": "(V88.12) Acquired partial absence of pancreas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\Acquired absence of pancreas (V88.1)\\(V88.12) Acquired partial absence of pancreas\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Acquired absence of other organs and tissue (v88-v88.99)\\Acquired absence of other organs and tissue (V88)\\Acquired absence of pancreas (V88.1)\\" + }, + { + "displayName": "Body mass index (v85-v85.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Body mass index [BMI] (V85)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\" + }, + { + "displayName": "(V85.0) Body Mass Index less than 19, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\(V85.0) Body Mass Index less than 19, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\" + }, + { + "displayName": "(V85.1) Body Mass Index between 19-24, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\(V85.1) Body Mass Index between 19-24, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\" + }, + { + "displayName": "Body Mass Index 40 and over, adult (V85.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index 40 and over, adult (V85.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index 40 and over, adult (V85.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\" + }, + { + "displayName": "(V85.41) Body Mass Index 40.0-44.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index 40 and over, adult (V85.4)\\(V85.41) Body Mass Index 40.0-44.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index 40 and over, adult (V85.4)\\" + }, + { + "displayName": "(V85.42) Body Mass Index 45.0-49.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index 40 and over, adult (V85.4)\\(V85.42) Body Mass Index 45.0-49.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index 40 and over, adult (V85.4)\\\\(V85.42) Body Mass Index 45.0-49.9, adult\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index 40 and over, adult (V85.4)\\" + }, + { + "displayName": "(V85.43) Body Mass Index 50.0-59.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index 40 and over, adult (V85.4)\\(V85.43) Body Mass Index 50.0-59.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index 40 and over, adult (V85.4)\\\\(V85.43) Body Mass Index 50.0-59.9, adult\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index 40 and over, adult (V85.4)\\" + }, + { + "displayName": "(V85.44) Body Mass Index 60.0-69.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index 40 and over, adult (V85.4)\\(V85.44) Body Mass Index 60.0-69.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index 40 and over, adult (V85.4)\\" + }, + { + "displayName": "(V85.45) Body Mass Index 70 and over, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index 40 and over, adult (V85.4)\\(V85.45) Body Mass Index 70 and over, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index 40 and over, adult (V85.4)\\\\(V85.45) Body Mass Index 70 and over, adult\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index 40 and over, adult (V85.4)\\" + }, + { + "displayName": "Body Mass Index between 25-29, adult (V85.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 25-29, adult (V85.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index between 25-29, adult (V85.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\" + }, + { + "displayName": "(V85.21) Body Mass Index 25.0-25.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 25-29, adult (V85.2)\\(V85.21) Body Mass Index 25.0-25.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index between 25-29, adult (V85.2)\\\\(V85.21) Body Mass Index 25.0-25.9, adult\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 25-29, adult (V85.2)\\" + }, + { + "displayName": "(V85.22) Body Mass Index 26.0-26.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 25-29, adult (V85.2)\\(V85.22) Body Mass Index 26.0-26.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 25-29, adult (V85.2)\\" + }, + { + "displayName": "(V85.23) Body Mass Index 27.0-27.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 25-29, adult (V85.2)\\(V85.23) Body Mass Index 27.0-27.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index between 25-29, adult (V85.2)\\\\(V85.23) Body Mass Index 27.0-27.9, adult\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 25-29, adult (V85.2)\\" + }, + { + "displayName": "(V85.24) Body Mass Index 28.0-28.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 25-29, adult (V85.2)\\(V85.24) Body Mass Index 28.0-28.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index between 25-29, adult (V85.2)\\\\(V85.24) Body Mass Index 28.0-28.9, adult\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 25-29, adult (V85.2)\\" + }, + { + "displayName": "(V85.25) Body Mass Index 29.0-29.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 25-29, adult (V85.2)\\(V85.25) Body Mass Index 29.0-29.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index between 25-29, adult (V85.2)\\\\(V85.25) Body Mass Index 29.0-29.9, adult\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 25-29, adult (V85.2)\\" + }, + { + "displayName": "Body Mass Index between 30-39, adult (V85.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\" + }, + { + "displayName": "(V85.30) Body Mass Index 30.0-30.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\(V85.30) Body Mass Index 30.0-30.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index between 30-39, adult (V85.3)\\\\(V85.30) Body Mass Index 30.0-30.9, adult\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\" + }, + { + "displayName": "(V85.31) Body Mass Index 31.0-31.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\(V85.31) Body Mass Index 31.0-31.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index between 30-39, adult (V85.3)\\\\(V85.31) Body Mass Index 31.0-31.9, adult\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\" + }, + { + "displayName": "(V85.32) Body Mass Index 32.0-32.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\(V85.32) Body Mass Index 32.0-32.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Body mass index (v85-v85.99)\\\\Body mass index [BMI] (V85)\\\\Body Mass Index between 30-39, adult (V85.3)\\\\(V85.32) Body Mass Index 32.0-32.9, adult\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\" + }, + { + "displayName": "(V85.33) Body Mass Index 33.0-33.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\(V85.33) Body Mass Index 33.0-33.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\" + }, + { + "displayName": "(V85.34) Body Mass Index 34.0-34.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\(V85.34) Body Mass Index 34.0-34.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\" + }, + { + "displayName": "(V85.35) Body Mass Index 35.0-35.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\(V85.35) Body Mass Index 35.0-35.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\" + }, + { + "displayName": "(V85.36) Body Mass Index 36.0-36.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\(V85.36) Body Mass Index 36.0-36.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\" + }, + { + "displayName": "(V85.37) Body Mass Index 37.0-37.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\(V85.37) Body Mass Index 37.0-37.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\" + }, + { + "displayName": "(V85.38) Body Mass Index 38.0-38.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\(V85.38) Body Mass Index 38.0-38.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\" + }, + { + "displayName": "(V85.39) Body Mass Index 39.0-39.9, adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\(V85.39) Body Mass Index 39.0-39.9, adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index between 30-39, adult (V85.3)\\" + }, + { + "displayName": "Body Mass Index, pediatric (V85.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index, pediatric (V85.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\" + }, + { + "displayName": "(V85.51) Body Mass Index, pediatric, less than 5th percentile for age", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index, pediatric (V85.5)\\(V85.51) Body Mass Index, pediatric, less than 5th percentile for age\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index, pediatric (V85.5)\\" + }, + { + "displayName": "(V85.52) Body Mass Index, pediatric, 5th percentile to less than 85th percentile for age", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index, pediatric (V85.5)\\(V85.52) Body Mass Index, pediatric, 5th percentile to less than 85th percentile for age\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index, pediatric (V85.5)\\" + }, + { + "displayName": "(V85.53) Body Mass Index, pediatric, 85th percentile to less than 95th percentile for age", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index, pediatric (V85.5)\\(V85.53) Body Mass Index, pediatric, 85th percentile to less than 95th percentile for age\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index, pediatric (V85.5)\\" + }, + { + "displayName": "(V85.54) Body Mass Index, pediatric, greater than or equal to 95th percentile for age", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index, pediatric (V85.5)\\(V85.54) Body Mass Index, pediatric, greater than or equal to 95th percentile for age\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Body mass index (v85-v85.99)\\Body mass index [BMI] (V85)\\Body Mass Index, pediatric (V85.5)\\" + }, + { + "displayName": "Estrogen receptor status (v86-v86.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Estrogen receptor status (v86-v86.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Estrogen receptor status (V86)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Estrogen receptor status (v86-v86.99)\\Estrogen receptor status (V86)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Estrogen receptor status (v86-v86.99)\\" + }, + { + "displayName": "(V86.0) Estrogen receptor positive status [ER+]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Estrogen receptor status (v86-v86.99)\\Estrogen receptor status (V86)\\(V86.0) Estrogen receptor positive status [ER+]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Estrogen receptor status (v86-v86.99)\\Estrogen receptor status (V86)\\" + }, + { + "displayName": "(V86.1) Estrogen receptor negative status [ER-]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Estrogen receptor status (v86-v86.99)\\Estrogen receptor status (V86)\\(V86.1) Estrogen receptor negative status [ER-]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Estrogen receptor status (v86-v86.99)\\Estrogen receptor status (V86)\\" + }, + { + "displayName": "Genetics (v83-v84.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Genetics (v83-v84.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Genetic carrier status (V83)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Genetics (v83-v84.99)\\\\Genetic carrier status (V83)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\" + }, + { + "displayName": "Hemophilia A carrier (V83.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\Hemophilia A carrier (V83.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Genetics (v83-v84.99)\\\\Genetic carrier status (V83)\\\\Hemophilia A carrier (V83.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\" + }, + { + "displayName": "(V83.01) Asymptomatic hemophilia A carrier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\Hemophilia A carrier (V83.0)\\(V83.01) Asymptomatic hemophilia A carrier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Genetics (v83-v84.99)\\\\Genetic carrier status (V83)\\\\Hemophilia A carrier (V83.0)\\\\(V83.01) Asymptomatic hemophilia A carrier\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\Hemophilia A carrier (V83.0)\\" + }, + { + "displayName": "(V83.02) Symptomatic hemophilia A carrier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\Hemophilia A carrier (V83.0)\\(V83.02) Symptomatic hemophilia A carrier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\Hemophilia A carrier (V83.0)\\" + }, + { + "displayName": "Other genetic carrier status (V83.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\Other genetic carrier status (V83.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Genetics (v83-v84.99)\\\\Genetic carrier status (V83)\\\\Other genetic carrier status (V83.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\" + }, + { + "displayName": "(V83.81) Cystic fibrosis gene carrier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\Other genetic carrier status (V83.8)\\(V83.81) Cystic fibrosis gene carrier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Genetics (v83-v84.99)\\\\Genetic carrier status (V83)\\\\Other genetic carrier status (V83.8)\\\\(V83.81) Cystic fibrosis gene carrier\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\Other genetic carrier status (V83.8)\\" + }, + { + "displayName": "(V83.89) Other genetic carrier status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\Other genetic carrier status (V83.8)\\(V83.89) Other genetic carrier status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Genetics (v83-v84.99)\\\\Genetic carrier status (V83)\\\\Other genetic carrier status (V83.8)\\\\(V83.89) Other genetic carrier status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic carrier status (V83)\\Other genetic carrier status (V83.8)\\" + }, + { + "displayName": "Genetic susceptibility to disease (V84)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Genetics (v83-v84.99)\\\\Genetic susceptibility to disease (V84)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\" + }, + { + "displayName": "Genetic susceptibility to malignant neoplasm (V84.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to malignant neoplasm (V84.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\" + }, + { + "displayName": "(V84.01) Genetic susceptibility to malignant neoplasm of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to malignant neoplasm (V84.0)\\(V84.01) Genetic susceptibility to malignant neoplasm of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to malignant neoplasm (V84.0)\\" + }, + { + "displayName": "(V84.02) Genetic susceptibility to malignant neoplasm of ovary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to malignant neoplasm (V84.0)\\(V84.02) Genetic susceptibility to malignant neoplasm of ovary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to malignant neoplasm (V84.0)\\" + }, + { + "displayName": "(V84.03) Genetic susceptibility to malignant neoplasm of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to malignant neoplasm (V84.0)\\(V84.03) Genetic susceptibility to malignant neoplasm of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to malignant neoplasm (V84.0)\\" + }, + { + "displayName": "(V84.04) Genetic susceptibility to malignant neoplasm of endometrium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to malignant neoplasm (V84.0)\\(V84.04) Genetic susceptibility to malignant neoplasm of endometrium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to malignant neoplasm (V84.0)\\" + }, + { + "displayName": "(V84.09) Genetic susceptibility to other malignant neoplasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to malignant neoplasm (V84.0)\\(V84.09) Genetic susceptibility to other malignant neoplasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to malignant neoplasm (V84.0)\\" + }, + { + "displayName": "Genetic susceptibility to other disease (V84.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to other disease (V84.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\" + }, + { + "displayName": "(V84.81) Genetic susceptibility to multiple endocrine neoplasia [MEN]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to other disease (V84.8)\\(V84.81) Genetic susceptibility to multiple endocrine neoplasia [MEN]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to other disease (V84.8)\\" + }, + { + "displayName": "(V84.89) Genetic susceptibility to other disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to other disease (V84.8)\\(V84.89) Genetic susceptibility to other disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Genetics (v83-v84.99)\\Genetic susceptibility to disease (V84)\\Genetic susceptibility to other disease (V84.8)\\" + }, + { + "displayName": "Liveborn infants according to type of birth (v30-v39.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Liveborn, unspecified whether single, twin, or multiple (V39)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Liveborn, unspecified whether single, twin, or multiple (V39)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\" + }, + { + "displayName": "(V39.1) Liveborn, unspecified whether single, twin or multiple, born before admission to hospital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Liveborn, unspecified whether single, twin, or multiple (V39)\\(V39.1) Liveborn, unspecified whether single, twin or multiple, born before admission to hospital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Liveborn, unspecified whether single, twin, or multiple (V39)\\" + }, + { + "displayName": "(V39.2) Liveborn, unspecified whether single, twin or multiple, born outside hospital and not hospitalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Liveborn, unspecified whether single, twin, or multiple (V39)\\(V39.2) Liveborn, unspecified whether single, twin or multiple, born outside hospital and not hospitalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Liveborn, unspecified whether single, twin, or multiple (V39)\\" + }, + { + "displayName": "Other liveborn, unspecified, born in hospital (V39.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Liveborn, unspecified whether single, twin, or multiple (V39)\\Other liveborn, unspecified, born in hospital (V39.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Liveborn, unspecified whether single, twin, or multiple (V39)\\" + }, + { + "displayName": "(V39.00) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered without mention of cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Liveborn, unspecified whether single, twin, or multiple (V39)\\Other liveborn, unspecified, born in hospital (V39.0)\\(V39.00) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered without mention of cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Liveborn, unspecified whether single, twin, or multiple (V39)\\\\Other liveborn, unspecified, born in hospital (V39.0)\\\\(V39.00) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered without mention of cesarean section\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Liveborn, unspecified whether single, twin, or multiple (V39)\\Other liveborn, unspecified, born in hospital (V39.0)\\" + }, + { + "displayName": "(V39.01) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered by cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Liveborn, unspecified whether single, twin, or multiple (V39)\\Other liveborn, unspecified, born in hospital (V39.0)\\(V39.01) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered by cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Liveborn, unspecified whether single, twin, or multiple (V39)\\\\Other liveborn, unspecified, born in hospital (V39.0)\\\\(V39.01) Liveborn, unspecified whether single, twin or multiple, born in hospital, delivered by cesarean section\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Liveborn, unspecified whether single, twin, or multiple (V39)\\Other liveborn, unspecified, born in hospital (V39.0)\\" + }, + { + "displayName": "Other multiple birth (three or more), mates all liveborn (V34)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all liveborn (V34)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Other multiple birth (three or more), mates all liveborn (V34)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\" + }, + { + "displayName": "(V34.1) Other multiple birth (three or more), mates all liveborn, born before admission to hospital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all liveborn (V34)\\(V34.1) Other multiple birth (three or more), mates all liveborn, born before admission to hospital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Other multiple birth (three or more), mates all liveborn (V34)\\\\(V34.1) Other multiple birth (three or more), mates all liveborn, born before admission to hospital\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all liveborn (V34)\\" + }, + { + "displayName": "(V34.2) Other multiple birth (three or more), mates all liveborn, born outside hospital and not hospitalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all liveborn (V34)\\(V34.2) Other multiple birth (three or more), mates all liveborn, born outside hospital and not hospitalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Other multiple birth (three or more), mates all liveborn (V34)\\\\(V34.2) Other multiple birth (three or more), mates all liveborn, born outside hospital and not hospitalized\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all liveborn (V34)\\" + }, + { + "displayName": "Other multiple, mates all liveborn, born in hospital (V34.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all liveborn (V34)\\Other multiple, mates all liveborn, born in hospital (V34.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Other multiple birth (three or more), mates all liveborn (V34)\\\\Other multiple, mates all liveborn, born in hospital (V34.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all liveborn (V34)\\" + }, + { + "displayName": "(V34.00) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered without mention of cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all liveborn (V34)\\Other multiple, mates all liveborn, born in hospital (V34.0)\\(V34.00) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered without mention of cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Other multiple birth (three or more), mates all liveborn (V34)\\\\Other multiple, mates all liveborn, born in hospital (V34.0)\\\\(V34.00) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered without mention of cesarean section\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all liveborn (V34)\\Other multiple, mates all liveborn, born in hospital (V34.0)\\" + }, + { + "displayName": "(V34.01) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered by cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all liveborn (V34)\\Other multiple, mates all liveborn, born in hospital (V34.0)\\(V34.01) Other multiple birth (three or more), mates all liveborn, born in hospital, delivered by cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all liveborn (V34)\\Other multiple, mates all liveborn, born in hospital (V34.0)\\" + }, + { + "displayName": "Other multiple birth (three or more), mates all stillborn (V35)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all stillborn (V35)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\" + }, + { + "displayName": "(V35.1) Other multiple birth (three or more), mates all stillborn, born before admission to hospital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all stillborn (V35)\\(V35.1) Other multiple birth (three or more), mates all stillborn, born before admission to hospital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all stillborn (V35)\\" + }, + { + "displayName": "(V35.2) Other multiple birth (three or more), mates all stillborn, born outside of hospital and not hospitalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all stillborn (V35)\\(V35.2) Other multiple birth (three or more), mates all stillborn, born outside of hospital and not hospitalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all stillborn (V35)\\" + }, + { + "displayName": "Other multiple, mates all stillborn, born in hospital (V35.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all stillborn (V35)\\Other multiple, mates all stillborn, born in hospital (V35.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all stillborn (V35)\\" + }, + { + "displayName": "(V35.00) Other multiple birth (three or more), mates all still born, born in hospital, delivered without mention of cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all stillborn (V35)\\Other multiple, mates all stillborn, born in hospital (V35.0)\\(V35.00) Other multiple birth (three or more), mates all still born, born in hospital, delivered without mention of cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all stillborn (V35)\\Other multiple, mates all stillborn, born in hospital (V35.0)\\" + }, + { + "displayName": "(V35.01) Other multiple birth (three or more), mates all still born, born in hospital, delivered by cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all stillborn (V35)\\Other multiple, mates all stillborn, born in hospital (V35.0)\\(V35.01) Other multiple birth (three or more), mates all still born, born in hospital, delivered by cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates all stillborn (V35)\\Other multiple, mates all stillborn, born in hospital (V35.0)\\" + }, + { + "displayName": "Other multiple birth (three or more), mates liveborn and stillborn (V36)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\" + }, + { + "displayName": "(V36.1) Other multiple birth (three or more), mates liveborn and stillborn, born before admission to hospital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\(V36.1) Other multiple birth (three or more), mates liveborn and stillborn, born before admission to hospital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\\\(V36.1) Other multiple birth (three or more), mates liveborn and stillborn, born before admission to hospital\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\" + }, + { + "displayName": "(V36.2) Other multiple birth (three or more), mates liveborn and stillborn, born outside hospital and not hospitalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\(V36.2) Other multiple birth (three or more), mates liveborn and stillborn, born outside hospital and not hospitalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\\\(V36.2) Other multiple birth (three or more), mates liveborn and stillborn, born outside hospital and not hospitalized\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\" + }, + { + "displayName": "Other multiple, mates liveborn and stillborn, born in hospital (V36.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\" + }, + { + "displayName": "(V36.00) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\\(V36.00) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\\\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\\\\(V36.00) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\\" + }, + { + "displayName": "(V36.01) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\\(V36.01) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\\\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\\\\(V36.01) Other multiple birth (three or more), mates liveborn and stillborn, born in hospital, delivered without mention of cesarean section\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), mates liveborn and stillborn (V36)\\Other multiple, mates liveborn and stillborn, born in hospital (V36.0)\\" + }, + { + "displayName": "Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\" + }, + { + "displayName": "(V37.1) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born before admission to hospital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\\(V37.1) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born before admission to hospital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\\" + }, + { + "displayName": "(V37.2) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born outside of hospital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\\(V37.2) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born outside of hospital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\\" + }, + { + "displayName": "Other multiple, unspecified, born in hospital (V37.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\\Other multiple, unspecified, born in hospital (V37.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\\" + }, + { + "displayName": "(V37.00) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered without mention of cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\\Other multiple, unspecified, born in hospital (V37.0)\\(V37.00) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered without mention of cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\\Other multiple, unspecified, born in hospital (V37.0)\\" + }, + { + "displayName": "(V37.01) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered by cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\\Other multiple, unspecified, born in hospital (V37.0)\\(V37.01) Other multiple birth (three or more), unspecified whether mates liveborn or stillborn, born in hospital, delivered by cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Other multiple birth (three or more), unspecified whether mates liveborn or stillborn (V37)\\Other multiple, unspecified, born in hospital (V37.0)\\" + }, + { + "displayName": "Single liveborn (V30)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Single liveborn (V30)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\" + }, + { + "displayName": "(V30.1) Single liveborn, born before admission to hospital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Single liveborn (V30)\\(V30.1) Single liveborn, born before admission to hospital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Single liveborn (V30)\\" + }, + { + "displayName": "(V30.2) Single liveborn, born outside hospital and not hospitalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Single liveborn (V30)\\(V30.2) Single liveborn, born outside hospital and not hospitalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Single liveborn (V30)\\" + }, + { + "displayName": "Single liveborn, born in hospital (V30.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Single liveborn (V30)\\Single liveborn, born in hospital (V30.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Single liveborn (V30)\\" + }, + { + "displayName": "(V30.00) Single liveborn, born in hospital, delivered without mention of cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Single liveborn (V30)\\Single liveborn, born in hospital (V30.0)\\(V30.00) Single liveborn, born in hospital, delivered without mention of cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Single liveborn (V30)\\Single liveborn, born in hospital (V30.0)\\" + }, + { + "displayName": "(V30.01) Single liveborn, born in hospital, delivered by cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Single liveborn (V30)\\Single liveborn, born in hospital (V30.0)\\(V30.01) Single liveborn, born in hospital, delivered by cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Single liveborn (V30)\\\\Single liveborn, born in hospital (V30.0)\\\\(V30.01) Single liveborn, born in hospital, delivered by cesarean section\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Single liveborn (V30)\\Single liveborn, born in hospital (V30.0)\\" + }, + { + "displayName": "Twin birth, mate liveborn (V31)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate liveborn (V31)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Twin birth, mate liveborn (V31)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\" + }, + { + "displayName": "(V31.1) Twin birth, mate liveborn, born before admission to hospital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate liveborn (V31)\\(V31.1) Twin birth, mate liveborn, born before admission to hospital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Twin birth, mate liveborn (V31)\\\\(V31.1) Twin birth, mate liveborn, born before admission to hospital\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate liveborn (V31)\\" + }, + { + "displayName": "(V31.2) Twin birth, mate liveborn, born outside hospital and not hospitalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate liveborn (V31)\\(V31.2) Twin birth, mate liveborn, born outside hospital and not hospitalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Twin birth, mate liveborn (V31)\\\\(V31.2) Twin birth, mate liveborn, born outside hospital and not hospitalized\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate liveborn (V31)\\" + }, + { + "displayName": "Twin, mate liveborn, born in hospital (V31.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate liveborn (V31)\\Twin, mate liveborn, born in hospital (V31.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate liveborn (V31)\\" + }, + { + "displayName": "(V31.00) Twin birth, mate liveborn, born in hospital, delivered without mention of cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate liveborn (V31)\\Twin, mate liveborn, born in hospital (V31.0)\\(V31.00) Twin birth, mate liveborn, born in hospital, delivered without mention of cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Twin birth, mate liveborn (V31)\\\\Twin, mate liveborn, born in hospital (V31.0)\\\\(V31.00) Twin birth, mate liveborn, born in hospital, delivered without mention of cesarean section\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate liveborn (V31)\\Twin, mate liveborn, born in hospital (V31.0)\\" + }, + { + "displayName": "(V31.01) Twin birth, mate liveborn, born in hospital, delivered by cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate liveborn (V31)\\Twin, mate liveborn, born in hospital (V31.0)\\(V31.01) Twin birth, mate liveborn, born in hospital, delivered by cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Twin birth, mate liveborn (V31)\\\\Twin, mate liveborn, born in hospital (V31.0)\\\\(V31.01) Twin birth, mate liveborn, born in hospital, delivered by cesarean section\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate liveborn (V31)\\Twin, mate liveborn, born in hospital (V31.0)\\" + }, + { + "displayName": "Twin birth, mate stillborn (V32)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate stillborn (V32)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\" + }, + { + "displayName": "(V32.1) Twin birth, mate stillborn, born before admission to hospital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate stillborn (V32)\\(V32.1) Twin birth, mate stillborn, born before admission to hospital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Twin birth, mate stillborn (V32)\\\\(V32.1) Twin birth, mate stillborn, born before admission to hospital\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate stillborn (V32)\\" + }, + { + "displayName": "(V32.2) Twin birth, mate stillborn, born outside hospital and not hospitalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate stillborn (V32)\\(V32.2) Twin birth, mate stillborn, born outside hospital and not hospitalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Twin birth, mate stillborn (V32)\\\\(V32.2) Twin birth, mate stillborn, born outside hospital and not hospitalized\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate stillborn (V32)\\" + }, + { + "displayName": "Twin, mate stillborn, born in hospital (V32.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate stillborn (V32)\\Twin, mate stillborn, born in hospital (V32.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Twin birth, mate stillborn (V32)\\\\Twin, mate stillborn, born in hospital (V32.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate stillborn (V32)\\" + }, + { + "displayName": "(V32.00) Twin birth, mate stillborn, born in hospital, delivered without mention of cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate stillborn (V32)\\Twin, mate stillborn, born in hospital (V32.0)\\(V32.00) Twin birth, mate stillborn, born in hospital, delivered without mention of cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Twin birth, mate stillborn (V32)\\\\Twin, mate stillborn, born in hospital (V32.0)\\\\(V32.00) Twin birth, mate stillborn, born in hospital, delivered without mention of cesarean section\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate stillborn (V32)\\Twin, mate stillborn, born in hospital (V32.0)\\" + }, + { + "displayName": "(V32.01) Twin birth, mate stillborn, born in hospital, delivered by cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate stillborn (V32)\\Twin, mate stillborn, born in hospital (V32.0)\\(V32.01) Twin birth, mate stillborn, born in hospital, delivered by cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Liveborn infants according to type of birth (v30-v39.99)\\\\Twin birth, mate stillborn (V32)\\\\Twin, mate stillborn, born in hospital (V32.0)\\\\(V32.01) Twin birth, mate stillborn, born in hospital, delivered by cesarean section\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, mate stillborn (V32)\\Twin, mate stillborn, born in hospital (V32.0)\\" + }, + { + "displayName": "Twin birth, unspecified whether mate liveborn or stillborn (V33)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, unspecified whether mate liveborn or stillborn (V33)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\" + }, + { + "displayName": "(V33.1) Twin birth, unspecified whether mate liveborn or stillborn, born before admission to hospital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, unspecified whether mate liveborn or stillborn (V33)\\(V33.1) Twin birth, unspecified whether mate liveborn or stillborn, born before admission to hospital\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, unspecified whether mate liveborn or stillborn (V33)\\" + }, + { + "displayName": "(V33.2) Twin birth, unspecified whether mate liveborn or stillborn, born outside hospital and not hospitalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, unspecified whether mate liveborn or stillborn (V33)\\(V33.2) Twin birth, unspecified whether mate liveborn or stillborn, born outside hospital and not hospitalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, unspecified whether mate liveborn or stillborn (V33)\\" + }, + { + "displayName": "Twin, unspecified, born in hospital (V33.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, unspecified whether mate liveborn or stillborn (V33)\\Twin, unspecified, born in hospital (V33.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, unspecified whether mate liveborn or stillborn (V33)\\" + }, + { + "displayName": "(V33.00) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered without mention of cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, unspecified whether mate liveborn or stillborn (V33)\\Twin, unspecified, born in hospital (V33.0)\\(V33.00) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered without mention of cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, unspecified whether mate liveborn or stillborn (V33)\\Twin, unspecified, born in hospital (V33.0)\\" + }, + { + "displayName": "(V33.01) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered by cesarean section", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, unspecified whether mate liveborn or stillborn (V33)\\Twin, unspecified, born in hospital (V33.0)\\(V33.01) Twin birth, unspecified whether mate liveborn or stillborn, born in hospital, delivered by cesarean section\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Liveborn infants according to type of birth (v30-v39.99)\\Twin birth, unspecified whether mate liveborn or stillborn (V33)\\Twin, unspecified, born in hospital (V33.0)\\" + }, + { + "displayName": "Multiple gestation placenta status (v91-v91.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Multiple gestation placenta status (V91)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\" + }, + { + "displayName": "Triplet gestation placenta status (V91.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Triplet gestation placenta status (V91.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\" + }, + { + "displayName": "(V91.10) Triplet gestation, unspecified number of placenta and unspecified number of amniotic sacs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Triplet gestation placenta status (V91.1)\\(V91.10) Triplet gestation, unspecified number of placenta and unspecified number of amniotic sacs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Triplet gestation placenta status (V91.1)\\" + }, + { + "displayName": "(V91.11) Triplet gestation, with two or more monochorionic fetuses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Triplet gestation placenta status (V91.1)\\(V91.11) Triplet gestation, with two or more monochorionic fetuses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Triplet gestation placenta status (V91.1)\\" + }, + { + "displayName": "(V91.12) Triplet gestation, with two or more monoamniotic fetuses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Triplet gestation placenta status (V91.1)\\(V91.12) Triplet gestation, with two or more monoamniotic fetuses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Triplet gestation placenta status (V91.1)\\" + }, + { + "displayName": "Twin gestation placenta status (V91.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Twin gestation placenta status (V91.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\" + }, + { + "displayName": "(V91.00) Twin gestation, unspecified number of placenta, unspecified number of amniotic sacs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Twin gestation placenta status (V91.0)\\(V91.00) Twin gestation, unspecified number of placenta, unspecified number of amniotic sacs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Twin gestation placenta status (V91.0)\\" + }, + { + "displayName": "(V91.01) Twin gestation, monochorionic/monoamniotic (one placenta, one amniotic sac)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Twin gestation placenta status (V91.0)\\(V91.01) Twin gestation, monochorionic/monoamniotic (one placenta, one amniotic sac)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Twin gestation placenta status (V91.0)\\" + }, + { + "displayName": "(V91.02) Twin gestation, monochorionic/diamniotic (one placenta, two amniotic sacs)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Twin gestation placenta status (V91.0)\\(V91.02) Twin gestation, monochorionic/diamniotic (one placenta, two amniotic sacs)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Twin gestation placenta status (V91.0)\\" + }, + { + "displayName": "(V91.03) Twin gestation, dichorionic/diamniotic (two placentae, two amniotic sacs)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Twin gestation placenta status (V91.0)\\(V91.03) Twin gestation, dichorionic/diamniotic (two placentae, two amniotic sacs)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Twin gestation placenta status (V91.0)\\" + }, + { + "displayName": "(V91.09) Twin gestation, unable to determine number of placenta and number of amniotic sacs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Twin gestation placenta status (V91.0)\\(V91.09) Twin gestation, unable to determine number of placenta and number of amniotic sacs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Multiple gestation placenta status (v91-v91.99)\\Multiple gestation placenta status (V91)\\Twin gestation placenta status (V91.0)\\" + }, + { + "displayName": "Other specified personal exposures and history presenting hazards to health (v87-v87.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Other specified personal exposures and history presenting hazards to health (V87)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\\\Other specified personal exposures and history presenting hazards to health (V87)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\" + }, + { + "displayName": "(V87.2) Contact with and (suspected) exposure to other potentially hazardous chemicals", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\(V87.2) Contact with and (suspected) exposure to other potentially hazardous chemicals\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\\\Other specified personal exposures and history presenting hazards to health (V87)\\\\(V87.2) Contact with and (suspected) exposure to other potentially hazardous chemicals\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\" + }, + { + "displayName": "Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\\\Other specified personal exposures and history presenting hazards to health (V87)\\\\Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\" + }, + { + "displayName": "(V87.39) Contact with and (suspected) exposure to other potentially hazardous substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)\\(V87.39) Contact with and (suspected) exposure to other potentially hazardous substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\\\Other specified personal exposures and history presenting hazards to health (V87)\\\\Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)\\\\(V87.39) Contact with and (suspected) exposure to other potentially hazardous substances\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Contact with and (suspected ) exposure to other potentially hazardous substances (V87.3)\\" + }, + { + "displayName": "Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\\\Other specified personal exposures and history presenting hazards to health (V87)\\\\Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\" + }, + { + "displayName": "(V87.12) Contact with and (suspected) exposure to benzene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)\\(V87.12) Contact with and (suspected) exposure to benzene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Contact with and (suspected) exposure to hazardous aromatic compounds (V87.1)\\" + }, + { + "displayName": "Contact with and (suspected) exposure to hazardous metals (V87.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Contact with and (suspected) exposure to hazardous metals (V87.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\" + }, + { + "displayName": "(V87.02) Contact with and (suspected) exposure to uranium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Contact with and (suspected) exposure to hazardous metals (V87.0)\\(V87.02) Contact with and (suspected) exposure to uranium\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\\\Other specified personal exposures and history presenting hazards to health (V87)\\\\Contact with and (suspected) exposure to hazardous metals (V87.0)\\\\(V87.02) Contact with and (suspected) exposure to uranium\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Contact with and (suspected) exposure to hazardous metals (V87.0)\\" + }, + { + "displayName": "Personal history of drug therapy (V87.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\\\Other specified personal exposures and history presenting hazards to health (V87)\\\\Personal history of drug therapy (V87.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\" + }, + { + "displayName": "(V87.41) Personal history of antineoplastic chemotherapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\(V87.41) Personal history of antineoplastic chemotherapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\\\Other specified personal exposures and history presenting hazards to health (V87)\\\\Personal history of drug therapy (V87.4)\\\\(V87.41) Personal history of antineoplastic chemotherapy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\" + }, + { + "displayName": "(V87.42) Personal history of monoclonal drug therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\(V87.42) Personal history of monoclonal drug therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\\\Other specified personal exposures and history presenting hazards to health (V87)\\\\Personal history of drug therapy (V87.4)\\\\(V87.42) Personal history of monoclonal drug therapy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\" + }, + { + "displayName": "(V87.43) Personal history of estrogen therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\(V87.43) Personal history of estrogen therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\\\Other specified personal exposures and history presenting hazards to health (V87)\\\\Personal history of drug therapy (V87.4)\\\\(V87.43) Personal history of estrogen therapy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\" + }, + { + "displayName": "(V87.44) Personal history of inhaled steroid therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\(V87.44) Personal history of inhaled steroid therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\\\Other specified personal exposures and history presenting hazards to health (V87)\\\\Personal history of drug therapy (V87.4)\\\\(V87.44) Personal history of inhaled steroid therapy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\" + }, + { + "displayName": "(V87.45) Personal history of systemic steroid therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\(V87.45) Personal history of systemic steroid therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\" + }, + { + "displayName": "(V87.46) Personal history of immunosuppressive therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\(V87.46) Personal history of immunosuppressive therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\" + }, + { + "displayName": "(V87.49) Personal history of other drug therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\(V87.49) Personal history of other drug therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other specified personal exposures and history presenting hazards to health (v87-v87.99)\\Other specified personal exposures and history presenting hazards to health (V87)\\Personal history of drug therapy (V87.4)\\" + }, + { + "displayName": "Other suspected conditions not found (v89-v89.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Other suspected conditions not found (V89)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\" + }, + { + "displayName": "Suspected maternal and fetal conditions not found (V89.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\" + }, + { + "displayName": "(V89.01) Suspected problem with amniotic cavity and membrane not found", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\(V89.01) Suspected problem with amniotic cavity and membrane not found\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\" + }, + { + "displayName": "(V89.02) Suspected placental problem not found", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\(V89.02) Suspected placental problem not found\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\" + }, + { + "displayName": "(V89.03) Suspected fetal anomaly not found", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\(V89.03) Suspected fetal anomaly not found\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\" + }, + { + "displayName": "(V89.04) Suspected problem with fetal growth not found", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\(V89.04) Suspected problem with fetal growth not found\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\" + }, + { + "displayName": "(V89.05) Suspected cervical shortening not found", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\(V89.05) Suspected cervical shortening not found\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\" + }, + { + "displayName": "(V89.09) Other suspected maternal and fetal condition not found", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\(V89.09) Other suspected maternal and fetal condition not found\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Other suspected conditions not found (v89-v89.99)\\Other suspected conditions not found (V89)\\Suspected maternal and fetal conditions not found (V89.0)\\" + }, + { + "displayName": "Persons encountering health services for specific procedures and aftercare (v50-v59.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Aftercare involving the use of plastic surgery (V51)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Aftercare involving the use of plastic surgery (V51)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\" + }, + { + "displayName": "(V51.0) Encounter for breast reconstruction following mastectomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Aftercare involving the use of plastic surgery (V51)\\(V51.0) Encounter for breast reconstruction following mastectomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Aftercare involving the use of plastic surgery (V51)\\" + }, + { + "displayName": "(V51.8) Other aftercare involving the use of plastic surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Aftercare involving the use of plastic surgery (V51)\\(V51.8) Other aftercare involving the use of plastic surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Aftercare involving the use of plastic surgery (V51)\\" + }, + { + "displayName": "Attention to artificial openings (V55)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\" + }, + { + "displayName": "(V55.0) Attention to tracheostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\(V55.0) Attention to tracheostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\" + }, + { + "displayName": "(V55.1) Attention to gastrostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\(V55.1) Attention to gastrostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\" + }, + { + "displayName": "(V55.2) Attention to ileostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\(V55.2) Attention to ileostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Attention to artificial openings (V55)\\\\(V55.2) Attention to ileostomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\" + }, + { + "displayName": "(V55.3) Attention to colostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\(V55.3) Attention to colostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Attention to artificial openings (V55)\\\\(V55.3) Attention to colostomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\" + }, + { + "displayName": "(V55.4) Attention to other artificial opening of digestive tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\(V55.4) Attention to other artificial opening of digestive tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Attention to artificial openings (V55)\\\\(V55.4) Attention to other artificial opening of digestive tract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\" + }, + { + "displayName": "(V55.5) Attention to cystostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\(V55.5) Attention to cystostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Attention to artificial openings (V55)\\\\(V55.5) Attention to cystostomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\" + }, + { + "displayName": "(V55.6) Attention to other artificial opening of urinary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\(V55.6) Attention to other artificial opening of urinary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\" + }, + { + "displayName": "(V55.7) Attention to artificial vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\(V55.7) Attention to artificial vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Attention to artificial openings (V55)\\\\(V55.7) Attention to artificial vagina\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\" + }, + { + "displayName": "(V55.8) Attention to other specified artificial opening", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\(V55.8) Attention to other specified artificial opening\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\" + }, + { + "displayName": "(V55.9) Attention to unspecified artificial opening", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\(V55.9) Attention to unspecified artificial opening\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Attention to artificial openings (V55)\\\\(V55.9) Attention to unspecified artificial opening\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Attention to artificial openings (V55)\\" + }, + { + "displayName": "Care involving use of rehabilitation procedures (V57)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\" + }, + { + "displayName": "(V57.0) Care involving breathing exercises", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\(V57.0) Care involving breathing exercises\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\" + }, + { + "displayName": "(V57.1) Care involving other physical therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\(V57.1) Care involving other physical therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\" + }, + { + "displayName": "(V57.3) Care involving speech-language therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\(V57.3) Care involving speech-language therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\" + }, + { + "displayName": "(V57.4) Care involving orthoptic training", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\(V57.4) Care involving orthoptic training\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\" + }, + { + "displayName": "(V57.9) Care involving unspecified rehabilitation procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\(V57.9) Care involving unspecified rehabilitation procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\" + }, + { + "displayName": "Care involving occupational therapy and vocational rehabilitation (V57.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\Care involving occupational therapy and vocational rehabilitation (V57.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\" + }, + { + "displayName": "(V57.21) Encounter for occupational therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\Care involving occupational therapy and vocational rehabilitation (V57.2)\\(V57.21) Encounter for occupational therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\Care involving occupational therapy and vocational rehabilitation (V57.2)\\" + }, + { + "displayName": "(V57.22) Encounter for vocational therapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\Care involving occupational therapy and vocational rehabilitation (V57.2)\\(V57.22) Encounter for vocational therapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\Care involving occupational therapy and vocational rehabilitation (V57.2)\\" + }, + { + "displayName": "Care involving other specified rehabilitation procedure (V57.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\Care involving other specified rehabilitation procedure (V57.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\" + }, + { + "displayName": "(V57.81) Care involving orthotic training", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\Care involving other specified rehabilitation procedure (V57.8)\\(V57.81) Care involving orthotic training\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\Care involving other specified rehabilitation procedure (V57.8)\\" + }, + { + "displayName": "(V57.89) Care involving other specified rehabilitation procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\Care involving other specified rehabilitation procedure (V57.8)\\(V57.89) Care involving other specified rehabilitation procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Care involving use of rehabilitation procedures (V57)\\Care involving other specified rehabilitation procedure (V57.8)\\" + }, + { + "displayName": "Donors (V59)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\" + }, + { + "displayName": "(V59.1) Skin donors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\(V59.1) Skin donors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\" + }, + { + "displayName": "(V59.2) Bone donors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\(V59.2) Bone donors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\" + }, + { + "displayName": "(V59.3) Bone marrow donors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\(V59.3) Bone marrow donors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\" + }, + { + "displayName": "(V59.4) Kidney donors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\(V59.4) Kidney donors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\" + }, + { + "displayName": "(V59.5) Cornea donors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\(V59.5) Cornea donors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\" + }, + { + "displayName": "(V59.6) Liver donors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\(V59.6) Liver donors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\" + }, + { + "displayName": "(V59.8) Donors of other specified organ or tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\(V59.8) Donors of other specified organ or tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\" + }, + { + "displayName": "(V59.9) Donors of unspecified organ or tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\(V59.9) Donors of unspecified organ or tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\" + }, + { + "displayName": "Blood donors (V59.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Blood donors (V59.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\" + }, + { + "displayName": "(V59.01) Blood donors, whole blood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Blood donors (V59.0)\\(V59.01) Blood donors, whole blood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Blood donors (V59.0)\\" + }, + { + "displayName": "(V59.02) Blood donors, stem cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Blood donors (V59.0)\\(V59.02) Blood donors, stem cells\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Blood donors (V59.0)\\" + }, + { + "displayName": "(V59.09) Other blood donors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Blood donors (V59.0)\\(V59.09) Other blood donors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Donors (V59)\\\\Blood donors (V59.0)\\\\(V59.09) Other blood donors\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Blood donors (V59.0)\\" + }, + { + "displayName": "Egg (oocyte) (ovum) (V59.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Egg (oocyte) (ovum) (V59.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\" + }, + { + "displayName": "(V59.70) Egg (oocyte) (ovum) donor, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Egg (oocyte) (ovum) (V59.7)\\(V59.70) Egg (oocyte) (ovum) donor, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Egg (oocyte) (ovum) (V59.7)\\" + }, + { + "displayName": "(V59.71) Egg (oocyte) (ovum) donor, under age 35, anonymous recipient", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Egg (oocyte) (ovum) (V59.7)\\(V59.71) Egg (oocyte) (ovum) donor, under age 35, anonymous recipient\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Egg (oocyte) (ovum) (V59.7)\\" + }, + { + "displayName": "(V59.72) Egg (oocyte) (ovum) donor, under age 35, designated recipient", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Egg (oocyte) (ovum) (V59.7)\\(V59.72) Egg (oocyte) (ovum) donor, under age 35, designated recipient\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Donors (V59)\\\\Egg (oocyte) (ovum) (V59.7)\\\\(V59.72) Egg (oocyte) (ovum) donor, under age 35, designated recipient\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Egg (oocyte) (ovum) (V59.7)\\" + }, + { + "displayName": "(V59.73) Egg (oocyte) (ovum) donor, age 35 and over, anonymous recipient", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Egg (oocyte) (ovum) (V59.7)\\(V59.73) Egg (oocyte) (ovum) donor, age 35 and over, anonymous recipient\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Donors (V59)\\\\Egg (oocyte) (ovum) (V59.7)\\\\(V59.73) Egg (oocyte) (ovum) donor, age 35 and over, anonymous recipient\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Egg (oocyte) (ovum) (V59.7)\\" + }, + { + "displayName": "(V59.74) Egg (oocyte) (ovum) donor, age 35 and over, designated recipient", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Egg (oocyte) (ovum) (V59.7)\\(V59.74) Egg (oocyte) (ovum) donor, age 35 and over, designated recipient\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Donors (V59)\\\\Egg (oocyte) (ovum) (V59.7)\\\\(V59.74) Egg (oocyte) (ovum) donor, age 35 and over, designated recipient\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Donors (V59)\\Egg (oocyte) (ovum) (V59.7)\\" + }, + { + "displayName": "Elective surgery for purposes other than remedying health states (V50)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\" + }, + { + "displayName": "(V50.0) Elective hair transplant for purposes other than remedying health states", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\(V50.0) Elective hair transplant for purposes other than remedying health states\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\" + }, + { + "displayName": "(V50.1) Other plastic surgery for unacceptable cosmetic appearance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\(V50.1) Other plastic surgery for unacceptable cosmetic appearance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\" + }, + { + "displayName": "(V50.2) Routine or ritual circumcision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\(V50.2) Routine or ritual circumcision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\" + }, + { + "displayName": "(V50.3) Ear piercing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\(V50.3) Ear piercing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\" + }, + { + "displayName": "(V50.8) Other elective surgery for purposes other than remedying health states", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\(V50.8) Other elective surgery for purposes other than remedying health states\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Elective surgery for purposes other than remedying health states (V50)\\\\(V50.8) Other elective surgery for purposes other than remedying health states\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\" + }, + { + "displayName": "(V50.9) Unspecified elective surgery for purposes other than remedying health states", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\(V50.9) Unspecified elective surgery for purposes other than remedying health states\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Elective surgery for purposes other than remedying health states (V50)\\\\(V50.9) Unspecified elective surgery for purposes other than remedying health states\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\" + }, + { + "displayName": "Prophylactic organ removal (V50.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\Prophylactic organ removal (V50.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\" + }, + { + "displayName": "(V50.41) Prophylactic breast removal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\Prophylactic organ removal (V50.4)\\(V50.41) Prophylactic breast removal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\Prophylactic organ removal (V50.4)\\" + }, + { + "displayName": "(V50.42) Prophylactic ovary removal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\Prophylactic organ removal (V50.4)\\(V50.42) Prophylactic ovary removal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Elective surgery for purposes other than remedying health states (V50)\\\\Prophylactic organ removal (V50.4)\\\\(V50.42) Prophylactic ovary removal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\Prophylactic organ removal (V50.4)\\" + }, + { + "displayName": "(V50.49) Other prophylactic gland removal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\Prophylactic organ removal (V50.4)\\(V50.49) Other prophylactic gland removal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Elective surgery for purposes other than remedying health states (V50)\\\\Prophylactic organ removal (V50.4)\\\\(V50.49) Other prophylactic gland removal\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Elective surgery for purposes other than remedying health states (V50)\\Prophylactic organ removal (V50.4)\\" + }, + { + "displayName": "Encounter for dialysis and dialysis catheter care (V56)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Encounter for dialysis and dialysis catheter care (V56)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\" + }, + { + "displayName": "(V56.0) Encounter for extracorporeal dialysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\(V56.0) Encounter for extracorporeal dialysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\" + }, + { + "displayName": "(V56.1) Fitting and adjustment of extracorporeal dialysis catheter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\(V56.1) Fitting and adjustment of extracorporeal dialysis catheter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\" + }, + { + "displayName": "(V56.2) Fitting and adjustment of peritoneal dialysis catheter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\(V56.2) Fitting and adjustment of peritoneal dialysis catheter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\" + }, + { + "displayName": "(V56.8) Encounter for other dialysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\(V56.8) Encounter for other dialysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\" + }, + { + "displayName": "Encounter for adequacy testing for dialysis (V56.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\Encounter for adequacy testing for dialysis (V56.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\" + }, + { + "displayName": "(V56.31) Encounter for adequacy testing for hemodialysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\Encounter for adequacy testing for dialysis (V56.3)\\(V56.31) Encounter for adequacy testing for hemodialysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\Encounter for adequacy testing for dialysis (V56.3)\\" + }, + { + "displayName": "(V56.32) Encounter for adequacy testing for peritoneal dialysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\Encounter for adequacy testing for dialysis (V56.3)\\(V56.32) Encounter for adequacy testing for peritoneal dialysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for dialysis and dialysis catheter care (V56)\\Encounter for adequacy testing for dialysis (V56.3)\\" + }, + { + "displayName": "Encounter for other and unspecified procedures and aftercare (V58)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\" + }, + { + "displayName": "(V58.0) Encounter for radiotherapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\(V58.0) Encounter for radiotherapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\" + }, + { + "displayName": "(V58.2) Blood transfusion, without reported diagnosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\(V58.2) Blood transfusion, without reported diagnosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\" + }, + { + "displayName": "(V58.5) Orthodontics aftercare", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\(V58.5) Orthodontics aftercare\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Encounter for other and unspecified procedures and aftercare (V58)\\\\(V58.5) Orthodontics aftercare\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\" + }, + { + "displayName": "(V58.9) Unspecified aftercare", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\(V58.9) Unspecified aftercare\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Encounter for other and unspecified procedures and aftercare (V58)\\\\(V58.9) Unspecified aftercare\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\" + }, + { + "displayName": "Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\" + }, + { + "displayName": "(V58.71) Aftercare following surgery of the sense organs, NEC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\(V58.71) Aftercare following surgery of the sense organs, NEC\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\" + }, + { + "displayName": "(V58.72) Aftercare following surgery of the nervous system, NEC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\(V58.72) Aftercare following surgery of the nervous system, NEC\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\" + }, + { + "displayName": "(V58.73) Aftercare following surgery of the circulatory system, NEC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\(V58.73) Aftercare following surgery of the circulatory system, NEC\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\" + }, + { + "displayName": "(V58.74) Aftercare following surgery of the respiratory system, NEC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\(V58.74) Aftercare following surgery of the respiratory system, NEC\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\" + }, + { + "displayName": "(V58.75) Aftercare following surgery of the teeth, oral cavity and digestive system, NEC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\(V58.75) Aftercare following surgery of the teeth, oral cavity and digestive system, NEC\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\" + }, + { + "displayName": "(V58.76) Aftercare following surgery of the genitourinary system, NEC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\(V58.76) Aftercare following surgery of the genitourinary system, NEC\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\" + }, + { + "displayName": "(V58.77) Aftercare following surgery of the skin and subcutaneous tissue, NEC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\(V58.77) Aftercare following surgery of the skin and subcutaneous tissue, NEC\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\" + }, + { + "displayName": "(V58.78) Aftercare following surgery of the musculoskeletal system, NEC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\(V58.78) Aftercare following surgery of the musculoskeletal system, NEC\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Aftercare following surgery to specified body systems, not elsewhere classified (V58.7)\\" + }, + { + "displayName": "Attention to dressings and sutures (V58.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Attention to dressings and sutures (V58.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\" + }, + { + "displayName": "(V58.30) Encounter for change or removal of nonsurgical wound dressing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Attention to dressings and sutures (V58.3)\\(V58.30) Encounter for change or removal of nonsurgical wound dressing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Attention to dressings and sutures (V58.3)\\" + }, + { + "displayName": "(V58.31) Encounter for change or removal of surgical wound dressing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Attention to dressings and sutures (V58.3)\\(V58.31) Encounter for change or removal of surgical wound dressing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Attention to dressings and sutures (V58.3)\\" + }, + { + "displayName": "(V58.32) Encounter for removal of sutures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Attention to dressings and sutures (V58.3)\\(V58.32) Encounter for removal of sutures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Attention to dressings and sutures (V58.3)\\" + }, + { + "displayName": "Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\" + }, + { + "displayName": "(V58.11) Encounter for antineoplastic chemotherapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\\(V58.11) Encounter for antineoplastic chemotherapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\\" + }, + { + "displayName": "(V58.12) Encounter for antineoplastic immunotherapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\\(V58.12) Encounter for antineoplastic immunotherapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for antineoplastic chemotherapy and immunotherapy (V58.1)\\" + }, + { + "displayName": "Encounter for long-term (current) drug use (V58.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Encounter for other and unspecified procedures and aftercare (V58)\\\\Encounter for long-term (current) drug use (V58.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\" + }, + { + "displayName": "(V58.61) Long-term (current) use of anticoagulants", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\(V58.61) Long-term (current) use of anticoagulants\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Encounter for other and unspecified procedures and aftercare (V58)\\\\Encounter for long-term (current) drug use (V58.6)\\\\(V58.61) Long-term (current) use of anticoagulants\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\" + }, + { + "displayName": "(V58.62) Long-term (current) use of antibiotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\(V58.62) Long-term (current) use of antibiotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\" + }, + { + "displayName": "(V58.63) Long-term (current) use of antiplatelet/antithrombotic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\(V58.63) Long-term (current) use of antiplatelet/antithrombotic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Encounter for other and unspecified procedures and aftercare (V58)\\\\Encounter for long-term (current) drug use (V58.6)\\\\(V58.63) Long-term (current) use of antiplatelet/antithrombotic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\" + }, + { + "displayName": "(V58.64) Long-term (current) use of non-steroidal anti-inflammatories (NSAID)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\(V58.64) Long-term (current) use of non-steroidal anti-inflammatories (NSAID)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Encounter for other and unspecified procedures and aftercare (V58)\\\\Encounter for long-term (current) drug use (V58.6)\\\\(V58.64) Long-term (current) use of non-steroidal anti-inflammatories (NSAID)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\" + }, + { + "displayName": "(V58.65) Long-term (current) use of steroids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\(V58.65) Long-term (current) use of steroids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Encounter for other and unspecified procedures and aftercare (V58)\\\\Encounter for long-term (current) drug use (V58.6)\\\\(V58.65) Long-term (current) use of steroids\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\" + }, + { + "displayName": "(V58.66) Long-term (current) use of aspirin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\(V58.66) Long-term (current) use of aspirin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\" + }, + { + "displayName": "(V58.67) Long-term (current) use of insulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\(V58.67) Long-term (current) use of insulin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\" + }, + { + "displayName": "(V58.68) Long term (current) use of bisphosphonates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\(V58.68) Long term (current) use of bisphosphonates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\" + }, + { + "displayName": "(V58.69) Long-term (current) use of other medications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\(V58.69) Long-term (current) use of other medications\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for long-term (current) drug use (V58.6)\\" + }, + { + "displayName": "Encounter for other specified procedures and aftercare (V58.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for other specified procedures and aftercare (V58.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\" + }, + { + "displayName": "(V58.81) Fitting and adjustment of vascular catheter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for other specified procedures and aftercare (V58.8)\\(V58.81) Fitting and adjustment of vascular catheter\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for other specified procedures and aftercare (V58.8)\\" + }, + { + "displayName": "(V58.82) Fitting and adjustment of nonvascular catheter, NEC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for other specified procedures and aftercare (V58.8)\\(V58.82) Fitting and adjustment of nonvascular catheter, NEC\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for other specified procedures and aftercare (V58.8)\\" + }, + { + "displayName": "(V58.83) Encounter for therapeutic drug monitoring", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for other specified procedures and aftercare (V58.8)\\(V58.83) Encounter for therapeutic drug monitoring\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for other specified procedures and aftercare (V58.8)\\" + }, + { + "displayName": "(V58.89) Other specified aftercare", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for other specified procedures and aftercare (V58.8)\\(V58.89) Other specified aftercare\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Encounter for other and unspecified procedures and aftercare (V58)\\\\Encounter for other specified procedures and aftercare (V58.8)\\\\(V58.89) Other specified aftercare\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Encounter for other specified procedures and aftercare (V58.8)\\" + }, + { + "displayName": "Other aftercare following surgery (V58.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Other aftercare following surgery (V58.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\" + }, + { + "displayName": "(V58.41) Encounter for planned post-operative wound closure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Other aftercare following surgery (V58.4)\\(V58.41) Encounter for planned post-operative wound closure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Other aftercare following surgery (V58.4)\\" + }, + { + "displayName": "(V58.42) Aftercare following surgery for neoplasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Other aftercare following surgery (V58.4)\\(V58.42) Aftercare following surgery for neoplasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Other aftercare following surgery (V58.4)\\" + }, + { + "displayName": "(V58.43) Aftercare following surgery for injury and trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Other aftercare following surgery (V58.4)\\(V58.43) Aftercare following surgery for injury and trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Other aftercare following surgery (V58.4)\\" + }, + { + "displayName": "(V58.44) Aftercare following organ transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Other aftercare following surgery (V58.4)\\(V58.44) Aftercare following organ transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Other aftercare following surgery (V58.4)\\" + }, + { + "displayName": "(V58.49) Other specified aftercare following surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Other aftercare following surgery (V58.4)\\(V58.49) Other specified aftercare following surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Encounter for other and unspecified procedures and aftercare (V58)\\Other aftercare following surgery (V58.4)\\" + }, + { + "displayName": "Fitting and adjustment of other device (V53)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of other device (V53)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\" + }, + { + "displayName": "(V53.1) Fitting and adjustment of spectacles and contact lenses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\(V53.1) Fitting and adjustment of spectacles and contact lenses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of other device (V53)\\\\(V53.1) Fitting and adjustment of spectacles and contact lenses\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\" + }, + { + "displayName": "(V53.2) Fitting and adjustment of hearing aid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\(V53.2) Fitting and adjustment of hearing aid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\" + }, + { + "displayName": "(V53.4) Fitting and adjustment of orthodontic devices", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\(V53.4) Fitting and adjustment of orthodontic devices\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\" + }, + { + "displayName": "(V53.6) Fitting and adjustment of urinary devices", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\(V53.6) Fitting and adjustment of urinary devices\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\" + }, + { + "displayName": "(V53.7) Fitting and adjustment of orthopedic devices", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\(V53.7) Fitting and adjustment of orthopedic devices\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\" + }, + { + "displayName": "(V53.8) Fitting and adjustment of wheelchair", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\(V53.8) Fitting and adjustment of wheelchair\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\" + }, + { + "displayName": "Fitting and adjustment of cardiac pacemaker (V53.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of cardiac pacemaker (V53.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of other device (V53)\\\\Fitting and adjustment of cardiac pacemaker (V53.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\" + }, + { + "displayName": "(V53.31) Fitting and adjustment of cardiac pacemaker", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of cardiac pacemaker (V53.3)\\(V53.31) Fitting and adjustment of cardiac pacemaker\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of other device (V53)\\\\Fitting and adjustment of cardiac pacemaker (V53.3)\\\\(V53.31) Fitting and adjustment of cardiac pacemaker\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of cardiac pacemaker (V53.3)\\" + }, + { + "displayName": "(V53.32) Fitting and adjustment of automatic implantable cardiac defibrillator", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of cardiac pacemaker (V53.3)\\(V53.32) Fitting and adjustment of automatic implantable cardiac defibrillator\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of other device (V53)\\\\Fitting and adjustment of cardiac pacemaker (V53.3)\\\\(V53.32) Fitting and adjustment of automatic implantable cardiac defibrillator\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of cardiac pacemaker (V53.3)\\" + }, + { + "displayName": "(V53.39) Fitting and adjustment of other cardiac device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of cardiac pacemaker (V53.3)\\(V53.39) Fitting and adjustment of other cardiac device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of cardiac pacemaker (V53.3)\\" + }, + { + "displayName": "Fitting and adjustment of devices related to nervous system and special senses (V53.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of other device (V53)\\\\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\" + }, + { + "displayName": "(V53.01) Fitting and adjustment of cerebral ventricular (communicating) shunt", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\\(V53.01) Fitting and adjustment of cerebral ventricular (communicating) shunt\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of other device (V53)\\\\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\\\\(V53.01) Fitting and adjustment of cerebral ventricular (communicating) shunt\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\\" + }, + { + "displayName": "(V53.02) Fitting and adjustment of neuropacemaker (brain) (peripheral nerve) (spinal cord)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\\(V53.02) Fitting and adjustment of neuropacemaker (brain) (peripheral nerve) (spinal cord)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\\" + }, + { + "displayName": "(V53.09) Fitting and adjustment of other devices related to nervous system and special senses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\\(V53.09) Fitting and adjustment of other devices related to nervous system and special senses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of other device (V53)\\\\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\\\\(V53.09) Fitting and adjustment of other devices related to nervous system and special senses\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of devices related to nervous system and special senses (V53.0)\\" + }, + { + "displayName": "Fitting and adjustment of other and unspecified device (V53.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other and unspecified device (V53.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\" + }, + { + "displayName": "(V53.90) Fitting and adjustment, unspecified device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other and unspecified device (V53.9)\\(V53.90) Fitting and adjustment, unspecified device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other and unspecified device (V53.9)\\" + }, + { + "displayName": "(V53.91) Fitting and adjustment of insulin pump", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other and unspecified device (V53.9)\\(V53.91) Fitting and adjustment of insulin pump\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other and unspecified device (V53.9)\\" + }, + { + "displayName": "(V53.99) Fitting and adjustment, other device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other and unspecified device (V53.9)\\(V53.99) Fitting and adjustment, other device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other and unspecified device (V53.9)\\" + }, + { + "displayName": "Fitting and adjustment of other gastrointestinal appliance and device (V53.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\" + }, + { + "displayName": "(V53.50) Fitting and adjustment of intestinal appliance and device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\\(V53.50) Fitting and adjustment of intestinal appliance and device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\\" + }, + { + "displayName": "(V53.51) Fitting and adjustment of gastric lap band", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\\(V53.51) Fitting and adjustment of gastric lap band\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\\" + }, + { + "displayName": "(V53.59) Fitting and adjustment of other gastrointestinal appliance and device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\\(V53.59) Fitting and adjustment of other gastrointestinal appliance and device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of other device (V53)\\Fitting and adjustment of other gastrointestinal appliance and device (V53.5)\\" + }, + { + "displayName": "Fitting and adjustment of prosthetic device and implant (V52)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\" + }, + { + "displayName": "(V52.0) Fitting and adjustment of artificial arm (complete) (partial)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\(V52.0) Fitting and adjustment of artificial arm (complete) (partial)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of prosthetic device and implant (V52)\\\\(V52.0) Fitting and adjustment of artificial arm (complete) (partial)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\" + }, + { + "displayName": "(V52.1) Fitting and adjustment of artificial leg (complete) (partial)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\(V52.1) Fitting and adjustment of artificial leg (complete) (partial)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of prosthetic device and implant (V52)\\\\(V52.1) Fitting and adjustment of artificial leg (complete) (partial)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\" + }, + { + "displayName": "(V52.2) Fitting and adjustment of artificial eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\(V52.2) Fitting and adjustment of artificial eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of prosthetic device and implant (V52)\\\\(V52.2) Fitting and adjustment of artificial eye\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\" + }, + { + "displayName": "(V52.3) Fitting and adjustment of dental prosthetic device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\(V52.3) Fitting and adjustment of dental prosthetic device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\" + }, + { + "displayName": "(V52.4) Fitting and adjustment of breast prosthesis and implant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\(V52.4) Fitting and adjustment of breast prosthesis and implant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of prosthetic device and implant (V52)\\\\(V52.4) Fitting and adjustment of breast prosthesis and implant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\" + }, + { + "displayName": "(V52.8) Fitting and adjustment of other specified prosthetic device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\(V52.8) Fitting and adjustment of other specified prosthetic device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of prosthetic device and implant (V52)\\\\(V52.8) Fitting and adjustment of other specified prosthetic device\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\" + }, + { + "displayName": "(V52.9) Fitting and adjustment of unspecified prosthetic device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\(V52.9) Fitting and adjustment of unspecified prosthetic device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Fitting and adjustment of prosthetic device and implant (V52)\\\\(V52.9) Fitting and adjustment of unspecified prosthetic device\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Fitting and adjustment of prosthetic device and implant (V52)\\" + }, + { + "displayName": "Other orthopedic aftercare (V54)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Other orthopedic aftercare (V54)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\" + }, + { + "displayName": "(V54.9) Unspecified orthopedic aftercare", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\(V54.9) Unspecified orthopedic aftercare\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Other orthopedic aftercare (V54)\\\\(V54.9) Unspecified orthopedic aftercare\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\" + }, + { + "displayName": "Aftercare for healing pathologic fracture (V54.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\" + }, + { + "displayName": "(V54.20) Aftercare for healing pathologic fracture of arm, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\(V54.20) Aftercare for healing pathologic fracture of arm, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\" + }, + { + "displayName": "(V54.21) Aftercare for healing pathologic fracture of upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\(V54.21) Aftercare for healing pathologic fracture of upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\" + }, + { + "displayName": "(V54.22) Aftercare for healing pathologic fracture of lower arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\(V54.22) Aftercare for healing pathologic fracture of lower arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\" + }, + { + "displayName": "(V54.23) Aftercare for healing pathologic fracture of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\(V54.23) Aftercare for healing pathologic fracture of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\" + }, + { + "displayName": "(V54.24) Aftercare for healing pathologic fracture of leg, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\(V54.24) Aftercare for healing pathologic fracture of leg, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\" + }, + { + "displayName": "(V54.25) Aftercare for healing pathologic fracture of upper leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\(V54.25) Aftercare for healing pathologic fracture of upper leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\" + }, + { + "displayName": "(V54.26) Aftercare for healing pathologic fracture of lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\(V54.26) Aftercare for healing pathologic fracture of lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\" + }, + { + "displayName": "(V54.27) Aftercare for healing pathologic fracture of vertebrae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\(V54.27) Aftercare for healing pathologic fracture of vertebrae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\" + }, + { + "displayName": "(V54.29) Aftercare for healing pathologic fracture of other bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\(V54.29) Aftercare for healing pathologic fracture of other bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing pathologic fracture (V54.2)\\" + }, + { + "displayName": "Aftercare for healing traumatic fracture (V54.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Other orthopedic aftercare (V54)\\\\Aftercare for healing traumatic fracture (V54.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\" + }, + { + "displayName": "(V54.10) Aftercare for healing traumatic fracture of arm, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\(V54.10) Aftercare for healing traumatic fracture of arm, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Other orthopedic aftercare (V54)\\\\Aftercare for healing traumatic fracture (V54.1)\\\\(V54.10) Aftercare for healing traumatic fracture of arm, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\" + }, + { + "displayName": "(V54.11) Aftercare for healing traumatic fracture of upper arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\(V54.11) Aftercare for healing traumatic fracture of upper arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Other orthopedic aftercare (V54)\\\\Aftercare for healing traumatic fracture (V54.1)\\\\(V54.11) Aftercare for healing traumatic fracture of upper arm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\" + }, + { + "displayName": "(V54.12) Aftercare for healing traumatic fracture of lower arm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\(V54.12) Aftercare for healing traumatic fracture of lower arm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\" + }, + { + "displayName": "(V54.13) Aftercare for healing traumatic fracture of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\(V54.13) Aftercare for healing traumatic fracture of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\" + }, + { + "displayName": "(V54.14) Aftercare for healing traumatic fracture of leg, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\(V54.14) Aftercare for healing traumatic fracture of leg, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\" + }, + { + "displayName": "(V54.15) Aftercare for healing traumatic fracture of upper leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\(V54.15) Aftercare for healing traumatic fracture of upper leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\" + }, + { + "displayName": "(V54.16) Aftercare for healing traumatic fracture of lower leg", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\(V54.16) Aftercare for healing traumatic fracture of lower leg\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\" + }, + { + "displayName": "(V54.17) Aftercare for healing traumatic fracture of vertebrae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\(V54.17) Aftercare for healing traumatic fracture of vertebrae\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\" + }, + { + "displayName": "(V54.19) Aftercare for healing traumatic fracture of other bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\(V54.19) Aftercare for healing traumatic fracture of other bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare for healing traumatic fracture (V54.1)\\" + }, + { + "displayName": "Aftercare involving internal fixation device (V54.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare involving internal fixation device (V54.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\" + }, + { + "displayName": "(V54.01) Encounter for removal of internal fixation device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare involving internal fixation device (V54.0)\\(V54.01) Encounter for removal of internal fixation device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Other orthopedic aftercare (V54)\\\\Aftercare involving internal fixation device (V54.0)\\\\(V54.01) Encounter for removal of internal fixation device\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare involving internal fixation device (V54.0)\\" + }, + { + "displayName": "(V54.02) Encounter for lengthening/adjustment of growth rod", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare involving internal fixation device (V54.0)\\(V54.02) Encounter for lengthening/adjustment of growth rod\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Other orthopedic aftercare (V54)\\\\Aftercare involving internal fixation device (V54.0)\\\\(V54.02) Encounter for lengthening/adjustment of growth rod\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare involving internal fixation device (V54.0)\\" + }, + { + "displayName": "(V54.09) Other aftercare involving internal fixation device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare involving internal fixation device (V54.0)\\(V54.09) Other aftercare involving internal fixation device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Aftercare involving internal fixation device (V54.0)\\" + }, + { + "displayName": "Other orthopedic aftercare (V54.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Other orthopedic aftercare (V54.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\" + }, + { + "displayName": "(V54.81) Aftercare following joint replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Other orthopedic aftercare (V54.8)\\(V54.81) Aftercare following joint replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Other orthopedic aftercare (V54.8)\\" + }, + { + "displayName": "(V54.82) Aftercare following explantation of joint prosthesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Other orthopedic aftercare (V54.8)\\(V54.82) Aftercare following explantation of joint prosthesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Other orthopedic aftercare (V54.8)\\" + }, + { + "displayName": "(V54.89) Other orthopedic aftercare", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Other orthopedic aftercare (V54.8)\\(V54.89) Other orthopedic aftercare\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\\\Other orthopedic aftercare (V54)\\\\Other orthopedic aftercare (V54.8)\\\\(V54.89) Other orthopedic aftercare\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services for specific procedures and aftercare (v50-v59.99)\\Other orthopedic aftercare (V54)\\Other orthopedic aftercare (V54.8)\\" + }, + { + "displayName": "Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Constitutional states in development (V21)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Constitutional states in development (V21)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\" + }, + { + "displayName": "(V21.0) Period of rapid growth in childhood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\(V21.0) Period of rapid growth in childhood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Constitutional states in development (V21)\\\\(V21.0) Period of rapid growth in childhood\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\" + }, + { + "displayName": "(V21.1) Puberty", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\(V21.1) Puberty\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Constitutional states in development (V21)\\\\(V21.1) Puberty\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\" + }, + { + "displayName": "(V21.2) Other development of adolescence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\(V21.2) Other development of adolescence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Constitutional states in development (V21)\\\\(V21.2) Other development of adolescence\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\" + }, + { + "displayName": "(V21.8) Other specified constitutional states in development", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\(V21.8) Other specified constitutional states in development\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\" + }, + { + "displayName": "(V21.9) Unspecified constitutional state in development", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\(V21.9) Unspecified constitutional state in development\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\" + }, + { + "displayName": "Low birth weight status (V21.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Constitutional states in development (V21)\\\\Low birth weight status (V21.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\" + }, + { + "displayName": "(V21.30) Low birth weight status, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\(V21.30) Low birth weight status, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Constitutional states in development (V21)\\\\Low birth weight status (V21.3)\\\\(V21.30) Low birth weight status, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\" + }, + { + "displayName": "(V21.31) Low birth weight status, less than 500 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\(V21.31) Low birth weight status, less than 500 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Constitutional states in development (V21)\\\\Low birth weight status (V21.3)\\\\(V21.31) Low birth weight status, less than 500 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\" + }, + { + "displayName": "(V21.32) Low birth weight status, 500-999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\(V21.32) Low birth weight status, 500-999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Constitutional states in development (V21)\\\\Low birth weight status (V21.3)\\\\(V21.32) Low birth weight status, 500-999 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\" + }, + { + "displayName": "(V21.33) Low birth weight status, 1000-1499 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\(V21.33) Low birth weight status, 1000-1499 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Constitutional states in development (V21)\\\\Low birth weight status (V21.3)\\\\(V21.33) Low birth weight status, 1000-1499 grams\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\" + }, + { + "displayName": "(V21.34) Low birth weight status, 1500-1999 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\(V21.34) Low birth weight status, 1500-1999 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\" + }, + { + "displayName": "(V21.35) Low birth weight status, 2000-2500 grams", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\(V21.35) Low birth weight status, 2000-2500 grams\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Constitutional states in development (V21)\\Low birth weight status (V21.3)\\" + }, + { + "displayName": "Encounter for antenatal screening of mother (V28)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\" + }, + { + "displayName": "(V28.0) Antenatal screening for chromosomal anomalies by amniocentesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\(V28.0) Antenatal screening for chromosomal anomalies by amniocentesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\" + }, + { + "displayName": "(V28.1) Antenatal screening for raised alpha-fetoprotein levels in amniotic fluid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\(V28.1) Antenatal screening for raised alpha-fetoprotein levels in amniotic fluid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\" + }, + { + "displayName": "(V28.2) Other antenatal screening based on amniocentesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\(V28.2) Other antenatal screening based on amniocentesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\" + }, + { + "displayName": "(V28.3) Encounter for routine screening for malformation using ultrasonics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\(V28.3) Encounter for routine screening for malformation using ultrasonics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\" + }, + { + "displayName": "(V28.4) Antenatal screening for fetal growth retardation using ultrasonics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\(V28.4) Antenatal screening for fetal growth retardation using ultrasonics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\" + }, + { + "displayName": "(V28.5) Antenatal screening for isoimmunization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\(V28.5) Antenatal screening for isoimmunization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\" + }, + { + "displayName": "(V28.6) Antenatal screening for Streptococcus B", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\(V28.6) Antenatal screening for Streptococcus B\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Encounter for antenatal screening of mother (V28)\\\\(V28.6) Antenatal screening for Streptococcus B\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\" + }, + { + "displayName": "(V28.9) Unspecified antenatal screening", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\(V28.9) Unspecified antenatal screening\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Encounter for antenatal screening of mother (V28)\\\\(V28.9) Unspecified antenatal screening\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\" + }, + { + "displayName": "Other specified antenatal screening (V28.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\Other specified antenatal screening (V28.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Encounter for antenatal screening of mother (V28)\\\\Other specified antenatal screening (V28.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\" + }, + { + "displayName": "(V28.81) Encounter for fetal anatomic survey", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\Other specified antenatal screening (V28.8)\\(V28.81) Encounter for fetal anatomic survey\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Encounter for antenatal screening of mother (V28)\\\\Other specified antenatal screening (V28.8)\\\\(V28.81) Encounter for fetal anatomic survey\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\Other specified antenatal screening (V28.8)\\" + }, + { + "displayName": "(V28.82) Encounter for screening for risk of pre-term labor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\Other specified antenatal screening (V28.8)\\(V28.82) Encounter for screening for risk of pre-term labor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\Other specified antenatal screening (V28.8)\\" + }, + { + "displayName": "(V28.89) Other specified antenatal screening", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\Other specified antenatal screening (V28.8)\\(V28.89) Other specified antenatal screening\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Encounter for antenatal screening of mother (V28)\\\\Other specified antenatal screening (V28.8)\\\\(V28.89) Other specified antenatal screening\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for antenatal screening of mother (V28)\\Other specified antenatal screening (V28.8)\\" + }, + { + "displayName": "Encounter for contraceptive management (V25)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\" + }, + { + "displayName": "(V25.2) Sterilization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\(V25.2) Sterilization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Encounter for contraceptive management (V25)\\\\(V25.2) Sterilization\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\" + }, + { + "displayName": "(V25.3) Menstrual extraction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\(V25.3) Menstrual extraction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Encounter for contraceptive management (V25)\\\\(V25.3) Menstrual extraction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\" + }, + { + "displayName": "(V25.5) Insertion of implantable subdermal contraceptive", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\(V25.5) Insertion of implantable subdermal contraceptive\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\" + }, + { + "displayName": "(V25.8) Other specified contraceptive management", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\(V25.8) Other specified contraceptive management\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\" + }, + { + "displayName": "(V25.9) Unspecified contraceptive management", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\(V25.9) Unspecified contraceptive management\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\" + }, + { + "displayName": "Encounter for general counseling and advice on contraceptive management (V25.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for general counseling and advice on contraceptive management (V25.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\" + }, + { + "displayName": "(V25.01) General counseling on prescription of oral contraceptives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for general counseling and advice on contraceptive management (V25.0)\\(V25.01) General counseling on prescription of oral contraceptives\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for general counseling and advice on contraceptive management (V25.0)\\" + }, + { + "displayName": "(V25.02) General counseling on initiation of other contraceptive measures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for general counseling and advice on contraceptive management (V25.0)\\(V25.02) General counseling on initiation of other contraceptive measures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for general counseling and advice on contraceptive management (V25.0)\\" + }, + { + "displayName": "(V25.03) Encounter for emergency contraceptive counseling and prescription", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for general counseling and advice on contraceptive management (V25.0)\\(V25.03) Encounter for emergency contraceptive counseling and prescription\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for general counseling and advice on contraceptive management (V25.0)\\" + }, + { + "displayName": "(V25.04) Counseling and instruction in natural family planning to avoid pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for general counseling and advice on contraceptive management (V25.0)\\(V25.04) Counseling and instruction in natural family planning to avoid pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for general counseling and advice on contraceptive management (V25.0)\\" + }, + { + "displayName": "(V25.09) Other general counseling and advice on contraceptive management", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for general counseling and advice on contraceptive management (V25.0)\\(V25.09) Other general counseling and advice on contraceptive management\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for general counseling and advice on contraceptive management (V25.0)\\" + }, + { + "displayName": "Encounter for insertion or removal of intrauterine contraceptive device (V25.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\" + }, + { + "displayName": "(V25.11) Encounter for insertion of intrauterine contraceptive device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\\(V25.11) Encounter for insertion of intrauterine contraceptive device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\\" + }, + { + "displayName": "(V25.12) Encounter for removal of intrauterine contraceptive device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\\(V25.12) Encounter for removal of intrauterine contraceptive device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\\" + }, + { + "displayName": "(V25.13) Encounter for removal and reinsertion of intrauterine contraceptive device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\\(V25.13) Encounter for removal and reinsertion of intrauterine contraceptive device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for insertion or removal of intrauterine contraceptive device (V25.1)\\" + }, + { + "displayName": "Encounter for surveillance of previously prescribed contraceptive methods (V25.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Encounter for contraceptive management (V25)\\\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\" + }, + { + "displayName": "(V25.40) Contraceptive surveillance, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\(V25.40) Contraceptive surveillance, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\" + }, + { + "displayName": "(V25.41) Surveillance of contraceptive pill", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\(V25.41) Surveillance of contraceptive pill\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\" + }, + { + "displayName": "(V25.42) Surveillance of intrauterine contraceptive device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\(V25.42) Surveillance of intrauterine contraceptive device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\" + }, + { + "displayName": "(V25.43) Surveillance of implantable subdermal contraceptive", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\(V25.43) Surveillance of implantable subdermal contraceptive\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\" + }, + { + "displayName": "(V25.49) Surveillance of other contraceptive method", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\(V25.49) Surveillance of other contraceptive method\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Encounter for contraceptive management (V25)\\Encounter for surveillance of previously prescribed contraceptive methods (V25.4)\\" + }, + { + "displayName": "Health supervision of infant or child (V20)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\" + }, + { + "displayName": "(V20.0) Health supervision of foundling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\(V20.0) Health supervision of foundling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Health supervision of infant or child (V20)\\\\(V20.0) Health supervision of foundling\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\" + }, + { + "displayName": "(V20.1) Other healthy infant or child receiving care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\(V20.1) Other healthy infant or child receiving care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Health supervision of infant or child (V20)\\\\(V20.1) Other healthy infant or child receiving care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\" + }, + { + "displayName": "(V20.2) Routine infant or child health check", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\(V20.2) Routine infant or child health check\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Health supervision of infant or child (V20)\\\\(V20.2) Routine infant or child health check\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\" + }, + { + "displayName": "Newborn health supervision (V20.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\Newborn health supervision (V20.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Health supervision of infant or child (V20)\\\\Newborn health supervision (V20.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\" + }, + { + "displayName": "(V20.31) Health supervision for newborn under 8 days old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\Newborn health supervision (V20.3)\\(V20.31) Health supervision for newborn under 8 days old\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Health supervision of infant or child (V20)\\\\Newborn health supervision (V20.3)\\\\(V20.31) Health supervision for newborn under 8 days old\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\Newborn health supervision (V20.3)\\" + }, + { + "displayName": "(V20.32) Health supervision for newborn 8 to 28 days old", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\Newborn health supervision (V20.3)\\(V20.32) Health supervision for newborn 8 to 28 days old\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Health supervision of infant or child (V20)\\\\Newborn health supervision (V20.3)\\\\(V20.32) Health supervision for newborn 8 to 28 days old\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Health supervision of infant or child (V20)\\Newborn health supervision (V20.3)\\" + }, + { + "displayName": "Normal pregnancy (V22)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Normal pregnancy (V22)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Normal pregnancy (V22)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\" + }, + { + "displayName": "(V22.0) Supervision of normal first pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Normal pregnancy (V22)\\(V22.0) Supervision of normal first pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Normal pregnancy (V22)\\\\(V22.0) Supervision of normal first pregnancy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Normal pregnancy (V22)\\" + }, + { + "displayName": "(V22.1) Supervision of other normal pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Normal pregnancy (V22)\\(V22.1) Supervision of other normal pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Normal pregnancy (V22)\\\\(V22.1) Supervision of other normal pregnancy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Normal pregnancy (V22)\\" + }, + { + "displayName": "(V22.2) Pregnant state, incidental", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Normal pregnancy (V22)\\(V22.2) Pregnant state, incidental\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Normal pregnancy (V22)\\\\(V22.2) Pregnant state, incidental\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Normal pregnancy (V22)\\" + }, + { + "displayName": "Observation and evaluation of newborns for suspected condition not found (V29)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Observation and evaluation of newborns for suspected condition not found (V29)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\" + }, + { + "displayName": "(V29.0) Observation for suspected infectious condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\(V29.0) Observation for suspected infectious condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Observation and evaluation of newborns for suspected condition not found (V29)\\\\(V29.0) Observation for suspected infectious condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\" + }, + { + "displayName": "(V29.1) Observation for suspected neurological conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\(V29.1) Observation for suspected neurological conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Observation and evaluation of newborns for suspected condition not found (V29)\\\\(V29.1) Observation for suspected neurological conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\" + }, + { + "displayName": "(V29.2) Observation and evaluation of newborn for suspected respiratory condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\(V29.2) Observation and evaluation of newborn for suspected respiratory condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Observation and evaluation of newborns for suspected condition not found (V29)\\\\(V29.2) Observation and evaluation of newborn for suspected respiratory condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\" + }, + { + "displayName": "(V29.3) Observation for suspected genetic or metabolic condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\(V29.3) Observation for suspected genetic or metabolic condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Observation and evaluation of newborns for suspected condition not found (V29)\\\\(V29.3) Observation for suspected genetic or metabolic condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\" + }, + { + "displayName": "(V29.8) Observation for other specified suspected conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\(V29.8) Observation for other specified suspected conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Observation and evaluation of newborns for suspected condition not found (V29)\\\\(V29.8) Observation for other specified suspected conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\" + }, + { + "displayName": "(V29.9) Observation for unspecified suspected conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\(V29.9) Observation for unspecified suspected conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Observation and evaluation of newborns for suspected condition not found (V29)\\\\(V29.9) Observation for unspecified suspected conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Observation and evaluation of newborns for suspected condition not found (V29)\\" + }, + { + "displayName": "Outcome of delivery (V27)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Outcome of delivery (V27)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\" + }, + { + "displayName": "(V27.0) Outcome of delivery, single liveborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\(V27.0) Outcome of delivery, single liveborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Outcome of delivery (V27)\\\\(V27.0) Outcome of delivery, single liveborn\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\" + }, + { + "displayName": "(V27.1) Outcome of delivery, single stillborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\(V27.1) Outcome of delivery, single stillborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\" + }, + { + "displayName": "(V27.2) Outcome of delivery, twins, both liveborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\(V27.2) Outcome of delivery, twins, both liveborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\" + }, + { + "displayName": "(V27.3) Outcome of delivery, twins, one liveborn and one stillborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\(V27.3) Outcome of delivery, twins, one liveborn and one stillborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\" + }, + { + "displayName": "(V27.4) Outcome of delivery, twins, both stillborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\(V27.4) Outcome of delivery, twins, both stillborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\" + }, + { + "displayName": "(V27.5) Outcome of delivery, other multiple birth, all liveborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\(V27.5) Outcome of delivery, other multiple birth, all liveborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\" + }, + { + "displayName": "(V27.6) Outcome of delivery, other multiple birth, some liveborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\(V27.6) Outcome of delivery, other multiple birth, some liveborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\" + }, + { + "displayName": "(V27.7) Outcome of delivery, other multiple birth, all stillborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\(V27.7) Outcome of delivery, other multiple birth, all stillborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\" + }, + { + "displayName": "(V27.9) Outcome of delivery, unspecified outcome of delivery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\(V27.9) Outcome of delivery, unspecified outcome of delivery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Outcome of delivery (V27)\\" + }, + { + "displayName": "Postpartum care and examination (V24)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Postpartum care and examination (V24)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Postpartum care and examination (V24)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\" + }, + { + "displayName": "(V24.0) Postpartum care and examination immediately after delivery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Postpartum care and examination (V24)\\(V24.0) Postpartum care and examination immediately after delivery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Postpartum care and examination (V24)\\\\(V24.0) Postpartum care and examination immediately after delivery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Postpartum care and examination (V24)\\" + }, + { + "displayName": "(V24.1) Postpartum care and examination of lactating mother", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Postpartum care and examination (V24)\\(V24.1) Postpartum care and examination of lactating mother\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Postpartum care and examination (V24)\\\\(V24.1) Postpartum care and examination of lactating mother\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Postpartum care and examination (V24)\\" + }, + { + "displayName": "(V24.2) Routine postpartum follow-up", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Postpartum care and examination (V24)\\(V24.2) Routine postpartum follow-up\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Postpartum care and examination (V24)\\" + }, + { + "displayName": "Procreative management (V26)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\" + }, + { + "displayName": "(V26.0) Tuboplasty or vasoplasty after previous sterilization", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\(V26.0) Tuboplasty or vasoplasty after previous sterilization\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\" + }, + { + "displayName": "(V26.1) Artificial insemination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\(V26.1) Artificial insemination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\" + }, + { + "displayName": "(V26.9) Unspecified procreative management", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\(V26.9) Unspecified procreative management\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\" + }, + { + "displayName": "General counseling and advice on procreative management (V26.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\General counseling and advice on procreative management (V26.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Procreative management (V26)\\\\General counseling and advice on procreative management (V26.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\" + }, + { + "displayName": "(V26.41) Procreative counseling and advice using natural family planning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\General counseling and advice on procreative management (V26.4)\\(V26.41) Procreative counseling and advice using natural family planning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Procreative management (V26)\\\\General counseling and advice on procreative management (V26.4)\\\\(V26.41) Procreative counseling and advice using natural family planning\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\General counseling and advice on procreative management (V26.4)\\" + }, + { + "displayName": "(V26.42) Encounter for fertility preservation counseling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\General counseling and advice on procreative management (V26.4)\\(V26.42) Encounter for fertility preservation counseling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\General counseling and advice on procreative management (V26.4)\\" + }, + { + "displayName": "(V26.49) Other procreative management counseling and advice", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\General counseling and advice on procreative management (V26.4)\\(V26.49) Other procreative management counseling and advice\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\General counseling and advice on procreative management (V26.4)\\" + }, + { + "displayName": "Genetic counseling and testing on procreative management (V26.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Procreative management (V26)\\\\Genetic counseling and testing on procreative management (V26.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\" + }, + { + "displayName": "(V26.31) Testing of female for genetic disease carrier status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\(V26.31) Testing of female for genetic disease carrier status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\" + }, + { + "displayName": "(V26.32) Other genetic testing of female", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\(V26.32) Other genetic testing of female\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\" + }, + { + "displayName": "(V26.33) Genetic counseling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\(V26.33) Genetic counseling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\" + }, + { + "displayName": "(V26.34) Testing of male for genetic disease carrier status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\(V26.34) Testing of male for genetic disease carrier status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\" + }, + { + "displayName": "(V26.35) Encounter for testing of male partner of female with recurrent pregnancy loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\(V26.35) Encounter for testing of male partner of female with recurrent pregnancy loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\" + }, + { + "displayName": "(V26.39) Other genetic testing of male", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\(V26.39) Other genetic testing of male\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Procreative management (V26)\\\\Genetic counseling and testing on procreative management (V26.3)\\\\(V26.39) Other genetic testing of male\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Genetic counseling and testing on procreative management (V26.3)\\" + }, + { + "displayName": "Other specified procreative management (V26.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Other specified procreative management (V26.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Procreative management (V26)\\\\Other specified procreative management (V26.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\" + }, + { + "displayName": "(V26.81) Encounter for assisted reproductive fertility procedure cycle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Other specified procreative management (V26.8)\\(V26.81) Encounter for assisted reproductive fertility procedure cycle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Other specified procreative management (V26.8)\\" + }, + { + "displayName": "(V26.82) Encounter for fertility preservation procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Other specified procreative management (V26.8)\\(V26.82) Encounter for fertility preservation procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Other specified procreative management (V26.8)\\" + }, + { + "displayName": "(V26.89) Other specified procreative management", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Other specified procreative management (V26.8)\\(V26.89) Other specified procreative management\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Other specified procreative management (V26.8)\\" + }, + { + "displayName": "Procreation management investigation and testing (V26.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Procreation management investigation and testing (V26.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\" + }, + { + "displayName": "(V26.21) Fertility testing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Procreation management investigation and testing (V26.2)\\(V26.21) Fertility testing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Procreative management (V26)\\\\Procreation management investigation and testing (V26.2)\\\\(V26.21) Fertility testing\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Procreation management investigation and testing (V26.2)\\" + }, + { + "displayName": "(V26.22) Aftercare following sterilization reversal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Procreation management investigation and testing (V26.2)\\(V26.22) Aftercare following sterilization reversal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Procreation management investigation and testing (V26.2)\\" + }, + { + "displayName": "(V26.29) Other investigation and testing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Procreation management investigation and testing (V26.2)\\(V26.29) Other investigation and testing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Procreative management (V26)\\\\Procreation management investigation and testing (V26.2)\\\\(V26.29) Other investigation and testing\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Procreation management investigation and testing (V26.2)\\" + }, + { + "displayName": "Sterilization status (V26.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Sterilization status (V26.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\" + }, + { + "displayName": "(V26.51) Tubal ligation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Sterilization status (V26.5)\\(V26.51) Tubal ligation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Sterilization status (V26.5)\\" + }, + { + "displayName": "(V26.52) Vasectomy status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Sterilization status (V26.5)\\(V26.52) Vasectomy status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Procreative management (V26)\\Sterilization status (V26.5)\\" + }, + { + "displayName": "Supervision of high-risk pregnancy (V23)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Supervision of high-risk pregnancy (V23)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\" + }, + { + "displayName": "(V23.0) Supervision of high-risk pregnancy with history of infertility", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\(V23.0) Supervision of high-risk pregnancy with history of infertility\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Supervision of high-risk pregnancy (V23)\\\\(V23.0) Supervision of high-risk pregnancy with history of infertility\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\" + }, + { + "displayName": "(V23.1) Supervision of high-risk pregnancy with history of trophoblastic disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\(V23.1) Supervision of high-risk pregnancy with history of trophoblastic disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Supervision of high-risk pregnancy (V23)\\\\(V23.1) Supervision of high-risk pregnancy with history of trophoblastic disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\" + }, + { + "displayName": "(V23.2) Supervision of high-risk pregnancy with history of abortion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\(V23.2) Supervision of high-risk pregnancy with history of abortion\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\" + }, + { + "displayName": "(V23.3) Supervision of high-risk pregnancy with grand multiparity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\(V23.3) Supervision of high-risk pregnancy with grand multiparity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\" + }, + { + "displayName": "(V23.5) Supervision of high-risk pregnancy with other poor reproductive history", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\(V23.5) Supervision of high-risk pregnancy with other poor reproductive history\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Supervision of high-risk pregnancy (V23)\\\\(V23.5) Supervision of high-risk pregnancy with other poor reproductive history\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\" + }, + { + "displayName": "(V23.7) Supervision of high-risk pregnancy with insufficient prenatal care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\(V23.7) Supervision of high-risk pregnancy with insufficient prenatal care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Supervision of high-risk pregnancy (V23)\\\\(V23.7) Supervision of high-risk pregnancy with insufficient prenatal care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\" + }, + { + "displayName": "(V23.9) Supervision of unspecified high-risk pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\(V23.9) Supervision of unspecified high-risk pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\" + }, + { + "displayName": "Supervision of high-risk pregnancy with other poor obstetric history (V23.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\" + }, + { + "displayName": "(V23.41) Pregnancy with history of pre-term labor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\\(V23.41) Pregnancy with history of pre-term labor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\\" + }, + { + "displayName": "(V23.42) Pregnancy with history of ectopic pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\\(V23.42) Pregnancy with history of ectopic pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Supervision of high-risk pregnancy (V23)\\\\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\\\\(V23.42) Pregnancy with history of ectopic pregnancy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\\" + }, + { + "displayName": "(V23.49) Pregnancy with other poor obstetric history", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\\(V23.49) Pregnancy with other poor obstetric history\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Supervision of high-risk pregnancy (V23)\\\\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\\\\(V23.49) Pregnancy with other poor obstetric history\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of high-risk pregnancy with other poor obstetric history (V23.4)\\" + }, + { + "displayName": "Supervision of other high-risk pregnancy (V23.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\" + }, + { + "displayName": "(V23.81) Supervision of high-risk pregnancy with elderly primigravida", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\(V23.81) Supervision of high-risk pregnancy with elderly primigravida\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\" + }, + { + "displayName": "(V23.82) Supervision of high-risk pregnancy with elderly multigravida", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\(V23.82) Supervision of high-risk pregnancy with elderly multigravida\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\" + }, + { + "displayName": "(V23.83) Supervision of high-risk pregnancy with young primigravida", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\(V23.83) Supervision of high-risk pregnancy with young primigravida\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\" + }, + { + "displayName": "(V23.84) Supervision of high-risk pregnancy with young multigravida", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\(V23.84) Supervision of high-risk pregnancy with young multigravida\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\" + }, + { + "displayName": "(V23.85) Pregnancy resulting from assisted reproductive technology", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\(V23.85) Pregnancy resulting from assisted reproductive technology\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\" + }, + { + "displayName": "(V23.87) Pregnancy with inconclusive fetal viability", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\(V23.87) Pregnancy with inconclusive fetal viability\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\" + }, + { + "displayName": "(V23.89) Supervision of other high-risk pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\(V23.89) Supervision of other high-risk pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\\\Supervision of high-risk pregnancy (V23)\\\\Supervision of other high-risk pregnancy (V23.8)\\\\(V23.89) Supervision of other high-risk pregnancy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in circumstances related to reproduction and development (v20-v29.99)\\Supervision of high-risk pregnancy (V23)\\Supervision of other high-risk pregnancy (V23.8)\\" + }, + { + "displayName": "Persons encountering health services in other circumstances (v60-v69.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Convalescence and palliative care (V66)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\" + }, + { + "displayName": "(V66.0) Convalescence following surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\(V66.0) Convalescence following surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\" + }, + { + "displayName": "(V66.1) Convalescence following radiotherapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\(V66.1) Convalescence following radiotherapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Convalescence and palliative care (V66)\\\\(V66.1) Convalescence following radiotherapy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\" + }, + { + "displayName": "(V66.2) Convalescence following chemotherapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\(V66.2) Convalescence following chemotherapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Convalescence and palliative care (V66)\\\\(V66.2) Convalescence following chemotherapy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\" + }, + { + "displayName": "(V66.3) Convalescence following psychotherapy and other treatment for mental disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\(V66.3) Convalescence following psychotherapy and other treatment for mental disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\" + }, + { + "displayName": "(V66.4) Convalescence following treatment of fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\(V66.4) Convalescence following treatment of fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Convalescence and palliative care (V66)\\\\(V66.4) Convalescence following treatment of fracture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\" + }, + { + "displayName": "(V66.5) Convalescence following other treatment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\(V66.5) Convalescence following other treatment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Convalescence and palliative care (V66)\\\\(V66.5) Convalescence following other treatment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\" + }, + { + "displayName": "(V66.6) Convalescence following combined treatment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\(V66.6) Convalescence following combined treatment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\" + }, + { + "displayName": "(V66.7) Encounter for palliative care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\(V66.7) Encounter for palliative care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\" + }, + { + "displayName": "(V66.9) Unspecified convalescence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\(V66.9) Unspecified convalescence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Convalescence and palliative care (V66)\\" + }, + { + "displayName": "Encounters for administrative purposes (V68)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\" + }, + { + "displayName": "(V68.1) Issue of repeat prescriptions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\(V68.1) Issue of repeat prescriptions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Encounters for administrative purposes (V68)\\\\(V68.1) Issue of repeat prescriptions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\" + }, + { + "displayName": "(V68.2) Request for expert evidence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\(V68.2) Request for expert evidence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Encounters for administrative purposes (V68)\\\\(V68.2) Request for expert evidence\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\" + }, + { + "displayName": "(V68.9) Encounters for unspecified administrative purpose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\(V68.9) Encounters for unspecified administrative purpose\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\" + }, + { + "displayName": "Encounters for other specified administrative purpose (V68.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\Encounters for other specified administrative purpose (V68.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\" + }, + { + "displayName": "(V68.81) Referral of patient without examination or treatment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\Encounters for other specified administrative purpose (V68.8)\\(V68.81) Referral of patient without examination or treatment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\Encounters for other specified administrative purpose (V68.8)\\" + }, + { + "displayName": "(V68.89) Encounters for other specified administrative purpose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\Encounters for other specified administrative purpose (V68.8)\\(V68.89) Encounters for other specified administrative purpose\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\Encounters for other specified administrative purpose (V68.8)\\" + }, + { + "displayName": "Issue of medical certificates (V68.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\Issue of medical certificates (V68.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\" + }, + { + "displayName": "(V68.01) Disability examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\Issue of medical certificates (V68.0)\\(V68.01) Disability examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\Issue of medical certificates (V68.0)\\" + }, + { + "displayName": "(V68.09) Other issue of medical certificates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\Issue of medical certificates (V68.0)\\(V68.09) Other issue of medical certificates\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Encounters for administrative purposes (V68)\\\\Issue of medical certificates (V68.0)\\\\(V68.09) Other issue of medical certificates\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Encounters for administrative purposes (V68)\\Issue of medical certificates (V68.0)\\" + }, + { + "displayName": "Follow-up examination (V67)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\" + }, + { + "displayName": "(V67.1) Follow-up examination, following radiotherapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\(V67.1) Follow-up examination, following radiotherapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Follow-up examination (V67)\\\\(V67.1) Follow-up examination, following radiotherapy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\" + }, + { + "displayName": "(V67.2) Follow-up examination, following chemotherapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\(V67.2) Follow-up examination, following chemotherapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Follow-up examination (V67)\\\\(V67.2) Follow-up examination, following chemotherapy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\" + }, + { + "displayName": "(V67.3) Follow-up examination, following psychotherapy and other treatment for mental disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\(V67.3) Follow-up examination, following psychotherapy and other treatment for mental disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\" + }, + { + "displayName": "(V67.4) Follow-up examination, following treatment of healed fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\(V67.4) Follow-up examination, following treatment of healed fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Follow-up examination (V67)\\\\(V67.4) Follow-up examination, following treatment of healed fracture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\" + }, + { + "displayName": "(V67.6) Follow-up examination, following combined treatment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\(V67.6) Follow-up examination, following combined treatment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\" + }, + { + "displayName": "(V67.9) Unspecified follow-up examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\(V67.9) Unspecified follow-up examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\" + }, + { + "displayName": "Follow-up examination following other treatment (V67.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following other treatment (V67.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Follow-up examination (V67)\\\\Follow-up examination following other treatment (V67.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\" + }, + { + "displayName": "(V67.51) Follow-up examination, following completed treatment with high-risk medication, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following other treatment (V67.5)\\(V67.51) Follow-up examination, following completed treatment with high-risk medication, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Follow-up examination (V67)\\\\Follow-up examination following other treatment (V67.5)\\\\(V67.51) Follow-up examination, following completed treatment with high-risk medication, not elsewhere classified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following other treatment (V67.5)\\" + }, + { + "displayName": "(V67.59) Other follow-up examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following other treatment (V67.5)\\(V67.59) Other follow-up examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Follow-up examination (V67)\\\\Follow-up examination following other treatment (V67.5)\\\\(V67.59) Other follow-up examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following other treatment (V67.5)\\" + }, + { + "displayName": "Follow-up examination following surgery (V67.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following surgery (V67.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Follow-up examination (V67)\\\\Follow-up examination following surgery (V67.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\" + }, + { + "displayName": "(V67.00) Follow-up examination, following surgery, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following surgery (V67.0)\\(V67.00) Follow-up examination, following surgery, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Follow-up examination (V67)\\\\Follow-up examination following surgery (V67.0)\\\\(V67.00) Follow-up examination, following surgery, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following surgery (V67.0)\\" + }, + { + "displayName": "(V67.01) Following surgery, follow-up vaginal pap smear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following surgery (V67.0)\\(V67.01) Following surgery, follow-up vaginal pap smear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following surgery (V67.0)\\" + }, + { + "displayName": "(V67.09) Follow-up examination, following other surgery", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following surgery (V67.0)\\(V67.09) Follow-up examination, following other surgery\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Follow-up examination (V67)\\\\Follow-up examination following surgery (V67.0)\\\\(V67.09) Follow-up examination, following other surgery\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Follow-up examination (V67)\\Follow-up examination following surgery (V67.0)\\" + }, + { + "displayName": "Housing, household, and economic circumstances (V60)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\" + }, + { + "displayName": "(V60.0) Lack of housing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\(V60.0) Lack of housing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\" + }, + { + "displayName": "(V60.1) Inadequate housing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\(V60.1) Inadequate housing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\" + }, + { + "displayName": "(V60.2) Inadequate material resources", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\(V60.2) Inadequate material resources\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\" + }, + { + "displayName": "(V60.3) Person living alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\(V60.3) Person living alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\" + }, + { + "displayName": "(V60.4) No other household member able to render care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\(V60.4) No other household member able to render care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Housing, household, and economic circumstances (V60)\\\\(V60.4) No other household member able to render care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\" + }, + { + "displayName": "(V60.5) Holiday relief care", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\(V60.5) Holiday relief care\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Housing, household, and economic circumstances (V60)\\\\(V60.5) Holiday relief care\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\" + }, + { + "displayName": "(V60.6) Person living in residential institution", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\(V60.6) Person living in residential institution\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\" + }, + { + "displayName": "(V60.9) Unspecified housing or economic circumstance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\(V60.9) Unspecified housing or economic circumstance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Housing, household, and economic circumstances (V60)\\\\(V60.9) Unspecified housing or economic circumstance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\" + }, + { + "displayName": "Other specified housing or economic circumstances (V60.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\Other specified housing or economic circumstances (V60.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Housing, household, and economic circumstances (V60)\\\\Other specified housing or economic circumstances (V60.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\" + }, + { + "displayName": "(V60.89) Other specified housing or economic circumstances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\Other specified housing or economic circumstances (V60.8)\\(V60.89) Other specified housing or economic circumstances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Housing, household, and economic circumstances (V60)\\Other specified housing or economic circumstances (V60.8)\\" + }, + { + "displayName": "Other family circumstances (V61)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\" + }, + { + "displayName": "(V61.3) Problems with aged parents or in-laws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\(V61.3) Problems with aged parents or in-laws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\" + }, + { + "displayName": "(V61.5) Multiparity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\(V61.5) Multiparity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\(V61.5) Multiparity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\" + }, + { + "displayName": "(V61.6) Illegitimacy or illegitimate pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\(V61.6) Illegitimacy or illegitimate pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\(V61.6) Illegitimacy or illegitimate pregnancy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\" + }, + { + "displayName": "(V61.7) Other unwanted pregnancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\(V61.7) Other unwanted pregnancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\" + }, + { + "displayName": "(V61.8) Other specified family circumstances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\(V61.8) Other specified family circumstances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\(V61.8) Other specified family circumstances\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\" + }, + { + "displayName": "(V61.9) Unspecified family circumstance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\(V61.9) Unspecified family circumstance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\(V61.9) Unspecified family circumstance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\" + }, + { + "displayName": "Counseling for marital and partner problems (V61.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Counseling for marital and partner problems (V61.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\" + }, + { + "displayName": "(V61.10) Counseling for marital and partner problems, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Counseling for marital and partner problems (V61.1)\\(V61.10) Counseling for marital and partner problems, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\Counseling for marital and partner problems (V61.1)\\\\(V61.10) Counseling for marital and partner problems, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Counseling for marital and partner problems (V61.1)\\" + }, + { + "displayName": "(V61.11) Counseling for victim of spousal and partner abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Counseling for marital and partner problems (V61.1)\\(V61.11) Counseling for victim of spousal and partner abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Counseling for marital and partner problems (V61.1)\\" + }, + { + "displayName": "(V61.12) Counseling for perpetrator of spousal and partner abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Counseling for marital and partner problems (V61.1)\\(V61.12) Counseling for perpetrator of spousal and partner abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\Counseling for marital and partner problems (V61.1)\\\\(V61.12) Counseling for perpetrator of spousal and partner abuse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Counseling for marital and partner problems (V61.1)\\" + }, + { + "displayName": "Family disruption (V61.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Family disruption (V61.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\Family disruption (V61.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\" + }, + { + "displayName": "(V61.02) Family disruption due to return of family member from military deployment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Family disruption (V61.0)\\(V61.02) Family disruption due to return of family member from military deployment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Family disruption (V61.0)\\" + }, + { + "displayName": "(V61.03) Family disruption due to divorce or legal separation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Family disruption (V61.0)\\(V61.03) Family disruption due to divorce or legal separation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\Family disruption (V61.0)\\\\(V61.03) Family disruption due to divorce or legal separation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Family disruption (V61.0)\\" + }, + { + "displayName": "(V61.09) Other family disruption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Family disruption (V61.0)\\(V61.09) Other family disruption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\Family disruption (V61.0)\\\\(V61.09) Other family disruption\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Family disruption (V61.0)\\" + }, + { + "displayName": "Health problems within family (V61.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Health problems within family (V61.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\" + }, + { + "displayName": "(V61.41) Alcoholism in family", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Health problems within family (V61.4)\\(V61.41) Alcoholism in family\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Health problems within family (V61.4)\\" + }, + { + "displayName": "(V61.42) Substance abuse in family", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Health problems within family (V61.4)\\(V61.42) Substance abuse in family\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\Health problems within family (V61.4)\\\\(V61.42) Substance abuse in family\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Health problems within family (V61.4)\\" + }, + { + "displayName": "(V61.49) Other health problems within the family", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Health problems within family (V61.4)\\(V61.49) Other health problems within the family\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\Health problems within family (V61.4)\\\\(V61.49) Other health problems within the family\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Health problems within family (V61.4)\\" + }, + { + "displayName": "Parent-child problems (V61.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\Parent-child problems (V61.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\" + }, + { + "displayName": "(V61.20) Counseling for parent-child problem, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\(V61.20) Counseling for parent-child problem, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\" + }, + { + "displayName": "(V61.21) Counseling for victim of child abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\(V61.21) Counseling for victim of child abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\Parent-child problems (V61.2)\\\\(V61.21) Counseling for victim of child abuse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\" + }, + { + "displayName": "(V61.22) Counseling for perpetrator of spousal and partner abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\(V61.22) Counseling for perpetrator of spousal and partner abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\Parent-child problems (V61.2)\\\\(V61.22) Counseling for perpetrator of spousal and partner abuse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\" + }, + { + "displayName": "(V61.23) Counseling for parent-biological child problem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\(V61.23) Counseling for parent-biological child problem\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\" + }, + { + "displayName": "(V61.25) Counseling for parent (guardian)-foster child problem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\(V61.25) Counseling for parent (guardian)-foster child problem\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\" + }, + { + "displayName": "(V61.29) Other parent-child problems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\(V61.29) Other parent-child problems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other family circumstances (V61)\\\\Parent-child problems (V61.2)\\\\(V61.29) Other parent-child problems\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other family circumstances (V61)\\Parent-child problems (V61.2)\\" + }, + { + "displayName": "Other persons seeking consultation (V65)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\" + }, + { + "displayName": "(V65.0) Healthy person accompanying sick person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\(V65.0) Healthy person accompanying sick person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\(V65.0) Healthy person accompanying sick person\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\" + }, + { + "displayName": "(V65.2) Person feigning illness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\(V65.2) Person feigning illness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\" + }, + { + "displayName": "(V65.3) Dietary surveillance and counseling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\(V65.3) Dietary surveillance and counseling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\(V65.3) Dietary surveillance and counseling\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\" + }, + { + "displayName": "(V65.5) Person with feared complaint in whom no diagnosis was made", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\(V65.5) Person with feared complaint in whom no diagnosis was made\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\" + }, + { + "displayName": "(V65.8) Other reasons for seeking consultation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\(V65.8) Other reasons for seeking consultation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\(V65.8) Other reasons for seeking consultation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\" + }, + { + "displayName": "(V65.9) Unspecified reason for consultation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\(V65.9) Unspecified reason for consultation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\(V65.9) Unspecified reason for consultation\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\" + }, + { + "displayName": "Other counseling, not elsewhere classified (V65.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\" + }, + { + "displayName": "(V65.40) Counseling NOS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\(V65.40) Counseling NOS\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\Other counseling, not elsewhere classified (V65.4)\\\\(V65.40) Counseling NOS\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\" + }, + { + "displayName": "(V65.41) Exercise counseling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\(V65.41) Exercise counseling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\Other counseling, not elsewhere classified (V65.4)\\\\(V65.41) Exercise counseling\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\" + }, + { + "displayName": "(V65.42) Counseling on substance use and abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\(V65.42) Counseling on substance use and abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\Other counseling, not elsewhere classified (V65.4)\\\\(V65.42) Counseling on substance use and abuse\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\" + }, + { + "displayName": "(V65.43) Counseling on injury prevention", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\(V65.43) Counseling on injury prevention\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\Other counseling, not elsewhere classified (V65.4)\\\\(V65.43) Counseling on injury prevention\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\" + }, + { + "displayName": "(V65.44) Human immunodeficiency virus (HIV) counseling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\(V65.44) Human immunodeficiency virus (HIV) counseling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\" + }, + { + "displayName": "(V65.45) Counseling on other sexually transmitted diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\(V65.45) Counseling on other sexually transmitted diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\Other counseling, not elsewhere classified (V65.4)\\\\(V65.45) Counseling on other sexually transmitted diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\" + }, + { + "displayName": "(V65.46) Encounter for insulin pump training", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\(V65.46) Encounter for insulin pump training\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\" + }, + { + "displayName": "(V65.49) Other specified counseling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\(V65.49) Other specified counseling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\Other counseling, not elsewhere classified (V65.4)\\\\(V65.49) Other specified counseling\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Other counseling, not elsewhere classified (V65.4)\\" + }, + { + "displayName": "Person consulting on behalf of another person (V65.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Person consulting on behalf of another person (V65.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\Person consulting on behalf of another person (V65.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\" + }, + { + "displayName": "(V65.11) Pediatric pre-birth visit for expectant parent(s)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Person consulting on behalf of another person (V65.1)\\(V65.11) Pediatric pre-birth visit for expectant parent(s)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other persons seeking consultation (V65)\\\\Person consulting on behalf of another person (V65.1)\\\\(V65.11) Pediatric pre-birth visit for expectant parent(s)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Person consulting on behalf of another person (V65.1)\\" + }, + { + "displayName": "(V65.19) Other person consulting on behalf of another person", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Person consulting on behalf of another person (V65.1)\\(V65.19) Other person consulting on behalf of another person\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other persons seeking consultation (V65)\\Person consulting on behalf of another person (V65.1)\\" + }, + { + "displayName": "Other psychosocial circumstances (V62)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other psychosocial circumstances (V62)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\" + }, + { + "displayName": "(V62.0) Unemployment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\(V62.0) Unemployment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other psychosocial circumstances (V62)\\\\(V62.0) Unemployment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\" + }, + { + "displayName": "(V62.1) Adverse effects of work environment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\(V62.1) Adverse effects of work environment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\" + }, + { + "displayName": "(V62.3) Educational circumstances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\(V62.3) Educational circumstances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other psychosocial circumstances (V62)\\\\(V62.3) Educational circumstances\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\" + }, + { + "displayName": "(V62.4) Social maladjustment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\(V62.4) Social maladjustment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other psychosocial circumstances (V62)\\\\(V62.4) Social maladjustment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\" + }, + { + "displayName": "(V62.5) Legal circumstances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\(V62.5) Legal circumstances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\" + }, + { + "displayName": "(V62.6) Refusal of treatment for reasons of religion or conscience", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\(V62.6) Refusal of treatment for reasons of religion or conscience\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other psychosocial circumstances (V62)\\\\(V62.6) Refusal of treatment for reasons of religion or conscience\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\" + }, + { + "displayName": "(V62.9) Unspecified psychosocial circumstance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\(V62.9) Unspecified psychosocial circumstance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other psychosocial circumstances (V62)\\\\(V62.9) Unspecified psychosocial circumstance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\" + }, + { + "displayName": "Other occupational circumstances or maladjustment (V62.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other occupational circumstances or maladjustment (V62.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other psychosocial circumstances (V62)\\\\Other occupational circumstances or maladjustment (V62.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\" + }, + { + "displayName": "(V62.21) Personal current military deployment status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other occupational circumstances or maladjustment (V62.2)\\(V62.21) Personal current military deployment status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other psychosocial circumstances (V62)\\\\Other occupational circumstances or maladjustment (V62.2)\\\\(V62.21) Personal current military deployment status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other occupational circumstances or maladjustment (V62.2)\\" + }, + { + "displayName": "(V62.29) Other occupational circumstances or maladjustment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other occupational circumstances or maladjustment (V62.2)\\(V62.29) Other occupational circumstances or maladjustment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Other psychosocial circumstances (V62)\\\\Other occupational circumstances or maladjustment (V62.2)\\\\(V62.29) Other occupational circumstances or maladjustment\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other occupational circumstances or maladjustment (V62.2)\\" + }, + { + "displayName": "Other psychological or physical stress, not elsewhere classified (V62.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\" + }, + { + "displayName": "(V62.81) Interpersonal problems, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\(V62.81) Interpersonal problems, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\" + }, + { + "displayName": "(V62.82) Bereavement, uncomplicated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\(V62.82) Bereavement, uncomplicated\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\" + }, + { + "displayName": "(V62.83) Counseling for perpetrator of physical/sexual abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\(V62.83) Counseling for perpetrator of physical/sexual abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\" + }, + { + "displayName": "(V62.84) Suicidal ideation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\(V62.84) Suicidal ideation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\" + }, + { + "displayName": "(V62.85) Homicidal ideation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\(V62.85) Homicidal ideation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\" + }, + { + "displayName": "(V62.89) Other psychological or physical stress, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\(V62.89) Other psychological or physical stress, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Other psychosocial circumstances (V62)\\Other psychological or physical stress, not elsewhere classified (V62.8)\\" + }, + { + "displayName": "Persons encountering health services for specific procedures, not carried out (V64)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\" + }, + { + "displayName": "(V64.1) Surgical or other procedure not carried out because of contraindication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\(V64.1) Surgical or other procedure not carried out because of contraindication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\" + }, + { + "displayName": "(V64.2) Surgical or other procedure not carried out because of patient's decision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\(V64.2) Surgical or other procedure not carried out because of patient's decision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Persons encountering health services for specific procedures, not carried out (V64)\\\\(V64.2) Surgical or other procedure not carried out because of patient's decision\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\" + }, + { + "displayName": "(V64.3) Procedure not carried out for other reasons", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\(V64.3) Procedure not carried out for other reasons\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Persons encountering health services for specific procedures, not carried out (V64)\\\\(V64.3) Procedure not carried out for other reasons\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\" + }, + { + "displayName": "Closed surgical procedure converted to open procedure (V64.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Closed surgical procedure converted to open procedure (V64.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\" + }, + { + "displayName": "(V64.41) Laparoscopic surgical procedure converted to open procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Closed surgical procedure converted to open procedure (V64.4)\\(V64.41) Laparoscopic surgical procedure converted to open procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Persons encountering health services for specific procedures, not carried out (V64)\\\\Closed surgical procedure converted to open procedure (V64.4)\\\\(V64.41) Laparoscopic surgical procedure converted to open procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Closed surgical procedure converted to open procedure (V64.4)\\" + }, + { + "displayName": "(V64.42) Thoracoscopic surgical procedure converted to open procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Closed surgical procedure converted to open procedure (V64.4)\\(V64.42) Thoracoscopic surgical procedure converted to open procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Closed surgical procedure converted to open procedure (V64.4)\\" + }, + { + "displayName": "(V64.43) Arthroscopic surgical procedure converted to open procedure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Closed surgical procedure converted to open procedure (V64.4)\\(V64.43) Arthroscopic surgical procedure converted to open procedure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Persons encountering health services for specific procedures, not carried out (V64)\\\\Closed surgical procedure converted to open procedure (V64.4)\\\\(V64.43) Arthroscopic surgical procedure converted to open procedure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Closed surgical procedure converted to open procedure (V64.4)\\" + }, + { + "displayName": "Vaccination not carried out (V64.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\" + }, + { + "displayName": "(V64.00) Vaccination not carried out, unspecified reason", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\(V64.00) Vaccination not carried out, unspecified reason\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\" + }, + { + "displayName": "(V64.01) Vaccination not carried out because of acute illness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\(V64.01) Vaccination not carried out because of acute illness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\" + }, + { + "displayName": "(V64.02) Vaccination not carried out because of chronic illness or condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\(V64.02) Vaccination not carried out because of chronic illness or condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Persons encountering health services for specific procedures, not carried out (V64)\\\\Vaccination not carried out (V64.0)\\\\(V64.02) Vaccination not carried out because of chronic illness or condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\" + }, + { + "displayName": "(V64.03) Vaccination not carried out because of immune compromised state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\(V64.03) Vaccination not carried out because of immune compromised state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Persons encountering health services for specific procedures, not carried out (V64)\\\\Vaccination not carried out (V64.0)\\\\(V64.03) Vaccination not carried out because of immune compromised state\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\" + }, + { + "displayName": "(V64.04) Vaccination not carried out because of allergy to vaccine or component", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\(V64.04) Vaccination not carried out because of allergy to vaccine or component\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\" + }, + { + "displayName": "(V64.05) Vaccination not carried out because of caregiver refusal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\(V64.05) Vaccination not carried out because of caregiver refusal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\" + }, + { + "displayName": "(V64.06) Vaccination not carried out because of patient refusal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\(V64.06) Vaccination not carried out because of patient refusal\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\" + }, + { + "displayName": "(V64.07) Vaccination not carried out for religious reasons", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\(V64.07) Vaccination not carried out for religious reasons\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\" + }, + { + "displayName": "(V64.08) Vaccination not carried out because patient had disease being vaccinated against", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\(V64.08) Vaccination not carried out because patient had disease being vaccinated against\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\" + }, + { + "displayName": "(V64.09) Vaccination not carried out for other reason", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\(V64.09) Vaccination not carried out for other reason\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Persons encountering health services for specific procedures, not carried out (V64)\\Vaccination not carried out (V64.0)\\" + }, + { + "displayName": "Problems related to lifestyle (V69)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Problems related to lifestyle (V69)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\" + }, + { + "displayName": "(V69.0) Lack of physical exercise", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\(V69.0) Lack of physical exercise\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Problems related to lifestyle (V69)\\\\(V69.0) Lack of physical exercise\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\" + }, + { + "displayName": "(V69.1) Inappropriate diet and eating habits", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\(V69.1) Inappropriate diet and eating habits\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\" + }, + { + "displayName": "(V69.2) High-risk sexual behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\(V69.2) High-risk sexual behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\" + }, + { + "displayName": "(V69.3) Gambling and betting", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\(V69.3) Gambling and betting\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Problems related to lifestyle (V69)\\\\(V69.3) Gambling and betting\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\" + }, + { + "displayName": "(V69.4) Lack of adequate sleep", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\(V69.4) Lack of adequate sleep\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Problems related to lifestyle (V69)\\\\(V69.4) Lack of adequate sleep\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\" + }, + { + "displayName": "(V69.5) Behavioral insomnia of childhood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\(V69.5) Behavioral insomnia of childhood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\" + }, + { + "displayName": "(V69.8) Other problems related to lifestyle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\(V69.8) Other problems related to lifestyle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Problems related to lifestyle (V69)\\\\(V69.8) Other problems related to lifestyle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\" + }, + { + "displayName": "(V69.9) Unspecified problem related to lifestyle", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\(V69.9) Unspecified problem related to lifestyle\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Problems related to lifestyle (V69)\\\\(V69.9) Unspecified problem related to lifestyle\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Problems related to lifestyle (V69)\\" + }, + { + "displayName": "Unavailability of other medical facilities for care (V63)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Unavailability of other medical facilities for care (V63)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\" + }, + { + "displayName": "(V63.0) Residence remote from hospital or other health care facility", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Unavailability of other medical facilities for care (V63)\\(V63.0) Residence remote from hospital or other health care facility\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Unavailability of other medical facilities for care (V63)\\\\(V63.0) Residence remote from hospital or other health care facility\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Unavailability of other medical facilities for care (V63)\\" + }, + { + "displayName": "(V63.1) Medical services in home not available", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Unavailability of other medical facilities for care (V63)\\(V63.1) Medical services in home not available\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Unavailability of other medical facilities for care (V63)\\\\(V63.1) Medical services in home not available\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Unavailability of other medical facilities for care (V63)\\" + }, + { + "displayName": "(V63.2) Person awaiting admission to adequate facility elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Unavailability of other medical facilities for care (V63)\\(V63.2) Person awaiting admission to adequate facility elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Unavailability of other medical facilities for care (V63)\\" + }, + { + "displayName": "(V63.8) Other specified reasons for unavailability of medical facilities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Unavailability of other medical facilities for care (V63)\\(V63.8) Other specified reasons for unavailability of medical facilities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Unavailability of other medical facilities for care (V63)\\" + }, + { + "displayName": "(V63.9) Unspecified reason for unavailability of medical facilities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Unavailability of other medical facilities for care (V63)\\(V63.9) Unspecified reason for unavailability of medical facilities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons encountering health services in other circumstances (v60-v69.99)\\\\Unavailability of other medical facilities for care (V63)\\\\(V63.9) Unspecified reason for unavailability of medical facilities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons encountering health services in other circumstances (v60-v69.99)\\Unavailability of other medical facilities for care (V63)\\" + }, + { + "displayName": "Persons with a condition influencing their health status (v40-v49.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Artificial opening status (V44)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\" + }, + { + "displayName": "(V44.0) Tracheostomy status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\(V44.0) Tracheostomy status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Artificial opening status (V44)\\\\(V44.0) Tracheostomy status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\" + }, + { + "displayName": "(V44.1) Gastrostomy status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\(V44.1) Gastrostomy status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\" + }, + { + "displayName": "(V44.2) Ileostomy status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\(V44.2) Ileostomy status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Artificial opening status (V44)\\\\(V44.2) Ileostomy status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\" + }, + { + "displayName": "(V44.3) Colostomy status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\(V44.3) Colostomy status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Artificial opening status (V44)\\\\(V44.3) Colostomy status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\" + }, + { + "displayName": "(V44.4) Status of other artificial opening of gastrointestinal tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\(V44.4) Status of other artificial opening of gastrointestinal tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\" + }, + { + "displayName": "(V44.6) Other artificial opening of urinary tract status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\(V44.6) Other artificial opening of urinary tract status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Artificial opening status (V44)\\\\(V44.6) Other artificial opening of urinary tract status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\" + }, + { + "displayName": "(V44.7) Artificial vagina status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\(V44.7) Artificial vagina status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\" + }, + { + "displayName": "(V44.8) Other artificial opening status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\(V44.8) Other artificial opening status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Artificial opening status (V44)\\\\(V44.8) Other artificial opening status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\" + }, + { + "displayName": "(V44.9) Unspecified artificial opening status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\(V44.9) Unspecified artificial opening status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Artificial opening status (V44)\\\\(V44.9) Unspecified artificial opening status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\" + }, + { + "displayName": "Cystostomy status (V44.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\Cystostomy status (V44.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\" + }, + { + "displayName": "(V44.50) Cystostomy, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\Cystostomy status (V44.5)\\(V44.50) Cystostomy, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Artificial opening status (V44)\\\\Cystostomy status (V44.5)\\\\(V44.50) Cystostomy, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\Cystostomy status (V44.5)\\" + }, + { + "displayName": "(V44.51) Cutaneous-vesicostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\Cystostomy status (V44.5)\\(V44.51) Cutaneous-vesicostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\Cystostomy status (V44.5)\\" + }, + { + "displayName": "(V44.52) Appendico-vesicostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\Cystostomy status (V44.5)\\(V44.52) Appendico-vesicostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Artificial opening status (V44)\\\\Cystostomy status (V44.5)\\\\(V44.52) Appendico-vesicostomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\Cystostomy status (V44.5)\\" + }, + { + "displayName": "(V44.59) Other cystostomy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\Cystostomy status (V44.5)\\(V44.59) Other cystostomy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Artificial opening status (V44)\\\\Cystostomy status (V44.5)\\\\(V44.59) Other cystostomy\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Artificial opening status (V44)\\Cystostomy status (V44.5)\\" + }, + { + "displayName": "Mental and behavioral problems (V40)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Mental and behavioral problems (V40)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\" + }, + { + "displayName": "(V40.0) Mental and behavioral problems with learning", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\(V40.0) Mental and behavioral problems with learning\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\" + }, + { + "displayName": "(V40.1) Mental and behavioral problems with communication [including speech]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\(V40.1) Mental and behavioral problems with communication [including speech]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Mental and behavioral problems (V40)\\\\(V40.1) Mental and behavioral problems with communication [including speech]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\" + }, + { + "displayName": "(V40.2) Other mental problems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\(V40.2) Other mental problems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Mental and behavioral problems (V40)\\\\(V40.2) Other mental problems\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\" + }, + { + "displayName": "(V40.9) Unspecified mental or behavioral problem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\(V40.9) Unspecified mental or behavioral problem\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\" + }, + { + "displayName": "Other behavioral problems (V40.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\Other behavioral problems (V40.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Mental and behavioral problems (V40)\\\\Other behavioral problems (V40.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\" + }, + { + "displayName": "(V40.31) Wandering in diseases classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\Other behavioral problems (V40.3)\\(V40.31) Wandering in diseases classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\Other behavioral problems (V40.3)\\" + }, + { + "displayName": "(V40.39) Other specified behavioral problem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\Other behavioral problems (V40.3)\\(V40.39) Other specified behavioral problem\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Mental and behavioral problems (V40)\\\\Other behavioral problems (V40.3)\\\\(V40.39) Other specified behavioral problem\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Mental and behavioral problems (V40)\\Other behavioral problems (V40.3)\\" + }, + { + "displayName": "Organ or tissue replaced by other means (V43)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\" + }, + { + "displayName": "(V43.0) Eye globe replaced by other means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\(V43.0) Eye globe replaced by other means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\" + }, + { + "displayName": "(V43.1) Lens replaced by other means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\(V43.1) Lens replaced by other means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\(V43.1) Lens replaced by other means\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\" + }, + { + "displayName": "(V43.3) Heart valve replaced by other means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\(V43.3) Heart valve replaced by other means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\(V43.3) Heart valve replaced by other means\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\" + }, + { + "displayName": "(V43.4) Blood vessel replaced by other means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\(V43.4) Blood vessel replaced by other means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\" + }, + { + "displayName": "(V43.5) Bladder replaced by other means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\(V43.5) Bladder replaced by other means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\(V43.5) Bladder replaced by other means\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\" + }, + { + "displayName": "(V43.7) Limb replaced by other means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\(V43.7) Limb replaced by other means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\" + }, + { + "displayName": "Heart replaced by other means (V43.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Heart replaced by other means (V43.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\Heart replaced by other means (V43.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\" + }, + { + "displayName": "(V43.21) Organ or tissue replaced by other means, heart assist device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Heart replaced by other means (V43.2)\\(V43.21) Organ or tissue replaced by other means, heart assist device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\Heart replaced by other means (V43.2)\\\\(V43.21) Organ or tissue replaced by other means, heart assist device\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Heart replaced by other means (V43.2)\\" + }, + { + "displayName": "(V43.22) Organ or tissue replaced by other means, fully implantable artificial heart", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Heart replaced by other means (V43.2)\\(V43.22) Organ or tissue replaced by other means, fully implantable artificial heart\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Heart replaced by other means (V43.2)\\" + }, + { + "displayName": "Joint replaced by other means (V43.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\Joint replaced by other means (V43.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\" + }, + { + "displayName": "(V43.60) Unspecified joint replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\(V43.60) Unspecified joint replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\" + }, + { + "displayName": "(V43.61) Shoulder joint replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\(V43.61) Shoulder joint replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\Joint replaced by other means (V43.6)\\\\(V43.61) Shoulder joint replacement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\" + }, + { + "displayName": "(V43.62) Elbow joint replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\(V43.62) Elbow joint replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\" + }, + { + "displayName": "(V43.63) Wrist joint replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\(V43.63) Wrist joint replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\Joint replaced by other means (V43.6)\\\\(V43.63) Wrist joint replacement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\" + }, + { + "displayName": "(V43.64) Hip joint replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\(V43.64) Hip joint replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\Joint replaced by other means (V43.6)\\\\(V43.64) Hip joint replacement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\" + }, + { + "displayName": "(V43.65) Knee joint replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\(V43.65) Knee joint replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\" + }, + { + "displayName": "(V43.66) Ankle joint replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\(V43.66) Ankle joint replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\" + }, + { + "displayName": "(V43.69) Other joint replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\(V43.69) Other joint replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Joint replaced by other means (V43.6)\\" + }, + { + "displayName": "Other organ or tissue replaced by other means (V43.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Other organ or tissue replaced by other means (V43.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\Other organ or tissue replaced by other means (V43.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\" + }, + { + "displayName": "(V43.81) Larynx replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Other organ or tissue replaced by other means (V43.8)\\(V43.81) Larynx replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Other organ or tissue replaced by other means (V43.8)\\" + }, + { + "displayName": "(V43.82) Breast replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Other organ or tissue replaced by other means (V43.8)\\(V43.82) Breast replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\Other organ or tissue replaced by other means (V43.8)\\\\(V43.82) Breast replacement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Other organ or tissue replaced by other means (V43.8)\\" + }, + { + "displayName": "(V43.83) Artificial skin replacement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Other organ or tissue replaced by other means (V43.8)\\(V43.83) Artificial skin replacement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by other means (V43)\\\\Other organ or tissue replaced by other means (V43.8)\\\\(V43.83) Artificial skin replacement\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Other organ or tissue replaced by other means (V43.8)\\" + }, + { + "displayName": "(V43.89) Other organ or tissue replaced by other means", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Other organ or tissue replaced by other means (V43.8)\\(V43.89) Other organ or tissue replaced by other means\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by other means (V43)\\Other organ or tissue replaced by other means (V43.8)\\" + }, + { + "displayName": "Organ or tissue replaced by transplant (V42)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\" + }, + { + "displayName": "(V42.0) Kidney replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\(V42.0) Kidney replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by transplant (V42)\\\\(V42.0) Kidney replaced by transplant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\" + }, + { + "displayName": "(V42.1) Heart replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\(V42.1) Heart replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Organ or tissue replaced by transplant (V42)\\\\(V42.1) Heart replaced by transplant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\" + }, + { + "displayName": "(V42.2) Heart valve replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\(V42.2) Heart valve replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\" + }, + { + "displayName": "(V42.3) Skin replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\(V42.3) Skin replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\" + }, + { + "displayName": "(V42.4) Bone replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\(V42.4) Bone replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\" + }, + { + "displayName": "(V42.5) Cornea replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\(V42.5) Cornea replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\" + }, + { + "displayName": "(V42.6) Lung replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\(V42.6) Lung replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\" + }, + { + "displayName": "(V42.7) Liver replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\(V42.7) Liver replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\" + }, + { + "displayName": "(V42.9) Unspecified organ or tissue replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\(V42.9) Unspecified organ or tissue replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\" + }, + { + "displayName": "Other specified organ or tissue replaced by transplant (V42.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\Other specified organ or tissue replaced by transplant (V42.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\" + }, + { + "displayName": "(V42.81) Bone marrow replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\Other specified organ or tissue replaced by transplant (V42.8)\\(V42.81) Bone marrow replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\Other specified organ or tissue replaced by transplant (V42.8)\\" + }, + { + "displayName": "(V42.82) Peripheral stem cells replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\Other specified organ or tissue replaced by transplant (V42.8)\\(V42.82) Peripheral stem cells replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\Other specified organ or tissue replaced by transplant (V42.8)\\" + }, + { + "displayName": "(V42.83) Pancreas replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\Other specified organ or tissue replaced by transplant (V42.8)\\(V42.83) Pancreas replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\Other specified organ or tissue replaced by transplant (V42.8)\\" + }, + { + "displayName": "(V42.84) Organ or tissue replaced by transplant, intestines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\Other specified organ or tissue replaced by transplant (V42.8)\\(V42.84) Organ or tissue replaced by transplant, intestines\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\Other specified organ or tissue replaced by transplant (V42.8)\\" + }, + { + "displayName": "(V42.89) Other specified organ or tissue replaced by transplant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\Other specified organ or tissue replaced by transplant (V42.8)\\(V42.89) Other specified organ or tissue replaced by transplant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Organ or tissue replaced by transplant (V42)\\Other specified organ or tissue replaced by transplant (V42.8)\\" + }, + { + "displayName": "Other conditions influencing health status (V49)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\" + }, + { + "displayName": "(V49.0) Deficiencies of limbs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\(V49.0) Deficiencies of limbs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\" + }, + { + "displayName": "(V49.1) Mechanical problems with limbs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\(V49.1) Mechanical problems with limbs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\" + }, + { + "displayName": "(V49.2) Motor problems with limbs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\(V49.2) Motor problems with limbs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\" + }, + { + "displayName": "(V49.3) Sensory problems with limbs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\(V49.3) Sensory problems with limbs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\" + }, + { + "displayName": "(V49.4) Disfigurements of limbs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\(V49.4) Disfigurements of limbs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\" + }, + { + "displayName": "(V49.5) Other problems of limbs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\(V49.5) Other problems of limbs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other conditions influencing health status (V49)\\\\(V49.5) Other problems of limbs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\" + }, + { + "displayName": "(V49.9) Unspecified problems with limbs and other problems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\(V49.9) Unspecified problems with limbs and other problems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other conditions influencing health status (V49)\\\\(V49.9) Unspecified problems with limbs and other problems\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\" + }, + { + "displayName": "Lower limb amputation status (V49.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\" + }, + { + "displayName": "(V49.70) Unspecified level lower limb amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\(V49.70) Unspecified level lower limb amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other conditions influencing health status (V49)\\\\Lower limb amputation status (V49.7)\\\\(V49.70) Unspecified level lower limb amputation status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\" + }, + { + "displayName": "(V49.71) Great toe amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\(V49.71) Great toe amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other conditions influencing health status (V49)\\\\Lower limb amputation status (V49.7)\\\\(V49.71) Great toe amputation status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\" + }, + { + "displayName": "(V49.72) Other toe(s) amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\(V49.72) Other toe(s) amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\" + }, + { + "displayName": "(V49.73) Foot amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\(V49.73) Foot amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other conditions influencing health status (V49)\\\\Lower limb amputation status (V49.7)\\\\(V49.73) Foot amputation status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\" + }, + { + "displayName": "(V49.74) Ankle amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\(V49.74) Ankle amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other conditions influencing health status (V49)\\\\Lower limb amputation status (V49.7)\\\\(V49.74) Ankle amputation status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\" + }, + { + "displayName": "(V49.75) Below knee amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\(V49.75) Below knee amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\" + }, + { + "displayName": "(V49.76) Above knee amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\(V49.76) Above knee amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\" + }, + { + "displayName": "(V49.77) Hip amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\(V49.77) Hip amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Lower limb amputation status (V49.7)\\" + }, + { + "displayName": "Other specified conditions influencing health status (V49.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\" + }, + { + "displayName": "(V49.81) Asymptomatic postmenopausal status (age-related) (natural)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\(V49.81) Asymptomatic postmenopausal status (age-related) (natural)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\" + }, + { + "displayName": "(V49.82) Dental sealant status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\(V49.82) Dental sealant status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\" + }, + { + "displayName": "(V49.83) Awaiting organ transplant status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\(V49.83) Awaiting organ transplant status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\" + }, + { + "displayName": "(V49.84) Bed confinement status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\(V49.84) Bed confinement status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\" + }, + { + "displayName": "(V49.85) Dual sensory impairment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\(V49.85) Dual sensory impairment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\" + }, + { + "displayName": "(V49.86) Do not resuscitate status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\(V49.86) Do not resuscitate status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\" + }, + { + "displayName": "(V49.87) Physical restraints status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\(V49.87) Physical restraints status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\" + }, + { + "displayName": "(V49.89) Other specified conditions influencing health status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\(V49.89) Other specified conditions influencing health status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Other specified conditions influencing health status (V49.8)\\" + }, + { + "displayName": "Status post amputation of upper limb (V49.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\" + }, + { + "displayName": "(V49.60) Unspecified level upper limb amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\(V49.60) Unspecified level upper limb amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other conditions influencing health status (V49)\\\\Status post amputation of upper limb (V49.6)\\\\(V49.60) Unspecified level upper limb amputation status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\" + }, + { + "displayName": "(V49.61) Thumb amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\(V49.61) Thumb amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\" + }, + { + "displayName": "(V49.62) Other finger(s) amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\(V49.62) Other finger(s) amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other conditions influencing health status (V49)\\\\Status post amputation of upper limb (V49.6)\\\\(V49.62) Other finger(s) amputation status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\" + }, + { + "displayName": "(V49.63) Hand amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\(V49.63) Hand amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other conditions influencing health status (V49)\\\\Status post amputation of upper limb (V49.6)\\\\(V49.63) Hand amputation status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\" + }, + { + "displayName": "(V49.64) Wrist amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\(V49.64) Wrist amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other conditions influencing health status (V49)\\\\Status post amputation of upper limb (V49.6)\\\\(V49.64) Wrist amputation status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\" + }, + { + "displayName": "(V49.65) Below elbow amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\(V49.65) Below elbow amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\" + }, + { + "displayName": "(V49.66) Above elbow amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\(V49.66) Above elbow amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\" + }, + { + "displayName": "(V49.67) Shoulder amputation status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\(V49.67) Shoulder amputation status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other conditions influencing health status (V49)\\\\Status post amputation of upper limb (V49.6)\\\\(V49.67) Shoulder amputation status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other conditions influencing health status (V49)\\Status post amputation of upper limb (V49.6)\\" + }, + { + "displayName": "Other dependence on machines and devices (V46)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\" + }, + { + "displayName": "(V46.0) Dependence on aspirator", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\(V46.0) Dependence on aspirator\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other dependence on machines and devices (V46)\\\\(V46.0) Dependence on aspirator\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\" + }, + { + "displayName": "(V46.2) Other dependence on machines, supplemental oxygen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\(V46.2) Other dependence on machines, supplemental oxygen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\" + }, + { + "displayName": "(V46.3) Wheelchair dependence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\(V46.3) Wheelchair dependence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other dependence on machines and devices (V46)\\\\(V46.3) Wheelchair dependence\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\" + }, + { + "displayName": "(V46.8) Dependence on other enabling machines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\(V46.8) Dependence on other enabling machines\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\" + }, + { + "displayName": "(V46.9) Unspecified machine dependence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\(V46.9) Unspecified machine dependence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other dependence on machines and devices (V46)\\\\(V46.9) Unspecified machine dependence\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\" + }, + { + "displayName": "Dependence on respirator [Ventilator] (V46.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\Dependence on respirator [Ventilator] (V46.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other dependence on machines and devices (V46)\\\\Dependence on respirator [Ventilator] (V46.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\" + }, + { + "displayName": "(V46.11) Dependence on respirator, status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\Dependence on respirator [Ventilator] (V46.1)\\(V46.11) Dependence on respirator, status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other dependence on machines and devices (V46)\\\\Dependence on respirator [Ventilator] (V46.1)\\\\(V46.11) Dependence on respirator, status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\Dependence on respirator [Ventilator] (V46.1)\\" + }, + { + "displayName": "(V46.12) Encounter for respirator dependence during power failure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\Dependence on respirator [Ventilator] (V46.1)\\(V46.12) Encounter for respirator dependence during power failure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other dependence on machines and devices (V46)\\\\Dependence on respirator [Ventilator] (V46.1)\\\\(V46.12) Encounter for respirator dependence during power failure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\Dependence on respirator [Ventilator] (V46.1)\\" + }, + { + "displayName": "(V46.13) Encounter for weaning from respirator [ventilator]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\Dependence on respirator [Ventilator] (V46.1)\\(V46.13) Encounter for weaning from respirator [ventilator]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other dependence on machines and devices (V46)\\\\Dependence on respirator [Ventilator] (V46.1)\\\\(V46.13) Encounter for weaning from respirator [ventilator]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\Dependence on respirator [Ventilator] (V46.1)\\" + }, + { + "displayName": "(V46.14) Mechanical complication of respirator [ventilator]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\Dependence on respirator [Ventilator] (V46.1)\\(V46.14) Mechanical complication of respirator [ventilator]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other dependence on machines and devices (V46)\\Dependence on respirator [Ventilator] (V46.1)\\" + }, + { + "displayName": "Other postprocedural states (V45)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\" + }, + { + "displayName": "(V45.2) Presence of cerebrospinal fluid drainage device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\(V45.2) Presence of cerebrospinal fluid drainage device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\" + }, + { + "displayName": "(V45.3) Intestinal bypass or anastomosis status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\(V45.3) Intestinal bypass or anastomosis status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\" + }, + { + "displayName": "(V45.4) Arthrodesis status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\(V45.4) Arthrodesis status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\" + }, + { + "displayName": "Acquired absence of organ (V45.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\" + }, + { + "displayName": "(V45.71) Acquired absence of breast and nipple", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\(V45.71) Acquired absence of breast and nipple\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\Acquired absence of organ (V45.7)\\\\(V45.71) Acquired absence of breast and nipple\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\" + }, + { + "displayName": "(V45.72) Acquired absence of intestine (large) (small)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\(V45.72) Acquired absence of intestine (large) (small)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\Acquired absence of organ (V45.7)\\\\(V45.72) Acquired absence of intestine (large) (small)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\" + }, + { + "displayName": "(V45.73) Acquired absence of kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\(V45.73) Acquired absence of kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\Acquired absence of organ (V45.7)\\\\(V45.73) Acquired absence of kidney\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\" + }, + { + "displayName": "(V45.74) Acquired absence of organ, other parts of urinary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\(V45.74) Acquired absence of organ, other parts of urinary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\Acquired absence of organ (V45.7)\\\\(V45.74) Acquired absence of organ, other parts of urinary tract\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\" + }, + { + "displayName": "(V45.75) Acquired absence of organ, stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\(V45.75) Acquired absence of organ, stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\" + }, + { + "displayName": "(V45.76) Acquired absence of organ, lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\(V45.76) Acquired absence of organ, lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\" + }, + { + "displayName": "(V45.77) Acquired absence of organ, genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\(V45.77) Acquired absence of organ, genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\" + }, + { + "displayName": "(V45.78) Acquired absence of organ, eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\(V45.78) Acquired absence of organ, eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\" + }, + { + "displayName": "(V45.79) Other acquired absence of organ", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\(V45.79) Other acquired absence of organ\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Acquired absence of organ (V45.7)\\" + }, + { + "displayName": "Cardiac pacemaker in situ (V45.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Cardiac pacemaker in situ (V45.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\" + }, + { + "displayName": "(V45.00) Unspecified cardiac device in situ", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Cardiac pacemaker in situ (V45.0)\\(V45.00) Unspecified cardiac device in situ\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Cardiac pacemaker in situ (V45.0)\\" + }, + { + "displayName": "(V45.01) Cardiac pacemaker in situ", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Cardiac pacemaker in situ (V45.0)\\(V45.01) Cardiac pacemaker in situ\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Cardiac pacemaker in situ (V45.0)\\" + }, + { + "displayName": "(V45.02) Automatic implantable cardiac defibrillator in situ", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Cardiac pacemaker in situ (V45.0)\\(V45.02) Automatic implantable cardiac defibrillator in situ\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Cardiac pacemaker in situ (V45.0)\\" + }, + { + "displayName": "(V45.09) Other specified cardiac device in situ", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Cardiac pacemaker in situ (V45.0)\\(V45.09) Other specified cardiac device in situ\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Cardiac pacemaker in situ (V45.0)\\" + }, + { + "displayName": "Other postprocedural status (V45.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\" + }, + { + "displayName": "(V45.81) Aortocoronary bypass status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\(V45.81) Aortocoronary bypass status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\Other postprocedural status (V45.8)\\\\(V45.81) Aortocoronary bypass status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\" + }, + { + "displayName": "(V45.82) Percutaneous transluminal coronary angioplasty status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\(V45.82) Percutaneous transluminal coronary angioplasty status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\" + }, + { + "displayName": "(V45.83) Breast implant removal status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\(V45.83) Breast implant removal status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\Other postprocedural status (V45.8)\\\\(V45.83) Breast implant removal status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\" + }, + { + "displayName": "(V45.84) Dental restoration status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\(V45.84) Dental restoration status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\" + }, + { + "displayName": "(V45.85) Insulin pump status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\(V45.85) Insulin pump status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\" + }, + { + "displayName": "(V45.86) Bariatric surgery status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\(V45.86) Bariatric surgery status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\" + }, + { + "displayName": "(V45.87) Transplanted organ removal status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\(V45.87) Transplanted organ removal status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\" + }, + { + "displayName": "(V45.88) Status post administration of tPA (rtPA) in a different facility within the last 24 hours prior to admission to current facility", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\(V45.88) Status post administration of tPA (rtPA) in a different facility within the last 24 hours prior to admission to current facility\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\" + }, + { + "displayName": "(V45.89) Other postprocedural status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\(V45.89) Other postprocedural status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Other postprocedural status (V45.8)\\" + }, + { + "displayName": "Postsurgical renal dialysis status (V45.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Postsurgical renal dialysis status (V45.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\" + }, + { + "displayName": "(V45.11) Renal dialysis status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Postsurgical renal dialysis status (V45.1)\\(V45.11) Renal dialysis status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\Postsurgical renal dialysis status (V45.1)\\\\(V45.11) Renal dialysis status\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Postsurgical renal dialysis status (V45.1)\\" + }, + { + "displayName": "(V45.12) Noncompliance with renal dialysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Postsurgical renal dialysis status (V45.1)\\(V45.12) Noncompliance with renal dialysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\Postsurgical renal dialysis status (V45.1)\\\\(V45.12) Noncompliance with renal dialysis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Postsurgical renal dialysis status (V45.1)\\" + }, + { + "displayName": "Presence of contraceptive device (V45.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Presence of contraceptive device (V45.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\" + }, + { + "displayName": "(V45.51) Presence of intrauterine contraceptive device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Presence of contraceptive device (V45.5)\\(V45.51) Presence of intrauterine contraceptive device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\Presence of contraceptive device (V45.5)\\\\(V45.51) Presence of intrauterine contraceptive device\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Presence of contraceptive device (V45.5)\\" + }, + { + "displayName": "(V45.52) Presence of subdermal contraceptive implant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Presence of contraceptive device (V45.5)\\(V45.52) Presence of subdermal contraceptive implant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Presence of contraceptive device (V45.5)\\" + }, + { + "displayName": "(V45.59) Presence of other contraceptive device", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Presence of contraceptive device (V45.5)\\(V45.59) Presence of other contraceptive device\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\Presence of contraceptive device (V45.5)\\\\(V45.59) Presence of other contraceptive device\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\Presence of contraceptive device (V45.5)\\" + }, + { + "displayName": "States following surgery of eye and adnexa (V45.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\States following surgery of eye and adnexa (V45.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\States following surgery of eye and adnexa (V45.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\" + }, + { + "displayName": "(V45.61) Cataract extraction status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\States following surgery of eye and adnexa (V45.6)\\(V45.61) Cataract extraction status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\States following surgery of eye and adnexa (V45.6)\\" + }, + { + "displayName": "(V45.69) Other states following surgery of eye and adnexa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\States following surgery of eye and adnexa (V45.6)\\(V45.69) Other states following surgery of eye and adnexa\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other postprocedural states (V45)\\\\States following surgery of eye and adnexa (V45.6)\\\\(V45.69) Other states following surgery of eye and adnexa\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other postprocedural states (V45)\\States following surgery of eye and adnexa (V45.6)\\" + }, + { + "displayName": "Other problems with internal organs (V47)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other problems with internal organs (V47)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\" + }, + { + "displayName": "(V47.0) Deficiencies of internal organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\(V47.0) Deficiencies of internal organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\" + }, + { + "displayName": "(V47.1) Mechanical and motor problems with internal organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\(V47.1) Mechanical and motor problems with internal organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other problems with internal organs (V47)\\\\(V47.1) Mechanical and motor problems with internal organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\" + }, + { + "displayName": "(V47.2) Other cardiorespiratory problems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\(V47.2) Other cardiorespiratory problems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other problems with internal organs (V47)\\\\(V47.2) Other cardiorespiratory problems\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\" + }, + { + "displayName": "(V47.3) Other digestive problems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\(V47.3) Other digestive problems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\" + }, + { + "displayName": "(V47.4) Other urinary problems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\(V47.4) Other urinary problems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\" + }, + { + "displayName": "(V47.5) Other genital problems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\(V47.5) Other genital problems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Other problems with internal organs (V47)\\\\(V47.5) Other genital problems\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\" + }, + { + "displayName": "(V47.9) Unspecified problems with internal organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\(V47.9) Unspecified problems with internal organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Other problems with internal organs (V47)\\" + }, + { + "displayName": "Problems with head, neck, and trunk (V48)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with head, neck, and trunk (V48)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\" + }, + { + "displayName": "(V48.0) Deficiencies of head", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\(V48.0) Deficiencies of head\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with head, neck, and trunk (V48)\\\\(V48.0) Deficiencies of head\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\" + }, + { + "displayName": "(V48.1) Deficiencies of neck and trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\(V48.1) Deficiencies of neck and trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\" + }, + { + "displayName": "(V48.2) Mechanical and motor problems with head", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\(V48.2) Mechanical and motor problems with head\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with head, neck, and trunk (V48)\\\\(V48.2) Mechanical and motor problems with head\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\" + }, + { + "displayName": "(V48.3) Mechanical and motor problems with neck and trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\(V48.3) Mechanical and motor problems with neck and trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with head, neck, and trunk (V48)\\\\(V48.3) Mechanical and motor problems with neck and trunk\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\" + }, + { + "displayName": "(V48.4) Sensory problem with head", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\(V48.4) Sensory problem with head\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with head, neck, and trunk (V48)\\\\(V48.4) Sensory problem with head\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\" + }, + { + "displayName": "(V48.5) Sensory problem with neck and trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\(V48.5) Sensory problem with neck and trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with head, neck, and trunk (V48)\\\\(V48.5) Sensory problem with neck and trunk\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\" + }, + { + "displayName": "(V48.6) Disfigurements of head", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\(V48.6) Disfigurements of head\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with head, neck, and trunk (V48)\\\\(V48.6) Disfigurements of head\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\" + }, + { + "displayName": "(V48.7) Disfigurements of neck and trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\(V48.7) Disfigurements of neck and trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\" + }, + { + "displayName": "(V48.8) Other problems with head, neck, and trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\(V48.8) Other problems with head, neck, and trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\" + }, + { + "displayName": "(V48.9) Unspecified problem with head, neck, or trunk", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\(V48.9) Unspecified problem with head, neck, or trunk\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with head, neck, and trunk (V48)\\" + }, + { + "displayName": "Problems with special senses and other special functions (V41)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\" + }, + { + "displayName": "(V41.0) Problems with sight", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\(V41.0) Problems with sight\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\" + }, + { + "displayName": "(V41.1) Other eye problems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\(V41.1) Other eye problems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\" + }, + { + "displayName": "(V41.2) Problems with hearing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\(V41.2) Problems with hearing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\" + }, + { + "displayName": "(V41.3) Other ear problems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\(V41.3) Other ear problems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with special senses and other special functions (V41)\\\\(V41.3) Other ear problems\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\" + }, + { + "displayName": "(V41.4) Problems with voice production", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\(V41.4) Problems with voice production\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with special senses and other special functions (V41)\\\\(V41.4) Problems with voice production\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\" + }, + { + "displayName": "(V41.5) Problems with smell and taste", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\(V41.5) Problems with smell and taste\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with special senses and other special functions (V41)\\\\(V41.5) Problems with smell and taste\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\" + }, + { + "displayName": "(V41.6) Problems with swallowing and mastication", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\(V41.6) Problems with swallowing and mastication\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with special senses and other special functions (V41)\\\\(V41.6) Problems with swallowing and mastication\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\" + }, + { + "displayName": "(V41.7) Problems with sexual function", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\(V41.7) Problems with sexual function\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with special senses and other special functions (V41)\\\\(V41.7) Problems with sexual function\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\" + }, + { + "displayName": "(V41.8) Other problems with special functions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\(V41.8) Other problems with special functions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with a condition influencing their health status (v40-v49.99)\\\\Problems with special senses and other special functions (V41)\\\\(V41.8) Other problems with special functions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\" + }, + { + "displayName": "(V41.9) Unspecified problem with special functions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\(V41.9) Unspecified problem with special functions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with a condition influencing their health status (v40-v49.99)\\Problems with special senses and other special functions (V41)\\" + }, + { + "displayName": "Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "(V08) Asymptomatic human immunodeficiency virus [HIV] infection status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\(V08) Asymptomatic human immunodeficiency virus [HIV] infection status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\" + }, + { + "displayName": "Infection with drug-resistant microorganisms (V09)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\" + }, + { + "displayName": "(V09.0) Infection with microorganisms resistant to penicillins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\(V09.0) Infection with microorganisms resistant to penicillins\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\" + }, + { + "displayName": "(V09.1) Infection with microorganisms resistant to cephalosporins and other B-lactam antibiotics", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\(V09.1) Infection with microorganisms resistant to cephalosporins and other B-lactam antibiotics\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\" + }, + { + "displayName": "(V09.2) Infection with microorganisms resistant to macrolides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\(V09.2) Infection with microorganisms resistant to macrolides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\" + }, + { + "displayName": "(V09.3) Infection with microorganisms resistant to tetracyclines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\(V09.3) Infection with microorganisms resistant to tetracyclines\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\\\Infection with drug-resistant microorganisms (V09)\\\\(V09.3) Infection with microorganisms resistant to tetracyclines\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\" + }, + { + "displayName": "(V09.4) Infection with microorganisms resistant to aminoglycosides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\(V09.4) Infection with microorganisms resistant to aminoglycosides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\" + }, + { + "displayName": "(V09.6) Infection with microorganisms resistant to sulfonamides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\(V09.6) Infection with microorganisms resistant to sulfonamides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\" + }, + { + "displayName": "Infection with drug-resistant microorganisms, unspecified (V09.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with drug-resistant microorganisms, unspecified (V09.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\" + }, + { + "displayName": "(V09.90) Infection with drug-resistant microorganisms, unspecified, without mention of multiple drug resistance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with drug-resistant microorganisms, unspecified (V09.9)\\(V09.90) Infection with drug-resistant microorganisms, unspecified, without mention of multiple drug resistance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with drug-resistant microorganisms, unspecified (V09.9)\\" + }, + { + "displayName": "(V09.91) Infection with drug-resistant microorganisms, unspecified, with multiple drug resistance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with drug-resistant microorganisms, unspecified (V09.9)\\(V09.91) Infection with drug-resistant microorganisms, unspecified, with multiple drug resistance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\\\Infection with drug-resistant microorganisms (V09)\\\\Infection with drug-resistant microorganisms, unspecified (V09.9)\\\\(V09.91) Infection with drug-resistant microorganisms, unspecified, with multiple drug resistance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with drug-resistant microorganisms, unspecified (V09.9)\\" + }, + { + "displayName": "Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\" + }, + { + "displayName": "(V09.70) Infection with microorganisms without mention of resistance to multiple antimycobacterial agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\\(V09.70) Infection with microorganisms without mention of resistance to multiple antimycobacterial agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\\" + }, + { + "displayName": "(V09.71) Infection with microorganisms with resistance to multiple antimycobacterial agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\\(V09.71) Infection with microorganisms with resistance to multiple antimycobacterial agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to other specified antimycobacterial agents (V09.7)\\" + }, + { + "displayName": "Infection with microorganisms resistant to other specified drugs (V09.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to other specified drugs (V09.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\" + }, + { + "displayName": "(V09.80) Infection with microorganisms without mention of resistance to multiple drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to other specified drugs (V09.8)\\(V09.80) Infection with microorganisms without mention of resistance to multiple drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to other specified drugs (V09.8)\\" + }, + { + "displayName": "(V09.81) Infection with microorganisms with resistance to multiple drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to other specified drugs (V09.8)\\(V09.81) Infection with microorganisms with resistance to multiple drugs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to other specified drugs (V09.8)\\" + }, + { + "displayName": "Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\\\Infection with drug-resistant microorganisms (V09)\\\\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\" + }, + { + "displayName": "(V09.50) Infection with microorganisms without mention of resistance to multiple quinolones and fluroquinolones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\\(V09.50) Infection with microorganisms without mention of resistance to multiple quinolones and fluroquinolones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\\\Infection with drug-resistant microorganisms (V09)\\\\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\\\\(V09.50) Infection with microorganisms without mention of resistance to multiple quinolones and fluroquinolones\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\\" + }, + { + "displayName": "(V09.51) Infection with microorganisms with resistance to multiple quinolones and fluroquinolones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\\(V09.51) Infection with microorganisms with resistance to multiple quinolones and fluroquinolones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\\\Infection with drug-resistant microorganisms (V09)\\\\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\\\\(V09.51) Infection with microorganisms with resistance to multiple quinolones and fluroquinolones\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Infection with drug-resistant microorganisms (V09)\\Infection with microorganisms resistant to quinolones and fluoroquinolones (V09.5)\\" + }, + { + "displayName": "Need for isolation and other prophylactic or treatment measures (V07)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\\\Need for isolation and other prophylactic or treatment measures (V07)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\" + }, + { + "displayName": "(V07.0) Need for isolation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\(V07.0) Need for isolation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\" + }, + { + "displayName": "(V07.1) Need for desensitization to allergens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\(V07.1) Need for desensitization to allergens\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\\\Need for isolation and other prophylactic or treatment measures (V07)\\\\(V07.1) Need for desensitization to allergens\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\" + }, + { + "displayName": "(V07.2) Need for prophylactic immunotherapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\(V07.2) Need for prophylactic immunotherapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\" + }, + { + "displayName": "(V07.4) Hormone replacement therapy (postmenopausal)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\(V07.4) Hormone replacement therapy (postmenopausal)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\" + }, + { + "displayName": "(V07.8) Other specified prophylactic or treatment measure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\(V07.8) Other specified prophylactic or treatment measure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\\\Need for isolation and other prophylactic or treatment measures (V07)\\\\(V07.8) Other specified prophylactic or treatment measure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\" + }, + { + "displayName": "(V07.9) Unspecified prophylactic or treatment measure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\(V07.9) Unspecified prophylactic or treatment measure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\" + }, + { + "displayName": "Need for other prophylactic chemotherapy (V07.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Need for other prophylactic chemotherapy (V07.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\" + }, + { + "displayName": "(V07.31) Need for prophylactic fluoride administration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Need for other prophylactic chemotherapy (V07.3)\\(V07.31) Need for prophylactic fluoride administration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Need for other prophylactic chemotherapy (V07.3)\\" + }, + { + "displayName": "(V07.39) Need for other prophylactic chemotherapy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Need for other prophylactic chemotherapy (V07.3)\\(V07.39) Need for other prophylactic chemotherapy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Need for other prophylactic chemotherapy (V07.3)\\" + }, + { + "displayName": "Use of agents affecting estrogen receptors and estrogen levels (V07.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\" + }, + { + "displayName": "(V07.51) Use of selective estrogen receptor modulators (SERMs)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\\(V07.51) Use of selective estrogen receptor modulators (SERMs)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\\" + }, + { + "displayName": "(V07.52) Use of aromatase inhibitors", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\\(V07.52) Use of aromatase inhibitors\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\\" + }, + { + "displayName": "(V07.59) Use of other agents affecting estrogen receptors and estrogen levels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\\(V07.59) Use of other agents affecting estrogen receptors and estrogen levels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\\\Need for isolation and other prophylactic or treatment measures (V07)\\\\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\\\\(V07.59) Use of other agents affecting estrogen receptors and estrogen levels\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with need for isolation, other potential health hazards and prophylactic measures (v07-v09.99)\\Need for isolation and other prophylactic or treatment measures (V07)\\Use of agents affecting estrogen receptors and estrogen levels (V07.5)\\" + }, + { + "displayName": "Persons with potential health hazards related to communicable diseases (v01-v06.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Carrier or suspected carrier of infectious diseases (V02)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Carrier or suspected carrier of infectious diseases (V02)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\" + }, + { + "displayName": "(V02.0) Carrier or suspected carrier of cholera", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\(V02.0) Carrier or suspected carrier of cholera\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\" + }, + { + "displayName": "(V02.1) Carrier or suspected carrier of typhoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\(V02.1) Carrier or suspected carrier of typhoid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Carrier or suspected carrier of infectious diseases (V02)\\\\(V02.1) Carrier or suspected carrier of typhoid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\" + }, + { + "displayName": "(V02.2) Carrier or suspected carrier of amebiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\(V02.2) Carrier or suspected carrier of amebiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Carrier or suspected carrier of infectious diseases (V02)\\\\(V02.2) Carrier or suspected carrier of amebiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\" + }, + { + "displayName": "(V02.3) Carrier or suspected carrier of other gastrointestinal pathogens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\(V02.3) Carrier or suspected carrier of other gastrointestinal pathogens\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Carrier or suspected carrier of infectious diseases (V02)\\\\(V02.3) Carrier or suspected carrier of other gastrointestinal pathogens\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\" + }, + { + "displayName": "(V02.4) Carrier or suspected carrier of diphtheria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\(V02.4) Carrier or suspected carrier of diphtheria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\" + }, + { + "displayName": "(V02.7) Carrier or suspected carrier of gonorrhea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\(V02.7) Carrier or suspected carrier of gonorrhea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Carrier or suspected carrier of infectious diseases (V02)\\\\(V02.7) Carrier or suspected carrier of gonorrhea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\" + }, + { + "displayName": "(V02.8) Carrier or suspected carrier of other venereal diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\(V02.8) Carrier or suspected carrier of other venereal diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\" + }, + { + "displayName": "(V02.9) Carrier or suspected carrier of other specified infectious organism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\(V02.9) Carrier or suspected carrier of other specified infectious organism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Carrier or suspected carrier of infectious diseases (V02)\\\\(V02.9) Carrier or suspected carrier of other specified infectious organism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\" + }, + { + "displayName": "Carrier or suspected carrier of other specified bacterial diseases (V02.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\" + }, + { + "displayName": "(V02.51) Carrier or suspected carrier of group B streptococcus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\(V02.51) Carrier or suspected carrier of group B streptococcus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\" + }, + { + "displayName": "(V02.52) Carrier or suspected carrier of other streptococcus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\(V02.52) Carrier or suspected carrier of other streptococcus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\" + }, + { + "displayName": "(V02.53) Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\(V02.53) Carrier or suspected carrier of Methicillin susceptible Staphylococcus aureus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\" + }, + { + "displayName": "(V02.54) Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\(V02.54) Carrier or suspected carrier of Methicillin resistant Staphylococcus aureus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\" + }, + { + "displayName": "(V02.59) Carrier or suspected carrier of other specified bacterial diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\(V02.59) Carrier or suspected carrier of other specified bacterial diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Carrier or suspected carrier of infectious diseases (V02)\\\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\\\(V02.59) Carrier or suspected carrier of other specified bacterial diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of other specified bacterial diseases (V02.5)\\" + }, + { + "displayName": "Carrier or suspected carrier of viral hepatitis (V02.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of viral hepatitis (V02.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Carrier or suspected carrier of infectious diseases (V02)\\\\Carrier or suspected carrier of viral hepatitis (V02.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\" + }, + { + "displayName": "(V02.60) Viral hepatitis carrier, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of viral hepatitis (V02.6)\\(V02.60) Viral hepatitis carrier, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Carrier or suspected carrier of infectious diseases (V02)\\\\Carrier or suspected carrier of viral hepatitis (V02.6)\\\\(V02.60) Viral hepatitis carrier, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of viral hepatitis (V02.6)\\" + }, + { + "displayName": "(V02.61) Hepatitis B carrier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of viral hepatitis (V02.6)\\(V02.61) Hepatitis B carrier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of viral hepatitis (V02.6)\\" + }, + { + "displayName": "(V02.62) Hepatitis C carrier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of viral hepatitis (V02.6)\\(V02.62) Hepatitis C carrier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Carrier or suspected carrier of infectious diseases (V02)\\\\Carrier or suspected carrier of viral hepatitis (V02.6)\\\\(V02.62) Hepatitis C carrier\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of viral hepatitis (V02.6)\\" + }, + { + "displayName": "(V02.69) Other viral hepatitis carrier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of viral hepatitis (V02.6)\\(V02.69) Other viral hepatitis carrier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Carrier or suspected carrier of infectious diseases (V02)\\Carrier or suspected carrier of viral hepatitis (V02.6)\\" + }, + { + "displayName": "Contact with or exposure to communicable diseases (V01)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Contact with or exposure to communicable diseases (V01)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\" + }, + { + "displayName": "(V01.0) Contact with or exposure to cholera", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\(V01.0) Contact with or exposure to cholera\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\" + }, + { + "displayName": "(V01.1) Contact with or exposure to tuberculosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\(V01.1) Contact with or exposure to tuberculosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Contact with or exposure to communicable diseases (V01)\\\\(V01.1) Contact with or exposure to tuberculosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\" + }, + { + "displayName": "(V01.2) Contact with or exposure to poliomyelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\(V01.2) Contact with or exposure to poliomyelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Contact with or exposure to communicable diseases (V01)\\\\(V01.2) Contact with or exposure to poliomyelitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\" + }, + { + "displayName": "(V01.3) Contact with or exposure to smallpox", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\(V01.3) Contact with or exposure to smallpox\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Contact with or exposure to communicable diseases (V01)\\\\(V01.3) Contact with or exposure to smallpox\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\" + }, + { + "displayName": "(V01.4) Contact with or exposure to rubella", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\(V01.4) Contact with or exposure to rubella\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\" + }, + { + "displayName": "(V01.5) Contact with or exposure to rabies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\(V01.5) Contact with or exposure to rabies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Contact with or exposure to communicable diseases (V01)\\\\(V01.5) Contact with or exposure to rabies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\" + }, + { + "displayName": "(V01.6) Contact with or exposure to venereal diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\(V01.6) Contact with or exposure to venereal diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\" + }, + { + "displayName": "(V01.9) Contact with or exposure to unspecified communicable disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\(V01.9) Contact with or exposure to unspecified communicable disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\" + }, + { + "displayName": "Contact with or exposure to other communicable diseases (V01.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other communicable diseases (V01.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Contact with or exposure to communicable diseases (V01)\\\\Contact with or exposure to other communicable diseases (V01.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\" + }, + { + "displayName": "(V01.81) Contact with or exposure to anthrax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other communicable diseases (V01.8)\\(V01.81) Contact with or exposure to anthrax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Contact with or exposure to communicable diseases (V01)\\\\Contact with or exposure to other communicable diseases (V01.8)\\\\(V01.81) Contact with or exposure to anthrax\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other communicable diseases (V01.8)\\" + }, + { + "displayName": "(V01.82) Exposure to SARS-associated coronavirus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other communicable diseases (V01.8)\\(V01.82) Exposure to SARS-associated coronavirus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other communicable diseases (V01.8)\\" + }, + { + "displayName": "(V01.83) Contact with or exposure to escherichia coli (E. coli)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other communicable diseases (V01.8)\\(V01.83) Contact with or exposure to escherichia coli (E. coli)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other communicable diseases (V01.8)\\" + }, + { + "displayName": "(V01.84) Contact with or exposure to meningococcus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other communicable diseases (V01.8)\\(V01.84) Contact with or exposure to meningococcus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other communicable diseases (V01.8)\\" + }, + { + "displayName": "(V01.89) Contact with or exposure to other communicable diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other communicable diseases (V01.8)\\(V01.89) Contact with or exposure to other communicable diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other communicable diseases (V01.8)\\" + }, + { + "displayName": "Contact with or exposure to other viral diseases (V01.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other viral diseases (V01.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Contact with or exposure to communicable diseases (V01)\\\\Contact with or exposure to other viral diseases (V01.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\" + }, + { + "displayName": "(V01.71) Contact with or exposure to varicella", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other viral diseases (V01.7)\\(V01.71) Contact with or exposure to varicella\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other viral diseases (V01.7)\\" + }, + { + "displayName": "(V01.79) Contact with or exposure to other viral diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other viral diseases (V01.7)\\(V01.79) Contact with or exposure to other viral diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Contact with or exposure to communicable diseases (V01)\\\\Contact with or exposure to other viral diseases (V01.7)\\\\(V01.79) Contact with or exposure to other viral diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Contact with or exposure to communicable diseases (V01)\\Contact with or exposure to other viral diseases (V01.7)\\" + }, + { + "displayName": "Need for prophylactic vaccination and inoculation against bacterial diseases (V03)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\" + }, + { + "displayName": "(V03.0) Need for prophylactic vaccination and inoculation against cholera alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\(V03.0) Need for prophylactic vaccination and inoculation against cholera alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\" + }, + { + "displayName": "(V03.1) Need for prophylactic vaccination and inoculation against typhoid-paratyphoid alone [TAB]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\(V03.1) Need for prophylactic vaccination and inoculation against typhoid-paratyphoid alone [TAB]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\" + }, + { + "displayName": "(V03.2) Need for prophylactic vaccination and inoculation against tuberculosis [BCG]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\(V03.2) Need for prophylactic vaccination and inoculation against tuberculosis [BCG]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\\\(V03.2) Need for prophylactic vaccination and inoculation against tuberculosis [BCG]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\" + }, + { + "displayName": "(V03.3) Need for prophylactic vaccination and inoculation against plague", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\(V03.3) Need for prophylactic vaccination and inoculation against plague\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\" + }, + { + "displayName": "(V03.4) Need for prophylactic vaccination and inoculation against tularemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\(V03.4) Need for prophylactic vaccination and inoculation against tularemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\" + }, + { + "displayName": "(V03.5) Need for prophylactic vaccination and inoculation against diphtheria alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\(V03.5) Need for prophylactic vaccination and inoculation against diphtheria alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\" + }, + { + "displayName": "(V03.6) Need for prophylactic vaccination and inoculation against pertussis alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\(V03.6) Need for prophylactic vaccination and inoculation against pertussis alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\" + }, + { + "displayName": "(V03.7) Need for prophylactic vaccination and inoculation against tetanus toxoid alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\(V03.7) Need for prophylactic vaccination and inoculation against tetanus toxoid alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\" + }, + { + "displayName": "(V03.9) Need for prophylactic vaccination and inoculation against unspecified single bacterial disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\(V03.9) Need for prophylactic vaccination and inoculation against unspecified single bacterial disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\\\(V03.9) Need for prophylactic vaccination and inoculation against unspecified single bacterial disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\" + }, + { + "displayName": "Need for other specified vaccinations against single bacterial diseases (V03.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\Need for other specified vaccinations against single bacterial diseases (V03.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\" + }, + { + "displayName": "(V03.81) Other specified vaccinations against hemophilus influenza, type B [Hib]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\Need for other specified vaccinations against single bacterial diseases (V03.8)\\(V03.81) Other specified vaccinations against hemophilus influenza, type B [Hib]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\\\Need for other specified vaccinations against single bacterial diseases (V03.8)\\\\(V03.81) Other specified vaccinations against hemophilus influenza, type B [Hib]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\Need for other specified vaccinations against single bacterial diseases (V03.8)\\" + }, + { + "displayName": "(V03.82) Other specified vaccinations against streptococcus pneumoniae [pneumococcus]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\Need for other specified vaccinations against single bacterial diseases (V03.8)\\(V03.82) Other specified vaccinations against streptococcus pneumoniae [pneumococcus]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\\\Need for other specified vaccinations against single bacterial diseases (V03.8)\\\\(V03.82) Other specified vaccinations against streptococcus pneumoniae [pneumococcus]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\Need for other specified vaccinations against single bacterial diseases (V03.8)\\" + }, + { + "displayName": "(V03.89) Other specified vaccination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\Need for other specified vaccinations against single bacterial diseases (V03.8)\\(V03.89) Other specified vaccination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\\\Need for other specified vaccinations against single bacterial diseases (V03.8)\\\\(V03.89) Other specified vaccination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against bacterial diseases (V03)\\Need for other specified vaccinations against single bacterial diseases (V03.8)\\" + }, + { + "displayName": "Need for prophylactic vaccination and inoculation against certain diseases (V04)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\" + }, + { + "displayName": "(V04.0) Need for prophylactic vaccination and inoculation against poliomyelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\(V04.0) Need for prophylactic vaccination and inoculation against poliomyelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\" + }, + { + "displayName": "(V04.1) Need for prophylactic vaccination and inoculation against smallpox", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\(V04.1) Need for prophylactic vaccination and inoculation against smallpox\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\" + }, + { + "displayName": "(V04.2) Need for prophylactic vaccination and inoculation against measles alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\(V04.2) Need for prophylactic vaccination and inoculation against measles alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\" + }, + { + "displayName": "(V04.3) Need for prophylactic vaccination and inoculation against rubella alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\(V04.3) Need for prophylactic vaccination and inoculation against rubella alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\\\(V04.3) Need for prophylactic vaccination and inoculation against rubella alone\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\" + }, + { + "displayName": "(V04.4) Need for prophylactic vaccination and inoculation against yellow fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\(V04.4) Need for prophylactic vaccination and inoculation against yellow fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\\\(V04.4) Need for prophylactic vaccination and inoculation against yellow fever\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\" + }, + { + "displayName": "(V04.5) Need for prophylactic vaccination and inoculation against rabies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\(V04.5) Need for prophylactic vaccination and inoculation against rabies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\\\(V04.5) Need for prophylactic vaccination and inoculation against rabies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\" + }, + { + "displayName": "(V04.6) Need for prophylactic vaccination and inoculation against mumps alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\(V04.6) Need for prophylactic vaccination and inoculation against mumps alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\\\(V04.6) Need for prophylactic vaccination and inoculation against mumps alone\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\" + }, + { + "displayName": "(V04.7) Need for prophylactic vaccination and inoculation against common cold", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\(V04.7) Need for prophylactic vaccination and inoculation against common cold\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\" + }, + { + "displayName": "Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\" + }, + { + "displayName": "(V04.81) Need for prophylactic vaccination and inoculation against influenza", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\\(V04.81) Need for prophylactic vaccination and inoculation against influenza\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\\" + }, + { + "displayName": "(V04.82) Need for prophylactic vaccination and inoculation against respiratory syncytial virus (RSV)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\\(V04.82) Need for prophylactic vaccination and inoculation against respiratory syncytial virus (RSV)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\\" + }, + { + "displayName": "(V04.89) Need for prophylactic vaccination and inoculation against other viral diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\\(V04.89) Need for prophylactic vaccination and inoculation against other viral diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against certain diseases (V04)\\Need for prophylactic vaccination and inoculation against other viral diseases (V04.8)\\" + }, + { + "displayName": "Need for prophylactic vaccination and inoculation against combinations of diseases (V06)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\" + }, + { + "displayName": "(V06.0) Need for prophylactic vaccination and inoculation against cholera with typhoid-paratyphoid [cholera + TAB]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\(V06.0) Need for prophylactic vaccination and inoculation against cholera with typhoid-paratyphoid [cholera + TAB]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\" + }, + { + "displayName": "(V06.1) Need for prophylactic vaccination and inoculation against diphtheria-tetanus-pertussis, combined [DTP] [DTaP]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\(V06.1) Need for prophylactic vaccination and inoculation against diphtheria-tetanus-pertussis, combined [DTP] [DTaP]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\\\(V06.1) Need for prophylactic vaccination and inoculation against diphtheria-tetanus-pertussis, combined [DTP] [DTaP]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\" + }, + { + "displayName": "(V06.2) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with typhoid-paratyphoid (DTP + TAB)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\(V06.2) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with typhoid-paratyphoid (DTP + TAB)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\\\(V06.2) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with typhoid-paratyphoid (DTP + TAB)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\" + }, + { + "displayName": "(V06.3) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with poliomyelitis [DTP + polio]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\(V06.3) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with poliomyelitis [DTP + polio]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\\\(V06.3) Need for prophylactic vaccination and inoculation against diptheria-tetanus- pertussis with poliomyelitis [DTP + polio]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\" + }, + { + "displayName": "(V06.4) Need for prophylactic vaccination and inoculation against measles-mumps-rubella (MMR)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\(V06.4) Need for prophylactic vaccination and inoculation against measles-mumps-rubella (MMR)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\" + }, + { + "displayName": "(V06.5) Need for prophylactic vaccination and inoculation against tetanus-diphtheria [Td] (DT)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\(V06.5) Need for prophylactic vaccination and inoculation against tetanus-diphtheria [Td] (DT)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\" + }, + { + "displayName": "(V06.6) Need for prophylactic vaccination and inoculation against streptococcus pneumoniae [pneumococcus] and influenza", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\(V06.6) Need for prophylactic vaccination and inoculation against streptococcus pneumoniae [pneumococcus] and influenza\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\" + }, + { + "displayName": "(V06.8) Need for prophylactic vaccination and inoculation against other combinations of diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\(V06.8) Need for prophylactic vaccination and inoculation against other combinations of diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\" + }, + { + "displayName": "(V06.9) Unspecified combined vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\(V06.9) Unspecified combined vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against combinations of diseases (V06)\\" + }, + { + "displayName": "Need for prophylactic vaccination and inoculation against single diseases (V05)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\" + }, + { + "displayName": "(V05.0) Need for prophylactic vaccination and inoculation against arthropod-borne viral encephalitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\(V05.0) Need for prophylactic vaccination and inoculation against arthropod-borne viral encephalitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\" + }, + { + "displayName": "(V05.1) Need for prophylactic vaccination and inoculation against other arthropod-borne viral diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\(V05.1) Need for prophylactic vaccination and inoculation against other arthropod-borne viral diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\" + }, + { + "displayName": "(V05.2) Need for prophylactic vaccination and inoculation against leishmaniasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\(V05.2) Need for prophylactic vaccination and inoculation against leishmaniasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\\\(V05.2) Need for prophylactic vaccination and inoculation against leishmaniasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\" + }, + { + "displayName": "(V05.3) Need for prophylactic vaccination and inoculation against viral hepatitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\(V05.3) Need for prophylactic vaccination and inoculation against viral hepatitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\\\(V05.3) Need for prophylactic vaccination and inoculation against viral hepatitis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\" + }, + { + "displayName": "(V05.4) Need for prophylactic vaccination and inoculation against varicella", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\(V05.4) Need for prophylactic vaccination and inoculation against varicella\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\\\(V05.4) Need for prophylactic vaccination and inoculation against varicella\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\" + }, + { + "displayName": "(V05.8) Need for prophylactic vaccination and inoculation against other specified disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\(V05.8) Need for prophylactic vaccination and inoculation against other specified disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\" + }, + { + "displayName": "(V05.9) Need for prophylactic vaccination and inoculation against unspecified single disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\(V05.9) Need for prophylactic vaccination and inoculation against unspecified single disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to communicable diseases (v01-v06.99)\\Need for prophylactic vaccination and inoculation against single diseases (V05)\\" + }, + { + "displayName": "Persons with potential health hazards related to personal and family history (v10-v19.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Family history of certain chronic disabling diseases (V17)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of certain chronic disabling diseases (V17)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\" + }, + { + "displayName": "(V17.0) Family history of psychiatric condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\(V17.0) Family history of psychiatric condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of certain chronic disabling diseases (V17)\\\\(V17.0) Family history of psychiatric condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\" + }, + { + "displayName": "(V17.1) Family history of stroke (cerebrovascular)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\(V17.1) Family history of stroke (cerebrovascular)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of certain chronic disabling diseases (V17)\\\\(V17.1) Family history of stroke (cerebrovascular)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\" + }, + { + "displayName": "(V17.2) Family history of other neurological diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\(V17.2) Family history of other neurological diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of certain chronic disabling diseases (V17)\\\\(V17.2) Family history of other neurological diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\" + }, + { + "displayName": "(V17.3) Family history of ischemic heart disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\(V17.3) Family history of ischemic heart disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\" + }, + { + "displayName": "(V17.5) Family history of asthma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\(V17.5) Family history of asthma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\" + }, + { + "displayName": "(V17.6) Family history of other chronic respiratory conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\(V17.6) Family history of other chronic respiratory conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\" + }, + { + "displayName": "(V17.7) Family history of arthritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\(V17.7) Family history of arthritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\" + }, + { + "displayName": "Family history of other cardiovascular diseases (V17.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\Family history of other cardiovascular diseases (V17.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\" + }, + { + "displayName": "(V17.41) Family history of sudden cardiac death (SCD)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\Family history of other cardiovascular diseases (V17.4)\\(V17.41) Family history of sudden cardiac death (SCD)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\Family history of other cardiovascular diseases (V17.4)\\" + }, + { + "displayName": "(V17.49) Family history of other cardiovascular diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\Family history of other cardiovascular diseases (V17.4)\\(V17.49) Family history of other cardiovascular diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\Family history of other cardiovascular diseases (V17.4)\\" + }, + { + "displayName": "Family history of other musculoskeletal diseases (V17.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\Family history of other musculoskeletal diseases (V17.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\" + }, + { + "displayName": "(V17.81) Family history of osteoporosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\Family history of other musculoskeletal diseases (V17.8)\\(V17.81) Family history of osteoporosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of certain chronic disabling diseases (V17)\\\\Family history of other musculoskeletal diseases (V17.8)\\\\(V17.81) Family history of osteoporosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\Family history of other musculoskeletal diseases (V17.8)\\" + }, + { + "displayName": "(V17.89) Family history of other musculoskeletal diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\Family history of other musculoskeletal diseases (V17.8)\\(V17.89) Family history of other musculoskeletal diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of certain chronic disabling diseases (V17)\\\\Family history of other musculoskeletal diseases (V17.8)\\\\(V17.89) Family history of other musculoskeletal diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain chronic disabling diseases (V17)\\Family history of other musculoskeletal diseases (V17.8)\\" + }, + { + "displayName": "Family history of certain other specific conditions (V18)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\" + }, + { + "displayName": "(V18.0) Family history of diabetes mellitus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\(V18.0) Family history of diabetes mellitus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\" + }, + { + "displayName": "(V18.2) Family history of anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\(V18.2) Family history of anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\" + }, + { + "displayName": "(V18.3) Family history of other blood disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\(V18.3) Family history of other blood disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of certain other specific conditions (V18)\\\\(V18.3) Family history of other blood disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\" + }, + { + "displayName": "(V18.4) Family history of intellectual disabilities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\(V18.4) Family history of intellectual disabilities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\" + }, + { + "displayName": "(V18.7) Family history of other genitourinary diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\(V18.7) Family history of other genitourinary diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\" + }, + { + "displayName": "(V18.8) Family history of infectious and parasitic diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\(V18.8) Family history of infectious and parasitic diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\" + }, + { + "displayName": "(V18.9) Family history of genetic disease carrier", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\(V18.9) Family history of genetic disease carrier\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of certain other specific conditions (V18)\\\\(V18.9) Family history of genetic disease carrier\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\" + }, + { + "displayName": "Family history of digestive disorders (V18.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of digestive disorders (V18.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\" + }, + { + "displayName": "(V18.51) Family history of colonic polyps", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of digestive disorders (V18.5)\\(V18.51) Family history of colonic polyps\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of digestive disorders (V18.5)\\" + }, + { + "displayName": "(V18.59) Family history of other digestive disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of digestive disorders (V18.5)\\(V18.59) Family history of other digestive disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of digestive disorders (V18.5)\\" + }, + { + "displayName": "Family history of kidney diseases (V18.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of kidney diseases (V18.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\" + }, + { + "displayName": "(V18.61) Family history of polycystic kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of kidney diseases (V18.6)\\(V18.61) Family history of polycystic kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of kidney diseases (V18.6)\\" + }, + { + "displayName": "(V18.69) Family history of other kidney diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of kidney diseases (V18.6)\\(V18.69) Family history of other kidney diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of kidney diseases (V18.6)\\" + }, + { + "displayName": "Family history of other endocrine and metabolic diseases (V18.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of other endocrine and metabolic diseases (V18.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\" + }, + { + "displayName": "(V18.11) Family history of multiple endocrine neoplasia [MEN] syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of other endocrine and metabolic diseases (V18.1)\\(V18.11) Family history of multiple endocrine neoplasia [MEN] syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of other endocrine and metabolic diseases (V18.1)\\" + }, + { + "displayName": "(V18.19) Family history of other endocrine and metabolic diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of other endocrine and metabolic diseases (V18.1)\\(V18.19) Family history of other endocrine and metabolic diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of certain other specific conditions (V18)\\Family history of other endocrine and metabolic diseases (V18.1)\\" + }, + { + "displayName": "Family history of malignant neoplasm (V16)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of malignant neoplasm (V16)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\" + }, + { + "displayName": "(V16.0) Family history of malignant neoplasm of gastrointestinal tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\(V16.0) Family history of malignant neoplasm of gastrointestinal tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\" + }, + { + "displayName": "(V16.1) Family history of malignant neoplasm of trachea, bronchus, and lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\(V16.1) Family history of malignant neoplasm of trachea, bronchus, and lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of malignant neoplasm (V16)\\\\(V16.1) Family history of malignant neoplasm of trachea, bronchus, and lung\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\" + }, + { + "displayName": "(V16.2) Family history of malignant neoplasm of other respiratory and intrathoracic organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\(V16.2) Family history of malignant neoplasm of other respiratory and intrathoracic organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of malignant neoplasm (V16)\\\\(V16.2) Family history of malignant neoplasm of other respiratory and intrathoracic organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\" + }, + { + "displayName": "(V16.3) Family history of malignant neoplasm of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\(V16.3) Family history of malignant neoplasm of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of malignant neoplasm (V16)\\\\(V16.3) Family history of malignant neoplasm of breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\" + }, + { + "displayName": "(V16.6) Family history of leukemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\(V16.6) Family history of leukemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\" + }, + { + "displayName": "(V16.7) Family history of other lymphatic and hematopoietic neoplasms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\(V16.7) Family history of other lymphatic and hematopoietic neoplasms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\" + }, + { + "displayName": "(V16.8) Family history of other specified malignant neoplasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\(V16.8) Family history of other specified malignant neoplasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\" + }, + { + "displayName": "(V16.9) Family history of unspecified malignant neoplasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\(V16.9) Family history of unspecified malignant neoplasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of malignant neoplasm (V16)\\\\(V16.9) Family history of unspecified malignant neoplasm\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\" + }, + { + "displayName": "Family history of malignant neoplasm of genital organs (V16.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of genital organs (V16.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\" + }, + { + "displayName": "(V16.40) Family history of malignant neoplasm of genital organ, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of genital organs (V16.4)\\(V16.40) Family history of malignant neoplasm of genital organ, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of genital organs (V16.4)\\" + }, + { + "displayName": "(V16.41) Family history of malignant neoplasm of ovary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of genital organs (V16.4)\\(V16.41) Family history of malignant neoplasm of ovary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of genital organs (V16.4)\\" + }, + { + "displayName": "(V16.42) Family history of malignant neoplasm of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of genital organs (V16.4)\\(V16.42) Family history of malignant neoplasm of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of genital organs (V16.4)\\" + }, + { + "displayName": "(V16.43) Family history of malignant neoplasm of testis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of genital organs (V16.4)\\(V16.43) Family history of malignant neoplasm of testis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of genital organs (V16.4)\\" + }, + { + "displayName": "(V16.49) Family history of malignant neoplasm of other genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of genital organs (V16.4)\\(V16.49) Family history of malignant neoplasm of other genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of genital organs (V16.4)\\" + }, + { + "displayName": "Family history of malignant neoplasm of urinary organs (V16.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of urinary organs (V16.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\" + }, + { + "displayName": "(V16.51) Family history of malignant neoplasm of kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of urinary organs (V16.5)\\(V16.51) Family history of malignant neoplasm of kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of malignant neoplasm (V16)\\\\Family history of malignant neoplasm of urinary organs (V16.5)\\\\(V16.51) Family history of malignant neoplasm of kidney\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of urinary organs (V16.5)\\" + }, + { + "displayName": "(V16.52) Family history of malignant neoplasm, bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of urinary organs (V16.5)\\(V16.52) Family history of malignant neoplasm, bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of malignant neoplasm (V16)\\\\Family history of malignant neoplasm of urinary organs (V16.5)\\\\(V16.52) Family history of malignant neoplasm, bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of urinary organs (V16.5)\\" + }, + { + "displayName": "(V16.59) Family history of malignant neoplasm of other urinary organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of urinary organs (V16.5)\\(V16.59) Family history of malignant neoplasm of other urinary organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of malignant neoplasm (V16)\\\\Family history of malignant neoplasm of urinary organs (V16.5)\\\\(V16.59) Family history of malignant neoplasm of other urinary organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of malignant neoplasm (V16)\\Family history of malignant neoplasm of urinary organs (V16.5)\\" + }, + { + "displayName": "Family history of other conditions (V19)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\" + }, + { + "displayName": "(V19.0) Family history of blindness or visual loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\(V19.0) Family history of blindness or visual loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\" + }, + { + "displayName": "(V19.2) Family history of deafness or hearing loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\(V19.2) Family history of deafness or hearing loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\" + }, + { + "displayName": "(V19.3) Family history of other ear disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\(V19.3) Family history of other ear disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\" + }, + { + "displayName": "(V19.4) Family history of skin conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\(V19.4) Family history of skin conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of other conditions (V19)\\\\(V19.4) Family history of skin conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\" + }, + { + "displayName": "(V19.5) Family history of congenital anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\(V19.5) Family history of congenital anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of other conditions (V19)\\\\(V19.5) Family history of congenital anomalies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\" + }, + { + "displayName": "(V19.6) Family history of allergic disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\(V19.6) Family history of allergic disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of other conditions (V19)\\\\(V19.6) Family history of allergic disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\" + }, + { + "displayName": "(V19.7) Family history of consanguinity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\(V19.7) Family history of consanguinity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Family history of other conditions (V19)\\\\(V19.7) Family history of consanguinity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\" + }, + { + "displayName": "(V19.8) Family history of other condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\(V19.8) Family history of other condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\" + }, + { + "displayName": "Family history of other eye disorders (V19.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\Family history of other eye disorders (V19.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Family history of other conditions (V19)\\" + }, + { + "displayName": "Other personal history presenting hazards to health (V15)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\" + }, + { + "displayName": "(V15.1) Personal history of surgery to heart and great vessels, presenting hazards to health", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\(V15.1) Personal history of surgery to heart and great vessels, presenting hazards to health\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\" + }, + { + "displayName": "(V15.3) Personal history of irradiation, presenting hazards to health", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\(V15.3) Personal history of irradiation, presenting hazards to health\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\" + }, + { + "displayName": "(V15.6) Personal history of poisoning, presenting hazards to health", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\(V15.6) Personal history of poisoning, presenting hazards to health\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\" + }, + { + "displayName": "(V15.7) Personal history of contraception, presenting hazards to health", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\(V15.7) Personal history of contraception, presenting hazards to health\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\" + }, + { + "displayName": "(V15.9) Unspecified personal history presenting hazards to health", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\(V15.9) Unspecified personal history presenting hazards to health\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\" + }, + { + "displayName": "Other specified personal history presenting hazards to health (V15.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\" + }, + { + "displayName": "(V15.81) Personal history of noncompliance with medical treatment, presenting hazards to health", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\(V15.81) Personal history of noncompliance with medical treatment, presenting hazards to health\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\" + }, + { + "displayName": "(V15.82) Personal history of tobacco use", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\(V15.82) Personal history of tobacco use\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\" + }, + { + "displayName": "(V15.83) Personal history of underimmunization status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\(V15.83) Personal history of underimmunization status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\" + }, + { + "displayName": "(V15.84) Personal history of contact with and (suspected) exposure to asbestos", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\(V15.84) Personal history of contact with and (suspected) exposure to asbestos\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\" + }, + { + "displayName": "(V15.85) Personal history of contact with and (suspected) exposure to potentially hazardous body fluids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\(V15.85) Personal history of contact with and (suspected) exposure to potentially hazardous body fluids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\" + }, + { + "displayName": "(V15.86) Personal history of contact with and (suspected) exposure to lead", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\(V15.86) Personal history of contact with and (suspected) exposure to lead\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\" + }, + { + "displayName": "(V15.87) History of extracorporeal membrane oxygenation (ECMO)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\(V15.87) History of extracorporeal membrane oxygenation (ECMO)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\" + }, + { + "displayName": "(V15.88) History of fall", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\(V15.88) History of fall\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\" + }, + { + "displayName": "(V15.89) Other specified personal history presenting hazards to health", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\(V15.89) Other specified personal history presenting hazards to health\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Other specified personal history presenting hazards to health (V15.8)\\" + }, + { + "displayName": "Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\" + }, + { + "displayName": "(V15.01) Allergy to peanuts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\(V15.01) Allergy to peanuts\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\" + }, + { + "displayName": "(V15.02) Allergy to milk products", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\(V15.02) Allergy to milk products\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\" + }, + { + "displayName": "(V15.03) Allergy to eggs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\(V15.03) Allergy to eggs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\" + }, + { + "displayName": "(V15.04) Allergy to seafood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\(V15.04) Allergy to seafood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\" + }, + { + "displayName": "(V15.05) Allergy to other foods", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\(V15.05) Allergy to other foods\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\" + }, + { + "displayName": "(V15.06) Allergy to insects and arachnids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\(V15.06) Allergy to insects and arachnids\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\" + }, + { + "displayName": "(V15.07) Allergy to latex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\(V15.07) Allergy to latex\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\" + }, + { + "displayName": "(V15.08) Allergy to radiographic dye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\(V15.08) Allergy to radiographic dye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\" + }, + { + "displayName": "(V15.09) Other allergy, other than to medicinal agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\(V15.09) Other allergy, other than to medicinal agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of allergy, other than to medicinal agents, presenting hazards to health (V15.0)\\" + }, + { + "displayName": "Personal history of injury, presenting hazards to health (V15.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of injury, presenting hazards to health (V15.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\" + }, + { + "displayName": "(V15.51) Personal history of traumatic fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of injury, presenting hazards to health (V15.5)\\(V15.51) Personal history of traumatic fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of injury, presenting hazards to health (V15.5)\\" + }, + { + "displayName": "(V15.52) Personal history of traumatic brain injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of injury, presenting hazards to health (V15.5)\\(V15.52) Personal history of traumatic brain injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of injury, presenting hazards to health (V15.5)\\" + }, + { + "displayName": "(V15.59) Personal history of other injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of injury, presenting hazards to health (V15.5)\\(V15.59) Personal history of other injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of injury, presenting hazards to health (V15.5)\\" + }, + { + "displayName": "Personal history of psychological trauma, presenting hazards to health (V15.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of psychological trauma, presenting hazards to health (V15.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\" + }, + { + "displayName": "(V15.41) History of physical abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of psychological trauma, presenting hazards to health (V15.4)\\(V15.41) History of physical abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of psychological trauma, presenting hazards to health (V15.4)\\" + }, + { + "displayName": "(V15.42) History of emotional abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of psychological trauma, presenting hazards to health (V15.4)\\(V15.42) History of emotional abuse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of psychological trauma, presenting hazards to health (V15.4)\\" + }, + { + "displayName": "(V15.49) Other psychological trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of psychological trauma, presenting hazards to health (V15.4)\\(V15.49) Other psychological trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of psychological trauma, presenting hazards to health (V15.4)\\" + }, + { + "displayName": "Personal history of surgery to other organs, presenting hazards to health (V15.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of surgery to other organs, presenting hazards to health (V15.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\" + }, + { + "displayName": "(V15.29) Personal history of surgery to other organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of surgery to other organs, presenting hazards to health (V15.2)\\(V15.29) Personal history of surgery to other organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Other personal history presenting hazards to health (V15)\\Personal history of surgery to other organs, presenting hazards to health (V15.2)\\" + }, + { + "displayName": "Personal history of allergy to medicinal agents (V14)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\" + }, + { + "displayName": "(V14.0) Personal history of allergy to penicillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\(V14.0) Personal history of allergy to penicillin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\" + }, + { + "displayName": "(V14.1) Personal history of allergy to other antibiotic agent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\(V14.1) Personal history of allergy to other antibiotic agent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\" + }, + { + "displayName": "(V14.2) Personal history of allergy to sulfonamides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\(V14.2) Personal history of allergy to sulfonamides\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of allergy to medicinal agents (V14)\\\\(V14.2) Personal history of allergy to sulfonamides\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\" + }, + { + "displayName": "(V14.3) Personal history of allergy to other anti-infective agent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\(V14.3) Personal history of allergy to other anti-infective agent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of allergy to medicinal agents (V14)\\\\(V14.3) Personal history of allergy to other anti-infective agent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\" + }, + { + "displayName": "(V14.4) Personal history of allergy to anesthetic agent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\(V14.4) Personal history of allergy to anesthetic agent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of allergy to medicinal agents (V14)\\\\(V14.4) Personal history of allergy to anesthetic agent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\" + }, + { + "displayName": "(V14.5) Personal history of allergy to narcotic agent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\(V14.5) Personal history of allergy to narcotic agent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of allergy to medicinal agents (V14)\\\\(V14.5) Personal history of allergy to narcotic agent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\" + }, + { + "displayName": "(V14.6) Personal history of allergy to analgesic agent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\(V14.6) Personal history of allergy to analgesic agent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of allergy to medicinal agents (V14)\\\\(V14.6) Personal history of allergy to analgesic agent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\" + }, + { + "displayName": "(V14.7) Personal history of allergy to serum or vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\(V14.7) Personal history of allergy to serum or vaccine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\" + }, + { + "displayName": "(V14.8) Personal history of allergy to other specified medicinal agents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\(V14.8) Personal history of allergy to other specified medicinal agents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of allergy to medicinal agents (V14)\\\\(V14.8) Personal history of allergy to other specified medicinal agents\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\" + }, + { + "displayName": "(V14.9) Personal history of allergy to unspecified medicinal agent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\(V14.9) Personal history of allergy to unspecified medicinal agent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of allergy to medicinal agents (V14)\\\\(V14.9) Personal history of allergy to unspecified medicinal agent\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of allergy to medicinal agents (V14)\\" + }, + { + "displayName": "Personal history of certain other diseases (V12)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\" + }, + { + "displayName": "(V12.1) Personal history of nutritional deficiency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\(V12.1) Personal history of nutritional deficiency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\" + }, + { + "displayName": "(V12.3) Personal history of diseases of blood and blood-forming organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\(V12.3) Personal history of diseases of blood and blood-forming organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\(V12.3) Personal history of diseases of blood and blood-forming organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\" + }, + { + "displayName": "Personal history of diseases of circulatory system (V12.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\" + }, + { + "displayName": "(V12.50) Personal history of unspecified circulatory disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\(V12.50) Personal history of unspecified circulatory disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\" + }, + { + "displayName": "(V12.51) Personal history of venous thrombosis and embolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\(V12.51) Personal history of venous thrombosis and embolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\" + }, + { + "displayName": "(V12.52) Personal history of thrombophlebitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\(V12.52) Personal history of thrombophlebitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\" + }, + { + "displayName": "(V12.53) Personal history of sudden cardiac arrest", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\(V12.53) Personal history of sudden cardiac arrest\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\" + }, + { + "displayName": "(V12.54) Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\(V12.54) Personal history of transient ischemic attack (TIA), and cerebral infarction without residual deficits\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\" + }, + { + "displayName": "(V12.55) Personal history of pulmonary embolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\(V12.55) Personal history of pulmonary embolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\" + }, + { + "displayName": "(V12.59) Personal history of other diseases of circulatory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\(V12.59) Personal history of other diseases of circulatory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of circulatory system (V12.5)\\" + }, + { + "displayName": "Personal history of diseases of digestive system (V12.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of digestive system (V12.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of diseases of digestive system (V12.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\" + }, + { + "displayName": "(V12.70) Personal history of unspecified digestive disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of digestive system (V12.7)\\(V12.70) Personal history of unspecified digestive disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of diseases of digestive system (V12.7)\\\\(V12.70) Personal history of unspecified digestive disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of digestive system (V12.7)\\" + }, + { + "displayName": "(V12.71) Personal history of peptic ulcer disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of digestive system (V12.7)\\(V12.71) Personal history of peptic ulcer disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of diseases of digestive system (V12.7)\\\\(V12.71) Personal history of peptic ulcer disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of digestive system (V12.7)\\" + }, + { + "displayName": "(V12.72) Personal history of colonic polyps", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of digestive system (V12.7)\\(V12.72) Personal history of colonic polyps\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of diseases of digestive system (V12.7)\\\\(V12.72) Personal history of colonic polyps\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of digestive system (V12.7)\\" + }, + { + "displayName": "(V12.79) Personal history of other diseases of digestive system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of digestive system (V12.7)\\(V12.79) Personal history of other diseases of digestive system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of diseases of digestive system (V12.7)\\\\(V12.79) Personal history of other diseases of digestive system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of digestive system (V12.7)\\" + }, + { + "displayName": "Personal history of diseases of respiratory system (V12.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of respiratory system (V12.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\" + }, + { + "displayName": "(V12.60) Personal history of unspecified disease of respiratory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of respiratory system (V12.6)\\(V12.60) Personal history of unspecified disease of respiratory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of respiratory system (V12.6)\\" + }, + { + "displayName": "(V12.61) Personal history of pneumonia (recurrent)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of respiratory system (V12.6)\\(V12.61) Personal history of pneumonia (recurrent)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of respiratory system (V12.6)\\" + }, + { + "displayName": "(V12.69) Personal history of other diseases of respiratory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of respiratory system (V12.6)\\(V12.69) Personal history of other diseases of respiratory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of diseases of respiratory system (V12.6)\\" + }, + { + "displayName": "Personal history of disorders of nervous system and sense organs (V12.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of disorders of nervous system and sense organs (V12.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of disorders of nervous system and sense organs (V12.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\" + }, + { + "displayName": "(V12.40) Personal history of unspecified disorder of nervous system and sense organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of disorders of nervous system and sense organs (V12.4)\\(V12.40) Personal history of unspecified disorder of nervous system and sense organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of disorders of nervous system and sense organs (V12.4)\\\\(V12.40) Personal history of unspecified disorder of nervous system and sense organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of disorders of nervous system and sense organs (V12.4)\\" + }, + { + "displayName": "(V12.41) Personal history of benign neoplasm of the brain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of disorders of nervous system and sense organs (V12.4)\\(V12.41) Personal history of benign neoplasm of the brain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of disorders of nervous system and sense organs (V12.4)\\\\(V12.41) Personal history of benign neoplasm of the brain\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of disorders of nervous system and sense organs (V12.4)\\" + }, + { + "displayName": "(V12.42) Personal history of infections of the central nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of disorders of nervous system and sense organs (V12.4)\\(V12.42) Personal history of infections of the central nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of disorders of nervous system and sense organs (V12.4)\\\\(V12.42) Personal history of infections of the central nervous system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of disorders of nervous system and sense organs (V12.4)\\" + }, + { + "displayName": "(V12.49) Personal history of other disorders of nervous system and sense organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of disorders of nervous system and sense organs (V12.4)\\(V12.49) Personal history of other disorders of nervous system and sense organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of disorders of nervous system and sense organs (V12.4)\\\\(V12.49) Personal history of other disorders of nervous system and sense organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of disorders of nervous system and sense organs (V12.4)\\" + }, + { + "displayName": "Personal history of endocrine, metabolic, and immunity disorders (V12.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\" + }, + { + "displayName": "(V12.21) Personal history of gestational diabetes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\\(V12.21) Personal history of gestational diabetes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\\" + }, + { + "displayName": "(V12.29) Personal history of other endocrine, metabolic, and immunity disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\\(V12.29) Personal history of other endocrine, metabolic, and immunity disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of endocrine, metabolic, and immunity disorders (V12.2)\\" + }, + { + "displayName": "Personal history of infectious and parasitic diseases (V12.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of infectious and parasitic diseases (V12.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\" + }, + { + "displayName": "(V12.00) Personal history of unspecified infectious and parasitic disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\(V12.00) Personal history of unspecified infectious and parasitic disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of infectious and parasitic diseases (V12.0)\\\\(V12.00) Personal history of unspecified infectious and parasitic disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\" + }, + { + "displayName": "(V12.01) Personal history of tuberculosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\(V12.01) Personal history of tuberculosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of certain other diseases (V12)\\\\Personal history of infectious and parasitic diseases (V12.0)\\\\(V12.01) Personal history of tuberculosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\" + }, + { + "displayName": "(V12.02) Personal history of poliomyelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\(V12.02) Personal history of poliomyelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\" + }, + { + "displayName": "(V12.03) Personal history of malaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\(V12.03) Personal history of malaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\" + }, + { + "displayName": "(V12.04) Personal history of Methicillin resistant Staphylococcus aureus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\(V12.04) Personal history of Methicillin resistant Staphylococcus aureus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\" + }, + { + "displayName": "(V12.09) Personal history of other infectious and parasitic diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\(V12.09) Personal history of other infectious and parasitic diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of certain other diseases (V12)\\Personal history of infectious and parasitic diseases (V12.0)\\" + }, + { + "displayName": "Personal history of malignant neoplasm (V10)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\" + }, + { + "displayName": "(V10.3) Personal history of malignant neoplasm of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\(V10.3) Personal history of malignant neoplasm of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\(V10.3) Personal history of malignant neoplasm of breast\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\" + }, + { + "displayName": "Other and unspecified personal history of malignant neoplasm (V10.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Other and unspecified personal history of malignant neoplasm (V10.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\" + }, + { + "displayName": "(V10.90) Personal history of unspecified malignant neoplasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Other and unspecified personal history of malignant neoplasm (V10.9)\\(V10.90) Personal history of unspecified malignant neoplasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Other and unspecified personal history of malignant neoplasm (V10.9)\\" + }, + { + "displayName": "(V10.91) Personal history of malignant neuroendocrine tumor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Other and unspecified personal history of malignant neoplasm (V10.9)\\(V10.91) Personal history of malignant neuroendocrine tumor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Other and unspecified personal history of malignant neoplasm (V10.9)\\" + }, + { + "displayName": "Personal history of leukemia (V10.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of leukemia (V10.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\" + }, + { + "displayName": "(V10.60) Personal history of leukemia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of leukemia (V10.6)\\(V10.60) Personal history of leukemia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of leukemia (V10.6)\\" + }, + { + "displayName": "(V10.61) Personal history of lymphoid leukemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of leukemia (V10.6)\\(V10.61) Personal history of lymphoid leukemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of leukemia (V10.6)\\" + }, + { + "displayName": "(V10.62) Personal history of myeloid leukemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of leukemia (V10.6)\\(V10.62) Personal history of myeloid leukemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of leukemia (V10.6)\\" + }, + { + "displayName": "(V10.63) Personal history of monocytic leukemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of leukemia (V10.6)\\(V10.63) Personal history of monocytic leukemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of leukemia (V10.6)\\\\(V10.63) Personal history of monocytic leukemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of leukemia (V10.6)\\" + }, + { + "displayName": "(V10.69) Personal history of other leukemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of leukemia (V10.6)\\(V10.69) Personal history of other leukemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of leukemia (V10.6)\\\\(V10.69) Personal history of other leukemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of leukemia (V10.6)\\" + }, + { + "displayName": "Personal history of malignant neoplasm of gastrointestinal tract (V10.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\" + }, + { + "displayName": "(V10.00) Personal history of malignant neoplasm of gastrointestinal tract, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\(V10.00) Personal history of malignant neoplasm of gastrointestinal tract, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\" + }, + { + "displayName": "(V10.01) Personal history of malignant neoplasm of tongue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\(V10.01) Personal history of malignant neoplasm of tongue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\" + }, + { + "displayName": "(V10.02) Personal history of malignant neoplasm of other and unspecified oral cavity and pharynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\(V10.02) Personal history of malignant neoplasm of other and unspecified oral cavity and pharynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\" + }, + { + "displayName": "(V10.03) Personal history of malignant neoplasm of esophagus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\(V10.03) Personal history of malignant neoplasm of esophagus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\" + }, + { + "displayName": "(V10.04) Personal history of malignant neoplasm of stomach", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\(V10.04) Personal history of malignant neoplasm of stomach\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\" + }, + { + "displayName": "(V10.05) Personal history of malignant neoplasm of large intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\(V10.05) Personal history of malignant neoplasm of large intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\\\(V10.05) Personal history of malignant neoplasm of large intestine\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\" + }, + { + "displayName": "(V10.06) Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\(V10.06) Personal history of malignant neoplasm of rectum, rectosigmoid junction, and anus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\" + }, + { + "displayName": "(V10.07) Personal history of malignant neoplasm of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\(V10.07) Personal history of malignant neoplasm of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\\\(V10.07) Personal history of malignant neoplasm of liver\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\" + }, + { + "displayName": "(V10.09) Personal history of malignant neoplasm of other gastrointestinal tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\(V10.09) Personal history of malignant neoplasm of other gastrointestinal tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of gastrointestinal tract (V10.0)\\" + }, + { + "displayName": "Personal history of malignant neoplasm of genital organs (V10.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\" + }, + { + "displayName": "(V10.40) Personal history of malignant neoplasm of female genital organ, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\(V10.40) Personal history of malignant neoplasm of female genital organ, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of genital organs (V10.4)\\\\(V10.40) Personal history of malignant neoplasm of female genital organ, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\" + }, + { + "displayName": "(V10.41) Personal history of malignant neoplasm of cervix uteri", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\(V10.41) Personal history of malignant neoplasm of cervix uteri\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of genital organs (V10.4)\\\\(V10.41) Personal history of malignant neoplasm of cervix uteri\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\" + }, + { + "displayName": "(V10.42) Personal history of malignant neoplasm of other parts of uterus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\(V10.42) Personal history of malignant neoplasm of other parts of uterus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of genital organs (V10.4)\\\\(V10.42) Personal history of malignant neoplasm of other parts of uterus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\" + }, + { + "displayName": "(V10.43) Personal history of malignant neoplasm of ovary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\(V10.43) Personal history of malignant neoplasm of ovary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of genital organs (V10.4)\\\\(V10.43) Personal history of malignant neoplasm of ovary\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\" + }, + { + "displayName": "(V10.44) Personal history of malignant neoplasm of other female genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\(V10.44) Personal history of malignant neoplasm of other female genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of genital organs (V10.4)\\\\(V10.44) Personal history of malignant neoplasm of other female genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\" + }, + { + "displayName": "(V10.45) Personal history of malignant neoplasm of male genital organ, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\(V10.45) Personal history of malignant neoplasm of male genital organ, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of genital organs (V10.4)\\\\(V10.45) Personal history of malignant neoplasm of male genital organ, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\" + }, + { + "displayName": "(V10.46) Personal history of malignant neoplasm of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\(V10.46) Personal history of malignant neoplasm of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of genital organs (V10.4)\\\\(V10.46) Personal history of malignant neoplasm of prostate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\" + }, + { + "displayName": "(V10.47) Personal history of malignant neoplasm of testis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\(V10.47) Personal history of malignant neoplasm of testis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of genital organs (V10.4)\\\\(V10.47) Personal history of malignant neoplasm of testis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\" + }, + { + "displayName": "(V10.48) Personal history of malignant neoplasm of epididymis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\(V10.48) Personal history of malignant neoplasm of epididymis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of genital organs (V10.4)\\\\(V10.48) Personal history of malignant neoplasm of epididymis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\" + }, + { + "displayName": "(V10.49) Personal history of malignant neoplasm of other male genital organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\(V10.49) Personal history of malignant neoplasm of other male genital organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of genital organs (V10.4)\\\\(V10.49) Personal history of malignant neoplasm of other male genital organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of genital organs (V10.4)\\" + }, + { + "displayName": "Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\" + }, + { + "displayName": "(V10.20) Personal history of malignant neoplasm of respiratory organ, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\(V10.20) Personal history of malignant neoplasm of respiratory organ, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\\\(V10.20) Personal history of malignant neoplasm of respiratory organ, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\" + }, + { + "displayName": "(V10.21) Personal history of malignant neoplasm of larynx", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\(V10.21) Personal history of malignant neoplasm of larynx\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\" + }, + { + "displayName": "(V10.22) Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\(V10.22) Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\\\(V10.22) Personal history of malignant neoplasm of nasal cavities, middle ear, and accessory sinuses\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\" + }, + { + "displayName": "(V10.29) Personal history of malignant neoplasm of other respiratory and intrathoracic organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\(V10.29) Personal history of malignant neoplasm of other respiratory and intrathoracic organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\\\(V10.29) Personal history of malignant neoplasm of other respiratory and intrathoracic organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other respiratory and intrathoracic organs (V10.2)\\" + }, + { + "displayName": "Personal history of malignant neoplasm of other sites (V10.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\" + }, + { + "displayName": "(V10.81) Personal history of malignant neoplasm of bone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\(V10.81) Personal history of malignant neoplasm of bone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\" + }, + { + "displayName": "(V10.82) Personal history of malignant melanoma of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\(V10.82) Personal history of malignant melanoma of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\" + }, + { + "displayName": "(V10.83) Personal history of other malignant neoplasm of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\(V10.83) Personal history of other malignant neoplasm of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\" + }, + { + "displayName": "(V10.84) Personal history of malignant neoplasm of eye", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\(V10.84) Personal history of malignant neoplasm of eye\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\" + }, + { + "displayName": "(V10.85) Personal history of malignant neoplasm of brain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\(V10.85) Personal history of malignant neoplasm of brain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\" + }, + { + "displayName": "(V10.86) Personal history of malignant neoplasm of other parts of nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\(V10.86) Personal history of malignant neoplasm of other parts of nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\" + }, + { + "displayName": "(V10.87) Personal history of malignant neoplasm of thyroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\(V10.87) Personal history of malignant neoplasm of thyroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\" + }, + { + "displayName": "(V10.88) Personal history of malignant neoplasm of other endocrine glands and related structures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\(V10.88) Personal history of malignant neoplasm of other endocrine glands and related structures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\" + }, + { + "displayName": "(V10.89) Personal history of malignant neoplasm of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\(V10.89) Personal history of malignant neoplasm of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of other sites (V10.8)\\" + }, + { + "displayName": "Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\" + }, + { + "displayName": "(V10.11) Personal history of malignant neoplasm of bronchus and lung", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\\(V10.11) Personal history of malignant neoplasm of bronchus and lung\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\\" + }, + { + "displayName": "(V10.12) Personal history of malignant neoplasm of trachea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\\(V10.12) Personal history of malignant neoplasm of trachea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\\\\(V10.12) Personal history of malignant neoplasm of trachea\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of trachea, bronchus, and lung (V10.1)\\" + }, + { + "displayName": "Personal history of malignant neoplasm of urinary organs (V10.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of urinary organs (V10.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of urinary organs (V10.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\" + }, + { + "displayName": "(V10.50) Personal history of malignant neoplasm of urinary organ, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of urinary organs (V10.5)\\(V10.50) Personal history of malignant neoplasm of urinary organ, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of urinary organs (V10.5)\\\\(V10.50) Personal history of malignant neoplasm of urinary organ, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of urinary organs (V10.5)\\" + }, + { + "displayName": "(V10.51) Personal history of malignant neoplasm of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of urinary organs (V10.5)\\(V10.51) Personal history of malignant neoplasm of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of malignant neoplasm of urinary organs (V10.5)\\\\(V10.51) Personal history of malignant neoplasm of bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of urinary organs (V10.5)\\" + }, + { + "displayName": "(V10.52) Personal history of malignant neoplasm of kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of urinary organs (V10.5)\\(V10.52) Personal history of malignant neoplasm of kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of urinary organs (V10.5)\\" + }, + { + "displayName": "(V10.53) Personal history of malignant neoplasm of renal pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of urinary organs (V10.5)\\(V10.53) Personal history of malignant neoplasm of renal pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of urinary organs (V10.5)\\" + }, + { + "displayName": "(V10.59) Personal history of malignant neoplasm of other urinary organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of urinary organs (V10.5)\\(V10.59) Personal history of malignant neoplasm of other urinary organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of malignant neoplasm of urinary organs (V10.5)\\" + }, + { + "displayName": "Personal history of other lymphatic and hematopoietic neoplasms (V10.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\" + }, + { + "displayName": "(V10.71) Personal history of lymphosarcoma and reticulosarcoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\\(V10.71) Personal history of lymphosarcoma and reticulosarcoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\\\\(V10.71) Personal history of lymphosarcoma and reticulosarcoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\\" + }, + { + "displayName": "(V10.72) Personal history of hodgkin's disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\\(V10.72) Personal history of hodgkin's disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of malignant neoplasm (V10)\\\\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\\\\(V10.72) Personal history of hodgkin's disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\\" + }, + { + "displayName": "(V10.79) Personal history of other lymphatic and hematopoietic neoplasms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\\(V10.79) Personal history of other lymphatic and hematopoietic neoplasms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of malignant neoplasm (V10)\\Personal history of other lymphatic and hematopoietic neoplasms (V10.7)\\" + }, + { + "displayName": "Personal history of mental disorder (V11)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\" + }, + { + "displayName": "(V11.0) Personal history of schizophrenia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\(V11.0) Personal history of schizophrenia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\" + }, + { + "displayName": "(V11.1) Personal history of affective disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\(V11.1) Personal history of affective disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\" + }, + { + "displayName": "(V11.2) Personal history of neurosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\(V11.2) Personal history of neurosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of mental disorder (V11)\\\\(V11.2) Personal history of neurosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\" + }, + { + "displayName": "(V11.3) Personal history of alcoholism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\(V11.3) Personal history of alcoholism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\" + }, + { + "displayName": "(V11.8) Personal history of other mental disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\(V11.8) Personal history of other mental disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of mental disorder (V11)\\\\(V11.8) Personal history of other mental disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\" + }, + { + "displayName": "(V11.9) Personal history of unspecified mental disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\(V11.9) Personal history of unspecified mental disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of mental disorder (V11)\\" + }, + { + "displayName": "Personal history of other diseases (V13)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\" + }, + { + "displayName": "(V13.1) Personal history of trophoblastic disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\(V13.1) Personal history of trophoblastic disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\(V13.1) Personal history of trophoblastic disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\" + }, + { + "displayName": "(V13.3) Personal history of diseases of skin and subcutaneous tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\(V13.3) Personal history of diseases of skin and subcutaneous tissue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\(V13.3) Personal history of diseases of skin and subcutaneous tissue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\" + }, + { + "displayName": "(V13.4) Personal history of arthritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\(V13.4) Personal history of arthritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\(V13.4) Personal history of arthritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\" + }, + { + "displayName": "(V13.7) Personal history of perinatal problems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\(V13.7) Personal history of perinatal problems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\" + }, + { + "displayName": "(V13.9) Personal history of unspecified disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\(V13.9) Personal history of unspecified disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\(V13.9) Personal history of unspecified disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\" + }, + { + "displayName": "Personal history of congenital (corrected) malformations (V13.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of congenital (corrected) malformations (V13.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\" + }, + { + "displayName": "(V13.61) Personal history of (corrected) hypospadias", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\(V13.61) Personal history of (corrected) hypospadias\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of congenital (corrected) malformations (V13.6)\\\\(V13.61) Personal history of (corrected) hypospadias\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\" + }, + { + "displayName": "(V13.62) Personal history of other (corrected) congenital malformations of genitourinary system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\(V13.62) Personal history of other (corrected) congenital malformations of genitourinary system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of congenital (corrected) malformations (V13.6)\\\\(V13.62) Personal history of other (corrected) congenital malformations of genitourinary system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\" + }, + { + "displayName": "(V13.63) Personal history of (corrected) congenital malformations of nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\(V13.63) Personal history of (corrected) congenital malformations of nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\" + }, + { + "displayName": "(V13.64) Personal history of (corrected) congenital malformations of eye, ear, face and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\(V13.64) Personal history of (corrected) congenital malformations of eye, ear, face and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\" + }, + { + "displayName": "(V13.65) Personal history of (corrected) congenital malformations of heart and circulatory system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\(V13.65) Personal history of (corrected) congenital malformations of heart and circulatory system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\" + }, + { + "displayName": "(V13.67) Personal history of (corrected) congenital malformations of digestive system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\(V13.67) Personal history of (corrected) congenital malformations of digestive system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\" + }, + { + "displayName": "(V13.69) Personal history of other (corrected) congenital malformations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\(V13.69) Personal history of other (corrected) congenital malformations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of congenital (corrected) malformations (V13.6)\\" + }, + { + "displayName": "Personal history of disorders of urinary system (V13.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of disorders of urinary system (V13.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of disorders of urinary system (V13.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\" + }, + { + "displayName": "(V13.00) Personal history of unspecified urinary disorder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of disorders of urinary system (V13.0)\\(V13.00) Personal history of unspecified urinary disorder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of disorders of urinary system (V13.0)\\\\(V13.00) Personal history of unspecified urinary disorder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of disorders of urinary system (V13.0)\\" + }, + { + "displayName": "(V13.01) Personal history of urinary calculi", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of disorders of urinary system (V13.0)\\(V13.01) Personal history of urinary calculi\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of disorders of urinary system (V13.0)\\" + }, + { + "displayName": "(V13.02) Personal history, urinary (tract) infection", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of disorders of urinary system (V13.0)\\(V13.02) Personal history, urinary (tract) infection\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of disorders of urinary system (V13.0)\\\\(V13.02) Personal history, urinary (tract) infection\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of disorders of urinary system (V13.0)\\" + }, + { + "displayName": "(V13.03) Personal history, nephrotic syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of disorders of urinary system (V13.0)\\(V13.03) Personal history, nephrotic syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of disorders of urinary system (V13.0)\\\\(V13.03) Personal history, nephrotic syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of disorders of urinary system (V13.0)\\" + }, + { + "displayName": "(V13.09) Personal history of other specified urinary system disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of disorders of urinary system (V13.0)\\(V13.09) Personal history of other specified urinary system disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of disorders of urinary system (V13.0)\\\\(V13.09) Personal history of other specified urinary system disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of disorders of urinary system (V13.0)\\" + }, + { + "displayName": "Personal history of other genital system and obstetric disorders (V13.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other genital system and obstetric disorders (V13.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other genital system and obstetric disorders (V13.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\" + }, + { + "displayName": "(V13.21) Personal history of pre-term labor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other genital system and obstetric disorders (V13.2)\\(V13.21) Personal history of pre-term labor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other genital system and obstetric disorders (V13.2)\\\\(V13.21) Personal history of pre-term labor\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other genital system and obstetric disorders (V13.2)\\" + }, + { + "displayName": "(V13.22) Personal history of cervical dysplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other genital system and obstetric disorders (V13.2)\\(V13.22) Personal history of cervical dysplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other genital system and obstetric disorders (V13.2)\\\\(V13.22) Personal history of cervical dysplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other genital system and obstetric disorders (V13.2)\\" + }, + { + "displayName": "(V13.23) Personal history of vaginal dysplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other genital system and obstetric disorders (V13.2)\\(V13.23) Personal history of vaginal dysplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other genital system and obstetric disorders (V13.2)\\\\(V13.23) Personal history of vaginal dysplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other genital system and obstetric disorders (V13.2)\\" + }, + { + "displayName": "(V13.24) Personal history of vulvar dysplasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other genital system and obstetric disorders (V13.2)\\(V13.24) Personal history of vulvar dysplasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other genital system and obstetric disorders (V13.2)\\\\(V13.24) Personal history of vulvar dysplasia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other genital system and obstetric disorders (V13.2)\\" + }, + { + "displayName": "(V13.29) Personal history of other genital system and obstetric disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other genital system and obstetric disorders (V13.2)\\(V13.29) Personal history of other genital system and obstetric disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other genital system and obstetric disorders (V13.2)\\\\(V13.29) Personal history of other genital system and obstetric disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other genital system and obstetric disorders (V13.2)\\" + }, + { + "displayName": "Personal history of other musculoskeletal disorders (V13.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other musculoskeletal disorders (V13.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other musculoskeletal disorders (V13.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\" + }, + { + "displayName": "(V13.51) Personal history of pathologic fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other musculoskeletal disorders (V13.5)\\(V13.51) Personal history of pathologic fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other musculoskeletal disorders (V13.5)\\\\(V13.51) Personal history of pathologic fracture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other musculoskeletal disorders (V13.5)\\" + }, + { + "displayName": "(V13.52) Personal history of stress fracture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other musculoskeletal disorders (V13.5)\\(V13.52) Personal history of stress fracture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other musculoskeletal disorders (V13.5)\\\\(V13.52) Personal history of stress fracture\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other musculoskeletal disorders (V13.5)\\" + }, + { + "displayName": "(V13.59) Personal history of other musculoskeletal disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other musculoskeletal disorders (V13.5)\\(V13.59) Personal history of other musculoskeletal disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other musculoskeletal disorders (V13.5)\\\\(V13.59) Personal history of other musculoskeletal disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other musculoskeletal disorders (V13.5)\\" + }, + { + "displayName": "Personal history of other specified diseases (V13.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other specified diseases (V13.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\" + }, + { + "displayName": "(V13.81) Personal history of anaphylaxis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other specified diseases (V13.8)\\(V13.81) Personal history of anaphylaxis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other specified diseases (V13.8)\\\\(V13.81) Personal history of anaphylaxis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other specified diseases (V13.8)\\" + }, + { + "displayName": "(V13.89) Personal history of other specified diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other specified diseases (V13.8)\\(V13.89) Personal history of other specified diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\\\Personal history of other diseases (V13)\\\\Personal history of other specified diseases (V13.8)\\\\(V13.89) Personal history of other specified diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons with potential health hazards related to personal and family history (v10-v19.99)\\Personal history of other diseases (V13)\\Personal history of other specified diseases (V13.8)\\" + }, + { + "displayName": "Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "General medical examination (V70)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V70.0) Routine general medical examination at a health care facility", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\(V70.0) Routine general medical examination at a health care facility\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\General medical examination (V70)\\\\(V70.0) Routine general medical examination at a health care facility\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\" + }, + { + "displayName": "(V70.1) General psychiatric examination, requested by the authority", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\(V70.1) General psychiatric examination, requested by the authority\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\General medical examination (V70)\\\\(V70.1) General psychiatric examination, requested by the authority\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\" + }, + { + "displayName": "(V70.2) General psychiatric examination, other and unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\(V70.2) General psychiatric examination, other and unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\General medical examination (V70)\\\\(V70.2) General psychiatric examination, other and unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\" + }, + { + "displayName": "(V70.3) Other general medical examination for administrative purposes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\(V70.3) Other general medical examination for administrative purposes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\" + }, + { + "displayName": "(V70.4) Examination for medicolegal reasons", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\(V70.4) Examination for medicolegal reasons\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\" + }, + { + "displayName": "(V70.5) Health examination of defined subpopulations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\(V70.5) Health examination of defined subpopulations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\" + }, + { + "displayName": "(V70.6) Health examination in population surveys", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\(V70.6) Health examination in population surveys\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\" + }, + { + "displayName": "(V70.7) Examination of participant in clinical trial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\(V70.7) Examination of participant in clinical trial\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\" + }, + { + "displayName": "(V70.8) Other specified general medical examinations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\(V70.8) Other specified general medical examinations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\" + }, + { + "displayName": "(V70.9) Unspecified general medical examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\(V70.9) Unspecified general medical examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\General medical examination (V70)\\" + }, + { + "displayName": "Observation and evaluation for suspected conditions not found (V71)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Observation and evaluation for suspected conditions not found (V71)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V71.1) Observation for suspected malignant neoplasm", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\(V71.1) Observation for suspected malignant neoplasm\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\" + }, + { + "displayName": "(V71.2) Observation for suspected tuberculosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\(V71.2) Observation for suspected tuberculosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\" + }, + { + "displayName": "(V71.3) Observation following accident at work", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\(V71.3) Observation following accident at work\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\" + }, + { + "displayName": "(V71.4) Observation following other accident", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\(V71.4) Observation following other accident\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\" + }, + { + "displayName": "(V71.5) Observation following alleged rape or seduction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\(V71.5) Observation following alleged rape or seduction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\" + }, + { + "displayName": "(V71.6) Observation following other inflicted injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\(V71.6) Observation following other inflicted injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\" + }, + { + "displayName": "(V71.7) Observation for suspected cardiovascular disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\(V71.7) Observation for suspected cardiovascular disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\" + }, + { + "displayName": "(V71.9) Observation for unspecified suspected condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\(V71.9) Observation for unspecified suspected condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\" + }, + { + "displayName": "Observation and evaluation for other specified suspected conditions (V71.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation and evaluation for other specified suspected conditions (V71.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\" + }, + { + "displayName": "(V71.81) Observation and evaluation for suspected abuse and neglect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation and evaluation for other specified suspected conditions (V71.8)\\(V71.81) Observation and evaluation for suspected abuse and neglect\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation and evaluation for other specified suspected conditions (V71.8)\\" + }, + { + "displayName": "(V71.82) Observation and evaluation for suspected exposure to anthrax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation and evaluation for other specified suspected conditions (V71.8)\\(V71.82) Observation and evaluation for suspected exposure to anthrax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation and evaluation for other specified suspected conditions (V71.8)\\" + }, + { + "displayName": "(V71.83) Observation and evaluation for suspected exposure to other biological agent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation and evaluation for other specified suspected conditions (V71.8)\\(V71.83) Observation and evaluation for suspected exposure to other biological agent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation and evaluation for other specified suspected conditions (V71.8)\\" + }, + { + "displayName": "(V71.89) Observation and evaluation for other specified suspected conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation and evaluation for other specified suspected conditions (V71.8)\\(V71.89) Observation and evaluation for other specified suspected conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation and evaluation for other specified suspected conditions (V71.8)\\" + }, + { + "displayName": "Observation for suspected mental condition (V71.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation for suspected mental condition (V71.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\" + }, + { + "displayName": "(V71.01) Observation for adult antisocial behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation for suspected mental condition (V71.0)\\(V71.01) Observation for adult antisocial behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Observation and evaluation for suspected conditions not found (V71)\\\\Observation for suspected mental condition (V71.0)\\\\(V71.01) Observation for adult antisocial behavior\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation for suspected mental condition (V71.0)\\" + }, + { + "displayName": "(V71.02) Observation for childhood or adolescent antisocial behavior", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation for suspected mental condition (V71.0)\\(V71.02) Observation for childhood or adolescent antisocial behavior\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation for suspected mental condition (V71.0)\\" + }, + { + "displayName": "(V71.09) Observation for other suspected mental condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation for suspected mental condition (V71.0)\\(V71.09) Observation for other suspected mental condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Observation and evaluation for suspected conditions not found (V71)\\\\Observation for suspected mental condition (V71.0)\\\\(V71.09) Observation for other suspected mental condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Observation and evaluation for suspected conditions not found (V71)\\Observation for suspected mental condition (V71.0)\\" + }, + { + "displayName": "Special investigations and examinations (V72)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V72.0) Examination of eyes and vision", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\(V72.0) Examination of eyes and vision\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\" + }, + { + "displayName": "(V72.2) Dental examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\(V72.2) Dental examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\(V72.2) Dental examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\" + }, + { + "displayName": "(V72.5) Radiological examination, not elsewhere classified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\(V72.5) Radiological examination, not elsewhere classified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\" + }, + { + "displayName": "(V72.7) Diagnostic skin and sensitization tests", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\(V72.7) Diagnostic skin and sensitization tests\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\(V72.7) Diagnostic skin and sensitization tests\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\" + }, + { + "displayName": "(V72.9) Unspecified examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\(V72.9) Unspecified examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\" + }, + { + "displayName": "Examination of ears and hearing (V72.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Examination of ears and hearing (V72.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\" + }, + { + "displayName": "(V72.11) Encounter for hearing examination following failed hearing screening", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Examination of ears and hearing (V72.1)\\(V72.11) Encounter for hearing examination following failed hearing screening\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Examination of ears and hearing (V72.1)\\" + }, + { + "displayName": "(V72.12) Encounter for hearing conservation and treatment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Examination of ears and hearing (V72.1)\\(V72.12) Encounter for hearing conservation and treatment\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Examination of ears and hearing (V72.1)\\" + }, + { + "displayName": "(V72.19) Other examination of ears and hearing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Examination of ears and hearing (V72.1)\\(V72.19) Other examination of ears and hearing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Examination of ears and hearing (V72.1)\\\\(V72.19) Other examination of ears and hearing\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Examination of ears and hearing (V72.1)\\" + }, + { + "displayName": "Laboratory examination (V72.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Laboratory examination (V72.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\" + }, + { + "displayName": "(V72.60) Laboratory examination, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Laboratory examination (V72.6)\\(V72.60) Laboratory examination, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Laboratory examination (V72.6)\\" + }, + { + "displayName": "(V72.61) Antibody response examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Laboratory examination (V72.6)\\(V72.61) Antibody response examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Laboratory examination (V72.6)\\\\(V72.61) Antibody response examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Laboratory examination (V72.6)\\" + }, + { + "displayName": "(V72.62) Laboratory examination ordered as part of a routine general medical examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Laboratory examination (V72.6)\\(V72.62) Laboratory examination ordered as part of a routine general medical examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Laboratory examination (V72.6)\\\\(V72.62) Laboratory examination ordered as part of a routine general medical examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Laboratory examination (V72.6)\\" + }, + { + "displayName": "(V72.63) Pre-procedural laboratory examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Laboratory examination (V72.6)\\(V72.63) Pre-procedural laboratory examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Laboratory examination (V72.6)\\\\(V72.63) Pre-procedural laboratory examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Laboratory examination (V72.6)\\" + }, + { + "displayName": "(V72.69) Other laboratory examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Laboratory examination (V72.6)\\(V72.69) Other laboratory examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Laboratory examination (V72.6)\\\\(V72.69) Other laboratory examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Laboratory examination (V72.6)\\" + }, + { + "displayName": "Other specified examinations (V72.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Other specified examinations (V72.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\" + }, + { + "displayName": "(V72.81) Pre-operative cardiovascular examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\(V72.81) Pre-operative cardiovascular examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Other specified examinations (V72.8)\\\\(V72.81) Pre-operative cardiovascular examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\" + }, + { + "displayName": "(V72.82) Pre-operative respiratory examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\(V72.82) Pre-operative respiratory examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Other specified examinations (V72.8)\\\\(V72.82) Pre-operative respiratory examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\" + }, + { + "displayName": "(V72.83) Other specified pre-operative examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\(V72.83) Other specified pre-operative examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Other specified examinations (V72.8)\\\\(V72.83) Other specified pre-operative examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\" + }, + { + "displayName": "(V72.84) Pre-operative examination, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\(V72.84) Pre-operative examination, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Other specified examinations (V72.8)\\\\(V72.84) Pre-operative examination, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\" + }, + { + "displayName": "(V72.85) Other specified examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\(V72.85) Other specified examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Other specified examinations (V72.8)\\\\(V72.85) Other specified examination\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\" + }, + { + "displayName": "(V72.86) Encounter for blood typing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\(V72.86) Encounter for blood typing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Other specified examinations (V72.8)\\" + }, + { + "displayName": "Pregnancy examination or test (V72.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Pregnancy examination or test (V72.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\" + }, + { + "displayName": "(V72.40) Pregnancy examination or test, pregnancy unconfirmed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Pregnancy examination or test (V72.4)\\(V72.40) Pregnancy examination or test, pregnancy unconfirmed\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Pregnancy examination or test (V72.4)\\" + }, + { + "displayName": "(V72.41) Pregnancy examination or test, negative result", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Pregnancy examination or test (V72.4)\\(V72.41) Pregnancy examination or test, negative result\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Pregnancy examination or test (V72.4)\\" + }, + { + "displayName": "(V72.42) Pregnancy examination or test, positive result", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Pregnancy examination or test (V72.4)\\(V72.42) Pregnancy examination or test, positive result\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Pregnancy examination or test (V72.4)\\" + }, + { + "displayName": "Special investigations and examinations - Gynecological examination (V72.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Special investigations and examinations - Gynecological examination (V72.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special investigations and examinations (V72)\\\\Special investigations and examinations - Gynecological examination (V72.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\" + }, + { + "displayName": "(V72.31) Routine gynecological examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Special investigations and examinations - Gynecological examination (V72.3)\\(V72.31) Routine gynecological examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Special investigations and examinations - Gynecological examination (V72.3)\\" + }, + { + "displayName": "(V72.32) Encounter for Papanicolaou cervical smear to confirm findings of recent normal smear following initial abnormal smear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Special investigations and examinations - Gynecological examination (V72.3)\\(V72.32) Encounter for Papanicolaou cervical smear to confirm findings of recent normal smear following initial abnormal smear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special investigations and examinations (V72)\\Special investigations and examinations - Gynecological examination (V72.3)\\" + }, + { + "displayName": "Special screening examination for bacterial and spirochetal diseases (V74)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for bacterial and spirochetal diseases (V74)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V74.0) Screening examination for cholera", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\(V74.0) Screening examination for cholera\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for bacterial and spirochetal diseases (V74)\\\\(V74.0) Screening examination for cholera\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\" + }, + { + "displayName": "(V74.1) Screening examination for pulmonary tuberculosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\(V74.1) Screening examination for pulmonary tuberculosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for bacterial and spirochetal diseases (V74)\\\\(V74.1) Screening examination for pulmonary tuberculosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\" + }, + { + "displayName": "(V74.2) Screening examination for leprosy (Hansen's disease)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\(V74.2) Screening examination for leprosy (Hansen's disease)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\" + }, + { + "displayName": "(V74.3) Screening examination for diphtheria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\(V74.3) Screening examination for diphtheria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\" + }, + { + "displayName": "(V74.4) Screening examination for bacterial conjunctivitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\(V74.4) Screening examination for bacterial conjunctivitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\" + }, + { + "displayName": "(V74.5) Screening examination for venereal disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\(V74.5) Screening examination for venereal disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\" + }, + { + "displayName": "(V74.6) Screening examination for yaws", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\(V74.6) Screening examination for yaws\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\" + }, + { + "displayName": "(V74.8) Screening examination for other specified bacterial and spirochetal diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\(V74.8) Screening examination for other specified bacterial and spirochetal diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\" + }, + { + "displayName": "(V74.9) Screening examination for unspecified bacterial and spirochetal diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\(V74.9) Screening examination for unspecified bacterial and spirochetal diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for bacterial and spirochetal diseases (V74)\\" + }, + { + "displayName": "Special screening examination for other infectious diseases (V75)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V75.0) Screening examination for rickettsial diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\(V75.0) Screening examination for rickettsial diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\" + }, + { + "displayName": "(V75.1) Screening examination for malaria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\(V75.1) Screening examination for malaria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\" + }, + { + "displayName": "(V75.2) Screening examination for leishmaniasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\(V75.2) Screening examination for leishmaniasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\" + }, + { + "displayName": "(V75.3) Screening examination for trypanosomiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\(V75.3) Screening examination for trypanosomiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\" + }, + { + "displayName": "(V75.4) Screening examination for mycotic infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\(V75.4) Screening examination for mycotic infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for other infectious diseases (V75)\\\\(V75.4) Screening examination for mycotic infections\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\" + }, + { + "displayName": "(V75.5) Screening examination for schistosomiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\(V75.5) Screening examination for schistosomiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for other infectious diseases (V75)\\\\(V75.5) Screening examination for schistosomiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\" + }, + { + "displayName": "(V75.6) Screening examination for filariasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\(V75.6) Screening examination for filariasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\" + }, + { + "displayName": "(V75.7) Screening examination for intestinal helminthiasis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\(V75.7) Screening examination for intestinal helminthiasis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for other infectious diseases (V75)\\\\(V75.7) Screening examination for intestinal helminthiasis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\" + }, + { + "displayName": "(V75.8) Screening examination for other specified parasitic infections", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\(V75.8) Screening examination for other specified parasitic infections\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for other infectious diseases (V75)\\\\(V75.8) Screening examination for other specified parasitic infections\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\" + }, + { + "displayName": "(V75.9) Screening examination for unspecified infectious disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\(V75.9) Screening examination for unspecified infectious disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for other infectious diseases (V75)\\" + }, + { + "displayName": "Special screening examination for viral and chlamydial diseases (V73)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V73.0) Screening examination for poliomyelitis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\(V73.0) Screening examination for poliomyelitis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\" + }, + { + "displayName": "(V73.1) Screening examination for smallpox", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\(V73.1) Screening examination for smallpox\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\" + }, + { + "displayName": "(V73.2) Screening examination for measles", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\(V73.2) Screening examination for measles\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\" + }, + { + "displayName": "(V73.3) Screening examination for rubella", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\(V73.3) Screening examination for rubella\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\" + }, + { + "displayName": "(V73.4) Screening examination for yellow fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\(V73.4) Screening examination for yellow fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\" + }, + { + "displayName": "(V73.5) Screening examination for other arthropod-borne viral diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\(V73.5) Screening examination for other arthropod-borne viral diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\" + }, + { + "displayName": "(V73.6) Screening examination for trachoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\(V73.6) Screening examination for trachoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for viral and chlamydial diseases (V73)\\\\(V73.6) Screening examination for trachoma\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\" + }, + { + "displayName": "Screening examination for other specified viral and chlamydial diseases (V73.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for other specified viral and chlamydial diseases (V73.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for viral and chlamydial diseases (V73)\\\\Screening examination for other specified viral and chlamydial diseases (V73.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\" + }, + { + "displayName": "(V73.81) Special screening examination for Human papillomavirus (HPV)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for other specified viral and chlamydial diseases (V73.8)\\(V73.81) Special screening examination for Human papillomavirus (HPV)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for viral and chlamydial diseases (V73)\\\\Screening examination for other specified viral and chlamydial diseases (V73.8)\\\\(V73.81) Special screening examination for Human papillomavirus (HPV)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for other specified viral and chlamydial diseases (V73.8)\\" + }, + { + "displayName": "(V73.88) Special screening examination for other specified chlamydial diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for other specified viral and chlamydial diseases (V73.8)\\(V73.88) Special screening examination for other specified chlamydial diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for viral and chlamydial diseases (V73)\\\\Screening examination for other specified viral and chlamydial diseases (V73.8)\\\\(V73.88) Special screening examination for other specified chlamydial diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for other specified viral and chlamydial diseases (V73.8)\\" + }, + { + "displayName": "(V73.89) Special screening examination for other specified viral diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for other specified viral and chlamydial diseases (V73.8)\\(V73.89) Special screening examination for other specified viral diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for viral and chlamydial diseases (V73)\\\\Screening examination for other specified viral and chlamydial diseases (V73.8)\\\\(V73.89) Special screening examination for other specified viral diseases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for other specified viral and chlamydial diseases (V73.8)\\" + }, + { + "displayName": "Screening examination for unspecified viral disease (V73.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for unspecified viral disease (V73.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for viral and chlamydial diseases (V73)\\\\Screening examination for unspecified viral disease (V73.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\" + }, + { + "displayName": "(V73.98) Special screening examination for unspecified chlamydial disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for unspecified viral disease (V73.9)\\(V73.98) Special screening examination for unspecified chlamydial disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for unspecified viral disease (V73.9)\\" + }, + { + "displayName": "(V73.99) Special screening examination for unspecified viral disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for unspecified viral disease (V73.9)\\(V73.99) Special screening examination for unspecified viral disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening examination for viral and chlamydial diseases (V73)\\\\Screening examination for unspecified viral disease (V73.9)\\\\(V73.99) Special screening examination for unspecified viral disease\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening examination for viral and chlamydial diseases (V73)\\Screening examination for unspecified viral disease (V73.9)\\" + }, + { + "displayName": "Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V81.0) Screening for ischemic heart disease", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\(V81.0) Screening for ischemic heart disease\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\" + }, + { + "displayName": "(V81.1) Screening for hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\(V81.1) Screening for hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\" + }, + { + "displayName": "(V81.2) Screening for other and unspecified cardiovascular conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\(V81.2) Screening for other and unspecified cardiovascular conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\" + }, + { + "displayName": "(V81.3) Screening for chronic bronchitis and emphysema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\(V81.3) Screening for chronic bronchitis and emphysema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\" + }, + { + "displayName": "(V81.4) Screening for other and unspecified respiratory conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\(V81.4) Screening for other and unspecified respiratory conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\" + }, + { + "displayName": "(V81.5) Screening for nephropathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\(V81.5) Screening for nephropathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\" + }, + { + "displayName": "(V81.6) Screening for other and unspecified genitourinary conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\(V81.6) Screening for other and unspecified genitourinary conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for cardiovascular, respiratory, and genitourinary diseases (V81)\\" + }, + { + "displayName": "Special screening for disorders of blood and blood-forming organs (V78)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for disorders of blood and blood-forming organs (V78)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V78.0) Screening for iron deficiency anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\(V78.0) Screening for iron deficiency anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for disorders of blood and blood-forming organs (V78)\\\\(V78.0) Screening for iron deficiency anemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\" + }, + { + "displayName": "(V78.1) Screening for other and unspecified deficiency anemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\(V78.1) Screening for other and unspecified deficiency anemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for disorders of blood and blood-forming organs (V78)\\\\(V78.1) Screening for other and unspecified deficiency anemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\" + }, + { + "displayName": "(V78.2) Screening for sickle-cell disease or trait", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\(V78.2) Screening for sickle-cell disease or trait\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for disorders of blood and blood-forming organs (V78)\\\\(V78.2) Screening for sickle-cell disease or trait\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\" + }, + { + "displayName": "(V78.3) Screening for other hemoglobinopathies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\(V78.3) Screening for other hemoglobinopathies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for disorders of blood and blood-forming organs (V78)\\\\(V78.3) Screening for other hemoglobinopathies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\" + }, + { + "displayName": "(V78.8) Screening for other disorders of blood and blood-forming organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\(V78.8) Screening for other disorders of blood and blood-forming organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for disorders of blood and blood-forming organs (V78)\\\\(V78.8) Screening for other disorders of blood and blood-forming organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\" + }, + { + "displayName": "(V78.9) Screening for unspecified disorder of blood and blood-forming organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\(V78.9) Screening for unspecified disorder of blood and blood-forming organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for disorders of blood and blood-forming organs (V78)\\\\(V78.9) Screening for unspecified disorder of blood and blood-forming organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for disorders of blood and blood-forming organs (V78)\\" + }, + { + "displayName": "Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V77.0) Screening for thyroid disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\(V77.0) Screening for thyroid disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\(V77.0) Screening for thyroid disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\" + }, + { + "displayName": "(V77.1) Screening for diabetes mellitus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\(V77.1) Screening for diabetes mellitus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\(V77.1) Screening for diabetes mellitus\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\" + }, + { + "displayName": "(V77.2) Screening for malnutrition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\(V77.2) Screening for malnutrition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\(V77.2) Screening for malnutrition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\" + }, + { + "displayName": "(V77.3) Screening for phenylketonuria (PKU)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\(V77.3) Screening for phenylketonuria (PKU)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\(V77.3) Screening for phenylketonuria (PKU)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\" + }, + { + "displayName": "(V77.4) Screening for galactosemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\(V77.4) Screening for galactosemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\(V77.4) Screening for galactosemia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\" + }, + { + "displayName": "(V77.5) Screening for gout", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\(V77.5) Screening for gout\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\(V77.5) Screening for gout\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\" + }, + { + "displayName": "(V77.6) Screening for cystic fibrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\(V77.6) Screening for cystic fibrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\(V77.6) Screening for cystic fibrosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\" + }, + { + "displayName": "(V77.7) Screening for other inborn errors of metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\(V77.7) Screening for other inborn errors of metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\(V77.7) Screening for other inborn errors of metabolism\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\" + }, + { + "displayName": "(V77.8) Screening for obesity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\(V77.8) Screening for obesity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\(V77.8) Screening for obesity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\" + }, + { + "displayName": "Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\" + }, + { + "displayName": "(V77.91) Screening for lipoid disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\\(V77.91) Screening for lipoid disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\\\\(V77.91) Screening for lipoid disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\\" + }, + { + "displayName": "(V77.99) Screening for other and unspecified endocrine, nutritional, metabolic, and immunity disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\\(V77.99) Screening for other and unspecified endocrine, nutritional, metabolic, and immunity disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\\\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\\\\(V77.99) Screening for other and unspecified endocrine, nutritional, metabolic, and immunity disorders\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for endocrine, nutritional, metabolic, and immunity disorders (V77)\\Screening for other and unspecified endocrine, nutritional, metabolic and immunity disorders (V77.9)\\" + }, + { + "displayName": "Special screening for malignant neoplasms (V76)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for malignant neoplasms (V76)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V76.0) Special screening for malignant neoplasms of respiratory organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\(V76.0) Special screening for malignant neoplasms of respiratory organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\" + }, + { + "displayName": "(V76.2) Screening for malignant neoplasms of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\(V76.2) Screening for malignant neoplasms of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for malignant neoplasms (V76)\\\\(V76.2) Screening for malignant neoplasms of cervix\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\" + }, + { + "displayName": "(V76.3) Screening for malignant neoplasms of bladder", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\(V76.3) Screening for malignant neoplasms of bladder\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for malignant neoplasms (V76)\\\\(V76.3) Screening for malignant neoplasms of bladder\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\" + }, + { + "displayName": "(V76.9) Special screening for unspecified malignant neoplasms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\(V76.9) Special screening for unspecified malignant neoplasms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for malignant neoplasms (V76)\\\\(V76.9) Special screening for unspecified malignant neoplasms\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\" + }, + { + "displayName": "Screening examination for malignant neoplasms of the breast (V76.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening examination for malignant neoplasms of the breast (V76.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for malignant neoplasms (V76)\\\\Screening examination for malignant neoplasms of the breast (V76.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\" + }, + { + "displayName": "(V76.10) Breast screening, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening examination for malignant neoplasms of the breast (V76.1)\\(V76.10) Breast screening, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for malignant neoplasms (V76)\\\\Screening examination for malignant neoplasms of the breast (V76.1)\\\\(V76.10) Breast screening, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening examination for malignant neoplasms of the breast (V76.1)\\" + }, + { + "displayName": "(V76.11) Screening mammogram for high-risk patient", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening examination for malignant neoplasms of the breast (V76.1)\\(V76.11) Screening mammogram for high-risk patient\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening examination for malignant neoplasms of the breast (V76.1)\\" + }, + { + "displayName": "(V76.12) Other screening mammogram", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening examination for malignant neoplasms of the breast (V76.1)\\(V76.12) Other screening mammogram\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening examination for malignant neoplasms of the breast (V76.1)\\" + }, + { + "displayName": "(V76.19) Other screening breast examination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening examination for malignant neoplasms of the breast (V76.1)\\(V76.19) Other screening breast examination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening examination for malignant neoplasms of the breast (V76.1)\\" + }, + { + "displayName": "Screening for malignant neoplasms of intestine (V76.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of intestine (V76.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\" + }, + { + "displayName": "(V76.50) Special screening for malignant neoplasms for intestine, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of intestine (V76.5)\\(V76.50) Special screening for malignant neoplasms for intestine, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of intestine (V76.5)\\" + }, + { + "displayName": "(V76.51) Special screening for malignant neoplasms of colon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of intestine (V76.5)\\(V76.51) Special screening for malignant neoplasms of colon\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of intestine (V76.5)\\" + }, + { + "displayName": "(V76.52) Special screening for malignant neoplasms of small intestine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of intestine (V76.5)\\(V76.52) Special screening for malignant neoplasms of small intestine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of intestine (V76.5)\\" + }, + { + "displayName": "Screening for malignant neoplasms of other sites (V76.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for malignant neoplasms (V76)\\\\Screening for malignant neoplasms of other sites (V76.4)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\" + }, + { + "displayName": "(V76.41) Screening for malignant neoplasms of rectum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\(V76.41) Screening for malignant neoplasms of rectum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for malignant neoplasms (V76)\\\\Screening for malignant neoplasms of other sites (V76.4)\\\\(V76.41) Screening for malignant neoplasms of rectum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\" + }, + { + "displayName": "(V76.42) Screening for malignant neoplasms of oral cavity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\(V76.42) Screening for malignant neoplasms of oral cavity\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for malignant neoplasms (V76)\\\\Screening for malignant neoplasms of other sites (V76.4)\\\\(V76.42) Screening for malignant neoplasms of oral cavity\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\" + }, + { + "displayName": "(V76.43) Screening for malignant neoplasms of skin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\(V76.43) Screening for malignant neoplasms of skin\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for malignant neoplasms (V76)\\\\Screening for malignant neoplasms of other sites (V76.4)\\\\(V76.43) Screening for malignant neoplasms of skin\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\" + }, + { + "displayName": "(V76.44) Screening for malignant neoplasms of prostate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\(V76.44) Screening for malignant neoplasms of prostate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\" + }, + { + "displayName": "(V76.45) Screening for malignant neoplasms of testis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\(V76.45) Screening for malignant neoplasms of testis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\" + }, + { + "displayName": "(V76.46) Special screening for malignant neoplasms of ovary", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\(V76.46) Special screening for malignant neoplasms of ovary\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\" + }, + { + "displayName": "(V76.47) Special screening for malignant neoplasms of vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\(V76.47) Special screening for malignant neoplasms of vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\" + }, + { + "displayName": "(V76.49) Special screening for malignant neoplasms of other sites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\(V76.49) Special screening for malignant neoplasms of other sites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for malignant neoplasms of other sites (V76.4)\\" + }, + { + "displayName": "Screening for other malignant neoplasms (V76.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for other malignant neoplasms (V76.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\" + }, + { + "displayName": "(V76.81) Special screening for malignant neoplasms of nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for other malignant neoplasms (V76.8)\\(V76.81) Special screening for malignant neoplasms of nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for other malignant neoplasms (V76.8)\\" + }, + { + "displayName": "(V76.89) Special screening for other malignant neoplasms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for other malignant neoplasms (V76.8)\\(V76.89) Special screening for other malignant neoplasms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for malignant neoplasms (V76)\\\\Screening for other malignant neoplasms (V76.8)\\\\(V76.89) Special screening for other malignant neoplasms\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for malignant neoplasms (V76)\\Screening for other malignant neoplasms (V76.8)\\" + }, + { + "displayName": "Special screening for mental disorders and developmental handicaps (V79)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for mental disorders and developmental handicaps (V79)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V79.0) Screening for depression", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\(V79.0) Screening for depression\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\" + }, + { + "displayName": "(V79.1) Screening for alcoholism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\(V79.1) Screening for alcoholism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\" + }, + { + "displayName": "(V79.2) Special screening for intellectual disabilities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\(V79.2) Special screening for intellectual disabilities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\" + }, + { + "displayName": "(V79.3) Screening for developmental handicaps in early childhood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\(V79.3) Screening for developmental handicaps in early childhood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\" + }, + { + "displayName": "(V79.8) Screening for other specified mental disorders and developmental handicaps", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\(V79.8) Screening for other specified mental disorders and developmental handicaps\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for mental disorders and developmental handicaps (V79)\\\\(V79.8) Screening for other specified mental disorders and developmental handicaps\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\" + }, + { + "displayName": "(V79.9) Screening for unspecified mental disorder and developmental handicap", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\(V79.9) Screening for unspecified mental disorder and developmental handicap\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for mental disorders and developmental handicaps (V79)\\\\(V79.9) Screening for unspecified mental disorder and developmental handicap\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for mental disorders and developmental handicaps (V79)\\" + }, + { + "displayName": "Special screening for neurological, eye, and ear diseases (V80)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for neurological, eye, and ear diseases (V80)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V80.1) Screening for glaucoma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\(V80.1) Screening for glaucoma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\" + }, + { + "displayName": "(V80.2) Screening for other eye conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\(V80.2) Screening for other eye conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\" + }, + { + "displayName": "(V80.3) Screening for ear diseases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\(V80.3) Screening for ear diseases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\" + }, + { + "displayName": "Screening for neurological conditions (V80.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\Screening for neurological conditions (V80.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for neurological, eye, and ear diseases (V80)\\\\Screening for neurological conditions (V80.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\" + }, + { + "displayName": "(V80.01) Special screening for traumatic brain injury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\Screening for neurological conditions (V80.0)\\(V80.01) Special screening for traumatic brain injury\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for neurological, eye, and ear diseases (V80)\\\\Screening for neurological conditions (V80.0)\\\\(V80.01) Special screening for traumatic brain injury\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\Screening for neurological conditions (V80.0)\\" + }, + { + "displayName": "(V80.09) Special screening for other neurological conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\Screening for neurological conditions (V80.0)\\(V80.09) Special screening for other neurological conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for neurological, eye, and ear diseases (V80)\\Screening for neurological conditions (V80.0)\\" + }, + { + "displayName": "Special screening for other conditions (V82)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for other conditions (V82)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\" + }, + { + "displayName": "(V82.0) Screening for skin conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\(V82.0) Screening for skin conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for other conditions (V82)\\\\(V82.0) Screening for skin conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\" + }, + { + "displayName": "(V82.1) Screening for rheumatoid arthritis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\(V82.1) Screening for rheumatoid arthritis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for other conditions (V82)\\\\(V82.1) Screening for rheumatoid arthritis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\" + }, + { + "displayName": "(V82.2) Screening for other rheumatic disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\(V82.2) Screening for other rheumatic disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\" + }, + { + "displayName": "(V82.3) Screening for congenital dislocation of hip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\(V82.3) Screening for congenital dislocation of hip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\" + }, + { + "displayName": "(V82.4) Maternal postnatal screening for chromosomal anomalies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\(V82.4) Maternal postnatal screening for chromosomal anomalies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\" + }, + { + "displayName": "(V82.5) Screening for chemical poisoning and other contamination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\(V82.5) Screening for chemical poisoning and other contamination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\" + }, + { + "displayName": "(V82.6) Multiphasic screening", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\(V82.6) Multiphasic screening\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\" + }, + { + "displayName": "(V82.9) Screening for unspecified condition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\(V82.9) Screening for unspecified condition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for other conditions (V82)\\\\(V82.9) Screening for unspecified condition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\" + }, + { + "displayName": "Genetic screening (V82.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\Genetic screening (V82.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\" + }, + { + "displayName": "(V82.71) Screening for genetic disease carrier status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\Genetic screening (V82.7)\\(V82.71) Screening for genetic disease carrier status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\Genetic screening (V82.7)\\" + }, + { + "displayName": "(V82.79) Other genetic screening", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\Genetic screening (V82.7)\\(V82.79) Other genetic screening\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for other conditions (V82)\\\\Genetic screening (V82.7)\\\\(V82.79) Other genetic screening\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\Genetic screening (V82.7)\\" + }, + { + "displayName": "Screening for other specified conditions (V82.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\Screening for other specified conditions (V82.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for other conditions (V82)\\\\Screening for other specified conditions (V82.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\" + }, + { + "displayName": "(V82.81) Special screening for osteoporosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\Screening for other specified conditions (V82.8)\\(V82.81) Special screening for osteoporosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for other conditions (V82)\\\\Screening for other specified conditions (V82.8)\\\\(V82.81) Special screening for osteoporosis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\Screening for other specified conditions (V82.8)\\" + }, + { + "displayName": "(V82.89) Special screening for other specified conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\Screening for other specified conditions (V82.8)\\(V82.89) Special screening for other specified conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\\\Special screening for other conditions (V82)\\\\Screening for other specified conditions (V82.8)\\\\(V82.89) Special screening for other specified conditions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Persons without reported diagnosis encountered during examination and investigation of individuals and populations (v70-v82.99)\\Special screening for other conditions (V82)\\Screening for other specified conditions (V82.8)\\" + }, + { + "displayName": "Retained foreign body (v90-v90.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Retained foreign body (v90-v90.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\" + }, + { + "displayName": "Retained foreign body (V90)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\" + }, + { + "displayName": "(V90.9) Retained foreign body, unspecified material", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\(V90.9) Retained foreign body, unspecified material\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Retained foreign body (v90-v90.99)\\\\Retained foreign body (V90)\\\\(V90.9) Retained foreign body, unspecified material\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\" + }, + { + "displayName": "Other specified retained foreign body (V90.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Other specified retained foreign body (V90.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Retained foreign body (v90-v90.99)\\\\Retained foreign body (V90)\\\\Other specified retained foreign body (V90.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\" + }, + { + "displayName": "(V90.81) Retained glass fragments", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Other specified retained foreign body (V90.8)\\(V90.81) Retained glass fragments\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Retained foreign body (v90-v90.99)\\\\Retained foreign body (V90)\\\\Other specified retained foreign body (V90.8)\\\\(V90.81) Retained glass fragments\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Other specified retained foreign body (V90.8)\\" + }, + { + "displayName": "(V90.89) Other specified retained foreign body", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Other specified retained foreign body (V90.8)\\(V90.89) Other specified retained foreign body\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Retained foreign body (v90-v90.99)\\\\Retained foreign body (V90)\\\\Other specified retained foreign body (V90.8)\\\\(V90.89) Other specified retained foreign body\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Other specified retained foreign body (V90.8)\\" + }, + { + "displayName": "Retained metal fragments (V90.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Retained metal fragments (V90.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\" + }, + { + "displayName": "(V90.10) Retained metal fragments, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Retained metal fragments (V90.1)\\(V90.10) Retained metal fragments, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Retained metal fragments (V90.1)\\" + }, + { + "displayName": "(V90.12) Retained nonmagnetic metal fragments", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Retained metal fragments (V90.1)\\(V90.12) Retained nonmagnetic metal fragments\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Retained metal fragments (V90.1)\\" + }, + { + "displayName": "Retained organic fragments (V90.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Retained organic fragments (V90.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\" + }, + { + "displayName": "(V90.33) Retained wood fragments", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Retained organic fragments (V90.3)\\(V90.33) Retained wood fragments\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\\\Retained foreign body (v90-v90.99)\\\\Retained foreign body (V90)\\\\Retained organic fragments (V90.3)\\\\(V90.33) Retained wood fragments\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Supplementary classification of factors influencing health status and contact with health services (v01-v91.99)\\Retained foreign body (v90-v90.99)\\Retained foreign body (V90)\\Retained organic fragments (V90.3)\\" + }, + { + "displayName": "Symptoms, signs, and ill-defined conditions (780-799.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\" + }, + { + "displayName": "Ill-Defined and unknown causes of morbidity and mortality (797-799.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\" + }, + { + "displayName": "(797) Senility without mention of psychosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\(797) Senility without mention of psychosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\" + }, + { + "displayName": "Other ill-defined and unknown causes of morbidity and mortality (799)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\" + }, + { + "displayName": "(799.1) Respiratory arrest", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\(799.1) Respiratory arrest\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\" + }, + { + "displayName": "(799.3) Debility, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\(799.3) Debility, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\" + }, + { + "displayName": "(799.4) Cachexia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\(799.4) Cachexia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\" + }, + { + "displayName": "(799.9) Other unknown and unspecified cause of morbidity and mortality", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\(799.9) Other unknown and unspecified cause of morbidity and mortality\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\" + }, + { + "displayName": "Asphyxia and hypoxemia (799.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Asphyxia and hypoxemia (799.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\" + }, + { + "displayName": "(799.01) Asphyxia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Asphyxia and hypoxemia (799.0)\\(799.01) Asphyxia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Asphyxia and hypoxemia (799.0)\\" + }, + { + "displayName": "(799.02) Hypoxemia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Asphyxia and hypoxemia (799.0)\\(799.02) Hypoxemia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Asphyxia and hypoxemia (799.0)\\" + }, + { + "displayName": "Other ill-defined conditions (799.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Other ill-defined conditions (799.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\" + }, + { + "displayName": "(799.81) Decreased libido", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Other ill-defined conditions (799.8)\\(799.81) Decreased libido\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Other ill-defined conditions (799.8)\\" + }, + { + "displayName": "(799.82) Apparent life threatening event in infant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Other ill-defined conditions (799.8)\\(799.82) Apparent life threatening event in infant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Other ill-defined conditions (799.8)\\" + }, + { + "displayName": "(799.89) Other ill-defined conditions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Other ill-defined conditions (799.8)\\(799.89) Other ill-defined conditions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Other ill-defined conditions (799.8)\\" + }, + { + "displayName": "Signs and symptoms involving cognition (799.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving cognition (799.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\" + }, + { + "displayName": "(799.51) Attention or concentration deficit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving cognition (799.5)\\(799.51) Attention or concentration deficit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving cognition (799.5)\\" + }, + { + "displayName": "(799.52) Cognitive communication deficit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving cognition (799.5)\\(799.52) Cognitive communication deficit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving cognition (799.5)\\" + }, + { + "displayName": "(799.53) Visuospatial deficit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving cognition (799.5)\\(799.53) Visuospatial deficit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving cognition (799.5)\\" + }, + { + "displayName": "(799.55) Frontal lobe and executive function deficit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving cognition (799.5)\\(799.55) Frontal lobe and executive function deficit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\\\Other ill-defined and unknown causes of morbidity and mortality (799)\\\\Signs and symptoms involving cognition (799.5)\\\\(799.55) Frontal lobe and executive function deficit\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving cognition (799.5)\\" + }, + { + "displayName": "(799.59) Other signs and symptoms involving cognition", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving cognition (799.5)\\(799.59) Other signs and symptoms involving cognition\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\\\Other ill-defined and unknown causes of morbidity and mortality (799)\\\\Signs and symptoms involving cognition (799.5)\\\\(799.59) Other signs and symptoms involving cognition\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving cognition (799.5)\\" + }, + { + "displayName": "Signs and symptoms involving emotional state (799.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\\\Other ill-defined and unknown causes of morbidity and mortality (799)\\\\Signs and symptoms involving emotional state (799.2)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\" + }, + { + "displayName": "(799.21) Nervousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\(799.21) Nervousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\\\Other ill-defined and unknown causes of morbidity and mortality (799)\\\\Signs and symptoms involving emotional state (799.2)\\\\(799.21) Nervousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\" + }, + { + "displayName": "(799.22) Irritability", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\(799.22) Irritability\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\\\Other ill-defined and unknown causes of morbidity and mortality (799)\\\\Signs and symptoms involving emotional state (799.2)\\\\(799.22) Irritability\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\" + }, + { + "displayName": "(799.23) Impulsiveness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\(799.23) Impulsiveness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\\\Other ill-defined and unknown causes of morbidity and mortality (799)\\\\Signs and symptoms involving emotional state (799.2)\\\\(799.23) Impulsiveness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\" + }, + { + "displayName": "(799.24) Emotional lability", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\(799.24) Emotional lability\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\" + }, + { + "displayName": "(799.25) Demoralization and apathy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\(799.25) Demoralization and apathy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\" + }, + { + "displayName": "(799.29) Other signs and symptoms involving emotional state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\(799.29) Other signs and symptoms involving emotional state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Other ill-defined and unknown causes of morbidity and mortality (799)\\Signs and symptoms involving emotional state (799.2)\\" + }, + { + "displayName": "Sudden death, cause unknown (798)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Sudden death, cause unknown (798)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\" + }, + { + "displayName": "(798.0) Sudden infant death syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Sudden death, cause unknown (798)\\(798.0) Sudden infant death syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Sudden death, cause unknown (798)\\" + }, + { + "displayName": "(798.1) Instantaneous death", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Sudden death, cause unknown (798)\\(798.1) Instantaneous death\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Sudden death, cause unknown (798)\\" + }, + { + "displayName": "(798.2) Death occurring in less than 24 hours from onset of symptoms, not otherwise explained", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Sudden death, cause unknown (798)\\(798.2) Death occurring in less than 24 hours from onset of symptoms, not otherwise explained\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\\\Sudden death, cause unknown (798)\\\\(798.2) Death occurring in less than 24 hours from onset of symptoms, not otherwise explained\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Sudden death, cause unknown (798)\\" + }, + { + "displayName": "(798.9) Unattended death", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Sudden death, cause unknown (798)\\(798.9) Unattended death\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\\\Sudden death, cause unknown (798)\\\\(798.9) Unattended death\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Ill-Defined and unknown causes of morbidity and mortality (797-799.99)\\Sudden death, cause unknown (798)\\" + }, + { + "displayName": "Nonspecific abnormal findings (790-796.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\" + }, + { + "displayName": "Nonspecific (abnormal) findings on radiological and other examination of body structure (793)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\" + }, + { + "displayName": "(793.0) Nonspecific (abnormal) findings on radiological and other examination of skull and head", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\(793.0) Nonspecific (abnormal) findings on radiological and other examination of skull and head\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\" + }, + { + "displayName": "(793.2) Nonspecific (abnormal) findings on radiological and other examination of other intrathoracic organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\(793.2) Nonspecific (abnormal) findings on radiological and other examination of other intrathoracic organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\" + }, + { + "displayName": "(793.3) Nonspecific (abnormal) findings on radiological and other examination of biliary tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\(793.3) Nonspecific (abnormal) findings on radiological and other examination of biliary tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\" + }, + { + "displayName": "(793.4) Nonspecific (abnormal) findings on radiological and other examination of gastrointestinal tract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\(793.4) Nonspecific (abnormal) findings on radiological and other examination of gastrointestinal tract\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\" + }, + { + "displayName": "(793.5) Nonspecific (abnormal) findings on radiological and other examination of genitourinary organs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\(793.5) Nonspecific (abnormal) findings on radiological and other examination of genitourinary organs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\\\(793.5) Nonspecific (abnormal) findings on radiological and other examination of genitourinary organs\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\" + }, + { + "displayName": "(793.6) Nonspecific (abnormal) findings on radiological and other examination of abdominal area, including retroperitoneum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\(793.6) Nonspecific (abnormal) findings on radiological and other examination of abdominal area, including retroperitoneum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\\\(793.6) Nonspecific (abnormal) findings on radiological and other examination of abdominal area, including retroperitoneum\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\" + }, + { + "displayName": "(793.7) Nonspecific (abnormal) findings on radiological and other examination of musculoskeletal system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\(793.7) Nonspecific (abnormal) findings on radiological and other examination of musculoskeletal system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\\\(793.7) Nonspecific (abnormal) findings on radiological and other examination of musculoskeletal system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\" + }, + { + "displayName": "Nonspecific abnormal findings on radiological and other examination of breast (793.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\" + }, + { + "displayName": "(793.80) Abnormal mammogram, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\\(793.80) Abnormal mammogram, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\\" + }, + { + "displayName": "(793.81) Mammographic microcalcification", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\\(793.81) Mammographic microcalcification\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\\" + }, + { + "displayName": "(793.82) Inconclusive mammogram", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\\(793.82) Inconclusive mammogram\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\\" + }, + { + "displayName": "(793.89) Other (abnormal) findings on radiological examination of breast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\\(793.89) Other (abnormal) findings on radiological examination of breast\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of breast (793.8)\\" + }, + { + "displayName": "Nonspecific abnormal findings on radiological and other examination of lung field (793.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\\\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\" + }, + { + "displayName": "(793.11) Solitary pulmonary nodule", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\\(793.11) Solitary pulmonary nodule\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\\" + }, + { + "displayName": "(793.19) Other nonspecific abnormal finding of lung field", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\\(793.19) Other nonspecific abnormal finding of lung field\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of lung field (793.1)\\" + }, + { + "displayName": "Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\" + }, + { + "displayName": "(793.91) Image test inconclusive due to excess body fat", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\\(793.91) Image test inconclusive due to excess body fat\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\\\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\\\\(793.91) Image test inconclusive due to excess body fat\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\\" + }, + { + "displayName": "(793.99) Other nonspecific (abnormal) findings on radiological and other examinations of body structure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\\(793.99) Other nonspecific (abnormal) findings on radiological and other examinations of body structure\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\\\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\\\\(793.99) Other nonspecific (abnormal) findings on radiological and other examinations of body structure\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific (abnormal) findings on radiological and other examination of body structure (793)\\Nonspecific abnormal findings on radiological and other examination of other sites of body (793.9)\\" + }, + { + "displayName": "Nonspecific abnormal findings in other body substances (792)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal findings in other body substances (792)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\" + }, + { + "displayName": "(792.0) Nonspecific abnormal findings in cerebrospinal fluid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\(792.0) Nonspecific abnormal findings in cerebrospinal fluid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\" + }, + { + "displayName": "(792.1) Nonspecific abnormal findings in stool contents", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\(792.1) Nonspecific abnormal findings in stool contents\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\" + }, + { + "displayName": "(792.2) Nonspecific abnormal findings in semen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\(792.2) Nonspecific abnormal findings in semen\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal findings in other body substances (792)\\\\(792.2) Nonspecific abnormal findings in semen\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\" + }, + { + "displayName": "(792.3) Nonspecific abnormal findings in amniotic fluid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\(792.3) Nonspecific abnormal findings in amniotic fluid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\" + }, + { + "displayName": "(792.4) Nonspecific abnormal findings in saliva", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\(792.4) Nonspecific abnormal findings in saliva\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\" + }, + { + "displayName": "(792.5) Cloudy (hemodialysis) (peritoneal) dialysis effluent", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\(792.5) Cloudy (hemodialysis) (peritoneal) dialysis effluent\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\" + }, + { + "displayName": "(792.9) Other nonspecific abnormal findings in body substances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\(792.9) Other nonspecific abnormal findings in body substances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal findings in other body substances (792)\\" + }, + { + "displayName": "Nonspecific abnormal results of function studies (794)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\" + }, + { + "displayName": "(794.2) Nonspecific abnormal results of pulmonary function study", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\(794.2) Nonspecific abnormal results of pulmonary function study\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\" + }, + { + "displayName": "(794.4) Nonspecific abnormal results of function study of kidney", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\(794.4) Nonspecific abnormal results of function study of kidney\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\" + }, + { + "displayName": "(794.5) Nonspecific abnormal results of function study of thyroid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\(794.5) Nonspecific abnormal results of function study of thyroid\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\(794.5) Nonspecific abnormal results of function study of thyroid\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\" + }, + { + "displayName": "(794.6) Nonspecific abnormal results of other endocrine function study", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\(794.6) Nonspecific abnormal results of other endocrine function study\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\(794.6) Nonspecific abnormal results of other endocrine function study\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\" + }, + { + "displayName": "(794.7) Nonspecific abnormal results of function study of basal metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\(794.7) Nonspecific abnormal results of function study of basal metabolism\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\" + }, + { + "displayName": "(794.8) Nonspecific abnormal results of function study of liver", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\(794.8) Nonspecific abnormal results of function study of liver\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\" + }, + { + "displayName": "(794.9) Nonspecific abnormal results of other specified function study", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\(794.9) Nonspecific abnormal results of other specified function study\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\(794.9) Nonspecific abnormal results of other specified function study\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\" + }, + { + "displayName": "Nonspecific abnormal results of function study of brain and central nervous system (794.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\" + }, + { + "displayName": "(794.00) Abnormal function study of brain and central nervous system, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\\(794.00) Abnormal function study of brain and central nervous system, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\\" + }, + { + "displayName": "(794.01) Nonspecific abnormal echoencephalogram", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\\(794.01) Nonspecific abnormal echoencephalogram\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\\" + }, + { + "displayName": "(794.02) Nonspecific abnormal electroencephalogram [EEG]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\\(794.02) Nonspecific abnormal electroencephalogram [EEG]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\\" + }, + { + "displayName": "(794.09) Other nonspecific abnormal results of function study of brain and central nervous system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\\(794.09) Other nonspecific abnormal results of function study of brain and central nervous system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of brain and central nervous system (794.0)\\" + }, + { + "displayName": "Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\" + }, + { + "displayName": "(794.10) Nonspecific abnormal response to nerve stimulation, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\(794.10) Nonspecific abnormal response to nerve stimulation, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\\\(794.10) Nonspecific abnormal response to nerve stimulation, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\" + }, + { + "displayName": "(794.11) Nonspecific abnormal retinal function studies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\(794.11) Nonspecific abnormal retinal function studies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\\\(794.11) Nonspecific abnormal retinal function studies\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\" + }, + { + "displayName": "(794.12) Nonspecific abnormal electro-oculogram [EOG]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\(794.12) Nonspecific abnormal electro-oculogram [EOG]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\\\(794.12) Nonspecific abnormal electro-oculogram [EOG]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\" + }, + { + "displayName": "(794.13) Nonspecific abnormal visually evoked potential", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\(794.13) Nonspecific abnormal visually evoked potential\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\\\(794.13) Nonspecific abnormal visually evoked potential\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\" + }, + { + "displayName": "(794.14) Nonspecific abnormal oculomotor studies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\(794.14) Nonspecific abnormal oculomotor studies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\" + }, + { + "displayName": "(794.15) Nonspecific abnormal auditory function studies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\(794.15) Nonspecific abnormal auditory function studies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\" + }, + { + "displayName": "(794.16) Nonspecific abnormal vestibular function studies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\(794.16) Nonspecific abnormal vestibular function studies\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\" + }, + { + "displayName": "(794.17) Nonspecific abnormal electromyogram [EMG]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\(794.17) Nonspecific abnormal electromyogram [EMG]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\" + }, + { + "displayName": "(794.19) Other nonspecific abnormal results of function study of peripheral nervous system and special senses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\(794.19) Other nonspecific abnormal results of function study of peripheral nervous system and special senses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study of peripheral nervous system and special senses (794.1)\\" + }, + { + "displayName": "Nonspecific abnormal results of function study, cardiovascular (794.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study, cardiovascular (794.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\Nonspecific abnormal results of function study, cardiovascular (794.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\" + }, + { + "displayName": "(794.30) Abnormal cardiovascular function study, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study, cardiovascular (794.3)\\(794.30) Abnormal cardiovascular function study, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\Nonspecific abnormal results of function study, cardiovascular (794.3)\\\\(794.30) Abnormal cardiovascular function study, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study, cardiovascular (794.3)\\" + }, + { + "displayName": "(794.31) Nonspecific abnormal electrocardiogram [ECG] [EKG]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study, cardiovascular (794.3)\\(794.31) Nonspecific abnormal electrocardiogram [ECG] [EKG]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\Nonspecific abnormal results of function study, cardiovascular (794.3)\\\\(794.31) Nonspecific abnormal electrocardiogram [ECG] [EKG]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study, cardiovascular (794.3)\\" + }, + { + "displayName": "(794.39) Other nonspecific abnormal results of function study of cardiovascular system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study, cardiovascular (794.3)\\(794.39) Other nonspecific abnormal results of function study of cardiovascular system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific abnormal results of function studies (794)\\\\Nonspecific abnormal results of function study, cardiovascular (794.3)\\\\(794.39) Other nonspecific abnormal results of function study of cardiovascular system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific abnormal results of function studies (794)\\Nonspecific abnormal results of function study, cardiovascular (794.3)\\" + }, + { + "displayName": "Nonspecific findings on examination of blood (790)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of blood (790)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\" + }, + { + "displayName": "(790.1) Elevated sedimentation rate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\(790.1) Elevated sedimentation rate\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of blood (790)\\\\(790.1) Elevated sedimentation rate\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\" + }, + { + "displayName": "(790.3) Excessive blood level of alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\(790.3) Excessive blood level of alcohol\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of blood (790)\\\\(790.3) Excessive blood level of alcohol\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\" + }, + { + "displayName": "(790.4) Nonspecific elevation of levels of transaminase or lactic acid dehydrogenase [LDH]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\(790.4) Nonspecific elevation of levels of transaminase or lactic acid dehydrogenase [LDH]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\" + }, + { + "displayName": "(790.5) Other nonspecific abnormal serum enzyme levels", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\(790.5) Other nonspecific abnormal serum enzyme levels\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\" + }, + { + "displayName": "(790.6) Other abnormal blood chemistry", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\(790.6) Other abnormal blood chemistry\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\" + }, + { + "displayName": "(790.7) Bacteremia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\(790.7) Bacteremia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\" + }, + { + "displayName": "(790.8) Viremia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\(790.8) Viremia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\" + }, + { + "displayName": "Abnormal glucose (790.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormal glucose (790.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\" + }, + { + "displayName": "(790.21) Impaired fasting glucose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormal glucose (790.2)\\(790.21) Impaired fasting glucose\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormal glucose (790.2)\\" + }, + { + "displayName": "(790.22) Impaired glucose tolerance test (oral)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormal glucose (790.2)\\(790.22) Impaired glucose tolerance test (oral)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of blood (790)\\\\Abnormal glucose (790.2)\\\\(790.22) Impaired glucose tolerance test (oral)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormal glucose (790.2)\\" + }, + { + "displayName": "(790.29) Other abnormal glucose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormal glucose (790.2)\\(790.29) Other abnormal glucose\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of blood (790)\\\\Abnormal glucose (790.2)\\\\(790.29) Other abnormal glucose\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormal glucose (790.2)\\" + }, + { + "displayName": "Abnormality of red blood cells (790.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormality of red blood cells (790.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of blood (790)\\\\Abnormality of red blood cells (790.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\" + }, + { + "displayName": "(790.01) Precipitous drop in hematocrit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormality of red blood cells (790.0)\\(790.01) Precipitous drop in hematocrit\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of blood (790)\\\\Abnormality of red blood cells (790.0)\\\\(790.01) Precipitous drop in hematocrit\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormality of red blood cells (790.0)\\" + }, + { + "displayName": "(790.09) Other abnormality of red blood cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormality of red blood cells (790.0)\\(790.09) Other abnormality of red blood cells\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of blood (790)\\\\Abnormality of red blood cells (790.0)\\\\(790.09) Other abnormality of red blood cells\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Abnormality of red blood cells (790.0)\\" + }, + { + "displayName": "Other nonspecific findings on examination of blood (790.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of blood (790)\\\\Other nonspecific findings on examination of blood (790.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\" + }, + { + "displayName": "(790.91) Abnormal arterial blood gases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\(790.91) Abnormal arterial blood gases\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of blood (790)\\\\Other nonspecific findings on examination of blood (790.9)\\\\(790.91) Abnormal arterial blood gases\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\" + }, + { + "displayName": "(790.92) Abnormal coagulation profile", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\(790.92) Abnormal coagulation profile\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\" + }, + { + "displayName": "(790.93) Elevated prostate specific antigen [PSA]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\(790.93) Elevated prostate specific antigen [PSA]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\" + }, + { + "displayName": "(790.94) Euthyroid sick syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\(790.94) Euthyroid sick syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\" + }, + { + "displayName": "(790.95) Elevated C-reactive protein (CRP)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\(790.95) Elevated C-reactive protein (CRP)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\" + }, + { + "displayName": "(790.99) Other nonspecific findings on examination of blood", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\(790.99) Other nonspecific findings on examination of blood\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of blood (790)\\Other nonspecific findings on examination of blood (790.9)\\" + }, + { + "displayName": "Nonspecific findings on examination of urine (791)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\" + }, + { + "displayName": "(791.0) Proteinuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\(791.0) Proteinuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\" + }, + { + "displayName": "(791.1) Chyluria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\(791.1) Chyluria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\" + }, + { + "displayName": "(791.2) Hemoglobinuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\(791.2) Hemoglobinuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of urine (791)\\\\(791.2) Hemoglobinuria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\" + }, + { + "displayName": "(791.3) Myoglobinuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\(791.3) Myoglobinuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of urine (791)\\\\(791.3) Myoglobinuria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\" + }, + { + "displayName": "(791.4) Biliuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\(791.4) Biliuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of urine (791)\\\\(791.4) Biliuria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\" + }, + { + "displayName": "(791.5) Glycosuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\(791.5) Glycosuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Nonspecific findings on examination of urine (791)\\\\(791.5) Glycosuria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\" + }, + { + "displayName": "(791.6) Acetonuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\(791.6) Acetonuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\" + }, + { + "displayName": "(791.7) Other cells and casts in urine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\(791.7) Other cells and casts in urine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\" + }, + { + "displayName": "(791.9) Other nonspecific findings on examination of urine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\(791.9) Other nonspecific findings on examination of urine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Nonspecific findings on examination of urine (791)\\" + }, + { + "displayName": "Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\" + }, + { + "displayName": "(795.2) Nonspecific abnormal findings on chromosomal analysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\(795.2) Nonspecific abnormal findings on chromosomal analysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\\\(795.2) Nonspecific abnormal findings on chromosomal analysis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\" + }, + { + "displayName": "(795.4) Other nonspecific abnormal histological findings", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\(795.4) Other nonspecific abnormal histological findings\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\" + }, + { + "displayName": "(795.6) False positive serological test for syphilis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\(795.6) False positive serological test for syphilis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\" + }, + { + "displayName": "Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\" + }, + { + "displayName": "(795.00) Abnormal glandular Papanicolaou smear of cervix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\(795.00) Abnormal glandular Papanicolaou smear of cervix\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\\\(795.00) Abnormal glandular Papanicolaou smear of cervix\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\" + }, + { + "displayName": "(795.01) Papanicolaou smear of cervix with atypical squamous cells of undetermined significance (ASC-US)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\(795.01) Papanicolaou smear of cervix with atypical squamous cells of undetermined significance (ASC-US)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\" + }, + { + "displayName": "(795.02) Papanicolaou smear of cervix with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\(795.02) Papanicolaou smear of cervix with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\" + }, + { + "displayName": "(795.03) Papanicolaou smear of cervix with low grade squamous intraepithelial lesion (LGSIL)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\(795.03) Papanicolaou smear of cervix with low grade squamous intraepithelial lesion (LGSIL)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\" + }, + { + "displayName": "(795.04) Papanicolaou smear of cervix with high grade squamous intraepithelial lesion (HGSIL)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\(795.04) Papanicolaou smear of cervix with high grade squamous intraepithelial lesion (HGSIL)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\" + }, + { + "displayName": "(795.05) Cervical high risk human papillomavirus (HPV) DNA test positive", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\(795.05) Cervical high risk human papillomavirus (HPV) DNA test positive\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\" + }, + { + "displayName": "(795.06) Papanicolaou smear of cervix with cytologic evidence of malignancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\(795.06) Papanicolaou smear of cervix with cytologic evidence of malignancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\" + }, + { + "displayName": "(795.07) Satisfactory cervical smear but lacking transformation zone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\(795.07) Satisfactory cervical smear but lacking transformation zone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\" + }, + { + "displayName": "(795.08) Unsatisfactory cervical cytology smear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\(795.08) Unsatisfactory cervical cytology smear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\\\(795.08) Unsatisfactory cervical cytology smear\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\" + }, + { + "displayName": "(795.09) Other abnormal Papanicolaou smear of cervix and cervical HPV", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\(795.09) Other abnormal Papanicolaou smear of cervix and cervical HPV\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\\\(795.09) Other abnormal Papanicolaou smear of cervix and cervical HPV\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of cervix and cervical HPV (795.0)\\" + }, + { + "displayName": "Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\" + }, + { + "displayName": "(795.10) Abnormal glandular Papanicolaou smear of vagina", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\(795.10) Abnormal glandular Papanicolaou smear of vagina\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\" + }, + { + "displayName": "(795.11) Papanicolaou smear of vagina with atypical squamous cells of undetermined significance (ASC-US)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\(795.11) Papanicolaou smear of vagina with atypical squamous cells of undetermined significance (ASC-US)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\" + }, + { + "displayName": "(795.12) Papanicolaou smear of vagina with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\(795.12) Papanicolaou smear of vagina with atypical squamous cells cannot exclude high grade squamous intraepithelial lesion (ASC-H)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\" + }, + { + "displayName": "(795.13) Papanicolaou smear of vagina with low grade squamous intraepithelial lesion (LGSIL)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\(795.13) Papanicolaou smear of vagina with low grade squamous intraepithelial lesion (LGSIL)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\" + }, + { + "displayName": "(795.14) Papanicolaou smear of vagina with high grade squamous intraepithelial lesion (HGSIL)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\(795.14) Papanicolaou smear of vagina with high grade squamous intraepithelial lesion (HGSIL)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\" + }, + { + "displayName": "(795.15) Vaginal high risk human papillomavirus (HPV) DNA test positive", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\(795.15) Vaginal high risk human papillomavirus (HPV) DNA test positive\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\" + }, + { + "displayName": "(795.18) Unsatisfactory vaginal cytology smear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\(795.18) Unsatisfactory vaginal cytology smear\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\" + }, + { + "displayName": "(795.19) Other abnormal Papanicolaou smear of vagina and vaginal HPV", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\(795.19) Other abnormal Papanicolaou smear of vagina and vaginal HPV\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\\\(795.19) Other abnormal Papanicolaou smear of vagina and vaginal HPV\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal Papanicolaou smear of vagina and vaginal HPV (795.1)\\" + }, + { + "displayName": "Abnormal tumor markers (795.8)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal tumor markers (795.8)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\\\Abnormal tumor markers (795.8)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\" + }, + { + "displayName": "(795.81) Elevated carcinoembryonic antigen [CEA]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal tumor markers (795.8)\\(795.81) Elevated carcinoembryonic antigen [CEA]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\\\Abnormal tumor markers (795.8)\\\\(795.81) Elevated carcinoembryonic antigen [CEA]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal tumor markers (795.8)\\" + }, + { + "displayName": "(795.82) Elevated cancer antigen 125 [CA 125]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal tumor markers (795.8)\\(795.82) Elevated cancer antigen 125 [CA 125]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\\\Abnormal tumor markers (795.8)\\\\(795.82) Elevated cancer antigen 125 [CA 125]\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal tumor markers (795.8)\\" + }, + { + "displayName": "(795.89) Other abnormal tumor markers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal tumor markers (795.8)\\(795.89) Other abnormal tumor markers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\\\Abnormal tumor markers (795.8)\\\\(795.89) Other abnormal tumor markers\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Abnormal tumor markers (795.8)\\" + }, + { + "displayName": "Nonspecific positive culture findings (795.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Nonspecific positive culture findings (795.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\" + }, + { + "displayName": "(795.31) Nonspecific positive findings for anthrax", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Nonspecific positive culture findings (795.3)\\(795.31) Nonspecific positive findings for anthrax\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Nonspecific positive culture findings (795.3)\\" + }, + { + "displayName": "(795.39) Other nonspecific positive culture findings", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Nonspecific positive culture findings (795.3)\\(795.39) Other nonspecific positive culture findings\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Nonspecific positive culture findings (795.3)\\" + }, + { + "displayName": "Nonspecific reaction to tuberculin skin test without active tuberculosis (795.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Nonspecific reaction to tuberculin skin test without active tuberculosis (795.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\" + }, + { + "displayName": "(795.51) Nonspecific reaction to tuberculin skin test without active tuberculosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Nonspecific reaction to tuberculin skin test without active tuberculosis (795.5)\\(795.51) Nonspecific reaction to tuberculin skin test without active tuberculosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Nonspecific reaction to tuberculin skin test without active tuberculosis (795.5)\\" + }, + { + "displayName": "Other nonspecific immunological findings (795.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Other nonspecific immunological findings (795.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\" + }, + { + "displayName": "(795.71) Nonspecific serologic evidence of human immunodeficiency virus [HIV]", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Other nonspecific immunological findings (795.7)\\(795.71) Nonspecific serologic evidence of human immunodeficiency virus [HIV]\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Other nonspecific immunological findings (795.7)\\" + }, + { + "displayName": "(795.79) Other and unspecified nonspecific immunological findings", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Other nonspecific immunological findings (795.7)\\(795.79) Other and unspecified nonspecific immunological findings\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\\\Other nonspecific immunological findings (795.7)\\\\(795.79) Other and unspecified nonspecific immunological findings\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other and nonspecific abnormal cytological, histological, immunological and DNA test findings (795)\\Other nonspecific immunological findings (795.7)\\" + }, + { + "displayName": "Other nonspecific abnormal findings (796)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other nonspecific abnormal findings (796)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\" + }, + { + "displayName": "(796.0) Nonspecific abnormal toxicological findings", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\(796.0) Nonspecific abnormal toxicological findings\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other nonspecific abnormal findings (796)\\\\(796.0) Nonspecific abnormal toxicological findings\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\" + }, + { + "displayName": "(796.1) Abnormal reflex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\(796.1) Abnormal reflex\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other nonspecific abnormal findings (796)\\\\(796.1) Abnormal reflex\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\" + }, + { + "displayName": "(796.2) Elevated blood pressure reading without diagnosis of hypertension", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\(796.2) Elevated blood pressure reading without diagnosis of hypertension\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\" + }, + { + "displayName": "(796.3) Nonspecific low blood pressure reading", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\(796.3) Nonspecific low blood pressure reading\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other nonspecific abnormal findings (796)\\\\(796.3) Nonspecific low blood pressure reading\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\" + }, + { + "displayName": "(796.4) Other abnormal clinical findings", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\(796.4) Other abnormal clinical findings\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other nonspecific abnormal findings (796)\\\\(796.4) Other abnormal clinical findings\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\" + }, + { + "displayName": "(796.5) Abnormal finding on antenatal screening", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\(796.5) Abnormal finding on antenatal screening\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\" + }, + { + "displayName": "(796.6) Abnormal findings on neonatal screening", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\(796.6) Abnormal findings on neonatal screening\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other nonspecific abnormal findings (796)\\\\(796.6) Abnormal findings on neonatal screening\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\" + }, + { + "displayName": "(796.9) Other nonspecific abnormal findings", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\(796.9) Other nonspecific abnormal findings\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other nonspecific abnormal findings (796)\\\\(796.9) Other nonspecific abnormal findings\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\" + }, + { + "displayName": "Abnormal cytologic smear of anus and anal HPV (796.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\Abnormal cytologic smear of anus and anal HPV (796.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\" + }, + { + "displayName": "(796.70) Abnormal glandular Papanicolaou smear of anus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\Abnormal cytologic smear of anus and anal HPV (796.7)\\(796.70) Abnormal glandular Papanicolaou smear of anus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\Abnormal cytologic smear of anus and anal HPV (796.7)\\" + }, + { + "displayName": "(796.71) Papanicolaou smear of anus with atypical squamous cells of undetermined significance (ASC-US)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\Abnormal cytologic smear of anus and anal HPV (796.7)\\(796.71) Papanicolaou smear of anus with atypical squamous cells of undetermined significance (ASC-US)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\Abnormal cytologic smear of anus and anal HPV (796.7)\\" + }, + { + "displayName": "(796.75) Anal high risk human papillomavirus (HPV) DNA test positive", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\Abnormal cytologic smear of anus and anal HPV (796.7)\\(796.75) Anal high risk human papillomavirus (HPV) DNA test positive\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\Abnormal cytologic smear of anus and anal HPV (796.7)\\" + }, + { + "displayName": "(796.79) Other abnormal Papanicolaou smear of anus and anal HPV", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\Abnormal cytologic smear of anus and anal HPV (796.7)\\(796.79) Other abnormal Papanicolaou smear of anus and anal HPV\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Nonspecific abnormal findings (790-796.99)\\\\Other nonspecific abnormal findings (796)\\\\Abnormal cytologic smear of anus and anal HPV (796.7)\\\\(796.79) Other abnormal Papanicolaou smear of anus and anal HPV\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Nonspecific abnormal findings (790-796.99)\\Other nonspecific abnormal findings (796)\\Abnormal cytologic smear of anus and anal HPV (796.7)\\" + }, + { + "displayName": "Symptoms (780-789.99)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\" + }, + { + "displayName": "General symptoms (780)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\General symptoms (780)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\" + }, + { + "displayName": "(780.1) Hallucinations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\(780.1) Hallucinations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\" + }, + { + "displayName": "(780.2) Syncope and collapse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\(780.2) Syncope and collapse\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\" + }, + { + "displayName": "(780.4) Dizziness and giddiness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\(780.4) Dizziness and giddiness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\" + }, + { + "displayName": "(780.8) Generalized hyperhidrosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\(780.8) Generalized hyperhidrosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\" + }, + { + "displayName": "Alteration of consciousness (780.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Alteration of consciousness (780.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\" + }, + { + "displayName": "(780.01) Coma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Alteration of consciousness (780.0)\\(780.01) Coma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Alteration of consciousness (780.0)\\" + }, + { + "displayName": "(780.02) Transient alteration of awareness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Alteration of consciousness (780.0)\\(780.02) Transient alteration of awareness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Alteration of consciousness (780.0)\\" + }, + { + "displayName": "(780.03) Persistent vegetative state", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Alteration of consciousness (780.0)\\(780.03) Persistent vegetative state\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Alteration of consciousness (780.0)\\" + }, + { + "displayName": "(780.09) Other alteration of consciousness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Alteration of consciousness (780.0)\\(780.09) Other alteration of consciousness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\General symptoms (780)\\\\Alteration of consciousness (780.0)\\\\(780.09) Other alteration of consciousness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Alteration of consciousness (780.0)\\" + }, + { + "displayName": "Convulsions (780.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Convulsions (780.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\" + }, + { + "displayName": "(780.31) Febrile convulsions (simple), unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Convulsions (780.3)\\(780.31) Febrile convulsions (simple), unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\General symptoms (780)\\\\Convulsions (780.3)\\\\(780.31) Febrile convulsions (simple), unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Convulsions (780.3)\\" + }, + { + "displayName": "(780.32) Complex febrile convulsions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Convulsions (780.3)\\(780.32) Complex febrile convulsions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\General symptoms (780)\\\\Convulsions (780.3)\\\\(780.32) Complex febrile convulsions\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Convulsions (780.3)\\" + }, + { + "displayName": "(780.33) Post traumatic seizures", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Convulsions (780.3)\\(780.33) Post traumatic seizures\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Convulsions (780.3)\\" + }, + { + "displayName": "(780.39) Other convulsions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Convulsions (780.3)\\(780.39) Other convulsions\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Convulsions (780.3)\\" + }, + { + "displayName": "Fever and other physiologic disturbances of temperature regulation (780.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\" + }, + { + "displayName": "(780.60) Fever, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\(780.60) Fever, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\" + }, + { + "displayName": "(780.61) Fever presenting with conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\(780.61) Fever presenting with conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\" + }, + { + "displayName": "(780.62) Postprocedural fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\(780.62) Postprocedural fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\" + }, + { + "displayName": "(780.63) Postvaccination fever", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\(780.63) Postvaccination fever\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\" + }, + { + "displayName": "(780.64) Chills (without fever)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\(780.64) Chills (without fever)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\" + }, + { + "displayName": "(780.65) Hypothermia not associated with low environmental temperature", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\(780.65) Hypothermia not associated with low environmental temperature\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\" + }, + { + "displayName": "(780.66) Febrile nonhemolytic transfusion reaction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\(780.66) Febrile nonhemolytic transfusion reaction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\General symptoms (780)\\\\Fever and other physiologic disturbances of temperature regulation (780.6)\\\\(780.66) Febrile nonhemolytic transfusion reaction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Fever and other physiologic disturbances of temperature regulation (780.6)\\" + }, + { + "displayName": "Malaise and fatigue (780.7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Malaise and fatigue (780.7)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\General symptoms (780)\\\\Malaise and fatigue (780.7)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\" + }, + { + "displayName": "(780.71) Chronic fatigue syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Malaise and fatigue (780.7)\\(780.71) Chronic fatigue syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Malaise and fatigue (780.7)\\" + }, + { + "displayName": "(780.72) Functional quadriplegia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Malaise and fatigue (780.7)\\(780.72) Functional quadriplegia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\General symptoms (780)\\\\Malaise and fatigue (780.7)\\\\(780.72) Functional quadriplegia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Malaise and fatigue (780.7)\\" + }, + { + "displayName": "(780.79) Other malaise and fatigue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Malaise and fatigue (780.7)\\(780.79) Other malaise and fatigue\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\General symptoms (780)\\\\Malaise and fatigue (780.7)\\\\(780.79) Other malaise and fatigue\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Malaise and fatigue (780.7)\\" + }, + { + "displayName": "Other general symptoms (780.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\" + }, + { + "displayName": "(780.91) Fussy infant (baby)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\(780.91) Fussy infant (baby)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\" + }, + { + "displayName": "(780.92) Excessive crying of infant (baby)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\(780.92) Excessive crying of infant (baby)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\" + }, + { + "displayName": "(780.93) Memory loss", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\(780.93) Memory loss\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\" + }, + { + "displayName": "(780.94) Early satiety", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\(780.94) Early satiety\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\" + }, + { + "displayName": "(780.95) Excessive crying of child, adolescent, or adult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\(780.95) Excessive crying of child, adolescent, or adult\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\" + }, + { + "displayName": "(780.96) Generalized pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\(780.96) Generalized pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\" + }, + { + "displayName": "(780.97) Altered mental status", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\(780.97) Altered mental status\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\" + }, + { + "displayName": "(780.99) Other general symptoms", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\(780.99) Other general symptoms\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Other general symptoms (780.9)\\" + }, + { + "displayName": "Sleep disturbances (780.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\" + }, + { + "displayName": "(780.50) Sleep disturbance, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\(780.50) Sleep disturbance, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\" + }, + { + "displayName": "(780.51) Insomnia with sleep apnea, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\(780.51) Insomnia with sleep apnea, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\" + }, + { + "displayName": "(780.52) Insomnia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\(780.52) Insomnia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\" + }, + { + "displayName": "(780.53) Hypersomnia with sleep apnea, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\(780.53) Hypersomnia with sleep apnea, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\" + }, + { + "displayName": "(780.54) Hypersomnia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\(780.54) Hypersomnia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\" + }, + { + "displayName": "(780.55) Disruption of 24 hour sleep wake cycle, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\(780.55) Disruption of 24 hour sleep wake cycle, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\" + }, + { + "displayName": "(780.56) Dysfunctions associated with sleep stages or arousal from sleep", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\(780.56) Dysfunctions associated with sleep stages or arousal from sleep\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\" + }, + { + "displayName": "(780.57) Unspecified sleep apnea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\(780.57) Unspecified sleep apnea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\" + }, + { + "displayName": "(780.58) Sleep related movement disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\(780.58) Sleep related movement disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\" + }, + { + "displayName": "(780.59) Other sleep disturbances", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\(780.59) Other sleep disturbances\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\General symptoms (780)\\Sleep disturbances (780.5)\\" + }, + { + "displayName": "Other symptoms involving abdomen and pelvis (789)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\" + }, + { + "displayName": "(789.1) Hepatomegaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\(789.1) Hepatomegaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\" + }, + { + "displayName": "(789.2) Splenomegaly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\(789.2) Splenomegaly\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\(789.2) Splenomegaly\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\" + }, + { + "displayName": "(789.7) Colic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\(789.7) Colic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\(789.7) Colic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\" + }, + { + "displayName": "(789.9) Other symptoms involving abdomen and pelvis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\(789.9) Other symptoms involving abdomen and pelvis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\(789.9) Other symptoms involving abdomen and pelvis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\" + }, + { + "displayName": "Abdominal or pelvic swelling, mass, or lump (789.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\Abdominal or pelvic swelling, mass, or lump (789.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\" + }, + { + "displayName": "(789.30) Abdominal or pelvic swelling, mass, or lump, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\(789.30) Abdominal or pelvic swelling, mass, or lump, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\" + }, + { + "displayName": "(789.31) Abdominal or pelvic swelling, mass, or lump, right upper quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\(789.31) Abdominal or pelvic swelling, mass, or lump, right upper quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\" + }, + { + "displayName": "(789.32) Abdominal or pelvic swelling, mass, or lump, left upper quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\(789.32) Abdominal or pelvic swelling, mass, or lump, left upper quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\" + }, + { + "displayName": "(789.33) Abdominal or pelvic swelling, mass, or lump, right lower quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\(789.33) Abdominal or pelvic swelling, mass, or lump, right lower quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\Abdominal or pelvic swelling, mass, or lump (789.3)\\\\(789.33) Abdominal or pelvic swelling, mass, or lump, right lower quadrant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\" + }, + { + "displayName": "(789.34) Abdominal or pelvic swelling, mass, or lump, left lower quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\(789.34) Abdominal or pelvic swelling, mass, or lump, left lower quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\Abdominal or pelvic swelling, mass, or lump (789.3)\\\\(789.34) Abdominal or pelvic swelling, mass, or lump, left lower quadrant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\" + }, + { + "displayName": "(789.35) Abdominal or pelvic swelling, mass, or lump, periumbilic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\(789.35) Abdominal or pelvic swelling, mass, or lump, periumbilic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\" + }, + { + "displayName": "(789.36) Abdominal or pelvic swelling, mass, or lump, epigastric", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\(789.36) Abdominal or pelvic swelling, mass, or lump, epigastric\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\" + }, + { + "displayName": "(789.37) Abdominal or pelvic swelling, mass, or lump, generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\(789.37) Abdominal or pelvic swelling, mass, or lump, generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\" + }, + { + "displayName": "(789.39) Abdominal or pelvic swelling, mass, or lump, other specified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\(789.39) Abdominal or pelvic swelling, mass, or lump, other specified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal or pelvic swelling, mass, or lump (789.3)\\" + }, + { + "displayName": "Abdominal pain (789.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\" + }, + { + "displayName": "(789.00) Abdominal pain, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\(789.00) Abdominal pain, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\" + }, + { + "displayName": "(789.01) Abdominal pain, right upper quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\(789.01) Abdominal pain, right upper quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\" + }, + { + "displayName": "(789.02) Abdominal pain, left upper quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\(789.02) Abdominal pain, left upper quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\" + }, + { + "displayName": "(789.03) Abdominal pain, right lower quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\(789.03) Abdominal pain, right lower quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\" + }, + { + "displayName": "(789.04) Abdominal pain, left lower quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\(789.04) Abdominal pain, left lower quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\" + }, + { + "displayName": "(789.05) Abdominal pain, periumbilic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\(789.05) Abdominal pain, periumbilic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\Abdominal pain (789.0)\\\\(789.05) Abdominal pain, periumbilic\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\" + }, + { + "displayName": "(789.06) Abdominal pain, epigastric", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\(789.06) Abdominal pain, epigastric\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\" + }, + { + "displayName": "(789.07) Abdominal pain, generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\(789.07) Abdominal pain, generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\Abdominal pain (789.0)\\\\(789.07) Abdominal pain, generalized\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\" + }, + { + "displayName": "(789.09) Abdominal pain, other specified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\(789.09) Abdominal pain, other specified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal pain (789.0)\\" + }, + { + "displayName": "Abdominal rigidity (789.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\" + }, + { + "displayName": "(789.40) Abdominal rigidity, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\(789.40) Abdominal rigidity, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\" + }, + { + "displayName": "(789.41) Abdominal rigidity, right upper quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\(789.41) Abdominal rigidity, right upper quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\" + }, + { + "displayName": "(789.42) Abdominal rigidity, left upper quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\(789.42) Abdominal rigidity, left upper quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\" + }, + { + "displayName": "(789.43) Abdominal rigidity, right lower quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\(789.43) Abdominal rigidity, right lower quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\" + }, + { + "displayName": "(789.44) Abdominal rigidity, left lower quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\(789.44) Abdominal rigidity, left lower quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\" + }, + { + "displayName": "(789.45) Abdominal rigidity, periumbilic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\(789.45) Abdominal rigidity, periumbilic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\" + }, + { + "displayName": "(789.46) Abdominal rigidity, epigastric", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\(789.46) Abdominal rigidity, epigastric\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\" + }, + { + "displayName": "(789.47) Abdominal rigidity, generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\(789.47) Abdominal rigidity, generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\" + }, + { + "displayName": "(789.49) Abdominal rigidity, other specified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\(789.49) Abdominal rigidity, other specified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal rigidity (789.4)\\" + }, + { + "displayName": "Abdominal tenderness (789.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\Abdominal tenderness (789.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\" + }, + { + "displayName": "(789.60) Abdominal tenderness, unspecified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\(789.60) Abdominal tenderness, unspecified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\" + }, + { + "displayName": "(789.61) Abdominal tenderness, right upper quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\(789.61) Abdominal tenderness, right upper quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\Abdominal tenderness (789.6)\\\\(789.61) Abdominal tenderness, right upper quadrant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\" + }, + { + "displayName": "(789.62) Abdominal tenderness, left upper quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\(789.62) Abdominal tenderness, left upper quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\" + }, + { + "displayName": "(789.63) Abdominal tenderness, right lower quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\(789.63) Abdominal tenderness, right lower quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\Abdominal tenderness (789.6)\\\\(789.63) Abdominal tenderness, right lower quadrant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\" + }, + { + "displayName": "(789.64) Abdominal tenderness, left lower quadrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\(789.64) Abdominal tenderness, left lower quadrant\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Other symptoms involving abdomen and pelvis (789)\\\\Abdominal tenderness (789.6)\\\\(789.64) Abdominal tenderness, left lower quadrant\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\" + }, + { + "displayName": "(789.65) Abdominal tenderness, periumbilic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\(789.65) Abdominal tenderness, periumbilic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\" + }, + { + "displayName": "(789.66) Abdominal tenderness, epigastric", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\(789.66) Abdominal tenderness, epigastric\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\" + }, + { + "displayName": "(789.67) Abdominal tenderness, generalized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\(789.67) Abdominal tenderness, generalized\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\" + }, + { + "displayName": "(789.69) Abdominal tenderness, other specified site", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\(789.69) Abdominal tenderness, other specified site\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Abdominal tenderness (789.6)\\" + }, + { + "displayName": "Ascites (789.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Ascites (789.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\" + }, + { + "displayName": "(789.51) Malignant ascites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Ascites (789.5)\\(789.51) Malignant ascites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Ascites (789.5)\\" + }, + { + "displayName": "(789.59) Other ascites", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Ascites (789.5)\\(789.59) Other ascites\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Other symptoms involving abdomen and pelvis (789)\\Ascites (789.5)\\" + }, + { + "displayName": "Symptoms concerning nutrition, metabolism, and development (783)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\" + }, + { + "displayName": "(783.0) Anorexia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\(783.0) Anorexia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\" + }, + { + "displayName": "(783.1) Abnormal weight gain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\(783.1) Abnormal weight gain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\" + }, + { + "displayName": "(783.3) Feeding difficulties and mismanagement", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\(783.3) Feeding difficulties and mismanagement\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\" + }, + { + "displayName": "(783.5) Polydipsia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\(783.5) Polydipsia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\" + }, + { + "displayName": "(783.6) Polyphagia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\(783.6) Polyphagia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\" + }, + { + "displayName": "(783.7) Adult failure to thrive", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\(783.7) Adult failure to thrive\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\" + }, + { + "displayName": "(783.9) Other symptoms concerning nutrition, metabolism, and development", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\(783.9) Other symptoms concerning nutrition, metabolism, and development\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\" + }, + { + "displayName": "Abnormal loss of weight and underweight (783.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Abnormal loss of weight and underweight (783.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\" + }, + { + "displayName": "(783.21) Loss of weight", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Abnormal loss of weight and underweight (783.2)\\(783.21) Loss of weight\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Abnormal loss of weight and underweight (783.2)\\" + }, + { + "displayName": "(783.22) Underweight", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Abnormal loss of weight and underweight (783.2)\\(783.22) Underweight\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Abnormal loss of weight and underweight (783.2)\\" + }, + { + "displayName": "Lack of expected normal physiological development in childhood (783.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Lack of expected normal physiological development in childhood (783.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\" + }, + { + "displayName": "(783.40) Lack of normal physiological development, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Lack of expected normal physiological development in childhood (783.4)\\(783.40) Lack of normal physiological development, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Lack of expected normal physiological development in childhood (783.4)\\" + }, + { + "displayName": "(783.41) Failure to thrive", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Lack of expected normal physiological development in childhood (783.4)\\(783.41) Failure to thrive\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Lack of expected normal physiological development in childhood (783.4)\\" + }, + { + "displayName": "(783.42) Delayed milestones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Lack of expected normal physiological development in childhood (783.4)\\(783.42) Delayed milestones\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms concerning nutrition, metabolism, and development (783)\\\\Lack of expected normal physiological development in childhood (783.4)\\\\(783.42) Delayed milestones\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Lack of expected normal physiological development in childhood (783.4)\\" + }, + { + "displayName": "(783.43) Short stature", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Lack of expected normal physiological development in childhood (783.4)\\(783.43) Short stature\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms concerning nutrition, metabolism, and development (783)\\\\Lack of expected normal physiological development in childhood (783.4)\\\\(783.43) Short stature\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms concerning nutrition, metabolism, and development (783)\\Lack of expected normal physiological development in childhood (783.4)\\" + }, + { + "displayName": "Symptoms involving cardiovascular system (785)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\" + }, + { + "displayName": "(785.0) Tachycardia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\(785.0) Tachycardia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\" + }, + { + "displayName": "(785.1) Palpitations", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\(785.1) Palpitations\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\" + }, + { + "displayName": "(785.2) Undiagnosed cardiac murmurs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\(785.2) Undiagnosed cardiac murmurs\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\" + }, + { + "displayName": "(785.3) Other abnormal heart sounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\(785.3) Other abnormal heart sounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\" + }, + { + "displayName": "(785.4) Gangrene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\(785.4) Gangrene\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\" + }, + { + "displayName": "(785.6) Enlargement of lymph nodes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\(785.6) Enlargement of lymph nodes\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\" + }, + { + "displayName": "(785.9) Other symptoms involving cardiovascular system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\(785.9) Other symptoms involving cardiovascular system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\" + }, + { + "displayName": "Shock without mention of trauma (785.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\Shock without mention of trauma (785.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\" + }, + { + "displayName": "(785.50) Shock, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\Shock without mention of trauma (785.5)\\(785.50) Shock, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\Shock without mention of trauma (785.5)\\" + }, + { + "displayName": "(785.51) Cardiogenic shock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\Shock without mention of trauma (785.5)\\(785.51) Cardiogenic shock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\Shock without mention of trauma (785.5)\\" + }, + { + "displayName": "(785.52) Septic shock", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\Shock without mention of trauma (785.5)\\(785.52) Septic shock\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\Shock without mention of trauma (785.5)\\" + }, + { + "displayName": "(785.59) Other shock without mention of trauma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\Shock without mention of trauma (785.5)\\(785.59) Other shock without mention of trauma\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving cardiovascular system (785)\\Shock without mention of trauma (785.5)\\" + }, + { + "displayName": "Symptoms involving digestive system (787)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\" + }, + { + "displayName": "(787.1) Heartburn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\(787.1) Heartburn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\" + }, + { + "displayName": "(787.3) Flatulence, eructation, and gas pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\(787.3) Flatulence, eructation, and gas pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\" + }, + { + "displayName": "(787.4) Visible peristalsis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\(787.4) Visible peristalsis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\" + }, + { + "displayName": "(787.5) Abnormal bowel sounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\(787.5) Abnormal bowel sounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\" + }, + { + "displayName": "(787.7) Abnormal feces", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\(787.7) Abnormal feces\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\" + }, + { + "displayName": "Dysphagia (787.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\" + }, + { + "displayName": "(787.20) Dysphagia, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\(787.20) Dysphagia, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\" + }, + { + "displayName": "(787.21) Dysphagia, oral phase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\(787.21) Dysphagia, oral phase\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving digestive system (787)\\\\Dysphagia (787.2)\\\\(787.21) Dysphagia, oral phase\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\" + }, + { + "displayName": "(787.22) Dysphagia, oropharyngeal phase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\(787.22) Dysphagia, oropharyngeal phase\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving digestive system (787)\\\\Dysphagia (787.2)\\\\(787.22) Dysphagia, oropharyngeal phase\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\" + }, + { + "displayName": "(787.23) Dysphagia, pharyngeal phase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\(787.23) Dysphagia, pharyngeal phase\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving digestive system (787)\\\\Dysphagia (787.2)\\\\(787.23) Dysphagia, pharyngeal phase\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\" + }, + { + "displayName": "(787.24) Dysphagia, pharyngoesophageal phase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\(787.24) Dysphagia, pharyngoesophageal phase\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving digestive system (787)\\\\Dysphagia (787.2)\\\\(787.24) Dysphagia, pharyngoesophageal phase\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\" + }, + { + "displayName": "(787.29) Other dysphagia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\(787.29) Other dysphagia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving digestive system (787)\\\\Dysphagia (787.2)\\\\(787.29) Other dysphagia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Dysphagia (787.2)\\" + }, + { + "displayName": "Incontinence of feces (787.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Incontinence of feces (787.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\" + }, + { + "displayName": "(787.60) Full incontinence of feces", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Incontinence of feces (787.6)\\(787.60) Full incontinence of feces\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Incontinence of feces (787.6)\\" + }, + { + "displayName": "(787.61) Incomplete defecation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Incontinence of feces (787.6)\\(787.61) Incomplete defecation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Incontinence of feces (787.6)\\" + }, + { + "displayName": "(787.62) Fecal smearing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Incontinence of feces (787.6)\\(787.62) Fecal smearing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Incontinence of feces (787.6)\\" + }, + { + "displayName": "(787.63) Fecal urgency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Incontinence of feces (787.6)\\(787.63) Fecal urgency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Incontinence of feces (787.6)\\" + }, + { + "displayName": "Nausea and vomiting (787.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Nausea and vomiting (787.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\" + }, + { + "displayName": "(787.01) Nausea with vomiting", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Nausea and vomiting (787.0)\\(787.01) Nausea with vomiting\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Nausea and vomiting (787.0)\\" + }, + { + "displayName": "(787.02) Nausea alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Nausea and vomiting (787.0)\\(787.02) Nausea alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Nausea and vomiting (787.0)\\" + }, + { + "displayName": "(787.03) Vomiting alone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Nausea and vomiting (787.0)\\(787.03) Vomiting alone\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Nausea and vomiting (787.0)\\" + }, + { + "displayName": "(787.04) Bilious emesis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Nausea and vomiting (787.0)\\(787.04) Bilious emesis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving digestive system (787)\\\\Nausea and vomiting (787.0)\\\\(787.04) Bilious emesis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Nausea and vomiting (787.0)\\" + }, + { + "displayName": "Other symptoms involving digestive system (787.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Other symptoms involving digestive system (787.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving digestive system (787)\\\\Other symptoms involving digestive system (787.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\" + }, + { + "displayName": "(787.91) Diarrhea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Other symptoms involving digestive system (787.9)\\(787.91) Diarrhea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Other symptoms involving digestive system (787.9)\\" + }, + { + "displayName": "(787.99) Other symptoms involving digestive system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Other symptoms involving digestive system (787.9)\\(787.99) Other symptoms involving digestive system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving digestive system (787)\\\\Other symptoms involving digestive system (787.9)\\\\(787.99) Other symptoms involving digestive system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving digestive system (787)\\Other symptoms involving digestive system (787.9)\\" + }, + { + "displayName": "Symptoms involving head and neck (784)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving head and neck (784)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\" + }, + { + "displayName": "(784.0) Headache", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\(784.0) Headache\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\" + }, + { + "displayName": "(784.1) Throat pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\(784.1) Throat pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\" + }, + { + "displayName": "(784.2) Swelling, mass, or lump in head and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\(784.2) Swelling, mass, or lump in head and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\" + }, + { + "displayName": "(784.3) Aphasia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\(784.3) Aphasia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\" + }, + { + "displayName": "(784.7) Epistaxis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\(784.7) Epistaxis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\" + }, + { + "displayName": "(784.8) Hemorrhage from throat", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\(784.8) Hemorrhage from throat\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\" + }, + { + "displayName": "Other speech disturbance (784.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other speech disturbance (784.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving head and neck (784)\\\\Other speech disturbance (784.5)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\" + }, + { + "displayName": "(784.51) Dysarthria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other speech disturbance (784.5)\\(784.51) Dysarthria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other speech disturbance (784.5)\\" + }, + { + "displayName": "(784.52) Fluency disorder in conditions classified elsewhere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other speech disturbance (784.5)\\(784.52) Fluency disorder in conditions classified elsewhere\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving head and neck (784)\\\\Other speech disturbance (784.5)\\\\(784.52) Fluency disorder in conditions classified elsewhere\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other speech disturbance (784.5)\\" + }, + { + "displayName": "(784.59) Other speech disturbance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other speech disturbance (784.5)\\(784.59) Other speech disturbance\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving head and neck (784)\\\\Other speech disturbance (784.5)\\\\(784.59) Other speech disturbance\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other speech disturbance (784.5)\\" + }, + { + "displayName": "Other symbolic dysfunction (784.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symbolic dysfunction (784.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving head and neck (784)\\\\Other symbolic dysfunction (784.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\" + }, + { + "displayName": "(784.60) Symbolic dysfunction, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symbolic dysfunction (784.6)\\(784.60) Symbolic dysfunction, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symbolic dysfunction (784.6)\\" + }, + { + "displayName": "(784.61) Alexia and dyslexia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symbolic dysfunction (784.6)\\(784.61) Alexia and dyslexia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving head and neck (784)\\\\Other symbolic dysfunction (784.6)\\\\(784.61) Alexia and dyslexia\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symbolic dysfunction (784.6)\\" + }, + { + "displayName": "(784.69) Other symbolic dysfunction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symbolic dysfunction (784.6)\\(784.69) Other symbolic dysfunction\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving head and neck (784)\\\\Other symbolic dysfunction (784.6)\\\\(784.69) Other symbolic dysfunction\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symbolic dysfunction (784.6)\\" + }, + { + "displayName": "Other symptoms involving head and neck (784.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symptoms involving head and neck (784.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving head and neck (784)\\\\Other symptoms involving head and neck (784.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\" + }, + { + "displayName": "(784.91) Postnasal drip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symptoms involving head and neck (784.9)\\(784.91) Postnasal drip\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symptoms involving head and neck (784.9)\\" + }, + { + "displayName": "(784.92) Jaw pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symptoms involving head and neck (784.9)\\(784.92) Jaw pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symptoms involving head and neck (784.9)\\" + }, + { + "displayName": "(784.99) Other symptoms involving head and neck", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symptoms involving head and neck (784.9)\\(784.99) Other symptoms involving head and neck\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Other symptoms involving head and neck (784.9)\\" + }, + { + "displayName": "Voice and resonance disorders (784.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\" + }, + { + "displayName": "(784.40) Voice and resonance disorder, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\(784.40) Voice and resonance disorder, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\" + }, + { + "displayName": "(784.41) Aphonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\(784.41) Aphonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\" + }, + { + "displayName": "(784.42) Dysphonia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\(784.42) Dysphonia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\" + }, + { + "displayName": "(784.43) Hypernasality", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\(784.43) Hypernasality\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\" + }, + { + "displayName": "(784.44) Hyponasality", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\(784.44) Hyponasality\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\" + }, + { + "displayName": "(784.49) Other voice and resonance disorders", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\(784.49) Other voice and resonance disorders\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving head and neck (784)\\Voice and resonance disorders (784.4)\\" + }, + { + "displayName": "Symptoms involving nervous and musculoskeletal systems (781)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\" + }, + { + "displayName": "(781.0) Abnormal involuntary movements", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\(781.0) Abnormal involuntary movements\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\" + }, + { + "displayName": "(781.1) Disturbances of sensation of smell and taste", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\(781.1) Disturbances of sensation of smell and taste\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\" + }, + { + "displayName": "(781.2) Abnormality of gait", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\(781.2) Abnormality of gait\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\" + }, + { + "displayName": "(781.3) Lack of coordination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\(781.3) Lack of coordination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\" + }, + { + "displayName": "(781.4) Transient paralysis of limb", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\(781.4) Transient paralysis of limb\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\" + }, + { + "displayName": "(781.5) Clubbing of fingers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\(781.5) Clubbing of fingers\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\" + }, + { + "displayName": "(781.6) Meningismus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\(781.6) Meningismus\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\" + }, + { + "displayName": "(781.7) Tetany", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\(781.7) Tetany\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving nervous and musculoskeletal systems (781)\\\\(781.7) Tetany\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\" + }, + { + "displayName": "(781.8) Neurologic neglect syndrome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\(781.8) Neurologic neglect syndrome\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving nervous and musculoskeletal systems (781)\\\\(781.8) Neurologic neglect syndrome\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\" + }, + { + "displayName": "Other symptoms involving nervous and musculoskeletal systems (781.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\" + }, + { + "displayName": "(781.91) Loss of height", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\(781.91) Loss of height\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving nervous and musculoskeletal systems (781)\\\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\\\(781.91) Loss of height\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\" + }, + { + "displayName": "(781.92) Abnormal posture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\(781.92) Abnormal posture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\" + }, + { + "displayName": "(781.93) Ocular torticollis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\(781.93) Ocular torticollis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving nervous and musculoskeletal systems (781)\\\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\\\(781.93) Ocular torticollis\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\" + }, + { + "displayName": "(781.94) Facial weakness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\(781.94) Facial weakness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving nervous and musculoskeletal systems (781)\\\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\\\(781.94) Facial weakness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\" + }, + { + "displayName": "(781.99) Other symptoms involving nervous and musculoskeletal systems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\(781.99) Other symptoms involving nervous and musculoskeletal systems\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving nervous and musculoskeletal systems (781)\\\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\\\(781.99) Other symptoms involving nervous and musculoskeletal systems\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving nervous and musculoskeletal systems (781)\\Other symptoms involving nervous and musculoskeletal systems (781.9)\\" + }, + { + "displayName": "Symptoms involving respiratory system and other chest symptoms (786)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\" + }, + { + "displayName": "(786.1) Stridor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\(786.1) Stridor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving respiratory system and other chest symptoms (786)\\\\(786.1) Stridor\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\" + }, + { + "displayName": "(786.2) Cough", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\(786.2) Cough\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\" + }, + { + "displayName": "(786.4) Abnormal sputum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\(786.4) Abnormal sputum\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\" + }, + { + "displayName": "(786.6) Swelling, mass, or lump in chest", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\(786.6) Swelling, mass, or lump in chest\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\" + }, + { + "displayName": "(786.7) Abnormal chest sounds", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\(786.7) Abnormal chest sounds\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\" + }, + { + "displayName": "(786.8) Hiccough", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\(786.8) Hiccough\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\" + }, + { + "displayName": "(786.9) Other symptoms involving respiratory system and chest", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\(786.9) Other symptoms involving respiratory system and chest\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\" + }, + { + "displayName": "Chest pain (786.5)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Chest pain (786.5)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\" + }, + { + "displayName": "(786.50) Chest pain, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Chest pain (786.5)\\(786.50) Chest pain, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Chest pain (786.5)\\" + }, + { + "displayName": "(786.51) Precordial pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Chest pain (786.5)\\(786.51) Precordial pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Chest pain (786.5)\\" + }, + { + "displayName": "(786.52) Painful respiration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Chest pain (786.5)\\(786.52) Painful respiration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Chest pain (786.5)\\" + }, + { + "displayName": "(786.59) Other chest pain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Chest pain (786.5)\\(786.59) Other chest pain\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Chest pain (786.5)\\" + }, + { + "displayName": "Dyspnea and respiratory abnormalities (786.0)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving respiratory system and other chest symptoms (786)\\\\Dyspnea and respiratory abnormalities (786.0)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\" + }, + { + "displayName": "(786.00) Respiratory abnormality, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\(786.00) Respiratory abnormality, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\" + }, + { + "displayName": "(786.01) Hyperventilation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\(786.01) Hyperventilation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\" + }, + { + "displayName": "(786.02) Orthopnea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\(786.02) Orthopnea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\" + }, + { + "displayName": "(786.03) Apnea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\(786.03) Apnea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\" + }, + { + "displayName": "(786.04) Cheyne-Stokes respiration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\(786.04) Cheyne-Stokes respiration\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\" + }, + { + "displayName": "(786.05) Shortness of breath", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\(786.05) Shortness of breath\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\" + }, + { + "displayName": "(786.06) Tachypnea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\(786.06) Tachypnea\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\" + }, + { + "displayName": "(786.07) Wheezing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\(786.07) Wheezing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\" + }, + { + "displayName": "(786.09) Other respiratory abnormalities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\(786.09) Other respiratory abnormalities\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving respiratory system and other chest symptoms (786)\\\\Dyspnea and respiratory abnormalities (786.0)\\\\(786.09) Other respiratory abnormalities\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Dyspnea and respiratory abnormalities (786.0)\\" + }, + { + "displayName": "Hemoptysis (786.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Hemoptysis (786.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving respiratory system and other chest symptoms (786)\\\\Hemoptysis (786.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\" + }, + { + "displayName": "(786.30) Hemoptysis, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Hemoptysis (786.3)\\(786.30) Hemoptysis, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Hemoptysis (786.3)\\" + }, + { + "displayName": "(786.39) Other hemoptysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Hemoptysis (786.3)\\(786.39) Other hemoptysis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving respiratory system and other chest symptoms (786)\\Hemoptysis (786.3)\\" + }, + { + "displayName": "Symptoms involving skin and other integumentary tissue (782)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\" + }, + { + "displayName": "(782.0) Disturbance of skin sensation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\(782.0) Disturbance of skin sensation\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\" + }, + { + "displayName": "(782.1) Rash and other nonspecific skin eruption", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\(782.1) Rash and other nonspecific skin eruption\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\" + }, + { + "displayName": "(782.2) Localized superficial swelling, mass, or lump", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\(782.2) Localized superficial swelling, mass, or lump\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\" + }, + { + "displayName": "(782.3) Edema", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\(782.3) Edema\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\" + }, + { + "displayName": "(782.4) Jaundice, unspecified, not of newborn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\(782.4) Jaundice, unspecified, not of newborn\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\" + }, + { + "displayName": "(782.5) Cyanosis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\(782.5) Cyanosis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\" + }, + { + "displayName": "(782.7) Spontaneous ecchymoses", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\(782.7) Spontaneous ecchymoses\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\" + }, + { + "displayName": "(782.8) Changes in skin texture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\(782.8) Changes in skin texture\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\" + }, + { + "displayName": "(782.9) Other symptoms involving skin and integumentary tissues", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\(782.9) Other symptoms involving skin and integumentary tissues\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving skin and other integumentary tissue (782)\\\\(782.9) Other symptoms involving skin and integumentary tissues\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\" + }, + { + "displayName": "Pallor and flushing (782.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\Pallor and flushing (782.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving skin and other integumentary tissue (782)\\\\Pallor and flushing (782.6)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\" + }, + { + "displayName": "(782.61) Pallor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\Pallor and flushing (782.6)\\(782.61) Pallor\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving skin and other integumentary tissue (782)\\\\Pallor and flushing (782.6)\\\\(782.61) Pallor\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\Pallor and flushing (782.6)\\" + }, + { + "displayName": "(782.62) Flushing", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\Pallor and flushing (782.6)\\(782.62) Flushing\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving skin and other integumentary tissue (782)\\\\Pallor and flushing (782.6)\\\\(782.62) Flushing\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving skin and other integumentary tissue (782)\\Pallor and flushing (782.6)\\" + }, + { + "displayName": "Symptoms involving urinary system (788)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\" + }, + { + "displayName": "(788.0) Renal colic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\(788.0) Renal colic\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\" + }, + { + "displayName": "(788.1) Dysuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\(788.1) Dysuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\(788.1) Dysuria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\" + }, + { + "displayName": "(788.5) Oliguria and anuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\(788.5) Oliguria and anuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\(788.5) Oliguria and anuria\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\" + }, + { + "displayName": "(788.7) Urethral discharge", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\(788.7) Urethral discharge\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\(788.7) Urethral discharge\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\" + }, + { + "displayName": "(788.8) Extravasation of urine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\(788.8) Extravasation of urine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\" + }, + { + "displayName": "Frequency of urination and polyuria (788.4)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Frequency of urination and polyuria (788.4)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\" + }, + { + "displayName": "(788.41) Urinary frequency", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Frequency of urination and polyuria (788.4)\\(788.41) Urinary frequency\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Frequency of urination and polyuria (788.4)\\" + }, + { + "displayName": "(788.42) Polyuria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Frequency of urination and polyuria (788.4)\\(788.42) Polyuria\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Frequency of urination and polyuria (788.4)\\" + }, + { + "displayName": "(788.43) Nocturia", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Frequency of urination and polyuria (788.4)\\(788.43) Nocturia\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Frequency of urination and polyuria (788.4)\\" + }, + { + "displayName": "Other abnormality of urination (788.6)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\" + }, + { + "displayName": "(788.61) Splitting of urinary stream", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\(788.61) Splitting of urinary stream\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\" + }, + { + "displayName": "(788.62) Slowing of urinary stream", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\(788.62) Slowing of urinary stream\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\" + }, + { + "displayName": "(788.63) Urgency of urination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\(788.63) Urgency of urination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\" + }, + { + "displayName": "(788.64) Urinary hesitancy", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\(788.64) Urinary hesitancy\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\" + }, + { + "displayName": "(788.65) Straining on urination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\(788.65) Straining on urination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\" + }, + { + "displayName": "(788.69) Other abnormality of urination", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\(788.69) Other abnormality of urination\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other abnormality of urination (788.6)\\" + }, + { + "displayName": "Other symptoms involving urinary system (788.9)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other symptoms involving urinary system (788.9)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\Other symptoms involving urinary system (788.9)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\" + }, + { + "displayName": "(788.91) Functional urinary incontinence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other symptoms involving urinary system (788.9)\\(788.91) Functional urinary incontinence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\Other symptoms involving urinary system (788.9)\\\\(788.91) Functional urinary incontinence\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other symptoms involving urinary system (788.9)\\" + }, + { + "displayName": "(788.99) Other symptoms involving urinary system", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other symptoms involving urinary system (788.9)\\(788.99) Other symptoms involving urinary system\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\Other symptoms involving urinary system (788.9)\\\\(788.99) Other symptoms involving urinary system\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Other symptoms involving urinary system (788.9)\\" + }, + { + "displayName": "Retention of urine (788.2)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Retention of urine (788.2)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\" + }, + { + "displayName": "(788.20) Retention of urine, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Retention of urine (788.2)\\(788.20) Retention of urine, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\Retention of urine (788.2)\\\\(788.20) Retention of urine, unspecified\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Retention of urine (788.2)\\" + }, + { + "displayName": "(788.21) Incomplete bladder emptying", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Retention of urine (788.2)\\(788.21) Incomplete bladder emptying\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\Retention of urine (788.2)\\\\(788.21) Incomplete bladder emptying\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Retention of urine (788.2)\\" + }, + { + "displayName": "(788.29) Other specified retention of urine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Retention of urine (788.2)\\(788.29) Other specified retention of urine\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Retention of urine (788.2)\\" + }, + { + "displayName": "Urinary incontinence (788.3)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\Urinary incontinence (788.3)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\" + }, + { + "displayName": "(788.30) Urinary incontinence, unspecified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\(788.30) Urinary incontinence, unspecified\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\" + }, + { + "displayName": "(788.31) Urge incontinence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\(788.31) Urge incontinence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\Urinary incontinence (788.3)\\\\(788.31) Urge incontinence\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\" + }, + { + "displayName": "(788.32) Stress incontinence, male", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\(788.32) Stress incontinence, male\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\" + }, + { + "displayName": "(788.33) Mixed incontinence (male) (female)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\(788.33) Mixed incontinence (male) (female)\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\Urinary incontinence (788.3)\\\\(788.33) Mixed incontinence (male) (female)\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\" + }, + { + "displayName": "(788.34) Incontinence without sensory awareness", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\(788.34) Incontinence without sensory awareness\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\Urinary incontinence (788.3)\\\\(788.34) Incontinence without sensory awareness\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\" + }, + { + "displayName": "(788.35) Post-void dribbling", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\(788.35) Post-void dribbling\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\Urinary incontinence (788.3)\\\\(788.35) Post-void dribbling\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\" + }, + { + "displayName": "(788.36) Nocturnal enuresis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\(788.36) Nocturnal enuresis\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\" + }, + { + "displayName": "(788.37) Continuous leakage", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\(788.37) Continuous leakage\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\" + }, + { + "displayName": "(788.38) Overflow incontinence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\(788.38) Overflow incontinence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\" + }, + { + "displayName": "(788.39) Other urinary incontinence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\(788.39) Other urinary incontinence\\", + "conceptCategory": "Diagnosis", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Diagnoses\\\\Symptoms, signs, and ill-defined conditions (780-799.99)\\\\Symptoms (780-789.99)\\\\Symptoms involving urinary system (788)\\\\Urinary incontinence (788.3)\\\\(788.39) Other urinary incontinence\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Diagnoses\\Symptoms, signs, and ill-defined conditions (780-799.99)\\Symptoms (780-789.99)\\Symptoms involving urinary system (788)\\Urinary incontinence (788.3)\\" + }, + { + "displayName": "Lab Test Results", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": true, + "parentPath": null + }, + { + "displayName": "Antibiotic Susceptibilities", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP7755-4\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\" + }, + { + "displayName": "Blood Bank", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\" + }, + { + "displayName": "ABO and Rh", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP36683-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\" + }, + { + "displayName": "ABO+Rh Gp Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP36683-8\\882-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP36683-8\\" + }, + { + "displayName": "Blood group antibodies", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP67162-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\" + }, + { + "displayName": "Bld gp Ab Scn SerPl Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP67162-5\\890-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP67162-5\\" + }, + { + "displayName": "Blood Group Systems", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP32652-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\" + }, + { + "displayName": "ABO Group Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP32652-7\\883-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP32652-7\\" + }, + { + "displayName": "Rh Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP32652-7\\10331-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP32652-7\\" + }, + { + "displayName": "Crossmatch", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP32807-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP32651-9\\\\LP32807-7\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\" + }, + { + "displayName": "Maj XM SerPl-Imp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP32807-7\\1250-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32651-9\\LP32807-7\\" + }, + { + "displayName": "Chemistry", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\" + }, + { + "displayName": "Cardiovascular (excluding enzymes)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31409-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Natriuretic peptide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31409-3\\LP94520-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31409-3\\" + }, + { + "displayName": "BNP SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31409-3\\LP94520-1\\30934-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31409-3\\LP94520-1\\" + }, + { + "displayName": "Troponin I SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31409-3\\10839-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31409-3\\" + }, + { + "displayName": "Troponin T SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31409-3\\6598-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31409-3\\\\6598-7\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31409-3\\" + }, + { + "displayName": "Electrolytes - single valence", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Anion gap", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP30809-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\" + }, + { + "displayName": "Anion Gap SerPl-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP30809-5\\33037-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP30809-5\\" + }, + { + "displayName": "Anion Gap3 SerPl-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP30809-5\\10466-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP30809-5\\" + }, + { + "displayName": "Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15483-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP19403-2\\\\LP15483-8\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\" + }, + { + "displayName": "Chloride Bld-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15483-8\\2069-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15483-8\\" + }, + { + "displayName": "Chloride SerPl-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15483-8\\2075-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15483-8\\" + }, + { + "displayName": "HCO3 Bld-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\1959-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\" + }, + { + "displayName": "Potassium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15098-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\" + }, + { + "displayName": "Potassium Bld-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15098-4\\6298-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP19403-2\\\\LP15098-4\\\\6298-4\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15098-4\\" + }, + { + "displayName": "Potassium SerPl-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15098-4\\2823-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP19403-2\\\\LP15098-4\\\\2823-3\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15098-4\\" + }, + { + "displayName": "Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15099-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP19403-2\\\\LP15099-2\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\" + }, + { + "displayName": "Sodium Bld-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15099-2\\2947-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15099-2\\" + }, + { + "displayName": "Sodium SerPl-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15099-2\\2951-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP19403-2\\\\LP15099-2\\\\2951-2\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP19403-2\\LP15099-2\\" + }, + { + "displayName": "Endocrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Choriogonadotropin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP14651-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\" + }, + { + "displayName": "HCG Preg Ur Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP14651-1\\2106-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP14651-1\\" + }, + { + "displayName": "HCG SerPl-aCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP14651-1\\19080-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP14651-1\\" + }, + { + "displayName": "Estradiol SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\2243-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\" + }, + { + "displayName": "Parathyrin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP18184-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\" + }, + { + "displayName": "PTH-Intact SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP18184-9\\2731-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP18184-9\\" + }, + { + "displayName": "Pituitary Hormones-", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\" + }, + { + "displayName": "Follitropin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\LP14499-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\" + }, + { + "displayName": "FSH SerPl-aCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\LP14499-5\\15067-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\LP14499-5\\" + }, + { + "displayName": "Lutropin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\LP14683-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\" + }, + { + "displayName": "LH SerPl-aCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\LP14683-4\\10501-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\LP14683-4\\" + }, + { + "displayName": "Prolactin SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\2842-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31396-2\\\\LP31660-1\\\\2842-3\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\" + }, + { + "displayName": "Thyrotropin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\LP14487-0\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\" + }, + { + "displayName": "TSH SerPl DL<=0.05 mIU/L-aCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\LP14487-0\\11579-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31396-2\\\\LP31660-1\\\\LP14487-0\\\\11579-0\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\LP14487-0\\" + }, + { + "displayName": "TSH SerPl-aCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\LP14487-0\\3016-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31660-1\\LP14487-0\\" + }, + { + "displayName": "Testost SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\2986-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\" + }, + { + "displayName": "Thyroid Hormones-", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\" + }, + { + "displayName": "Thyroxine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15900-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP31396-2\\\\LP31666-8\\\\LP15900-1\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\" + }, + { + "displayName": "Thyroxine free", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15900-1\\LP29119-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15900-1\\" + }, + { + "displayName": "T4 Free SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15900-1\\LP29119-2\\3024-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15900-1\\LP29119-2\\" + }, + { + "displayName": "Thyroxine | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15900-1\\LP43742-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15900-1\\" + }, + { + "displayName": "T4 SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15900-1\\LP43742-3\\3026-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15900-1\\LP43742-3\\" + }, + { + "displayName": "Triiodothyronine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\" + }, + { + "displayName": "Triiodothyronine Free", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\LP29126-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\" + }, + { + "displayName": "T3Free SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\LP29126-7\\3051-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\LP29126-7\\" + }, + { + "displayName": "Triiodothyronine resin uptake (T3RU)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\LP15921-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\" + }, + { + "displayName": "T3RU NFr SerPl", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\LP15921-7\\3050-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31396-2\\\\LP31666-8\\\\LP15922-5\\\\LP15921-7\\\\3050-2\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\LP15921-7\\" + }, + { + "displayName": "Triiodothyronine | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\LP43749-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\" + }, + { + "displayName": "T3 SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\LP43749-8\\3053-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31396-2\\LP31666-8\\LP15922-5\\LP43749-8\\" + }, + { + "displayName": "Enzymes (see also Inborn errors metabolism lysosomal)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Alanine aminotransferase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15333-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\" + }, + { + "displayName": "ALT SerPl-cCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15333-5\\1742-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15333-5\\" + }, + { + "displayName": "Alkaline phosphatase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15346-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\" + }, + { + "displayName": "ALP SerPl-cCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15346-7\\6768-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15346-7\\" + }, + { + "displayName": "Amylase SerPl-cCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\1798-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\" + }, + { + "displayName": "Aspartate aminotransferase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15426-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\" + }, + { + "displayName": "AST SerPl-cCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15426-7\\1920-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15426-7\\" + }, + { + "displayName": "Creatine kinase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15510-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\" + }, + { + "displayName": "CK SerPl-cCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15510-8\\2157-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15510-8\\" + }, + { + "displayName": "Creatine kinase isoenzymes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15510-8\\LP32868-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15510-8\\" + }, + { + "displayName": "CK MB CFr SerPl", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15510-8\\LP32868-9\\20569-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31392-1\\\\LP15510-8\\\\LP32868-9\\\\20569-0\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15510-8\\LP32868-9\\" + }, + { + "displayName": "CK MB SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15510-8\\LP32868-9\\13969-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15510-8\\LP32868-9\\" + }, + { + "displayName": "Gamma glutamyl transferase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15590-0\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\" + }, + { + "displayName": "GGT SerPl-cCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15590-0\\2324-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15590-0\\" + }, + { + "displayName": "Lactate dehydrogenase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15033-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP31392-1\\\\LP15033-1\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\" + }, + { + "displayName": "LDH SerPl-cCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15033-1\\2532-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31392-1\\\\LP15033-1\\\\2532-0\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\LP15033-1\\" + }, + { + "displayName": "Lipase SerPl-cCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\3040-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31392-1\\\\3040-3\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31392-1\\" + }, + { + "displayName": "Gases and acid/Base", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Base excess", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15429-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\" + }, + { + "displayName": "Base excess Bld-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15429-1\\11555-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15429-1\\" + }, + { + "displayName": "Carbon dioxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP31400-2\\\\LP15150-3\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\" + }, + { + "displayName": "Carbon Dioxide | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\LP41597-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\" + }, + { + "displayName": "CO2 Bld-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\LP41597-3\\20565-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\LP41597-3\\" + }, + { + "displayName": "CO2 SerPl-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\LP41597-3\\2028-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\LP41597-3\\" + }, + { + "displayName": "pCO2 Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\LP41597-3\\11557-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\LP41597-3\\" + }, + { + "displayName": "Carbon Dioxide | Blood arterial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\LP45660-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\" + }, + { + "displayName": "pCO2 BldA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\LP45660-5\\2019-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP15150-3\\LP45660-5\\" + }, + { + "displayName": "Oxygen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP31400-2\\\\LP14536-4\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\" + }, + { + "displayName": "Oxygen saturation.calculated from oxygen partial pressure", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\LP15765-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\" + }, + { + "displayName": "SaO2% from pO2 Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\LP15765-8\\2713-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\LP15765-8\\" + }, + { + "displayName": "Oxygen | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\LP41596-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\" + }, + { + "displayName": "pO2 Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\LP41596-5\\11556-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\LP41596-5\\" + }, + { + "displayName": "Oxygen | Blood arterial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\LP46137-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\" + }, + { + "displayName": "pO2 BldA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\LP46137-3\\2703-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31400-2\\\\LP14536-4\\\\LP46137-3\\\\2703-7\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14536-4\\LP46137-3\\" + }, + { + "displayName": "pH", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14752-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\" + }, + { + "displayName": "pH | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14752-7\\LP41598-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14752-7\\" + }, + { + "displayName": "pH Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14752-7\\LP41598-1\\11558-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14752-7\\LP41598-1\\" + }, + { + "displayName": "pH SerPl", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14752-7\\LP41598-1\\2753-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14752-7\\LP41598-1\\" + }, + { + "displayName": "pH | Blood arterial", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14752-7\\LP48770-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14752-7\\" + }, + { + "displayName": "pH BldA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14752-7\\LP48770-9\\2744-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP31400-2\\\\LP14752-7\\\\LP48770-9\\\\2744-1\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31400-2\\LP14752-7\\LP48770-9\\" + }, + { + "displayName": "Iron", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15677-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Ferritin SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15677-5\\2276-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15677-5\\" + }, + { + "displayName": "Iron binding capacity", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15677-5\\LP15678-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15677-5\\" + }, + { + "displayName": "TIBC SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15677-5\\LP15678-3\\2500-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP15677-5\\\\LP15678-3\\\\2500-7\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15677-5\\LP15678-3\\" + }, + { + "displayName": "Iron SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15677-5\\2498-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15677-5\\" + }, + { + "displayName": "Lipids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Cholesterol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\" + }, + { + "displayName": "Cholest SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\2093-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\" + }, + { + "displayName": "Cholest/HDLc SerPl-mRto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\9830-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\" + }, + { + "displayName": "Cholesterol in LDL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15491-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\" + }, + { + "displayName": "LDLc SerPl Calc-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15491-1\\13457-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15491-1\\" + }, + { + "displayName": "LDLc SerPl Direct Assay-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15491-1\\18262-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15491-1\\" + }, + { + "displayName": "LDLc SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15491-1\\2089-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15491-1\\" + }, + { + "displayName": "LDLc/HDLc SerPl-mRto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15491-1\\11054-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15491-1\\" + }, + { + "displayName": "Cholesterol in VLDL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15492-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP15705-4\\\\LP15493-7\\\\LP15492-9\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\" + }, + { + "displayName": "VLDLc SerPl Calc-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15492-9\\13458-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15492-9\\" + }, + { + "displayName": "VLDLc SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15492-9\\2091-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\LP15492-9\\" + }, + { + "displayName": "HDLc SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\2085-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\LP15493-7\\" + }, + { + "displayName": "Trigl SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\2571-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15705-4\\" + }, + { + "displayName": "Liver function (excluding enzymes)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Bilirubin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\LP15448-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\" + }, + { + "displayName": "Bilirub Direct SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\LP15448-1\\1968-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\LP15448-1\\" + }, + { + "displayName": "Bilirub Indirect SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\LP15448-1\\1971-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\LP15448-1\\" + }, + { + "displayName": "Bilirub SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\LP15448-1\\1975-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\LP15448-1\\" + }, + { + "displayName": "Urobilinogen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\LP15942-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP31397-0\\\\LP15942-3\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\" + }, + { + "displayName": "Urobilinogen Ur Ql Strip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\LP15942-3\\5818-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31397-0\\LP15942-3\\" + }, + { + "displayName": "Mineral, bone, joint, connective tissue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Calcium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\LP15257-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\" + }, + { + "displayName": "Calcium.ionized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\LP15257-6\\LP15458-0\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\LP15257-6\\" + }, + { + "displayName": "Ca-I Bld-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\LP15257-6\\LP15458-0\\1994-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\LP15257-6\\LP15458-0\\" + }, + { + "displayName": "Ca-I SerPl-sCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\LP15257-6\\LP15458-0\\1995-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31413-5\\\\LP15257-6\\\\LP15458-0\\\\1995-0\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\LP15257-6\\LP15458-0\\" + }, + { + "displayName": "Magnesium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\LP14343-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP31413-5\\\\LP14343-5\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\" + }, + { + "displayName": "Magnesium SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\LP14343-5\\19123-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\LP14343-5\\" + }, + { + "displayName": "Phosphate SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\2777-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31413-5\\\\2777-1\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31413-5\\" + }, + { + "displayName": "Nucelotides/sides and derivatives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31405-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Urate SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31405-1\\3084-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31405-1\\" + }, + { + "displayName": "Protein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Albumin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\" + }, + { + "displayName": "Albumin | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\LP43038-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\" + }, + { + "displayName": "Albumin SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\LP43038-6\\1751-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\LP43038-6\\" + }, + { + "displayName": "Albumin/Glob SerPl-mRto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\LP43038-6\\1759-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\LP43038-6\\" + }, + { + "displayName": "Albumin | Urine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\LP41466-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\" + }, + { + "displayName": "Microalbumin Ur-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\LP41466-1\\14957-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP15838-3\\\\LP6118-6\\\\LP41466-1\\\\14957-5\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\LP41466-1\\" + }, + { + "displayName": "Microalbumin/Creat Ur-mRto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\LP41466-1\\14959-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP15838-3\\\\LP6118-6\\\\LP41466-1\\\\14959-1\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\LP41466-1\\" + }, + { + "displayName": "Prealb SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\14338-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP6118-6\\" + }, + { + "displayName": "C reactive protein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP15023-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\" + }, + { + "displayName": "CRP SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP15023-2\\1988-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP15023-2\\" + }, + { + "displayName": "Globulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP14885-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\" + }, + { + "displayName": "Globulin Ser Calc-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP14885-5\\10834-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP14885-5\\" + }, + { + "displayName": "Globulin Ser-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP14885-5\\2336-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP14885-5\\" + }, + { + "displayName": "Immunoglobulins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP31769-0\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP15838-3\\\\LP31769-0\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\" + }, + { + "displayName": "IgA Ser-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP31769-0\\2458-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP31769-0\\" + }, + { + "displayName": "IgG Ser-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP31769-0\\2465-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP31769-0\\" + }, + { + "displayName": "IgM Ser-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP31769-0\\2472-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP15838-3\\LP31769-0\\" + }, + { + "displayName": "Renal function", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP31398-8\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Creatinine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14355-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\" + }, + { + "displayName": "Creat Ur-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14355-9\\2161-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31398-8\\\\LP14355-9\\\\2161-8\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14355-9\\" + }, + { + "displayName": "Creatinine | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14355-9\\LP41281-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP31398-8\\\\LP14355-9\\\\LP41281-4\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14355-9\\" + }, + { + "displayName": "Creat SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14355-9\\LP41281-4\\2160-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31398-8\\\\LP14355-9\\\\LP41281-4\\\\2160-0\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14355-9\\LP41281-4\\" + }, + { + "displayName": "Urea nitrogen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14492-0\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\" + }, + { + "displayName": "BUN SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14492-0\\3094-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14492-0\\" + }, + { + "displayName": "BUN/Creat SerPl-mRto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14492-0\\3097-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP31398-8\\\\LP14492-0\\\\3097-3\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31398-8\\LP14492-0\\" + }, + { + "displayName": "Small molecules", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31415-0\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Ketones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31415-0\\LP15683-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31415-0\\" + }, + { + "displayName": "Ketones Ur Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31415-0\\LP15683-3\\33903-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31415-0\\LP15683-3\\" + }, + { + "displayName": "Ketones Ur Ql Strip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31415-0\\LP15683-3\\2514-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31415-0\\LP15683-3\\" + }, + { + "displayName": "Sugars/Sugar metabolism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Glucose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\LP14635-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\" + }, + { + "displayName": "Est. average glucose Bld gHb Est-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\LP14635-4\\27353-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\LP14635-4\\" + }, + { + "displayName": "Glucose Ur Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\LP14635-4\\2349-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\LP14635-4\\" + }, + { + "displayName": "Glucose | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\LP14635-4\\LP42107-0\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\LP14635-4\\" + }, + { + "displayName": "Glucose Bld-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\LP14635-4\\LP42107-0\\2339-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\LP14635-4\\LP42107-0\\" + }, + { + "displayName": "Glucose SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\LP14635-4\\LP42107-0\\2345-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31399-6\\LP14635-4\\LP42107-0\\" + }, + { + "displayName": "Tumor markers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31412-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "Prostate specific", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31412-7\\LP14689-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31388-9\\\\LP31412-7\\\\LP14689-1\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31412-7\\" + }, + { + "displayName": "PSA SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31412-7\\LP14689-1\\2857-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31412-7\\\\LP14689-1\\\\2857-1\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31412-7\\LP14689-1\\" + }, + { + "displayName": "Vitamins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31395-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\" + }, + { + "displayName": "25(OH)D3 SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31395-4\\1989-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31395-4\\" + }, + { + "displayName": "Folate SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31395-4\\2284-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31388-9\\\\LP31395-4\\\\2284-8\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31395-4\\" + }, + { + "displayName": "Vit B12 SerPl-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31395-4\\2132-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31388-9\\LP31395-4\\" + }, + { + "displayName": "Coagulation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\" + }, + { + "displayName": "Routine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\" + }, + { + "displayName": "Activated Clotting Time | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP49716-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\" + }, + { + "displayName": "ACT Time Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP49716-1\\3184-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP49716-1\\" + }, + { + "displayName": "Activated partial thromboplastin time (aPTT)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP15957-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\" + }, + { + "displayName": "aPTT Time Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP15957-1\\3173-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP15957-1\\" + }, + { + "displayName": "aPTT Time PPP", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP15957-1\\14979-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP15957-1\\" + }, + { + "displayName": "Fibrinogen PPP-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\3255-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP19284-6\\\\LP31624-7\\\\3255-7\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\" + }, + { + "displayName": "Prothrombin time (PT)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP16870-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\" + }, + { + "displayName": "INR", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP16870-5\\LP17102-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP16870-5\\" + }, + { + "displayName": "INR Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP16870-5\\LP17102-2\\34714-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP16870-5\\LP17102-2\\" + }, + { + "displayName": "INR PPP", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP16870-5\\LP17102-2\\6301-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP16870-5\\LP17102-2\\" + }, + { + "displayName": "Prothrombin Time (PT) | Platelet poor plasma", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP16870-5\\LP51872-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP16870-5\\" + }, + { + "displayName": "PT Time PPP", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP16870-5\\LP51872-7\\5902-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP19284-6\\LP31624-7\\LP16870-5\\LP51872-7\\" + }, + { + "displayName": "Cytology", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32760-8\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\" + }, + { + "displayName": "Pathologist Cvx/Vag Cyto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32760-8\\19769-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32760-8\\" + }, + { + "displayName": "Drug/Tox", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\" + }, + { + "displayName": "Drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\" + }, + { + "displayName": "Controlled substances and drugs of abuse", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31448-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\" + }, + { + "displayName": "Amphetamines Ur Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31448-1\\3349-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31448-1\\" + }, + { + "displayName": "Cannabinoids Ur Ql Scn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31448-1\\18282-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31448-1\\" + }, + { + "displayName": "Cocaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31448-1\\LP16048-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31448-1\\" + }, + { + "displayName": "BZE Ur Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31448-1\\LP16048-8\\3393-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31448-1\\LP16048-8\\" + }, + { + "displayName": "Opiates Ur Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31448-1\\3879-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31448-1\\" + }, + { + "displayName": "Immunosuppressives", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31454-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\" + }, + { + "displayName": "Tacrolimus Bld-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31454-9\\11253-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31389-7\\\\LP18046-0\\\\LP31454-9\\\\11253-2\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31454-9\\" + }, + { + "displayName": "Neurological drugs", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31425-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\" + }, + { + "displayName": "Barbiturates Ur Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31425-9\\3377-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP31425-9\\" + }, + { + "displayName": "Tranquilizers", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP30812-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\" + }, + { + "displayName": "Benzodiaz Ur Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP30812-9\\3390-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP18046-0\\LP30812-9\\" + }, + { + "displayName": "Elements and Elemental Ions", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP31434-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\" + }, + { + "displayName": "Lead Bld-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP31434-1\\5671-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31389-7\\LP31434-1\\" + }, + { + "displayName": "Hematology", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\" + }, + { + "displayName": "Blood smear finding", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\" + }, + { + "displayName": "Erythrocyte morphology finding | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP99309-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\" + }, + { + "displayName": "RBC morph Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP99309-4\\6742-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP16873-9\\\\LP99309-4\\\\6742-1\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP99309-4\\" + }, + { + "displayName": "Erythrocyte shape", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19268-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\" + }, + { + "displayName": "Anisocytosis | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19268-9\\LP43902-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19268-9\\" + }, + { + "displayName": "Anisocytosis Bld Ql Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19268-9\\LP43902-3\\15150-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19268-9\\LP43902-3\\" + }, + { + "displayName": "Anisocytosis Bld Ql Smear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19268-9\\LP43902-3\\702-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19268-9\\LP43902-3\\" + }, + { + "displayName": "Ovalocytes Bld Ql Smear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19268-9\\774-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19268-9\\" + }, + { + "displayName": "Erythrocyte size", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\" + }, + { + "displayName": "Macrocytes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\LP17441-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\" + }, + { + "displayName": "Macrocytes Bld Ql Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\LP17441-4\\15198-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\LP17441-4\\" + }, + { + "displayName": "Macrocytes Bld Ql Smear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\LP17441-4\\738-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\LP17441-4\\" + }, + { + "displayName": "Microcytes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\LP17463-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\" + }, + { + "displayName": "Microcytes Bld Ql Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\LP17463-8\\15199-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\LP17463-8\\" + }, + { + "displayName": "Microcytes Bld Ql Smear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\LP17463-8\\741-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP16873-9\\\\LP19269-7\\\\LP17463-8\\\\741-9\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19269-7\\LP17463-8\\" + }, + { + "displayName": "Erythrocyte staining", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP30927-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\" + }, + { + "displayName": "Hypochromia | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP30927-5\\LP43919-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP30927-5\\" + }, + { + "displayName": "Hypochromia Bld Ql Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP30927-5\\LP43919-7\\15180-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP30927-5\\LP43919-7\\" + }, + { + "displayName": "Hypochromia Bld Ql Smear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP30927-5\\LP43919-7\\728-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP30927-5\\LP43919-7\\" + }, + { + "displayName": "Polychromasia Bld Ql Smear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP30927-5\\10378-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP30927-5\\" + }, + { + "displayName": "Morphology", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19285-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\" + }, + { + "displayName": "Morphology Bld-Imp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19285-3\\18314-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP16873-9\\\\LP19285-3\\\\18314-5\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP19285-3\\" + }, + { + "displayName": "Platelet morphology finding | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP99301-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\" + }, + { + "displayName": "Plat morph Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP99301-1\\11125-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16873-9\\LP99301-1\\" + }, + { + "displayName": "Cell Fractions/Differential", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\" + }, + { + "displayName": "Myeloid cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\" + }, + { + "displayName": "Erythroid cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP35614-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\" + }, + { + "displayName": "Erythrocytes | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP35614-4\\LP41522-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP35614-4\\" + }, + { + "displayName": "RBC # Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP35614-4\\LP41522-1\\789-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP35614-4\\LP41522-1\\" + }, + { + "displayName": "Erythrocytes | Urine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP35614-4\\LP49448-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP35614-4\\" + }, + { + "displayName": "RBC # Ur Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP35614-4\\LP49448-1\\798-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP35614-4\\LP49448-1\\" + }, + { + "displayName": "Retics/100 RBC NFr", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP35614-4\\4679-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP35614-4\\\\4679-7\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP35614-4\\" + }, + { + "displayName": "Leukocytes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\" + }, + { + "displayName": "Granulocytes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\" + }, + { + "displayName": "Basophils", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14328-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP14419-3\\\\LP18643-4\\\\LP14328-6\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\" + }, + { + "displayName": "Basophils # Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14328-6\\26444-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP14419-3\\\\LP18643-4\\\\LP14328-6\\\\26444-0\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14328-6\\" + }, + { + "displayName": "Basophils # Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14328-6\\704-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14328-6\\" + }, + { + "displayName": "Basophils NFr Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14328-6\\30180-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14328-6\\" + }, + { + "displayName": "Basophils NFr Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14328-6\\706-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14328-6\\" + }, + { + "displayName": "Basophils NFr Bld Manual", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14328-6\\707-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14328-6\\" + }, + { + "displayName": "Eosinophils", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14539-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP14419-3\\\\LP18643-4\\\\LP14539-8\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\" + }, + { + "displayName": "Eosinophil # Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14539-8\\26449-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14539-8\\" + }, + { + "displayName": "Eosinophil # Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14539-8\\711-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14539-8\\" + }, + { + "displayName": "Eosinophil NFr Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14539-8\\26450-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14539-8\\" + }, + { + "displayName": "Eosinophil NFr Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14539-8\\713-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14539-8\\" + }, + { + "displayName": "Eosinophil NFr Bld Manual", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14539-8\\714-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14539-8\\" + }, + { + "displayName": "Neutrophils", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\" + }, + { + "displayName": "Neutrophils | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP47720-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\" + }, + { + "displayName": "Neutrophils # Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP47720-5\\26499-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP14419-3\\\\LP18643-4\\\\LP14267-6\\\\LP47720-5\\\\26499-4\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP47720-5\\" + }, + { + "displayName": "Neutrophils # Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP47720-5\\751-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP14419-3\\\\LP18643-4\\\\LP14267-6\\\\LP47720-5\\\\751-8\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP47720-5\\" + }, + { + "displayName": "Neutrophils NFr Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP47720-5\\26511-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP14419-3\\\\LP18643-4\\\\LP14267-6\\\\LP47720-5\\\\26511-6\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP47720-5\\" + }, + { + "displayName": "Neutrophils NFr Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP47720-5\\770-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP47720-5\\" + }, + { + "displayName": "Neutrophils.band form", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP15070-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\" + }, + { + "displayName": "Neuts Band NFr Bld Manual", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP15070-3\\764-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\LP15070-3\\" + }, + { + "displayName": "Neuts Seg NFr Bld Manual", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\769-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP14419-3\\\\LP18643-4\\\\LP14267-6\\\\769-0\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP18643-4\\LP14267-6\\" + }, + { + "displayName": "Leukocytes | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP41402-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\" + }, + { + "displayName": "WBC # Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP41402-6\\26464-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP14419-3\\\\LP41402-6\\\\26464-8\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP41402-6\\" + }, + { + "displayName": "WBC # Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP41402-6\\6690-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP41402-6\\" + }, + { + "displayName": "Lymphocytes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\" + }, + { + "displayName": "Lymphocytes | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\LP48347-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\" + }, + { + "displayName": "Lymphocytes # Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\LP48347-6\\26474-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\LP48347-6\\" + }, + { + "displayName": "Lymphocytes # Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\LP48347-6\\731-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\LP48347-6\\" + }, + { + "displayName": "Lymphocytes NFr Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\LP48347-6\\26478-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP14419-3\\\\LP14540-6\\\\LP48347-6\\\\26478-8\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\LP48347-6\\" + }, + { + "displayName": "Lymphocytes NFr Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\LP48347-6\\736-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP14419-3\\\\LP14540-6\\\\LP48347-6\\\\736-9\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\LP48347-6\\" + }, + { + "displayName": "Lymphocytes NFr Bld Manual", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\LP48347-6\\737-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\LP48347-6\\" + }, + { + "displayName": "Variant Lymphs NFr Bld Manual", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\735-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP14540-6\\" + }, + { + "displayName": "Monocytes | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP48349-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\" + }, + { + "displayName": "Monocytes # Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP48349-2\\26484-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP48349-2\\" + }, + { + "displayName": "Monocytes # Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP48349-2\\742-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP48349-2\\" + }, + { + "displayName": "Monocytes NFr Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP48349-2\\26485-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP19481-8\\\\LP15094-3\\\\LP14419-3\\\\LP48349-2\\\\26485-3\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP48349-2\\" + }, + { + "displayName": "Monocytes NFr Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP48349-2\\5905-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP48349-2\\" + }, + { + "displayName": "Monocytes NFr Bld Manual", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP48349-2\\744-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14419-3\\LP48349-2\\" + }, + { + "displayName": "Platelets", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\" + }, + { + "displayName": "Platelet indices", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\LP31668-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\" + }, + { + "displayName": "PMV Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\LP31668-4\\32623-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\LP31668-4\\" + }, + { + "displayName": "Platelets | Bld-Ser-Plas", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\LP41375-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\" + }, + { + "displayName": "Platelet # Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\LP41375-4\\26515-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\LP41375-4\\" + }, + { + "displayName": "Platelet # Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\LP41375-4\\777-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\LP41375-4\\" + }, + { + "displayName": "Platelet Bld Ql Smear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\LP41375-4\\9317-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP19481-8\\LP15094-3\\LP14597-6\\LP41375-4\\" + }, + { + "displayName": "Cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP14738-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\" + }, + { + "displayName": "Total Cells Counted Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP14738-6\\11282-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP14738-6\\" + }, + { + "displayName": "Erythrocyte sedimentation rate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16409-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\" + }, + { + "displayName": "ESR Bld Qn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16409-2\\30341-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP16409-2\\\\30341-2\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16409-2\\" + }, + { + "displayName": "ESR Bld Qn Westrgrn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16409-2\\4537-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP16409-2\\" + }, + { + "displayName": "Hematocrit", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP15101-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\" + }, + { + "displayName": "Hct VFr Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP15101-6\\20570-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP15101-6\\" + }, + { + "displayName": "Hct VFr Bld Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP15101-6\\4544-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP15101-6\\" + }, + { + "displayName": "Hemoglobin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP14449-0\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\" + }, + { + "displayName": "Hgb Bld-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP14449-0\\718-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP14449-0\\" + }, + { + "displayName": "Hgb BldA-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP14449-0\\30313-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP31756-7\\\\LP14449-0\\\\30313-1\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP14449-0\\" + }, + { + "displayName": "Hemoglobin normal variant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31617-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\" + }, + { + "displayName": "Hgb A1c MFr Bld", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31617-1\\4548-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31617-1\\" + }, + { + "displayName": "Hgb A1c MFr Bld HPLC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31617-1\\17856-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31617-1\\" + }, + { + "displayName": "Red cell indices", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\" + }, + { + "displayName": "Erythrocyte distribution width", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP17698-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\" + }, + { + "displayName": "RDW RBC Auto-Rto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP17698-9\\788-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP17698-9\\" + }, + { + "displayName": "Erythrocyte mean corpuscular hemoglobin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP17689-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\" + }, + { + "displayName": "MCH RBC Qn Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP17689-8\\785-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP17689-8\\" + }, + { + "displayName": "Erythrocyte mean corpuscular hemoglobin concentration", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP17695-5\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\" + }, + { + "displayName": "MCHC RBC Auto-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP17695-5\\786-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP17695-5\\" + }, + { + "displayName": "Erythrocyte mean corpuscular volume", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP15191-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\" + }, + { + "displayName": "MCV RBC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP15191-7\\30428-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP15191-7\\" + }, + { + "displayName": "MCV RBC Auto", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP15191-7\\787-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31756-7\\LP31669-2\\LP15191-7\\" + }, + { + "displayName": "Microbiology", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\" + }, + { + "displayName": "Microorganism", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\" + }, + { + "displayName": "Bacteria", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\" + }, + { + "displayName": "Bacteria identified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP37205-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\" + }, + { + "displayName": "Bacteria Bld Cult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP37205-9\\600-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP37205-9\\" + }, + { + "displayName": "Bacteria XXX Aerobe Cult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP37205-9\\634-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP37205-9\\" + }, + { + "displayName": "Bacteria XXX Cult", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP37205-9\\6463-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP37205-9\\" + }, + { + "displayName": "Chlamydia sp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP14250-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\" + }, + { + "displayName": "Chlamydia trachomatis DNA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP14250-2\\LP37618-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP14250-2\\" + }, + { + "displayName": "C trach DNA XXX Ql PCR", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP14250-2\\LP37618-3\\21613-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP14250-2\\LP37618-3\\" + }, + { + "displayName": "Chlamydia trachomatis rRNA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP14250-2\\LP37619-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP14250-2\\" + }, + { + "displayName": "C trach rRNA XXX Ql PCR", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP14250-2\\LP37619-1\\43304-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP14250-2\\LP37619-1\\" + }, + { + "displayName": "Neisseria sp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP28650-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\" + }, + { + "displayName": "Neisseria gonorrhoeae DNA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP28650-7\\LP39155-4\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31755-9\\\\LP14559-6\\\\LP98185-9\\\\LP28650-7\\\\LP39155-4\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP28650-7\\" + }, + { + "displayName": "N gonorrhoea DNA XXX Ql PCR", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP28650-7\\LP39155-4\\24111-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP28650-7\\LP39155-4\\" + }, + { + "displayName": "Neisseria gonorrhoeae rRNA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP28650-7\\LP39156-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP28650-7\\" + }, + { + "displayName": "N gonorrhoea rRNA XXX Ql PCR", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP28650-7\\LP39156-2\\43305-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP28650-7\\LP39156-2\\" + }, + { + "displayName": "Treponema sp", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP21118-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\" + }, + { + "displayName": "RPR Ser Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP21118-2\\20507-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31755-9\\\\LP14559-6\\\\LP98185-9\\\\LP21118-2\\\\20507-0\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP98185-9\\LP21118-2\\" + }, + { + "displayName": "Virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\" + }, + { + "displayName": "Hepatitis virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP21025-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\" + }, + { + "displayName": "Hepatitis B virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP21025-9\\LP14306-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP21025-9\\" + }, + { + "displayName": "HBV surface Ag Ser Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP21025-9\\LP14306-2\\5195-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP21025-9\\LP14306-2\\" + }, + { + "displayName": "HBV surface Ag Ser Ql EIA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP21025-9\\LP14306-2\\5196-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP21025-9\\LP14306-2\\" + }, + { + "displayName": "Hepatitis C virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP21025-9\\LP14400-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP21025-9\\" + }, + { + "displayName": "HCV Ab Ser EIA-aCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP21025-9\\LP14400-3\\5198-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP21025-9\\LP14400-3\\" + }, + { + "displayName": "HIV", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP17126-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\" + }, + { + "displayName": "HIV 1+O+2 Ab SerPl Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP17126-1\\48345-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31755-9\\\\LP14559-6\\\\LP14855-8\\\\LP17126-1\\\\48345-3\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP17126-1\\" + }, + { + "displayName": "Human papilloma virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP14836-8\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP31755-9\\\\LP14559-6\\\\LP14855-8\\\\LP14836-8\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\" + }, + { + "displayName": "HPV I/H Risk 1 DNA Cervix Ql bDNA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP14836-8\\30167-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP14836-8\\" + }, + { + "displayName": "Rubella virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP14416-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\" + }, + { + "displayName": "RUBV IgG Ser EIA-aCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP14416-9\\5334-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP14559-6\\LP14855-8\\LP14416-9\\" + }, + { + "displayName": "Misc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP30609-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\" + }, + { + "displayName": "Other microorganism DNA XXX Ql PCR", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP30609-9\\35691-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP31755-9\\LP30609-9\\" + }, + { + "displayName": "Serology", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32742-6\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\" + }, + { + "displayName": "Nuclear", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32742-6\\LP16670-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP32742-6\\\\LP16670-9\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32742-6\\" + }, + { + "displayName": "ANA Ser Ql", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32742-6\\LP16670-9\\8061-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32742-6\\LP16670-9\\" + }, + { + "displayName": "Rheumatoid fact Ser-aCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32742-6\\11572-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32742-6\\" + }, + { + "displayName": "Specimen attributes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\" + }, + { + "displayName": "Appearance", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\LP14542-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\" + }, + { + "displayName": "Appearance Ur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\LP14542-2\\5767-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\LP14542-2\\" + }, + { + "displayName": "Color Ur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\LP14542-2\\5778-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\LP14542-2\\" + }, + { + "displayName": "Character Ur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\19244-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\" + }, + { + "displayName": "Collect duration Time Ur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\13362-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\" + }, + { + "displayName": "Specimen source XXX", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\31208-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32743-4\\" + }, + { + "displayName": "Urinalysis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\", + "conceptCategory": "Lab", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\" + }, + { + "displayName": "Analytes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\" + }, + { + "displayName": "Bilirub Ur Ql Strip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\5770-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\" + }, + { + "displayName": "Glucose Ur Strip-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\5792-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\" + }, + { + "displayName": "Hgb Ur Ql Strip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\5794-3\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\" + }, + { + "displayName": "Ketones Ur Strip-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\5797-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\" + }, + { + "displayName": "Leukocyte esterase Ur Ql Strip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\5799-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP32744-2\\\\LP40317-7\\\\5799-2\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\" + }, + { + "displayName": "Nitrite Ur Ql Strip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\5802-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\" + }, + { + "displayName": "pH Ur Strip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\5803-2\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP32744-2\\\\LP40317-7\\\\5803-2\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\" + }, + { + "displayName": "Protein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\LP15838-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP32744-2\\\\LP40317-7\\\\LP15838-3\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\" + }, + { + "displayName": "Prot Ur Ql Strip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\LP15838-3\\20454-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\LP15838-3\\" + }, + { + "displayName": "Prot Ur Strip-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\LP15838-3\\5804-0\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\LP15838-3\\" + }, + { + "displayName": "Prot Ur-mCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\LP15838-3\\2888-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\LP15838-3\\" + }, + { + "displayName": "Sp Gr Ur Strip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\5811-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP32744-2\\\\LP40317-7\\\\5811-5\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\" + }, + { + "displayName": "Urobilinogen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\LP15942-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP32744-2\\\\LP40317-7\\\\LP15942-3\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\" + }, + { + "displayName": "Urobilinogen Ur Strip-aCnc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\LP15942-3\\19161-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP40317-7\\LP15942-3\\" + }, + { + "displayName": "Casts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14044-9\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\" + }, + { + "displayName": "Casts | Urine sediment", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14044-9\\LP47910-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14044-9\\" + }, + { + "displayName": "Casts #/area UrnS LPF", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14044-9\\LP47910-2\\9842-6\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14044-9\\LP47910-2\\" + }, + { + "displayName": "Hyaline casts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14044-9\\LP16857-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14044-9\\" + }, + { + "displayName": "Hyaline Casts #/area UrnS LPF", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14044-9\\LP16857-2\\5796-8\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14044-9\\LP16857-2\\" + }, + { + "displayName": "Hyaline Casts UrnS Ql Micro", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14044-9\\LP16857-2\\25162-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14044-9\\LP16857-2\\" + }, + { + "displayName": "Cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\" + }, + { + "displayName": "Bacteria #/area UrnS HPF", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\5769-5\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\" + }, + { + "displayName": "Epithelial cells", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14043-1\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\" + }, + { + "displayName": "Epi Cells #/area UrnS HPF", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14043-1\\5787-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP32744-2\\\\LP14738-6\\\\LP14043-1\\\\5787-7\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14043-1\\" + }, + { + "displayName": "Epi Cells UrnS Ql Micro", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14043-1\\20453-7\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14043-1\\" + }, + { + "displayName": "Epithelial cells.squamous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14043-1\\LP70260-2\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14043-1\\" + }, + { + "displayName": "Squamous #/area UrnS HPF", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14043-1\\LP70260-2\\11277-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14043-1\\LP70260-2\\" + }, + { + "displayName": "Erythrocytes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14304-7\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP32744-2\\\\LP14738-6\\\\LP14304-7\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\" + }, + { + "displayName": "RBC # Ur Strip", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14304-7\\20409-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14304-7\\" + }, + { + "displayName": "RBC # UrnS HPF", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14304-7\\5808-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": "Labs\\\\LP32744-2\\\\LP14738-6\\\\LP14304-7\\\\5808-1\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14304-7\\" + }, + { + "displayName": "RBC #/area UrnS HPF", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14304-7\\13945-1\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14304-7\\" + }, + { + "displayName": "Leukocytes", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14419-3\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\" + }, + { + "displayName": "WBC #/area UrnS HPF", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14419-3\\5821-4\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP14738-6\\LP14419-3\\" + }, + { + "displayName": "Mucus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP17770-6\\", + "conceptCategory": "Lab", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "Labs\\\\LP32744-2\\\\LP17770-6\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\" + }, + { + "displayName": "Mucous Threads UrnS Ql Micro", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP17770-6\\8247-9\\", + "conceptCategory": "Lab", + "conceptType": "Leaf", + "isActive": true, + "isLab": true, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\Labs\\LP32744-2\\LP17770-6\\" + }, + { + "displayName": "Medications", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": true, + "parentPath": null + }, + { + "displayName": "ANTIDOTES,DETERRENTS AND POISON CONTROL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ALCOHOL DETERRENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AD000\\\\AD100", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\" + }, + { + "displayName": "acamprosate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD100\\82819\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AD000\\\\AD100\\\\82819", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD100\\" + }, + { + "displayName": "Acamprosate calcium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD100\\152761\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AD000\\\\AD100\\\\152761", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD100\\" + }, + { + "displayName": "Disulfiram", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD100\\3554\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AD000\\\\AD100\\\\3554", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD100\\" + }, + { + "displayName": "Naltrexone hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD100\\105069\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD100\\" + }, + { + "displayName": "ANTIDOTES/DETERRENTS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\" + }, + { + "displayName": "Bupropion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\42347\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "Bupropion Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\203204\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "Ca-DTPA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\132879\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "Calcium Disodium Edetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\1903\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "Charcoal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\2296\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "digoxin antibodies Fab fragments", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\203223\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "Nicotine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\7407\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "nicotine polacrilex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\31765\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "PENTETATE ZINC TRISODIUM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\408077\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "pralidoxime", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\34345\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "Pralidoxime chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\55322\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "Sodium Benzoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\56455\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "sodium phenylacetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\56510\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "Sodium phenylbutyrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\214837\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "varenicline tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\636674\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AD000\\\\AD900\\\\636674", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD900\\" + }, + { + "displayName": "HEAVY METAL ANTAGONISTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\" + }, + { + "displayName": "Trientine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD300\\235370\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AD000\\\\AD300\\\\235370", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AD000\\AD300\\" + }, + { + "displayName": "ANTIHISTAMINES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANTIHISTAMINES,ALKYLAMINE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH104\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\" + }, + { + "displayName": "dexbrompheniramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH104\\22696\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH104\\" + }, + { + "displayName": "ANTIHISTAMINES,BUTYROPHENONE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH106\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\" + }, + { + "displayName": "fexofenadine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH106\\87636\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AH000\\\\AH106\\\\87636", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH106\\" + }, + { + "displayName": "ANTIHISTAMINES,ETHANOLAMINE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\" + }, + { + "displayName": "carbinoxamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\20220\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AH000\\\\AH102\\\\20220", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\" + }, + { + "displayName": "Clemastine Fumarate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\142430\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\" + }, + { + "displayName": "Dimenhydrinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\3444\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AH000\\\\AH102\\\\3444", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\" + }, + { + "displayName": "Diphenhydramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\3498\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\" + }, + { + "displayName": "Diphenhydramine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\1362\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\" + }, + { + "displayName": "Diphenhydramine Tannate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\360283\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AH000\\\\AH102\\\\360283", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\" + }, + { + "displayName": "doxylamine succinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\23665\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AH000\\\\AH102\\\\23665", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH102\\" + }, + { + "displayName": "ANTIHISTAMINES,ETHYLENEDIAMINE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH103\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AH000\\\\AH103", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\" + }, + { + "displayName": "Antazoline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH103\\865\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH103\\" + }, + { + "displayName": "Antazoline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH103\\81954\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH103\\" + }, + { + "displayName": "Antazoline Phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH103\\866\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH103\\" + }, + { + "displayName": "Tripelennamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH103\\10847\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH103\\" + }, + { + "displayName": "Tripelennamine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH103\\91063\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH103\\" + }, + { + "displayName": "ANTIHISTAMINES,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH109\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\" + }, + { + "displayName": "Astemizole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH109\\42328\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH109\\" + }, + { + "displayName": "ANTIHISTAMINES,PHENOTHIAZINE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\" + }, + { + "displayName": "methdilazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH100\\29648\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH100\\" + }, + { + "displayName": "Methdilazine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH100\\91121\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH100\\" + }, + { + "displayName": "Promethazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH100\\8745\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH100\\" + }, + { + "displayName": "Trimeprazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH100\\10825\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH100\\" + }, + { + "displayName": "trimeprazine tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH100\\164308\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH100\\" + }, + { + "displayName": "ANTIHISTAMINES,PIPERAZINE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AH000\\\\AH105", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\" + }, + { + "displayName": "Cetirizine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\20610\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\" + }, + { + "displayName": "Cetirizine Dihydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\203150\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AH000\\\\AH105\\\\203150", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\" + }, + { + "displayName": "Hydroxyzine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\5553\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\" + }, + { + "displayName": "Hydroxyzine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\154987\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AH000\\\\AH105\\\\154987", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\" + }, + { + "displayName": "Hydroxyzine Pamoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\203182\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\" + }, + { + "displayName": "levocetirizine dihydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\402349\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH105\\" + }, + { + "displayName": "ANTIHISTAMINES,PIPERIDINE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH107\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AH000\\\\AH107", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\" + }, + { + "displayName": "Azatadine maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH107\\58275\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH107\\" + }, + { + "displayName": "Cyproheptadine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH107\\104592\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AH000\\\\AH107\\\\104592", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH107\\" + }, + { + "displayName": "Phenindamine tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH107\\221137\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AH000\\AH107\\" + }, + { + "displayName": "ANTIMICROBIALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "AMINOGLYCOSIDES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM300", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "Amikacin Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM300\\643\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM300\\" + }, + { + "displayName": "Kanamycin Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM300\\203183\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM300\\" + }, + { + "displayName": "Netilmicin Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM300\\203193\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM300\\" + }, + { + "displayName": "Streptomycin Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM300\\10110\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM300\\" + }, + { + "displayName": "Tobramycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM300\\10627\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM300\\\\10627", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM300\\" + }, + { + "displayName": "ANTI-INFECTIVES,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "acetyl sulfisoxazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\40595\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Alatrofloxacin mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\221054\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Amphotericin B", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\732\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Bacitracin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\1291\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Bacitracin Zinc Complex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\11417\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\11417", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Benzyl Alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\1426\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Ciprofloxacin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\81981\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "CIPROFLOXACIN LACTATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\235851\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Clofazimine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\2592\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Colistimethate sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\48305\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\48305", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Colistin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\2709\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\2709", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Colistin Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\2710\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Erythromycin Estolate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\4055\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Erythromycin Ethylsuccinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\4056\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Erythromycin Gluceptate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\24346\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "erythromycin lactobionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\24347\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "erythromycin stearate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\24351\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "gemifloxacin mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\402429\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Glucose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\4850\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "grepafloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\83719\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\83719", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "GREPAFLOXACIN HYDROCHLORIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\236862\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "linezolid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\190376\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "lomefloxacin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\235762\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Metronidazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\6922\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "moxifloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\139462\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Moxifloxacin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\228750\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Nalidixic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\7240\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\7240", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Novobiocin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\7538\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\7538", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Novobiocin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\82057\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\82057", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Nystatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\7597\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\7597", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Ofloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\7623\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Oxytetracycline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\7821\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\7821", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Oxytetracycline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\4780\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Pentamidine Isethionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\7995\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Phenazopyridine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\203197\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Polymyxin B", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\8536\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Polymyxin B Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\388\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "rifaximin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\35619\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\35619", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Spectinomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\270\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\270", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Spectinomycin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\267342\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Sulfisoxazole Diolamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\10208\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Tetracycline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\10395\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Tetracycline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\142446\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "TRIMETHOPRIM SULFATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\221176\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\221176", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Trovafloxacin mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\221177\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Vancomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\11124\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\11124", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "Vancomycin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\66955\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM900\\\\66955", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM900\\" + }, + { + "displayName": "ANTIFUNGALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM700\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "Griseofulvin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM700\\5021\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM700\\" + }, + { + "displayName": "Griseofulvin microsize", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM700\\91077\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM700\\" + }, + { + "displayName": "GRISEOFULVIN, ULTRAMICROCRYSTALLINE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM700\\217398\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM700\\\\217398", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM700\\" + }, + { + "displayName": "MICAFUNGIN SODIUM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM700\\487070\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM700\\\\487070", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM700\\" + }, + { + "displayName": "ANTITUBERCULARS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "Capreomycin Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM500\\1987\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM500\\" + }, + { + "displayName": "Ethambutol Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM500\\142435\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM500\\" + }, + { + "displayName": "isoniazid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM500\\6038\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM500\\" + }, + { + "displayName": "ANTIVIRALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM800", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "abacavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\190521\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "abacavir sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\221052\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "adefovir dipivoxil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\141400\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Amantadine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\282415\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM800\\\\282415", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Atazanavir sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\358299\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "darunavir ethanolate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\644682\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Delavirdine Mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\142152\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Didanosine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\3364\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "emtricitabine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\276237\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM800\\\\276237", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Fosamprenavir calcium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\402365\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Indinavir Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\203153\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Lamivudine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\68244\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Nelfinavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\134527\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Nelfinavir Mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\266565\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM800\\\\266565", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Oseltamivir phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\259275\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM800\\\\259275", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Ritonavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\85762\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Saquinavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\83395\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Saquinavir Monomethanesulfonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\83394\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "tenofovir disoproxil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\300195\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Tenofovir disoproxil fumarate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\322248\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Trisodium Phosphonoformate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\57529\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Valacyclovir hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\236081\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "Vidarabine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\11194\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM800\\\\11194", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM800\\" + }, + { + "displayName": "CHLORAMPHENICOL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM150\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM150", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "Chloramphenicol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM150\\2348\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM150\\" + }, + { + "displayName": "chloramphenicol palmitate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM150\\20767\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM150\\\\20767", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM150\\" + }, + { + "displayName": "Chloramphenicol sodium succinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM150\\47998\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM150\\" + }, + { + "displayName": "chloramphenicol succinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM150\\20769\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM150\\" + }, + { + "displayName": "ERYTHROMYCINS/MACROLIDES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "Azithromycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM200\\18631\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM200\\" + }, + { + "displayName": "telithromycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM200\\274786\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM200\\\\274786", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM200\\" + }, + { + "displayName": "LINCOMYCINS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM350\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "Clindamycin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM350\\81982\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM350\\\\81982", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM350\\" + }, + { + "displayName": "Clindamycin palmitate hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM350\\91075\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM350\\" + }, + { + "displayName": "Lincomycin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM350\\82036\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM350\\\\82036", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM350\\" + }, + { + "displayName": "NITROFURANS ANTIMICROBIALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM600\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "Nitrofurantoin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM600\\7454\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM600\\" + }, + { + "displayName": "NITROFURANTOIN, MACROCRYSTALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM600\\235559\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM600\\" + }, + { + "displayName": "Nitrofurantoin, Monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM600\\221129\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM600\\\\221129", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM600\\" + }, + { + "displayName": "PENICILLINS AND BETA-LACTAM ANTIMICROBIALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "BETA-LACTAMS ANTIMICROBIALS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM119\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\" + }, + { + "displayName": "Cilastatin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM119\\82128\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM119\\\\82128", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM119\\" + }, + { + "displayName": "ertapenem sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM119\\353107\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM119\\" + }, + { + "displayName": "CEPHALOSPORIN 1ST GENERATION", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\" + }, + { + "displayName": "Cefadroxil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\2177\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "Cefadroxil monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\204175\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "Cefazolin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\2180\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "Cefazolin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\203171\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "Cephalexin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\2231\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "Cephalexin Monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\215948\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "Cephalexin Monohydrochloride, Monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\281942\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "Cephalothin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\2236\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "Cephapirin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\2238\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "Cephapirin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\42562\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "Cephradine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\2239\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "Sodium Cephalothin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\9860\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM115\\" + }, + { + "displayName": "CEPHALOSPORIN 2ND GENERATION", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM116", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\" + }, + { + "displayName": "Cefamandole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\2178\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "cefamandole nafate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\20473\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "Cefmetazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\2182\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "Cefmetazole Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\203140\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "Cefonicid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\2183\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "Cefonicid Monosodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\266801\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "Cefotetan Disodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\203141\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "Cefoxitin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\2189\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "Cefoxitin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\203118\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM116\\\\203118", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "cefpodoxime proxetil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\47835\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "cefuroxime axetil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\20493\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "Cefuroxime sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\204144\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM116\\" + }, + { + "displayName": "CEPHALOSPORIN 3RD GENERATION", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\" + }, + { + "displayName": "Cefoperazone Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\227214\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\" + }, + { + "displayName": "Cefotaxime Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\203117\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\" + }, + { + "displayName": "CEFTAZIDIME PENTAHYDRATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\235552\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM117\\\\235552", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\" + }, + { + "displayName": "CEFTAZIDIME SODIUM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\221071\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM117\\\\221071", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\" + }, + { + "displayName": "Ceftizoxime Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\82126\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\" + }, + { + "displayName": "Ceftriaxone Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\203172\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM117\\\\203172", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM117\\" + }, + { + "displayName": "CEPHALOSPORIN 4TH GENERATION", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM118\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\" + }, + { + "displayName": "cefditoren", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM118\\83682\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM118\\" + }, + { + "displayName": "cefditoren pivoxil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM118\\72611\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM118\\" + }, + { + "displayName": "Cefepime hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM118\\236058\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM118\\\\236058", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM118\\" + }, + { + "displayName": "EXTENDED SPECTRUM PENICILLINS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM113", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\" + }, + { + "displayName": "Azlocillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\1266\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "Azlocillin sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\203836\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "Carbenicillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\2015\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "Carbenicillin Disodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\258332\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM113\\\\258332", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "Carbenicillin indanyl sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\56461\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "Clavulanate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\48203\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "Mezlocillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\6927\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "Mezlocillin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\82048\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "Piperacillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\8339\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "Piperacillin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\203134\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "TAZOBACTAM SODIUM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\221167\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "Ticarcillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\10591\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "Ticarcillin disodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\142447\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM113\\" + }, + { + "displayName": "PENICILLIN-G RELATED PENICILLINS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\" + }, + { + "displayName": "Penicillin G", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\7980\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\" + }, + { + "displayName": "Penicillin G Potassium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\203133\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\" + }, + { + "displayName": "Penicillin G Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\9900\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\" + }, + { + "displayName": "Penicillin G, Benzathine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\7982\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM110\\\\7982", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\" + }, + { + "displayName": "Penicillin G, Procaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\7983\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM110\\\\7983", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\" + }, + { + "displayName": "Penicillin V", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\7984\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\" + }, + { + "displayName": "Penicillin V Potassium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\203195\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\" + }, + { + "displayName": "Probenecid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\8698\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM110\\" + }, + { + "displayName": "PENICILLINASE-RESISTANT PENICILLINS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM112", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\" + }, + { + "displayName": "Cloxacillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\2625\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\" + }, + { + "displayName": "Cloxacillin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\9864\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\" + }, + { + "displayName": "Dicloxacillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\3356\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\" + }, + { + "displayName": "Dicloxacillin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\267257\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM112\\\\267257", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\" + }, + { + "displayName": "Methicillin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\267073\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM112\\\\267073", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\" + }, + { + "displayName": "Nafcillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\7233\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\" + }, + { + "displayName": "Nafcillin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\9893\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\" + }, + { + "displayName": "NAFCILLIN SODIUM MONOHYDRATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\485026\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM112\\\\485026", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\" + }, + { + "displayName": "Oxacillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\7773\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\" + }, + { + "displayName": "Oxacillin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\9898\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM112\\\\9898", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM112\\" + }, + { + "displayName": "PENICILLINS,AMINO DERIVATIVES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\" + }, + { + "displayName": "Amoxicillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\723\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM111\\\\723", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\" + }, + { + "displayName": "Amoxicillin trihydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\133008\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM111\\\\133008", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\" + }, + { + "displayName": "Ampicillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\733\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\" + }, + { + "displayName": "ampicillin (anhydrous)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\221058\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\" + }, + { + "displayName": "Ampicillin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\81953\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM111\\\\81953", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\" + }, + { + "displayName": "Ampicillin Trihydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\203115\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\" + }, + { + "displayName": "bacampicillin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\18687\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\" + }, + { + "displayName": "Bacampicillin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\327584\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM111\\\\327584", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\" + }, + { + "displayName": "Sulbactam Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\82100\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM114\\\\AM111\\\\82100", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM114\\AM111\\" + }, + { + "displayName": "SULFONAMIDE/RELATED ANTIMICROBIALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM650\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM650", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "SULFADIAZINE SODIUM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM650\\220087\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM650\\\\220087", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM650\\" + }, + { + "displayName": "TETRACYCLINES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM250", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\" + }, + { + "displayName": "Chlortetracycline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\2408\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\" + }, + { + "displayName": "Chlortetracycline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\42545\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\" + }, + { + "displayName": "Demeclocycline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\81993\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM250\\\\81993", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\" + }, + { + "displayName": "doxycycline hyclate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\23663\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\" + }, + { + "displayName": "Doxycycline Monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\203122\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AM000\\\\AM250\\\\203122", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\" + }, + { + "displayName": "Minocycline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\6979\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AM000\\AM250\\" + }, + { + "displayName": "ANTINEOPLASTICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANTINEOPLASTIC ADJUVANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN400\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\" + }, + { + "displayName": "Levamisole Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN400\\227227\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN400\\" + }, + { + "displayName": "ANTINEOPLASTIC ANTIBIOTICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\" + }, + { + "displayName": "Bleomycin Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\1621\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\" + }, + { + "displayName": "DAUNORUBICIN CITRATE LIPOSOME", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\221087\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\" + }, + { + "displayName": "Daunorubicin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\81992\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\" + }, + { + "displayName": "Doxorubicin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\142433\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\" + }, + { + "displayName": "Idarubicin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\82124\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\" + }, + { + "displayName": "Liposomal doxorubicin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\466523\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\" + }, + { + "displayName": "Plicamycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\6995\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN200\\" + }, + { + "displayName": "ANTINEOPLASTIC HORMONES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN500", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\" + }, + { + "displayName": "Goserelin Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\203146\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN500\\\\203146", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\" + }, + { + "displayName": "Leuprolide Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\203217\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\" + }, + { + "displayName": "Tamoxifen Citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\40137\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\" + }, + { + "displayName": "Toremifene Citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\49953\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\" + }, + { + "displayName": "Triptorelin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\38782\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN500\\\\38782", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\" + }, + { + "displayName": "triptorelin pamoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\338529\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN500\\" + }, + { + "displayName": "ANTINEOPLASTIC,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\" + }, + { + "displayName": "bevacizumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\253337\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN900\\\\253337", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Carboplatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\40048\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "cetuximab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\318341\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Cisplatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\2555\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN900\\\\2555", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "erlotinib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\337525\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Erlotinib Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\477320\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Estramustine phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\105556\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Estramustine Phosphate Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\4090\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Imatinib mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\284924\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "lapatinib ditosylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\481474\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Mitoxantrone Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\203129\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "nilutamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\31805\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN900\\\\31805", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "paclitaxel protein-bound", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\486610\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Porfimer Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\333848\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN900\\\\333848", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Procarbazine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\66925\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "sorafenib tosylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\597744\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "sunitinib malate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\616275\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN900\\\\616275", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "sunitinib maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\616280\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN900\\\\616280", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Teniposide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\10362\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Topotecan Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\266573\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN900\\\\266573", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "tretinoin microsphere", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\221175\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN900\\\\221175", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Vinblastine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\11199\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Vincristine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\11202\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Vincristine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\11203\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "Vinorelbine tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\114527\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN900\\" + }, + { + "displayName": "ANTINEOPLASTICS,ALKYLATING AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\" + }, + { + "displayName": "cyclophosphamide lyophilized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN100\\221085\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN100\\" + }, + { + "displayName": "Mechlorethamine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN100\\155036\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN100\\" + }, + { + "displayName": "Uracil Mustard", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN100\\10996\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN100\\" + }, + { + "displayName": "ANTINEOPLASTICS,ANTIMETABOLITES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN300", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\" + }, + { + "displayName": "Azacitidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN300\\1251\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN000\\\\AN300\\\\1251", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN300\\" + }, + { + "displayName": "Fludarabine phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN300\\25102\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN300\\" + }, + { + "displayName": "Methotrexate, Sodium Salt", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN300\\287734\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN300\\" + }, + { + "displayName": "pemetrexed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN300\\68446\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN300\\" + }, + { + "displayName": "pemetrexed disodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN300\\282443\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN000\\AN300\\" + }, + { + "displayName": "ANTIPARASITICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AP000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANTHELMINTICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\" + }, + { + "displayName": "Mebendazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\6672\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AP000\\\\AP200\\\\6672", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\" + }, + { + "displayName": "Niclosamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\7402\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\" + }, + { + "displayName": "Oxamniquine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\7778\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AP000\\\\AP200\\\\7778", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\" + }, + { + "displayName": "piperazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\8340\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\" + }, + { + "displayName": "Piperazine citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\342992\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\" + }, + { + "displayName": "Pyrantel Pamoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\8985\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AP000\\\\AP200\\\\8985", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP200\\" + }, + { + "displayName": "ANTIPARASITICS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\" + }, + { + "displayName": "Paromomycin Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP900\\66912\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP900\\" + }, + { + "displayName": "ANTIPROTOZOALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AP000\\\\AP100", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\" + }, + { + "displayName": "ANTIMALARIALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AP000\\\\AP100\\\\AP101", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\" + }, + { + "displayName": "Calcium phosphate dibasic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\47627\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Cellulose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\2221\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Cellulose sodium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\342965\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Chloroguanide Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\142428\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Chloroquine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\2393\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Chloroquine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\203119\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Halofantrine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\58130\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AP000\\\\AP100\\\\AP101\\\\58130", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Hydroxychloroquine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\153972\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Primaquine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\8687\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Primaquine Phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\8689\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Quinacrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\9061\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Quinacrine Monohydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\82092\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Quinine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\9071\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "Quinine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\9075\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP101\\" + }, + { + "displayName": "ANTIPROTOZOALS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP109\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AP000\\\\AP100\\\\AP109", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\" + }, + { + "displayName": "Atovaquone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP109\\60212\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP109\\" + }, + { + "displayName": "Eflornithine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP109\\569\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP109\\" + }, + { + "displayName": "Eflornithine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP109\\81945\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP109\\" + }, + { + "displayName": "Tinidazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP109\\10612\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AP000\\\\AP100\\\\AP109\\\\10612", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP109\\" + }, + { + "displayName": "trimetrexate glucuronate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP109\\38725\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP100\\AP109\\" + }, + { + "displayName": "PEDICULICIDES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\" + }, + { + "displayName": "Lindane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP300\\1388\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AP000\\\\AP300\\\\1388", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AP000\\AP300\\" + }, + { + "displayName": "ANTISEPTICS/DISINFECTANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AS000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AS000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "Formaldehyde", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AS000\\4530\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AS000\\\\4530", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AS000\\" + }, + { + "displayName": "Sodium Nitrite", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AS000\\9894\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AS000\\" + }, + { + "displayName": "AUTONOMIC MEDICATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "AUTONOMIC AGENTS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\" + }, + { + "displayName": "Cevimeline hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU900\\260036\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AU000\\\\AU900\\\\260036", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU900\\" + }, + { + "displayName": "PARASYMPATHOLYTICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AU000\\\\AU350", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\" + }, + { + "displayName": "Benzatropine Methanesulfonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\18927\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\" + }, + { + "displayName": "Biperiden Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\91154\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\" + }, + { + "displayName": "Ethopropazine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\6541\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\" + }, + { + "displayName": "Mepenzolate bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\52560\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\" + }, + { + "displayName": "Methantheline bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\91163\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AU000\\\\AU350\\\\91163", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\" + }, + { + "displayName": "Methscopolamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\89785\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\" + }, + { + "displayName": "Procyclidine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\142443\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\" + }, + { + "displayName": "Propantheline Bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\8762\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\" + }, + { + "displayName": "tolterodine tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\221174\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\" + }, + { + "displayName": "Trihexyphenidyl Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\1115\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AU000\\\\AU350\\\\1115", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU350\\" + }, + { + "displayName": "PARASYMPATHOMIMETICS (CHOLINERGICS)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\" + }, + { + "displayName": "Ambenonium Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\624\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\" + }, + { + "displayName": "Bethanechol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\19257\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\" + }, + { + "displayName": "Bethanechol Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\47088\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\" + }, + { + "displayName": "Edrophonium Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\3754\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\" + }, + { + "displayName": "Guanidine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\50676\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\" + }, + { + "displayName": "Metoclopramide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\6915\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\" + }, + { + "displayName": "Metoclopramide Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\267036\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\" + }, + { + "displayName": "Neostigmine bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\82055\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AU000\\\\AU300\\\\82055", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\" + }, + { + "displayName": "Neostigmine Methylsulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\7316\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\" + }, + { + "displayName": "Pyridostigmine Bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\9001\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU300\\" + }, + { + "displayName": "SYMPATHOLYTICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\" + }, + { + "displayName": "Phenoxybenzamine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU200\\71512\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU200\\" + }, + { + "displayName": "Phentolamine Mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU200\\227240\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU200\\" + }, + { + "displayName": "SYMPATHOMIMETICS (ADRENERGICS)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\" + }, + { + "displayName": "arbutamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\61609\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\" + }, + { + "displayName": "ARBUTAMINE HYDROCHLORIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\236829\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AU000\\\\AU100\\\\236829", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\" + }, + { + "displayName": "Dobutamine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\203121\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\" + }, + { + "displayName": "Dopamine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\82010\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\" + }, + { + "displayName": "Fenoldopam Mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\203151\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\" + }, + { + "displayName": "Mephentermine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\82042\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\" + }, + { + "displayName": "Metaraminol Bitartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\6806\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AU000\\\\AU100\\\\6806", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\" + }, + { + "displayName": "Methoxamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\6853\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AU000\\\\AU100\\\\6853", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\" + }, + { + "displayName": "Methoxamine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\203187\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\" + }, + { + "displayName": "Norepinephrine Bitartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\7508\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\" + }, + { + "displayName": "Ritodrine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\105470\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AU000\\AU100\\" + }, + { + "displayName": "BLOOD PRODUCTS/MODIFIERS/VOLUME EXPANDERS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANTICOAGULANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\" + }, + { + "displayName": "ardeparin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\87866\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "ardeparin sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\87865\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "Dalteparin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\82137\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "Danaparoid sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\103843\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "Enoxaparin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\67108\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "Enoxaparin sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\221095\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "Fondaparinux sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\322154\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\BL000\\\\BL110\\\\322154", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "Heparin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\5224\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\BL000\\\\BL110\\\\5224", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "Heparin sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\9877\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "HEPARIN SODIUM (PORK)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\314659\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "Tinzaparin sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\104466\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "TIROFIBAN HYDROCHLORIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\253202\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "Warfarin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\114194\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL110\\" + }, + { + "displayName": "ANTIHEMORRHAGICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL116\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\" + }, + { + "displayName": "Calcium Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL116\\1901\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL116\\" + }, + { + "displayName": "Calcium Chloride Dihydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL116\\221068\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL116\\" + }, + { + "displayName": "Thrombin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL116\\10528\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL116\\" + }, + { + "displayName": "BLOOD DERIVATIVES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\" + }, + { + "displayName": "ANTIHEMOPHILIC FACTOR,HUMAN", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL500\\203083\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\BL000\\\\BL500\\\\203083", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL500\\" + }, + { + "displayName": "BLOOD FORMATION PRODUCTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL400\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\" + }, + { + "displayName": "Anagrelide hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL400\\236612\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL400\\" + }, + { + "displayName": "pegfilgrastim", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL400\\338036\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL400\\" + }, + { + "displayName": "PLATELET AGGREGATION INHIBITORS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL117\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\BL000\\\\BL117", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\" + }, + { + "displayName": "Factor VIIa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL117\\4256\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL117\\" + }, + { + "displayName": "Ticlopidine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL117\\97\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\BL000\\BL117\\" + }, + { + "displayName": "CARDIOVASCULAR MEDICATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ACE INHIBITORS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "Lisinopril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\29046\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV800\\\\29046", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\" + }, + { + "displayName": "Perindopril Erbumine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\72260\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV800\\\\72260", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV800\\" + }, + { + "displayName": "ALPHA BLOCKERS/RELATED", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV150\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV150", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "alfuzosin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV150\\17300\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV150\\\\17300", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV150\\" + }, + { + "displayName": "Doxazosin Mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV150\\39173\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV150\\\\39173", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV150\\" + }, + { + "displayName": "Tamsulosin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV150\\236495\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV150\\\\236495", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV150\\" + }, + { + "displayName": "Terazosin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV150\\235224\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV150\\\\235224", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV150\\" + }, + { + "displayName": "ANTIANGINALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV250\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "Amyl Nitrite", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV250\\742\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV250\\" + }, + { + "displayName": "Erythrityl Tetranitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV250\\4040\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV250\\" + }, + { + "displayName": "Nitroglycerin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV250\\4917\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV250\\" + }, + { + "displayName": "pentaerythritol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV250\\33055\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV250\\" + }, + { + "displayName": "Pentaerythritol Tetranitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV250\\7992\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV250\\" + }, + { + "displayName": "ANTIARRHYTHMICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV300", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "Amiodarone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\703\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Amiodarone hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\203114\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Bretylium Tosylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\1737\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Disopyramide Phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\203178\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Encainide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\42368\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV300\\\\42368", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Encainide Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\281189\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Flecainide Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\42686\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "ibutilide fumarate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\51256\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Iodine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\5933\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV300\\\\5933", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Mexiletine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\6926\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Mexiletine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\142138\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV300\\\\142138", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Moricizine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\221126\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Procainamide Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\155056\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Procaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\8701\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Procaine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\106558\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV300\\\\106558", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Propafenone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\8754\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Propafenone Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\203135\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Quinidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\9068\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "quinidine gluconate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\35220\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "quinidine polygalacturonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\41875\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Quinidine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\9069\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Tocainide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\42359\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "Tocainide Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\142145\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV300\\\\142145", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV300\\" + }, + { + "displayName": "ANTIHYPERTENSIVE COMBINATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "Amlodipine Besylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\104416\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Benazepril hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\235758\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\235758", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Bendroflumethiazide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\1369\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Bisoprolol Fumarate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\142146\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\142146", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "candesartan cilexetil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\135481\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Chlorothiazide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2396\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Chlorothiazide sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\91217\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\91217", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Chlorthalidone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\2409\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\2409", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Clonidine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\142432\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "deserpidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\62174\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\62174", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Enalapril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\3827\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\3827", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Enalapril Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\203123\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Eprosartan mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\236878\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\236878", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Fosinopril Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\227278\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Guanethidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\5036\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Guanethidine Monosulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\82023\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Guanethidine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\203181\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\203181", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Hydralazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\5470\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\5470", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Hydralazine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\82027\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Hydrochlorothiazide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\5487\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\5487", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Hydroflumethiazide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\5495\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Labetalol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\6185\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Labetalol hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\202693\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\202693", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Losartan Potassium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\203160\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Methyclothiazide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\6860\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\6860", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Methyldopa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\6876\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\6876", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "metoprolol succinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\221124\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Metoprolol Tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\203191\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "moexipril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\30131\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Moexipril hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\236066\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Potassium Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\8591\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\8591", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Prazosin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\203210\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Propranolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\8787\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Propranolol Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\82084\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\82084", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "quinethazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\59743\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\59743", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Rauvolfia serpentina extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\317836\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\317836", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Rauwolfia preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\78678\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Reserpine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\9260\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "telmisartan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\73494\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Timolol Hemihydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\221172\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\221172", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Timolol Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\42933\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV400\\\\42933", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Trichlormethiazide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\10772\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "valsartan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\69749\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "Verapamil hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\203138\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV400\\" + }, + { + "displayName": "ANTIHYPERTENSIVES,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "Clonidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\2599\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\" + }, + { + "displayName": "Guanabenz", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\5033\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV490\\\\5033", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\" + }, + { + "displayName": "Guanabenz Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\227225\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\" + }, + { + "displayName": "guanadrel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\26296\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV490\\\\26296", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\" + }, + { + "displayName": "Guanadrel sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\91239\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV490\\\\91239", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\" + }, + { + "displayName": "Guanfacine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\203142\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\" + }, + { + "displayName": "Mecamylamine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\91240\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV490\\\\91240", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\" + }, + { + "displayName": "Methyldopate hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\91241\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV490\\\\91241", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\" + }, + { + "displayName": "Sodium Nitroprusside", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\9895\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\" + }, + { + "displayName": "Trimethaphan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\10828\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\" + }, + { + "displayName": "trimethaphan camsylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\38680\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV490\\" + }, + { + "displayName": "ANTILIPEMIC AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "Atorvastatin calcium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\83366\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV350\\\\83366", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Cerivastatin sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\221072\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Cholestyramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\2447\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Clofibrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\2594\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Colestipol Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\104485\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Dextrothyroxine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\3292\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Dextrothyroxine Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\40070\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV350\\\\40070", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "ezetimibe", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\341248\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV350\\\\341248", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Fenofibrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\8703\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV350\\\\8703", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Fenofibrate micronized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\221100\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Fluvastatin sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\72875\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV350\\\\72875", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Gemfibrozil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\4719\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Lovastatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\6472\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Omega-3 Acid Ethyl Esters (USP)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\484348\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Pravastatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\42463\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV350\\\\42463", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Pravastatin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\203144\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Probucol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\8699\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Rosuvastatin calcium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\323828\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV350\\\\323828", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "Simvastatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\36567\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV350\\" + }, + { + "displayName": "BETA BLOCKERS/RELATED", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "Acebutolol Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\142130\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\" + }, + { + "displayName": "carvedilol phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\668310\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\" + }, + { + "displayName": "Esmolol hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\203222\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\" + }, + { + "displayName": "Metoprolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\6918\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\" + }, + { + "displayName": "NEBIVOLOL HCL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\236883\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\" + }, + { + "displayName": "Penbutolol Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\82070\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\" + }, + { + "displayName": "Sotalol Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\7008\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV100\\" + }, + { + "displayName": "CALCIUM CHANNEL BLOCKERS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "Amlodipine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\17767\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "atorvastatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\83367\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "Bepridil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\1436\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "Bepridil hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\235752\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "Diltiazem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\3443\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV200\\\\3443", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "Diltiazem Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\203211\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "Diltiazem Malate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\81999\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV200\\\\81999", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "Mibefradil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\83213\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "Mibefradil Dihydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\83214\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "Nicardipine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\235230\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "Nifedipine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\7417\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV200\\\\7417", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "Verapamil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\11170\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV200\\" + }, + { + "displayName": "CARDIOVASCULAR AGENTS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "Amrinone lactate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\91236\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\" + }, + { + "displayName": "flosequinan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\25089\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV900\\\\25089", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\" + }, + { + "displayName": "Inamrinone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\738\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV900\\\\738", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\" + }, + { + "displayName": "Midodrine Monohydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\227236\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV900\\\\227236", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\" + }, + { + "displayName": "Milrinone Lactate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\155120\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV900\\\\155120", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\" + }, + { + "displayName": "Poloxamer 188", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\155152\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV900\\\\155152", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\" + }, + { + "displayName": "treprostinil sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\342691\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV900\\" + }, + { + "displayName": "DIGITALIS GLYCOSIDES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV050\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV050", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "Deslanoside", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV050\\3248\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV050\\" + }, + { + "displayName": "Digitoxin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV050\\3403\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV050\\" + }, + { + "displayName": "Digoxin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV050\\3407\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV050\\" + }, + { + "displayName": "DIURETICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "LOOP DIURETICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV702\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\" + }, + { + "displayName": "Ethacrynate Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV702\\4108\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV702\\" + }, + { + "displayName": "Ethacrynic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV702\\4109\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV702\\" + }, + { + "displayName": "POTASSIUM SPARING/COMBINATIONS DIURETICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV704\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\" + }, + { + "displayName": "Amiloride Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV704\\142424\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV704\\" + }, + { + "displayName": "Triamterene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV704\\10763\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV700\\\\CV704\\\\10763", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV704\\" + }, + { + "displayName": "THIAZIDES/RELATED DIURETICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV701\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV700\\\\CV701", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\" + }, + { + "displayName": "benzothiazide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV701\\19008\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV700\\\\CV701\\\\19008", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV700\\CV701\\" + }, + { + "displayName": "PERIPHERAL VASODILATORS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\" + }, + { + "displayName": "Cyclandelate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV500\\2970\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV500\\\\2970", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV500\\" + }, + { + "displayName": "ethaverine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV500\\24464\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV500\\\\24464", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV500\\" + }, + { + "displayName": "Isoxsuprine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV500\\82033\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV500\\" + }, + { + "displayName": "Tolazoline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV500\\10634\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV500\\\\10634", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV500\\" + }, + { + "displayName": "Tolazoline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV500\\235450\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CV000\\\\CV500\\\\235450", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CV000\\CV500\\" + }, + { + "displayName": "CENTRAL NERVOUS SYSTEM MEDICATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANALGESICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\" + }, + { + "displayName": "ANTIMIGRAINE AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\" + }, + { + "displayName": "Almotriptan malate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\283792\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Dihydroergotamine Mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\203176\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Eletriptan Hydrobromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\360288\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Ergotamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\4025\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Ergotamine Tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\42676\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Frovatriptan succinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\322249\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Isometheptene mucate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\104994\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Methylergonovine Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\84158\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN105\\\\84158", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Methysergide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\6911\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN105\\\\6911", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Methysergide Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\203190\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Naratriptan hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\236690\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN105\\\\236690", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Pentobarbital Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\203085\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "rizatriptan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\88014\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Rizatriptan benzoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\237082\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Sumatriptan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\37418\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "Sumatriptan Succinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\67158\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "zolmitriptan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\135775\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN105\\" + }, + { + "displayName": "NON-OPIOID ANALGESICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN103", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\" + }, + { + "displayName": "Aminosalicylic sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\89753\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN103\\\\89753", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "butabarbital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\477631\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "Butabarbital sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\91109\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN103\\\\91109", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "butalbital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\19860\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN103\\\\19860", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "cinnamedrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\21130\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "CINNAMEDRINE HYDROCHLORIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\314557\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN103\\\\314557", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "dihydroxyaluminum aminoacetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\23162\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN103\\\\23162", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "ethoheptazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\24484\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN103\\\\24484", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "ETHOHEPTAZINE CITRATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\235416\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN103\\\\235416", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "magnesium carbonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\29155\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "Magnesium Oxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\6582\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "Meprobamate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\6760\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "pamabrom", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\54365\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "Tramadol Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\82110\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN103\\" + }, + { + "displayName": "NON-STEROIDAL ANTI-INFLAMMATORY ANALGESICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN104\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\" + }, + { + "displayName": "bromfenac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN104\\19737\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN104\\\\19737", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN104\\" + }, + { + "displayName": "OPIOID ANALGESICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\" + }, + { + "displayName": "Alfentanil hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\203203\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Alphaprodine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\594\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Alphaprodine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\7433\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Bupivacaine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\267396\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Buprenorphine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\203841\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Butorphanol Tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\203170\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "dezocine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\22713\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Droperidol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\3648\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Fentanyl", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\4337\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Fentanyl Citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\142436\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Lactose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\6211\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN101\\\\6211", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Levorphanol Tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\153973\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Meperidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\6754\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Meperidine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\103755\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Methadone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\6813\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN101\\\\6813", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Methadone Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\218337\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Nalbuphine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\154985\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Naloxone Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\203192\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Oxycodone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\7804\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Oxycodone Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\82063\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "oxycodone terephthalate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\159821\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Oxymorphone Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\82064\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Pentazocine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\104973\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Pentazocine Lactate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\203196\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Propoxyphene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\8785\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Propoxyphene Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\71517\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "propoxyphene napsylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\8786\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN101\\\\8786", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Remifentanil hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\236540\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "Sufentanil Citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\58964\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN101\\\\58964", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN101\\" + }, + { + "displayName": "OPIOID ANTAGONIST ANALGESICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN102\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN102", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\" + }, + { + "displayName": "Levomethadyl Acetate Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN102\\82043\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN102\\" + }, + { + "displayName": "Nalmefene hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN102\\236069\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN100\\\\CN102\\\\236069", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN100\\CN102\\" + }, + { + "displayName": "ANESTHETICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN200", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\" + }, + { + "displayName": "ANESTHETIC ADJUNCTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN205\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN200\\\\CN205", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\" + }, + { + "displayName": "Neostigmine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN205\\7315\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN200\\\\CN205\\\\7315", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN205\\" + }, + { + "displayName": "BARBITURIC ACID DERIVATIVE ANESTHETICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN202\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\" + }, + { + "displayName": "Methohexital Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN202\\91185\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN200\\\\CN202\\\\91185", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN202\\" + }, + { + "displayName": "Thiopental Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN202\\282416\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN202\\" + }, + { + "displayName": "GENERAL ANESTHETICS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN203\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\" + }, + { + "displayName": "Ketamine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN203\\203184\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN203\\" + }, + { + "displayName": "LOCAL ANESTHETICS,INJECTION", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN200\\\\CN204", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\" + }, + { + "displayName": "Articaine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\2117\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\" + }, + { + "displayName": "Bupivacaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\1815\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\" + }, + { + "displayName": "Chloroprocaine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\53616\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\" + }, + { + "displayName": "Etidocaine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\227221\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\" + }, + { + "displayName": "Levobupivacaine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\259454\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\" + }, + { + "displayName": "Mepivacaine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\203185\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\" + }, + { + "displayName": "Ropivacaine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\236539\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\" + }, + { + "displayName": "Tetracaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\10391\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN200\\\\CN204\\\\10391", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN200\\CN204\\" + }, + { + "displayName": "ANTICONVULSANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\" + }, + { + "displayName": "Carbamazepine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\2002\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Clonazepam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\2598\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Divalproex Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\266856\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "fosphenytoin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\72236\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Fosphenytoin sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\82806\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "gabapentin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\25480\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Levetiracetam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\114477\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Mephenytoin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\6757\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Mephobarbital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\6758\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Paraldehyde", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\7909\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "paramethadione", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\32894\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "phenacemide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\33253\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN400\\\\33253", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "phensuximide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\33309\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Phenytoin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\8183\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Phenytoin sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\71227\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Sodium Valproate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\9919\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "tiagabine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\31914\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Tiagabine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\236875\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN400\\\\236875", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "Valproate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\40254\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN400\\\\40254", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "zonisamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\39998\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN400\\\\39998", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN400\\" + }, + { + "displayName": "ANTIDEPRESSANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\" + }, + { + "displayName": "ANTIDEPRESSANTS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN600\\\\CN609", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\" + }, + { + "displayName": "Citalopram hydrobromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\221078\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "duloxetine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\72625\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "duloxetine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\476250\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "Escitalopram oxalate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\353108\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "Fluvoxamine Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\203143\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN600\\\\CN609\\\\203143", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "Maprotiline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\203126\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN600\\\\CN609\\\\203126", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "Nefazodone hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\236082\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "Paroxetine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\32937\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "Paroxetine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\235830\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "Sertraline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\155137\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "Trazodone Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\82112\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN600\\\\CN609\\\\82112", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "Venlafaxine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\235988\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN609\\" + }, + { + "displayName": "MONAMINE OXIDASE INHIBITOR ANTIDEPRESSANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN602\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\" + }, + { + "displayName": "Phenelzine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN602\\8124\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN602\\" + }, + { + "displayName": "Tranylcypromine sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN602\\91119\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN602\\" + }, + { + "displayName": "TRICYCLIC ANTIDEPRESSANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\" + }, + { + "displayName": "Clomipramine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\81984\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\" + }, + { + "displayName": "Desipramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\3247\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\" + }, + { + "displayName": "Desipramine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\203174\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\" + }, + { + "displayName": "Doxepin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\203179\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN600\\\\CN601\\\\203179", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\" + }, + { + "displayName": "Nortriptyline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\203130\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\" + }, + { + "displayName": "Protriptyline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\203199\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN600\\\\CN601\\\\203199", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\" + }, + { + "displayName": "Trimipramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\10834\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\" + }, + { + "displayName": "Trimipramine Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\71532\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN600\\CN601\\" + }, + { + "displayName": "ANTIPARKINSON AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\" + }, + { + "displayName": "Apomorphine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\1043\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\" + }, + { + "displayName": "Apomorphine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\71225\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\" + }, + { + "displayName": "Levodopa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\6375\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\" + }, + { + "displayName": "Pergolide Mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\8048\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\" + }, + { + "displayName": "Pramipexole dihydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\236747\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\" + }, + { + "displayName": "Ropinirole hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\236553\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\" + }, + { + "displayName": "Selegiline Hydrochloride, (R)-Isomer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\203137\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN500\\" + }, + { + "displayName": "ANTIPSYCHOTICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN700", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\" + }, + { + "displayName": "ANTIPSYCHOTICS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\" + }, + { + "displayName": "Clozapine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\2626\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN700\\\\CN709\\\\2626", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "Haloperidol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\5093\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "haloperidol decanoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\26420\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "Haloperidol lactate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\217483\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN700\\\\CN709\\\\217483", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "Loxapine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\6475\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "Loxapine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\91138\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "Molindone Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\82051\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "olanzapine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\61381\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "Quetiapine fumarate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\221153\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "Risperidone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\35636\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "ziprasidone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\115698\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN700\\\\CN709\\\\115698", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "ziprasidone hydrochloride, monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\284925\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN709\\" + }, + { + "displayName": "PHENOTHIAZINE/RELATED ANTIPSYCHOTICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN700\\\\CN701", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\" + }, + { + "displayName": "acetophenazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\16735\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Acetophenazine maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\91127\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Chlorpromazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\2403\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Chlorpromazine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\104728\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Chlorprothixene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\2406\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Chlorprothixene hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\91133\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Fluphenazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\4496\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "fluphenazine depot", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\25190\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Fluphenazine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\203207\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Mesoridazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\6779\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Mesoridazine besylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\203186\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Methotrimeprazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\6852\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN700\\\\CN701\\\\6852", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Methotrimeprazine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\91124\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN700\\\\CN701\\\\91124", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Perphenazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\8076\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN700\\\\CN701\\\\8076", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Promazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\8742\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN700\\\\CN701\\\\8742", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Promazine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\142444\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Thioridazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\10502\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN700\\\\CN701\\\\10502", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Thioridazine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\203165\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Thiothixene hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\91135\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Trifluoperazine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\91130\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Triflupromazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\10805\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN700\\\\CN701\\\\10805", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "Triflupromazine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\91125\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN700\\CN701\\" + }, + { + "displayName": "ANTIVERTIGO AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN550\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\" + }, + { + "displayName": "Buclizine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN550\\91070\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN550\\" + }, + { + "displayName": "Cyclizine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN550\\155017\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN550\\\\155017", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN550\\" + }, + { + "displayName": "Diphenidol hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN550\\47877\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN550\\" + }, + { + "displayName": "Meclizine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN550\\82041\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN550\\" + }, + { + "displayName": "CNS MEDICATIONS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\" + }, + { + "displayName": "Atomoxetine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\353103\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\" + }, + { + "displayName": "Benactyzine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\314518\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN900\\\\314518", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\" + }, + { + "displayName": "Donepezil hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\236559\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\" + }, + { + "displayName": "Fluoxetine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\4493\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN900\\\\4493", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\" + }, + { + "displayName": "Fluoxetine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\227224\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\" + }, + { + "displayName": "Memantine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\6719\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\" + }, + { + "displayName": "Memantine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\236685\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\" + }, + { + "displayName": "Tacrine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\235972\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN900\\" + }, + { + "displayName": "CNS STIMULANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\" + }, + { + "displayName": "AMPHETAMINE LIKE STIMULANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN802\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN800\\\\CN802", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\" + }, + { + "displayName": "dexmethylphenidate hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN802\\353105\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN802\\" + }, + { + "displayName": "Methylphenidate Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN802\\203188\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN802\\" + }, + { + "displayName": "AMPHETAMINES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\" + }, + { + "displayName": "Amphetamine aspartate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\221057\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN800\\\\CN801\\\\221057", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\" + }, + { + "displayName": "Amphetamine aspartate monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\405812\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\" + }, + { + "displayName": "Amphetamine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\81952\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN800\\\\CN801\\\\81952", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\" + }, + { + "displayName": "Dextroamphetamine saccharate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\221088\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN800\\\\CN801\\\\221088", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\" + }, + { + "displayName": "Dextroamphetamine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\3287\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\" + }, + { + "displayName": "lisdexamfetamine dimesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\673579\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN800\\\\CN801\\\\673579", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN800\\CN801\\" + }, + { + "displayName": "LITHIUM SALTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN750\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\" + }, + { + "displayName": "Lithium Carbonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN750\\42351\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN750\\" + }, + { + "displayName": "SEDATIVES/HYPONTICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\" + }, + { + "displayName": "BENZODIAZEPINE DERIVATIVE SEDATIVES/HYPNOTICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\" + }, + { + "displayName": "Alprazolam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\596\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\" + }, + { + "displayName": "Chlorazepate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\2353\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\" + }, + { + "displayName": "Clorazepate Dipotassium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\2607\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\" + }, + { + "displayName": "Flurazepam Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\71484\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\" + }, + { + "displayName": "halazepam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\26412\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\" + }, + { + "displayName": "Midazolam Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\203128\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\" + }, + { + "displayName": "Prazepam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\8627\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN302\\" + }, + { + "displayName": "SEDATIVES/HYPNOTICS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\" + }, + { + "displayName": "buspirone hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\203116\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\" + }, + { + "displayName": "Chloral Hydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\2344\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\" + }, + { + "displayName": "Chlormezanone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\2373\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\" + }, + { + "displayName": "Dexmedetomidine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\228054\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\CN000\\\\CN300\\\\CN309\\\\228054", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\" + }, + { + "displayName": "Glutethimide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\4903\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\" + }, + { + "displayName": "Methyprylon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\6910\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\" + }, + { + "displayName": "propiomazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\8770\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\" + }, + { + "displayName": "Propiomazine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\6232\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\" + }, + { + "displayName": "Valerian extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\285250\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\" + }, + { + "displayName": "Zolpidem tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\221183\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\CN000\\CN300\\CN309\\" + }, + { + "displayName": "DENTAL AND ORAL AGENTS,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OR000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "CARIOSTATICS,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OR000\\\\OR100", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OR000\\" + }, + { + "displayName": "Stannous Fluoride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR100\\10030\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR100\\" + }, + { + "displayName": "DENTAL AND ORAL AGENTS,TOPICAL,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OR000\\" + }, + { + "displayName": "Adrenaline Bitartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR900\\203180\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OR000\\\\OR900\\\\203180", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR900\\" + }, + { + "displayName": "Adrenaline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR900\\362\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR900\\" + }, + { + "displayName": "Aluminum chloride hexahydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR900\\17611\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OR000\\\\OR900\\\\17611", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR900\\" + }, + { + "displayName": "epinephryl borate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR900\\24255\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OR000\\\\OR900\\\\24255", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR900\\" + }, + { + "displayName": "MOUTHWASHES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OR000\\" + }, + { + "displayName": "Chlorhexidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR500\\2358\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR500\\" + }, + { + "displayName": "chlorhexidine gluconate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR500\\20791\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR500\\" + }, + { + "displayName": "methylbenzethonium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR500\\29829\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OR000\\OR500\\" + }, + { + "displayName": "DERMATOLOGICAL AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANALGESICS,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE650\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "Camphor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE650\\1952\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE650\\" + }, + { + "displayName": "Menthol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE650\\6750\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE650\\\\6750", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE650\\" + }, + { + "displayName": "Methacholine Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE650\\40165\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE650\\\\40165", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE650\\" + }, + { + "displayName": "ANTI-INFECTIVE,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE100", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "ANTI-INFECTIVE,TOPICAL,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE109\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\" + }, + { + "displayName": "Benzethonium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE109\\1390\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE109\\" + }, + { + "displayName": "oxychlorosene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE109\\32680\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE109\\" + }, + { + "displayName": "Oxychlorosene sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE109\\221136\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE109\\" + }, + { + "displayName": "Proflavine Hemisulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE109\\8724\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE100\\\\DE109\\\\8724", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE109\\" + }, + { + "displayName": "ANTIBACTERIAL,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE101\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\" + }, + { + "displayName": "cadexomer iodine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE101\\20012\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE100\\\\DE101\\\\20012", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE101\\" + }, + { + "displayName": "ichthammol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE101\\5645\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE101\\" + }, + { + "displayName": "Mafenide Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE101\\6573\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE100\\\\DE101\\\\6573", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE101\\" + }, + { + "displayName": "Meclocycline sulfosalicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE101\\203162\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE100\\\\DE101\\\\203162", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE101\\" + }, + { + "displayName": "ANTIFUNGAL,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE100\\\\DE102", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\" + }, + { + "displayName": "Butenafine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\236558\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "ciclopirox", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\21090\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "Ciclopirox olamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\52172\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE100\\\\DE102\\\\52172", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "Econazole Nitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\142434\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "Miconazole Nitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\42790\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "Naftifine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\91293\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE100\\\\DE102\\\\91293", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "Oxiconazole nitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\56226\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE100\\\\DE102\\\\56226", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "sertaconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\36435\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "sertaconazole nitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\236601\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "Sulconazole nitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\56798\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE100\\\\DE102\\\\56798", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "Terbinafine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\235838\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "Undecylenic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\10989\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "Zinc undecylenate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\89748\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE100\\\\DE102\\\\89748", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE102\\" + }, + { + "displayName": "ANTIVIRAL,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE103\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\" + }, + { + "displayName": "Acyclovir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE103\\281\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE103\\" + }, + { + "displayName": "Acyclovir Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE103\\81944\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE100\\DE103\\" + }, + { + "displayName": "ANTI-INFECTIVE/ANTI-INFLAMMATORY COMBINATIONS,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE250\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "Chlorcyclizine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE250\\235725\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE250\\" + }, + { + "displayName": "ANTI-INFLAMMATORY,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "alclometasone dipropionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\17268\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE200\\\\17268", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\" + }, + { + "displayName": "Clobetasol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\2590\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\" + }, + { + "displayName": "Clobetasol Propionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\21245\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE200\\\\21245", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\" + }, + { + "displayName": "clocortolone pivalate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\21250\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE200\\\\21250", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\" + }, + { + "displayName": "diflorasone diacetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\23033\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\" + }, + { + "displayName": "Diperodon hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\133043\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\" + }, + { + "displayName": "Fluocinolone Acetonide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\4461\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\" + }, + { + "displayName": "halobetasol propionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\45318\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\" + }, + { + "displayName": "Povidone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\8610\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\" + }, + { + "displayName": "Triamcinolone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\10759\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE200\\" + }, + { + "displayName": "ANTIACNE AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE750\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "ANTIACNE AGENTS,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE750\\DE752\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE750\\" + }, + { + "displayName": "azelaic acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE750\\DE752\\18602\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE750\\DE752\\" + }, + { + "displayName": "Benzoyl Peroxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE750\\DE752\\1418\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE750\\DE752\\" + }, + { + "displayName": "ANTIPSORIATIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "ANTIPSORIATICS,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\" + }, + { + "displayName": "Anthralin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\873\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\" + }, + { + "displayName": "Benzocaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\1399\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE800\\\\DE820\\\\1399", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\" + }, + { + "displayName": "Coal Tar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\2635\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE800\\\\DE820\\\\2635", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\" + }, + { + "displayName": "Lanolin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\6227\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\" + }, + { + "displayName": "Mercury, Ammoniated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\29542\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE800\\\\DE820\\\\29542", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\" + }, + { + "displayName": "methenamine hippurate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\29652\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE800\\\\DE820\\\\29652", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\" + }, + { + "displayName": "methenamine mandelate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\161623\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE800\\\\DE820\\\\161623", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE800\\DE820\\" + }, + { + "displayName": "DEODORANTS/ANTIPERSPIRANTS,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE450\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE450", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "aluminum chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE450\\46241\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE450\\\\46241", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE450\\" + }, + { + "displayName": "DERMATOLOGICALS,SYSTEMIC,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE890\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "Trioxsalen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE890\\10844\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE890\\" + }, + { + "displayName": "DERMATOLOGICALS,TOPICAL OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE900", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "aluminum acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\17609\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\" + }, + { + "displayName": "aluminum sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\17621\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE900\\\\17621", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\" + }, + { + "displayName": "chlorophyllin copper complex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\82242\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\" + }, + { + "displayName": "Deoxyribonucleases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\3210\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE900\\\\3210", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\" + }, + { + "displayName": "Plasmin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\4388\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\" + }, + { + "displayName": "sultilains", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\227410\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE900\\\\227410", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE900\\" + }, + { + "displayName": "EMOLLIENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE350\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE350", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "Lactic acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE350\\28393\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE350\\\\28393", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE350\\" + }, + { + "displayName": "KERATOLYTICS/CAUSTICS,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "Acetone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE500\\178\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE500\\" + }, + { + "displayName": "Cantharidin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE500\\1984\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE500\\" + }, + { + "displayName": "podophyllin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE500\\8462\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE500\\" + }, + { + "displayName": "Sulfur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE500\\10223\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE500\\" + }, + { + "displayName": "Trichloroacetic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE500\\10773\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE500\\" + }, + { + "displayName": "LOCAL ANESTHETICS,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE700\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE700", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "Butamben picrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE700\\221067\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE700\\" + }, + { + "displayName": "Dyclonine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE700\\91188\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE700\\" + }, + { + "displayName": "Prilocaine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE700\\2557\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE700\\\\2557", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE700\\" + }, + { + "displayName": "SOAPS/SHAMPOOS/SOAP-FREE CLEANSERS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE400", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\" + }, + { + "displayName": "chloroxine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\20875\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE400\\\\20875", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\" + }, + { + "displayName": "Glycerol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\4910\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\" + }, + { + "displayName": "Petrolatum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\8091\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE400\\\\8091", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\" + }, + { + "displayName": "salicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\9522\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\" + }, + { + "displayName": "Sodium Salicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\9907\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DE000\\\\DE400\\\\9907", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\" + }, + { + "displayName": "sodium thiosulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\36726\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\" + }, + { + "displayName": "titanium dioxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\38323\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\" + }, + { + "displayName": "zinc pyrithione", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\39952\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DE000\\DE400\\" + }, + { + "displayName": "DIAGNOSTIC AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DX000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "DIAGNOSTIC ANTIGENS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\" + }, + { + "displayName": "Histoplasmin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX300\\5363\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX300\\" + }, + { + "displayName": "DIAGNOSTICS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\" + }, + { + "displayName": "Arginine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\89918\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\" + }, + { + "displayName": "corticorelin ovine triflutate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\74670\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\" + }, + { + "displayName": "Gonadorelin Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\204193\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\" + }, + { + "displayName": "Gonadorelin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\204194\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\" + }, + { + "displayName": "histamine phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\26925\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DX000\\\\DX900\\\\26925", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\" + }, + { + "displayName": "Indigotindisulfonate Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\5771\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DX000\\\\DX900\\\\5771", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\" + }, + { + "displayName": "mangafodipir trisodium, anhydrous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\221119\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DX000\\\\DX900\\\\221119", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\" + }, + { + "displayName": "Pentagastrin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\7993\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DX000\\\\DX900\\\\7993", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX900\\" + }, + { + "displayName": "RADIOLOGICAL/CONTRAST MEDIA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DX000\\\\DX100", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\" + }, + { + "displayName": "IONIC CONTRAST MEDIA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\" + }, + { + "displayName": "Calcium Ipodate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\1911\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\" + }, + { + "displayName": "Diatrizoate Meglumine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\3320\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DX000\\\\DX100\\\\DX102\\\\3320", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\" + }, + { + "displayName": "Ipodate Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\9887\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DX000\\\\DX100\\\\DX102\\\\9887", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\" + }, + { + "displayName": "meglumine iodamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\29455\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\" + }, + { + "displayName": "meglumine iodipamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\29456\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\" + }, + { + "displayName": "Sodium Diatrizoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\3321\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\" + }, + { + "displayName": "Sodium Tyropanoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\282508\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX102\\" + }, + { + "displayName": "NON-IONIC CONTRAST MEDIA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX101\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DX000\\\\DX100\\\\DX101", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\" + }, + { + "displayName": "Aminohippurate Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX101\\203194\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX101\\" + }, + { + "displayName": "Sincalide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX101\\9800\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\DX000\\\\DX100\\\\DX101\\\\9800", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\DX000\\DX100\\DX101\\" + }, + { + "displayName": "GASTROINTESTINAL MEDICATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANTACIDS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA100", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\" + }, + { + "displayName": "ALUMINUM/MAGNESIUM CONTAINING ANTACIDS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA103\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA100\\\\GA103", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\" + }, + { + "displayName": "Aluminum Hydroxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA103\\612\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA100\\\\GA103\\\\612", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA103\\" + }, + { + "displayName": "ANTACIDS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA199\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\" + }, + { + "displayName": "Activated Charcoal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA199\\272\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA199\\" + }, + { + "displayName": "alginic acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA199\\17305\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA199\\" + }, + { + "displayName": "Simethicone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA199\\9796\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA199\\" + }, + { + "displayName": "CALCIUM CONTAINING ANTACIDS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA105\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA100\\\\GA105", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\" + }, + { + "displayName": "Calcium Carbonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA105\\1897\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA105\\" + }, + { + "displayName": "MAGALDRATE CONTAINING ANTACIDS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA107\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA100\\\\GA107", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\" + }, + { + "displayName": "magaldrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA107\\29151\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA100\\GA107\\" + }, + { + "displayName": "ANTIDIARRHEAL AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\" + }, + { + "displayName": "Atropine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\1223\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208\\\\1223", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Atropine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\153971\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "attapulgite", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\18516\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Belladonna Extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\89781\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208\\\\89781", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "bismuth subgallate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\19476\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "bismuth subsalicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\19478\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Difenoxin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\235373\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208\\\\235373", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Diphenoxylate Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\82005\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208\\\\82005", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "homatropine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\27084\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Homatropine hydrobromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\235428\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208\\\\235428", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "homatropine methylbromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\27085\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Hyoscyamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\153970\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208\\\\153970", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Hyoscyamine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\1225\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208\\\\1225", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Kaolin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\6102\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208\\\\6102", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Lactobacillus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\6204\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Loperamide Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\82038\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Morphine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\30236\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Octreotide Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\221130\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Opium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\7676\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208\\\\7676", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "opium tincture", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\221134\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "OPIUM, POWDERED", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\221135\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208\\\\221135", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "pectin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\32987\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Phenobarbital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\8134\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Phenobarbital Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\82077\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA208\\\\82077", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "phenyl salicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\36122\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "potassium citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\54993\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Scopolamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\9601\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "Scopolamine Hydrobromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\9603\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "SIMETHICONE-CELLULOSE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\283585\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA208\\" + }, + { + "displayName": "ANTIEMETICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\" + }, + { + "displayName": "benzquinamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\19041\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\" + }, + { + "displayName": "Benzquinamide hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\91272\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA605\\\\91272", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\" + }, + { + "displayName": "dolasetron mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\29398\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA605\\\\29398", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\" + }, + { + "displayName": "Granisetron Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\142149\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA605\\\\142149", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\" + }, + { + "displayName": "nabilone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\31447\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\" + }, + { + "displayName": "Ondansetron Monohydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\203148\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA605\\\\203148", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\" + }, + { + "displayName": "Palonosetron hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\397405\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA605\\\\397405", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\" + }, + { + "displayName": "Thiethylperazine Malate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\71529\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA605\\\\71529", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\" + }, + { + "displayName": "Trimethobenzamide hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\57227\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA605\\\\57227", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA605\\" + }, + { + "displayName": "ANTIMUSCARINICS/ANTISPASMODICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA800", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\" + }, + { + "displayName": "ANTIMUSCARINIC/ANTIPASMODIC COMBINATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\GA802\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\" + }, + { + "displayName": "Clidinium bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\GA802\\48212\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\GA802\\" + }, + { + "displayName": "Dicyclomine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\GA802\\3361\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\GA802\\" + }, + { + "displayName": "Dicyclomine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\GA802\\152021\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\GA802\\" + }, + { + "displayName": "oxyphencyclimine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\GA802\\32698\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\GA802\\" + }, + { + "displayName": "Oxyphencyclimine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\GA802\\91164\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA800\\GA802\\" + }, + { + "displayName": "ANTIULCER AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\" + }, + { + "displayName": "H. PYLORI AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA300\\GA303\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA300\\" + }, + { + "displayName": "ranitidine bismuth citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA300\\GA303\\55471\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA300\\GA303\\" + }, + { + "displayName": "Ranitidine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA300\\GA303\\203136\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA300\\GA303\\" + }, + { + "displayName": "HISTAMINE ANTAGONISTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA300\\GA301\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA300\\" + }, + { + "displayName": "Cimetidine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA300\\GA301\\91251\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA300\\GA301\\" + }, + { + "displayName": "APPETITE SUPPRESSANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA750", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\" + }, + { + "displayName": "CENTRALLY-ACTING APPETITE SUPPRESSANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\" + }, + { + "displayName": "Benzphetamine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\142425\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA750\\\\GA751\\\\142425", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\" + }, + { + "displayName": "Dexfenfluramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\3268\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\" + }, + { + "displayName": "Dexfenfluramine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\155142\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA750\\\\GA751\\\\155142", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\" + }, + { + "displayName": "Diethylpropion Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\81998\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\" + }, + { + "displayName": "Fenfluramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\4328\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\" + }, + { + "displayName": "Fenfluramine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\82018\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\" + }, + { + "displayName": "phendimetrazine tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\58157\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\" + }, + { + "displayName": "Phentermine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\82078\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA750\\\\GA751\\\\82078", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\" + }, + { + "displayName": "Sibutramine hydrochloride monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\221160\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA750\\GA751\\" + }, + { + "displayName": "DIGESTANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA500", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\" + }, + { + "displayName": "Amylases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\743\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\" + }, + { + "displayName": "Dehydrocholic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\3141\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\" + }, + { + "displayName": "Endopeptidases", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\8031\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA500\\\\8031", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\" + }, + { + "displayName": "Lipase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\6406\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\" + }, + { + "displayName": "Pancreatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\7880\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\" + }, + { + "displayName": "Pyridoxine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\203164\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA500\\\\203164", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA500\\" + }, + { + "displayName": "GASTRIC MEDICATIONS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA900", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\" + }, + { + "displayName": "alosetron", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\85248\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "alosetron hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\85247\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Balsalazide disodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\153718\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "calcium polycarbophil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\20063\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Chenodeoxycholic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\2323\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "cisapride monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\221077\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Esomeprazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\283742\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA900\\\\283742", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Esomeprazole magnesium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\283562\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA900\\\\283562", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Olsalazine sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\104123\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Omeprazole magnesium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\236486\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "pantoprazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\40790\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA900\\\\40790", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Pantoprazole sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\253191\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA900\\\\253191", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Prochlorperazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\8704\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Prochlorperazine Edisylate Salt", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\8705\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Prochlorperazine Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\8706\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Sulfasalazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\9524\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Tegaserod maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\339270\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA900\\\\339270", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "Ursodiol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\11065\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA900\\" + }, + { + "displayName": "LAXATIVES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA200", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\" + }, + { + "displayName": "BULK-FORMING LAXATIVES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA201\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA200\\\\GA201", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\" + }, + { + "displayName": "Psyllium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA201\\8928\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA200\\\\GA201\\\\8928", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA201\\" + }, + { + "displayName": "PSYLLIUM HYDROCOLLOID", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA201\\314809\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA201\\" + }, + { + "displayName": "PSYLLIUM MUCILLOID", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA201\\314811\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA200\\\\GA201\\\\314811", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA201\\" + }, + { + "displayName": "HYPEROSMOTIC LAXATIVES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA202\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA200\\\\GA202", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\" + }, + { + "displayName": "Magnesium Hydroxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA202\\6581\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA202\\" + }, + { + "displayName": "LAXATIVES,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA209\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\" + }, + { + "displayName": "Bisacodyl", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA209\\1596\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA209\\" + }, + { + "displayName": "danthron", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA209\\22293\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA209\\" + }, + { + "displayName": "magnesium citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA209\\52356\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA200\\\\GA209\\\\52356", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA209\\" + }, + { + "displayName": "Phenolphthalein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA209\\155122\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA209\\" + }, + { + "displayName": "STIMULANT LAXATIVES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\" + }, + { + "displayName": "Dioctyl Sulfosuccinic Acid, Calcium Salt", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\82001\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\" + }, + { + "displayName": "Dioctyl Sulfosuccinic Acid, Potassium Salt", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\82002\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\" + }, + { + "displayName": "Docusate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\82003\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\" + }, + { + "displayName": "Docusate Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\71722\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\" + }, + { + "displayName": "SENNA CONCENTRATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\219860\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\" + }, + { + "displayName": "Senna Extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\9658\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GA000\\\\GA200\\\\GA204\\\\9658", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\" + }, + { + "displayName": "Sennosides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\36387\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GA000\\GA200\\GA204\\" + }, + { + "displayName": "GENITOURINARY MEDICATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GU000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANALGESICS,URINARY", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GU000\\\\GU100", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\" + }, + { + "displayName": "Methylene blue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU100\\6878\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GU000\\\\GU100\\\\6878", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU100\\" + }, + { + "displayName": "ANTI-INFECTIVES,VAGINAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\" + }, + { + "displayName": "Butoconazole nitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\47464\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\" + }, + { + "displayName": "Clotrimazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\2623\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\" + }, + { + "displayName": "Gentian Violet", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\4778\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\" + }, + { + "displayName": "sodium sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\36721\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\" + }, + { + "displayName": "sulfabenzamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\37320\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\" + }, + { + "displayName": "Sulfanilamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\10184\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\" + }, + { + "displayName": "sulfathiazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\10193\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU300\\" + }, + { + "displayName": "ANTISPASMODICS,URINARY", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\" + }, + { + "displayName": "ANTISPASMODICS,URINARY", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GU000\\\\GU200\\\\GU201", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\" + }, + { + "displayName": "darifenacin hydrobromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\485417\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\" + }, + { + "displayName": "Flavoxate Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\142437\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\" + }, + { + "displayName": "Oxybutynin chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\54251\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GU000\\\\GU200\\\\GU201\\\\54251", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\" + }, + { + "displayName": "Solifenacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\322167\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\" + }, + { + "displayName": "Solifenacin Succinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\476588\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GU000\\\\GU200\\\\GU201\\\\476588", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\" + }, + { + "displayName": "Trospium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\236778\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GU000\\\\GU200\\\\GU201\\\\236778", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\" + }, + { + "displayName": "trospium chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\38891\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GU000\\\\GU200\\\\GU201\\\\38891", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU200\\GU201\\" + }, + { + "displayName": "GENITO-URINARY AGENTS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\" + }, + { + "displayName": "aluminum potassium sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\54989\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "boric acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\1700\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "Cysteine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\221086\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "Pentosan Polysulphate Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\134413\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "Potassium bitartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\223779\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "Povidone-Iodine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\8611\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GU000\\\\GU900\\\\8611", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "Sevelamer hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\237125\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "Sildenafil citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\221161\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "sodium borate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\36680\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "tadalafil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\358263\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "vardenafil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\306674\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "Vardenafil hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\307306\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU900\\" + }, + { + "displayName": "OXYTOCICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU600\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GU000\\\\GU600", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\" + }, + { + "displayName": "Ergonovine Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU600\\24313\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU600\\" + }, + { + "displayName": "Oxytocin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU600\\7824\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\GU000\\\\GU600\\\\7824", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU600\\" + }, + { + "displayName": "Urea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU600\\11002\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\GU000\\GU600\\" + }, + { + "displayName": "HERBS/ALTERNATIVE THERAPIES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "Alanine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\426\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\426", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Bee pollen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\253157\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\253157", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Capsaicin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\1992\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\1992", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Cranberry preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\125933\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Damiana extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\236802\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "dehydroepiandrosterone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\3143\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\3143", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Dimethyl sulfone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\23247\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Flaxseed extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\318224\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Ginger extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\285241\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Ginseng Preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\325526\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\325526", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Glutamate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\70602\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Glutamic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\25916\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Glycine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\4919\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Gotu Kola Extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\319837\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\319837", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "GRAPE SEED EXTRACT", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\237116\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Green tea preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\253173\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\253173", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Guarana preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\236953\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Levocarnitine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\42955\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\42955", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "S-Adenosylmethionine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\9504\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Saw palmetto extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\236344\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Taurine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\10337\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\10337", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Tyrosine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\10962\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Vitamin K", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\11258\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\11258", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Yohimbe Preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\220982\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\220982", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "Yohimbine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HA000\\133041\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HA000\\\\133041", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HA000\\" + }, + { + "displayName": "HORMONES/SYNTHETICS/MODIFIERS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ADRENAL CORTICOSTERIODS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS050", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\" + }, + { + "displayName": "GLUCOCORTICOIDS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS050\\\\HS051", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\" + }, + { + "displayName": "Augmented betamethasone dipropionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\215664\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "Betamethasone acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\1516\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS050\\\\HS051\\\\1516", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "betamethasone sodium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\203220\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "Betamethasone valerate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\227897\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "betamethasone-17,21-dipropionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\19254\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "Budesonide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\19831\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "Cortisone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\2878\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS050\\\\HS051\\\\2878", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "cortisone acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\21655\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "methylprednisolone acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\155323\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "methylprednisolone sodium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\29917\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS050\\\\HS051\\\\29917", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "Methylprednisolone Sodium Succinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\203189\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "paramethasone acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\32895\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS050\\\\HS051\\\\32895", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS051\\" + }, + { + "displayName": "MINERALOCORTICOIDS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS052\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\" + }, + { + "displayName": "deoxycortone pivalate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS052\\22537\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS052\\" + }, + { + "displayName": "Desoxycorticosterone acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS052\\258333\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS050\\\\HS052\\\\258333", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS050\\HS052\\" + }, + { + "displayName": "ANDROGENS/ANABOLICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS100", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\" + }, + { + "displayName": "Methandrostenolone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS100\\6818\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS100\\" + }, + { + "displayName": "nandrolone decanoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS100\\31494\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS100\\" + }, + { + "displayName": "Testosterone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS100\\10379\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS100\\\\10379", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS100\\" + }, + { + "displayName": "BLOOD GLUCOSE REGULATION AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\" + }, + { + "displayName": "ANTIHYPOGLYCEMICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS503\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\" + }, + { + "displayName": "glucagon (rDNA)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS503\\261716\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS503\\" + }, + { + "displayName": "GLUCAGON HYDROCHLORIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS503\\253170\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS503\\" + }, + { + "displayName": "pramlintide acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS503\\356773\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS503\\" + }, + { + "displayName": "INSULIN", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\" + }, + { + "displayName": "Insulin Lispro", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\86009\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS500\\\\HS501\\\\86009", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Insulin, Aspart, Human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\51428\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Insulin, Glulisine, Human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\400008\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Insulin, Prompt Zinc, Beef", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\235284\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Insulin, Prompt Zinc, Beef-Pork", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\235283\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "insulin, protamine zinc, beef", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\235278\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Insulin, Protamine Zinc, Pork", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\235279\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Insulin, Regular, Beef", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\314686\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Insulin, Regular, Beef-Pork", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\235275\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Lente Insulin, Beef-Pork", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\314682\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "NPH Insulin, Human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\253181\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Regular Insulin, Human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\253182\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Ultralente Insulin, Beef", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\235282\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Ultralente Insulin, Beef-Pork", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\235281\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "Ultralente Insulin, Human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\221110\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS501\\" + }, + { + "displayName": "ORAL HYPOGLYCEMIC AGENTS,ORAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\" + }, + { + "displayName": "GLYBURIDE, MICRONIZED", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\217364\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\" + }, + { + "displayName": "Metformin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\6809\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS500\\\\HS502\\\\6809", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\" + }, + { + "displayName": "Metformin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\235743\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\" + }, + { + "displayName": "Pioglitazone hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\259319\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS500\\\\HS502\\\\259319", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\" + }, + { + "displayName": "rosiglitazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\84108\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\" + }, + { + "displayName": "Rosiglitazone maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\253198\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS500\\\\HS502\\\\253198", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\" + }, + { + "displayName": "sitagliptin phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\621590\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS500\\\\HS502\\\\621590", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\" + }, + { + "displayName": "Tolazamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\10633\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\" + }, + { + "displayName": "Tolbutamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\10635\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\" + }, + { + "displayName": "Tolbutamide sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\221173\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\" + }, + { + "displayName": "troglitazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\72610\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS500\\HS502\\" + }, + { + "displayName": "CONTRACEPTIVES,SYSTEMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS200", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\" + }, + { + "displayName": "Desogestrel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS200\\22656\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS200\\\\22656", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS200\\" + }, + { + "displayName": "Ethynodiol Diacetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS200\\4170\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS200\\\\4170", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS200\\" + }, + { + "displayName": "Mestranol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS200\\6782\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS200\\\\6782", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS200\\" + }, + { + "displayName": "norgestimate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS200\\31994\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS200\\\\31994", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS200\\" + }, + { + "displayName": "Norgestrel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS200\\7518\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS200\\\\7518", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS200\\" + }, + { + "displayName": "ESTROGENS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS300", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\" + }, + { + "displayName": "Chlordiazepoxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS300\\2356\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS300\\" + }, + { + "displayName": "Chlordiazepoxide Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS300\\203173\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS300\\\\203173", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS300\\" + }, + { + "displayName": "Chlorotrianisene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS300\\2397\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS300\\" + }, + { + "displayName": "Estrogens, Esterified (USP)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS300\\214549\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS300\\\\214549", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS300\\" + }, + { + "displayName": "Levonorgestrel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS300\\6373\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS300\\" + }, + { + "displayName": "GONADOTROPINS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS400\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\" + }, + { + "displayName": "choriogonadotropin alfa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS400\\283550\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS400\\" + }, + { + "displayName": "Clomiphene Citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS400\\142431\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS400\\" + }, + { + "displayName": "Ganirelix acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS400\\259264\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS400\\" + }, + { + "displayName": "Human Chorionic Gonadotropin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS400\\340705\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS400\\" + }, + { + "displayName": "Lutropin alfa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS400\\388084\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS400\\" + }, + { + "displayName": "HORMONES/SYNTHETICS/MODIFIERS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\" + }, + { + "displayName": "Acetic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\168\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS900\\\\168", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Alendronate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\46041\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS900\\\\46041", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Alendronate Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\203152\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Alfuzosin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\46043\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "cinacalcet", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\407990\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS900\\\\407990", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "cinacalcet hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\384379\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Deamino Arginine Vasopressin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\3251\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Diethylstilbestrol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\3390\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Estradiol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\4083\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "estradiol 17 beta-cypionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\24384\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Estradiol acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\405416\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS900\\\\405416", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "estradiol valerate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\24395\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Estrogens, Conjugated (USP)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\4099\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Ethinyl Estradiol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\4124\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS900\\\\4124", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Etidronate Disodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\9872\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS900\\\\9872", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Fluoxymesterone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\4494\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Lidocaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\6387\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Medroxyprogesterone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\6691\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Medroxyprogesterone 17-Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\29438\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Methyltestosterone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\6904\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS900\\\\6904", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Nafarelin Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\203147\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS900\\\\203147", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Nonoxynol-9", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\53750\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "norethindrone acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\31983\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Pamidronate Disodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\105443\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "phenol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\33290\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Phenol Liquid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\239351\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "pramoxine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\34347\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Raloxifene Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\166551\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "risedronate sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\60334\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "salmon calcitonin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\36118\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS900\\\\36118", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Secretin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\9627\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Sermorelin Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\58932\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Sodium Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\56443\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Sulfacetamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\10169\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "testosterone enanthate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\37859\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS900\\\\37859", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Testosterone Propionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\10382\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Tiludronate disodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\83153\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS900\\\\83153", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "Vitamin E", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\11256\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS900\\" + }, + { + "displayName": "PITUITARY", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS700", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\" + }, + { + "displayName": "ANTERIOR PITUITARY", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\HS701\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS700\\\\HS701", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\" + }, + { + "displayName": "Cetrorelix acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\HS701\\259338\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\HS701\\" + }, + { + "displayName": "lanreotide acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\HS701\\236167\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\HS701\\" + }, + { + "displayName": "SOMATROPIN (RECOMBINANT DNA ORIGIN)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\HS701\\314845\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS700\\\\HS701\\\\314845", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\HS701\\" + }, + { + "displayName": "POSTERIOR PITUITARY", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\HS702\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\" + }, + { + "displayName": "Desmopressin Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\HS702\\42634\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS700\\\\HS702\\\\42634", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS700\\HS702\\" + }, + { + "displayName": "PROGESTINS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS800\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\" + }, + { + "displayName": "17-alpha-hydroxy-progesterone caproate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS800\\12488\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS800\\" + }, + { + "displayName": "Megestrol Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS800\\29451\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS800\\" + }, + { + "displayName": "Norethindrone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS800\\7514\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS800\\" + }, + { + "displayName": "Progesterone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS800\\8727\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS800\\" + }, + { + "displayName": "progesterone, micronized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS800\\259409\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS800\\" + }, + { + "displayName": "PROSTAGLANDINS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS875\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\" + }, + { + "displayName": "Alprostadil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS875\\598\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS875\\\\598", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS875\\" + }, + { + "displayName": "carboprost tromethamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS875\\20259\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS875\\" + }, + { + "displayName": "Epoprostenol Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS875\\104463\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\HS000\\\\HS875\\\\104463", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS875\\" + }, + { + "displayName": "THYROID MODIFIERS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS850\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\" + }, + { + "displayName": "THYROID SUPPLEMENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS850\\HS851\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS850\\" + }, + { + "displayName": "Levothyroxine Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS850\\HS851\\40144\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS850\\HS851\\" + }, + { + "displayName": "liothyronine sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS850\\HS851\\142448\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS850\\HS851\\" + }, + { + "displayName": "Thyroxine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS850\\HS851\\10582\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\HS000\\HS850\\HS851\\" + }, + { + "displayName": "IMMUNOLOGICAL AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\IM000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "IMMUNE STIMULANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\" + }, + { + "displayName": "Interferon Alfa-2a", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\5879\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\" + }, + { + "displayName": "Interferon gamma-1b", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\5882\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\IM000\\\\IM700\\\\5882", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\" + }, + { + "displayName": "Mannitol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\6628\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\" + }, + { + "displayName": "natalizumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\354770\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\" + }, + { + "displayName": "peginterferon alfa-2a", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\120608\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\IM000\\\\IM700\\\\120608", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\" + }, + { + "displayName": "peginterferon alfa-2b", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\253453\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM700\\" + }, + { + "displayName": "IMMUNE SUPPRESSANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\" + }, + { + "displayName": "Anhydrous Tacrolimus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\235991\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\" + }, + { + "displayName": "Azathioprine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\1256\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\" + }, + { + "displayName": "Azathioprine Sodium Salt", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\267476\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\" + }, + { + "displayName": "Cyclosporine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\3008\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\" + }, + { + "displayName": "Mycophenolic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\7145\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\" + }, + { + "displayName": "omalizumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\302379\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\" + }, + { + "displayName": "tacrolimus monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\484288\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM600\\" + }, + { + "displayName": "IMMUNOGLOBULINS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\" + }, + { + "displayName": "varicella-zoster immune globulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM500\\39385\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\IM000\\\\IM500\\\\39385", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM500\\" + }, + { + "displayName": "IMMUNOLOGICAL AGENTS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\" + }, + { + "displayName": "interferon beta-1b", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM900\\72257\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\IM000\\\\IM900\\\\72257", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM900\\" + }, + { + "displayName": "TOXOIDS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM105\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\" + }, + { + "displayName": "DIPHTHERIA TOXOID ADSORBED", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM105\\235600\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM105\\" + }, + { + "displayName": "Tetanus toxoid adsorbed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM105\\91607\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM105\\" + }, + { + "displayName": "VACCINES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\IM000\\\\IM100", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\" + }, + { + "displayName": "Hepatitis B Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM100\\26746\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM100\\" + }, + { + "displayName": "Lyme Disease Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM100\\214177\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\IM000\\\\IM100\\\\214177", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM100\\" + }, + { + "displayName": "Thimerosal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM100\\10472\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\IM000\\IM100\\" + }, + { + "displayName": "MISCELLANEOUS AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\XX000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\XX000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "Cysteamine Bitartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\XX000\\81990\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\XX000\\\\81990", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\XX000\\" + }, + { + "displayName": "ETHAVERINE HYDROCHLORIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\XX000\\235229\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\XX000\\\\235229", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\XX000\\" + }, + { + "displayName": "Hyaluronidase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\XX000\\5464\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\XX000\\\\5464", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\XX000\\" + }, + { + "displayName": "Oxyquinoline Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\XX000\\42836\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\XX000\\" + }, + { + "displayName": "STRYCHNINE SULFATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\XX000\\236074\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\XX000\\\\236074", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\XX000\\" + }, + { + "displayName": "MUSCULOSKELETAL MEDICATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANTIGOUT AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS400\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\" + }, + { + "displayName": "Allopurinol Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS400\\80566\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS400\\\\80566", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS400\\" + }, + { + "displayName": "Colchicine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS400\\2683\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS400\\" + }, + { + "displayName": "ANTIRHEUMATICS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\" + }, + { + "displayName": "ANTIRHEUMATICS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS190\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\" + }, + { + "displayName": "Etanercept", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS190\\214555\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS100\\\\MS190\\\\214555", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS190\\" + }, + { + "displayName": "hyaluronate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS190\\62372\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS100\\\\MS190\\\\62372", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS190\\" + }, + { + "displayName": "Sodium Hyaluronate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS190\\42892\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS190\\" + }, + { + "displayName": "GOLD COMPOUNDS,ANTIRHEUMATIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS160\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS100\\\\MS160", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\" + }, + { + "displayName": "Aurothiomalate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS160\\42547\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS160\\" + }, + { + "displayName": "Gold Sodium Thiomalate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS160\\4981\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS100\\\\MS160\\\\4981", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS160\\" + }, + { + "displayName": "NONSALICYLATE NSAIs,ANTIRHEUMATIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\" + }, + { + "displayName": "Diclofenac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\3355\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Diflunisal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\3393\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Fenoprofen Calcium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\267171\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Flurbiprofen sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\91351\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Ibuprofen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\5640\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Indomethacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\5781\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Indomethacin sodium trihydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\258329\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "lansoprazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\17128\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "magnesium trisilicate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\29170\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Meclofenamate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\588003\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS100\\\\MS102\\\\588003", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Naproxen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\7258\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Oxyphenbutazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\7816\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Phenylbutazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\8160\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Sodium Meclofenamate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\6677\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Suprofen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\10255\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "Tolmetin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\42935\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS100\\\\MS102\\\\42935", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS102\\" + }, + { + "displayName": "SALICYLATES,ANTIRHEUMATIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS101\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS100\\\\MS101", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\" + }, + { + "displayName": "Buffered aspirin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS101\\215436\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS101\\" + }, + { + "displayName": "Salicylic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS101\\9525\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS101\\" + }, + { + "displayName": "Salsalate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS101\\36108\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS101\\" + }, + { + "displayName": "Sodium thiosalicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS101\\91100\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS100\\MS101\\" + }, + { + "displayName": "MUSCULOSKELETAL AGENTS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\" + }, + { + "displayName": "Botulinum Toxin Type A", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS900\\1712\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS900\\" + }, + { + "displayName": "Chymopapain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS900\\2525\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS900\\" + }, + { + "displayName": "Glatiramer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS900\\214582\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS900\\" + }, + { + "displayName": "glatiramer acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS900\\84375\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS900\\" + }, + { + "displayName": "Misoprostol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS900\\42331\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS900\\" + }, + { + "displayName": "NEUROMUSCULAR BLOCKING AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\" + }, + { + "displayName": "Atracurium Besylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\1219\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "cisatracurium besylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\136561\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "doxacurium chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\49275\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS300\\\\49275", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "Gallamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\4638\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "Gallamine Triethiodide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\4639\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS300\\\\4639", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "metocurine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\29950\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "Metocurine iodide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\203206\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "mivacurium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\30077\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "mivacurium chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\52796\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS300\\\\52796", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "Pipecuronium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\33742\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "Pipecuronium Bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\66983\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "rapacuronium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\262100\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "Rapacuronium bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\228530\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "Succinylcholine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\10154\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS300\\\\10154", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "Suxamethonium Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\3565\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "Tubocurarine Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\82115\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS300\\\\82115", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "Vecuronium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\71535\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS300\\\\71535", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "Vecuronium Bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\11153\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS300\\\\11153", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS300\\" + }, + { + "displayName": "SKELETAL MUSCLE RELAXANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\" + }, + { + "displayName": "Baclofen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\1292\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\" + }, + { + "displayName": "Chlorphenesin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\2399\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\" + }, + { + "displayName": "chlorphenesin carbamate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\20880\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\" + }, + { + "displayName": "Chlorzoxazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\2410\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\" + }, + { + "displayName": "cyclobenzaprine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\21949\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\" + }, + { + "displayName": "Cyclobenzaprine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\52101\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\" + }, + { + "displayName": "Dantrolene Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\3106\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS200\\\\3106", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\" + }, + { + "displayName": "Orphenadrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\7715\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\MS000\\\\MS200\\\\7715", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\" + }, + { + "displayName": "Orphenadrine Citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\7716\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\" + }, + { + "displayName": "tizanidine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\236460\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\MS000\\MS200\\" + }, + { + "displayName": "NASAL AND THROAT AGENTS,TOPICAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANESTHETICS,MUCOSAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\" + }, + { + "displayName": "Cocaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT300\\2653\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT300\\" + }, + { + "displayName": "Cocaine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT300\\81985\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT300\\" + }, + { + "displayName": "ANTI-INFLAMMATORIES,NASAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\" + }, + { + "displayName": "Beclomethasone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\1347\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "Beclomethasone Dipropionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\1348\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "Dexamethasone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\3264\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "dexamethasone acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\22690\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\NT000\\\\NT200\\\\22690", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "Dexamethasone phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\235486\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "Dexamethasone sodium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\48933\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "flunisolide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\25120\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\NT000\\\\NT200\\\\25120", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "fluticasone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\41126\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "Fluticasone Furoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\705022\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "Fluticasone propionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\50121\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "mometasone furoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\30145\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\NT000\\\\NT200\\\\30145", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "Mometasone furoate monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\153374\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\NT000\\\\NT200\\\\153374", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "Triamcinolone Acetonide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\10761\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "triamcinolone diacetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\10762\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\NT000\\\\NT200\\\\10762", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "triamcinolone hexacetonide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\38546\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT200\\" + }, + { + "displayName": "ANTIHISTAMINES,NASAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT400\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\" + }, + { + "displayName": "azelastine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT400\\18603\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT400\\" + }, + { + "displayName": "Azelastine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT400\\235824\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\NT000\\\\NT400\\\\235824", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT400\\" + }, + { + "displayName": "DECONGESTANTS,NASAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\" + }, + { + "displayName": "Xylometazoline hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT100\\54220\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT100\\" + }, + { + "displayName": "NASAL AND THROAT,TOPICAL,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\NT000\\\\NT900", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\" + }, + { + "displayName": "Cetylpyridinium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT900\\2286\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\NT000\\\\NT900\\\\2286", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT900\\" + }, + { + "displayName": "Cetylpyridinium Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT900\\2287\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT900\\" + }, + { + "displayName": "MUPIROCIN CALCIUM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT900\\221128\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\NT000\\\\NT900\\\\221128", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\NT000\\NT900\\" + }, + { + "displayName": "OPHTHALMIC AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANESTHETICS,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP700\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\" + }, + { + "displayName": "Proparacaine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP700\\227778\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP700\\" + }, + { + "displayName": "Tetracaine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP700\\91189\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP700\\" + }, + { + "displayName": "ANTI-INFECTIVE,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\" + }, + { + "displayName": "ANTI-INFECTIVE,TOPICAL OPHTHALMIC,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP219\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\" + }, + { + "displayName": "Gramicidin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP219\\5011\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP219\\" + }, + { + "displayName": "mercuric oxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP219\\29545\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP219\\" + }, + { + "displayName": "Neomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP219\\7299\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP219\\" + }, + { + "displayName": "Neomycin Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP219\\7300\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP219\\" + }, + { + "displayName": "ANTIBACTERIALS,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP200\\\\OP210", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\" + }, + { + "displayName": "Azithromycin Dihydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\253155\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\" + }, + { + "displayName": "Edetic Acid, Disodium Salt", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\3539\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\" + }, + { + "displayName": "Gentamicin Sulfate (USP)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\142438\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP200\\\\OP210\\\\142438", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\" + }, + { + "displayName": "mild silver protein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\30021\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\" + }, + { + "displayName": "Silver Nitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\9789\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\" + }, + { + "displayName": "Sulfacetamide Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\82101\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\" + }, + { + "displayName": "Sulfisoxazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\10207\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\" + }, + { + "displayName": "Tobramycin Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\7276\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP210\\" + }, + { + "displayName": "ANTIVIRALS,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP230\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP200\\\\OP230", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\" + }, + { + "displayName": "fomivirsen sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP230\\314633\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP230\\" + }, + { + "displayName": "Ganciclovir Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP230\\82131\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP230\\" + }, + { + "displayName": "Idoxuridine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP230\\5653\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP200\\\\OP230\\\\5653", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP200\\OP230\\" + }, + { + "displayName": "ANTI-INFECTIVE/ANTI-INFLAMMATORY COMBINATIONS,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP350\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP350", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\" + }, + { + "displayName": "Methylcellulose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP350\\6873\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP350\\\\6873", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP350\\" + }, + { + "displayName": "ANTI-INFLAMMATORIES,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\" + }, + { + "displayName": "Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\164\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Bromfenac sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\47364\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "cyclosporine microemulsion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\484788\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP300\\\\484788", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "CYCLOSPORINE, MODIFIED", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\236077\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP300\\\\236077", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Diclofenac Potassium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\81997\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP300\\\\81997", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Diclofenac Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\203214\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Fluorometholone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\4491\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "FLUOROMETHOLONE ACETATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\221101\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Hydrocortisone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\5492\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP300\\\\5492", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "hydrocortisone aceate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\669988\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP300\\\\669988", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "hydrocortisone acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\27197\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Hydrocortisone butyrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\103468\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "hydrocortisone cypionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\163524\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Hydrocortisone sodium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\235482\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Hydrocortisone sodium succinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\235483\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "hydrocortisone valerate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\27199\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Ketorolac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\35827\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Ketorolac Tromethamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\28200\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Nedocromil Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\266663\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP300\\\\266663", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "pemirolast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\19551\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Pemirolast potassium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\259318\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP300\\\\259318", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "prednisolone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\8638\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "prednisolone acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\34372\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "prednisolone phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\34374\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "Prednisolone sodium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\55062\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP300\\" + }, + { + "displayName": "ANTIGLAUCOMA MEDICATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP100", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\" + }, + { + "displayName": "ADRENERGICS,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP103\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\" + }, + { + "displayName": "Dipivefrin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP103\\203156\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP103\\" + }, + { + "displayName": "ANTIGLAUCOMA COMBINATIONS,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP105\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\" + }, + { + "displayName": "Brimonidine tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP105\\39171\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP100\\\\OP105\\\\39171", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP105\\" + }, + { + "displayName": "Dorzolamide hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP105\\236065\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP105\\" + }, + { + "displayName": "BETA-BLOCKERS,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP101\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\" + }, + { + "displayName": "Betaxolol Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP101\\142144\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP101\\" + }, + { + "displayName": "Carteolol Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP101\\142132\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP101\\" + }, + { + "displayName": "Levobunolol Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP101\\227212\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP101\\" + }, + { + "displayName": "Metipranolol hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP101\\314731\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP101\\" + }, + { + "displayName": "Timolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP101\\10600\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP101\\" + }, + { + "displayName": "MIOTICS,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\" + }, + { + "displayName": "demecarium bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\22482\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\" + }, + { + "displayName": "Echothiophate Iodide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\3740\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\" + }, + { + "displayName": "Isoflurophate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\6027\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\" + }, + { + "displayName": "Physostigmine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\8299\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP100\\\\OP102\\\\8299", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\" + }, + { + "displayName": "physostigmine salicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\33656\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\" + }, + { + "displayName": "Pilocarpine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\8328\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\" + }, + { + "displayName": "Pilocarpine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\235426\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP100\\\\OP102\\\\235426", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\" + }, + { + "displayName": "Pilocarpine Nitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\103244\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP100\\\\OP102\\\\103244", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP102\\" + }, + { + "displayName": "OSMOTIC AGENTS,SYSTEMIC OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP160\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP100\\\\OP160", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\" + }, + { + "displayName": "Isosorbide Mononitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP160\\28004\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP100\\\\OP160\\\\28004", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP100\\OP160\\" + }, + { + "displayName": "DECONGESTANTS,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP800\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\" + }, + { + "displayName": "Naphazoline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP800\\7247\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP800\\" + }, + { + "displayName": "Naphazoline Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP800\\82054\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP800\\" + }, + { + "displayName": "Oxymetazoline hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP800\\106101\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP800\\" + }, + { + "displayName": "Tetrahydrozoline hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP800\\57983\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP800\\" + }, + { + "displayName": "EYE WASHES/LUBRICANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\" + }, + { + "displayName": "Benzalkonium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\1378\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP500\\\\1378", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\" + }, + { + "displayName": "Benzalkonium Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\1379\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\" + }, + { + "displayName": "Carboxymethylcellulose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\2062\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\" + }, + { + "displayName": "Dextran 70", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\3274\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\" + }, + { + "displayName": "hypromellose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\27334\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\" + }, + { + "displayName": "Mineral Oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\6972\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\" + }, + { + "displayName": "Petrolatum, White", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\82074\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\" + }, + { + "displayName": "Polyethylene Glycol 400", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\8514\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP500\\\\8514", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\" + }, + { + "displayName": "Propylene glycol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\34693\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\" + }, + { + "displayName": "sodium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\36709\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\" + }, + { + "displayName": "Sodium Phosphate, Monobasic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\235496\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP500\\" + }, + { + "displayName": "MYDRIATICS/CYCLOPLEGICS,TOPICAL OPHTHALMIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP600\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP600", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\" + }, + { + "displayName": "Cyclopentolate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP600\\3001\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP600\\" + }, + { + "displayName": "Cyclopentolate hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP600\\106029\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP600\\" + }, + { + "displayName": "Hydroxyamphetamine Hydrobromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP600\\82066\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP600\\" + }, + { + "displayName": "OPHTHALMICS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP900", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\" + }, + { + "displayName": "Benoxinate hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\235398\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP900\\\\235398", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\" + }, + { + "displayName": "Dapiprazole hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\235757\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\" + }, + { + "displayName": "emedastine difumarate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\221094\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP900\\\\221094", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\" + }, + { + "displayName": "epinastine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\39684\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\" + }, + { + "displayName": "epinastine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\236961\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\" + }, + { + "displayName": "Ketotifen Fumarate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\11404\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OP000\\\\OP900\\\\11404", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\" + }, + { + "displayName": "lodoxamide tromethamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\28859\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\" + }, + { + "displayName": "Olopatadine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\236599\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\" + }, + { + "displayName": "Rose Bengal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\9471\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\" + }, + { + "displayName": "Sodium Fluorescein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\57789\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OP000\\OP900\\" + }, + { + "displayName": "OTIC AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OT000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OT000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANTI-INFECTIVE/ANTI-INFLAMMATORY COMBINATIONS,TOPICAL OTIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OT000\\OT250\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OT000\\\\OT250", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OT000\\" + }, + { + "displayName": "Ciprofloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OT000\\OT250\\2551\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OT000\\OT250\\" + }, + { + "displayName": "Desonide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OT000\\OT250\\3254\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OT000\\\\OT250\\\\3254", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OT000\\OT250\\" + }, + { + "displayName": "THONZONIUM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OT000\\OT250\\237058\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\OT000\\\\OT250\\\\237058", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OT000\\OT250\\" + }, + { + "displayName": "THONZONIUM BROMIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\OT000\\OT250\\221171\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\OT000\\OT250\\" + }, + { + "displayName": "PHARMACEUTICAL AIDS/REAGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\PH000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\PH000", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "Ketoprofen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\PH000\\6142\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\PH000\\" + }, + { + "displayName": "sterile water", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\PH000\\107129\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\PH000\\\\107129", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\PH000\\" + }, + { + "displayName": "Trichloroacetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\PH000\\618564\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\PH000\\" + }, + { + "displayName": "Water", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\PH000\\11295\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\PH000\\\\11295", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\PH000\\" + }, + { + "displayName": "PROTECTIVE AGENTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN700\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\AN700", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "Amifostine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\AN700\\4126\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\AN700\\" + }, + { + "displayName": "RECTAL,LOCAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RS000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANTI-INFLAMMATORIES,RECTAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RS000\\" + }, + { + "displayName": "Methylprednisolone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS100\\6902\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS100\\" + }, + { + "displayName": "HEMORRHOIDAL PREPARATIONS,RECTAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RS000\\" + }, + { + "displayName": "HEMORRHOIDAL PREPARATIONS WITH STEROID", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS202\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\" + }, + { + "displayName": "Dibucaine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS202\\235402\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS202\\" + }, + { + "displayName": "Lidocaine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS202\\142440\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS202\\" + }, + { + "displayName": "Pramoxine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS202\\57555\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS202\\" + }, + { + "displayName": "HEMORRHOIDAL PREPARATIONS WITHOUT STEROID", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS201\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RS000\\\\RS200\\\\RS201", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\" + }, + { + "displayName": "Calamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS201\\106212\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS201\\" + }, + { + "displayName": "Witch Hazel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS201\\89821\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RS000\\RS200\\RS201\\" + }, + { + "displayName": "RESPIRATORY TRACT MEDICATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "ANTIASTHMA/BRONCHODILATORS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\" + }, + { + "displayName": "ANTIASTHMA,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\" + }, + { + "displayName": "Amobarbital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\719\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "cholinophyllin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\20976\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Cromolyn", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\42612\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Cromolyn Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\3538\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Dyphylline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\3714\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Epinephrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\3992\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "formoterol fumarate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\236216\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Isoproterenol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\6054\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Isoproterenol Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\82030\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Isoproterenol Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\82031\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE100\\\\RE109\\\\82031", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "montelukast sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\115713\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Potassium Iodide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\8597\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE100\\\\RE109\\\\8597", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "salmeterol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\36117\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Salmeterol xinafoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\72616\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Secobarbital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\9624\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Secobarbital sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\91110\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "Sodium Bicarbonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\36676\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE109\\" + }, + { + "displayName": "BRONCHODILATORS,ANTICHOLINERGIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE105\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE100\\\\RE105", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\" + }, + { + "displayName": "tiotropium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE105\\69120\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE105\\" + }, + { + "displayName": "tiotropium bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE105\\393575\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE100\\\\RE105\\\\393575", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE105\\" + }, + { + "displayName": "BRONCHODILATORS,SYMPATHOMIMETIC,INHALATION", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE100\\\\RE102", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\" + }, + { + "displayName": "Albuterol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\435\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "Arformoterol Tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\668284\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "bitolterol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\19499\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "Bitolterol methanesulfonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\47187\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "EPINEPHRINE,RACEMIC HYDROCHLORIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\314610\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "Isoetharine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\6023\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "Isoetharine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\102397\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE100\\\\RE102\\\\102397", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "Isoetharine Mesylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\6024\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "Levalbuterol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\237159\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "Levalbuterol Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\237160\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "Orciprenaline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\7688\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "Pirbuterol acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\221142\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "Terbutaline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\10368\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE102\\" + }, + { + "displayName": "BRONCHODILATORS,SYMPATHOMIMETIC,ORAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE103\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\" + }, + { + "displayName": "Albuterol Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE103\\142153\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE103\\" + }, + { + "displayName": "Ephedrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE103\\3966\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE103\\" + }, + { + "displayName": "Metaproterenol Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE103\\6804\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE103\\" + }, + { + "displayName": "Terbutaline Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE103\\10369\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE103\\" + }, + { + "displayName": "BRONCHODILATORS,XANTHINE-DERIVATIVE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\" + }, + { + "displayName": "Aminophylline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\689\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\" + }, + { + "displayName": "Sodium Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\9863\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE100\\\\RE104\\\\9863", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\" + }, + { + "displayName": "Theophylline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\10438\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE100\\\\RE104\\\\10438", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\" + }, + { + "displayName": "Theophylline anhydrous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\91178\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\" + }, + { + "displayName": "Theophylline Sodium Glycinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\155075\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE100\\RE104\\" + }, + { + "displayName": "ANTITUSSIVES/EXPECTORANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\" + }, + { + "displayName": "NON-OPIOID-CONTAINING ANTITUSSIVES/EXPECTORANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\" + }, + { + "displayName": "Ammonium Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\712\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\" + }, + { + "displayName": "guaiacolsulfonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\636827\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\" + }, + { + "displayName": "Guaifenesin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\5032\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE300\\\\RE302\\\\5032", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\" + }, + { + "displayName": "iodinated glycerol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\27723\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE300\\\\RE302\\\\27723", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\" + }, + { + "displayName": "Ipecac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\5975\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\" + }, + { + "displayName": "NICOTINAMIDE HYDRIODIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\317251\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\" + }, + { + "displayName": "potassium guaiacolsulfonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\91275\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\" + }, + { + "displayName": "Saccharin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\9509\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\" + }, + { + "displayName": "Saccharin Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\281678\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE300\\\\RE302\\\\281678", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\" + }, + { + "displayName": "Sorbitol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\9945\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\" + }, + { + "displayName": "Terpin hydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\89916\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE302\\" + }, + { + "displayName": "OPIOID-CONTAINING ANTITUSSIVES/EXPECTORANTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\" + }, + { + "displayName": "Bromodiphenhydramine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\91065\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE300\\\\RE301\\\\91065", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Calcium iodide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\235273\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Codeine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\2670\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Codeine Phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\2672\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Codeine sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\91104\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "dihydrocodeine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\23088\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Dihydrocodeine tartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\104966\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE300\\\\RE301\\\\104966", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Hydrocodone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\5489\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Hydrocodone Bitartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\142439\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "HYDROCODONE POLISTIREX", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\221107\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Hydromorphone Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\203177\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "methylparaben", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\29903\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Morphine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\7052\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Papaverine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\7895\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Papaverine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\203132\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "phenindamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\33283\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "Pheniramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\8132\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE300\\RE301\\" + }, + { + "displayName": "COLD REMEDIES,COMBINATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\" + }, + { + "displayName": "ANTIHISTAMINE/DECONGESTANT", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\" + }, + { + "displayName": "Belladonna Alkaloids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\1359\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\" + }, + { + "displayName": "Clemastine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\2578\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\" + }, + { + "displayName": "Fexofenadine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\236474\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\" + }, + { + "displayName": "hydroxypropylcellulose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\27291\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\" + }, + { + "displayName": "Polysorbate 80", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\8560\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\" + }, + { + "displayName": "Sodium Dodecyl Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\9871\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE500\\\\RE501\\\\9871", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\" + }, + { + "displayName": "Talc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\10323\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\" + }, + { + "displayName": "Terfenadine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\42330\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE501\\" + }, + { + "displayName": "ANTIHISTAMINE/DECONGESTANT/ANTITUSSIVE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE500\\\\RE502", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\" + }, + { + "displayName": "Brompheniramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\1767\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Brompheniramine Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\142427\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "CARBETAPENTANE CITRATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\283547\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "CARBETAPENTANE TANNATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\221070\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Carbinoxamine maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\91066\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Carbinoxamine Tannate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\405970\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE500\\\\RE502\\\\405970", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Chlorpheniramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\2400\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Chlorpheniramine Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\142429\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "CHLORPHENIRAMINE POLISTIREX", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\221074\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Chlorpheniramine Tannate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\221075\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "dexchlorpheniramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\22697\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Dexchlorpheniramine maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\54828\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Ephedrine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\91165\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Ephedrine sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\91166\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "EPHEDRINE TANNATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\221096\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Ethanol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\448\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Mepyramine Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\82091\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Phenylephrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\8163\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Phenylephrine bitartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\91167\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Phenylephrine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\8164\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Phenylephrine Tannate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\221139\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "Pseudoephedrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\8896\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "PYRILAMINE TANNATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\221152\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE500\\\\RE502\\\\221152", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE502\\" + }, + { + "displayName": "ANTIHISTAMINE/DECONGESTANT/ANTITUSSIVE/ANALGESIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE506\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\" + }, + { + "displayName": "Doxylamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE506\\3642\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE506\\" + }, + { + "displayName": "DECONGESTANT/ANTITUSSIVE/ANALGESIC", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\" + }, + { + "displayName": "Acetaminophen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\161\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\" + }, + { + "displayName": "Dextromethorphan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\3289\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\" + }, + { + "displayName": "Dextromethorphan Hydrobromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\102490\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\" + }, + { + "displayName": "DEXTROMETHORPHAN TANNATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\259262\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\" + }, + { + "displayName": "Phenylpropanolamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\8175\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\" + }, + { + "displayName": "Phenylpropanolamine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\3266\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\" + }, + { + "displayName": "Pseudoephedrine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\91168\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE500\\\\RE515\\\\91168", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\" + }, + { + "displayName": "Pseudoephedrine sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\91169\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\" + }, + { + "displayName": "PSEUDOEPHEDRINE TANNATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\221151\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE515\\" + }, + { + "displayName": "DECONGESTANT/ANTITUSSIVE/EXPECTORANT", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE513\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE500\\\\RE513", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\" + }, + { + "displayName": "Polyethylene Glycols", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE513\\8516\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE500\\RE513\\" + }, + { + "displayName": "COLD REMEDIES,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE599", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\" + }, + { + "displayName": "Aspirin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1191\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "Caffeine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\1886\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE599\\\\1886", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "caffeine citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\20033\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "calcium lactate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\47622\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "caramiphen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\20191\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "Dexbrompheniramine maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\48936\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "Dexbrompheniramine Tannate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\686390\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "Naproxen sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\142442\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "Pheniramine Maleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\266959\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\RE000\\\\RE599\\\\266959", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "phenyltoloxamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\33408\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "Phenyltoloxamine citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\221141\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "Promethazine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\142445\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "Pyrilamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\9009\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "salicylamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\9518\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "Triprolidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\10849\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "Triprolidine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\71534\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE599\\" + }, + { + "displayName": "RESPIRATORY AGENTS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE900\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\" + }, + { + "displayName": "Doxapram Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE900\\82011\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\RE000\\RE900\\" + }, + { + "displayName": "THERAPEUTIC NUTRIENTS/MINERALS/ELECTROLYTES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "AMINO ACIDS/PROTEINS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\" + }, + { + "displayName": "AMINO ACIDS/PROTEINS,ORAL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN500\\TN503\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\TN000\\\\TN500\\\\TN503", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN500\\" + }, + { + "displayName": "Lysine Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN500\\TN503\\6537\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN500\\TN503\\" + }, + { + "displayName": "Lysine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN500\\TN503\\6538\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN500\\TN503\\" + }, + { + "displayName": "ELECTROLYTES/MINERALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\" + }, + { + "displayName": "CALCIUM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN420\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\TN000\\\\TN400\\\\TN420", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\" + }, + { + "displayName": "calcium acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN420\\214342\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN420\\" + }, + { + "displayName": "CITRATES", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN478\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\" + }, + { + "displayName": "Citric Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN478\\21183\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN478\\" + }, + { + "displayName": "CITRIC ACID MONOHYDRATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN478\\221079\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN478\\" + }, + { + "displayName": "potassium citrate monohydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN478\\221149\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN478\\" + }, + { + "displayName": "sodium citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN478\\56466\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN478\\" + }, + { + "displayName": "sodium citrate dihydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN478\\221163\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\TN000\\\\TN400\\\\TN478\\\\221163", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN478\\" + }, + { + "displayName": "ELECTROLYTES/MINERALS,COMBINATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN490\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\" + }, + { + "displayName": "lanthanum carbonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN490\\234416\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN490\\" + }, + { + "displayName": "Potassium gluconate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN490\\89903\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN490\\" + }, + { + "displayName": "ELECTROLYTES/MINERALS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN499\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\" + }, + { + "displayName": "ammonium lactate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN499\\215247\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN499\\" + }, + { + "displayName": "Sodium Lactate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN499\\56489\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN499\\" + }, + { + "displayName": "MAGNESIUM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN460\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\" + }, + { + "displayName": "Magnesium chloride hexahydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN460\\221118\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN460\\" + }, + { + "displayName": "PHOSPHORUS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN475\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\" + }, + { + "displayName": "Monobasic potassium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN475\\55019\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN475\\" + }, + { + "displayName": "Phosphorus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN475\\8263\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\TN000\\\\TN400\\\\TN475\\\\8263", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN475\\" + }, + { + "displayName": "Potassium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN475\\8588\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN400\\TN475\\" + }, + { + "displayName": "ENTERAL NUTRITION", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\" + }, + { + "displayName": "Histidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\5340\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\TN000\\\\TN200\\\\5340", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "Isoleucine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\6033\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\TN000\\\\TN200\\\\6033", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "Lecithin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\8214\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "Leucine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\6308\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\TN000\\\\TN200\\\\6308", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "Magnesium Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\6579\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "magnesium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\29164\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "Molybdenum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\7024\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "Phenylalanine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\8156\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "SOY LECITHIN", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\259279\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "Threonine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\10524\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\TN000\\\\TN200\\\\10524", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "tricalcium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\47628\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "Tryptophan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\10898\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\TN000\\\\TN200\\\\10898", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "Valine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\11115\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\TN000\\\\TN200\\\\11115", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "Zinc Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\39954\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\TN000\\TN200\\" + }, + { + "displayName": "Unclassified", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "1-octacosanol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\12166\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "3-Iodobenzylguanidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\14448\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "4-Aminobenzoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\618974\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\618974\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "4-cresyl acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\14997\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\14997\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "5-Hydroxytryptophan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\94\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\94\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "6-Aminocaproic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\99\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\99\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "6-Mercaptopurine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\103\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "abarelix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\301739\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "abatacept", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\614391\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "abciximab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\83929\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Acarbose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16681\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Acebutolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\149\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "acecarbromal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16688\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\16688\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Acellular Pertussis Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798302\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Acetazolamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\167\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Acetohexamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\173\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\173\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "acetohydroxamic acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16728\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\16728\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Acetylcarnitine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\193\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\193\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Acetylcholine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\194\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\194\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Acetylcysteine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\197\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Acitretin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16818\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "acrivastine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19959\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "adalimumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\327361\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "adapalene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\60223\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "adefovir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\16521\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Adenosine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\296\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "agalsidase beta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\338817\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "alatrofloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\141440\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Albendazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\430\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Albumin Human, USP", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\828529\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ALBUMIN,MICROSPHERE HUMAN SERUM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314302\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Alclometasone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\108088\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aldesleukin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\70223\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "aldioxa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\23161\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "alefacept", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\299635\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "alemtuzumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\117055\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Alfalfa preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\285243\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Alfentanil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\480\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "alglucerase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\46049\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "alglucosidase alfa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\629565\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "aliskiren", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\325646\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "alitretinoin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\81864\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\81864\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Allantoin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\508\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Allergenic extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\124151\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\124151\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ALLERGENIC EXTRACT, CANDIDA ALBICANS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314338\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ALLERGENIC EXTRACT, CAT EPITHELIUM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314339\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ALLERGENIC EXTRACT, DOG EPITHELIA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314357\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ALLERGENIC EXTRACT, MIXED ANTIGENS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\308013\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Allopurinol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\519\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\519\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "almotriptan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\279645\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\279645\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aloe Extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\91263\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aloe Polysaccharide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\476786\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\476786\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aloe vera preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\318340\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\318340\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "alpha 1-Antitrypsin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\535\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\535\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ALPHA-D-GALACTOSIDASE ENZYME", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\259351\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Alteplase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8410\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8410\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Altretamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5296\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\5296\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aluminum carbonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\89858\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\89858\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "aluminum magnesium hydroxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\46242\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "aluminum phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\17618\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "alvimopan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\480639\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amantadine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\620\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\620\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ambenonium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\623\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ambrisentan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\358274\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "amcinonide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\17652\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\17652\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amdinocillin Pivoxil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\627\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amikacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\641\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\641\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amiloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\644\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\644\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aminobenzoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\143980\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aminocaproate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\113373\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aminoglutethimide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\677\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aminolevulinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\155002\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "AMINOSALICYLATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\113374\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "aminosalicylic acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7833\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amitriptyline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\704\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "amlexanox", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\46307\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\46307\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ammonia spirit, aromatic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\317201\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ammonium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\709\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ammonium molybdate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\17789\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\17789\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amoxapine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\722\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\722\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amphetamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\725\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\725\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amphotericin B Colloidal Dispersion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\101299\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\101299\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amphotericin B lipid complex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\343023\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amphotericin B liposome", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236594\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\236594\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amprenavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\228656\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Amsacrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\739\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "anagrelide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\596724\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "anakinra", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\72435\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "anastrozole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\84857\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Angelica sinensis preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\328141\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\328141\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "anhydrous calcium iodide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\214236\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "anidulafungin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\341018\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\341018\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "anisindione", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\17941\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Anistreplase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\40028\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\40028\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Anthrax Vaccine Adsorbed", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\404774\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Antipyrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1001\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\1001\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Antithrombin III", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1009\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Antithrombin III, Human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\221062\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "apraclonidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\14845\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\14845\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "aprepitant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\358255\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aprotinin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1056\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "arformoterol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\304962\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "argatroban", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\15202\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Arginine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1091\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "aripiprazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\89013\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\89013\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "armodafinil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\641465\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Arnica extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\144377\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Arsenic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1111\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "arsenic trioxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\18330\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "artemether", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\18343\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Articaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\592464\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ASPARAGINASE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1156\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aspartate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42543\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\42543\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aspartic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1169\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Atazanavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\343047\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Atenolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1202\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "atomoxetine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38400\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Atosiban", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\59639\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\59639\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Atracurium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1218\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Auranofin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1227\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aurothioglucose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4980\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "azatadine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\18600\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\18600\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Azelate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\618278\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\618278\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Aztreonam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1272\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "balsalazide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\18747\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\18747\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Banana Extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\285149\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Barberry Extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\259404\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\259404\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "basiliximab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\196102\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\196102\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "BCG, Live, Connaught Strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\76469\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\76469\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "BCG, Live, Montreal Strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314513\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "BCG, Live, Tice Strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\221050\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Becaplermin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\115238\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\115238\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Benactyzine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1361\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "benazepril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\18867\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\18867\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bendamustine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\134547\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "benflumetol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\137007\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\137007\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Benoxinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\18889\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bentiromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\18896\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\18896\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bentoquatam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\134568\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Benzoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\70589\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Benzoic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\18989\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Benzoin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1406\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\1406\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "benzonatate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\18993\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\18993\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Benzphetamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1422\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Benztropine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1424\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Benzydamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1425\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Benzydamine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\81963\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\81963\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "benzyl benzoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19044\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Benzylpenicilloyl polylysine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19079\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\19079\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "beractant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\46967\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\46967\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Betamethasone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1514\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\1514\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Betaxolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1520\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bexarotene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\233272\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bicalutamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\83008\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Bifidobacterium bifidum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\285148\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Bifidobacterium Infantis", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\100213\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\100213\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Bilberry extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\125929\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Bile Salts", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1540\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bimatoprost", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\283810\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Bioflavonoids", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1562\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "BIOFLAVONOIDS,CITRUS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314522\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\314522\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Biperiden", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1589\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bismuth subcitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\47181\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bismuth subnitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19477\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\19477\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "BISMUTH-FORMIC-IODIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\237148\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Bisoprolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19484\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bivalirudin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\60819\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Black Cohosh Extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236665\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Bleomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1622\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Blue cohosh extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\287513\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\287513\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Boron", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1705\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\1705\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bortezomib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\358258\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bosentan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\75207\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "botulinum toxin type B", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1713\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "BOTULISM ANTITOXIN E", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236660\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\236660\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Botulism Immune Globulin IV Human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\544488\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\544488\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Brain natriuretic peptide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19666\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bretylium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19685\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "brilliant green", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19698\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "brimonidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\134615\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "brinzolamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\194881\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\194881\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Bromocriptine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1760\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "bromodiphenhydramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19759\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "buclizine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\59636\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\59636\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Bumetanide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1808\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Buprenorphine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1819\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Buspirone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1827\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Busulfan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1828\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\1828\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "butamben", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19861\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "butenafine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\47461\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "butoconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19884\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Butorphanol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1841\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "C1 inhibitor (Human)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\809864\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\809864\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cabergoline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\47579\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "calcipotriene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\29365\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Calcitriol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1894\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Calcium Citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\47613\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Calcium gluceptate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\47618\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\47618\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Calcium Gluconate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1908\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Calcium Glycerophosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1909\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\1909\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "calcium hydroxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1910\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Calcium Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1925\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\1925\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "calfactant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\232539\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "candesartan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\214354\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "capecitabine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\194000\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Capreomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\78903\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Capsicum extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\319780\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\319780\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Captopril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1998\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Carbachol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1999\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "carbamide peroxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\47686\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "carbetapentane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\20217\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\20217\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Carbidopa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2019\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Carbocysteine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2023\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Carbon Dioxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2034\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2034\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Carboprost", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2051\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Carisoprodol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2101\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2101\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Carmustine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2105\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Carteolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2116\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2116\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "carvedilol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\20352\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\20352\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Casanthranol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\66870\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\66870\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cascara sagrada", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\66869\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\66869\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Caspofungin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\140108\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\140108\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Caspofungin acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\282363\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\282363\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Castor Oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2129\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cat's Claw preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\285223\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cefaclor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2176\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cefdinir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25037\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\25037\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cefepime", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\20481\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cefixime", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25033\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cefoperazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2184\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2184\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cefotaxime", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2186\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cefotetan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2187\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cefpodoxime", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\20489\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\20489\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cefprozil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\19552\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\19552\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ceftazidime", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2191\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ceftibuten", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\20492\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ceftizoxime", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2192\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2192\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ceftriaxone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2193\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cefuroxime", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2194\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "celecoxib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\140587\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Celiprolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\20498\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\20498\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Celiprolol Monohydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\203145\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "CELLULASE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2219\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2219\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cellulose, Oxidized", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2222\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2222\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "certolizumab pegol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\709271\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cetrorelix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\68147\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cevimeline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\44281\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "CHAMOMILE FLOWERS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\221916\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Chickenpox Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\39384\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\39384\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "chlophendianol hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\289861\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Chlorambucil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2346\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2346\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "chlorcyclizine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2354\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2354\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Chloroguanide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2382\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2382\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "chlorophyllin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\20852\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\20852\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "chloroprocaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\20859\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\20859\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "chloroxylenol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\20877\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Chlorpropamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2404\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2404\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cholera Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2427\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2427\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Chorionic Gonadotropin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4986\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "CHROMIUM PICOLINATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\59308\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ciclesonide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\274964\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cidofovir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\83171\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\83171\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cilastatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2540\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cilazapril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\21102\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\21102\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cilostazol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\21107\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cimetidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2541\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2541\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cinoxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2550\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cisapride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35255\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cisatracurium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\319864\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Citalopram", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2556\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\114200\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Citrulline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2567\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cladribine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\44157\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Clarithromycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\21212\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\21212\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "clavulanate potassium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\831418\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "clevidipine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\233603\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "clidinium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\21232\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Clindamycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2582\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2582\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "clindamycin-2-phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\797272\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\797272\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Clioquinol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5942\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\5942\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "clocortolone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\21249\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\21249\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "clofarabine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\44151\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\44151\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Clomiphene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2596\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Clomipramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2597\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "clopidogrel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\32968\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Clove oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7624\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Coccidioidin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2660\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2660\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cocoa butter", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\21389\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cod Liver Oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2669\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2669\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "coenzyme Q10", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\21406\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "colesevelam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\141626\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Colestipol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2685\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2685\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Colfosceril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\107784\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "colfosceril palmitate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\69782\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "colistimethate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2708\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2708\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "COLLAGEN HEMOSTAT", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\253161\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "COLLAGEN, HYDROLYZED", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\477454\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "COLLAGENASE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\58939\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Colloid sulfur", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\89767\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\89767\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Colloidal oatmeal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\221082\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Comfrey preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\285150\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "conivaptan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\302285\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Corn starch preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2858\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "corticorelin ovine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\74671\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Corticotropin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\376\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cosyntropin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2890\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Creatine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2907\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "crotamiton", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\21766\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cupric oxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\21837\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\21837\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cyclizine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\2977\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\2977\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cyclophosphamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3002\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cycloserine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3007\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cycrimine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\22037\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "CYCRIMINE HCL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\235421\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cyproheptadine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3013\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cysteamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3022\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cysteine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3024\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cytarabine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3041\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\3041\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cytarabine liposomal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\81932\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\81932\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Cytidine Diphosphate Choline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3046\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\3046\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "cytotect", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\22178\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\22178\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dacarbazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3098\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\3098\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Daclizumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\190353\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dactinomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3100\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dalfopristin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\229369\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dalteparin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\67109\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "danaparoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\78484\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Danazol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3102\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dandelion Extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\124150\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dantrolene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3105\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dapiprazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\22298\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\22298\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dapsone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3108\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Daptomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\22299\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\22299\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "darbepoetin alfa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\283838\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\283838\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "darifenacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\136198\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\136198\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "darunavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\460132\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dasatinib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\475342\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\475342\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Daunorubicin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3109\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Daunorubicin Liposomal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\214468\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Deanol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3116\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "deanol acetamidobenzoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\22361\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\22361\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "decitabine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\15657\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "deferasirox", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\614373\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Deferoxamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3131\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\3131\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "deflazacort", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\22396\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "degarelix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\475230\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\475230\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Delavirdine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\83816\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Demecarium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\107771\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Demeclocycline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3154\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "denileukin diftitox", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\214470\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "desflurane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\27340\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Desiccated Thyroid Extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10572\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10572\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "desirudin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\114934\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "desloratadine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\275635\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Desoximetasone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3255\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Desvenlafaxine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\734064\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\734064\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "desvenlafaxine succinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\683693\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Devil's claw preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236279\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\236279\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dexlansoprazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\816346\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dexmedetomidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\48937\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dexmethylphenidate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\352372\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dexpanthenol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\22701\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\22701\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dexrazoxane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42736\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dextran", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42635\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\42635\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dextran 1", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\214485\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dextran 40", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3272\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dextran 75", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3275\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "DEXTRAN HM", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\216535\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dextranomer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\22708\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\22708\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dextroamphetamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3288\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\3288\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Diatrizoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3319\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Diazepam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3322\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Diazoxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3327\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dibasic potassium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\55018\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\55018\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dibucaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3339\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dichloralphenazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\22892\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\22892\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dichloroacetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3347\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dichlorodifluoromethane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\50110\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dichlorotetrafluoroethane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\124848\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dichlorphenamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3353\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dicumarol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1598\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dienestrol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3368\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\3368\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Diethylpropion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3389\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "difenoxin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\23024\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Diflorasone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\91311\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "difluprednate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\23043\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dihematoporphyrin Ether", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\23066\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dihydroergotamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3418\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dihydrotachysterol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3429\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dihydroxyacetone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3430\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dihydroxyaluminum sodium carbonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\23163\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dimercaprol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3445\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dimethicone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\324072\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dimethyl Sulfoxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3455\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dinoprostone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3478\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "diperodon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\59247\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "diphenidol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\23370\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Diphenoxylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3500\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Diphtheria Toxoid Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798304\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dipivefrin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\23410\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dipyridamole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3521\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dirithromycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\23437\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Disopyramide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3541\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dobutamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3616\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "docetaxel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\72962\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Docosahexaenoic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\830526\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "docosanol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\594680\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\594680\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dofetilide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\49247\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dolasetron", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\68091\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "donepezil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\135447\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dopamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3628\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "doripenem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\119771\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\119771\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dornase Alfa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\337623\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dorzolamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\60207\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "doxacurium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\23651\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Doxapram", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3637\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Doxazosin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\49276\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Doxepin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3638\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Doxercalciferol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11516\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Doxorubicin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3639\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Doxycycline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3640\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "drospirenone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11636\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "drotrecogin alfa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\352374\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\352374\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Dutasteride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\228790\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\228790\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "dyclonine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\23744\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Echinacea Preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\228041\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\228041\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Echothiophate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\89778\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Econazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3743\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "eculizumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\591781\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Edrophonium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3752\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "efalizumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\356988\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "efavirenz", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\195085\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\195085\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "EGG YOLK PHOSPHOLIPIDS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314605\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Eicosapentaenoic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\90\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "eicosapentanoic acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\144449\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "eletriptan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\231049\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "eltrombopag", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\711942\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "emedastine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\28144\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\28144\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Enalaprilat", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3829\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Enflurane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3920\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\3920\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "enfuvirtide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\139896\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\139896\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Enoxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3925\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\3925\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Enoximone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\49626\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "entacapone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\60307\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "entecavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\306266\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\306266\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Epirubicin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3995\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\3995\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Epirubicin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\203213\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "eplerenone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\298869\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\298869\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Epoetin Alfa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\105694\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\105694\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Epoprostenol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8814\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8814\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "eprosartan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\83515\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "eptifibatide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\75635\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ergoloid mesylates, USP", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4024\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ergonovine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4021\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ertapenem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\325642\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Erwinia asparaginase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\235996\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\235996\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Erythromycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4053\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Escherichia coli", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\350202\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\350202\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Escitalopram", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\321988\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "esmolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\49737\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Estazolam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4077\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Estramustine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4089\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Estriol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4094\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Estrogens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4100\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "estrogens, conjugated synthetic A", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\253166\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "estrogens, conjugated synthetic B", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\618365\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Estrone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4103\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "estropipate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\33747\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Eszopiclone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\461016\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ethacrynate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\62349\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ethambutol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4110\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ethanolamine oleate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\24460\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ethchlorvynol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4118\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ethiodized Oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4125\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ethionamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4127\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ethopropazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4134\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ethosuximide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4135\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ethotoin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4136\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ethyl Chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4141\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ethynodiol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\24591\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Etidocaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4171\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4171\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Etidronate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42682\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\42682\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Etodolac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\24605\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\24605\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Etomidate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4177\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4177\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Etonogestrel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\14584\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Etoposide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4179\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "etoricoxib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\307296\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "etravirine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\475969\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\475969\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Etretinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4182\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Eucalyptus oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\59087\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Evans blue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4191\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Evening primrose extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\260040\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "exemestane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\258494\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "exenatide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\60548\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Eyebright preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\259366\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\259366\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "F8 protein, human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\826070\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Factor IX", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4249\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Factor VIII", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4257\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4257\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Factor XIII", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4271\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4271\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "famciclovir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\68099\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Famotidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4278\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "FE HEME POLYPEPTIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\284110\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\284110\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "felbamate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\24812\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\24812\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Felodipine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4316\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "fenofibric acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\24852\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fenoldopam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\24853\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fenoprofen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4331\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fenugreek seed preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\360375\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\360375\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ferric oxide, saccharated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\24909\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ferric subsulfate solution", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\24912\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\24912\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ferumoxides", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\72901\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\72901\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ferumoxsil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\77754\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "feverfew extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\114203\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fiber", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\70727\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fibrinogen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4385\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "fibrinolysis inhibitor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\353110\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Filgrastim", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\68442\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\68442\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Finasteride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25025\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\25025\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Flavoxate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4440\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Flecainide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4441\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Floxuridine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4488\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fluconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4450\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Flucytosine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4451\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "fludarabine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\24698\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\24698\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fludrocortisone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4452\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Flumazenil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4457\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Flunitrazepam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4460\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "fluocinolone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25126\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\25126\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fluocinonide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4462\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fluorescein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25138\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fluorouracil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4492\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4492\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Flurandrenolide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4500\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Flurazepam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4501\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4501\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Flurbiprofen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4502\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4502\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Flutamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4508\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "fluvastatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\41127\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fluvoxamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42355\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Follicle Stimulating Hormone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\227518\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\227518\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Follitropin Alfa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\386938\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "follitropin beta", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25357\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "fomepizole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\15226\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "fomivirsen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\85763\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "fondaparinux", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\321208\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "formoterol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25255\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\25255\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "fosamprenavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\358262\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fosaprepitant dimeglumine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\754763\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Foscarnet", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\33562\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "fosfestrol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25284\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fosfomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4550\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fosfomycin Trometamol Salt", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\142135\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Fosinopril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\50166\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "frovatriptan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\228783\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\228783\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "fulvestrant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\282357\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Furazolidone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4601\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Furosemide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4603\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Gadobenate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\692620\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Gadobenate dimeglumine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\68173\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "gadodiamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\41144\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\41144\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "gadoteridol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25483\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\25483\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "gadoversetamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\228833\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "gadoxetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\802624\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Galantamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4637\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4637\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "gallium nitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25544\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "galsulfase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\578033\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ganciclovir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4678\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4678\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ganirelix", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35825\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Garlic preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\265647\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "gatifloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\228476\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\228476\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "gefitinib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\328134\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Gelatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4716\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "gemcitabine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\12574\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "gemifloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\138099\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "gemtuzumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\259315\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Genistein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25696\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Gestrinone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4792\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ginkgo biloba extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236809\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "glimepiride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25789\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\25789\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Glipizide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4821\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "glubionate calcium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25806\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\25806\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Glucagon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4832\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Gluconolactone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\25842\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Glucosamine Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4847\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Glutamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4885\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4885\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Glutaral", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4888\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4888\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Glyburide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4815\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4815\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Glycopyrrolate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4955\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4955\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Goldenseal preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\285154\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Gonadorelin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6384\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6384\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Goserelin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\50610\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Granisetron", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\26237\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Guanfacine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\40114\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\40114\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Guanidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\50675\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "HAEMOPH B POLYSAC CONJ-MENING", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236568\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\236568\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Haemophilus capsular oligosaccharide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\221105\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Haemophilus influenzae b (Ross strain) capsular polysaccharide Meningococcal Protein Conjugate Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798444\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Haemophilus influenzae b, capsular polysaccharide inactivated tetanus toxoid conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798279\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\798279\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Haemophilus influenzae b, capsular polysaccharide Meningococcal Protein Conjugate Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798436\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Halcinonide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5084\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "halobetasol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\41208\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "halofantrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\50749\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "haloprogin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\26422\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\26422\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Halothane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5095\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hemin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5175\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hepatitis A Vaccine (Inactivated) Strain HM175", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798361\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hepatitis A Vaccine, Inactivated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\253174\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "hepatitis B immune globulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\26744\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\26744\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hepatitis B Surface Antigen (Australia antigen) MSD, Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798456\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hepatitis B Surface Antigen Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\797752\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hepatitis B Surface Antigens", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5240\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Heroin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3304\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Heroin Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\81994\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\81994\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hetastarch", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5531\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hexachlorophene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5293\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hexylresorcinol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5321\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Histamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5333\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\5333\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "histrelin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\50975\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Horse Chestnut Preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\317825\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\317825\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Human calcitonin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\235481\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\235481\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Human Secretin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\606396\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Human vaccinia immune globulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\597392\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\597392\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Human-Bovine Reassortant Rotavirus Strain G1 Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798286\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\798286\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Human-Bovine Reassortant Rotavirus Strain G2 Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798288\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Human-Bovine Reassortant Rotavirus Strain G3 Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798290\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\798290\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Human-Bovine Reassortant Rotavirus Strain G4 Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798292\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Human-Bovine Reassortant Rotavirus Strain P1A[8] Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798294\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hyaluronan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\258347\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\258347\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hydrochloric Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5486\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\5486\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hydrogen Peroxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5499\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "hydroiodic acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\27208\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\27208\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hydromorphone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3423\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "hydroquinone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5509\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\5509\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hydroxocobalamin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5514\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hydroxychloroquine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5521\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Hydroxyprogesterone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5542\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "hydroxyurea", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5552\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "HYLAN G-F 20", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\284637\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "HYLAN POLYMERS A and B", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\253176\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ibandronate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\115264\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ibutilide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\41289\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Idarubicin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5650\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "idursulfase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\644101\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ifosfamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5657\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Iloprost", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\40138\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "imatinib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\282388\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "imiglucerase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\84959\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Imipenem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5690\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Imipramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5691\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Imipramine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\150816\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Imipramine pamoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\91118\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "imiquimod", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\59943\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Immune Globulin (Human)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\797550\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Immune Globulin Subcutaneous (Human)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\617615\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\617615\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Immunoglobulin G", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5666\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Immunoglobulins, Intravenous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42386\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Inactivated Polioviruses Type 1, Mahoney strain vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\801830\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Inactivated Polioviruses Type 2, MEF-1 strain vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\801832\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Inactivated Polioviruses Type 3, Saukett strain vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\801834\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Indapamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5764\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Indigotindisulfonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\325514\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Indinavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\114289\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Indocyanine Green", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5775\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "infliximab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\191831\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Inactivated A-Brisbane-10-2007 (H3N2)-like virus (A-Uruguay-716-2007 NYMC X-175C) strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805520\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\805520\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Inactivated A-Brisbane-59-2007 (H1N1) strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805549\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Inactivated A-Brisbane-59-2007 (H1N1)-like virus (A-Brisbane-59-2007 IVR-148) strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805522\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Inactivated A-Uruguay-716-2007 (H3N2) (A-Brisbane-10-2007-like) strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805551\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Inactivated B-Florida-4-2006 strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805553\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Inactivated, A-H1N1 (A-Brisbane-59-2007) strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805467\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Inactivated, A-H3N2 (A-Uruguay-716-2007) strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805469\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\805469\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Inactivated, B-Florida-4-2006-like virus (B-Florida-4-2006) strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805524\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Inactivated, Influenza B (B-Florida-4-2006) strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805471\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\805471\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Live Attenuated, A-South Dakota-6-2007 (H1N1) (A-Brisbane-59-2007-like) strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805537\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Live Attenuated, A-Uruguay -716-2007 (H3N2) (A-Brisbane-10-2007-like) strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805539\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Influenza Virus Vaccine, Live Attenuated, B-Florida-4-2006 strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805541\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "insulin detemir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\139825\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\139825\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Insulin Glargine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\274783\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "insulin human, rDNA origin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\631657\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\631657\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Insulin, Aspart Protamine, Human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\352385\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Insulin, Prompt Zinc, Pork", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\235286\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\235286\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Insulin, Protamine Lispro, Human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314684\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\314684\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Insulin, Regular, Pork", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\221109\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\221109\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Insulin, Zinc, Human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314683\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\314683\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Insulin, Zinc, Pork", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\93108\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\93108\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Interferon Alfa-2b", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5880\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Interferon Alfa-n1", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\202912\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Interferon Alfa-n3", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\612937\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\612937\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "interferon alfacon-1", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\59744\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Interferon beta-1a", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\75917\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Intramuscular immunoglobulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\108067\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Inulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5924\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "invert sugar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\27712\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "iocetamic acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\183830\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\183830\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Iodamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5928\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "iodine-131-tositumomab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\234449\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\234449\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Iodipamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5936\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\5936\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Iodoquinol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3435\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Iohexol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5956\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\5956\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Iopanoic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5967\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\5967\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Iophendylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5968\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\5968\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "iopromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\27781\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\27781\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ioversol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\27792\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\27792\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ioxilan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\27793\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\27793\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ipodate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5976\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ipratropium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7213\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ipratropium Bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\203212\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "irbesartan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\83818\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "irinotecan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\51499\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Irinotecan hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\153329\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "IRON BILE SALTS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\235376\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\235376\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Iron Carbonyl", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\262150\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Iron polysaccharide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\219315\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "iron succinyl milk protein complex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\27825\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Iron-Dextran Complex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\5992\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "iso-sulfan blue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\27863\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Isocarboxazid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6011\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Isoflurane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6026\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "isometheptene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\27946\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Isopropyl Alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\797541\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "isopropyl unoprostone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\135313\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Isosorbide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6057\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Isosorbide Dinitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6058\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Isotretinoin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6064\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Isoxsuprine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6066\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6066\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Isradipine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\33910\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Itraconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\28031\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ivermectin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6069\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6069\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ixabepilone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\337523\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "japanese encepahlitis virus vaccine, inactivated", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\547233\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Juniper extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6085\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6085\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Kanamycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6099\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Karaya Gum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6111\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6111\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Kava preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\285228\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ketamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6130\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ketoconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6135\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ketotifen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6146\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "L-METHYLFOLATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\407884\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "L1 protein, Human papillomavirus type 11 Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798262\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "L1 protein, Human papillomavirus type 16 Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798264\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "L1 protein, Human papillomavirus type 18 Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798266\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\798266\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "L1 protein, Human papillomavirus type 6 Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798268\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lactase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\41397\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\41397\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lactobacillus acidophilus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6205\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6205\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lactobacillus bulgaricus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\100272\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lactobacillus rhamnosus GG", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\602811\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lactulose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6218\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6218\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "lamotrigine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\28439\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\28439\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "lanreotide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\68092\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "lapatinib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\480167\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Laronidase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\392509\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\392509\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "latanoprost", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\43611\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Latrodectus mactans antivenin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\89887\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "leflunomide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\27169\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "lenalidomide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\342369\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lente Insulin, Beef", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\235280\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "lepirudin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\237057\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "letrozole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\72965\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Leucovorin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6313\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6313\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Leuprolide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42375\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Levamisole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6371\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6371\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Levobetaxolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\353497\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "levobetaxolol hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\261718\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Levobunolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1813\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Levobupivacaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\259453\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "levocabastine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\28627\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "levocetirizine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\356887\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\356887\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Levofloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\82122\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\82122\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Levomethadyl", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\237005\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Levonordefrin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\132889\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Levorotatory alkaloids of belladonna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\221113\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Levorphanol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6378\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6378\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Licorice", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42769\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lincomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6398\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Liposomal Doxorubicin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\214525\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lisdexamfetamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\700810\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "lithium citrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\52105\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lodoxamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\52151\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\52151\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "lomefloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\28872\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lomustine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6466\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6466\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Loperamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6468\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "lopinavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\195088\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "loracarbef", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\28981\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Loratadine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\28889\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lorazepam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6470\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Losartan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\52175\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\52175\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Loteprednol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\237027\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "loteprednol etabonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\52177\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "lubiprostone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\623033\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lutein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11359\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\11359\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lymphocyte immune globulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\91601\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\91601\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "LYMPHOCYTE IMMUNE GLOBULIN, ANTI-THYMOCYTE G", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\325515\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lymphocyte Immune Globulin, Anti-Thymocyte Globulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\1011\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Lysine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6536\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mafenide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6572\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "magnesium acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314718\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "magnesium amino acid chelate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\486895\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\486895\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Magnesium Aspartate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\142131\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Magnesium lactate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\214688\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Magnesium Salicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\52364\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "MAGNESIUM, CHELATED", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\215976\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Malathion", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6606\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Malt soup extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\91264\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "MANGAFODIPIR", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236987\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "manganese chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\29261\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Maprotiline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6646\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6646\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "maraviroc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\620216\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Masoprocol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\227239\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mazindol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6664\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6664\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Measles Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6669\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Measles Virus Vaccine Live, Enders' attenuated Edmonston strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\804179\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "MEASLES VIRUS VACCINE,LIVE ATTENUATED", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\235574\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mecamylamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6673\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6673\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "mecasermin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\274403\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "mecasermin rinfabate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\616877\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mechlorethamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6674\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6674\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Meclizine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6676\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6676\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "meclocycline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\29418\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "medrysone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\29439\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mefenamate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\257844\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\257844\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mefenamic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6693\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mefloquine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6694\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6694\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mefloquine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\82130\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\82130\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Megestrol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6703\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Melatonin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6711\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "meloxicam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\41493\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\41493\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Melphalan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6718\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "menadiol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\29491\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "meningococcal group A polysaccharide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\29501\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "meningococcal group C polysaccharide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\29503\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "MENINGOCOCCAL POLYSACCHARIDE VACCINE GROUP W-135", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314724\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\314724\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "MENINGOCOCCAL POLYSACCHARIDE VACCINE GROUP Y", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314725\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mepenzolate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\107770\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mephentermine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6756\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mepivacaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6759\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "mequinol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\15080\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\15080\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Merbromin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6762\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mercury", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6769\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "meropenem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\29561\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "mesalamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\52582\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mesna", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\44\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\44\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Metaraminol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6805\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "metaxalone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\59078\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methacholine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\155080\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "methantheline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6821\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methazolamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6826\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methenamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6832\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methimazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6835\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methocarbamol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6845\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methohexital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6847\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methotrexate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6851\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methoxsalen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6854\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methoxyflurane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6857\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "methoxyphenamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\29704\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\29704\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "methsuximide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\47858\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "methyl salicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\29787\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\29787\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methyldopate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6877\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methylergonovine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6883\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "methylnaltrexone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\29899\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\29899\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Methylphenidate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6901\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Metipranolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10824\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10824\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Metolazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6916\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Metyrapone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6923\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Metyrosine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\266604\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\266604\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "micafungin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\325887\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Miconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6932\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Midazolam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6960\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Midodrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6963\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mifepristone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6964\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6964\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "miglitol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30009\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\30009\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Miglustat", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\402316\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Milk thistle extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\283579\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "milnacipran", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\588250\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Milrinone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\52769\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mineral Oil, Light", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\577312\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Minocycline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6980\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\6980\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Minoxidil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6984\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mirtazapine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\15996\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mitomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\632\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mitotane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7004\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\7004\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mitoxantrone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7005\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\7005\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "modafinil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30125\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Molindone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7019\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mometasone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\108118\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\108118\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "monobenzone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\17145\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\17145\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "monooctanoin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30198\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "montelukast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\88249\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Moricizine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\40169\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Morphine Liposomal", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\477468\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "moxonidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\30257\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mumps Virus Vaccine Live, Jeryl Lynn Strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798372\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Mupirocin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42372\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Muromonab-CD3", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42405\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "mycophenolate mofetil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\68149\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "nabumetone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\31448\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nadolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7226\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nafarelin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\28656\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\28656\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "naftifine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\31476\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nalbuphine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7238\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "nalmefene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\31479\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Naloxone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7242\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Naltrexone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7243\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nandrolone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7244\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "naratriptan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\141366\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\141366\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Natamycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7268\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "nateglinide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\274332\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "nebivolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\31555\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nedocromil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\31563\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "nefazodone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\31565\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Neisseria meningitidis serogroup A capsular polysaccharide diphtheria toxoid protein conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\797629\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Neisseria meningitidis serogroup C capsular polysaccharide diphtheria toxoid protein conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\797631\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Neisseria meningitidis serogroup W-135 capsular polysaccharide diphtheria toxoid protein conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\797633\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Neisseria meningitidis serogroup Y capsular polysaccharide diphtheria toxoid protein conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\797635\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\797635\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "nelarabine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\274771\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "nepafenac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\298665\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Netilmicin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7337\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nevirapine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\53654\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nicardipine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7396\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\7396\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "nilotinib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\662281\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\662281\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nimodipine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7426\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\7426\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nisoldipine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7435\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\7435\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "nitazoxanide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\31819\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\31819\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "nitisinone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\61805\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\61805\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nitric Oxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7442\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nitrofurazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7455\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nitrogen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7456\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nitroprusside", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7476\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nitrous Oxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7486\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nizatidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42319\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "norelgestromin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\326374\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Norepinephrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7512\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Norfloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7517\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Nortriptyline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7531\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "NPH Insulin, Beef", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\317235\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\317235\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "NPH Insulin, Beef-Pork", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\317598\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\317598\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "NPH Insulin, Pork", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\221108\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\221108\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "octocrylene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\77674\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Octoxynol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\32301\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\32301\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Octreotide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7617\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Olmesartan medoxomil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\118463\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "olopatadine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\135391\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "olsalazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\32385\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\32385\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Omeprazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7646\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\7646\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ondansetron", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\26225\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Opiates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\114189\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Oprelvekin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\139994\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\139994\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "orlistat", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\37925\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\37925\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Oseltamivir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\260101\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ouabain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7762\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "oxaliplatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\32592\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Oxandrolone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7779\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "oxaprozin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\32613\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Oxaprozin potassium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\660767\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Oxazepam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7781\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "oxcarbazepine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\32624\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "oxiconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\32638\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "OXTAFLUOROPROPANE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\359064\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "oxybenzone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\32673\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "oxybutynin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\32675\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "oxybutynin hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\831883\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\831883\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Oxygen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7806\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Oxymetazoline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7812\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Oxymetholone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7813\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Oxymorphone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7814\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Oxyquinoline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\110\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "p-Hydroxyamphetamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7839\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Paclitaxel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\56946\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Palifermin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\196319\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "paliperidone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\679314\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "palivizumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\194279\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\194279\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "palonosetron", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\70561\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "pamidronate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11473\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pancrelipase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\235379\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pancuronium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7883\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pancuronium Bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7884\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "panitumumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\263034\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\263034\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Papaya preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\324030\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\324030\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Paramethasone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7910\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\7910\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "paricalcitol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\73710\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\73710\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Paromomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7934\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\7934\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "pegademase bovine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\59768\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "pegaptanib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\498509\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "pegaspargase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\34132\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\34132\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "pegvisomant", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\278739\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\278739\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pemoline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7966\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\7966\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Penbutolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7973\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "penciclovir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\59839\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Penicillamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7975\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pentamidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7994\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\7994\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pentazocine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8001\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8001\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pentobarbital", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8004\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8004\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pentosan Polysulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\155046\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pentostatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8011\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8011\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pentoxifylline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8013\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pepsin A", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8016\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pergolide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8047\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Perindopril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\54552\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Permethrin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\33199\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pertussis, acellular", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\214755\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Peruvian balsam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\33219\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Phenazopyridine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8120\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8120\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "phendimetrazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\33272\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Phenelzine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8123\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8123\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Phenindione", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8130\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8130\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Phenolsulfonphthalein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8141\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8141\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Phenoxybenzamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8149\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Phentermine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8152\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Phentolamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8153\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "phenylacetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\70619\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "phenylbutyrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\81647\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Phosphoric acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8259\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pimecrolimus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\321952\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pimozide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8331\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8331\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pindolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8332\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8332\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "PINE BARK EXTRACT", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\259276\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pine tar", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8333\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "pioglitazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\33738\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\33738\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Piperonyl Butoxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8345\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8345\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "pirbuterol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\33767\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Piroxicam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8356\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Placebo (substance)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8375\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "plasma protein fraction", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\33835\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Plerixafor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\733003\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "pneumococcal polysaccharides (23)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\221144\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\221144\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pneumococcal polysaccharides (7)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\360487\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\360487\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "podophyllotoxin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8463\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8463\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Poliovirus vaccine inactivated, type 1 (Mahoney)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\763096\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\763096\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Poliovirus vaccine inactivated, type 2 (MEF-1)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\763098\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\763098\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Poliovirus vaccine inactivated, type 3 (Saukett)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\763100\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\763100\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Poloxamer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\155156\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Poloxamer 407", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\155155\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "POLYETHYLENE GLYCOL 3350", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\221147\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Polysaccharide iron complex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\105669\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Polythiazide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8565\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Polyvalent crotalidae antivenin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\91596\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Polyvalent pneumococcal vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\91610\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Polyvinyl Alcohol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8570\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Poractant alfa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236381\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "posaconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\282446\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\282446\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Posterior Pituitary Hormones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8366\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Potassium Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\54987\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\54987\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "potassium bicarbonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\34296\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "potassium carbonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\34300\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Potassium Hydroxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\34311\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "potassium nitrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\34316\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "potassium perchlorate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\34318\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Potassium Permanganate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8604\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "potassium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\34322\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Potassium Sorbate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8606\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "POTASSIUM SULFIDE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236907\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pramipexole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\746741\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pramlintide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\139953\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Praziquantel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8628\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Prazosin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8629\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "prednicarbate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\34369\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Prednisone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8640\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "pregabalin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\187832\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Prilocaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8686\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Primidone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8691\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Procainamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8700\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Procarbazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8702\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Procyclidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8718\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Proflavine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8723\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Proline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8737\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Propantheline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8761\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Propofol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8782\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "propylhexedrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8792\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "propylhexedrine hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236461\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\236461\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Propyliodone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8793\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Propylthiouracil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8794\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8794\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Protamine Sulfate (USP)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8825\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8825\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Protamines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8826\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8826\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Protein C Concentrate (Human)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\723868\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Protriptyline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8886\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "proxymetacaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\34905\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\34905\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Prussian blue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\24902\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\24902\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Purified Protein Derivative of Tuberculin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8948\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pyrantel", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8984\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\8984\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pyrazinamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8987\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pyrethrins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\8991\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pyridostigmine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9000\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "pyridoxine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\684879\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Pyrimethamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9010\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "pyrithione", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35100\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "quazepam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35185\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\35185\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "quetiapine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\51272\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "quinagolide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\76887\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\76887\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "quinagolide hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236233\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "quinapril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35208\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\35208\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Quinestrol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9066\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\9066\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "quinupristin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\229367\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\229367\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rabeprazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\114979\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\114979\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rabies immune globulin, (human) vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\830471\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rabies immune globulin, human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\89886\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Rabies Vaccines", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9097\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rabies virus vaccine flury-lep strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\830457\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rabies virus vaccine wistar strain PM-1503-3M (Human)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\830464\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Racepinephrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\66887\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\66887\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Raloxifene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\72143\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\72143\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Raltegravir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\719872\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ramelteon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\596205\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\596205\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ramipril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35296\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ranibizumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\595060\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\595060\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ranitidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9143\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ranolazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35829\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rasagiline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\134748\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Rasburicase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\283821\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "red yeast rice", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\232540\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "regadenoson", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\640062\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "remifentanil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\73032\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "repaglinide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\73044\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "resorcinol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35382\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\35382\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "respiratory syncytial virus immune globulin intravenous", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\119246\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "retapamulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\642274\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\642274\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Reteplase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\76895\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\76895\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "RETEPLASE,RECOMBINANT", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\253197\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Rho(D) Immune Globulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35465\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ribavirin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9344\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\9344\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Rifabutin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\55672\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Rifampin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9384\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rifapentine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35617\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rilonacept", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\763450\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\763450\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Riluzole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35623\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Rimantadine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9386\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\9386\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rimexolone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\55681\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Risedronate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\73056\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\73056\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ritodrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9392\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rituximab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\121191\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rivastigmine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\183379\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\183379\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Rocuronium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\68139\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rocuronium bromide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\32521\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rofecoxib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\232158\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Romiplostim", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805452\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ropinirole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\72302\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\72302\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ropivacaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35780\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\35780\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ROSE HIPS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236732\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rosuvastatin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\301542\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Rotavirus Vaccine, Live Attenuated, G1P[8] Human 89-12 strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805573\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Rotigotine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\616739\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "royal jelly", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35805\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Rubella Virus Vaccine Live (Wistar RA 27-3 Strain)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\762817\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "rufinamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\69036\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Saccharomyces boulardii lyo", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\602738\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Saccharomyces cerevisiae", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9511\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sacrosidase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\214817\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Safflower Oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9515\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\9515\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Samarium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9549\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\9549\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "SAMARIUM Sm153", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\196342\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\196342\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sapropterin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\753340\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\753340\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sapropterin dihydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\753341\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\753341\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Saralasin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9556\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\9556\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Saralasin Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\7830\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sargramostim", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\69634\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "SARRACENIA PURPUREA preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\349948\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\349948\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Scarlet Red", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\36224\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Selegiline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9639\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Selenious Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\36344\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "selenium disulfide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\36345\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Serine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9671\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\9671\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sermorelin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\56188\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sertraline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\36437\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sevelamer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\214824\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sevelamer carbonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\660890\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\660890\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sevoflurane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\36453\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Shark cartilage extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\81782\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Shark liver oil preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\91472\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sibutramine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\36514\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sildenafil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\136411\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Silicones", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9778\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\9778\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Silver Sulfadiazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9793\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sinecatechins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\753346\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\753346\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sirolimus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\35302\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sitagliptin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\593411\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Skullcap preparation", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\262263\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "SLIPPERY ELM BARK", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\259434\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "smallpox vaccine live vaccinia virus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\833079\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Smallpox Vaccine Live, New York City Board of Health Vaccinia Strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798467\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium Acetate Trihydrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\237108\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium Ascorbate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\267366\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sodium carbonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\36685\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium Chloride, Bacteriostatic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\219965\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sodium choride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\806664\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium ferric gluconate complex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\261435\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium gluconate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\56476\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium Hypochlorite", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9881\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium Iodide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9884\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sodium metabisulfite", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\36696\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium Morrhuate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9892\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium Oxybate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9899\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sodium perborate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\36702\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\36702\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium Phosphate, Dibasic", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236719\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "SODIUM PHOSPHATE,MONOBASIC,MONOHYDRATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\221125\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\221125\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium polystyrene sulfonate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\56512\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium propionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\56513\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sodium sulfite", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\36723\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\36723\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sodium Tetradecyl Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9913\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "somatrem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\56570\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Somatropin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\61148\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sorafenib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\495881\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\495881\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sotalol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9947\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\9947\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Soybean Oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9949\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sparfloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\18469\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\18469\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Spiramycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9991\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Spironolactone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\9997\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\9997\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ST. JOHN'S WORT EXTRACT", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\258326\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Stanozolol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10032\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10032\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Starch", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10046\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Stavudine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\59763\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Streptococcus pneumoniae serotype 14 capsular antigen diphtheria CRM197 protein conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798220\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Streptococcus pneumoniae serotype 18C capsular antigen diphtheria CRM197 protein conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798222\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\798222\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Streptococcus pneumoniae serotype 19F capsular antigen diphtheria CRM197 protein conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798224\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\798224\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Streptococcus pneumoniae serotype 23F capsular antigen diphtheria CRM197 protein conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798226\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Streptococcus pneumoniae serotype 4 capsular antigen diphtheria CRM197 protein conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798228\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Streptococcus pneumoniae serotype 6B capsular antigen diphtheria CRM197 protein conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798230\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Streptococcus pneumoniae serotype 9V capsular antigen diphtheria CRM197 protein conjugate vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798232\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Streptodornase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10104\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Streptokinase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10106\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Streptomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10109\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Streptozocin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10114\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Strychnine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\66422\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Succimer", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3446\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sucralfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10156\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sufentanil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\56795\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulbactam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10167\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sulconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\37319\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\37319\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulfadiazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10171\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulfadoxine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10173\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulfamerazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10176\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulfamethazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10178\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10178\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulfamethizole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10179\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulfamethoxazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10180\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulfapyridine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10188\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulfinpyrazone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10205\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulfobromophthalein", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10212\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulfobromophthalein Sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\203200\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Sulindac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10237\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10237\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sunflower seed oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\37422\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "sunitinib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\357977\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\357977\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Superoxide Dismutase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10245\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10245\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "synthetic secretin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\353114\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tacrine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10318\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10318\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tacrolimus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42316\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tamoxifen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10324\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tamsulosin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\77492\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\77492\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tannic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10328\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10328\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tazarotene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\83947\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\83947\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tazobactam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\37617\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tea Tree Oil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\69627\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tegaserod", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\139778\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\139778\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Teicoplanin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\57021\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\57021\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "telbivudine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\474128\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Temazepam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10355\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "temozolomide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\37776\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "temsirolimus", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\657797\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tenecteplase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\259280\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\259280\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Terazosin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\37798\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\37798\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "terbinafine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\37801\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\37801\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "terconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\37806\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Teriparatide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\32915\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\32915\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Teriparatide Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\114260\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Testolactone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10378\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "testosterone cypionate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\835827\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\835827\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tetanus immune globulin, human", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\91603\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\91603\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tetanus Toxoid Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\798306\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tetrabenazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10390\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tetrahydrocannabinol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10402\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tetrahydrozoline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\37935\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\37935\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thalidomide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10432\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thiabendazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10450\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thiethylperazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10471\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thioguanine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10485\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thiopental", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10493\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thiopronine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6765\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thiosalicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\91099\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thiotepa", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10473\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thiothixene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10510\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thymol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10553\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thyroglobulin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10565\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "THYROID (BEEF)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\325521\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "thyrotropin alfa (USP)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\4952\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\4952\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Thyrotropin-Releasing Hormone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10580\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ticlopidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10594\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10594\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tigecycline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\384455\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\384455\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tiludronate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\57230\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\57230\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tinzaparin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\69646\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\69646\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tioconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38298\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tipranavir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\190548\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\190548\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tirofiban", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\73137\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\73137\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tizanidine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\57258\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tolcapone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\72937\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tolmetin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10636\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10636\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tolnaftate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10637\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tolonium chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10638\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tolterodine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\119565\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "topiramate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38404\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Topotecan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\57308\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Toremifene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38409\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\38409\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "torsemide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38413\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\38413\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tositumomab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\263010\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tramadol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10689\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "trandolapril", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38454\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tranexamic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10691\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tranylcypromine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10734\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "trastuzumab", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\224905\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\224905\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "travoprost", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\283809\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Trazodone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10737\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Treprostinil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\343048\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tretinoin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10753\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Triacetin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10756\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Triazolam", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10767\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "trichloroacetaldehyde", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38574\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\38574\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "trichlorofluoromethane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38578\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\38578\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "trichlorotrifluoroethane", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38585\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\38585\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Trichophyton antigen", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\465118\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\465118\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Triclosan", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10795\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Trientine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10798\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "triethanolamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38623\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "TRIETHANOLAMINE POLYPEPTIDE OLEATE CONDENSATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38624\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Trifluoperazine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10800\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Trifluridine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10803\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Trihexyphenidyl", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10811\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10811\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Triiodothyronine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10814\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Trimethadione", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10827\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10827\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "trimethobenzamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38685\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Trimethoprim", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10829\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Trimetrexate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\42333\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "trolamine salicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38866\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Troleandomycin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10864\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10864\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tromethamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10865\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tropicamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10869\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\10869\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "trovafloxacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\115552\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\115552\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Trypan Blue", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10878\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tubocurarine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10917\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "tyloxapol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\38998\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Typhoid Vaccine Live Ty21a", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\762595\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Typhoid Vi Polysaccharide Vaccine, S typhi Ty2 strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\807219\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\807219\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Tyropanoate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10960\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ubiquinone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10975\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Undecylenate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\314881\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Unithiol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10991\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Uracil", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10995\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Urofollitropin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\134404\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Urokinase", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11055\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Ursodeoxycholate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\62427\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Vaccines, Typhoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\10953\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "valacyclovir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\73645\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "valdecoxib", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\278567\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "valganciclovir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\275891\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "valrubicin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\31435\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "vanadyl sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\39364\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\39364\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "varenicline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\591622\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Varicella Virus Vaccine Live (Oka-Merck) strain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\805486\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\805486\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Vasopressin (USP)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11149\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "venlafaxine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\39786\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\39786\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Verteporfin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\118886\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Vi polysaccharide vaccine, typhoid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\39511\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\39511\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Vigabatrin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\14851\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\14851\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Vinblastine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11198\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "vinorelbine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\39541\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\39541\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Vitamin K 3", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\6728\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "von Willebrand Factor (Human)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\826072\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "voriconazole", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\121243\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Vorinostat", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\194337\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\194337\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Warfarin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11289\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Wild yam extract", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\237020\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Xenon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11363\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\11363\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Xylitol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11377\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\11377\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "xylometazoline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\39841\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\39841\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Xylose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11378\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Yellow Fever Vaccine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\89890\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "zafirlukast", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\114970\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Zalcitabine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\3363\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "zaleplon", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\74667\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Zanamivir", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\69722\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\69722\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ziconotide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\68503\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Zidovudine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11413\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\11413\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "zileuton", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\40575\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "zinc chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\39937\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\39937\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ZINC CITRATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\236911\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Zinc Oxide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\11423\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ZINC, CHELATED", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\253210\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "zoledronic acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\77655\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "zolpidem", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\39993\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\39993\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "zomepirac", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\39994\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\zzzz\\\\39994\\\\", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "Zomepirac sodium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\58331\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "ZOSTER VACCINE LIVE (OKA-MERCK)", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\759603\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\zzzz\\" + }, + { + "displayName": "VITAMINS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\", + "conceptCategory": "Medication", + "conceptType": "Container", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\" + }, + { + "displayName": "VITAMIN A", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT050\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\" + }, + { + "displayName": "Beta Carotene", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT050\\19143\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT050\\" + }, + { + "displayName": "retinyl palmitate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT050\\35406\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT050\\" + }, + { + "displayName": "VITAMIN B", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\" + }, + { + "displayName": "CYANOCOBALAMIN", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT101\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\" + }, + { + "displayName": "HYDROXOCOBALAMIN ACETATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT101\\236302\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT101\\" + }, + { + "displayName": "FOLIC ACID/LEUCOVORIN", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT102\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT100\\\\VT102", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\" + }, + { + "displayName": "Folic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT102\\4511\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT102\\" + }, + { + "displayName": "Leucovorin Calcium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT102\\225852\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT100\\\\VT102\\\\225852", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT102\\" + }, + { + "displayName": "PANTOTHENIC ACID", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT107\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\" + }, + { + "displayName": "Calcium Pantothenate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT107\\1918\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT107\\" + }, + { + "displayName": "VITAMIN B,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT109\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\" + }, + { + "displayName": "Liver derivative complex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT109\\253185\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT100\\VT109\\" + }, + { + "displayName": "VITAMIN D", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT500\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\" + }, + { + "displayName": "CALCIFEDIOL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT500\\VT501\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT500\\" + }, + { + "displayName": "Calcifediol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT500\\VT501\\1889\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT500\\\\VT501\\\\1889", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT500\\VT501\\" + }, + { + "displayName": "ERGOCALCIFEROL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT500\\VT504\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT500\\\\VT504", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT500\\" + }, + { + "displayName": "Ergocalciferol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT500\\VT504\\4018\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT500\\\\VT504\\\\4018", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT500\\VT504\\" + }, + { + "displayName": "VITAMIN K", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT700\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\" + }, + { + "displayName": "MENADIOL", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT700\\VT701\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT700\\" + }, + { + "displayName": "Menadiol sodium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT700\\VT701\\52549\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT700\\VT701\\" + }, + { + "displayName": "VITAMINS,COMBINATIONS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\" + }, + { + "displayName": "MULTIVITAMINS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\" + }, + { + "displayName": "4-Aminobenzoic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\74\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT801\\\\74", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "alpha-tocopherol acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\39625\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Ascorbic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\1151\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Biotin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\1588\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT801\\\\1588", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Cholecalciferol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\2418\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Choline", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\2449\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Choline Bitartrate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\2451\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "choline salicylate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\20974\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Chondroitin Sulfate, Sodium Salt", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\42891\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Chondroitin Sulfates", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\2473\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Folate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\62356\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Glucosamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\4845\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT801\\\\4845", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Inositol", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\5833\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT801\\\\5833", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Iron", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\90176\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Luteinizing Hormone", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\6383\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Manganese", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\6623\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Methionine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\6837\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Niacin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\7393\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT801\\\\7393", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Niacinamide", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\7405\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT801\\\\7405", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "pantothenate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\62400\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Pantothenic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\7891\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Riboflavin", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\9346\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Selenium", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\9641\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Thiamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\10454\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Thioctic Acid", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\6417\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "TOCOPHEROL,DL-ALPHA", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\402899\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Vitamin A", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\11246\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT801\\\\11246", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Vitamin B 12", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\11248\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT801\\\\11248", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Vitamin B Complex", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\11251\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Vitamin B6", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\42954\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Vitamin D", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\11253\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "vitamin E succinate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\39626\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Vitamin K 1", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\8308\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT801\\\\8308", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Zinc", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\11416\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "Zinc Acetate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\58295\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT801\\\\58295", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT801\\" + }, + { + "displayName": "MULTIVITAMINS WITH MINERALS", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\" + }, + { + "displayName": "Betaine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\1512\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\" + }, + { + "displayName": "chromic chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\21009\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\" + }, + { + "displayName": "Copper Gluconate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\2839\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT802\\\\2839", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\" + }, + { + "displayName": "Copper Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\21579\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT802\\\\21579", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\" + }, + { + "displayName": "ferrous gluconate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\24942\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT802\\\\24942", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\" + }, + { + "displayName": "MAGNESIUM GLUCONATE", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\52358\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT802\\\\52358", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\" + }, + { + "displayName": "Magnesium Sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\6585\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\" + }, + { + "displayName": "manganese sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\29268\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT802\\\\29268", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\" + }, + { + "displayName": "Sodium Fluoride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\9873\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\" + }, + { + "displayName": "Zinc Gluconate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\58300\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT802\\" + }, + { + "displayName": "VITAMIN COMBINATIONS,OTHER", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\", + "conceptCategory": "Medication", + "conceptType": "Folder", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT809", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\" + }, + { + "displayName": "Bromelains", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\1752\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "calcium phosphate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\1919\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "CHYMOTRYPSIN", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\2530\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "Cobalamins", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\42604\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "cupric chloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\21833\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "Ferrous fumarate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\24941\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "ferrous sulfate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\24947\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "Fructose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\4570\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "guar gum", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\26344\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "Intrinsic factor", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\5920\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "Methamphetamine", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\6816\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "Methamphetamine Hydrochloride", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\82044\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT809\\\\82044", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "Papain", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\7892\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "soy protein isolate", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\196238\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": null, + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "Sucrose", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\10159\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT809\\\\10159", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + }, + { + "displayName": "TRYPSIN", + "highlightedName": null, + "path": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\10890\\", + "conceptCategory": "Medication", + "conceptType": "Leaf", + "isActive": true, + "isLab": false, + "metadata": "medications\\\\VT000\\\\VT800\\\\VT809\\\\10890", + "children": [], + "isRoot": false, + "parentPath": "\\\\SHRINE\\SHRINE\\medications\\VT000\\VT800\\VT809\\" + } +] \ No newline at end of file diff --git a/src/shrine-conv-temp/query_definitions/example1.json b/src/shrine-conv-temp/query_definitions/example1.json new file mode 100644 index 000000000..e5589015c --- /dev/null +++ b/src/shrine-conv-temp/query_definitions/example1.json @@ -0,0 +1,120 @@ +{ + "query": { + "id": 100523611964537284, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 4, + "createDate": 1696525308735, + "changeDate": 1696525309001 + }, + "status": { + "encodedClass": "ReadyForAdapters" + }, + "queryDefinition": { + "expression": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "45-54 years old", + "termPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": null, + "endDate": null, + "occursAtLeast": 1, + "encodedClass": "ConceptGroup" + } + ], + "encodedClass": "Conjunction" + } + }, + "output": { + "encodedClass": "Count" + }, + "queryName": "Test from code", + "nodeOfOriginId": 8304711555476111654, + "researcherId": 24823904, + "topicId": 1, + "projectName": "Testing 2", + "flagged": false, + "flaggedMessage": null, + "encodedClass": "QueryProgress" + }, + "researcher": { + "id": 24823904, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "userName": "demo", + "userDomainName": "i2b2demo", + "nodeId": 8304711555476111654 + }, + "node": { + "id": 8304711555476111654, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 1691522665369, + "changeDate": 1691522665369 + }, + "name": "Leaf Test", + "key": "leaftest", + "userDomainName": "leaftest", + "momQueueName": "leaftest", + "adminEmail": "", + "sendQueries": true, + "understandsProtocol": 2, + "momId": "leaftest" + }, + "topic": { + "id": 1481654093, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "researcherId": 24823904, + "name": "Testing", + "description": "This is a topic for testing SHRINE 2020 (1)" + }, + "resultProgress": { + "id": 1702258560717024998, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 2, + "createDate": 1696525309001, + "changeDate": 1696525309083 + }, + "queryId": 100523611964537284, + "adapterNodeId": 8304711555476111654, + "adapterNodeName": "Leaf Test", + "status": { + "encodedClass": "SentToAdapter" + }, + "statusMessage": null, + "crcQueryInstanceId": null + }, + "protocolVersion": 2 +} \ No newline at end of file diff --git a/src/shrine-conv-temp/query_definitions/example2.json b/src/shrine-conv-temp/query_definitions/example2.json new file mode 100644 index 000000000..6471363b2 --- /dev/null +++ b/src/shrine-conv-temp/query_definitions/example2.json @@ -0,0 +1,109 @@ +{ + "query": { + "id": 4827606011606904531, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 2, + "createDate": 1696531718524, + "changeDate": 1696531718744 + }, + "status": { + "encodedClass": "SentToHub" + }, + "queryDefinition": { + "expression": { + "nMustBeTrue": 2, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "Certain conditions originating in the perinatal period (760-779.99)", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\", + "constraint": null, + "encodedClass": "Concept" + }, + { + "displayName": "Complications of pregnancy, childbirth, and the puerperium (630-679.99)", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": 946713600000, + "endDate": 3482204400000, + "occursAtLeast": 2, + "encodedClass": "ConceptGroup" + }, + { + "concepts": { + "nMustBeTrue": 0, + "compare": { + "encodedClass": "AtMost" + }, + "possibilities": [ + { + "displayName": "Congenital anomalies (740-759.99)", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Diagnoses\\\\Congenital anomalies (740-759.99)\\\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": null, + "endDate": null, + "occursAtLeast": 1, + "encodedClass": "ConceptGroup" + } + ], + "encodedClass": "Conjunction" + } + }, + "output": { + "encodedClass": "Count" + }, + "queryName": "Certain conditi-Congenital anom@11:48:30", + "nodeOfOriginId": 4833369576181865609, + "researcherId": -1447032461, + "topicId": 1, + "projectName": "Testing", + "flagged": false, + "flaggedMessage": null + }, + "researcher": { + "id": -1447032461, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "userName": "demo", + "userDomainName": "i2b2demo", + "nodeId": 4833369576181865609 + }, + "topic": { + "id": 1481654093, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "researcherId": -1447032461, + "name": "Testing", + "description": "This is a topic for testing SHRINE 2020 (1)" + }, + "protocolVersion": 2 +} \ No newline at end of file diff --git a/src/shrine-conv-temp/query_definitions/example3.json b/src/shrine-conv-temp/query_definitions/example3.json new file mode 100644 index 000000000..926ffd149 --- /dev/null +++ b/src/shrine-conv-temp/query_definitions/example3.json @@ -0,0 +1,121 @@ +{ + "query": { + "id": 8698691030503797154, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 2, + "createDate": 1696532276852, + "changeDate": 1696532276923 + }, + "status": { + "encodedClass": "SentToHub" + }, + "queryDefinition": { + "expression": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "first": { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "Certain conditions originating in the perinatal period (760-779.99)", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\", + "constraint": null, + "encodedClass": "Concept" + }, + { + "displayName": "Complications of pregnancy, childbirth, and the puerperium (630-679.99)", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Diagnoses\\\\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\\\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": 946713600000, + "endDate": 3482204400000, + "occursAtLeast": 2 + }, + "subsequent": [ + { + "conceptGroup": { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "Diseases of the circulatory system (390-459.99)", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": null, + "endDate": null, + "occursAtLeast": 1 + }, + "previousOccurrence": { + "encodedClass": "First" + }, + "thisOccurrence": { + "encodedClass": "First" + }, + "timeConstraint": null + } + ], + "encodedClass": "Timeline" + } + ], + "encodedClass": "Conjunction" + } + }, + "output": { + "encodedClass": "Count" + }, + "queryName": "temporal1", + "nodeOfOriginId": 4833369576181865609, + "researcherId": -1447032461, + "topicId": 1, + "projectName": "Testing", + "flagged": false, + "flaggedMessage": null + }, + "researcher": { + "id": -1447032461, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "userName": "demo", + "userDomainName": "i2b2demo", + "nodeId": 4833369576181865609 + }, + "topic": { + "id": 1481654093, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "researcherId": -1447032461, + "name": "Testing", + "description": "This is a topic for testing SHRINE 2020 (1)" + }, + "protocolVersion": 2 +} \ No newline at end of file diff --git a/src/shrine-conv-temp/query_definitions/example4.json b/src/shrine-conv-temp/query_definitions/example4.json new file mode 100644 index 000000000..79b22b5cd --- /dev/null +++ b/src/shrine-conv-temp/query_definitions/example4.json @@ -0,0 +1,123 @@ +{ + "query": { + "id": 3225945612736955106, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 2, + "createDate": 1696532315206, + "changeDate": 1696532315244 + }, + "status": { + "encodedClass": "SentToHub" + }, + "queryDefinition": { + "expression": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "first": { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "Certain conditions originating in the perinatal period (760-779.99)", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Diagnoses\\\\Certain conditions originating in the perinatal period (760-779.99)\\\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": 946713600000, + "endDate": 3482204400000, + "occursAtLeast": 2 + }, + "subsequent": [ + { + "conceptGroup": { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "Diseases of the circulatory system (390-459.99)", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Diagnoses\\\\Diseases of the circulatory system (390-459.99)\\\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": null, + "endDate": null, + "occursAtLeast": 1 + }, + "previousOccurrence": { + "encodedClass": "Any" + }, + "thisOccurrence": { + "encodedClass": "Any" + }, + "timeConstraint": { + "operator": { + "encodedClass": "GreaterThanOrEqual" + }, + "value": 8, + "timeUnit": { + "encodedClass": "Day" + } + } + } + ], + "encodedClass": "Timeline" + } + ], + "encodedClass": "Conjunction" + } + }, + "output": { + "encodedClass": "Count" + }, + "queryName": "temporal2", + "nodeOfOriginId": 4833369576181865609, + "researcherId": -1447032461, + "topicId": 1, + "projectName": "Testing", + "flagged": false, + "flaggedMessage": null + }, + "researcher": { + "id": -1447032461, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "userName": "demo", + "userDomainName": "i2b2demo", + "nodeId": 4833369576181865609 + }, + "topic": { + "id": 1481654093, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "researcherId": -1447032461, + "name": "Testing", + "description": "This is a topic for testing SHRINE 2020 (1)" + }, + "protocolVersion": 2 +} \ No newline at end of file diff --git a/src/shrine-conv-temp/query_definitions/example5.json b/src/shrine-conv-temp/query_definitions/example5.json new file mode 100644 index 000000000..46dc88926 --- /dev/null +++ b/src/shrine-conv-temp/query_definitions/example5.json @@ -0,0 +1,171 @@ +{ + "query": { + "id": 5030016659568223369, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 2, + "createDate": 1703811975809, + "changeDate": 1703811975842 + }, + "status": { + "encodedClass": "SentToHub" + }, + "queryDefinition": { + "expression": { + "nMustBeTrue": 2, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "Female", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Demographics\\\\Gender\\\\Female\\\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": null, + "endDate": null, + "occursAtLeast": 1, + "encodedClass": "ConceptGroup" + }, + { + "first": { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "Congenital anomalies (740-759.99)", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Diagnoses\\\\Congenital anomalies (740-759.99)\\\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": null, + "endDate": null, + "occursAtLeast": 1 + }, + "subsequent": [ + { + "conceptGroup": { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "Diseases of the blood and blood-forming organs (280-289.99)", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Diagnoses\\\\Diseases of the blood and blood-forming organs (280-289.99)\\\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": 1696205040000, + "endDate": 1702688640000, + "occursAtLeast": 1 + }, + "previousOccurrence": { + "encodedClass": "Any" + }, + "thisOccurrence": { + "encodedClass": "Any" + }, + "timeConstraint": null + }, + { + "conceptGroup": { + "concepts": { + "nMustBeTrue": 1, + "compare": { + "encodedClass": "AtLeast" + }, + "possibilities": [ + { + "displayName": "Diseases of the musculoskeletal system and connective tissue (710-739.99)", + "termPath": "\\\\\\\\SHRINE\\\\SHRINE\\\\Diagnoses\\\\Diseases of the musculoskeletal system and connective tissue (710-739.99)\\\\", + "constraint": null, + "encodedClass": "Concept" + } + ] + }, + "startDate": null, + "endDate": null, + "occursAtLeast": 1 + }, + "previousOccurrence": { + "encodedClass": "First" + }, + "thisOccurrence": { + "encodedClass": "Any" + }, + "timeConstraint": { + "operator": { + "encodedClass": "GreaterThanOrEqual" + }, + "value": 5, + "timeUnit": { + "encodedClass": "Day" + } + } + } + ], + "encodedClass": "Timeline" + } + ], + "encodedClass": "Conjunction" + } + }, + "output": { + "encodedClass": "Count" + }, + "queryName": "Test21", + "nodeOfOriginId": 4833369576181865609, + "researcherId": -1447032461, + "topicId": 1, + "projectName": "Testing", + "flagged": false, + "flaggedMessage": null + }, + "researcher": { + "id": -1447032461, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "userName": "demo", + "userDomainName": "i2b2demo", + "nodeId": 4833369576181865609 + }, + "topic": { + "id": 1481654093, + "versionInfo": { + "protocolVersion": 2, + "shrineVersion": "4.1.0-SNAPSHOT", + "itemVersion": 1, + "createDate": 0, + "changeDate": 0 + }, + "researcherId": -1447032461, + "name": "Testing", + "description": "This is a topic for testing SHRINE 2020 (1)" + }, + "protocolVersion": 2 +} \ No newline at end of file From 964608b89245bf5606df2c082e4dfc1257aca124 Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Tue, 13 Feb 2024 09:53:03 -0800 Subject: [PATCH 16/19] updated --- .../API/Controllers/CohortCountController.cs | 38 ++++++++++++++++- .../Integration/Shrine/4_1/ShrineQueryDTO.cs | 12 +++--- .../Shrine/ShrineVersionInfoDTO.cs | 2 + .../4_1/ShrineQueryDefinitionConverter.cs | 14 +++++-- .../Jobs/BackgroundShrinePollingService.cs | 2 +- .../API/Options/StartupExtensions.Options.cs | 3 +- src/server/API/appsettings.json | 2 +- src/server/Model/Cohort/CohortCounter.cs | 10 +++++ src/server/Model/Compiler/PanelItem.cs | 1 - .../Compiler/SqlBuilder/PanelItemSqlSet.cs | 42 +++++++++++++++---- .../Compiler/SqlBuilder/PanelSqlCompiler.cs | 2 +- .../Compiler/SqlBuilder/SubPanelSqlSet.cs | 2 +- .../Cohort/CtePatientCohortService.cs | 2 +- 13 files changed, 105 insertions(+), 27 deletions(-) diff --git a/src/server/API/Controllers/CohortCountController.cs b/src/server/API/Controllers/CohortCountController.cs index cda84c9f7..c5fdbb2cb 100644 --- a/src/server/API/Controllers/CohortCountController.cs +++ b/src/server/API/Controllers/CohortCountController.cs @@ -7,6 +7,9 @@ using System.Threading; using System.Threading.Tasks; using API.DTO.Cohort; +using API.DTO.Integration.Shrine; +using API.DTO.Integration.Shrine4_1; +using API.Integration.Shrine4_1; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; @@ -15,10 +18,18 @@ using Model.Cohort; using Model.Compiler; using Model.Error; +using Newtonsoft.Json; namespace API.Controllers { - [Authorize(Policy = TokenType.Access)] + public class Test + { + public string QueryJSON { get; set; } + } + + //[Authorize(Policy = TokenType.Access)] + [AllowAnonymous] + [Produces("application/json")] [Route("api/cohort/count")] public class CohortCountController : Controller { @@ -29,7 +40,30 @@ public CohortCountController(ILogger logger) log = logger; } - [HttpPost] + [HttpPost("shrine")] + public async Task> ShrineCount( + [FromBody] Test input, + [FromServices] ShrineQueryDefinitionConverter queryConverter, + [FromServices] CohortCounter counter, + CancellationToken cancelToken) + { + try + { + var dto = JsonConvert.DeserializeObject(input.QueryJSON); + var shrineQuery = dto.ToQuery(); + + var query = queryConverter.ToLeafQuery(shrineQuery); + var cohort = await counter.Count(query, cancelToken); + + return Ok(cohort.Count.SqlStatements); + } + catch (Exception ex) + { + return BadRequest(ex.Message); + } + } + + [HttpPost] public async Task> Count( [FromBody] PatientCountQueryDTO patientCountQuery, [FromServices] CohortCounter counter, diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs index 2b12925ff..a210fd221 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs @@ -41,7 +41,7 @@ public ShrineQueryDTO(ShrineQuery query) ProjectName = query.ProjectName; Flagged = query.Flagged; FlaggedMessage = query.FlaggedMessage; - EncodedClass = query.EncodedClass.ToString(); + EncodedClass = query?.EncodedClass.ToString(); } } @@ -49,18 +49,18 @@ public static class ShrineQueryExtensions { public static ShrineQuery ToQuery(this ShrineQueryDTO dto) { - _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryType type); - _ = Enum.TryParse(dto.Status.EncodedClass, out ShrineStatusType status); - _ = Enum.TryParse(dto.Output.EncodedClass, out ShrineOutputType output); + _ = Enum.TryParse(dto?.EncodedClass, out ShrineQueryType type); + _ = Enum.TryParse(dto?.Status?.EncodedClass, out ShrineStatusType status); + _ = Enum.TryParse(dto?.Output?.EncodedClass, out ShrineOutputType output); return new ShrineQuery { Id = dto.Id, - VersionInfo = dto.VersionInfo.ToVersionInfo(), + VersionInfo = dto?.VersionInfo?.ToVersionInfo(), Status = status, QueryDefinition = dto.QueryDefinition.ToDefinition(), Output = output, - QueryName = dto.QueryName, + QueryName = dto?.QueryName, NodeOfOriginId = dto.NodeOfOriginId, ResearcherId = dto.ResearcherId, TopicId = dto.TopicId, diff --git a/src/server/API/DTO/Integration/Shrine/ShrineVersionInfoDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineVersionInfoDTO.cs index 9b326569f..7c0b4aacc 100644 --- a/src/server/API/DTO/Integration/Shrine/ShrineVersionInfoDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/ShrineVersionInfoDTO.cs @@ -20,6 +20,8 @@ public ShrineVersionInfoDTO() { } public ShrineVersionInfoDTO(ShrineVersionInfo ver) { + if (ver == null) return; + ProtocolVersion = ver.ProtocolVersion; ItemVersion = ver.ItemVersion; ShrineVersion = ver.ShrineVersion; diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs index 234947ece..885387e50 100644 --- a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs +++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs @@ -49,11 +49,11 @@ PanelDTO ShrineConceptGroupToPanelDTO(ShrineConceptGroup conceptGroup, int i) IncludePanel = conceptGroup.Concepts.NMustBeTrue > 0, Index = i, Domain = PanelDomain.Panel, - DateFilter = conceptGroup.StartDate.HasValue ? + DateFilter = conceptGroup.StartDate.HasValue || conceptGroup.EndDate.HasValue ? new DateBoundary { - Start = new DateFilter { Date = conceptGroup.StartDate.Value }, - End = new DateFilter { Date = conceptGroup.EndDate.Value } + Start = new DateFilter { Date = conceptGroup.StartDate ?? new DateTime(1900, 1, 1), DateIncrementType = DateIncrementType.Specific }, + End = new DateFilter { Date = conceptGroup.EndDate ?? DateTime.Now, DateIncrementType = DateIncrementType.Specific } } : null, SubPanels = new List @@ -98,6 +98,9 @@ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) Index = j, SubPanelIndex = 0, PanelIndex = i, + RecencyFilter = timeline.Subsequent.First().PreviousOccurrence == ShrineOccurrence.First + ? RecencyFilterType.Min + : RecencyFilterType.None, Resource = new ResourceRef { UiDisplayName = c.DisplayName, @@ -113,7 +116,7 @@ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) { IncludeSubPanel = sub.ConceptGroup.NMustBeTrue > 0, Index = i + 1, - MinimumCount = sub.ConceptGroup.NMustBeTrue, + MinimumCount = (int)sub.ConceptGroup.OccursAtLeast, JoinSequence = new SubPanelJoinSequence { Increment = sub.TimeConstraint != null ? sub.TimeConstraint.Value : -1, @@ -128,6 +131,9 @@ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) Index = j, SubPanelIndex = 0, PanelIndex = i, + RecencyFilter = sub.ThisOccurrence == ShrineOccurrence.First + ? RecencyFilterType.Min + : RecencyFilterType.None, Resource = new ResourceRef { UiDisplayName = c.DisplayName, diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs index f10b5bf49..6386e9806 100644 --- a/src/server/API/Jobs/BackgroundShrinePollingService.cs +++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs @@ -35,7 +35,7 @@ public class BackgroundShrinePollingService : BackgroundService readonly ShrineIntegrationOptions opts; readonly ShrineQueryDefinitionConverter queryConverter; readonly ShrineDemographicsConverter demographicsConverter; - readonly int ErrorPauseSeconds = 3; + readonly int ErrorPauseSeconds = 300; public BackgroundShrinePollingService( ILogger logger, diff --git a/src/server/API/Options/StartupExtensions.Options.cs b/src/server/API/Options/StartupExtensions.Options.cs index fe06580f2..fb06a01b6 100644 --- a/src/server/API/Options/StartupExtensions.Options.cs +++ b/src/server/API/Options/StartupExtensions.Options.cs @@ -459,7 +459,8 @@ static IServiceCollection ConfigureCompilerOptions(this IServiceCollection servi // App Db Connection services.Configure(opts => { - opts.ConnectionString = "Server=localhost,1432;Database=LeafDB;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.App.Connection); + //opts.ConnectionString = "Server=localhost,1432;Database=LeafDB;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.App.Connection); + opts.ConnectionString = config.GetByProxy(Config.Db.App.Connection); opts.DefaultTimeout = config.GetValue(Config.Db.App.DefaultTimeout); }); diff --git a/src/server/API/appsettings.json b/src/server/API/appsettings.json index 8eadcaf1c..08a4a6975 100644 --- a/src/server/API/appsettings.json +++ b/src/server/API/appsettings.json @@ -18,7 +18,7 @@ "DefaultTimeout": 180, "RDBMS": "MSSQL", "Cohort": { - "QueryStrategy": "PARALLEL", + "QueryStrategy": "CTE", "MaxParallelThreads": 5 } } diff --git a/src/server/Model/Cohort/CohortCounter.cs b/src/server/Model/Cohort/CohortCounter.cs index d3b3acb32..e2dcf06a7 100644 --- a/src/server/Model/Cohort/CohortCounter.cs +++ b/src/server/Model/Cohort/CohortCounter.cs @@ -180,6 +180,16 @@ async Task FullCount(IPatientCountQueryDTO queryDTO, CancellationToken t token.ThrowIfCancellationRequested(); + // DEBUGGING ONLY + return new Result + { + ValidationContext = ctx, + Count = new PatientCount + { + SqlStatements = cohort.SqlStatements + } + }; + var cached = await CacheCohort(cohort); var result = new Result { diff --git a/src/server/Model/Compiler/PanelItem.cs b/src/server/Model/Compiler/PanelItem.cs index 3832a9b2d..9d4b59921 100644 --- a/src/server/Model/Compiler/PanelItem.cs +++ b/src/server/Model/Compiler/PanelItem.cs @@ -13,7 +13,6 @@ public class PanelItem : BasePanelItem { public Concept Concept { get; set; } public IEnumerable Specializations { get; set; } - public string SqlRecencyFilter { get; set; } public bool UseNumericFilter { get diff --git a/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs b/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs index 1f598092b..d2296e3f3 100644 --- a/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs +++ b/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs @@ -24,12 +24,31 @@ public PanelItemSequentialSqlSet( internal override void SetSelect() { - Select = new[] { PersonId, EncounterId, Date, EventId }; + if (!panelitem.UseRecencyFilter) + { + Select = new[] { PersonId, EncounterId, Date, EventId }; + } + else + { + Select = new ISelectable[] { PersonId, EncounterId, AggregateDate, EventId }; + } } internal override void SetGroupBy() { - // Do nothing. Group By clauses in a sequence are added in the parent PanelSequentialSqlSet. + if (panelitem.UseRecencyFilter) + { + if (concept.IsEventBased) + { + GroupBy = new[] { PersonId, EncounterId, EventId }; + } + else + { + GroupBy = new[] { PersonId, EncounterId }; + } + } + + // Otherwise do nothing. Group By clauses in a sequence are added in the parent PanelSequentialSqlSet. } internal override void SetHaving() @@ -41,17 +60,18 @@ internal override void SetHaving() class PanelItemSqlSet : NamedSet { - readonly CompilerOptions compilerOptions; - readonly Panel panel; - readonly SubPanel subpanel; - readonly PanelItem panelitem; - readonly Concept concept; + readonly internal CompilerOptions compilerOptions; + readonly internal Panel panel; + readonly internal SubPanel subpanel; + readonly internal PanelItem panelitem; + readonly internal Concept concept; readonly List where = new List(); internal ISqlDialect dialect; internal Column PersonId; internal Column EncounterId; internal EventIdColumn EventId; + internal ExpressedColumn AggregateDate; internal AutoAliasedColumn Date; internal AutoAliasedColumn Number; @@ -101,6 +121,12 @@ void SetColumns() { EncounterId = new Column(compilerOptions.FieldEncounterId, this); Date = new AutoAliasedColumn(concept.SqlFieldDate, aliasMarker, this); + + if (panelitem.UseRecencyFilter) + { + var op = panelitem.RecencyFilter == RecencyFilterType.Min ? "MIN" : "MAX"; + AggregateDate = new ExpressedColumn(new Expression($"{op}({Date})"), Date.Name.Replace(aliasMarker + ".", "")); + } } if (concept.IsEventBased) { @@ -163,7 +189,7 @@ void CheckDate() var start = GetDateExpression(panel.DateFilter.Start); var end = GetDateExpression(panel.DateFilter.End, true); - if (panel.PanelType == PanelType.Sequence && subpanel.Index > 0) + if (panel.PanelType == PanelType.Sequence && subpanel.Index > 0 && !panelitem.UseRecencyFilter) { var offset = new Expression(dialect.DateAdd(DateIncrementType.Month, -6, start)); where.Add(Date >= offset); diff --git a/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs b/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs index 74e5af5dc..fe7c1738a 100644 --- a/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs +++ b/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs @@ -51,7 +51,7 @@ public string BuildPanelSql(Panel panel) default: return string.Empty; } - ValidateSql(sql); + //ValidateSql(sql); return sql; } diff --git a/src/server/Model/Compiler/SqlBuilder/SubPanelSqlSet.cs b/src/server/Model/Compiler/SqlBuilder/SubPanelSqlSet.cs index f12fead86..3d79a13c2 100644 --- a/src/server/Model/Compiler/SqlBuilder/SubPanelSqlSet.cs +++ b/src/server/Model/Compiler/SqlBuilder/SubPanelSqlSet.cs @@ -57,8 +57,8 @@ void SetSelect() PersonId = new Column(first.PersonId); EncounterId = new Column(first.EncounterId); - Date = new AutoAliasedColumn(first.Date.Name, first.Date.AliasMarker); EventId = new EventIdColumn(first.EventId); + Date = new AutoAliasedColumn(first.Date.Name, first.Date.AliasMarker); } } } diff --git a/src/server/Services/Cohort/CtePatientCohortService.cs b/src/server/Services/Cohort/CtePatientCohortService.cs index f041b5a11..8ee56d9a0 100644 --- a/src/server/Services/Cohort/CtePatientCohortService.cs +++ b/src/server/Services/Cohort/CtePatientCohortService.cs @@ -35,7 +35,7 @@ protected override async Task GetCohortAsync(PatientCountQuery qu return new PatientCohort { QueryId = query.QueryId, - PatientIds = await GetPatientSetAsync(cteQuery, query.DependentQueryIds, token), + PatientIds = new HashSet(), //await GetPatientSetAsync(cteQuery, query.DependentQueryIds, token), SqlStatements = new string[] { cteQuery.SqlStatement }, Panels = query.Panels.Where(p => p.Domain == PanelDomain.Panel) }; From 8ac48731833eb52c21f32c9c517d6574c5e6360e Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Wed, 27 Mar 2024 16:05:42 -0700 Subject: [PATCH 17/19] added handling for numeric filter/constraints --- .../Shrine/4_1/ShrineExpressionDTO.cs | 50 +++++++++++++++++-- .../4_1/ShrineQueryDefinitionConverter.cs | 44 +++++++++++++--- .../API/Options/StartupExtensions.Options.cs | 6 +-- .../Model/Compiler/NumericFilterType.cs | 2 +- src/server/Model/Compiler/PanelValidator.cs | 2 +- .../Compiler/SqlBuilder/PanelItemSqlSet.cs | 2 +- .../Shrine/4_1/ShrineExpression.cs | 11 +++- src/server/Tests/SqlCompilerTests.cs | 2 +- 8 files changed, 100 insertions(+), 19 deletions(-) diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs index 3f7999e6e..d69ea47ab 100644 --- a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs +++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs @@ -165,7 +165,7 @@ public class ShrineConceptDTO { public string DisplayName { get; set; } public string TermPath { get; set; } - public string Constraint { get; set; } + public ShrineConceptConstraintDTO Constraint { get; set; } public static readonly string EncodedClass = "Concept"; public ShrineConceptDTO() { } @@ -174,7 +174,28 @@ public ShrineConceptDTO(ShrineConcept concept) { DisplayName = concept.DisplayName; TermPath = concept.TermPath; - Constraint = concept.Constraint; + Constraint = new ShrineConceptConstraintDTO(concept.Constraint); + } + } + + public class ShrineConceptConstraintDTO + { + public ShrineAnonymousEncodedClassDTO Operator { get; set; } + public decimal? Value { get; set; } + public decimal? Value1 { get; set; } + public decimal? Value2 { get; set; } + public string Unit { get; set; } + public string EncodedClass { get; set; } + + public ShrineConceptConstraintDTO() { } + + public ShrineConceptConstraintDTO(ShrineConceptConstraint constraint) + { + Operator = new ShrineAnonymousEncodedClassDTO { EncodedClass = constraint.Operator.ToString() }; + Value = constraint.Value; + Value1 = constraint.Value1; + Value2 = constraint.Value2; + Unit = constraint.Unit; } } @@ -205,7 +226,30 @@ public static ShrineConcept ToConcept(this ShrineConceptDTO dto) { DisplayName = dto.DisplayName, TermPath = dto.TermPath, - Constraint = dto.Constraint + Constraint = dto.Constraint != null ? dto.Constraint.ToConstraint() : null + }; + } + + public static ShrineConceptConstraint ToConstraint(this ShrineConceptConstraintDTO dto) + { + NumericFilterType op = NumericFilterType.None; + if (dto.Operator != null) + { + _ = Enum.TryParse(dto.Operator.EncodedClass, out NumericFilterType filterType); + op = filterType; + } + if (op == NumericFilterType.None && dto.Value1.HasValue && dto.Value2.HasValue) + { + op = NumericFilterType.Between; + } + + return new ShrineConceptConstraint + { + Operator = op, + Value = dto.Value, + Value1 = dto.Value1, + Value2 = dto.Value2, + Unit = dto.Unit }; } diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs index 885387e50..4cb6b8c1f 100644 --- a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs +++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs @@ -71,6 +71,15 @@ PanelDTO ShrineConceptGroupToPanelDTO(ShrineConceptGroup conceptGroup, int i) Index = j, SubPanelIndex = 0, PanelIndex = i, + NumericFilter = c != null && c.Constraint.Operator != NumericFilterType.None + ? new NumericFilter + { + FilterType = c.Constraint.Operator, + Filter = c.Constraint.Value != null + ? new decimal[] { (decimal)c.Constraint.Value } + : new decimal[] { (decimal)c.Constraint.Value1, (decimal)c.Constraint.Value2 } + } + : null, Resource = new ResourceRef { UiDisplayName = c.DisplayName, @@ -101,6 +110,15 @@ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) RecencyFilter = timeline.Subsequent.First().PreviousOccurrence == ShrineOccurrence.First ? RecencyFilterType.Min : RecencyFilterType.None, + NumericFilter = c != null && c.Constraint.Operator != NumericFilterType.None + ? new NumericFilter + { + FilterType = c.Constraint.Operator, + Filter = c.Constraint.Value != null + ? new decimal[] { (decimal)c.Constraint.Value } + : new decimal[] { (decimal)c.Constraint.Value1, (decimal)c.Constraint.Value2 } + } + : null, Resource = new ResourceRef { UiDisplayName = c.DisplayName, @@ -134,6 +152,15 @@ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) RecencyFilter = sub.ThisOccurrence == ShrineOccurrence.First ? RecencyFilterType.Min : RecencyFilterType.None, + NumericFilter = c != null && c.Constraint.Operator != NumericFilterType.None + ? new NumericFilter + { + FilterType = c.Constraint.Operator, + Filter = c.Constraint.Value != null + ? new decimal[] { (decimal)c.Constraint.Value } + : new decimal[] { (decimal)c.Constraint.Value1, (decimal)c.Constraint.Value2 } + } + : null, Resource = new ResourceRef { UiDisplayName = c.DisplayName, @@ -195,13 +222,6 @@ public ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery) }, Output = ShrineOutputType.Count, QueryName = "Query" - /* - NodeOfOriginId = opts.Node.Id, - ResearcherId = opts.Researcher.Id, - TopicId = opts.Topic.Id, - ProjectName = "Query", - Flagged = false - */ }; } @@ -266,7 +286,15 @@ ShrineConceptConjunction LeafSubPanelToShrineConceptConjunction(IPanelDTO panel, { DisplayName = pi.Resource.UiDisplayName, TermPath = pi.Resource.UniversalId.ToString().Replace(UniversalIdPrefix, ""), - Constraint = null + Constraint = pi.NumericFilter != null && pi.NumericFilter.FilterType != NumericFilterType.None + ? new ShrineConceptConstraint + { + Operator = pi.NumericFilter.FilterType, + Value = pi.NumericFilter.FilterType != NumericFilterType.Between ? pi.NumericFilter.Filter.First() : null, + Value1 = pi.NumericFilter.FilterType == NumericFilterType.Between ? pi.NumericFilter.Filter.First() : null, + Value2 = pi.NumericFilter.FilterType == NumericFilterType.Between ? pi.NumericFilter.Filter.Last() : null + } + : null }; }), StartDate = panel.DateFilter?.Start?.Date, diff --git a/src/server/API/Options/StartupExtensions.Options.cs b/src/server/API/Options/StartupExtensions.Options.cs index fb06a01b6..0ff3f28d8 100644 --- a/src/server/API/Options/StartupExtensions.Options.cs +++ b/src/server/API/Options/StartupExtensions.Options.cs @@ -459,15 +459,15 @@ static IServiceCollection ConfigureCompilerOptions(this IServiceCollection servi // App Db Connection services.Configure(opts => { - //opts.ConnectionString = "Server=localhost,1432;Database=LeafDB;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.App.Connection); - opts.ConnectionString = config.GetByProxy(Config.Db.App.Connection); + opts.ConnectionString = "Server=localhost,1432;Database=LeafDB;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.App.Connection); + //opts.ConnectionString = config.GetByProxy(Config.Db.App.Connection); opts.DefaultTimeout = config.GetValue(Config.Db.App.DefaultTimeout); }); // Clin Db Connection services.Configure(opts => { - opts.ConnectionString = "Server=localhost,1432;Database=SynPuf_OMOP;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.Clin.Connection); + opts.ConnectionString = "Server=127.0.0.1,1432;Database=SynPuf_OMOP;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.Clin.Connection); opts.DefaultTimeout = config.GetValue(Config.Db.Clin.DefaultTimeout); opts.WithRdbms(config.GetValue(Config.Db.Clin.RDBMS)); opts.Cohort.WithQueryStrategy(config.GetValue(Config.Db.Clin.Cohort.QueryStrategy)); diff --git a/src/server/Model/Compiler/NumericFilterType.cs b/src/server/Model/Compiler/NumericFilterType.cs index c0cc852c0..76a943bb1 100644 --- a/src/server/Model/Compiler/NumericFilterType.cs +++ b/src/server/Model/Compiler/NumericFilterType.cs @@ -13,7 +13,7 @@ public enum NumericFilterType GreaterThanOrEqual, LessThan, LessThanOrEqual, - EqualTo, + Equal, Between } } diff --git a/src/server/Model/Compiler/PanelValidator.cs b/src/server/Model/Compiler/PanelValidator.cs index ff387a41a..23406d75b 100644 --- a/src/server/Model/Compiler/PanelValidator.cs +++ b/src/server/Model/Compiler/PanelValidator.cs @@ -213,7 +213,7 @@ void throwIfNotLength(int expected) switch (filter.FilterType) { - case NumericFilterType.EqualTo: + case NumericFilterType.Equal: case NumericFilterType.GreaterThan: case NumericFilterType.GreaterThanOrEqual: case NumericFilterType.LessThan: diff --git a/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs b/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs index d2296e3f3..796176978 100644 --- a/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs +++ b/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs @@ -233,7 +233,7 @@ void CheckNumericFilter() case NumericFilterType.LessThanOrEqual: where.Add(Number <= val1); return; - case NumericFilterType.EqualTo: + case NumericFilterType.Equal: where.Add(Number == val1); return; case NumericFilterType.Between: diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs index 0183a09b2..2004ec5ed 100644 --- a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs +++ b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs @@ -86,7 +86,16 @@ public class ShrineConcept : ShrineExpression { public string DisplayName { get; set; } public string TermPath { get; set; } - public string Constraint { get; set; } + public ShrineConceptConstraint Constraint { get; set; } + } + + public class ShrineConceptConstraint + { + public NumericFilterType Operator { get; set; } + public decimal? Value { get; set; } + public decimal? Value1 { get; set; } + public decimal? Value2 { get; set; } + public string Unit { get; set; } } public class ShrineConjunctionCompare diff --git a/src/server/Tests/SqlCompilerTests.cs b/src/server/Tests/SqlCompilerTests.cs index 3ddc9b39e..dbafc483c 100644 --- a/src/server/Tests/SqlCompilerTests.cs +++ b/src/server/Tests/SqlCompilerTests.cs @@ -86,7 +86,7 @@ public void Where_Clause_Added_If_Panel_Has_Where() * Two WHERE clauses */ pi.Concept.SqlFieldNumeric = "Num"; - pi.NumericFilter = new NumericFilter { Filter = new[] { 5.0M }, FilterType = NumericFilterType.EqualTo }; + pi.NumericFilter = new NumericFilter { Filter = new[] { 5.0M }, FilterType = NumericFilterType.Equal }; ob = new SubPanelSqlSet(panel, Options, dialect); Assert.Contains("WHERE 1 = 1 AND Num = 5.0", ob.ToString()); From 6486267eb70b2edc4b29c161e998c84d98b253ff Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Fri, 29 Mar 2024 11:47:52 -0700 Subject: [PATCH 18/19] fix error with shrine concept constraint null checks --- .../Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs index 4cb6b8c1f..f9006b7a8 100644 --- a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs +++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs @@ -71,11 +71,11 @@ PanelDTO ShrineConceptGroupToPanelDTO(ShrineConceptGroup conceptGroup, int i) Index = j, SubPanelIndex = 0, PanelIndex = i, - NumericFilter = c != null && c.Constraint.Operator != NumericFilterType.None + NumericFilter = c?.Constraint != null && c?.Constraint?.Operator != NumericFilterType.None ? new NumericFilter { FilterType = c.Constraint.Operator, - Filter = c.Constraint.Value != null + Filter = c.Constraint.Value.HasValue ? new decimal[] { (decimal)c.Constraint.Value } : new decimal[] { (decimal)c.Constraint.Value1, (decimal)c.Constraint.Value2 } } From 5113c6a60af6af807849d93b24f360b1d81128fc Mon Sep 17 00:00:00 2001 From: Nic Dobbins Date: Sat, 30 Mar 2024 10:31:40 -0700 Subject: [PATCH 19/19] updated --- .../Shrine/4_1/ShrineQueryDefinitionConverter.cs | 8 ++++---- src/server/API/appsettings.json | 6 ++++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs index f9006b7a8..e3afbbe68 100644 --- a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs +++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs @@ -110,11 +110,11 @@ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) RecencyFilter = timeline.Subsequent.First().PreviousOccurrence == ShrineOccurrence.First ? RecencyFilterType.Min : RecencyFilterType.None, - NumericFilter = c != null && c.Constraint.Operator != NumericFilterType.None + NumericFilter = c?.Constraint != null && c?.Constraint?.Operator != NumericFilterType.None ? new NumericFilter { FilterType = c.Constraint.Operator, - Filter = c.Constraint.Value != null + Filter = c.Constraint.Value.HasValue ? new decimal[] { (decimal)c.Constraint.Value } : new decimal[] { (decimal)c.Constraint.Value1, (decimal)c.Constraint.Value2 } } @@ -152,11 +152,11 @@ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i) RecencyFilter = sub.ThisOccurrence == ShrineOccurrence.First ? RecencyFilterType.Min : RecencyFilterType.None, - NumericFilter = c != null && c.Constraint.Operator != NumericFilterType.None + NumericFilter = c?.Constraint != null && c?.Constraint?.Operator != NumericFilterType.None ? new NumericFilter { FilterType = c.Constraint.Operator, - Filter = c.Constraint.Value != null + Filter = c.Constraint.Value.HasValue ? new decimal[] { (decimal)c.Constraint.Value } : new decimal[] { (decimal)c.Constraint.Value1, (decimal)c.Constraint.Value2 } } diff --git a/src/server/API/appsettings.json b/src/server/API/appsettings.json index 08a4a6975..07071a191 100644 --- a/src/server/API/appsettings.json +++ b/src/server/API/appsettings.json @@ -62,8 +62,10 @@ }, "Compiler": { "Alias": "@", - "FieldPersonId": "person_id", - "FieldEncounterId": "visit_occurrence_id" + //"FieldPersonId": "person_id", + //"FieldEncounterId": "visit_occurrence_id", + "FieldPersonId": "PatientDurableKey", + "FieldEncounterId": "EncounterDurableKey" }, "Cohort": { "RowLimit": 200000,